├── .flowconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── child.js ├── exec.js ├── fixture.js ├── index.js ├── logo.png ├── package.json ├── test.js └── yarn.lock /.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | 3 | [include] 4 | 5 | [libs] 6 | 7 | [options] 8 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - '8' 4 | cache: yarn 5 | script: yarn test -- --runInBand --coverage && yarn flow 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2017-present James Kyle 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in all 11 | copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 19 | SOFTWARE. 20 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![Projector Logo](logo.png) 2 | -------------------------------------------------------------------------------- /child.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | 'use strict'; 3 | 4 | const isPromise = require('is-promise'); 5 | const unsafe_require /*: any */ = require; 6 | const unsafe_process /*: any */ = process; 7 | 8 | process.title = 'projector-child'; 9 | 10 | if (typeof process.send !== 'function') { 11 | throw new Error('Must execute with an IPC channel, i.e. process.fork()'); 12 | } 13 | 14 | function send(status, payload) { 15 | unsafe_process.send({ status, payload }); 16 | } 17 | 18 | function close(status, payload) { 19 | send(status, payload); 20 | unsafe_process.disconnect(); 21 | } 22 | 23 | function error(err) { 24 | close('error', { 25 | message: err.message, 26 | stack: err.stack, 27 | }); 28 | } 29 | 30 | process.on('message', ({ script, exportName, args }) => { 31 | try { 32 | let mod = unsafe_require(script); 33 | let fn = mod[exportName]; 34 | 35 | if (!fn) { 36 | error(new Error(`Module "${script}" does not have export named "${exportName}".`)); 37 | return; 38 | } 39 | 40 | if (typeof fn !== 'function') { 41 | error(new Error(`Module "${script}" export "${exportName}" is not a function.`)); 42 | return; 43 | } 44 | 45 | let ret = fn(...args); 46 | 47 | if (!isPromise(ret)) { 48 | error(new Error(`Module "${script}" export "${exportName}" did not return a promise.`)); 49 | return; 50 | } 51 | 52 | ret.then(res => { 53 | close('complete', res); 54 | }).catch(err => { 55 | error(err); 56 | }); 57 | } catch (err) { 58 | error(err); 59 | return; 60 | } 61 | }); 62 | 63 | send('ready'); 64 | -------------------------------------------------------------------------------- /exec.js: -------------------------------------------------------------------------------- 1 | const projector = require('./'); 2 | 3 | projector('./fixture', 'FAILURE_EXPORT', {}).then(res => { 4 | console.log(res); 5 | }).catch(err => { 6 | console.log(err); 7 | }); 8 | -------------------------------------------------------------------------------- /fixture.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | function record(name, ...args) { 4 | return new Promise(resolve => { 5 | resolve({ 6 | MOCK_RUN: true, 7 | EXPORT_NAME: name, 8 | MOCK_ARGS: args, 9 | }); 10 | }); 11 | } 12 | 13 | exports.default = (...args) => { 14 | return new Promise(resolve => { 15 | resolve({ 16 | MOCK_RUN: true, 17 | EXPORT_NAME: 'default', 18 | MOCK_ARGS: args, 19 | }); 20 | }); 21 | }; 22 | 23 | exports.named = (...args) => { 24 | return new Promise(resolve => { 25 | resolve({ 26 | MOCK_RUN: true, 27 | EXPORT_NAME: 'named', 28 | MOCK_ARGS: args, 29 | }); 30 | }); 31 | }; 32 | 33 | exports.error = () => { 34 | return new Promise(() => { 35 | throw new Error('MOCK_ERROR'); 36 | }); 37 | }; 38 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | 'use strict'; 3 | 4 | const path = require('path'); 5 | const child = require('child_process'); 6 | 7 | const CHILD_SCRIPT = path.join(__dirname, 'child.js'); 8 | 9 | /*:: 10 | type Serializeable = 11 | | null 12 | | number 13 | | boolean 14 | | string 15 | | Array 16 | | { [key: string]: Serializeable }; 17 | 18 | type Projector = 19 | & ((script: string, args?: Array) => Promise) 20 | & ((script: string, exportName?: string, args?: Array) => Promise); 21 | */ 22 | 23 | function projector(script, exportName, args) { 24 | if (arguments.length === 1) { 25 | exportName = 'default'; 26 | args = []; 27 | } else if (arguments.length === 2) { 28 | if (typeof exportName === 'object') { 29 | args = exportName; 30 | exportName = 'default'; 31 | } else { 32 | args = []; 33 | } 34 | } else if (typeof exportName === 'undefined') { 35 | exportName = 'default'; 36 | } 37 | 38 | if (typeof script !== 'string') { 39 | throw new Error('Projector script must be a string'); 40 | } 41 | 42 | if (typeof exportName !== 'string') { 43 | throw new Error('Projector export name must be a string'); 44 | } 45 | 46 | if (!Array.isArray(args)) { 47 | throw new Error('Projector `args` must be an array'); 48 | } 49 | 50 | return new Promise((resolve, reject) => { 51 | let proc = child.fork(CHILD_SCRIPT, { 52 | silent: false 53 | }); 54 | 55 | proc.on('message', ({ status, payload }) => { 56 | if (status === 'ready') { 57 | proc.send({ script, exportName, args }); 58 | } else if (status === 'complete') { 59 | resolve(payload); 60 | } else if (status === 'error') { 61 | let err = new Error(payload.message); 62 | err.stack = payload.stack; 63 | reject(err); 64 | } else { 65 | reject(new Error('Recieved unknown message from child process.')); 66 | } 67 | }); 68 | 69 | proc.on('close', () => { 70 | reject(new Error('Never recieved a response from child process.')); 71 | }); 72 | }); 73 | } 74 | 75 | module.exports = (projector /*: Projector */); 76 | -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectorjs/projector/b4d0eb7b213e101a1ce2836884c2de7e3cbfe306/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "projector", 3 | "version": "3.1.0", 4 | "description": "", 5 | "main": "index.js", 6 | "author": "James Kyle ", 7 | "license": "MIT", 8 | "repository": "projectorjs/projector", 9 | "files": [ 10 | "index.js", 11 | "child.js" 12 | ], 13 | "scripts": { 14 | "test": "jest" 15 | }, 16 | "devDependencies": { 17 | "flow-bin": "^0.47.0", 18 | "jest": "^20.0.4" 19 | }, 20 | "dependencies": { 21 | "cross-spawn": "^5.1.0", 22 | "is-promise": "^2.1.0" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const path = require('path'); 4 | const projector = require('./'); 5 | 6 | const FIXTURE = path.join(__dirname, 'fixture.js'); 7 | const MOCK_ARGS = [{ foo: 'bar' }]; 8 | 9 | let expectError = () => { 10 | throw new Error('Promise should have errored instead of fulfilling.'); 11 | }; 12 | 13 | test('projector(script)', () => { 14 | return projector(FIXTURE).then(res => { 15 | expect(res.MOCK_RUN).toBe(true); 16 | expect(res.EXPORT_NAME).toBe('default'); 17 | expect(res.MOCK_ARGS).toEqual([]); 18 | }); 19 | }); 20 | 21 | test('projector(script, args)', () => { 22 | return projector(FIXTURE, MOCK_ARGS).then(res => { 23 | expect(res.MOCK_RUN).toBe(true); 24 | expect(res.EXPORT_NAME).toBe('default'); 25 | expect(res.MOCK_ARGS).toEqual(MOCK_ARGS); 26 | }); 27 | }); 28 | 29 | test('projector(script, exportName)', () => { 30 | return projector(FIXTURE, 'named').then(res => { 31 | expect(res.MOCK_RUN).toBe(true); 32 | expect(res.EXPORT_NAME).toBe('named'); 33 | expect(res.MOCK_ARGS).toEqual([]); 34 | }); 35 | }); 36 | 37 | test('projector(script, exportName, args)', () => { 38 | return projector(FIXTURE, 'named', MOCK_ARGS).then(res => { 39 | expect(res.MOCK_RUN).toBe(true); 40 | expect(res.EXPORT_NAME).toBe('named'); 41 | expect(res.MOCK_ARGS).toEqual(MOCK_ARGS); 42 | }); 43 | }); 44 | 45 | test('projector(script, undefined, args)', () => { 46 | return projector(FIXTURE, undefined, MOCK_ARGS).then(res => { 47 | expect(res.MOCK_RUN).toBe(true); 48 | expect(res.EXPORT_NAME).toBe('default'); 49 | expect(res.MOCK_ARGS).toEqual(MOCK_ARGS); 50 | }); 51 | }); 52 | 53 | 54 | test('error on non-string fixture', () => { 55 | expect(() => { 56 | projector(42); 57 | }).toThrow(); 58 | }); 59 | 60 | test('error on non-string export', () => { 61 | expect(() => { 62 | projector(FIXTURE, 42); 63 | }).toThrow(); 64 | }); 65 | 66 | test('error on non-array args', () => { 67 | expect(() => { 68 | projector(FIXTURE, 'default', 42); 69 | }).toThrow(); 70 | }); 71 | 72 | test('error on object args in export position', () => { 73 | expect(() => { 74 | projector(FIXTURE, {}); 75 | }).toThrow(); 76 | }); 77 | 78 | test('on error', () => { 79 | return projector(FIXTURE, 'error', MOCK_ARGS).then(expectError, err => { 80 | expect(err.message).toEqual('MOCK_ERROR'); 81 | }); 82 | }); 83 | 84 | test('on missing export', () => { 85 | return projector(FIXTURE, 'MISSING_EXPORT').then(expectError, err => { 86 | expect(err.message).toContain(`Module "${FIXTURE}" does not have export named "MISSING_EXPORT"`); 87 | }); 88 | }); 89 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abab@^1.0.3: 6 | version "1.0.3" 7 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.3.tgz#b81de5f7274ec4e756d797cd834f303642724e5d" 8 | 9 | acorn-globals@^3.1.0: 10 | version "3.1.0" 11 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 12 | dependencies: 13 | acorn "^4.0.4" 14 | 15 | acorn@^4.0.4: 16 | version "4.0.13" 17 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 18 | 19 | ajv@^4.9.1: 20 | version "4.11.8" 21 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 22 | dependencies: 23 | co "^4.6.0" 24 | json-stable-stringify "^1.0.1" 25 | 26 | align-text@^0.1.1, align-text@^0.1.3: 27 | version "0.1.4" 28 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 29 | dependencies: 30 | kind-of "^3.0.2" 31 | longest "^1.0.1" 32 | repeat-string "^1.5.2" 33 | 34 | amdefine@>=0.0.4: 35 | version "1.0.1" 36 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 37 | 38 | ansi-escapes@^1.4.0: 39 | version "1.4.0" 40 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 41 | 42 | ansi-regex@^2.0.0, ansi-regex@^2.1.1: 43 | version "2.1.1" 44 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 45 | 46 | ansi-styles@^2.2.1: 47 | version "2.2.1" 48 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 49 | 50 | ansi-styles@^3.0.0: 51 | version "3.0.0" 52 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.0.0.tgz#5404e93a544c4fec7f048262977bebfe3155e0c1" 53 | dependencies: 54 | color-convert "^1.0.0" 55 | 56 | anymatch@^1.3.0: 57 | version "1.3.0" 58 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 59 | dependencies: 60 | arrify "^1.0.0" 61 | micromatch "^2.1.5" 62 | 63 | append-transform@^0.4.0: 64 | version "0.4.0" 65 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 66 | dependencies: 67 | default-require-extensions "^1.0.0" 68 | 69 | argparse@^1.0.7: 70 | version "1.0.9" 71 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 72 | dependencies: 73 | sprintf-js "~1.0.2" 74 | 75 | arr-diff@^2.0.0: 76 | version "2.0.0" 77 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 78 | dependencies: 79 | arr-flatten "^1.0.1" 80 | 81 | arr-flatten@^1.0.1: 82 | version "1.0.3" 83 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1" 84 | 85 | array-equal@^1.0.0: 86 | version "1.0.0" 87 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 88 | 89 | array-unique@^0.2.1: 90 | version "0.2.1" 91 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 92 | 93 | arrify@^1.0.0, arrify@^1.0.1: 94 | version "1.0.1" 95 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 96 | 97 | asn1@~0.2.3: 98 | version "0.2.3" 99 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 100 | 101 | assert-plus@1.0.0, assert-plus@^1.0.0: 102 | version "1.0.0" 103 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 104 | 105 | assert-plus@^0.2.0: 106 | version "0.2.0" 107 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 108 | 109 | async@^1.4.0: 110 | version "1.5.2" 111 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 112 | 113 | async@^2.1.4: 114 | version "2.4.1" 115 | resolved "https://registry.yarnpkg.com/async/-/async-2.4.1.tgz#62a56b279c98a11d0987096a01cc3eeb8eb7bbd7" 116 | dependencies: 117 | lodash "^4.14.0" 118 | 119 | asynckit@^0.4.0: 120 | version "0.4.0" 121 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 122 | 123 | aws-sign2@~0.6.0: 124 | version "0.6.0" 125 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 126 | 127 | aws4@^1.2.1: 128 | version "1.6.0" 129 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 130 | 131 | babel-code-frame@^6.22.0: 132 | version "6.22.0" 133 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 134 | dependencies: 135 | chalk "^1.1.0" 136 | esutils "^2.0.2" 137 | js-tokens "^3.0.0" 138 | 139 | babel-core@^6.0.0, babel-core@^6.24.1: 140 | version "6.24.1" 141 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.1.tgz#8c428564dce1e1f41fb337ec34f4c3b022b5ad83" 142 | dependencies: 143 | babel-code-frame "^6.22.0" 144 | babel-generator "^6.24.1" 145 | babel-helpers "^6.24.1" 146 | babel-messages "^6.23.0" 147 | babel-register "^6.24.1" 148 | babel-runtime "^6.22.0" 149 | babel-template "^6.24.1" 150 | babel-traverse "^6.24.1" 151 | babel-types "^6.24.1" 152 | babylon "^6.11.0" 153 | convert-source-map "^1.1.0" 154 | debug "^2.1.1" 155 | json5 "^0.5.0" 156 | lodash "^4.2.0" 157 | minimatch "^3.0.2" 158 | path-is-absolute "^1.0.0" 159 | private "^0.1.6" 160 | slash "^1.0.0" 161 | source-map "^0.5.0" 162 | 163 | babel-generator@^6.18.0, babel-generator@^6.24.1: 164 | version "6.24.1" 165 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.1.tgz#e715f486c58ded25649d888944d52aa07c5d9497" 166 | dependencies: 167 | babel-messages "^6.23.0" 168 | babel-runtime "^6.22.0" 169 | babel-types "^6.24.1" 170 | detect-indent "^4.0.0" 171 | jsesc "^1.3.0" 172 | lodash "^4.2.0" 173 | source-map "^0.5.0" 174 | trim-right "^1.0.1" 175 | 176 | babel-helpers@^6.24.1: 177 | version "6.24.1" 178 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 179 | dependencies: 180 | babel-runtime "^6.22.0" 181 | babel-template "^6.24.1" 182 | 183 | babel-jest@^20.0.3: 184 | version "20.0.3" 185 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-20.0.3.tgz#e4a03b13dc10389e140fc645d09ffc4ced301671" 186 | dependencies: 187 | babel-core "^6.0.0" 188 | babel-plugin-istanbul "^4.0.0" 189 | babel-preset-jest "^20.0.3" 190 | 191 | babel-messages@^6.23.0: 192 | version "6.23.0" 193 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 194 | dependencies: 195 | babel-runtime "^6.22.0" 196 | 197 | babel-plugin-istanbul@^4.0.0: 198 | version "4.1.4" 199 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.4.tgz#18dde84bf3ce329fddf3f4103fae921456d8e587" 200 | dependencies: 201 | find-up "^2.1.0" 202 | istanbul-lib-instrument "^1.7.2" 203 | test-exclude "^4.1.1" 204 | 205 | babel-plugin-jest-hoist@^20.0.3: 206 | version "20.0.3" 207 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-20.0.3.tgz#afedc853bd3f8dc3548ea671fbe69d03cc2c1767" 208 | 209 | babel-preset-jest@^20.0.3: 210 | version "20.0.3" 211 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-20.0.3.tgz#cbacaadecb5d689ca1e1de1360ebfc66862c178a" 212 | dependencies: 213 | babel-plugin-jest-hoist "^20.0.3" 214 | 215 | babel-register@^6.24.1: 216 | version "6.24.1" 217 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 218 | dependencies: 219 | babel-core "^6.24.1" 220 | babel-runtime "^6.22.0" 221 | core-js "^2.4.0" 222 | home-or-tmp "^2.0.0" 223 | lodash "^4.2.0" 224 | mkdirp "^0.5.1" 225 | source-map-support "^0.4.2" 226 | 227 | babel-runtime@^6.22.0: 228 | version "6.23.0" 229 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 230 | dependencies: 231 | core-js "^2.4.0" 232 | regenerator-runtime "^0.10.0" 233 | 234 | babel-template@^6.16.0, babel-template@^6.24.1: 235 | version "6.24.1" 236 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333" 237 | dependencies: 238 | babel-runtime "^6.22.0" 239 | babel-traverse "^6.24.1" 240 | babel-types "^6.24.1" 241 | babylon "^6.11.0" 242 | lodash "^4.2.0" 243 | 244 | babel-traverse@^6.18.0, babel-traverse@^6.24.1: 245 | version "6.24.1" 246 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695" 247 | dependencies: 248 | babel-code-frame "^6.22.0" 249 | babel-messages "^6.23.0" 250 | babel-runtime "^6.22.0" 251 | babel-types "^6.24.1" 252 | babylon "^6.15.0" 253 | debug "^2.2.0" 254 | globals "^9.0.0" 255 | invariant "^2.2.0" 256 | lodash "^4.2.0" 257 | 258 | babel-types@^6.18.0, babel-types@^6.24.1: 259 | version "6.24.1" 260 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975" 261 | dependencies: 262 | babel-runtime "^6.22.0" 263 | esutils "^2.0.2" 264 | lodash "^4.2.0" 265 | to-fast-properties "^1.0.1" 266 | 267 | babylon@^6.11.0, babylon@^6.13.0, babylon@^6.15.0: 268 | version "6.17.2" 269 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.2.tgz#201d25ef5f892c41bae49488b08db0dd476e9f5c" 270 | 271 | balanced-match@^0.4.1: 272 | version "0.4.2" 273 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 274 | 275 | bcrypt-pbkdf@^1.0.0: 276 | version "1.0.1" 277 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 278 | dependencies: 279 | tweetnacl "^0.14.3" 280 | 281 | boom@2.x.x: 282 | version "2.10.1" 283 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 284 | dependencies: 285 | hoek "2.x.x" 286 | 287 | brace-expansion@^1.1.7: 288 | version "1.1.7" 289 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.7.tgz#3effc3c50e000531fb720eaff80f0ae8ef23cf59" 290 | dependencies: 291 | balanced-match "^0.4.1" 292 | concat-map "0.0.1" 293 | 294 | braces@^1.8.2: 295 | version "1.8.5" 296 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 297 | dependencies: 298 | expand-range "^1.8.1" 299 | preserve "^0.2.0" 300 | repeat-element "^1.1.2" 301 | 302 | browser-resolve@^1.11.2: 303 | version "1.11.2" 304 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 305 | dependencies: 306 | resolve "1.1.7" 307 | 308 | bser@1.0.2: 309 | version "1.0.2" 310 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" 311 | dependencies: 312 | node-int64 "^0.4.0" 313 | 314 | bser@^2.0.0: 315 | version "2.0.0" 316 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 317 | dependencies: 318 | node-int64 "^0.4.0" 319 | 320 | builtin-modules@^1.0.0: 321 | version "1.1.1" 322 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 323 | 324 | callsites@^2.0.0: 325 | version "2.0.0" 326 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 327 | 328 | camelcase@^1.0.2: 329 | version "1.2.1" 330 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 331 | 332 | camelcase@^3.0.0: 333 | version "3.0.0" 334 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 335 | 336 | caseless@~0.12.0: 337 | version "0.12.0" 338 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 339 | 340 | center-align@^0.1.1: 341 | version "0.1.3" 342 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 343 | dependencies: 344 | align-text "^0.1.3" 345 | lazy-cache "^1.0.3" 346 | 347 | chalk@^1.1.0, chalk@^1.1.3: 348 | version "1.1.3" 349 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 350 | dependencies: 351 | ansi-styles "^2.2.1" 352 | escape-string-regexp "^1.0.2" 353 | has-ansi "^2.0.0" 354 | strip-ansi "^3.0.0" 355 | supports-color "^2.0.0" 356 | 357 | ci-info@^1.0.0: 358 | version "1.0.0" 359 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 360 | 361 | cliui@^2.1.0: 362 | version "2.1.0" 363 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 364 | dependencies: 365 | center-align "^0.1.1" 366 | right-align "^0.1.1" 367 | wordwrap "0.0.2" 368 | 369 | cliui@^3.2.0: 370 | version "3.2.0" 371 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 372 | dependencies: 373 | string-width "^1.0.1" 374 | strip-ansi "^3.0.1" 375 | wrap-ansi "^2.0.0" 376 | 377 | co@^4.6.0: 378 | version "4.6.0" 379 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 380 | 381 | code-point-at@^1.0.0: 382 | version "1.1.0" 383 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 384 | 385 | color-convert@^1.0.0: 386 | version "1.9.0" 387 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 388 | dependencies: 389 | color-name "^1.1.1" 390 | 391 | color-name@^1.1.1: 392 | version "1.1.2" 393 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.2.tgz#5c8ab72b64bd2215d617ae9559ebb148475cf98d" 394 | 395 | combined-stream@^1.0.5, combined-stream@~1.0.5: 396 | version "1.0.5" 397 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 398 | dependencies: 399 | delayed-stream "~1.0.0" 400 | 401 | concat-map@0.0.1: 402 | version "0.0.1" 403 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 404 | 405 | content-type-parser@^1.0.1: 406 | version "1.0.1" 407 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 408 | 409 | convert-source-map@^1.1.0, convert-source-map@^1.4.0: 410 | version "1.5.0" 411 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 412 | 413 | core-js@^2.4.0: 414 | version "2.4.1" 415 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 416 | 417 | cross-spawn@^5.1.0: 418 | version "5.1.0" 419 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 420 | dependencies: 421 | lru-cache "^4.0.1" 422 | shebang-command "^1.2.0" 423 | which "^1.2.9" 424 | 425 | cryptiles@2.x.x: 426 | version "2.0.5" 427 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 428 | dependencies: 429 | boom "2.x.x" 430 | 431 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 432 | version "0.3.2" 433 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 434 | 435 | "cssstyle@>= 0.2.37 < 0.3.0": 436 | version "0.2.37" 437 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 438 | dependencies: 439 | cssom "0.3.x" 440 | 441 | dashdash@^1.12.0: 442 | version "1.14.1" 443 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 444 | dependencies: 445 | assert-plus "^1.0.0" 446 | 447 | debug@^2.1.1, debug@^2.2.0, debug@^2.6.3: 448 | version "2.6.8" 449 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 450 | dependencies: 451 | ms "2.0.0" 452 | 453 | decamelize@^1.0.0, decamelize@^1.1.1: 454 | version "1.2.0" 455 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 456 | 457 | deep-is@~0.1.3: 458 | version "0.1.3" 459 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 460 | 461 | default-require-extensions@^1.0.0: 462 | version "1.0.0" 463 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 464 | dependencies: 465 | strip-bom "^2.0.0" 466 | 467 | delayed-stream@~1.0.0: 468 | version "1.0.0" 469 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 470 | 471 | detect-indent@^4.0.0: 472 | version "4.0.0" 473 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 474 | dependencies: 475 | repeating "^2.0.0" 476 | 477 | diff@^3.2.0: 478 | version "3.2.0" 479 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 480 | 481 | ecc-jsbn@~0.1.1: 482 | version "0.1.1" 483 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 484 | dependencies: 485 | jsbn "~0.1.0" 486 | 487 | "errno@>=0.1.1 <0.2.0-0": 488 | version "0.1.4" 489 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 490 | dependencies: 491 | prr "~0.0.0" 492 | 493 | error-ex@^1.2.0: 494 | version "1.3.1" 495 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 496 | dependencies: 497 | is-arrayish "^0.2.1" 498 | 499 | escape-string-regexp@^1.0.2: 500 | version "1.0.5" 501 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 502 | 503 | escodegen@^1.6.1: 504 | version "1.8.1" 505 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 506 | dependencies: 507 | esprima "^2.7.1" 508 | estraverse "^1.9.1" 509 | esutils "^2.0.2" 510 | optionator "^0.8.1" 511 | optionalDependencies: 512 | source-map "~0.2.0" 513 | 514 | esprima@^2.7.1: 515 | version "2.7.3" 516 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 517 | 518 | esprima@^3.1.1: 519 | version "3.1.3" 520 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 521 | 522 | estraverse@^1.9.1: 523 | version "1.9.3" 524 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 525 | 526 | esutils@^2.0.2: 527 | version "2.0.2" 528 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 529 | 530 | exec-sh@^0.2.0: 531 | version "0.2.0" 532 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" 533 | dependencies: 534 | merge "^1.1.3" 535 | 536 | expand-brackets@^0.1.4: 537 | version "0.1.5" 538 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 539 | dependencies: 540 | is-posix-bracket "^0.1.0" 541 | 542 | expand-range@^1.8.1: 543 | version "1.8.2" 544 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 545 | dependencies: 546 | fill-range "^2.1.0" 547 | 548 | extend@~3.0.0: 549 | version "3.0.1" 550 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 551 | 552 | extglob@^0.3.1: 553 | version "0.3.2" 554 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 555 | dependencies: 556 | is-extglob "^1.0.0" 557 | 558 | extsprintf@1.0.2: 559 | version "1.0.2" 560 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 561 | 562 | fast-levenshtein@~2.0.4: 563 | version "2.0.6" 564 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 565 | 566 | fb-watchman@^1.8.0: 567 | version "1.9.2" 568 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383" 569 | dependencies: 570 | bser "1.0.2" 571 | 572 | fb-watchman@^2.0.0: 573 | version "2.0.0" 574 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 575 | dependencies: 576 | bser "^2.0.0" 577 | 578 | filename-regex@^2.0.0: 579 | version "2.0.1" 580 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 581 | 582 | fileset@^2.0.2: 583 | version "2.0.3" 584 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 585 | dependencies: 586 | glob "^7.0.3" 587 | minimatch "^3.0.3" 588 | 589 | fill-range@^2.1.0: 590 | version "2.2.3" 591 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 592 | dependencies: 593 | is-number "^2.1.0" 594 | isobject "^2.0.0" 595 | randomatic "^1.1.3" 596 | repeat-element "^1.1.2" 597 | repeat-string "^1.5.2" 598 | 599 | find-up@^1.0.0: 600 | version "1.1.2" 601 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 602 | dependencies: 603 | path-exists "^2.0.0" 604 | pinkie-promise "^2.0.0" 605 | 606 | find-up@^2.1.0: 607 | version "2.1.0" 608 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 609 | dependencies: 610 | locate-path "^2.0.0" 611 | 612 | flow-bin@^0.47.0: 613 | version "0.47.0" 614 | resolved "https://registry.yarnpkg.com/flow-bin/-/flow-bin-0.47.0.tgz#a2a08ab3e0d1f1cb57d17e27b30b118b62fda367" 615 | 616 | for-in@^1.0.1: 617 | version "1.0.2" 618 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 619 | 620 | for-own@^0.1.4: 621 | version "0.1.5" 622 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 623 | dependencies: 624 | for-in "^1.0.1" 625 | 626 | forever-agent@~0.6.1: 627 | version "0.6.1" 628 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 629 | 630 | form-data@~2.1.1: 631 | version "2.1.4" 632 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 633 | dependencies: 634 | asynckit "^0.4.0" 635 | combined-stream "^1.0.5" 636 | mime-types "^2.1.12" 637 | 638 | fs.realpath@^1.0.0: 639 | version "1.0.0" 640 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 641 | 642 | get-caller-file@^1.0.1: 643 | version "1.0.2" 644 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 645 | 646 | getpass@^0.1.1: 647 | version "0.1.7" 648 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 649 | dependencies: 650 | assert-plus "^1.0.0" 651 | 652 | glob-base@^0.3.0: 653 | version "0.3.0" 654 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 655 | dependencies: 656 | glob-parent "^2.0.0" 657 | is-glob "^2.0.0" 658 | 659 | glob-parent@^2.0.0: 660 | version "2.0.0" 661 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 662 | dependencies: 663 | is-glob "^2.0.0" 664 | 665 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.1: 666 | version "7.1.2" 667 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 668 | dependencies: 669 | fs.realpath "^1.0.0" 670 | inflight "^1.0.4" 671 | inherits "2" 672 | minimatch "^3.0.4" 673 | once "^1.3.0" 674 | path-is-absolute "^1.0.0" 675 | 676 | globals@^9.0.0: 677 | version "9.17.0" 678 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 679 | 680 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 681 | version "4.1.11" 682 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 683 | 684 | growly@^1.3.0: 685 | version "1.3.0" 686 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 687 | 688 | handlebars@^4.0.3: 689 | version "4.0.10" 690 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.10.tgz#3d30c718b09a3d96f23ea4cc1f403c4d3ba9ff4f" 691 | dependencies: 692 | async "^1.4.0" 693 | optimist "^0.6.1" 694 | source-map "^0.4.4" 695 | optionalDependencies: 696 | uglify-js "^2.6" 697 | 698 | har-schema@^1.0.5: 699 | version "1.0.5" 700 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 701 | 702 | har-validator@~4.2.1: 703 | version "4.2.1" 704 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 705 | dependencies: 706 | ajv "^4.9.1" 707 | har-schema "^1.0.5" 708 | 709 | has-ansi@^2.0.0: 710 | version "2.0.0" 711 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 712 | dependencies: 713 | ansi-regex "^2.0.0" 714 | 715 | has-flag@^1.0.0: 716 | version "1.0.0" 717 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 718 | 719 | hawk@~3.1.3: 720 | version "3.1.3" 721 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 722 | dependencies: 723 | boom "2.x.x" 724 | cryptiles "2.x.x" 725 | hoek "2.x.x" 726 | sntp "1.x.x" 727 | 728 | hoek@2.x.x: 729 | version "2.16.3" 730 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 731 | 732 | home-or-tmp@^2.0.0: 733 | version "2.0.0" 734 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 735 | dependencies: 736 | os-homedir "^1.0.0" 737 | os-tmpdir "^1.0.1" 738 | 739 | hosted-git-info@^2.1.4: 740 | version "2.4.2" 741 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.2.tgz#0076b9f46a270506ddbaaea56496897460612a67" 742 | 743 | html-encoding-sniffer@^1.0.1: 744 | version "1.0.1" 745 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 746 | dependencies: 747 | whatwg-encoding "^1.0.1" 748 | 749 | http-signature@~1.1.0: 750 | version "1.1.1" 751 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 752 | dependencies: 753 | assert-plus "^0.2.0" 754 | jsprim "^1.2.2" 755 | sshpk "^1.7.0" 756 | 757 | iconv-lite@0.4.13: 758 | version "0.4.13" 759 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 760 | 761 | inflight@^1.0.4: 762 | version "1.0.6" 763 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 764 | dependencies: 765 | once "^1.3.0" 766 | wrappy "1" 767 | 768 | inherits@2: 769 | version "2.0.3" 770 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 771 | 772 | invariant@^2.2.0: 773 | version "2.2.2" 774 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 775 | dependencies: 776 | loose-envify "^1.0.0" 777 | 778 | invert-kv@^1.0.0: 779 | version "1.0.0" 780 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 781 | 782 | is-arrayish@^0.2.1: 783 | version "0.2.1" 784 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 785 | 786 | is-buffer@^1.1.5: 787 | version "1.1.5" 788 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 789 | 790 | is-builtin-module@^1.0.0: 791 | version "1.0.0" 792 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 793 | dependencies: 794 | builtin-modules "^1.0.0" 795 | 796 | is-ci@^1.0.10: 797 | version "1.0.10" 798 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 799 | dependencies: 800 | ci-info "^1.0.0" 801 | 802 | is-dotfile@^1.0.0: 803 | version "1.0.3" 804 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 805 | 806 | is-equal-shallow@^0.1.3: 807 | version "0.1.3" 808 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 809 | dependencies: 810 | is-primitive "^2.0.0" 811 | 812 | is-extendable@^0.1.1: 813 | version "0.1.1" 814 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 815 | 816 | is-extglob@^1.0.0: 817 | version "1.0.0" 818 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 819 | 820 | is-finite@^1.0.0: 821 | version "1.0.2" 822 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 823 | dependencies: 824 | number-is-nan "^1.0.0" 825 | 826 | is-fullwidth-code-point@^1.0.0: 827 | version "1.0.0" 828 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 829 | dependencies: 830 | number-is-nan "^1.0.0" 831 | 832 | is-glob@^2.0.0, is-glob@^2.0.1: 833 | version "2.0.1" 834 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 835 | dependencies: 836 | is-extglob "^1.0.0" 837 | 838 | is-number@^2.0.2, is-number@^2.1.0: 839 | version "2.1.0" 840 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 841 | dependencies: 842 | kind-of "^3.0.2" 843 | 844 | is-posix-bracket@^0.1.0: 845 | version "0.1.1" 846 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 847 | 848 | is-primitive@^2.0.0: 849 | version "2.0.0" 850 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 851 | 852 | is-promise@^2.1.0: 853 | version "2.1.0" 854 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 855 | 856 | is-typedarray@~1.0.0: 857 | version "1.0.0" 858 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 859 | 860 | is-utf8@^0.2.0: 861 | version "0.2.1" 862 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 863 | 864 | isarray@1.0.0: 865 | version "1.0.0" 866 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 867 | 868 | isexe@^2.0.0: 869 | version "2.0.0" 870 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 871 | 872 | isobject@^2.0.0: 873 | version "2.1.0" 874 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 875 | dependencies: 876 | isarray "1.0.0" 877 | 878 | isstream@~0.1.2: 879 | version "0.1.2" 880 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 881 | 882 | istanbul-api@^1.1.1: 883 | version "1.1.9" 884 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.9.tgz#2827920d380d4286d857d57a2968a841db8a7ec8" 885 | dependencies: 886 | async "^2.1.4" 887 | fileset "^2.0.2" 888 | istanbul-lib-coverage "^1.1.1" 889 | istanbul-lib-hook "^1.0.7" 890 | istanbul-lib-instrument "^1.7.2" 891 | istanbul-lib-report "^1.1.1" 892 | istanbul-lib-source-maps "^1.2.1" 893 | istanbul-reports "^1.1.1" 894 | js-yaml "^3.7.0" 895 | mkdirp "^0.5.1" 896 | once "^1.4.0" 897 | 898 | istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.1.1: 899 | version "1.1.1" 900 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" 901 | 902 | istanbul-lib-hook@^1.0.7: 903 | version "1.0.7" 904 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.7.tgz#dd6607f03076578fe7d6f2a630cf143b49bacddc" 905 | dependencies: 906 | append-transform "^0.4.0" 907 | 908 | istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.7.2: 909 | version "1.7.2" 910 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.2.tgz#6014b03d3470fb77638d5802508c255c06312e56" 911 | dependencies: 912 | babel-generator "^6.18.0" 913 | babel-template "^6.16.0" 914 | babel-traverse "^6.18.0" 915 | babel-types "^6.18.0" 916 | babylon "^6.13.0" 917 | istanbul-lib-coverage "^1.1.1" 918 | semver "^5.3.0" 919 | 920 | istanbul-lib-report@^1.1.1: 921 | version "1.1.1" 922 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#f0e55f56655ffa34222080b7a0cd4760e1405fc9" 923 | dependencies: 924 | istanbul-lib-coverage "^1.1.1" 925 | mkdirp "^0.5.1" 926 | path-parse "^1.0.5" 927 | supports-color "^3.1.2" 928 | 929 | istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.1: 930 | version "1.2.1" 931 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.1.tgz#a6fe1acba8ce08eebc638e572e294d267008aa0c" 932 | dependencies: 933 | debug "^2.6.3" 934 | istanbul-lib-coverage "^1.1.1" 935 | mkdirp "^0.5.1" 936 | rimraf "^2.6.1" 937 | source-map "^0.5.3" 938 | 939 | istanbul-reports@^1.1.1: 940 | version "1.1.1" 941 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.1.tgz#042be5c89e175bc3f86523caab29c014e77fee4e" 942 | dependencies: 943 | handlebars "^4.0.3" 944 | 945 | jest-changed-files@^20.0.3: 946 | version "20.0.3" 947 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-20.0.3.tgz#9394d5cc65c438406149bef1bf4d52b68e03e3f8" 948 | 949 | jest-cli@^20.0.4: 950 | version "20.0.4" 951 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-20.0.4.tgz#e532b19d88ae5bc6c417e8b0593a6fe954b1dc93" 952 | dependencies: 953 | ansi-escapes "^1.4.0" 954 | callsites "^2.0.0" 955 | chalk "^1.1.3" 956 | graceful-fs "^4.1.11" 957 | is-ci "^1.0.10" 958 | istanbul-api "^1.1.1" 959 | istanbul-lib-coverage "^1.0.1" 960 | istanbul-lib-instrument "^1.4.2" 961 | istanbul-lib-source-maps "^1.1.0" 962 | jest-changed-files "^20.0.3" 963 | jest-config "^20.0.4" 964 | jest-docblock "^20.0.3" 965 | jest-environment-jsdom "^20.0.3" 966 | jest-haste-map "^20.0.4" 967 | jest-jasmine2 "^20.0.4" 968 | jest-message-util "^20.0.3" 969 | jest-regex-util "^20.0.3" 970 | jest-resolve-dependencies "^20.0.3" 971 | jest-runtime "^20.0.4" 972 | jest-snapshot "^20.0.3" 973 | jest-util "^20.0.3" 974 | micromatch "^2.3.11" 975 | node-notifier "^5.0.2" 976 | pify "^2.3.0" 977 | slash "^1.0.0" 978 | string-length "^1.0.1" 979 | throat "^3.0.0" 980 | which "^1.2.12" 981 | worker-farm "^1.3.1" 982 | yargs "^7.0.2" 983 | 984 | jest-config@^20.0.4: 985 | version "20.0.4" 986 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-20.0.4.tgz#e37930ab2217c913605eff13e7bd763ec48faeea" 987 | dependencies: 988 | chalk "^1.1.3" 989 | glob "^7.1.1" 990 | jest-environment-jsdom "^20.0.3" 991 | jest-environment-node "^20.0.3" 992 | jest-jasmine2 "^20.0.4" 993 | jest-matcher-utils "^20.0.3" 994 | jest-regex-util "^20.0.3" 995 | jest-resolve "^20.0.4" 996 | jest-validate "^20.0.3" 997 | pretty-format "^20.0.3" 998 | 999 | jest-diff@^20.0.3: 1000 | version "20.0.3" 1001 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-20.0.3.tgz#81f288fd9e675f0fb23c75f1c2b19445fe586617" 1002 | dependencies: 1003 | chalk "^1.1.3" 1004 | diff "^3.2.0" 1005 | jest-matcher-utils "^20.0.3" 1006 | pretty-format "^20.0.3" 1007 | 1008 | jest-docblock@^20.0.3: 1009 | version "20.0.3" 1010 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-20.0.3.tgz#17bea984342cc33d83c50fbe1545ea0efaa44712" 1011 | 1012 | jest-environment-jsdom@^20.0.3: 1013 | version "20.0.3" 1014 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-20.0.3.tgz#048a8ac12ee225f7190417713834bb999787de99" 1015 | dependencies: 1016 | jest-mock "^20.0.3" 1017 | jest-util "^20.0.3" 1018 | jsdom "^9.12.0" 1019 | 1020 | jest-environment-node@^20.0.3: 1021 | version "20.0.3" 1022 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-20.0.3.tgz#d488bc4612af2c246e986e8ae7671a099163d403" 1023 | dependencies: 1024 | jest-mock "^20.0.3" 1025 | jest-util "^20.0.3" 1026 | 1027 | jest-haste-map@^20.0.4: 1028 | version "20.0.4" 1029 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-20.0.4.tgz#653eb55c889ce3c021f7b94693f20a4159badf03" 1030 | dependencies: 1031 | fb-watchman "^2.0.0" 1032 | graceful-fs "^4.1.11" 1033 | jest-docblock "^20.0.3" 1034 | micromatch "^2.3.11" 1035 | sane "~1.6.0" 1036 | worker-farm "^1.3.1" 1037 | 1038 | jest-jasmine2@^20.0.4: 1039 | version "20.0.4" 1040 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-20.0.4.tgz#fcc5b1411780d911d042902ef1859e852e60d5e1" 1041 | dependencies: 1042 | chalk "^1.1.3" 1043 | graceful-fs "^4.1.11" 1044 | jest-diff "^20.0.3" 1045 | jest-matcher-utils "^20.0.3" 1046 | jest-matchers "^20.0.3" 1047 | jest-message-util "^20.0.3" 1048 | jest-snapshot "^20.0.3" 1049 | once "^1.4.0" 1050 | p-map "^1.1.1" 1051 | 1052 | jest-matcher-utils@^20.0.3: 1053 | version "20.0.3" 1054 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-20.0.3.tgz#b3a6b8e37ca577803b0832a98b164f44b7815612" 1055 | dependencies: 1056 | chalk "^1.1.3" 1057 | pretty-format "^20.0.3" 1058 | 1059 | jest-matchers@^20.0.3: 1060 | version "20.0.3" 1061 | resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-20.0.3.tgz#ca69db1c32db5a6f707fa5e0401abb55700dfd60" 1062 | dependencies: 1063 | jest-diff "^20.0.3" 1064 | jest-matcher-utils "^20.0.3" 1065 | jest-message-util "^20.0.3" 1066 | jest-regex-util "^20.0.3" 1067 | 1068 | jest-message-util@^20.0.3: 1069 | version "20.0.3" 1070 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-20.0.3.tgz#6aec2844306fcb0e6e74d5796c1006d96fdd831c" 1071 | dependencies: 1072 | chalk "^1.1.3" 1073 | micromatch "^2.3.11" 1074 | slash "^1.0.0" 1075 | 1076 | jest-mock@^20.0.3: 1077 | version "20.0.3" 1078 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-20.0.3.tgz#8bc070e90414aa155c11a8d64c869a0d5c71da59" 1079 | 1080 | jest-regex-util@^20.0.3: 1081 | version "20.0.3" 1082 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-20.0.3.tgz#85bbab5d133e44625b19faf8c6aa5122d085d762" 1083 | 1084 | jest-resolve-dependencies@^20.0.3: 1085 | version "20.0.3" 1086 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-20.0.3.tgz#6e14a7b717af0f2cb3667c549de40af017b1723a" 1087 | dependencies: 1088 | jest-regex-util "^20.0.3" 1089 | 1090 | jest-resolve@^20.0.4: 1091 | version "20.0.4" 1092 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-20.0.4.tgz#9448b3e8b6bafc15479444c6499045b7ffe597a5" 1093 | dependencies: 1094 | browser-resolve "^1.11.2" 1095 | is-builtin-module "^1.0.0" 1096 | resolve "^1.3.2" 1097 | 1098 | jest-runtime@^20.0.4: 1099 | version "20.0.4" 1100 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-20.0.4.tgz#a2c802219c4203f754df1404e490186169d124d8" 1101 | dependencies: 1102 | babel-core "^6.0.0" 1103 | babel-jest "^20.0.3" 1104 | babel-plugin-istanbul "^4.0.0" 1105 | chalk "^1.1.3" 1106 | convert-source-map "^1.4.0" 1107 | graceful-fs "^4.1.11" 1108 | jest-config "^20.0.4" 1109 | jest-haste-map "^20.0.4" 1110 | jest-regex-util "^20.0.3" 1111 | jest-resolve "^20.0.4" 1112 | jest-util "^20.0.3" 1113 | json-stable-stringify "^1.0.1" 1114 | micromatch "^2.3.11" 1115 | strip-bom "3.0.0" 1116 | yargs "^7.0.2" 1117 | 1118 | jest-snapshot@^20.0.3: 1119 | version "20.0.3" 1120 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-20.0.3.tgz#5b847e1adb1a4d90852a7f9f125086e187c76566" 1121 | dependencies: 1122 | chalk "^1.1.3" 1123 | jest-diff "^20.0.3" 1124 | jest-matcher-utils "^20.0.3" 1125 | jest-util "^20.0.3" 1126 | natural-compare "^1.4.0" 1127 | pretty-format "^20.0.3" 1128 | 1129 | jest-util@^20.0.3: 1130 | version "20.0.3" 1131 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-20.0.3.tgz#0c07f7d80d82f4e5a67c6f8b9c3fe7f65cfd32ad" 1132 | dependencies: 1133 | chalk "^1.1.3" 1134 | graceful-fs "^4.1.11" 1135 | jest-message-util "^20.0.3" 1136 | jest-mock "^20.0.3" 1137 | jest-validate "^20.0.3" 1138 | leven "^2.1.0" 1139 | mkdirp "^0.5.1" 1140 | 1141 | jest-validate@^20.0.3: 1142 | version "20.0.3" 1143 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-20.0.3.tgz#d0cfd1de4f579f298484925c280f8f1d94ec3cab" 1144 | dependencies: 1145 | chalk "^1.1.3" 1146 | jest-matcher-utils "^20.0.3" 1147 | leven "^2.1.0" 1148 | pretty-format "^20.0.3" 1149 | 1150 | jest@^20.0.4: 1151 | version "20.0.4" 1152 | resolved "https://registry.yarnpkg.com/jest/-/jest-20.0.4.tgz#3dd260c2989d6dad678b1e9cc4d91944f6d602ac" 1153 | dependencies: 1154 | jest-cli "^20.0.4" 1155 | 1156 | jodid25519@^1.0.0: 1157 | version "1.0.2" 1158 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 1159 | dependencies: 1160 | jsbn "~0.1.0" 1161 | 1162 | js-tokens@^3.0.0: 1163 | version "3.0.1" 1164 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 1165 | 1166 | js-yaml@^3.7.0: 1167 | version "3.8.4" 1168 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.4.tgz#520b4564f86573ba96662af85a8cafa7b4b5a6f6" 1169 | dependencies: 1170 | argparse "^1.0.7" 1171 | esprima "^3.1.1" 1172 | 1173 | jsbn@~0.1.0: 1174 | version "0.1.1" 1175 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1176 | 1177 | jsdom@^9.12.0: 1178 | version "9.12.0" 1179 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 1180 | dependencies: 1181 | abab "^1.0.3" 1182 | acorn "^4.0.4" 1183 | acorn-globals "^3.1.0" 1184 | array-equal "^1.0.0" 1185 | content-type-parser "^1.0.1" 1186 | cssom ">= 0.3.2 < 0.4.0" 1187 | cssstyle ">= 0.2.37 < 0.3.0" 1188 | escodegen "^1.6.1" 1189 | html-encoding-sniffer "^1.0.1" 1190 | nwmatcher ">= 1.3.9 < 2.0.0" 1191 | parse5 "^1.5.1" 1192 | request "^2.79.0" 1193 | sax "^1.2.1" 1194 | symbol-tree "^3.2.1" 1195 | tough-cookie "^2.3.2" 1196 | webidl-conversions "^4.0.0" 1197 | whatwg-encoding "^1.0.1" 1198 | whatwg-url "^4.3.0" 1199 | xml-name-validator "^2.0.1" 1200 | 1201 | jsesc@^1.3.0: 1202 | version "1.3.0" 1203 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1204 | 1205 | json-schema@0.2.3: 1206 | version "0.2.3" 1207 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1208 | 1209 | 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-stringify-safe@~5.0.1: 1216 | version "5.0.1" 1217 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1218 | 1219 | json5@^0.5.0: 1220 | version "0.5.1" 1221 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1222 | 1223 | jsonify@~0.0.0: 1224 | version "0.0.0" 1225 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1226 | 1227 | jsprim@^1.2.2: 1228 | version "1.4.0" 1229 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 1230 | dependencies: 1231 | assert-plus "1.0.0" 1232 | extsprintf "1.0.2" 1233 | json-schema "0.2.3" 1234 | verror "1.3.6" 1235 | 1236 | kind-of@^3.0.2: 1237 | version "3.2.2" 1238 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1239 | dependencies: 1240 | is-buffer "^1.1.5" 1241 | 1242 | lazy-cache@^1.0.3: 1243 | version "1.0.4" 1244 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1245 | 1246 | lcid@^1.0.0: 1247 | version "1.0.0" 1248 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1249 | dependencies: 1250 | invert-kv "^1.0.0" 1251 | 1252 | leven@^2.1.0: 1253 | version "2.1.0" 1254 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 1255 | 1256 | levn@~0.3.0: 1257 | version "0.3.0" 1258 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1259 | dependencies: 1260 | prelude-ls "~1.1.2" 1261 | type-check "~0.3.2" 1262 | 1263 | load-json-file@^1.0.0: 1264 | version "1.1.0" 1265 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1266 | dependencies: 1267 | graceful-fs "^4.1.2" 1268 | parse-json "^2.2.0" 1269 | pify "^2.0.0" 1270 | pinkie-promise "^2.0.0" 1271 | strip-bom "^2.0.0" 1272 | 1273 | locate-path@^2.0.0: 1274 | version "2.0.0" 1275 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1276 | dependencies: 1277 | p-locate "^2.0.0" 1278 | path-exists "^3.0.0" 1279 | 1280 | lodash@^4.14.0, lodash@^4.2.0: 1281 | version "4.17.4" 1282 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1283 | 1284 | longest@^1.0.1: 1285 | version "1.0.1" 1286 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1287 | 1288 | loose-envify@^1.0.0: 1289 | version "1.3.1" 1290 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1291 | dependencies: 1292 | js-tokens "^3.0.0" 1293 | 1294 | lru-cache@^4.0.1: 1295 | version "4.1.1" 1296 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 1297 | dependencies: 1298 | pseudomap "^1.0.2" 1299 | yallist "^2.1.2" 1300 | 1301 | makeerror@1.0.x: 1302 | version "1.0.11" 1303 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 1304 | dependencies: 1305 | tmpl "1.0.x" 1306 | 1307 | merge@^1.1.3: 1308 | version "1.2.0" 1309 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 1310 | 1311 | micromatch@^2.1.5, micromatch@^2.3.11: 1312 | version "2.3.11" 1313 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1314 | dependencies: 1315 | arr-diff "^2.0.0" 1316 | array-unique "^0.2.1" 1317 | braces "^1.8.2" 1318 | expand-brackets "^0.1.4" 1319 | extglob "^0.3.1" 1320 | filename-regex "^2.0.0" 1321 | is-extglob "^1.0.0" 1322 | is-glob "^2.0.1" 1323 | kind-of "^3.0.2" 1324 | normalize-path "^2.0.1" 1325 | object.omit "^2.0.0" 1326 | parse-glob "^3.0.4" 1327 | regex-cache "^0.4.2" 1328 | 1329 | mime-db@~1.27.0: 1330 | version "1.27.0" 1331 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 1332 | 1333 | mime-types@^2.1.12, mime-types@~2.1.7: 1334 | version "2.1.15" 1335 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 1336 | dependencies: 1337 | mime-db "~1.27.0" 1338 | 1339 | minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 1340 | version "3.0.4" 1341 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1342 | dependencies: 1343 | brace-expansion "^1.1.7" 1344 | 1345 | minimist@0.0.8, minimist@~0.0.1: 1346 | version "0.0.8" 1347 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1348 | 1349 | minimist@^1.1.1: 1350 | version "1.2.0" 1351 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1352 | 1353 | mkdirp@^0.5.1: 1354 | version "0.5.1" 1355 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1356 | dependencies: 1357 | minimist "0.0.8" 1358 | 1359 | ms@2.0.0: 1360 | version "2.0.0" 1361 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1362 | 1363 | natural-compare@^1.4.0: 1364 | version "1.4.0" 1365 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1366 | 1367 | node-int64@^0.4.0: 1368 | version "0.4.0" 1369 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 1370 | 1371 | node-notifier@^5.0.2: 1372 | version "5.1.2" 1373 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 1374 | dependencies: 1375 | growly "^1.3.0" 1376 | semver "^5.3.0" 1377 | shellwords "^0.1.0" 1378 | which "^1.2.12" 1379 | 1380 | normalize-package-data@^2.3.2: 1381 | version "2.3.8" 1382 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" 1383 | dependencies: 1384 | hosted-git-info "^2.1.4" 1385 | is-builtin-module "^1.0.0" 1386 | semver "2 || 3 || 4 || 5" 1387 | validate-npm-package-license "^3.0.1" 1388 | 1389 | normalize-path@^2.0.1: 1390 | version "2.1.1" 1391 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1392 | dependencies: 1393 | remove-trailing-separator "^1.0.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 | "nwmatcher@>= 1.3.9 < 2.0.0": 1400 | version "1.4.0" 1401 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.0.tgz#b4389362170e7ef9798c3c7716d80ebc0106fccf" 1402 | 1403 | oauth-sign@~0.8.1: 1404 | version "0.8.2" 1405 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1406 | 1407 | object-assign@^4.1.0: 1408 | version "4.1.1" 1409 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1410 | 1411 | object.omit@^2.0.0: 1412 | version "2.0.1" 1413 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1414 | dependencies: 1415 | for-own "^0.1.4" 1416 | is-extendable "^0.1.1" 1417 | 1418 | once@^1.3.0, once@^1.4.0: 1419 | version "1.4.0" 1420 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1421 | dependencies: 1422 | wrappy "1" 1423 | 1424 | optimist@^0.6.1: 1425 | version "0.6.1" 1426 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 1427 | dependencies: 1428 | minimist "~0.0.1" 1429 | wordwrap "~0.0.2" 1430 | 1431 | optionator@^0.8.1: 1432 | version "0.8.2" 1433 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 1434 | dependencies: 1435 | deep-is "~0.1.3" 1436 | fast-levenshtein "~2.0.4" 1437 | levn "~0.3.0" 1438 | prelude-ls "~1.1.2" 1439 | type-check "~0.3.2" 1440 | wordwrap "~1.0.0" 1441 | 1442 | os-homedir@^1.0.0: 1443 | version "1.0.2" 1444 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1445 | 1446 | os-locale@^1.4.0: 1447 | version "1.4.0" 1448 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 1449 | dependencies: 1450 | lcid "^1.0.0" 1451 | 1452 | os-tmpdir@^1.0.1: 1453 | version "1.0.2" 1454 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1455 | 1456 | p-limit@^1.1.0: 1457 | version "1.1.0" 1458 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 1459 | 1460 | p-locate@^2.0.0: 1461 | version "2.0.0" 1462 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1463 | dependencies: 1464 | p-limit "^1.1.0" 1465 | 1466 | p-map@^1.1.1: 1467 | version "1.1.1" 1468 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.1.1.tgz#05f5e4ae97a068371bc2a5cc86bfbdbc19c4ae7a" 1469 | 1470 | parse-glob@^3.0.4: 1471 | version "3.0.4" 1472 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1473 | dependencies: 1474 | glob-base "^0.3.0" 1475 | is-dotfile "^1.0.0" 1476 | is-extglob "^1.0.0" 1477 | is-glob "^2.0.0" 1478 | 1479 | parse-json@^2.2.0: 1480 | version "2.2.0" 1481 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1482 | dependencies: 1483 | error-ex "^1.2.0" 1484 | 1485 | parse5@^1.5.1: 1486 | version "1.5.1" 1487 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 1488 | 1489 | path-exists@^2.0.0: 1490 | version "2.1.0" 1491 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1492 | dependencies: 1493 | pinkie-promise "^2.0.0" 1494 | 1495 | path-exists@^3.0.0: 1496 | version "3.0.0" 1497 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1498 | 1499 | path-is-absolute@^1.0.0: 1500 | version "1.0.1" 1501 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1502 | 1503 | path-parse@^1.0.5: 1504 | version "1.0.5" 1505 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 1506 | 1507 | path-type@^1.0.0: 1508 | version "1.1.0" 1509 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 1510 | dependencies: 1511 | graceful-fs "^4.1.2" 1512 | pify "^2.0.0" 1513 | pinkie-promise "^2.0.0" 1514 | 1515 | performance-now@^0.2.0: 1516 | version "0.2.0" 1517 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 1518 | 1519 | pify@^2.0.0, pify@^2.3.0: 1520 | version "2.3.0" 1521 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1522 | 1523 | pinkie-promise@^2.0.0: 1524 | version "2.0.1" 1525 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1526 | dependencies: 1527 | pinkie "^2.0.0" 1528 | 1529 | pinkie@^2.0.0: 1530 | version "2.0.4" 1531 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1532 | 1533 | prelude-ls@~1.1.2: 1534 | version "1.1.2" 1535 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 1536 | 1537 | preserve@^0.2.0: 1538 | version "0.2.0" 1539 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1540 | 1541 | pretty-format@^20.0.3: 1542 | version "20.0.3" 1543 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-20.0.3.tgz#020e350a560a1fe1a98dc3beb6ccffb386de8b14" 1544 | dependencies: 1545 | ansi-regex "^2.1.1" 1546 | ansi-styles "^3.0.0" 1547 | 1548 | private@^0.1.6: 1549 | version "0.1.7" 1550 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 1551 | 1552 | prr@~0.0.0: 1553 | version "0.0.0" 1554 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 1555 | 1556 | pseudomap@^1.0.2: 1557 | version "1.0.2" 1558 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 1559 | 1560 | punycode@^1.4.1: 1561 | version "1.4.1" 1562 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1563 | 1564 | qs@~6.4.0: 1565 | version "6.4.0" 1566 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 1567 | 1568 | randomatic@^1.1.3: 1569 | version "1.1.6" 1570 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 1571 | dependencies: 1572 | is-number "^2.0.2" 1573 | kind-of "^3.0.2" 1574 | 1575 | read-pkg-up@^1.0.1: 1576 | version "1.0.1" 1577 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 1578 | dependencies: 1579 | find-up "^1.0.0" 1580 | read-pkg "^1.0.0" 1581 | 1582 | read-pkg@^1.0.0: 1583 | version "1.1.0" 1584 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 1585 | dependencies: 1586 | load-json-file "^1.0.0" 1587 | normalize-package-data "^2.3.2" 1588 | path-type "^1.0.0" 1589 | 1590 | regenerator-runtime@^0.10.0: 1591 | version "0.10.5" 1592 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 1593 | 1594 | regex-cache@^0.4.2: 1595 | version "0.4.3" 1596 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 1597 | dependencies: 1598 | is-equal-shallow "^0.1.3" 1599 | is-primitive "^2.0.0" 1600 | 1601 | remove-trailing-separator@^1.0.1: 1602 | version "1.0.1" 1603 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" 1604 | 1605 | repeat-element@^1.1.2: 1606 | version "1.1.2" 1607 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1608 | 1609 | repeat-string@^1.5.2: 1610 | version "1.6.1" 1611 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1612 | 1613 | repeating@^2.0.0: 1614 | version "2.0.1" 1615 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1616 | dependencies: 1617 | is-finite "^1.0.0" 1618 | 1619 | request@^2.79.0: 1620 | version "2.81.0" 1621 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 1622 | dependencies: 1623 | aws-sign2 "~0.6.0" 1624 | aws4 "^1.2.1" 1625 | caseless "~0.12.0" 1626 | combined-stream "~1.0.5" 1627 | extend "~3.0.0" 1628 | forever-agent "~0.6.1" 1629 | form-data "~2.1.1" 1630 | har-validator "~4.2.1" 1631 | hawk "~3.1.3" 1632 | http-signature "~1.1.0" 1633 | is-typedarray "~1.0.0" 1634 | isstream "~0.1.2" 1635 | json-stringify-safe "~5.0.1" 1636 | mime-types "~2.1.7" 1637 | oauth-sign "~0.8.1" 1638 | performance-now "^0.2.0" 1639 | qs "~6.4.0" 1640 | safe-buffer "^5.0.1" 1641 | stringstream "~0.0.4" 1642 | tough-cookie "~2.3.0" 1643 | tunnel-agent "^0.6.0" 1644 | uuid "^3.0.0" 1645 | 1646 | require-directory@^2.1.1: 1647 | version "2.1.1" 1648 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 1649 | 1650 | require-main-filename@^1.0.1: 1651 | version "1.0.1" 1652 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 1653 | 1654 | resolve@1.1.7: 1655 | version "1.1.7" 1656 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 1657 | 1658 | resolve@^1.3.2: 1659 | version "1.3.3" 1660 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5" 1661 | dependencies: 1662 | path-parse "^1.0.5" 1663 | 1664 | right-align@^0.1.1: 1665 | version "0.1.3" 1666 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 1667 | dependencies: 1668 | align-text "^0.1.1" 1669 | 1670 | rimraf@^2.6.1: 1671 | version "2.6.1" 1672 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 1673 | dependencies: 1674 | glob "^7.0.5" 1675 | 1676 | safe-buffer@^5.0.1: 1677 | version "5.1.0" 1678 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.0.tgz#fe4c8460397f9eaaaa58e73be46273408a45e223" 1679 | 1680 | sane@~1.6.0: 1681 | version "1.6.0" 1682 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.6.0.tgz#9610c452307a135d29c1fdfe2547034180c46775" 1683 | dependencies: 1684 | anymatch "^1.3.0" 1685 | exec-sh "^0.2.0" 1686 | fb-watchman "^1.8.0" 1687 | minimatch "^3.0.2" 1688 | minimist "^1.1.1" 1689 | walker "~1.0.5" 1690 | watch "~0.10.0" 1691 | 1692 | sax@^1.2.1: 1693 | version "1.2.2" 1694 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.2.tgz#fd8631a23bc7826bef5d871bdb87378c95647828" 1695 | 1696 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 1697 | version "5.3.0" 1698 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 1699 | 1700 | set-blocking@^2.0.0: 1701 | version "2.0.0" 1702 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1703 | 1704 | shebang-command@^1.2.0: 1705 | version "1.2.0" 1706 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 1707 | dependencies: 1708 | shebang-regex "^1.0.0" 1709 | 1710 | shebang-regex@^1.0.0: 1711 | version "1.0.0" 1712 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 1713 | 1714 | shellwords@^0.1.0: 1715 | version "0.1.0" 1716 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.0.tgz#66afd47b6a12932d9071cbfd98a52e785cd0ba14" 1717 | 1718 | slash@^1.0.0: 1719 | version "1.0.0" 1720 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 1721 | 1722 | sntp@1.x.x: 1723 | version "1.0.9" 1724 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 1725 | dependencies: 1726 | hoek "2.x.x" 1727 | 1728 | source-map-support@^0.4.2: 1729 | version "0.4.15" 1730 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1" 1731 | dependencies: 1732 | source-map "^0.5.6" 1733 | 1734 | source-map@^0.4.4: 1735 | version "0.4.4" 1736 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 1737 | dependencies: 1738 | amdefine ">=0.0.4" 1739 | 1740 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 1741 | version "0.5.6" 1742 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 1743 | 1744 | source-map@~0.2.0: 1745 | version "0.2.0" 1746 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 1747 | dependencies: 1748 | amdefine ">=0.0.4" 1749 | 1750 | spdx-correct@~1.0.0: 1751 | version "1.0.2" 1752 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 1753 | dependencies: 1754 | spdx-license-ids "^1.0.2" 1755 | 1756 | spdx-expression-parse@~1.0.0: 1757 | version "1.0.4" 1758 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 1759 | 1760 | spdx-license-ids@^1.0.2: 1761 | version "1.2.2" 1762 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 1763 | 1764 | sprintf-js@~1.0.2: 1765 | version "1.0.3" 1766 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 1767 | 1768 | sshpk@^1.7.0: 1769 | version "1.13.0" 1770 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.0.tgz#ff2a3e4fd04497555fed97b39a0fd82fafb3a33c" 1771 | dependencies: 1772 | asn1 "~0.2.3" 1773 | assert-plus "^1.0.0" 1774 | dashdash "^1.12.0" 1775 | getpass "^0.1.1" 1776 | optionalDependencies: 1777 | bcrypt-pbkdf "^1.0.0" 1778 | ecc-jsbn "~0.1.1" 1779 | jodid25519 "^1.0.0" 1780 | jsbn "~0.1.0" 1781 | tweetnacl "~0.14.0" 1782 | 1783 | string-length@^1.0.1: 1784 | version "1.0.1" 1785 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 1786 | dependencies: 1787 | strip-ansi "^3.0.0" 1788 | 1789 | string-width@^1.0.1, string-width@^1.0.2: 1790 | version "1.0.2" 1791 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1792 | dependencies: 1793 | code-point-at "^1.0.0" 1794 | is-fullwidth-code-point "^1.0.0" 1795 | strip-ansi "^3.0.0" 1796 | 1797 | stringstream@~0.0.4: 1798 | version "0.0.5" 1799 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 1800 | 1801 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1802 | version "3.0.1" 1803 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1804 | dependencies: 1805 | ansi-regex "^2.0.0" 1806 | 1807 | strip-bom@3.0.0: 1808 | version "3.0.0" 1809 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 1810 | 1811 | strip-bom@^2.0.0: 1812 | version "2.0.0" 1813 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 1814 | dependencies: 1815 | is-utf8 "^0.2.0" 1816 | 1817 | supports-color@^2.0.0: 1818 | version "2.0.0" 1819 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1820 | 1821 | supports-color@^3.1.2: 1822 | version "3.2.3" 1823 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 1824 | dependencies: 1825 | has-flag "^1.0.0" 1826 | 1827 | symbol-tree@^3.2.1: 1828 | version "3.2.2" 1829 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 1830 | 1831 | test-exclude@^4.1.1: 1832 | version "4.1.1" 1833 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26" 1834 | dependencies: 1835 | arrify "^1.0.1" 1836 | micromatch "^2.3.11" 1837 | object-assign "^4.1.0" 1838 | read-pkg-up "^1.0.1" 1839 | require-main-filename "^1.0.1" 1840 | 1841 | throat@^3.0.0: 1842 | version "3.0.0" 1843 | resolved "https://registry.yarnpkg.com/throat/-/throat-3.0.0.tgz#e7c64c867cbb3845f10877642f7b60055b8ec0d6" 1844 | 1845 | tmpl@1.0.x: 1846 | version "1.0.4" 1847 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 1848 | 1849 | to-fast-properties@^1.0.1: 1850 | version "1.0.3" 1851 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 1852 | 1853 | tough-cookie@^2.3.2, tough-cookie@~2.3.0: 1854 | version "2.3.2" 1855 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 1856 | dependencies: 1857 | punycode "^1.4.1" 1858 | 1859 | tr46@~0.0.3: 1860 | version "0.0.3" 1861 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 1862 | 1863 | trim-right@^1.0.1: 1864 | version "1.0.1" 1865 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 1866 | 1867 | tunnel-agent@^0.6.0: 1868 | version "0.6.0" 1869 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 1870 | dependencies: 1871 | safe-buffer "^5.0.1" 1872 | 1873 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 1874 | version "0.14.5" 1875 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 1876 | 1877 | type-check@~0.3.2: 1878 | version "0.3.2" 1879 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 1880 | dependencies: 1881 | prelude-ls "~1.1.2" 1882 | 1883 | uglify-js@^2.6: 1884 | version "2.8.28" 1885 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.28.tgz#e335032df9bb20dcb918f164589d5af47f38834a" 1886 | dependencies: 1887 | source-map "~0.5.1" 1888 | yargs "~3.10.0" 1889 | optionalDependencies: 1890 | uglify-to-browserify "~1.0.0" 1891 | 1892 | uglify-to-browserify@~1.0.0: 1893 | version "1.0.2" 1894 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 1895 | 1896 | uuid@^3.0.0: 1897 | version "3.0.1" 1898 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 1899 | 1900 | validate-npm-package-license@^3.0.1: 1901 | version "3.0.1" 1902 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 1903 | dependencies: 1904 | spdx-correct "~1.0.0" 1905 | spdx-expression-parse "~1.0.0" 1906 | 1907 | verror@1.3.6: 1908 | version "1.3.6" 1909 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 1910 | dependencies: 1911 | extsprintf "1.0.2" 1912 | 1913 | walker@~1.0.5: 1914 | version "1.0.7" 1915 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 1916 | dependencies: 1917 | makeerror "1.0.x" 1918 | 1919 | watch@~0.10.0: 1920 | version "0.10.0" 1921 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 1922 | 1923 | webidl-conversions@^3.0.0: 1924 | version "3.0.1" 1925 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 1926 | 1927 | webidl-conversions@^4.0.0: 1928 | version "4.0.1" 1929 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.1.tgz#8015a17ab83e7e1b311638486ace81da6ce206a0" 1930 | 1931 | whatwg-encoding@^1.0.1: 1932 | version "1.0.1" 1933 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 1934 | dependencies: 1935 | iconv-lite "0.4.13" 1936 | 1937 | whatwg-url@^4.3.0: 1938 | version "4.8.0" 1939 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0" 1940 | dependencies: 1941 | tr46 "~0.0.3" 1942 | webidl-conversions "^3.0.0" 1943 | 1944 | which-module@^1.0.0: 1945 | version "1.0.0" 1946 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 1947 | 1948 | which@^1.2.12, which@^1.2.9: 1949 | version "1.2.14" 1950 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 1951 | dependencies: 1952 | isexe "^2.0.0" 1953 | 1954 | window-size@0.1.0: 1955 | version "0.1.0" 1956 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 1957 | 1958 | wordwrap@0.0.2: 1959 | version "0.0.2" 1960 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 1961 | 1962 | wordwrap@~0.0.2: 1963 | version "0.0.3" 1964 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 1965 | 1966 | wordwrap@~1.0.0: 1967 | version "1.0.0" 1968 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 1969 | 1970 | worker-farm@^1.3.1: 1971 | version "1.3.1" 1972 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.3.1.tgz#4333112bb49b17aa050b87895ca6b2cacf40e5ff" 1973 | dependencies: 1974 | errno ">=0.1.1 <0.2.0-0" 1975 | xtend ">=4.0.0 <4.1.0-0" 1976 | 1977 | wrap-ansi@^2.0.0: 1978 | version "2.1.0" 1979 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 1980 | dependencies: 1981 | string-width "^1.0.1" 1982 | strip-ansi "^3.0.1" 1983 | 1984 | wrappy@1: 1985 | version "1.0.2" 1986 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1987 | 1988 | xml-name-validator@^2.0.1: 1989 | version "2.0.1" 1990 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 1991 | 1992 | "xtend@>=4.0.0 <4.1.0-0": 1993 | version "4.0.1" 1994 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 1995 | 1996 | y18n@^3.2.1: 1997 | version "3.2.1" 1998 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 1999 | 2000 | yallist@^2.1.2: 2001 | version "2.1.2" 2002 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 2003 | 2004 | yargs-parser@^5.0.0: 2005 | version "5.0.0" 2006 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" 2007 | dependencies: 2008 | camelcase "^3.0.0" 2009 | 2010 | yargs@^7.0.2: 2011 | version "7.1.0" 2012 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" 2013 | dependencies: 2014 | camelcase "^3.0.0" 2015 | cliui "^3.2.0" 2016 | decamelize "^1.1.1" 2017 | get-caller-file "^1.0.1" 2018 | os-locale "^1.4.0" 2019 | read-pkg-up "^1.0.1" 2020 | require-directory "^2.1.1" 2021 | require-main-filename "^1.0.1" 2022 | set-blocking "^2.0.0" 2023 | string-width "^1.0.2" 2024 | which-module "^1.0.0" 2025 | y18n "^3.2.1" 2026 | yargs-parser "^5.0.0" 2027 | 2028 | yargs@~3.10.0: 2029 | version "3.10.0" 2030 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 2031 | dependencies: 2032 | camelcase "^1.0.2" 2033 | cliui "^2.1.0" 2034 | decamelize "^1.0.0" 2035 | window-size "0.1.0" 2036 | --------------------------------------------------------------------------------