├── .eslintrc ├── .gitignore ├── .travis.yml ├── README.md ├── appveyor.yml ├── bin ├── glsl2gif.js ├── glsl2png.js └── wrapper.js ├── package.json ├── src ├── converter.js └── index.js ├── test ├── backbuffer.frag ├── fixtures │ ├── out.png │ ├── out_backbuffer.png │ ├── out_path.png │ ├── out_size.png │ ├── out_time.png │ └── out_uniform.png ├── glsl2gif.js ├── glsl2png.js ├── input.frag └── uniform.frag └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "xo", 3 | "rules": { 4 | "indent": ["error", 2], 5 | "space-before-function-paren": ["error", "always"], 6 | "comma-dangle": ["error", "always-multiline"], 7 | "object-curly-spacing": ["error", "always"], 8 | "no-mixed-operators": 0, 9 | "no-implicit-coercion": 0, 10 | }, 11 | } 12 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | coverage/ 3 | .nyc_output/ 4 | *.png 5 | *.gif 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | os: linux 4 | dist: trusty 5 | node_js: 6 | - "6" 7 | cache: 8 | directories: 9 | - node_modules 10 | addons: 11 | apt: 12 | packages: 13 | - mesa-utils 14 | - xvfb 15 | - libgl1-mesa-dri 16 | - libglapi-mesa 17 | - libosmesa6 18 | - libxi-dev 19 | - libgif-dev 20 | before_script: 21 | - export DISPLAY=:99.0; sh -e /etc/init.d/xvfb start 22 | script: 23 | - npm run ci 24 | after_success: 25 | - './node_modules/.bin/nyc report --reporter=text-lcov | ./node_modules/.bin/coveralls' 26 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # glsl2img 2 | 3 | [![Build Status](http://img.shields.io/travis/fand/glsl2img.svg?style=flat-square)](https://travis-ci.org/fand/glsl2img) 4 | [![NPM Version](https://img.shields.io/npm/v/glsl2img.svg?style=flat-square)](https://www.npmjs.com/package/glsl2img) 5 | [![License](http://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](http://fand.mit-license.org/) 6 | [![Coverage Status](https://img.shields.io/coveralls/fand/glsl2img.svg?style=flat-square)](https://coveralls.io/github/fand/glsl2img?branch=master) 7 | 8 | CLI tool to render fragment shaders into PNG images. 9 | Thanks to https://gist.github.com/bsergean/6780d7cc0cabb1b4d6c8. 10 | 11 | ## Install 12 | 13 | ``` 14 | npm install -g glsl2img 15 | ``` 16 | 17 | ## Usage 18 | 19 | This package includes 2 CLI commands: `glsl2png` and `glsl2gif`. 20 | 21 | 22 | ### glsl2png 23 | 24 | `glsl2png -h` shows the help: 25 | 26 | ``` 27 | Usage 28 | $ glsl2png 29 | 30 | Options 31 | --out, -o Output file name. Default: out.png 32 | --size, -s Specify image size in wxh format. Default: 600x600 33 | --time, -t Specify time to pass the shader as uniform. Default: 0 34 | 35 | Examples 36 | $ glsl2png foo.frag -s 720x540 -o image.png 37 | ``` 38 | 39 | ### Examples 40 | 41 | Assume we have `metaball.frag` like this: 42 | 43 | ``` 44 | #ifdef GL_ES 45 | precision mediump float; 46 | #endif 47 | 48 | uniform float time; 49 | uniform vec2 resolution; 50 | 51 | void main (void) { 52 | vec2 position = gl_FragCoord.xy / resolution.xy; 53 | 54 | float d = sin(time) * 0.2; 55 | 56 | float dist1 = pow(max(1.0 - distance(position, vec2(0.5 + d, 0.5)) * 5.0, 0.0), 2.0); 57 | float dist2 = pow(max(1.0 - distance(position, vec2(0.5 - d, 0.5)) * 5.0, 0.0), 2.0); 58 | 59 | float c = smoothstep(0.3, 0.301, dist1 + dist2); 60 | gl_FragColor = vec4(c, 0, c, 1.0); 61 | } 62 | ``` 63 | 64 | then `glsl2png metaball.frag -o out.png` gives following image. 65 | 66 | ![out](https://cloud.githubusercontent.com/assets/1403842/25777407/30317b7c-3317-11e7-8dd1-b293f6a6091f.png) 67 | 68 | We can also specify `time` value via `-t` option. 69 | Here is the result of `glsl2png metaball.frag -o out2.png -t 10`. 70 | 71 | ![out2](https://cloud.githubusercontent.com/assets/1403842/25777406/30301ef8-3317-11e7-8f76-af0f90154951.png) 72 | 73 | ### glsl2gif 74 | 75 | `glsl2gif -h` shows the help: 76 | 77 | ``` 78 | Usage 79 | $ glsl2gif 80 | 81 | Options 82 | --out, -o Output file name. Default: out.gif 83 | --rate, -r Frames per second. Default: 15 84 | --length, -l The length of GIF animation. Default: 1 (second) 85 | --size, -s Specify image size in wxh format. Default: 600x600 86 | 87 | Examples 88 | $ glsl2gif foo.frag -s 720x540 -o image.gif 89 | ``` 90 | 91 | ### Examples 92 | 93 | `glsl2gif metaball.frag -r 30 -l 3.0` gives following image. 94 | 95 | ![out.gif](https://cloud.githubusercontent.com/assets/1403842/25780683/218b9dfa-3367-11e7-85d6-6bd78d44bcd5.gif) 96 | 97 | ## Uniforms 98 | 99 | [GLSL Sandbox](http://glslsandbox.com/) style `uniform` variables are available in fragment shaders. 100 | 101 | ```glsl 102 | uniform float time; // --time or the elapsed time from the first frame. Default: 0 103 | uniform vec2 mouse; // Always vec2(0) because there is no mouse in CLI 104 | uniform vec2 resolution; // Resolution of output image. Default: vec2(600.); 105 | uniform sampler2D backBuffer; // Rendered output in previous frame 106 | ``` 107 | 108 | ## LICENSE 109 | 110 | MIT 111 | -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- 1 | install: 2 | - ps: Install-Product node LTS $env:PLATFORM 3 | - cinst gtk-runtime python2 libjpeg-turbo unzip 4 | - ps: Invoke-WebRequest http://ftp.gnome.org/pub/GNOME/binaries/win64/gtk+/2.22/gtk+-bundle_2.22.1-20101229_win64.zip -OutFile C:\GTK.zip 5 | - ps: unzip C:\GTK.zip -d C:\GTK 6 | - npm config set msvs_version 2015 --global 7 | - npm install -g node-gyp 8 | - npm install 9 | test_script: 10 | - node --version 11 | - npm --version 12 | - npm test 13 | build: off 14 | platform: 15 | - x64 16 | -------------------------------------------------------------------------------- /bin/glsl2gif.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | const meow = require('meow'); 3 | const fs = require('fs'); 4 | const GIFEncoder = require('gifencoder'); 5 | const pngFileStream = require('png-file-stream'); 6 | const execa = require('execa'); 7 | 8 | const cli = meow(` 9 | Usage 10 | $ glsl2gif 11 | 12 | Options 13 | --out, -o Output file name. Default: out.gif 14 | --rate, -r Frames per second. Default: 15 15 | --length, -l The length of GIF animation. Default: 1 (second) 16 | --size, -s Specify image size in wxh format. Default: 600x600 17 | --uniform, -u Uniform values in JSON format. Default: '{}' 18 | 19 | Examples 20 | $ glsl2gif foo.frag -s 720x540 -o image.gif 21 | `, { 22 | alias: { 23 | o: 'out', 24 | r: 'rate', 25 | l: 'length', 26 | s: 'size', 27 | u: 'uniform', 28 | V: 'verbose', 29 | }, 30 | }); 31 | 32 | const file = cli.input[0]; 33 | if (!file) { 34 | cli.showHelp(1); 35 | } 36 | 37 | const out = cli.flags.out || 'out.gif'; 38 | const rate = cli.flags.rate || 15; 39 | const length = cli.flags.length || 1.0; 40 | const size = cli.flags.size || '600x600'; 41 | const [width, height] = size.match(/^\d+x\d+$/) ? size.split('x') : [600, 600]; 42 | const uniform = cli.flags.uniform || '{}'; 43 | 44 | const delay = 1.0 / rate; 45 | 46 | // Create tmp directory 47 | const tmp = require('tmp'); 48 | const rimraf = require('rimraf'); 49 | const tmpObj = tmp.dirSync(); 50 | const tmpDir = tmpObj.name; 51 | 52 | // Render frames 53 | let time = 0; 54 | execa.sync( 55 | `${__dirname}/wrapper.js`, 56 | [width, height, file, time, rate, uniform, length, tmpDir], 57 | { stdio: cli.flags.verbose ? 'inherit' : 'ignore' } 58 | ); 59 | 60 | // Convert PNG images to GIF 61 | const encoder = new GIFEncoder(width, height); 62 | const stream = pngFileStream(`${tmpDir}/frame*.png`) 63 | .pipe(encoder.createWriteStream({ repeat: 0, delay: delay * 1000, quality: 3 })) 64 | .pipe(fs.createWriteStream(out)); 65 | 66 | stream.on('finish', () => { 67 | rimraf.sync(tmpDir); 68 | }); 69 | -------------------------------------------------------------------------------- /bin/glsl2png.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | const meow = require('meow'); 3 | const execa = require('execa'); 4 | 5 | const cli = meow(` 6 | Usage 7 | $ glsl2png 8 | 9 | Options 10 | --out, -o Output file name. Default: out.png 11 | --size, -s Specify image size in wxh format. Default: 600x600 12 | --time, -t Specify time to pass the shader as uniform. Default: 0 13 | --uniform, -u Uniform values in JSON format. Default: '{}' 14 | 15 | Examples 16 | $ glsl2png foo.frag -s 720x540 -o image.png 17 | `, { 18 | alias: { 19 | o: 'out', 20 | r: 'rate', 21 | s: 'size', 22 | t: 'time', 23 | u: 'uniform', 24 | V: 'verbose', 25 | }, 26 | }); 27 | 28 | const file = cli.input[0]; 29 | if (!file) { 30 | cli.showHelp(1); 31 | } 32 | 33 | const out = cli.flags.out || 'out.png'; 34 | const size = cli.flags.size || '600x600'; 35 | const [width, height] = size.match(/^\d+x\d+$/) ? size.split('x') : [600, 600]; 36 | const time = cli.flags.time || 0; 37 | const rate = cli.flags.rate || 15; 38 | const uniform = cli.flags.uniform || '{}'; 39 | 40 | execa.sync( 41 | `${__dirname}/wrapper.js`, 42 | [width, height, file, time, rate, uniform, 0, out], 43 | { stdio: cli.flags.verbose ? 'inherit' : 'ignore' } 44 | ); 45 | -------------------------------------------------------------------------------- /bin/wrapper.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | // Wrap Converter to disable Three.js's log messages. 3 | const Converter = require('../src/converter'); 4 | const [width, height, file, time, rate, uniform, length, out] = process.argv.slice(2); 5 | const c = new Converter(+width, +height, file, +time, +rate, uniform); 6 | c.render(out, +length); 7 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "glsl2img", 3 | "description": "GLSL to image converter", 4 | "version": "0.2.0", 5 | "author": "fand ", 6 | "bin": { 7 | "glsl2gif": "bin/glsl2gif.js", 8 | "glsl2png": "bin/glsl2png.js" 9 | }, 10 | "bugs": "https://github.com/fand/glsl2img/issues", 11 | "dependencies": { 12 | "canvas": "^1.6.5", 13 | "execa": "^0.6.3", 14 | "gifencoder": "^1.0.6", 15 | "gl": "3.0.6", 16 | "meow": "^3.7.0", 17 | "png-file-stream": "^1.0.0", 18 | "pngjs": "^3.2.0", 19 | "rimraf": "^2.6.1", 20 | "three": "^0.85.2", 21 | "tmp": "^0.0.31" 22 | }, 23 | "devDependencies": { 24 | "ava": "^0.19.1", 25 | "coveralls": "^2.13.1", 26 | "eslint": "^3.19.0", 27 | "eslint-config-xo": "^0.18.1", 28 | "gif-info": "^1.0.1", 29 | "nyc": "^10.3.2", 30 | "pixelmatch": "^4.0.2" 31 | }, 32 | "homepage": "https://github.com/fand/glsl2img", 33 | "keywords": [ 34 | "cli", 35 | "glsl", 36 | "png", 37 | "shader", 38 | "webgl" 39 | ], 40 | "license": "MIT", 41 | "main": "src/index.js", 42 | "nyc": { 43 | "include": [ 44 | "src/", 45 | "bin/" 46 | ] 47 | }, 48 | "repository": "https://github.com/fand/glsl2img", 49 | "scripts": { 50 | "ci": "npm run lint && npm run test", 51 | "lint": "eslint src test", 52 | "prepublishOnly": "npm test", 53 | "test": "nyc ava test" 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /src/converter.js: -------------------------------------------------------------------------------- 1 | // Copied from https://gist.github.com/bsergean/6780d7cc0cabb1b4d6c8 2 | const THREE = require('three'); 3 | const PNG = require('pngjs').PNG; 4 | const gl = require('gl')(); 5 | const fs = require('fs'); 6 | 7 | // Utils 8 | const pad5 = x => `00000${x}`.substr(-5); 9 | const range = n => { 10 | let arr = []; 11 | for (let i = 0; i < n; i++) { 12 | arr.push(i); 13 | } 14 | return arr; 15 | }; 16 | 17 | const DEFAULT_VERTEX_SHADER = ` 18 | void main() { 19 | gl_Position = projectionMatrix * modelViewMatrix * vec4(position, 1.0); 20 | } 21 | `; 22 | const DEFAULT_FRAGMENT_SHADER = ` 23 | uniform vec2 resolution; 24 | uniform float time; 25 | void main() { 26 | vec2 pos = gl_FragCoord.xy / resolution.xy; 27 | float d = distance(pos, vec2(0.5)) + sin(time) * 0.1; 28 | float c = 1.0 - smoothstep(0.5, 0.501, d); 29 | gl_FragColor = vec4(0.0, c, c, 1.0); 30 | } 31 | `; 32 | 33 | class Converter { 34 | // eslint-disable-next-line max-params 35 | constructor (width = 600, height = 400, fsPath, time, rate, uniformsJson) { 36 | this.width = width; 37 | this.height = height; 38 | this.time = time; 39 | this.rate = rate; 40 | this.createUniforms(uniformsJson); 41 | 42 | this.scene = new THREE.Scene(); 43 | this.createCamera(); 44 | this.createTarget(); 45 | this.fragmentShader = fs.readFileSync(fsPath, 'utf8'); 46 | this.createRenderer(); 47 | this.createPlane(); 48 | } 49 | 50 | get aspect () { 51 | return this.width / this.height; 52 | } 53 | 54 | createUniforms (uniformsJson) { 55 | let uniforms = {}; 56 | try { 57 | uniforms = JSON.parse(uniformsJson || '{}'); 58 | } catch (e) { 59 | console.error('Failed to parse uniform option.'); 60 | } 61 | 62 | const DEFAULT_UNIFORMS = { 63 | time: { type: 'f', value: +this.time || 0.0 }, 64 | resolution: { type: 'v2', value: new THREE.Vector2(this.width, this.height) }, 65 | mouse: { type: 'v2', value: new THREE.Vector2(this.width * 0.5, this.height * 0.5) }, 66 | backBuffer: { type: 't', value: new THREE.Texture() }, 67 | }; 68 | 69 | this.uniforms = Object.assign(DEFAULT_UNIFORMS, uniforms); 70 | } 71 | 72 | createCamera () { 73 | this.camera = new THREE.OrthographicCamera(-this.aspect, this.aspect, 1, -1, 0.1, 10); 74 | this.scene.add(this.camera); 75 | this.camera.position.set(0, 0, 1); 76 | this.camera.lookAt(this.scene.position); 77 | } 78 | 79 | createTarget () { 80 | // Let's create a render target object where we'll be rendering 81 | this.rtTexture = new THREE.WebGLRenderTarget( 82 | this.width, 83 | this.height, 84 | { 85 | minFilter: THREE.LinearFilter, 86 | magFilter: THREE.NearestFilter, 87 | format: THREE.RGBAFormat, 88 | } 89 | ); 90 | 91 | // Create a target for backBuffer 92 | this.bufferTarget = new THREE.WebGLRenderTarget( 93 | this.width, this.height, 94 | { minFilter: THREE.LinearFilter, magFilter: THREE.NearestFilter, format: THREE.RGBAFormat } 95 | ); 96 | } 97 | 98 | createRenderer () { 99 | this.renderer = new THREE.WebGLRenderer({ 100 | antialias: true, 101 | width: this.width, // The width / height we set here doesn't matter 102 | height: this.height, 103 | context: gl, // Mock context with headless-gl 104 | canvas: { 105 | getContext: () => gl, 106 | }, 107 | }); 108 | } 109 | 110 | createPlane () { 111 | const material = new THREE.ShaderMaterial({ 112 | vertexShader: DEFAULT_VERTEX_SHADER, 113 | fragmentShader: this.fragmentShader || DEFAULT_FRAGMENT_SHADER, 114 | uniforms: this.uniforms, 115 | }); 116 | 117 | const geometry = new THREE.PlaneGeometry(2 * this.aspect, 2); 118 | const plane = new THREE.Mesh(geometry, material); 119 | this.scene.add(plane); 120 | } 121 | 122 | getPixels () { 123 | const ctx = this.renderer.getContext(); 124 | const pixels = new Uint8Array(4 * this.width * this.height); 125 | ctx.readPixels(0, 0, this.width, this.height, ctx.RGBA, ctx.UNSIGNED_BYTE, pixels); 126 | return pixels; 127 | } 128 | 129 | renderPixelsToPng (pixels, path) { 130 | const png = new PNG({ width: this.width, height: this.height }); 131 | 132 | // Lines are vertically flipped in the FBO / need to unflip them 133 | for (let j = 0; j < this.height; j++) { 134 | for (let i = 0; i < this.width; i++) { 135 | const k = j * this.width + i; 136 | const r = pixels[4 * k + 0]; 137 | const g = pixels[4 * k + 1]; 138 | const b = pixels[4 * k + 2]; 139 | const a = pixels[4 * k + 3]; 140 | 141 | const m = (this.height - j - 1) * this.width + i; 142 | png.data[4 * m + 0] = r; 143 | png.data[4 * m + 1] = g; 144 | png.data[4 * m + 2] = b; 145 | png.data[4 * m + 3] = a; 146 | } 147 | } 148 | 149 | // Now write the png to disk 150 | const stream = fs.createWriteStream(path); 151 | png.pack().pipe(stream); 152 | 153 | stream.on('close', () => { 154 | console.log(`Image written: ${path}`); 155 | }); 156 | 157 | return new Promise((resolve, reject) => { 158 | stream.on('close', () => resolve(path)); 159 | stream.on('errror', e => reject(e)); 160 | }); 161 | } 162 | 163 | render (path, length) { 164 | const delay = 1 / this.rate; 165 | 166 | // Prepare backBuffer for 0th frame. 167 | this.uniforms.time.value -= delay; 168 | this.renderer.render(this.scene, this.camera, this.bufferTarget, true); 169 | 170 | const frames = this.rate * length; 171 | const paths = length === 0 ? [path] : range(frames).map(i => `${path}/frame${pad5(i)}.png`); 172 | 173 | return paths.reduce((prev, p) => prev.then(() => { 174 | // Using DataTexture instead of passing target.texture to uniforms directly 175 | // because it didn't work in headless-gl... 176 | this.renderer.render(this.scene, this.camera, this.bufferTarget, true); 177 | const backBuffer = this.getPixels(); 178 | const rampTex = new THREE.DataTexture(backBuffer, this.width, this.height, THREE.RGBAFormat); 179 | rampTex.needsUpdate = true; 180 | this.uniforms.backBuffer.value = rampTex; 181 | 182 | this.uniforms.time.value += delay; 183 | 184 | this.renderer.render(this.scene, this.camera, this.rtTexture, true); 185 | return this.renderPixelsToPng(this.getPixels(), p); 186 | }), Promise.resolve()); 187 | } 188 | } 189 | 190 | module.exports = Converter; 191 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | const Converter = require('./converter'); 2 | 3 | module.exports = { 4 | Converter: Converter, 5 | convert: function (shader, width, height, output) { 6 | const c = new Converter(width, height); 7 | return c.render(output); 8 | }, 9 | }; 10 | -------------------------------------------------------------------------------- /test/backbuffer.frag: -------------------------------------------------------------------------------- 1 | #ifdef GL_ES 2 | precision mediump float; 3 | #define GLSLIFY 1 4 | #endif 5 | 6 | uniform float time; 7 | uniform vec2 mouse; 8 | uniform vec2 resolution; 9 | uniform sampler2D backBuffer; 10 | 11 | float metaball (in vec2 position, in float t) { 12 | float d = pow(sin(t * 2.), 3.) * 0.5; 13 | float dist1 = 1.0 / distance(position, vec2(0.5 + d, 0.5)); 14 | float dist2 = 1.0 / distance(position, vec2(0.5 - d, 0.5)); 15 | float dist3 = 1.0 / distance(position, vec2(-0.5 + d, 0.5)); 16 | float dist4 = 1.0 / distance(position, vec2(-0.5 - d, 0.5)); 17 | float dist5 = 1.0 / distance(position, vec2(1.5 + d, 0.5)); 18 | float dist6 = 1.0 / distance(position, vec2(1.5 - d, 0.5)); 19 | return smoothstep(12.0, 12.001, dist1 + dist2 + dist3 + dist4 + dist5 + dist6); 20 | } 21 | 22 | void main (void) { 23 | vec2 position = gl_FragCoord.xy / resolution.xy; 24 | vec2 pos = fract(position * 4.); 25 | 26 | float step = floor(position.y * 4.); 27 | float t = time + step; 28 | 29 | float r = metaball(pos + vec2(cos(time * 3.), sin(time * 8.)) * 0.03, t); 30 | float g = metaball(pos + vec2(cos(time * 1.5), sin(time * 2.5)) * 0.03, t); 31 | float b = metaball(pos + vec2(sin(time * 3.), cos(time * 4.) + step * 0.03) * 0.03, t); 32 | 33 | vec4 rgb = vec4(r, g, b, 1.0); 34 | gl_FragColor = rgb + texture2D(backBuffer, position) * 0.5; 35 | } 36 | -------------------------------------------------------------------------------- /test/fixtures/out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fand/glsl2img/952a61e0beb3be9bfa908af053a713e5c88598c6/test/fixtures/out.png -------------------------------------------------------------------------------- /test/fixtures/out_backbuffer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fand/glsl2img/952a61e0beb3be9bfa908af053a713e5c88598c6/test/fixtures/out_backbuffer.png -------------------------------------------------------------------------------- /test/fixtures/out_path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fand/glsl2img/952a61e0beb3be9bfa908af053a713e5c88598c6/test/fixtures/out_path.png -------------------------------------------------------------------------------- /test/fixtures/out_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fand/glsl2img/952a61e0beb3be9bfa908af053a713e5c88598c6/test/fixtures/out_size.png -------------------------------------------------------------------------------- /test/fixtures/out_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fand/glsl2img/952a61e0beb3be9bfa908af053a713e5c88598c6/test/fixtures/out_time.png -------------------------------------------------------------------------------- /test/fixtures/out_uniform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fand/glsl2img/952a61e0beb3be9bfa908af053a713e5c88598c6/test/fixtures/out_uniform.png -------------------------------------------------------------------------------- /test/glsl2gif.js: -------------------------------------------------------------------------------- 1 | import test from 'ava'; 2 | import path from 'path'; 3 | import fs from 'fs'; 4 | import execa from 'execa'; 5 | import rimraf from 'rimraf'; 6 | import gifInfo from 'gif-info'; 7 | 8 | const cd = name => path.resolve(__dirname, name); 9 | 10 | const buf2abuf = buffer => { 11 | const ab = new ArrayBuffer(buffer.length); 12 | const view = new Uint8Array(ab); 13 | for (let i = 0; i < buffer.length; ++i) { 14 | view[i] = buffer[i]; 15 | } 16 | return ab; 17 | }; 18 | 19 | const gif2info = filepath => { 20 | return gifInfo(buf2abuf(fs.readFileSync(filepath))); 21 | }; 22 | 23 | test('glsl2gif', t => { 24 | // eslint-disable-next-line max-params 25 | const testDiff = (args, filepath, width, height, length, rate) => { 26 | execa.sync(cd('../bin/glsl2gif.js'), args); 27 | const info = gif2info(filepath); 28 | rimraf.sync(filepath); 29 | 30 | t.is(info.width, width); 31 | t.is(info.height, height); 32 | t.is(Math.round(info.duration / 1000), length); 33 | t.is(info.duration / length / info.images[0].delay, rate); 34 | }; 35 | 36 | testDiff([cd('input.frag')], cd('../out.gif'), 600, 600, 1, 15); 37 | testDiff([cd('input.frag'), '-o', cd('out_path.gif')], cd('out_path.gif'), 600, 600, 1, 15); 38 | testDiff([cd('input.frag'), '-o', cd('out_size.gif'), '-s', '123x456'], cd('out_size.gif'), 123, 456, 1, 15); 39 | testDiff([cd('input.frag'), '-o', cd('out_length.gif'), '-l', '2'], cd('out_length.gif'), 600, 600, 2, 15); 40 | testDiff([cd('input.frag'), '-o', cd('out_rate.gif'), '-r', '20'], cd('out_rate.gif'), 600, 600, 1, 20); 41 | testDiff([cd('uniform.frag'), '-o', cd('out_uniform.gif'), '-u', '{"color": {"type": "f3", "value": [0, 1, 1]}}'], cd('out_uniform.gif'), 600, 600, 1, 15); 42 | }); 43 | -------------------------------------------------------------------------------- /test/glsl2png.js: -------------------------------------------------------------------------------- 1 | import test from 'ava'; 2 | import path from 'path'; 3 | import fs from 'fs'; 4 | import execa from 'execa'; 5 | import { PNG } from 'pngjs'; 6 | import pixelmatch from 'pixelmatch'; 7 | import rimraf from 'rimraf'; 8 | 9 | const cd = name => path.resolve(__dirname, name); 10 | 11 | test('glsl2png', t => { 12 | const testDiff = (args, filepath) => { 13 | const basename = path.basename(filepath); 14 | 15 | execa.sync(cd('../bin/glsl2png.js'), args); 16 | 17 | const actual = PNG.sync.read(fs.readFileSync(filepath)); 18 | const expected = PNG.sync.read(fs.readFileSync(cd(`fixtures/${basename}`))); 19 | const numDiffPixels = pixelmatch(actual, expected, actual.width, actual.height, { threshold: 0.1 }); 20 | 21 | t.is(numDiffPixels, 0); 22 | 23 | rimraf.sync(filepath); 24 | }; 25 | 26 | testDiff([cd('input.frag')], cd('../out.png')); 27 | testDiff([cd('input.frag'), '-o', cd('out_path.png')], cd('out_path.png')); 28 | testDiff([cd('input.frag'), '-o', cd('out_size.png'), '-s', '123x456'], cd('out_size.png')); 29 | testDiff([cd('input.frag'), '-o', cd('out_time.png'), '-t', '1'], cd('out_time.png')); 30 | testDiff([cd('backbuffer.frag'), '-o', cd('out_backbuffer.png')], cd('out_backbuffer.png')); 31 | testDiff([cd('uniform.frag'), '-o', cd('out_uniform.png'), '-u', `'{"color": { "type": "f3", "value": [0,1,1] } }'`], cd('out_uniform.png')); 32 | }); 33 | -------------------------------------------------------------------------------- /test/input.frag: -------------------------------------------------------------------------------- 1 | #ifdef GL_ES 2 | precision mediump float; 3 | #endif 4 | #extension GL_OES_standard_derivatives : enable 5 | 6 | uniform float time; 7 | uniform vec2 mouse; 8 | uniform vec2 resolution; 9 | 10 | void main (void) { 11 | vec2 position = gl_FragCoord.xy / resolution.xy; 12 | 13 | float d = sin(time) * 0.2; 14 | 15 | float dist1 = pow(max(1.0 - distance(position, vec2(0.5 + d, 0.5)) * 5.0, 0.0), 2.0); 16 | float dist2 = pow(max(1.0 - distance(position, vec2(0.5 - d, 0.5)) * 5.0, 0.0), 2.0); 17 | 18 | float c = smoothstep(0.3, 0.301, dist1 + dist2); 19 | gl_FragColor = vec4(c, 0, c, 1.0); 20 | } 21 | -------------------------------------------------------------------------------- /test/uniform.frag: -------------------------------------------------------------------------------- 1 | #ifdef GL_ES 2 | precision mediump float; 3 | #endif 4 | #extension GL_OES_standard_derivatives : enable 5 | 6 | uniform float time; 7 | uniform vec2 mouse; 8 | uniform vec2 resolution; 9 | uniform vec3 color; 10 | 11 | void main (void) { 12 | vec2 position = gl_FragCoord.xy / resolution.xy; 13 | 14 | float d = sin(time) * 0.2; 15 | 16 | float dist1 = pow(max(1.0 - distance(position, vec2(0.5 + d, 0.5)) * 5.0, 0.0), 2.0); 17 | float dist2 = pow(max(1.0 - distance(position, vec2(0.5 - d, 0.5)) * 5.0, 0.0), 2.0); 18 | 19 | float c = smoothstep(0.3, 0.301, dist1 + dist2); 20 | gl_FragColor = vec4(c * color, 1.0); 21 | } 22 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@ava/babel-plugin-throws-helper@^2.0.0": 6 | version "2.0.0" 7 | resolved "https://registry.yarnpkg.com/@ava/babel-plugin-throws-helper/-/babel-plugin-throws-helper-2.0.0.tgz#2fc1fe3c211a71071a4eca7b8f7af5842cd1ae7c" 8 | 9 | "@ava/babel-preset-stage-4@^1.0.0": 10 | version "1.0.0" 11 | resolved "https://registry.yarnpkg.com/@ava/babel-preset-stage-4/-/babel-preset-stage-4-1.0.0.tgz#a613b5e152f529305422546b072d47facfb26291" 12 | dependencies: 13 | babel-plugin-check-es2015-constants "^6.8.0" 14 | babel-plugin-syntax-trailing-function-commas "^6.20.0" 15 | babel-plugin-transform-async-to-generator "^6.16.0" 16 | babel-plugin-transform-es2015-destructuring "^6.19.0" 17 | babel-plugin-transform-es2015-function-name "^6.9.0" 18 | babel-plugin-transform-es2015-modules-commonjs "^6.18.0" 19 | babel-plugin-transform-es2015-parameters "^6.21.0" 20 | babel-plugin-transform-es2015-spread "^6.8.0" 21 | babel-plugin-transform-es2015-sticky-regex "^6.8.0" 22 | babel-plugin-transform-es2015-unicode-regex "^6.11.0" 23 | babel-plugin-transform-exponentiation-operator "^6.8.0" 24 | package-hash "^1.2.0" 25 | 26 | "@ava/babel-preset-transform-test-files@^3.0.0": 27 | version "3.0.0" 28 | resolved "https://registry.yarnpkg.com/@ava/babel-preset-transform-test-files/-/babel-preset-transform-test-files-3.0.0.tgz#cded1196a8d8d9381a509240ab92e91a5ec069f7" 29 | dependencies: 30 | "@ava/babel-plugin-throws-helper" "^2.0.0" 31 | babel-plugin-espower "^2.3.2" 32 | 33 | "@ava/pretty-format@^1.1.0": 34 | version "1.1.0" 35 | resolved "https://registry.yarnpkg.com/@ava/pretty-format/-/pretty-format-1.1.0.tgz#d0a57d25eb9aeab9643bdd1a030642b91c123e28" 36 | dependencies: 37 | ansi-styles "^2.2.1" 38 | esutils "^2.0.2" 39 | 40 | abbrev@1: 41 | version "1.1.0" 42 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 43 | 44 | acorn-jsx@^3.0.0: 45 | version "3.0.1" 46 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 47 | dependencies: 48 | acorn "^3.0.4" 49 | 50 | acorn@^3.0.4: 51 | version "3.3.0" 52 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 53 | 54 | acorn@^5.0.1: 55 | version "5.0.3" 56 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.0.3.tgz#c460df08491463f028ccb82eab3730bf01087b3d" 57 | 58 | after@~0.8.1: 59 | version "0.8.2" 60 | resolved "https://registry.yarnpkg.com/after/-/after-0.8.2.tgz#fedb394f9f0e02aa9768e702bda23b505fae7e1f" 61 | 62 | ajv-keywords@^1.0.0: 63 | version "1.5.1" 64 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 65 | 66 | ajv@^4.7.0, ajv@^4.9.1: 67 | version "4.11.8" 68 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 69 | dependencies: 70 | co "^4.6.0" 71 | json-stable-stringify "^1.0.1" 72 | 73 | align-text@^0.1.1, align-text@^0.1.3: 74 | version "0.1.4" 75 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 76 | dependencies: 77 | kind-of "^3.0.2" 78 | longest "^1.0.1" 79 | repeat-string "^1.5.2" 80 | 81 | amdefine@>=0.0.4: 82 | version "1.0.1" 83 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 84 | 85 | ansi-align@^2.0.0: 86 | version "2.0.0" 87 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" 88 | dependencies: 89 | string-width "^2.0.0" 90 | 91 | ansi-escapes@^1.1.0: 92 | version "1.4.0" 93 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 94 | 95 | ansi-regex@^2.0.0: 96 | version "2.1.1" 97 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 98 | 99 | ansi-styles@^2.2.1: 100 | version "2.2.1" 101 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 102 | 103 | ansi-styles@^3.0.0: 104 | version "3.0.0" 105 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.0.0.tgz#5404e93a544c4fec7f048262977bebfe3155e0c1" 106 | dependencies: 107 | color-convert "^1.0.0" 108 | 109 | ansi-styles@~1.0.0: 110 | version "1.0.0" 111 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-1.0.0.tgz#cb102df1c56f5123eab8b67cd7b98027a0279178" 112 | 113 | ansi@^0.3.0, ansi@~0.3.1: 114 | version "0.3.1" 115 | resolved "https://registry.yarnpkg.com/ansi/-/ansi-0.3.1.tgz#0c42d4fb17160d5a9af1e484bace1c66922c1b21" 116 | 117 | anymatch@^1.3.0: 118 | version "1.3.0" 119 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 120 | dependencies: 121 | arrify "^1.0.0" 122 | micromatch "^2.1.5" 123 | 124 | append-transform@^0.4.0: 125 | version "0.4.0" 126 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 127 | dependencies: 128 | default-require-extensions "^1.0.0" 129 | 130 | aproba@^1.0.3: 131 | version "1.1.1" 132 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab" 133 | 134 | archy@^1.0.0: 135 | version "1.0.0" 136 | resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" 137 | 138 | are-we-there-yet@~1.1.2: 139 | version "1.1.4" 140 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 141 | dependencies: 142 | delegates "^1.0.0" 143 | readable-stream "^2.0.6" 144 | 145 | argparse@^1.0.7: 146 | version "1.0.9" 147 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 148 | dependencies: 149 | sprintf-js "~1.0.2" 150 | 151 | arr-diff@^2.0.0: 152 | version "2.0.0" 153 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 154 | dependencies: 155 | arr-flatten "^1.0.1" 156 | 157 | arr-exclude@^1.0.0: 158 | version "1.0.0" 159 | resolved "https://registry.yarnpkg.com/arr-exclude/-/arr-exclude-1.0.0.tgz#dfc7c2e552a270723ccda04cf3128c8cbfe5c631" 160 | 161 | arr-flatten@^1.0.1: 162 | version "1.0.3" 163 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1" 164 | 165 | array-differ@^1.0.0: 166 | version "1.0.0" 167 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" 168 | 169 | array-find-index@^1.0.1: 170 | version "1.0.2" 171 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 172 | 173 | array-index@^1.0.0: 174 | version "1.0.0" 175 | resolved "https://registry.yarnpkg.com/array-index/-/array-index-1.0.0.tgz#ec56a749ee103e4e08c790b9c353df16055b97f9" 176 | dependencies: 177 | debug "^2.2.0" 178 | es6-symbol "^3.0.2" 179 | 180 | array-union@^1.0.1: 181 | version "1.0.2" 182 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 183 | dependencies: 184 | array-uniq "^1.0.1" 185 | 186 | array-uniq@^1.0.1, array-uniq@^1.0.2: 187 | version "1.0.3" 188 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 189 | 190 | array-unique@^0.2.1: 191 | version "0.2.1" 192 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 193 | 194 | arrify@^1.0.0, arrify@^1.0.1: 195 | version "1.0.1" 196 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 197 | 198 | asn1@~0.2.3: 199 | version "0.2.3" 200 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 201 | 202 | assert-plus@1.0.0, assert-plus@^1.0.0: 203 | version "1.0.0" 204 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 205 | 206 | assert-plus@^0.2.0: 207 | version "0.2.0" 208 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 209 | 210 | async-each@^1.0.0: 211 | version "1.0.1" 212 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 213 | 214 | async@^1.4.0: 215 | version "1.5.2" 216 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 217 | 218 | asynckit@^0.4.0: 219 | version "0.4.0" 220 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 221 | 222 | auto-bind@^1.1.0: 223 | version "1.1.0" 224 | resolved "https://registry.yarnpkg.com/auto-bind/-/auto-bind-1.1.0.tgz#93b864dc7ee01a326281775d5c75ca0a751e5961" 225 | 226 | ava-init@^0.2.0: 227 | version "0.2.0" 228 | resolved "https://registry.yarnpkg.com/ava-init/-/ava-init-0.2.0.tgz#9304c8b4c357d66e3dfdae1fbff47b1199d5c55d" 229 | dependencies: 230 | arr-exclude "^1.0.0" 231 | execa "^0.5.0" 232 | has-yarn "^1.0.0" 233 | read-pkg-up "^2.0.0" 234 | write-pkg "^2.0.0" 235 | 236 | ava@^0.19.1: 237 | version "0.19.1" 238 | resolved "https://registry.yarnpkg.com/ava/-/ava-0.19.1.tgz#43dd82435ad19b3980ffca2488f05daab940b273" 239 | dependencies: 240 | "@ava/babel-preset-stage-4" "^1.0.0" 241 | "@ava/babel-preset-transform-test-files" "^3.0.0" 242 | "@ava/pretty-format" "^1.1.0" 243 | arr-flatten "^1.0.1" 244 | array-union "^1.0.1" 245 | array-uniq "^1.0.2" 246 | arrify "^1.0.0" 247 | auto-bind "^1.1.0" 248 | ava-init "^0.2.0" 249 | babel-code-frame "^6.16.0" 250 | babel-core "^6.17.0" 251 | bluebird "^3.0.0" 252 | caching-transform "^1.0.0" 253 | chalk "^1.0.0" 254 | chokidar "^1.4.2" 255 | clean-stack "^1.1.1" 256 | clean-yaml-object "^0.1.0" 257 | cli-cursor "^2.1.0" 258 | cli-spinners "^1.0.0" 259 | cli-truncate "^1.0.0" 260 | co-with-promise "^4.6.0" 261 | code-excerpt "^2.1.0" 262 | common-path-prefix "^1.0.0" 263 | convert-source-map "^1.2.0" 264 | core-assert "^0.2.0" 265 | currently-unhandled "^0.4.1" 266 | debug "^2.2.0" 267 | diff "^3.0.1" 268 | diff-match-patch "^1.0.0" 269 | dot-prop "^4.1.0" 270 | empower-core "^0.6.1" 271 | equal-length "^1.0.0" 272 | figures "^2.0.0" 273 | find-cache-dir "^0.1.1" 274 | fn-name "^2.0.0" 275 | get-port "^3.0.0" 276 | globby "^6.0.0" 277 | has-flag "^2.0.0" 278 | hullabaloo-config-manager "^1.0.0" 279 | ignore-by-default "^1.0.0" 280 | indent-string "^3.0.0" 281 | is-ci "^1.0.7" 282 | is-generator-fn "^1.0.0" 283 | is-obj "^1.0.0" 284 | is-observable "^0.2.0" 285 | is-promise "^2.1.0" 286 | jest-diff "19.0.0" 287 | jest-snapshot "19.0.2" 288 | js-yaml "^3.8.2" 289 | last-line-stream "^1.0.0" 290 | lodash.debounce "^4.0.3" 291 | lodash.difference "^4.3.0" 292 | lodash.flatten "^4.2.0" 293 | lodash.isequal "^4.5.0" 294 | loud-rejection "^1.2.0" 295 | matcher "^0.1.1" 296 | md5-hex "^2.0.0" 297 | meow "^3.7.0" 298 | mkdirp "^0.5.1" 299 | ms "^0.7.1" 300 | multimatch "^2.1.0" 301 | observable-to-promise "^0.5.0" 302 | option-chain "^0.1.0" 303 | package-hash "^2.0.0" 304 | pkg-conf "^2.0.0" 305 | plur "^2.0.0" 306 | pretty-ms "^2.0.0" 307 | require-precompiled "^0.1.0" 308 | resolve-cwd "^1.0.0" 309 | slash "^1.0.0" 310 | source-map-support "^0.4.0" 311 | stack-utils "^1.0.0" 312 | strip-ansi "^3.0.1" 313 | strip-bom-buf "^1.0.0" 314 | supports-color "^3.2.3" 315 | time-require "^0.1.2" 316 | unique-temp-dir "^1.0.0" 317 | update-notifier "^2.1.0" 318 | 319 | aws-sign2@~0.6.0: 320 | version "0.6.0" 321 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 322 | 323 | aws4@^1.2.1: 324 | version "1.6.0" 325 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 326 | 327 | babel-code-frame@^6.16.0, babel-code-frame@^6.22.0: 328 | version "6.22.0" 329 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 330 | dependencies: 331 | chalk "^1.1.0" 332 | esutils "^2.0.2" 333 | js-tokens "^3.0.0" 334 | 335 | babel-core@^6.17.0, babel-core@^6.24.1: 336 | version "6.24.1" 337 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.1.tgz#8c428564dce1e1f41fb337ec34f4c3b022b5ad83" 338 | dependencies: 339 | babel-code-frame "^6.22.0" 340 | babel-generator "^6.24.1" 341 | babel-helpers "^6.24.1" 342 | babel-messages "^6.23.0" 343 | babel-register "^6.24.1" 344 | babel-runtime "^6.22.0" 345 | babel-template "^6.24.1" 346 | babel-traverse "^6.24.1" 347 | babel-types "^6.24.1" 348 | babylon "^6.11.0" 349 | convert-source-map "^1.1.0" 350 | debug "^2.1.1" 351 | json5 "^0.5.0" 352 | lodash "^4.2.0" 353 | minimatch "^3.0.2" 354 | path-is-absolute "^1.0.0" 355 | private "^0.1.6" 356 | slash "^1.0.0" 357 | source-map "^0.5.0" 358 | 359 | babel-generator@^6.1.0, babel-generator@^6.18.0, babel-generator@^6.24.1: 360 | version "6.24.1" 361 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.1.tgz#e715f486c58ded25649d888944d52aa07c5d9497" 362 | dependencies: 363 | babel-messages "^6.23.0" 364 | babel-runtime "^6.22.0" 365 | babel-types "^6.24.1" 366 | detect-indent "^4.0.0" 367 | jsesc "^1.3.0" 368 | lodash "^4.2.0" 369 | source-map "^0.5.0" 370 | trim-right "^1.0.1" 371 | 372 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 373 | version "6.24.1" 374 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 375 | dependencies: 376 | babel-helper-explode-assignable-expression "^6.24.1" 377 | babel-runtime "^6.22.0" 378 | babel-types "^6.24.1" 379 | 380 | babel-helper-call-delegate@^6.24.1: 381 | version "6.24.1" 382 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 383 | dependencies: 384 | babel-helper-hoist-variables "^6.24.1" 385 | babel-runtime "^6.22.0" 386 | babel-traverse "^6.24.1" 387 | babel-types "^6.24.1" 388 | 389 | babel-helper-explode-assignable-expression@^6.24.1: 390 | version "6.24.1" 391 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 392 | dependencies: 393 | babel-runtime "^6.22.0" 394 | babel-traverse "^6.24.1" 395 | babel-types "^6.24.1" 396 | 397 | babel-helper-function-name@^6.24.1: 398 | version "6.24.1" 399 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 400 | dependencies: 401 | babel-helper-get-function-arity "^6.24.1" 402 | babel-runtime "^6.22.0" 403 | babel-template "^6.24.1" 404 | babel-traverse "^6.24.1" 405 | babel-types "^6.24.1" 406 | 407 | babel-helper-get-function-arity@^6.24.1: 408 | version "6.24.1" 409 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 410 | dependencies: 411 | babel-runtime "^6.22.0" 412 | babel-types "^6.24.1" 413 | 414 | babel-helper-hoist-variables@^6.24.1: 415 | version "6.24.1" 416 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 417 | dependencies: 418 | babel-runtime "^6.22.0" 419 | babel-types "^6.24.1" 420 | 421 | babel-helper-regex@^6.24.1: 422 | version "6.24.1" 423 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8" 424 | dependencies: 425 | babel-runtime "^6.22.0" 426 | babel-types "^6.24.1" 427 | lodash "^4.2.0" 428 | 429 | babel-helper-remap-async-to-generator@^6.24.1: 430 | version "6.24.1" 431 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 432 | dependencies: 433 | babel-helper-function-name "^6.24.1" 434 | babel-runtime "^6.22.0" 435 | babel-template "^6.24.1" 436 | babel-traverse "^6.24.1" 437 | babel-types "^6.24.1" 438 | 439 | babel-helpers@^6.24.1: 440 | version "6.24.1" 441 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 442 | dependencies: 443 | babel-runtime "^6.22.0" 444 | babel-template "^6.24.1" 445 | 446 | babel-messages@^6.23.0: 447 | version "6.23.0" 448 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 449 | dependencies: 450 | babel-runtime "^6.22.0" 451 | 452 | babel-plugin-check-es2015-constants@^6.8.0: 453 | version "6.22.0" 454 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 455 | dependencies: 456 | babel-runtime "^6.22.0" 457 | 458 | babel-plugin-espower@^2.3.2: 459 | version "2.3.2" 460 | resolved "https://registry.yarnpkg.com/babel-plugin-espower/-/babel-plugin-espower-2.3.2.tgz#5516b8fcdb26c9f0e1d8160749f6e4c65e71271e" 461 | dependencies: 462 | babel-generator "^6.1.0" 463 | babylon "^6.1.0" 464 | call-matcher "^1.0.0" 465 | core-js "^2.0.0" 466 | espower-location-detector "^1.0.0" 467 | espurify "^1.6.0" 468 | estraverse "^4.1.1" 469 | 470 | babel-plugin-syntax-async-functions@^6.8.0: 471 | version "6.13.0" 472 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 473 | 474 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 475 | version "6.13.0" 476 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 477 | 478 | babel-plugin-syntax-trailing-function-commas@^6.20.0: 479 | version "6.22.0" 480 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 481 | 482 | babel-plugin-transform-async-to-generator@^6.16.0: 483 | version "6.24.1" 484 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 485 | dependencies: 486 | babel-helper-remap-async-to-generator "^6.24.1" 487 | babel-plugin-syntax-async-functions "^6.8.0" 488 | babel-runtime "^6.22.0" 489 | 490 | babel-plugin-transform-es2015-destructuring@^6.19.0: 491 | version "6.23.0" 492 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 493 | dependencies: 494 | babel-runtime "^6.22.0" 495 | 496 | babel-plugin-transform-es2015-function-name@^6.9.0: 497 | version "6.24.1" 498 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 499 | dependencies: 500 | babel-helper-function-name "^6.24.1" 501 | babel-runtime "^6.22.0" 502 | babel-types "^6.24.1" 503 | 504 | babel-plugin-transform-es2015-modules-commonjs@^6.18.0: 505 | version "6.24.1" 506 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" 507 | dependencies: 508 | babel-plugin-transform-strict-mode "^6.24.1" 509 | babel-runtime "^6.22.0" 510 | babel-template "^6.24.1" 511 | babel-types "^6.24.1" 512 | 513 | babel-plugin-transform-es2015-parameters@^6.21.0: 514 | version "6.24.1" 515 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 516 | dependencies: 517 | babel-helper-call-delegate "^6.24.1" 518 | babel-helper-get-function-arity "^6.24.1" 519 | babel-runtime "^6.22.0" 520 | babel-template "^6.24.1" 521 | babel-traverse "^6.24.1" 522 | babel-types "^6.24.1" 523 | 524 | babel-plugin-transform-es2015-spread@^6.8.0: 525 | version "6.22.0" 526 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 527 | dependencies: 528 | babel-runtime "^6.22.0" 529 | 530 | babel-plugin-transform-es2015-sticky-regex@^6.8.0: 531 | version "6.24.1" 532 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 533 | dependencies: 534 | babel-helper-regex "^6.24.1" 535 | babel-runtime "^6.22.0" 536 | babel-types "^6.24.1" 537 | 538 | babel-plugin-transform-es2015-unicode-regex@^6.11.0: 539 | version "6.24.1" 540 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 541 | dependencies: 542 | babel-helper-regex "^6.24.1" 543 | babel-runtime "^6.22.0" 544 | regexpu-core "^2.0.0" 545 | 546 | babel-plugin-transform-exponentiation-operator@^6.8.0: 547 | version "6.24.1" 548 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 549 | dependencies: 550 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 551 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 552 | babel-runtime "^6.22.0" 553 | 554 | babel-plugin-transform-strict-mode@^6.24.1: 555 | version "6.24.1" 556 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 557 | dependencies: 558 | babel-runtime "^6.22.0" 559 | babel-types "^6.24.1" 560 | 561 | babel-register@^6.24.1: 562 | version "6.24.1" 563 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 564 | dependencies: 565 | babel-core "^6.24.1" 566 | babel-runtime "^6.22.0" 567 | core-js "^2.4.0" 568 | home-or-tmp "^2.0.0" 569 | lodash "^4.2.0" 570 | mkdirp "^0.5.1" 571 | source-map-support "^0.4.2" 572 | 573 | babel-runtime@^6.22.0: 574 | version "6.23.0" 575 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 576 | dependencies: 577 | core-js "^2.4.0" 578 | regenerator-runtime "^0.10.0" 579 | 580 | babel-template@^6.16.0, babel-template@^6.24.1: 581 | version "6.24.1" 582 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333" 583 | dependencies: 584 | babel-runtime "^6.22.0" 585 | babel-traverse "^6.24.1" 586 | babel-types "^6.24.1" 587 | babylon "^6.11.0" 588 | lodash "^4.2.0" 589 | 590 | babel-traverse@^6.18.0, babel-traverse@^6.24.1: 591 | version "6.24.1" 592 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695" 593 | dependencies: 594 | babel-code-frame "^6.22.0" 595 | babel-messages "^6.23.0" 596 | babel-runtime "^6.22.0" 597 | babel-types "^6.24.1" 598 | babylon "^6.15.0" 599 | debug "^2.2.0" 600 | globals "^9.0.0" 601 | invariant "^2.2.0" 602 | lodash "^4.2.0" 603 | 604 | babel-types@^6.18.0, babel-types@^6.24.1: 605 | version "6.24.1" 606 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975" 607 | dependencies: 608 | babel-runtime "^6.22.0" 609 | esutils "^2.0.2" 610 | lodash "^4.2.0" 611 | to-fast-properties "^1.0.1" 612 | 613 | babylon@^6.1.0, babylon@^6.11.0, babylon@^6.13.0, babylon@^6.15.0: 614 | version "6.17.1" 615 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.1.tgz#17f14fddf361b695981fe679385e4f1c01ebd86f" 616 | 617 | balanced-match@^0.4.1: 618 | version "0.4.2" 619 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 620 | 621 | bcrypt-pbkdf@^1.0.0: 622 | version "1.0.1" 623 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 624 | dependencies: 625 | tweetnacl "^0.14.3" 626 | 627 | binary-extensions@^1.0.0: 628 | version "1.8.0" 629 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 630 | 631 | bindings@^1.2.1: 632 | version "1.2.1" 633 | resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.2.1.tgz#14ad6113812d2d37d72e67b4cacb4bb726505f11" 634 | 635 | bit-twiddle@^1.0.2: 636 | version "1.0.2" 637 | resolved "https://registry.yarnpkg.com/bit-twiddle/-/bit-twiddle-1.0.2.tgz#0c6c1fabe2b23d17173d9a61b7b7093eb9e1769e" 638 | 639 | bl@^1.0.0: 640 | version "1.2.1" 641 | resolved "https://registry.yarnpkg.com/bl/-/bl-1.2.1.tgz#cac328f7bee45730d404b692203fcb590e172d5e" 642 | dependencies: 643 | readable-stream "^2.0.5" 644 | 645 | bl@~1.0.0: 646 | version "1.0.3" 647 | resolved "https://registry.yarnpkg.com/bl/-/bl-1.0.3.tgz#fc5421a28fd4226036c3b3891a66a25bc64d226e" 648 | dependencies: 649 | readable-stream "~2.0.5" 650 | 651 | block-stream@*: 652 | version "0.0.9" 653 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 654 | dependencies: 655 | inherits "~2.0.0" 656 | 657 | bluebird@^3.0.0: 658 | version "3.5.0" 659 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.0.tgz#791420d7f551eea2897453a8a77653f96606d67c" 660 | 661 | boom@2.x.x: 662 | version "2.10.1" 663 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 664 | dependencies: 665 | hoek "2.x.x" 666 | 667 | boxen@^1.0.0: 668 | version "1.1.0" 669 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.1.0.tgz#b1b69dd522305e807a99deee777dbd6e5167b102" 670 | dependencies: 671 | ansi-align "^2.0.0" 672 | camelcase "^4.0.0" 673 | chalk "^1.1.1" 674 | cli-boxes "^1.0.0" 675 | string-width "^2.0.0" 676 | term-size "^0.1.0" 677 | widest-line "^1.0.0" 678 | 679 | brace-expansion@^1.0.0, brace-expansion@^1.1.7: 680 | version "1.1.7" 681 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.7.tgz#3effc3c50e000531fb720eaff80f0ae8ef23cf59" 682 | dependencies: 683 | balanced-match "^0.4.1" 684 | concat-map "0.0.1" 685 | 686 | braces@^1.8.2: 687 | version "1.8.5" 688 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 689 | dependencies: 690 | expand-range "^1.8.1" 691 | preserve "^0.2.0" 692 | repeat-element "^1.1.2" 693 | 694 | buf-compare@^1.0.0: 695 | version "1.0.1" 696 | resolved "https://registry.yarnpkg.com/buf-compare/-/buf-compare-1.0.1.tgz#fef28da8b8113a0a0db4430b0b6467b69730b34a" 697 | 698 | buffer-shims@~1.0.0: 699 | version "1.0.0" 700 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 701 | 702 | builtin-modules@^1.0.0: 703 | version "1.1.1" 704 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 705 | 706 | caching-transform@^1.0.0: 707 | version "1.0.1" 708 | resolved "https://registry.yarnpkg.com/caching-transform/-/caching-transform-1.0.1.tgz#6dbdb2f20f8d8fbce79f3e94e9d1742dcdf5c0a1" 709 | dependencies: 710 | md5-hex "^1.2.0" 711 | mkdirp "^0.5.1" 712 | write-file-atomic "^1.1.4" 713 | 714 | call-matcher@^1.0.0: 715 | version "1.0.1" 716 | resolved "https://registry.yarnpkg.com/call-matcher/-/call-matcher-1.0.1.tgz#5134d077984f712a54dad3cbf62de28dce416ca8" 717 | dependencies: 718 | core-js "^2.0.0" 719 | deep-equal "^1.0.0" 720 | espurify "^1.6.0" 721 | estraverse "^4.0.0" 722 | 723 | call-signature@0.0.2: 724 | version "0.0.2" 725 | resolved "https://registry.yarnpkg.com/call-signature/-/call-signature-0.0.2.tgz#a84abc825a55ef4cb2b028bd74e205a65b9a4996" 726 | 727 | caller-path@^0.1.0: 728 | version "0.1.0" 729 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 730 | dependencies: 731 | callsites "^0.2.0" 732 | 733 | callsites@^0.2.0: 734 | version "0.2.0" 735 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 736 | 737 | camelcase-keys@^2.0.0: 738 | version "2.1.0" 739 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 740 | dependencies: 741 | camelcase "^2.0.0" 742 | map-obj "^1.0.0" 743 | 744 | camelcase@^1.0.2: 745 | version "1.2.1" 746 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 747 | 748 | camelcase@^2.0.0: 749 | version "2.1.1" 750 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 751 | 752 | camelcase@^3.0.0: 753 | version "3.0.0" 754 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 755 | 756 | camelcase@^4.0.0: 757 | version "4.1.0" 758 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 759 | 760 | canvas@^1.6.5: 761 | version "1.6.5" 762 | resolved "https://registry.yarnpkg.com/canvas/-/canvas-1.6.5.tgz#557f9988f5d2c95fdc247c61a5ee43de52f6717c" 763 | dependencies: 764 | nan "^2.4.0" 765 | parse-css-font "^2.0.2" 766 | units-css "^0.4.0" 767 | 768 | capture-stack-trace@^1.0.0: 769 | version "1.0.0" 770 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" 771 | 772 | caseless@~0.11.0: 773 | version "0.11.0" 774 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 775 | 776 | caseless@~0.12.0: 777 | version "0.12.0" 778 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 779 | 780 | center-align@^0.1.1: 781 | version "0.1.3" 782 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 783 | dependencies: 784 | align-text "^0.1.3" 785 | lazy-cache "^1.0.3" 786 | 787 | chalk@^0.4.0: 788 | version "0.4.0" 789 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-0.4.0.tgz#5199a3ddcd0c1efe23bc08c1b027b06176e0c64f" 790 | dependencies: 791 | ansi-styles "~1.0.0" 792 | has-color "~0.1.0" 793 | strip-ansi "~0.1.0" 794 | 795 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 796 | version "1.1.3" 797 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 798 | dependencies: 799 | ansi-styles "^2.2.1" 800 | escape-string-regexp "^1.0.2" 801 | has-ansi "^2.0.0" 802 | strip-ansi "^3.0.0" 803 | supports-color "^2.0.0" 804 | 805 | chokidar@^1.4.2: 806 | version "1.7.0" 807 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 808 | dependencies: 809 | anymatch "^1.3.0" 810 | async-each "^1.0.0" 811 | glob-parent "^2.0.0" 812 | inherits "^2.0.1" 813 | is-binary-path "^1.0.0" 814 | is-glob "^2.0.0" 815 | path-is-absolute "^1.0.0" 816 | readdirp "^2.0.0" 817 | optionalDependencies: 818 | fsevents "^1.0.0" 819 | 820 | chownr@^1.0.1: 821 | version "1.0.1" 822 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.0.1.tgz#e2a75042a9551908bebd25b8523d5f9769d79181" 823 | 824 | ci-info@^1.0.0: 825 | version "1.0.0" 826 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 827 | 828 | circular-json@^0.3.1: 829 | version "0.3.1" 830 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 831 | 832 | clean-stack@^1.1.1: 833 | version "1.2.0" 834 | resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-1.2.0.tgz#a465128d62c31fb1a3606d00abfe59dcf652f568" 835 | 836 | clean-yaml-object@^0.1.0: 837 | version "0.1.0" 838 | resolved "https://registry.yarnpkg.com/clean-yaml-object/-/clean-yaml-object-0.1.0.tgz#63fb110dc2ce1a84dc21f6d9334876d010ae8b68" 839 | 840 | cli-boxes@^1.0.0: 841 | version "1.0.0" 842 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 843 | 844 | cli-cursor@^1.0.1: 845 | version "1.0.2" 846 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 847 | dependencies: 848 | restore-cursor "^1.0.1" 849 | 850 | cli-cursor@^2.1.0: 851 | version "2.1.0" 852 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 853 | dependencies: 854 | restore-cursor "^2.0.0" 855 | 856 | cli-spinners@^1.0.0: 857 | version "1.0.0" 858 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-1.0.0.tgz#ef987ed3d48391ac3dab9180b406a742180d6e6a" 859 | 860 | cli-truncate@^1.0.0: 861 | version "1.0.0" 862 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-1.0.0.tgz#21eb91f47b3f6560f004db77a769b4668d9c5518" 863 | dependencies: 864 | slice-ansi "0.0.4" 865 | string-width "^2.0.0" 866 | 867 | cli-width@^2.0.0: 868 | version "2.1.0" 869 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 870 | 871 | cliui@^2.1.0: 872 | version "2.1.0" 873 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 874 | dependencies: 875 | center-align "^0.1.1" 876 | right-align "^0.1.1" 877 | wordwrap "0.0.2" 878 | 879 | cliui@^3.2.0: 880 | version "3.2.0" 881 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 882 | dependencies: 883 | string-width "^1.0.1" 884 | strip-ansi "^3.0.1" 885 | wrap-ansi "^2.0.0" 886 | 887 | co-with-promise@^4.6.0: 888 | version "4.6.0" 889 | resolved "https://registry.yarnpkg.com/co-with-promise/-/co-with-promise-4.6.0.tgz#413e7db6f5893a60b942cf492c4bec93db415ab7" 890 | dependencies: 891 | pinkie-promise "^1.0.0" 892 | 893 | co@^4.6.0: 894 | version "4.6.0" 895 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 896 | 897 | code-excerpt@^2.1.0: 898 | version "2.1.0" 899 | resolved "https://registry.yarnpkg.com/code-excerpt/-/code-excerpt-2.1.0.tgz#5dcc081e88f4a7e3b554e9e35d7ef232d47f8147" 900 | dependencies: 901 | convert-to-spaces "^1.0.1" 902 | 903 | code-point-at@^1.0.0: 904 | version "1.1.0" 905 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 906 | 907 | color-convert@^1.0.0: 908 | version "1.9.0" 909 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 910 | dependencies: 911 | color-name "^1.1.1" 912 | 913 | color-name@^1.1.1: 914 | version "1.1.2" 915 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.2.tgz#5c8ab72b64bd2215d617ae9559ebb148475cf98d" 916 | 917 | combined-stream@^1.0.5, combined-stream@~1.0.5: 918 | version "1.0.5" 919 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 920 | dependencies: 921 | delayed-stream "~1.0.0" 922 | 923 | commander@^2.9.0: 924 | version "2.9.0" 925 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 926 | dependencies: 927 | graceful-readlink ">= 1.0.0" 928 | 929 | common-path-prefix@^1.0.0: 930 | version "1.0.0" 931 | resolved "https://registry.yarnpkg.com/common-path-prefix/-/common-path-prefix-1.0.0.tgz#cd52f6f0712e0baab97d6f9732874f22f47752c0" 932 | 933 | commondir@^1.0.1: 934 | version "1.0.1" 935 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 936 | 937 | concat-map@0.0.1: 938 | version "0.0.1" 939 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 940 | 941 | concat-stream@^1.5.2: 942 | version "1.6.0" 943 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 944 | dependencies: 945 | inherits "^2.0.3" 946 | readable-stream "^2.2.2" 947 | typedarray "^0.0.6" 948 | 949 | configstore@^3.0.0: 950 | version "3.1.0" 951 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.0.tgz#45df907073e26dfa1cf4b2d52f5b60545eaa11d1" 952 | dependencies: 953 | dot-prop "^4.1.0" 954 | graceful-fs "^4.1.2" 955 | make-dir "^1.0.0" 956 | unique-string "^1.0.0" 957 | write-file-atomic "^2.0.0" 958 | xdg-basedir "^3.0.0" 959 | 960 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 961 | version "1.1.0" 962 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 963 | 964 | convert-source-map@^1.1.0, convert-source-map@^1.2.0, convert-source-map@^1.3.0: 965 | version "1.5.0" 966 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 967 | 968 | convert-to-spaces@^1.0.1: 969 | version "1.0.2" 970 | resolved "https://registry.yarnpkg.com/convert-to-spaces/-/convert-to-spaces-1.0.2.tgz#7e3e48bbe6d997b1417ddca2868204b4d3d85715" 971 | 972 | core-assert@^0.2.0: 973 | version "0.2.1" 974 | resolved "https://registry.yarnpkg.com/core-assert/-/core-assert-0.2.1.tgz#f85e2cf9bfed28f773cc8b3fa5c5b69bdc02fe3f" 975 | dependencies: 976 | buf-compare "^1.0.0" 977 | is-error "^2.2.0" 978 | 979 | core-js@^2.0.0, core-js@^2.4.0: 980 | version "2.4.1" 981 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 982 | 983 | core-util-is@~1.0.0: 984 | version "1.0.2" 985 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 986 | 987 | coveralls@^2.13.1: 988 | version "2.13.1" 989 | resolved "https://registry.yarnpkg.com/coveralls/-/coveralls-2.13.1.tgz#d70bb9acc1835ec4f063ff9dac5423c17b11f178" 990 | dependencies: 991 | js-yaml "3.6.1" 992 | lcov-parse "0.0.10" 993 | log-driver "1.2.5" 994 | minimist "1.2.0" 995 | request "2.79.0" 996 | 997 | create-error-class@^3.0.0: 998 | version "3.0.2" 999 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" 1000 | dependencies: 1001 | capture-stack-trace "^1.0.0" 1002 | 1003 | cross-spawn-async@^2.1.1: 1004 | version "2.2.5" 1005 | resolved "https://registry.yarnpkg.com/cross-spawn-async/-/cross-spawn-async-2.2.5.tgz#845ff0c0834a3ded9d160daca6d390906bb288cc" 1006 | dependencies: 1007 | lru-cache "^4.0.0" 1008 | which "^1.2.8" 1009 | 1010 | cross-spawn@^4, cross-spawn@^4.0.0: 1011 | version "4.0.2" 1012 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41" 1013 | dependencies: 1014 | lru-cache "^4.0.1" 1015 | which "^1.2.9" 1016 | 1017 | cross-spawn@^5.0.1: 1018 | version "5.1.0" 1019 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 1020 | dependencies: 1021 | lru-cache "^4.0.1" 1022 | shebang-command "^1.2.0" 1023 | which "^1.2.9" 1024 | 1025 | cryptiles@2.x.x: 1026 | version "2.0.5" 1027 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1028 | dependencies: 1029 | boom "2.x.x" 1030 | 1031 | crypto-random-string@^1.0.0: 1032 | version "1.0.0" 1033 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" 1034 | 1035 | css-font-size-keywords@^1.0.0: 1036 | version "1.0.0" 1037 | resolved "https://registry.yarnpkg.com/css-font-size-keywords/-/css-font-size-keywords-1.0.0.tgz#854875ace9aca6a8d2ee0d345a44aae9bb6db6cb" 1038 | 1039 | css-font-stretch-keywords@^1.0.1: 1040 | version "1.0.1" 1041 | resolved "https://registry.yarnpkg.com/css-font-stretch-keywords/-/css-font-stretch-keywords-1.0.1.tgz#50cee9b9ba031fb5c952d4723139f1e107b54b10" 1042 | 1043 | css-font-style-keywords@^1.0.1: 1044 | version "1.0.1" 1045 | resolved "https://registry.yarnpkg.com/css-font-style-keywords/-/css-font-style-keywords-1.0.1.tgz#5c3532813f63b4a1de954d13cea86ab4333409e4" 1046 | 1047 | css-font-weight-keywords@^1.0.0: 1048 | version "1.0.0" 1049 | resolved "https://registry.yarnpkg.com/css-font-weight-keywords/-/css-font-weight-keywords-1.0.0.tgz#9bc04671ac85bc724b574ef5d3ac96b0d604fd97" 1050 | 1051 | css-global-keywords@^1.0.1: 1052 | version "1.0.1" 1053 | resolved "https://registry.yarnpkg.com/css-global-keywords/-/css-global-keywords-1.0.1.tgz#72a9aea72796d019b1d2a3252de4e5aaa37e4a69" 1054 | 1055 | css-list-helpers@^1.0.1: 1056 | version "1.0.1" 1057 | resolved "https://registry.yarnpkg.com/css-list-helpers/-/css-list-helpers-1.0.1.tgz#fff57192202db83240c41686f919e449a7024f7d" 1058 | dependencies: 1059 | tcomb "^2.5.0" 1060 | 1061 | css-system-font-keywords@^1.0.0: 1062 | version "1.0.0" 1063 | resolved "https://registry.yarnpkg.com/css-system-font-keywords/-/css-system-font-keywords-1.0.0.tgz#85c6f086aba4eb32c571a3086affc434b84823ed" 1064 | 1065 | currently-unhandled@^0.4.1: 1066 | version "0.4.1" 1067 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 1068 | dependencies: 1069 | array-find-index "^1.0.1" 1070 | 1071 | d@1: 1072 | version "1.0.0" 1073 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 1074 | dependencies: 1075 | es5-ext "^0.10.9" 1076 | 1077 | dashdash@^1.12.0: 1078 | version "1.14.1" 1079 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1080 | dependencies: 1081 | assert-plus "^1.0.0" 1082 | 1083 | date-time@^0.1.1: 1084 | version "0.1.1" 1085 | resolved "https://registry.yarnpkg.com/date-time/-/date-time-0.1.1.tgz#ed2f6d93d9790ce2fd66d5b5ff3edd5bbcbf3b07" 1086 | 1087 | debug-log@^1.0.1: 1088 | version "1.0.1" 1089 | resolved "https://registry.yarnpkg.com/debug-log/-/debug-log-1.0.1.tgz#2307632d4c04382b8df8a32f70b895046d52745f" 1090 | 1091 | debug@^2.1.1, debug@^2.2.0, debug@^2.6.3: 1092 | version "2.6.6" 1093 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.6.tgz#a9fa6fbe9ca43cf1e79f73b75c0189cbb7d6db5a" 1094 | dependencies: 1095 | ms "0.7.3" 1096 | 1097 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: 1098 | version "1.2.0" 1099 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1100 | 1101 | deep-equal@^1.0.0: 1102 | version "1.0.1" 1103 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" 1104 | 1105 | deep-extend@~0.4.0: 1106 | version "0.4.2" 1107 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1108 | 1109 | deep-is@~0.1.3: 1110 | version "0.1.3" 1111 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1112 | 1113 | default-require-extensions@^1.0.0: 1114 | version "1.0.0" 1115 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 1116 | dependencies: 1117 | strip-bom "^2.0.0" 1118 | 1119 | del@^2.0.2: 1120 | version "2.2.2" 1121 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1122 | dependencies: 1123 | globby "^5.0.0" 1124 | is-path-cwd "^1.0.0" 1125 | is-path-in-cwd "^1.0.0" 1126 | object-assign "^4.0.1" 1127 | pify "^2.0.0" 1128 | pinkie-promise "^2.0.0" 1129 | rimraf "^2.2.8" 1130 | 1131 | delayed-stream@~1.0.0: 1132 | version "1.0.0" 1133 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1134 | 1135 | delegates@^1.0.0: 1136 | version "1.0.0" 1137 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1138 | 1139 | detect-indent@^4.0.0: 1140 | version "4.0.0" 1141 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1142 | dependencies: 1143 | repeating "^2.0.0" 1144 | 1145 | diff-match-patch@^1.0.0: 1146 | version "1.0.0" 1147 | resolved "https://registry.yarnpkg.com/diff-match-patch/-/diff-match-patch-1.0.0.tgz#1cc3c83a490d67f95d91e39f6ad1f2e086b63048" 1148 | 1149 | diff@^3.0.0, diff@^3.0.1: 1150 | version "3.2.0" 1151 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 1152 | 1153 | doctrine@^2.0.0: 1154 | version "2.0.0" 1155 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" 1156 | dependencies: 1157 | esutils "^2.0.2" 1158 | isarray "^1.0.0" 1159 | 1160 | dot-prop@^4.1.0: 1161 | version "4.1.1" 1162 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.1.1.tgz#a8493f0b7b5eeec82525b5c7587fa7de7ca859c1" 1163 | dependencies: 1164 | is-obj "^1.0.0" 1165 | 1166 | duplexer2@~0.0.2: 1167 | version "0.0.2" 1168 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.0.2.tgz#c614dcf67e2fb14995a91711e5a617e8a60a31db" 1169 | dependencies: 1170 | readable-stream "~1.1.9" 1171 | 1172 | duplexer3@^0.1.4: 1173 | version "0.1.4" 1174 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" 1175 | 1176 | ecc-jsbn@~0.1.1: 1177 | version "0.1.1" 1178 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1179 | dependencies: 1180 | jsbn "~0.1.0" 1181 | 1182 | empower-core@^0.6.1: 1183 | version "0.6.1" 1184 | resolved "https://registry.yarnpkg.com/empower-core/-/empower-core-0.6.1.tgz#6c187f502fcef7554d57933396aac655483772b1" 1185 | dependencies: 1186 | call-signature "0.0.2" 1187 | core-js "^2.0.0" 1188 | 1189 | end-of-stream@^1.0.0, end-of-stream@^1.1.0: 1190 | version "1.4.0" 1191 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.0.tgz#7a90d833efda6cfa6eac0f4949dbb0fad3a63206" 1192 | dependencies: 1193 | once "^1.4.0" 1194 | 1195 | equal-length@^1.0.0: 1196 | version "1.0.1" 1197 | resolved "https://registry.yarnpkg.com/equal-length/-/equal-length-1.0.1.tgz#21ca112d48ab24b4e1e7ffc0e5339d31fdfc274c" 1198 | 1199 | error-ex@^1.2.0: 1200 | version "1.3.1" 1201 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1202 | dependencies: 1203 | is-arrayish "^0.2.1" 1204 | 1205 | es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14: 1206 | version "0.10.18" 1207 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.18.tgz#dc239d3dce4c22b9c939aa180878837a3c0b5c92" 1208 | dependencies: 1209 | es6-iterator "2" 1210 | es6-symbol "~3.1" 1211 | 1212 | es6-error@^4.0.1, es6-error@^4.0.2: 1213 | version "4.0.2" 1214 | resolved "https://registry.yarnpkg.com/es6-error/-/es6-error-4.0.2.tgz#eec5c726eacef51b7f6b73c20db6e1b13b069c98" 1215 | 1216 | es6-iterator@2, es6-iterator@^2.0.1, es6-iterator@~2.0.1: 1217 | version "2.0.1" 1218 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512" 1219 | dependencies: 1220 | d "1" 1221 | es5-ext "^0.10.14" 1222 | es6-symbol "^3.1" 1223 | 1224 | es6-map@^0.1.3: 1225 | version "0.1.5" 1226 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" 1227 | dependencies: 1228 | d "1" 1229 | es5-ext "~0.10.14" 1230 | es6-iterator "~2.0.1" 1231 | es6-set "~0.1.5" 1232 | es6-symbol "~3.1.1" 1233 | event-emitter "~0.3.5" 1234 | 1235 | es6-set@~0.1.5: 1236 | version "0.1.5" 1237 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" 1238 | dependencies: 1239 | d "1" 1240 | es5-ext "~0.10.14" 1241 | es6-iterator "~2.0.1" 1242 | es6-symbol "3.1.1" 1243 | event-emitter "~0.3.5" 1244 | 1245 | es6-symbol@3.1.1, es6-symbol@^3.0.2, es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1, es6-symbol@~3.1.1: 1246 | version "3.1.1" 1247 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 1248 | dependencies: 1249 | d "1" 1250 | es5-ext "~0.10.14" 1251 | 1252 | es6-weak-map@^2.0.1: 1253 | version "2.0.2" 1254 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 1255 | dependencies: 1256 | d "1" 1257 | es5-ext "^0.10.14" 1258 | es6-iterator "^2.0.1" 1259 | es6-symbol "^3.1.1" 1260 | 1261 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.4, escape-string-regexp@^1.0.5: 1262 | version "1.0.5" 1263 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1264 | 1265 | escope@^3.6.0: 1266 | version "3.6.0" 1267 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 1268 | dependencies: 1269 | es6-map "^0.1.3" 1270 | es6-weak-map "^2.0.1" 1271 | esrecurse "^4.1.0" 1272 | estraverse "^4.1.1" 1273 | 1274 | eslint-config-xo@^0.18.1: 1275 | version "0.18.2" 1276 | resolved "https://registry.yarnpkg.com/eslint-config-xo/-/eslint-config-xo-0.18.2.tgz#0a157120875619929e735ffd6b185c41e8a187af" 1277 | 1278 | eslint@^3.19.0: 1279 | version "3.19.0" 1280 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.19.0.tgz#c8fc6201c7f40dd08941b87c085767386a679acc" 1281 | dependencies: 1282 | babel-code-frame "^6.16.0" 1283 | chalk "^1.1.3" 1284 | concat-stream "^1.5.2" 1285 | debug "^2.1.1" 1286 | doctrine "^2.0.0" 1287 | escope "^3.6.0" 1288 | espree "^3.4.0" 1289 | esquery "^1.0.0" 1290 | estraverse "^4.2.0" 1291 | esutils "^2.0.2" 1292 | file-entry-cache "^2.0.0" 1293 | glob "^7.0.3" 1294 | globals "^9.14.0" 1295 | ignore "^3.2.0" 1296 | imurmurhash "^0.1.4" 1297 | inquirer "^0.12.0" 1298 | is-my-json-valid "^2.10.0" 1299 | is-resolvable "^1.0.0" 1300 | js-yaml "^3.5.1" 1301 | json-stable-stringify "^1.0.0" 1302 | levn "^0.3.0" 1303 | lodash "^4.0.0" 1304 | mkdirp "^0.5.0" 1305 | natural-compare "^1.4.0" 1306 | optionator "^0.8.2" 1307 | path-is-inside "^1.0.1" 1308 | pluralize "^1.2.1" 1309 | progress "^1.1.8" 1310 | require-uncached "^1.0.2" 1311 | shelljs "^0.7.5" 1312 | strip-bom "^3.0.0" 1313 | strip-json-comments "~2.0.1" 1314 | table "^3.7.8" 1315 | text-table "~0.2.0" 1316 | user-home "^2.0.0" 1317 | 1318 | espower-location-detector@^1.0.0: 1319 | version "1.0.0" 1320 | resolved "https://registry.yarnpkg.com/espower-location-detector/-/espower-location-detector-1.0.0.tgz#a17b7ecc59d30e179e2bef73fb4137704cb331b5" 1321 | dependencies: 1322 | is-url "^1.2.1" 1323 | path-is-absolute "^1.0.0" 1324 | source-map "^0.5.0" 1325 | xtend "^4.0.0" 1326 | 1327 | espree@^3.4.0: 1328 | version "3.4.3" 1329 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.3.tgz#2910b5ccd49ce893c2ffffaab4fd8b3a31b82374" 1330 | dependencies: 1331 | acorn "^5.0.1" 1332 | acorn-jsx "^3.0.0" 1333 | 1334 | esprima@^2.6.0: 1335 | version "2.7.3" 1336 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1337 | 1338 | esprima@^3.1.1: 1339 | version "3.1.3" 1340 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1341 | 1342 | espurify@^1.6.0: 1343 | version "1.7.0" 1344 | resolved "https://registry.yarnpkg.com/espurify/-/espurify-1.7.0.tgz#1c5cf6cbccc32e6f639380bd4f991fab9ba9d226" 1345 | dependencies: 1346 | core-js "^2.0.0" 1347 | 1348 | esquery@^1.0.0: 1349 | version "1.0.0" 1350 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 1351 | dependencies: 1352 | estraverse "^4.0.0" 1353 | 1354 | esrecurse@^4.1.0: 1355 | version "4.1.0" 1356 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 1357 | dependencies: 1358 | estraverse "~4.1.0" 1359 | object-assign "^4.0.1" 1360 | 1361 | estraverse@^4.0.0, estraverse@^4.1.1, estraverse@^4.2.0: 1362 | version "4.2.0" 1363 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1364 | 1365 | estraverse@~4.1.0: 1366 | version "4.1.1" 1367 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 1368 | 1369 | esutils@^2.0.2: 1370 | version "2.0.2" 1371 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1372 | 1373 | event-emitter@~0.3.5: 1374 | version "0.3.5" 1375 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 1376 | dependencies: 1377 | d "1" 1378 | es5-ext "~0.10.14" 1379 | 1380 | execa@^0.4.0: 1381 | version "0.4.0" 1382 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.4.0.tgz#4eb6467a36a095fabb2970ff9d5e3fb7bce6ebc3" 1383 | dependencies: 1384 | cross-spawn-async "^2.1.1" 1385 | is-stream "^1.1.0" 1386 | npm-run-path "^1.0.0" 1387 | object-assign "^4.0.1" 1388 | path-key "^1.0.0" 1389 | strip-eof "^1.0.0" 1390 | 1391 | execa@^0.5.0: 1392 | version "0.5.1" 1393 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.5.1.tgz#de3fb85cb8d6e91c85bcbceb164581785cb57b36" 1394 | dependencies: 1395 | cross-spawn "^4.0.0" 1396 | get-stream "^2.2.0" 1397 | is-stream "^1.1.0" 1398 | npm-run-path "^2.0.0" 1399 | p-finally "^1.0.0" 1400 | signal-exit "^3.0.0" 1401 | strip-eof "^1.0.0" 1402 | 1403 | execa@^0.6.3: 1404 | version "0.6.3" 1405 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.6.3.tgz#57b69a594f081759c69e5370f0d17b9cb11658fe" 1406 | dependencies: 1407 | cross-spawn "^5.0.1" 1408 | get-stream "^3.0.0" 1409 | is-stream "^1.1.0" 1410 | npm-run-path "^2.0.0" 1411 | p-finally "^1.0.0" 1412 | signal-exit "^3.0.0" 1413 | strip-eof "^1.0.0" 1414 | 1415 | execspawn@^1.0.1: 1416 | version "1.0.1" 1417 | resolved "https://registry.yarnpkg.com/execspawn/-/execspawn-1.0.1.tgz#8286f9dde7cecde7905fbdc04e24f368f23f8da6" 1418 | dependencies: 1419 | util-extend "^1.0.1" 1420 | 1421 | exit-hook@^1.0.0: 1422 | version "1.1.1" 1423 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1424 | 1425 | expand-brackets@^0.1.4: 1426 | version "0.1.5" 1427 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1428 | dependencies: 1429 | is-posix-bracket "^0.1.0" 1430 | 1431 | expand-range@^1.8.1: 1432 | version "1.8.2" 1433 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1434 | dependencies: 1435 | fill-range "^2.1.0" 1436 | 1437 | expand-template@^1.0.0: 1438 | version "1.0.3" 1439 | resolved "https://registry.yarnpkg.com/expand-template/-/expand-template-1.0.3.tgz#6c303323177a62b1b22c070279f7861287b69b1a" 1440 | 1441 | extend@~3.0.0: 1442 | version "3.0.1" 1443 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1444 | 1445 | extglob@^0.3.1: 1446 | version "0.3.2" 1447 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1448 | dependencies: 1449 | is-extglob "^1.0.0" 1450 | 1451 | extsprintf@1.0.2: 1452 | version "1.0.2" 1453 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1454 | 1455 | fast-levenshtein@~2.0.4: 1456 | version "2.0.6" 1457 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1458 | 1459 | figures@^1.3.5: 1460 | version "1.7.0" 1461 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1462 | dependencies: 1463 | escape-string-regexp "^1.0.5" 1464 | object-assign "^4.1.0" 1465 | 1466 | figures@^2.0.0: 1467 | version "2.0.0" 1468 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1469 | dependencies: 1470 | escape-string-regexp "^1.0.5" 1471 | 1472 | file-entry-cache@^2.0.0: 1473 | version "2.0.0" 1474 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1475 | dependencies: 1476 | flat-cache "^1.2.1" 1477 | object-assign "^4.0.1" 1478 | 1479 | filename-regex@^2.0.0: 1480 | version "2.0.1" 1481 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1482 | 1483 | fill-range@^2.1.0: 1484 | version "2.2.3" 1485 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1486 | dependencies: 1487 | is-number "^2.1.0" 1488 | isobject "^2.0.0" 1489 | randomatic "^1.1.3" 1490 | repeat-element "^1.1.2" 1491 | repeat-string "^1.5.2" 1492 | 1493 | find-cache-dir@^0.1.1: 1494 | version "0.1.1" 1495 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" 1496 | dependencies: 1497 | commondir "^1.0.1" 1498 | mkdirp "^0.5.1" 1499 | pkg-dir "^1.0.0" 1500 | 1501 | find-index@^0.1.1: 1502 | version "0.1.1" 1503 | resolved "https://registry.yarnpkg.com/find-index/-/find-index-0.1.1.tgz#675d358b2ca3892d795a1ab47232f8b6e2e0dde4" 1504 | 1505 | find-up@^1.0.0, find-up@^1.1.2: 1506 | version "1.1.2" 1507 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1508 | dependencies: 1509 | path-exists "^2.0.0" 1510 | pinkie-promise "^2.0.0" 1511 | 1512 | find-up@^2.0.0: 1513 | version "2.1.0" 1514 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1515 | dependencies: 1516 | locate-path "^2.0.0" 1517 | 1518 | flat-cache@^1.2.1: 1519 | version "1.2.2" 1520 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 1521 | dependencies: 1522 | circular-json "^0.3.1" 1523 | del "^2.0.2" 1524 | graceful-fs "^4.1.2" 1525 | write "^0.2.1" 1526 | 1527 | fn-name@^2.0.0: 1528 | version "2.0.1" 1529 | resolved "https://registry.yarnpkg.com/fn-name/-/fn-name-2.0.1.tgz#5214d7537a4d06a4a301c0cc262feb84188002e7" 1530 | 1531 | for-in@^1.0.1: 1532 | version "1.0.2" 1533 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1534 | 1535 | for-own@^0.1.4: 1536 | version "0.1.5" 1537 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1538 | dependencies: 1539 | for-in "^1.0.1" 1540 | 1541 | foreground-child@^1.3.3, foreground-child@^1.5.3: 1542 | version "1.5.6" 1543 | resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-1.5.6.tgz#4fd71ad2dfde96789b980a5c0a295937cb2f5ce9" 1544 | dependencies: 1545 | cross-spawn "^4" 1546 | signal-exit "^3.0.0" 1547 | 1548 | forever-agent@~0.6.1: 1549 | version "0.6.1" 1550 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1551 | 1552 | form-data@~2.1.1: 1553 | version "2.1.4" 1554 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1555 | dependencies: 1556 | asynckit "^0.4.0" 1557 | combined-stream "^1.0.5" 1558 | mime-types "^2.1.12" 1559 | 1560 | fs.realpath@^1.0.0: 1561 | version "1.0.0" 1562 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1563 | 1564 | fsevents@^1.0.0: 1565 | version "1.1.1" 1566 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff" 1567 | dependencies: 1568 | nan "^2.3.0" 1569 | node-pre-gyp "^0.6.29" 1570 | 1571 | fstream-ignore@^1.0.5: 1572 | version "1.0.5" 1573 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1574 | dependencies: 1575 | fstream "^1.0.0" 1576 | inherits "2" 1577 | minimatch "^3.0.0" 1578 | 1579 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1580 | version "1.0.11" 1581 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1582 | dependencies: 1583 | graceful-fs "^4.1.2" 1584 | inherits "~2.0.0" 1585 | mkdirp ">=0.5 0" 1586 | rimraf "2" 1587 | 1588 | gauge@~1.2.5: 1589 | version "1.2.7" 1590 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-1.2.7.tgz#e9cec5483d3d4ee0ef44b60a7d99e4935e136d93" 1591 | dependencies: 1592 | ansi "^0.3.0" 1593 | has-unicode "^2.0.0" 1594 | lodash.pad "^4.1.0" 1595 | lodash.padend "^4.1.0" 1596 | lodash.padstart "^4.1.0" 1597 | 1598 | gauge@~2.7.3: 1599 | version "2.7.4" 1600 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1601 | dependencies: 1602 | aproba "^1.0.3" 1603 | console-control-strings "^1.0.0" 1604 | has-unicode "^2.0.0" 1605 | object-assign "^4.1.0" 1606 | signal-exit "^3.0.0" 1607 | string-width "^1.0.1" 1608 | strip-ansi "^3.0.1" 1609 | wide-align "^1.1.0" 1610 | 1611 | generate-function@^2.0.0: 1612 | version "2.0.0" 1613 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1614 | 1615 | generate-object-property@^1.1.0: 1616 | version "1.2.0" 1617 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1618 | dependencies: 1619 | is-property "^1.0.0" 1620 | 1621 | get-caller-file@^1.0.1: 1622 | version "1.0.2" 1623 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1624 | 1625 | get-port@^3.0.0: 1626 | version "3.1.0" 1627 | resolved "https://registry.yarnpkg.com/get-port/-/get-port-3.1.0.tgz#ef01b18a84ca6486970ff99e54446141a73ffd3e" 1628 | 1629 | get-stdin@^4.0.1: 1630 | version "4.0.1" 1631 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 1632 | 1633 | get-stream@^2.2.0: 1634 | version "2.3.1" 1635 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-2.3.1.tgz#5f38f93f346009666ee0150a054167f91bdd95de" 1636 | dependencies: 1637 | object-assign "^4.0.1" 1638 | pinkie-promise "^2.0.0" 1639 | 1640 | get-stream@^3.0.0: 1641 | version "3.0.0" 1642 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1643 | 1644 | getpass@^0.1.1: 1645 | version "0.1.7" 1646 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1647 | dependencies: 1648 | assert-plus "^1.0.0" 1649 | 1650 | ghreleases@^1.0.2: 1651 | version "1.0.5" 1652 | resolved "https://registry.yarnpkg.com/ghreleases/-/ghreleases-1.0.5.tgz#a20f8194074311e19d84ccba7a6e08c4b434fd80" 1653 | dependencies: 1654 | after "~0.8.1" 1655 | ghrepos "~2.0.0" 1656 | ghutils "~3.2.0" 1657 | simple-mime "~0.1.0" 1658 | url-template "~2.0.6" 1659 | xtend "~4.0.0" 1660 | 1661 | ghrepos@~2.0.0: 1662 | version "2.0.0" 1663 | resolved "https://registry.yarnpkg.com/ghrepos/-/ghrepos-2.0.0.tgz#d66eae9d98a3b5398e460d6db7e10a742692e81b" 1664 | dependencies: 1665 | ghutils "~3.2.0" 1666 | 1667 | ghutils@~3.2.0: 1668 | version "3.2.1" 1669 | resolved "https://registry.yarnpkg.com/ghutils/-/ghutils-3.2.1.tgz#4fcedffac935fcace06e12a17c6174e2c29ffe4f" 1670 | dependencies: 1671 | jsonist "~1.3.0" 1672 | xtend "~4.0.1" 1673 | 1674 | gif-info@^1.0.1: 1675 | version "1.0.1" 1676 | resolved "https://registry.yarnpkg.com/gif-info/-/gif-info-1.0.1.tgz#003765fc0c4c65a8de64d5568c1e8ead309d09dc" 1677 | 1678 | gifencoder@^1.0.6: 1679 | version "1.0.6" 1680 | resolved "https://registry.yarnpkg.com/gifencoder/-/gifencoder-1.0.6.tgz#a3cbf6ffae172f6feb84fdd9e0e0de663803630c" 1681 | 1682 | github-from-package@0.0.0: 1683 | version "0.0.0" 1684 | resolved "https://registry.yarnpkg.com/github-from-package/-/github-from-package-0.0.0.tgz#97fb5d96bfde8973313f20e8288ef9a167fa64ce" 1685 | 1686 | gl@3.0.6: 1687 | version "3.0.6" 1688 | resolved "https://registry.yarnpkg.com/gl/-/gl-3.0.6.tgz#f83166761a0bcf22b17512aa7e28586b048fb948" 1689 | dependencies: 1690 | bindings "^1.2.1" 1691 | bit-twiddle "^1.0.2" 1692 | glsl-tokenizer "^2.0.2" 1693 | nan "^2.3.3" 1694 | node-gyp "^3.3.1" 1695 | prebuild "^4.1.2" 1696 | 1697 | glob-base@^0.3.0: 1698 | version "0.3.0" 1699 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1700 | dependencies: 1701 | glob-parent "^2.0.0" 1702 | is-glob "^2.0.0" 1703 | 1704 | glob-parent@^2.0.0: 1705 | version "2.0.0" 1706 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1707 | dependencies: 1708 | is-glob "^2.0.0" 1709 | 1710 | glob-stream@~3.1.9: 1711 | version "3.1.18" 1712 | resolved "https://registry.yarnpkg.com/glob-stream/-/glob-stream-3.1.18.tgz#9170a5f12b790306fdfe598f313f8f7954fd143b" 1713 | dependencies: 1714 | glob "^4.3.1" 1715 | glob2base "^0.0.12" 1716 | minimatch "^2.0.1" 1717 | ordered-read-streams "^0.1.0" 1718 | through2 "^0.6.1" 1719 | unique-stream "^1.0.0" 1720 | 1721 | glob2base@^0.0.12: 1722 | version "0.0.12" 1723 | resolved "https://registry.yarnpkg.com/glob2base/-/glob2base-0.0.12.tgz#9d419b3e28f12e83a362164a277055922c9c0d56" 1724 | dependencies: 1725 | find-index "^0.1.1" 1726 | 1727 | "glob@3 || 4 || 5 || 6 || 7", glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.0.6: 1728 | version "7.1.1" 1729 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1730 | dependencies: 1731 | fs.realpath "^1.0.0" 1732 | inflight "^1.0.4" 1733 | inherits "2" 1734 | minimatch "^3.0.2" 1735 | once "^1.3.0" 1736 | path-is-absolute "^1.0.0" 1737 | 1738 | glob@^4.3.1: 1739 | version "4.5.3" 1740 | resolved "https://registry.yarnpkg.com/glob/-/glob-4.5.3.tgz#c6cb73d3226c1efef04de3c56d012f03377ee15f" 1741 | dependencies: 1742 | inflight "^1.0.4" 1743 | inherits "2" 1744 | minimatch "^2.0.1" 1745 | once "^1.3.0" 1746 | 1747 | globals@^9.0.0, globals@^9.14.0: 1748 | version "9.17.0" 1749 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 1750 | 1751 | globby@^5.0.0: 1752 | version "5.0.0" 1753 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1754 | dependencies: 1755 | array-union "^1.0.1" 1756 | arrify "^1.0.0" 1757 | glob "^7.0.3" 1758 | object-assign "^4.0.1" 1759 | pify "^2.0.0" 1760 | pinkie-promise "^2.0.0" 1761 | 1762 | globby@^6.0.0: 1763 | version "6.1.0" 1764 | resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" 1765 | dependencies: 1766 | array-union "^1.0.1" 1767 | glob "^7.0.3" 1768 | object-assign "^4.0.1" 1769 | pify "^2.0.0" 1770 | pinkie-promise "^2.0.0" 1771 | 1772 | glsl-tokenizer@^2.0.2: 1773 | version "2.1.2" 1774 | resolved "https://registry.yarnpkg.com/glsl-tokenizer/-/glsl-tokenizer-2.1.2.tgz#720307522e03c57af35c00551950c4a70ef2dfb9" 1775 | dependencies: 1776 | through2 "^0.6.3" 1777 | 1778 | got@^6.7.1: 1779 | version "6.7.1" 1780 | resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" 1781 | dependencies: 1782 | create-error-class "^3.0.0" 1783 | duplexer3 "^0.1.4" 1784 | get-stream "^3.0.0" 1785 | is-redirect "^1.0.0" 1786 | is-retry-allowed "^1.0.0" 1787 | is-stream "^1.0.0" 1788 | lowercase-keys "^1.0.0" 1789 | safe-buffer "^5.0.1" 1790 | timed-out "^4.0.0" 1791 | unzip-response "^2.0.1" 1792 | url-parse-lax "^1.0.0" 1793 | 1794 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6: 1795 | version "4.1.11" 1796 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1797 | 1798 | "graceful-readlink@>= 1.0.0": 1799 | version "1.0.1" 1800 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1801 | 1802 | handlebars@^4.0.3: 1803 | version "4.0.8" 1804 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.8.tgz#22b875cd3f0e6cbea30314f144e82bc7a72ff420" 1805 | dependencies: 1806 | async "^1.4.0" 1807 | optimist "^0.6.1" 1808 | source-map "^0.4.4" 1809 | optionalDependencies: 1810 | uglify-js "^2.6" 1811 | 1812 | har-schema@^1.0.5: 1813 | version "1.0.5" 1814 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1815 | 1816 | har-validator@~2.0.6: 1817 | version "2.0.6" 1818 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 1819 | dependencies: 1820 | chalk "^1.1.1" 1821 | commander "^2.9.0" 1822 | is-my-json-valid "^2.12.4" 1823 | pinkie-promise "^2.0.0" 1824 | 1825 | har-validator@~4.2.1: 1826 | version "4.2.1" 1827 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1828 | dependencies: 1829 | ajv "^4.9.1" 1830 | har-schema "^1.0.5" 1831 | 1832 | has-ansi@^2.0.0: 1833 | version "2.0.0" 1834 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1835 | dependencies: 1836 | ansi-regex "^2.0.0" 1837 | 1838 | has-color@~0.1.0: 1839 | version "0.1.7" 1840 | resolved "https://registry.yarnpkg.com/has-color/-/has-color-0.1.7.tgz#67144a5260c34fc3cca677d041daf52fe7b78b2f" 1841 | 1842 | has-flag@^1.0.0: 1843 | version "1.0.0" 1844 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1845 | 1846 | has-flag@^2.0.0: 1847 | version "2.0.0" 1848 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1849 | 1850 | has-unicode@^2.0.0: 1851 | version "2.0.1" 1852 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1853 | 1854 | has-yarn@^1.0.0: 1855 | version "1.0.0" 1856 | resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-1.0.0.tgz#89e25db604b725c8f5976fff0addc921b828a5a7" 1857 | 1858 | hawk@~3.1.3: 1859 | version "3.1.3" 1860 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1861 | dependencies: 1862 | boom "2.x.x" 1863 | cryptiles "2.x.x" 1864 | hoek "2.x.x" 1865 | sntp "1.x.x" 1866 | 1867 | hoek@2.x.x: 1868 | version "2.16.3" 1869 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1870 | 1871 | home-or-tmp@^2.0.0: 1872 | version "2.0.0" 1873 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1874 | dependencies: 1875 | os-homedir "^1.0.0" 1876 | os-tmpdir "^1.0.1" 1877 | 1878 | hosted-git-info@^2.1.4: 1879 | version "2.4.2" 1880 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.2.tgz#0076b9f46a270506ddbaaea56496897460612a67" 1881 | 1882 | http-signature@~1.1.0: 1883 | version "1.1.1" 1884 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1885 | dependencies: 1886 | assert-plus "^0.2.0" 1887 | jsprim "^1.2.2" 1888 | sshpk "^1.7.0" 1889 | 1890 | hullabaloo-config-manager@^1.0.0: 1891 | version "1.0.1" 1892 | resolved "https://registry.yarnpkg.com/hullabaloo-config-manager/-/hullabaloo-config-manager-1.0.1.tgz#c72be7ba249a67c99b6ba3eb1f55837fa01acd8f" 1893 | dependencies: 1894 | dot-prop "^4.1.0" 1895 | es6-error "^4.0.2" 1896 | graceful-fs "^4.1.11" 1897 | indent-string "^3.1.0" 1898 | json5 "^0.5.1" 1899 | lodash.clonedeep "^4.5.0" 1900 | lodash.clonedeepwith "^4.5.0" 1901 | lodash.isequal "^4.5.0" 1902 | lodash.merge "^4.6.0" 1903 | md5-hex "^2.0.0" 1904 | package-hash "^2.0.0" 1905 | pkg-dir "^1.0.0" 1906 | resolve-from "^2.0.0" 1907 | 1908 | hyperquest@~1.2.0: 1909 | version "1.2.0" 1910 | resolved "https://registry.yarnpkg.com/hyperquest/-/hyperquest-1.2.0.tgz#39e1fef66888dc7ce0dec6c0dd814f6fc8944ad5" 1911 | dependencies: 1912 | duplexer2 "~0.0.2" 1913 | through2 "~0.6.3" 1914 | 1915 | ignore-by-default@^1.0.0: 1916 | version "1.0.1" 1917 | resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" 1918 | 1919 | ignore@^3.2.0: 1920 | version "3.3.0" 1921 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.0.tgz#3812d22cbe9125f2c2b4915755a1b8abd745a001" 1922 | 1923 | imurmurhash@^0.1.4: 1924 | version "0.1.4" 1925 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1926 | 1927 | indent-string@^2.1.0: 1928 | version "2.1.0" 1929 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 1930 | dependencies: 1931 | repeating "^2.0.0" 1932 | 1933 | indent-string@^3.0.0, indent-string@^3.1.0: 1934 | version "3.1.0" 1935 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.1.0.tgz#08ff4334603388399b329e6b9538dc7a3cf5de7d" 1936 | 1937 | inflight@^1.0.4: 1938 | version "1.0.6" 1939 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1940 | dependencies: 1941 | once "^1.3.0" 1942 | wrappy "1" 1943 | 1944 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1: 1945 | version "2.0.3" 1946 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1947 | 1948 | ini@~1.3.0: 1949 | version "1.3.4" 1950 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1951 | 1952 | inquirer@^0.12.0: 1953 | version "0.12.0" 1954 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 1955 | dependencies: 1956 | ansi-escapes "^1.1.0" 1957 | ansi-regex "^2.0.0" 1958 | chalk "^1.0.0" 1959 | cli-cursor "^1.0.1" 1960 | cli-width "^2.0.0" 1961 | figures "^1.3.5" 1962 | lodash "^4.3.0" 1963 | readline2 "^1.0.1" 1964 | run-async "^0.1.0" 1965 | rx-lite "^3.1.2" 1966 | string-width "^1.0.1" 1967 | strip-ansi "^3.0.0" 1968 | through "^2.3.6" 1969 | 1970 | interpret@^1.0.0: 1971 | version "1.0.3" 1972 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.3.tgz#cbc35c62eeee73f19ab7b10a801511401afc0f90" 1973 | 1974 | invariant@^2.2.0: 1975 | version "2.2.2" 1976 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1977 | dependencies: 1978 | loose-envify "^1.0.0" 1979 | 1980 | invert-kv@^1.0.0: 1981 | version "1.0.0" 1982 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1983 | 1984 | irregular-plurals@^1.0.0: 1985 | version "1.2.0" 1986 | resolved "https://registry.yarnpkg.com/irregular-plurals/-/irregular-plurals-1.2.0.tgz#38f299834ba8c00c30be9c554e137269752ff3ac" 1987 | 1988 | is-arrayish@^0.2.1: 1989 | version "0.2.1" 1990 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1991 | 1992 | is-binary-path@^1.0.0: 1993 | version "1.0.1" 1994 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1995 | dependencies: 1996 | binary-extensions "^1.0.0" 1997 | 1998 | is-buffer@^1.1.5: 1999 | version "1.1.5" 2000 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 2001 | 2002 | is-builtin-module@^1.0.0: 2003 | version "1.0.0" 2004 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 2005 | dependencies: 2006 | builtin-modules "^1.0.0" 2007 | 2008 | is-ci@^1.0.7: 2009 | version "1.0.10" 2010 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 2011 | dependencies: 2012 | ci-info "^1.0.0" 2013 | 2014 | is-dotfile@^1.0.0: 2015 | version "1.0.2" 2016 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 2017 | 2018 | is-equal-shallow@^0.1.3: 2019 | version "0.1.3" 2020 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 2021 | dependencies: 2022 | is-primitive "^2.0.0" 2023 | 2024 | is-error@^2.2.0: 2025 | version "2.2.1" 2026 | resolved "https://registry.yarnpkg.com/is-error/-/is-error-2.2.1.tgz#684a96d84076577c98f4cdb40c6d26a5123bf19c" 2027 | 2028 | is-extendable@^0.1.1: 2029 | version "0.1.1" 2030 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 2031 | 2032 | is-extglob@^1.0.0: 2033 | version "1.0.0" 2034 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 2035 | 2036 | is-finite@^1.0.0, is-finite@^1.0.1: 2037 | version "1.0.2" 2038 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 2039 | dependencies: 2040 | number-is-nan "^1.0.0" 2041 | 2042 | is-fullwidth-code-point@^1.0.0: 2043 | version "1.0.0" 2044 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 2045 | dependencies: 2046 | number-is-nan "^1.0.0" 2047 | 2048 | is-fullwidth-code-point@^2.0.0: 2049 | version "2.0.0" 2050 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 2051 | 2052 | is-generator-fn@^1.0.0: 2053 | version "1.0.0" 2054 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a" 2055 | 2056 | is-glob@^2.0.0, is-glob@^2.0.1: 2057 | version "2.0.1" 2058 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 2059 | dependencies: 2060 | is-extglob "^1.0.0" 2061 | 2062 | is-my-json-valid@^2.10.0, is-my-json-valid@^2.12.4: 2063 | version "2.16.0" 2064 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693" 2065 | dependencies: 2066 | generate-function "^2.0.0" 2067 | generate-object-property "^1.1.0" 2068 | jsonpointer "^4.0.0" 2069 | xtend "^4.0.0" 2070 | 2071 | is-npm@^1.0.0: 2072 | version "1.0.0" 2073 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 2074 | 2075 | is-number@^2.0.2, is-number@^2.1.0: 2076 | version "2.1.0" 2077 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 2078 | dependencies: 2079 | kind-of "^3.0.2" 2080 | 2081 | is-obj@^1.0.0: 2082 | version "1.0.1" 2083 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 2084 | 2085 | is-observable@^0.2.0: 2086 | version "0.2.0" 2087 | resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-0.2.0.tgz#b361311d83c6e5d726cabf5e250b0237106f5ae2" 2088 | dependencies: 2089 | symbol-observable "^0.2.2" 2090 | 2091 | is-path-cwd@^1.0.0: 2092 | version "1.0.0" 2093 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 2094 | 2095 | is-path-in-cwd@^1.0.0: 2096 | version "1.0.0" 2097 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 2098 | dependencies: 2099 | is-path-inside "^1.0.0" 2100 | 2101 | is-path-inside@^1.0.0: 2102 | version "1.0.0" 2103 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 2104 | dependencies: 2105 | path-is-inside "^1.0.1" 2106 | 2107 | is-plain-obj@^1.0.0: 2108 | version "1.1.0" 2109 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 2110 | 2111 | is-posix-bracket@^0.1.0: 2112 | version "0.1.1" 2113 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2114 | 2115 | is-primitive@^2.0.0: 2116 | version "2.0.0" 2117 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2118 | 2119 | is-promise@^2.1.0: 2120 | version "2.1.0" 2121 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 2122 | 2123 | is-property@^1.0.0: 2124 | version "1.0.2" 2125 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 2126 | 2127 | is-redirect@^1.0.0: 2128 | version "1.0.0" 2129 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 2130 | 2131 | is-resolvable@^1.0.0: 2132 | version "1.0.0" 2133 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 2134 | dependencies: 2135 | tryit "^1.0.1" 2136 | 2137 | is-retry-allowed@^1.0.0: 2138 | version "1.1.0" 2139 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" 2140 | 2141 | is-stream@^1.0.0, is-stream@^1.1.0: 2142 | version "1.1.0" 2143 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2144 | 2145 | is-typedarray@~1.0.0: 2146 | version "1.0.0" 2147 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2148 | 2149 | is-url@^1.2.1: 2150 | version "1.2.2" 2151 | resolved "https://registry.yarnpkg.com/is-url/-/is-url-1.2.2.tgz#498905a593bf47cc2d9e7f738372bbf7696c7f26" 2152 | 2153 | is-utf8@^0.2.0, is-utf8@^0.2.1: 2154 | version "0.2.1" 2155 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 2156 | 2157 | isarray@0.0.1: 2158 | version "0.0.1" 2159 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 2160 | 2161 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2162 | version "1.0.0" 2163 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2164 | 2165 | isexe@^2.0.0: 2166 | version "2.0.0" 2167 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2168 | 2169 | isnumeric@^0.2.0: 2170 | version "0.2.0" 2171 | resolved "https://registry.yarnpkg.com/isnumeric/-/isnumeric-0.2.0.tgz#a2347ba360de19e33d0ffd590fddf7755cbf2e64" 2172 | 2173 | isobject@^2.0.0: 2174 | version "2.1.0" 2175 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2176 | dependencies: 2177 | isarray "1.0.0" 2178 | 2179 | isstream@~0.1.2: 2180 | version "0.1.2" 2181 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2182 | 2183 | istanbul-lib-coverage@^1.1.0: 2184 | version "1.1.0" 2185 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.0.tgz#caca19decaef3525b5d6331d701f3f3b7ad48528" 2186 | 2187 | istanbul-lib-hook@^1.0.6: 2188 | version "1.0.6" 2189 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.6.tgz#c0866d1e81cf2d5319249510131fc16dee49231f" 2190 | dependencies: 2191 | append-transform "^0.4.0" 2192 | 2193 | istanbul-lib-instrument@^1.7.1: 2194 | version "1.7.1" 2195 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.1.tgz#169e31bc62c778851a99439dd99c3cc12184d360" 2196 | dependencies: 2197 | babel-generator "^6.18.0" 2198 | babel-template "^6.16.0" 2199 | babel-traverse "^6.18.0" 2200 | babel-types "^6.18.0" 2201 | babylon "^6.13.0" 2202 | istanbul-lib-coverage "^1.1.0" 2203 | semver "^5.3.0" 2204 | 2205 | istanbul-lib-report@^1.1.0: 2206 | version "1.1.0" 2207 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.0.tgz#444c4ecca9afa93cf584f56b10f195bf768c0770" 2208 | dependencies: 2209 | istanbul-lib-coverage "^1.1.0" 2210 | mkdirp "^0.5.1" 2211 | path-parse "^1.0.5" 2212 | supports-color "^3.1.2" 2213 | 2214 | istanbul-lib-source-maps@^1.2.0: 2215 | version "1.2.0" 2216 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.0.tgz#8c7706d497e26feeb6af3e0c28fd5b0669598d0e" 2217 | dependencies: 2218 | debug "^2.6.3" 2219 | istanbul-lib-coverage "^1.1.0" 2220 | mkdirp "^0.5.1" 2221 | rimraf "^2.6.1" 2222 | source-map "^0.5.3" 2223 | 2224 | istanbul-reports@^1.1.0: 2225 | version "1.1.0" 2226 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.0.tgz#1ef3b795889219cfb5fad16365f6ce108d5f8c66" 2227 | dependencies: 2228 | handlebars "^4.0.3" 2229 | 2230 | jest-diff@19.0.0, jest-diff@^19.0.0: 2231 | version "19.0.0" 2232 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-19.0.0.tgz#d1563cfc56c8b60232988fbc05d4d16ed90f063c" 2233 | dependencies: 2234 | chalk "^1.1.3" 2235 | diff "^3.0.0" 2236 | jest-matcher-utils "^19.0.0" 2237 | pretty-format "^19.0.0" 2238 | 2239 | jest-file-exists@^19.0.0: 2240 | version "19.0.0" 2241 | resolved "https://registry.yarnpkg.com/jest-file-exists/-/jest-file-exists-19.0.0.tgz#cca2e587a11ec92e24cfeab3f8a94d657f3fceb8" 2242 | 2243 | jest-matcher-utils@^19.0.0: 2244 | version "19.0.0" 2245 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-19.0.0.tgz#5ecd9b63565d2b001f61fbf7ec4c7f537964564d" 2246 | dependencies: 2247 | chalk "^1.1.3" 2248 | pretty-format "^19.0.0" 2249 | 2250 | jest-message-util@^19.0.0: 2251 | version "19.0.0" 2252 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-19.0.0.tgz#721796b89c0e4d761606f9ba8cb828a3b6246416" 2253 | dependencies: 2254 | chalk "^1.1.1" 2255 | micromatch "^2.3.11" 2256 | 2257 | jest-mock@^19.0.0: 2258 | version "19.0.0" 2259 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-19.0.0.tgz#67038641e9607ab2ce08ec4a8cb83aabbc899d01" 2260 | 2261 | jest-snapshot@19.0.2: 2262 | version "19.0.2" 2263 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-19.0.2.tgz#9c1b216214f7187c38bfd5c70b1efab16b0ff50b" 2264 | dependencies: 2265 | chalk "^1.1.3" 2266 | jest-diff "^19.0.0" 2267 | jest-file-exists "^19.0.0" 2268 | jest-matcher-utils "^19.0.0" 2269 | jest-util "^19.0.2" 2270 | natural-compare "^1.4.0" 2271 | pretty-format "^19.0.0" 2272 | 2273 | jest-util@^19.0.2: 2274 | version "19.0.2" 2275 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-19.0.2.tgz#e0a0232a2ab9e6b2b53668bdb3534c2b5977ed41" 2276 | dependencies: 2277 | chalk "^1.1.1" 2278 | graceful-fs "^4.1.6" 2279 | jest-file-exists "^19.0.0" 2280 | jest-message-util "^19.0.0" 2281 | jest-mock "^19.0.0" 2282 | jest-validate "^19.0.2" 2283 | leven "^2.0.0" 2284 | mkdirp "^0.5.1" 2285 | 2286 | jest-validate@^19.0.2: 2287 | version "19.0.2" 2288 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-19.0.2.tgz#dc534df5f1278d5b63df32b14241d4dbf7244c0c" 2289 | dependencies: 2290 | chalk "^1.1.1" 2291 | jest-matcher-utils "^19.0.0" 2292 | leven "^2.0.0" 2293 | pretty-format "^19.0.0" 2294 | 2295 | jodid25519@^1.0.0: 2296 | version "1.0.2" 2297 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 2298 | dependencies: 2299 | jsbn "~0.1.0" 2300 | 2301 | js-tokens@^3.0.0: 2302 | version "3.0.1" 2303 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 2304 | 2305 | js-yaml@3.6.1: 2306 | version "3.6.1" 2307 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.6.1.tgz#6e5fe67d8b205ce4d22fad05b7781e8dadcc4b30" 2308 | dependencies: 2309 | argparse "^1.0.7" 2310 | esprima "^2.6.0" 2311 | 2312 | js-yaml@^3.5.1, js-yaml@^3.8.2: 2313 | version "3.8.4" 2314 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.4.tgz#520b4564f86573ba96662af85a8cafa7b4b5a6f6" 2315 | dependencies: 2316 | argparse "^1.0.7" 2317 | esprima "^3.1.1" 2318 | 2319 | jsbn@~0.1.0: 2320 | version "0.1.1" 2321 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2322 | 2323 | jsesc@^1.3.0: 2324 | version "1.3.0" 2325 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2326 | 2327 | jsesc@~0.5.0: 2328 | version "0.5.0" 2329 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2330 | 2331 | json-schema@0.2.3: 2332 | version "0.2.3" 2333 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2334 | 2335 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 2336 | version "1.0.1" 2337 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2338 | dependencies: 2339 | jsonify "~0.0.0" 2340 | 2341 | json-stringify-safe@~5.0.0, json-stringify-safe@~5.0.1: 2342 | version "5.0.1" 2343 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2344 | 2345 | json5@^0.5.0, json5@^0.5.1: 2346 | version "0.5.1" 2347 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2348 | 2349 | jsonify@~0.0.0: 2350 | version "0.0.0" 2351 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2352 | 2353 | jsonist@~1.3.0: 2354 | version "1.3.0" 2355 | resolved "https://registry.yarnpkg.com/jsonist/-/jsonist-1.3.0.tgz#c0c74b95ef1c952038619b29efa520b1cc987556" 2356 | dependencies: 2357 | bl "~1.0.0" 2358 | hyperquest "~1.2.0" 2359 | json-stringify-safe "~5.0.0" 2360 | xtend "~4.0.0" 2361 | 2362 | jsonpointer@^4.0.0: 2363 | version "4.0.1" 2364 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 2365 | 2366 | jsprim@^1.2.2: 2367 | version "1.4.0" 2368 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 2369 | dependencies: 2370 | assert-plus "1.0.0" 2371 | extsprintf "1.0.2" 2372 | json-schema "0.2.3" 2373 | verror "1.3.6" 2374 | 2375 | kind-of@^3.0.2: 2376 | version "3.2.0" 2377 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.0.tgz#b58abe4d5c044ad33726a8c1525b48cf891bff07" 2378 | dependencies: 2379 | is-buffer "^1.1.5" 2380 | 2381 | last-line-stream@^1.0.0: 2382 | version "1.0.0" 2383 | resolved "https://registry.yarnpkg.com/last-line-stream/-/last-line-stream-1.0.0.tgz#d1b64d69f86ff24af2d04883a2ceee14520a5600" 2384 | dependencies: 2385 | through2 "^2.0.0" 2386 | 2387 | latest-version@^3.0.0: 2388 | version "3.1.0" 2389 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15" 2390 | dependencies: 2391 | package-json "^4.0.0" 2392 | 2393 | lazy-cache@^1.0.3: 2394 | version "1.0.4" 2395 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2396 | 2397 | lazy-req@^2.0.0: 2398 | version "2.0.0" 2399 | resolved "https://registry.yarnpkg.com/lazy-req/-/lazy-req-2.0.0.tgz#c9450a363ecdda2e6f0c70132ad4f37f8f06f2b4" 2400 | 2401 | lcid@^1.0.0: 2402 | version "1.0.0" 2403 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2404 | dependencies: 2405 | invert-kv "^1.0.0" 2406 | 2407 | lcov-parse@0.0.10: 2408 | version "0.0.10" 2409 | resolved "https://registry.yarnpkg.com/lcov-parse/-/lcov-parse-0.0.10.tgz#1b0b8ff9ac9c7889250582b70b71315d9da6d9a3" 2410 | 2411 | leven@^2.0.0: 2412 | version "2.1.0" 2413 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 2414 | 2415 | levn@^0.3.0, levn@~0.3.0: 2416 | version "0.3.0" 2417 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2418 | dependencies: 2419 | prelude-ls "~1.1.2" 2420 | type-check "~0.3.2" 2421 | 2422 | load-json-file@^1.0.0: 2423 | version "1.1.0" 2424 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2425 | dependencies: 2426 | graceful-fs "^4.1.2" 2427 | parse-json "^2.2.0" 2428 | pify "^2.0.0" 2429 | pinkie-promise "^2.0.0" 2430 | strip-bom "^2.0.0" 2431 | 2432 | load-json-file@^2.0.0: 2433 | version "2.0.0" 2434 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2435 | dependencies: 2436 | graceful-fs "^4.1.2" 2437 | parse-json "^2.2.0" 2438 | pify "^2.0.0" 2439 | strip-bom "^3.0.0" 2440 | 2441 | locate-path@^2.0.0: 2442 | version "2.0.0" 2443 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2444 | dependencies: 2445 | p-locate "^2.0.0" 2446 | path-exists "^3.0.0" 2447 | 2448 | lodash.clonedeep@^4.5.0: 2449 | version "4.5.0" 2450 | resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" 2451 | 2452 | lodash.clonedeepwith@^4.5.0: 2453 | version "4.5.0" 2454 | resolved "https://registry.yarnpkg.com/lodash.clonedeepwith/-/lodash.clonedeepwith-4.5.0.tgz#6ee30573a03a1a60d670a62ef33c10cf1afdbdd4" 2455 | 2456 | lodash.debounce@^4.0.3: 2457 | version "4.0.8" 2458 | resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" 2459 | 2460 | lodash.difference@^4.3.0: 2461 | version "4.5.0" 2462 | resolved "https://registry.yarnpkg.com/lodash.difference/-/lodash.difference-4.5.0.tgz#9ccb4e505d486b91651345772885a2df27fd017c" 2463 | 2464 | lodash.flatten@^4.2.0: 2465 | version "4.4.0" 2466 | resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f" 2467 | 2468 | lodash.flattendeep@^4.4.0: 2469 | version "4.4.0" 2470 | resolved "https://registry.yarnpkg.com/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz#fb030917f86a3134e5bc9bec0d69e0013ddfedb2" 2471 | 2472 | lodash.isequal@^4.5.0: 2473 | version "4.5.0" 2474 | resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" 2475 | 2476 | lodash.merge@^4.6.0: 2477 | version "4.6.0" 2478 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.0.tgz#69884ba144ac33fe699737a6086deffadd0f89c5" 2479 | 2480 | lodash.pad@^4.1.0: 2481 | version "4.5.1" 2482 | resolved "https://registry.yarnpkg.com/lodash.pad/-/lodash.pad-4.5.1.tgz#4330949a833a7c8da22cc20f6a26c4d59debba70" 2483 | 2484 | lodash.padend@^4.1.0: 2485 | version "4.6.1" 2486 | resolved "https://registry.yarnpkg.com/lodash.padend/-/lodash.padend-4.6.1.tgz#53ccba047d06e158d311f45da625f4e49e6f166e" 2487 | 2488 | lodash.padstart@^4.1.0: 2489 | version "4.6.1" 2490 | resolved "https://registry.yarnpkg.com/lodash.padstart/-/lodash.padstart-4.6.1.tgz#d2e3eebff0d9d39ad50f5cbd1b52a7bce6bb611b" 2491 | 2492 | lodash@^4.0.0, lodash@^4.2.0, lodash@^4.3.0: 2493 | version "4.17.4" 2494 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2495 | 2496 | log-driver@1.2.5: 2497 | version "1.2.5" 2498 | resolved "https://registry.yarnpkg.com/log-driver/-/log-driver-1.2.5.tgz#7ae4ec257302fd790d557cb10c97100d857b0056" 2499 | 2500 | longest@^1.0.1: 2501 | version "1.0.1" 2502 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2503 | 2504 | loose-envify@^1.0.0: 2505 | version "1.3.1" 2506 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2507 | dependencies: 2508 | js-tokens "^3.0.0" 2509 | 2510 | loud-rejection@^1.0.0, loud-rejection@^1.2.0: 2511 | version "1.6.0" 2512 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 2513 | dependencies: 2514 | currently-unhandled "^0.4.1" 2515 | signal-exit "^3.0.0" 2516 | 2517 | lowercase-keys@^1.0.0: 2518 | version "1.0.0" 2519 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 2520 | 2521 | lru-cache@^4.0.0, lru-cache@^4.0.1: 2522 | version "4.0.2" 2523 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.2.tgz#1d17679c069cda5d040991a09dbc2c0db377e55e" 2524 | dependencies: 2525 | pseudomap "^1.0.1" 2526 | yallist "^2.0.0" 2527 | 2528 | make-dir@^1.0.0: 2529 | version "1.0.0" 2530 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.0.0.tgz#97a011751e91dd87cfadef58832ebb04936de978" 2531 | dependencies: 2532 | pify "^2.3.0" 2533 | 2534 | map-obj@^1.0.0, map-obj@^1.0.1: 2535 | version "1.0.1" 2536 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 2537 | 2538 | matcher@^0.1.1: 2539 | version "0.1.2" 2540 | resolved "https://registry.yarnpkg.com/matcher/-/matcher-0.1.2.tgz#ef20cbde64c24c50cc61af5b83ee0b1b8ff00101" 2541 | dependencies: 2542 | escape-string-regexp "^1.0.4" 2543 | 2544 | md5-hex@^1.2.0, md5-hex@^1.3.0: 2545 | version "1.3.0" 2546 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-1.3.0.tgz#d2c4afe983c4370662179b8cad145219135046c4" 2547 | dependencies: 2548 | md5-o-matic "^0.1.1" 2549 | 2550 | md5-hex@^2.0.0: 2551 | version "2.0.0" 2552 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-2.0.0.tgz#d0588e9f1c74954492ecd24ac0ac6ce997d92e33" 2553 | dependencies: 2554 | md5-o-matic "^0.1.1" 2555 | 2556 | md5-o-matic@^0.1.1: 2557 | version "0.1.1" 2558 | resolved "https://registry.yarnpkg.com/md5-o-matic/-/md5-o-matic-0.1.1.tgz#822bccd65e117c514fab176b25945d54100a03c3" 2559 | 2560 | meow@^3.7.0: 2561 | version "3.7.0" 2562 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 2563 | dependencies: 2564 | camelcase-keys "^2.0.0" 2565 | decamelize "^1.1.2" 2566 | loud-rejection "^1.0.0" 2567 | map-obj "^1.0.1" 2568 | minimist "^1.1.3" 2569 | normalize-package-data "^2.3.4" 2570 | object-assign "^4.0.1" 2571 | read-pkg-up "^1.0.1" 2572 | redent "^1.0.0" 2573 | trim-newlines "^1.0.0" 2574 | 2575 | merge-source-map@^1.0.2: 2576 | version "1.0.3" 2577 | resolved "https://registry.yarnpkg.com/merge-source-map/-/merge-source-map-1.0.3.tgz#da1415f2722a5119db07b14c4f973410863a2abf" 2578 | dependencies: 2579 | source-map "^0.5.3" 2580 | 2581 | micromatch@^2.1.5, micromatch@^2.3.11: 2582 | version "2.3.11" 2583 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2584 | dependencies: 2585 | arr-diff "^2.0.0" 2586 | array-unique "^0.2.1" 2587 | braces "^1.8.2" 2588 | expand-brackets "^0.1.4" 2589 | extglob "^0.3.1" 2590 | filename-regex "^2.0.0" 2591 | is-extglob "^1.0.0" 2592 | is-glob "^2.0.1" 2593 | kind-of "^3.0.2" 2594 | normalize-path "^2.0.1" 2595 | object.omit "^2.0.0" 2596 | parse-glob "^3.0.4" 2597 | regex-cache "^0.4.2" 2598 | 2599 | mime-db@~1.27.0: 2600 | version "1.27.0" 2601 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 2602 | 2603 | mime-types@^2.1.12, mime-types@~2.1.7: 2604 | version "2.1.15" 2605 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 2606 | dependencies: 2607 | mime-db "~1.27.0" 2608 | 2609 | mimic-fn@^1.0.0: 2610 | version "1.1.0" 2611 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 2612 | 2613 | minimatch@3, minimatch@^3.0.0, minimatch@^3.0.2: 2614 | version "3.0.4" 2615 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2616 | dependencies: 2617 | brace-expansion "^1.1.7" 2618 | 2619 | minimatch@^2.0.1: 2620 | version "2.0.10" 2621 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-2.0.10.tgz#8d087c39c6b38c001b97fca7ce6d0e1e80afbac7" 2622 | dependencies: 2623 | brace-expansion "^1.0.0" 2624 | 2625 | minimist@0.0.8, minimist@~0.0.1: 2626 | version "0.0.8" 2627 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2628 | 2629 | minimist@1.2.0, minimist@^1.1.2, minimist@^1.1.3, minimist@^1.2.0: 2630 | version "1.2.0" 2631 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2632 | 2633 | "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1: 2634 | version "0.5.1" 2635 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2636 | dependencies: 2637 | minimist "0.0.8" 2638 | 2639 | ms@0.7.3, ms@^0.7.1: 2640 | version "0.7.3" 2641 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.3.tgz#708155a5e44e33f5fd0fc53e81d0d40a91be1fff" 2642 | 2643 | multimatch@^2.1.0: 2644 | version "2.1.0" 2645 | resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b" 2646 | dependencies: 2647 | array-differ "^1.0.0" 2648 | array-union "^1.0.1" 2649 | arrify "^1.0.0" 2650 | minimatch "^3.0.0" 2651 | 2652 | mute-stream@0.0.5: 2653 | version "0.0.5" 2654 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 2655 | 2656 | nan@^2.3.0, nan@^2.3.3, nan@^2.4.0: 2657 | version "2.6.2" 2658 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45" 2659 | 2660 | natural-compare@^1.4.0: 2661 | version "1.4.0" 2662 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2663 | 2664 | node-gyp@^3.0.3, node-gyp@^3.3.1: 2665 | version "3.6.1" 2666 | resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-3.6.1.tgz#19561067ff185464aded478212681f47fd578cbc" 2667 | dependencies: 2668 | fstream "^1.0.0" 2669 | glob "^7.0.3" 2670 | graceful-fs "^4.1.2" 2671 | minimatch "^3.0.2" 2672 | mkdirp "^0.5.0" 2673 | nopt "2 || 3" 2674 | npmlog "0 || 1 || 2 || 3 || 4" 2675 | osenv "0" 2676 | request "2" 2677 | rimraf "2" 2678 | semver "~5.3.0" 2679 | tar "^2.0.0" 2680 | which "1" 2681 | 2682 | node-ninja@^1.0.1: 2683 | version "1.0.2" 2684 | resolved "https://registry.yarnpkg.com/node-ninja/-/node-ninja-1.0.2.tgz#20a09e57b92e2df591993d4bf098ac3e727062b6" 2685 | dependencies: 2686 | fstream "^1.0.0" 2687 | glob "3 || 4 || 5 || 6 || 7" 2688 | graceful-fs "^4.1.2" 2689 | minimatch "3" 2690 | mkdirp "^0.5.0" 2691 | nopt "2 || 3" 2692 | npmlog "0 || 1 || 2" 2693 | osenv "0" 2694 | path-array "^1.0.0" 2695 | request "2" 2696 | rimraf "2" 2697 | semver "2.x || 3.x || 4 || 5" 2698 | tar "^2.0.0" 2699 | which "1" 2700 | 2701 | node-pre-gyp@^0.6.29: 2702 | version "0.6.34" 2703 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.34.tgz#94ad1c798a11d7fc67381b50d47f8cc18d9799f7" 2704 | dependencies: 2705 | mkdirp "^0.5.1" 2706 | nopt "^4.0.1" 2707 | npmlog "^4.0.2" 2708 | rc "^1.1.7" 2709 | request "^2.81.0" 2710 | rimraf "^2.6.1" 2711 | semver "^5.3.0" 2712 | tar "^2.2.1" 2713 | tar-pack "^3.4.0" 2714 | 2715 | noop-logger@^0.1.0: 2716 | version "0.1.1" 2717 | resolved "https://registry.yarnpkg.com/noop-logger/-/noop-logger-0.1.1.tgz#94a2b1633c4f1317553007d8966fd0e841b6a4c2" 2718 | 2719 | "nopt@2 || 3": 2720 | version "3.0.6" 2721 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 2722 | dependencies: 2723 | abbrev "1" 2724 | 2725 | nopt@^4.0.1: 2726 | version "4.0.1" 2727 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2728 | dependencies: 2729 | abbrev "1" 2730 | osenv "^0.1.4" 2731 | 2732 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: 2733 | version "2.3.8" 2734 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" 2735 | dependencies: 2736 | hosted-git-info "^2.1.4" 2737 | is-builtin-module "^1.0.0" 2738 | semver "2 || 3 || 4 || 5" 2739 | validate-npm-package-license "^3.0.1" 2740 | 2741 | normalize-path@^2.0.1: 2742 | version "2.1.1" 2743 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2744 | dependencies: 2745 | remove-trailing-separator "^1.0.1" 2746 | 2747 | npm-run-path@^1.0.0: 2748 | version "1.0.0" 2749 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-1.0.0.tgz#f5c32bf595fe81ae927daec52e82f8b000ac3c8f" 2750 | dependencies: 2751 | path-key "^1.0.0" 2752 | 2753 | npm-run-path@^2.0.0: 2754 | version "2.0.2" 2755 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2756 | dependencies: 2757 | path-key "^2.0.0" 2758 | 2759 | "npmlog@0 || 1 || 2", npmlog@^2.0.0: 2760 | version "2.0.4" 2761 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-2.0.4.tgz#98b52530f2514ca90d09ec5b22c8846722375692" 2762 | dependencies: 2763 | ansi "~0.3.1" 2764 | are-we-there-yet "~1.1.2" 2765 | gauge "~1.2.5" 2766 | 2767 | "npmlog@0 || 1 || 2 || 3 || 4", npmlog@^4.0.2: 2768 | version "4.1.0" 2769 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.0.tgz#dc59bee85f64f00ed424efb2af0783df25d1c0b5" 2770 | dependencies: 2771 | are-we-there-yet "~1.1.2" 2772 | console-control-strings "~1.1.0" 2773 | gauge "~2.7.3" 2774 | set-blocking "~2.0.0" 2775 | 2776 | number-is-nan@^1.0.0: 2777 | version "1.0.1" 2778 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2779 | 2780 | nyc@^10.3.2: 2781 | version "10.3.2" 2782 | resolved "https://registry.yarnpkg.com/nyc/-/nyc-10.3.2.tgz#f27f4d91f2a9db36c24f574ff5c6efff0233de46" 2783 | dependencies: 2784 | archy "^1.0.0" 2785 | arrify "^1.0.1" 2786 | caching-transform "^1.0.0" 2787 | convert-source-map "^1.3.0" 2788 | debug-log "^1.0.1" 2789 | default-require-extensions "^1.0.0" 2790 | find-cache-dir "^0.1.1" 2791 | find-up "^1.1.2" 2792 | foreground-child "^1.5.3" 2793 | glob "^7.0.6" 2794 | istanbul-lib-coverage "^1.1.0" 2795 | istanbul-lib-hook "^1.0.6" 2796 | istanbul-lib-instrument "^1.7.1" 2797 | istanbul-lib-report "^1.1.0" 2798 | istanbul-lib-source-maps "^1.2.0" 2799 | istanbul-reports "^1.1.0" 2800 | md5-hex "^1.2.0" 2801 | merge-source-map "^1.0.2" 2802 | micromatch "^2.3.11" 2803 | mkdirp "^0.5.0" 2804 | resolve-from "^2.0.0" 2805 | rimraf "^2.5.4" 2806 | signal-exit "^3.0.1" 2807 | spawn-wrap "1.2.4" 2808 | test-exclude "^4.1.0" 2809 | yargs "^7.1.0" 2810 | yargs-parser "^5.0.0" 2811 | 2812 | oauth-sign@~0.8.1: 2813 | version "0.8.2" 2814 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2815 | 2816 | object-assign@^4.0.1, object-assign@^4.1.0: 2817 | version "4.1.1" 2818 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2819 | 2820 | object-keys@~0.4.0: 2821 | version "0.4.0" 2822 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-0.4.0.tgz#28a6aae7428dd2c3a92f3d95f21335dd204e0336" 2823 | 2824 | object.omit@^2.0.0: 2825 | version "2.0.1" 2826 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2827 | dependencies: 2828 | for-own "^0.1.4" 2829 | is-extendable "^0.1.1" 2830 | 2831 | observable-to-promise@^0.5.0: 2832 | version "0.5.0" 2833 | resolved "https://registry.yarnpkg.com/observable-to-promise/-/observable-to-promise-0.5.0.tgz#c828f0f0dc47e9f86af8a4977c5d55076ce7a91f" 2834 | dependencies: 2835 | is-observable "^0.2.0" 2836 | symbol-observable "^1.0.4" 2837 | 2838 | once@^1.3.0, once@^1.3.1, once@^1.3.3, once@^1.4.0: 2839 | version "1.4.0" 2840 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2841 | dependencies: 2842 | wrappy "1" 2843 | 2844 | onetime@^1.0.0: 2845 | version "1.1.0" 2846 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2847 | 2848 | onetime@^2.0.0: 2849 | version "2.0.1" 2850 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2851 | dependencies: 2852 | mimic-fn "^1.0.0" 2853 | 2854 | optimist@^0.6.1: 2855 | version "0.6.1" 2856 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2857 | dependencies: 2858 | minimist "~0.0.1" 2859 | wordwrap "~0.0.2" 2860 | 2861 | option-chain@^0.1.0: 2862 | version "0.1.1" 2863 | resolved "https://registry.yarnpkg.com/option-chain/-/option-chain-0.1.1.tgz#e9b811e006f1c0f54802f28295bfc8970f8dcfbd" 2864 | dependencies: 2865 | object-assign "^4.0.1" 2866 | 2867 | optionator@^0.8.2: 2868 | version "0.8.2" 2869 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2870 | dependencies: 2871 | deep-is "~0.1.3" 2872 | fast-levenshtein "~2.0.4" 2873 | levn "~0.3.0" 2874 | prelude-ls "~1.1.2" 2875 | type-check "~0.3.2" 2876 | wordwrap "~1.0.0" 2877 | 2878 | ordered-read-streams@^0.1.0: 2879 | version "0.1.0" 2880 | resolved "https://registry.yarnpkg.com/ordered-read-streams/-/ordered-read-streams-0.1.0.tgz#fd565a9af8eb4473ba69b6ed8a34352cb552f126" 2881 | 2882 | os-homedir@^1.0.0, os-homedir@^1.0.1: 2883 | version "1.0.2" 2884 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2885 | 2886 | os-locale@^1.4.0: 2887 | version "1.4.0" 2888 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2889 | dependencies: 2890 | lcid "^1.0.0" 2891 | 2892 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.1: 2893 | version "1.0.2" 2894 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2895 | 2896 | osenv@0, osenv@^0.1.4: 2897 | version "0.1.4" 2898 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2899 | dependencies: 2900 | os-homedir "^1.0.0" 2901 | os-tmpdir "^1.0.0" 2902 | 2903 | p-finally@^1.0.0: 2904 | version "1.0.0" 2905 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2906 | 2907 | p-limit@^1.1.0: 2908 | version "1.1.0" 2909 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2910 | 2911 | p-locate@^2.0.0: 2912 | version "2.0.0" 2913 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2914 | dependencies: 2915 | p-limit "^1.1.0" 2916 | 2917 | package-hash@^1.2.0: 2918 | version "1.2.0" 2919 | resolved "https://registry.yarnpkg.com/package-hash/-/package-hash-1.2.0.tgz#003e56cd57b736a6ed6114cc2b81542672770e44" 2920 | dependencies: 2921 | md5-hex "^1.3.0" 2922 | 2923 | package-hash@^2.0.0: 2924 | version "2.0.0" 2925 | resolved "https://registry.yarnpkg.com/package-hash/-/package-hash-2.0.0.tgz#78ae326c89e05a4d813b68601977af05c00d2a0d" 2926 | dependencies: 2927 | graceful-fs "^4.1.11" 2928 | lodash.flattendeep "^4.4.0" 2929 | md5-hex "^2.0.0" 2930 | release-zalgo "^1.0.0" 2931 | 2932 | package-json@^4.0.0: 2933 | version "4.0.1" 2934 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed" 2935 | dependencies: 2936 | got "^6.7.1" 2937 | registry-auth-token "^3.0.1" 2938 | registry-url "^3.0.3" 2939 | semver "^5.1.0" 2940 | 2941 | parse-css-font@^2.0.2: 2942 | version "2.0.2" 2943 | resolved "https://registry.yarnpkg.com/parse-css-font/-/parse-css-font-2.0.2.tgz#7b60b060705a25a9b90b7f0ed493e5823248a652" 2944 | dependencies: 2945 | css-font-size-keywords "^1.0.0" 2946 | css-font-stretch-keywords "^1.0.1" 2947 | css-font-style-keywords "^1.0.1" 2948 | css-font-weight-keywords "^1.0.0" 2949 | css-global-keywords "^1.0.1" 2950 | css-list-helpers "^1.0.1" 2951 | css-system-font-keywords "^1.0.0" 2952 | tcomb "^2.5.0" 2953 | unquote "^1.1.0" 2954 | 2955 | parse-glob@^3.0.4: 2956 | version "3.0.4" 2957 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2958 | dependencies: 2959 | glob-base "^0.3.0" 2960 | is-dotfile "^1.0.0" 2961 | is-extglob "^1.0.0" 2962 | is-glob "^2.0.0" 2963 | 2964 | parse-json@^2.2.0: 2965 | version "2.2.0" 2966 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2967 | dependencies: 2968 | error-ex "^1.2.0" 2969 | 2970 | parse-ms@^0.1.0: 2971 | version "0.1.2" 2972 | resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-0.1.2.tgz#dd3fa25ed6c2efc7bdde12ad9b46c163aa29224e" 2973 | 2974 | parse-ms@^1.0.0: 2975 | version "1.0.1" 2976 | resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-1.0.1.tgz#56346d4749d78f23430ca0c713850aef91aa361d" 2977 | 2978 | path-array@^1.0.0: 2979 | version "1.0.1" 2980 | resolved "https://registry.yarnpkg.com/path-array/-/path-array-1.0.1.tgz#7e2f0f35f07a2015122b868b7eac0eb2c4fec271" 2981 | dependencies: 2982 | array-index "^1.0.0" 2983 | 2984 | path-exists@^2.0.0: 2985 | version "2.1.0" 2986 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2987 | dependencies: 2988 | pinkie-promise "^2.0.0" 2989 | 2990 | path-exists@^3.0.0: 2991 | version "3.0.0" 2992 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2993 | 2994 | path-is-absolute@^1.0.0: 2995 | version "1.0.1" 2996 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2997 | 2998 | path-is-inside@^1.0.1: 2999 | version "1.0.2" 3000 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 3001 | 3002 | path-key@^1.0.0: 3003 | version "1.0.0" 3004 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-1.0.0.tgz#5d53d578019646c0d68800db4e146e6bdc2ac7af" 3005 | 3006 | path-key@^2.0.0: 3007 | version "2.0.1" 3008 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 3009 | 3010 | path-parse@^1.0.5: 3011 | version "1.0.5" 3012 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 3013 | 3014 | path-type@^1.0.0: 3015 | version "1.1.0" 3016 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 3017 | dependencies: 3018 | graceful-fs "^4.1.2" 3019 | pify "^2.0.0" 3020 | pinkie-promise "^2.0.0" 3021 | 3022 | path-type@^2.0.0: 3023 | version "2.0.0" 3024 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 3025 | dependencies: 3026 | pify "^2.0.0" 3027 | 3028 | performance-now@^0.2.0: 3029 | version "0.2.0" 3030 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 3031 | 3032 | pify@^2.0.0, pify@^2.3.0: 3033 | version "2.3.0" 3034 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 3035 | 3036 | pinkie-promise@^1.0.0: 3037 | version "1.0.0" 3038 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-1.0.0.tgz#d1da67f5482563bb7cf57f286ae2822ecfbf3670" 3039 | dependencies: 3040 | pinkie "^1.0.0" 3041 | 3042 | pinkie-promise@^2.0.0: 3043 | version "2.0.1" 3044 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 3045 | dependencies: 3046 | pinkie "^2.0.0" 3047 | 3048 | pinkie@^1.0.0: 3049 | version "1.0.0" 3050 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-1.0.0.tgz#5a47f28ba1015d0201bda7bf0f358e47bec8c7e4" 3051 | 3052 | pinkie@^2.0.0: 3053 | version "2.0.4" 3054 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 3055 | 3056 | pixelmatch@^4.0.2: 3057 | version "4.0.2" 3058 | resolved "https://registry.yarnpkg.com/pixelmatch/-/pixelmatch-4.0.2.tgz#8f47dcec5011b477b67db03c243bc1f3085e8854" 3059 | dependencies: 3060 | pngjs "^3.0.0" 3061 | 3062 | pkg-conf@^2.0.0: 3063 | version "2.0.0" 3064 | resolved "https://registry.yarnpkg.com/pkg-conf/-/pkg-conf-2.0.0.tgz#071c87650403bccfb9c627f58751bfe47c067279" 3065 | dependencies: 3066 | find-up "^2.0.0" 3067 | load-json-file "^2.0.0" 3068 | 3069 | pkg-dir@^1.0.0: 3070 | version "1.0.0" 3071 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 3072 | dependencies: 3073 | find-up "^1.0.0" 3074 | 3075 | plur@^1.0.0: 3076 | version "1.0.0" 3077 | resolved "https://registry.yarnpkg.com/plur/-/plur-1.0.0.tgz#db85c6814f5e5e5a3b49efc28d604fec62975156" 3078 | 3079 | plur@^2.0.0: 3080 | version "2.1.2" 3081 | resolved "https://registry.yarnpkg.com/plur/-/plur-2.1.2.tgz#7482452c1a0f508e3e344eaec312c91c29dc655a" 3082 | dependencies: 3083 | irregular-plurals "^1.0.0" 3084 | 3085 | pluralize@^1.2.1: 3086 | version "1.2.1" 3087 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 3088 | 3089 | png-file-stream@^1.0.0: 3090 | version "1.0.0" 3091 | resolved "https://registry.yarnpkg.com/png-file-stream/-/png-file-stream-1.0.0.tgz#e083d0fe56e097a5cbd0d341a1387379052cad35" 3092 | dependencies: 3093 | glob-stream "~3.1.9" 3094 | png-js "~0.1.1" 3095 | through2 "~0.2.3" 3096 | 3097 | png-js@~0.1.1: 3098 | version "0.1.1" 3099 | resolved "https://registry.yarnpkg.com/png-js/-/png-js-0.1.1.tgz#1cc7c212303acabe74263ec3ac78009580242d93" 3100 | 3101 | pngjs@^3.0.0, pngjs@^3.2.0: 3102 | version "3.2.0" 3103 | resolved "https://registry.yarnpkg.com/pngjs/-/pngjs-3.2.0.tgz#fc9fcea1a8a375da54a51148019d5abd41dbabde" 3104 | 3105 | prebuild@^4.1.2: 3106 | version "4.5.0" 3107 | resolved "https://registry.yarnpkg.com/prebuild/-/prebuild-4.5.0.tgz#2aaa0df2063bff814a803bd4dc94ff9b64e5df00" 3108 | dependencies: 3109 | async "^1.4.0" 3110 | execspawn "^1.0.1" 3111 | expand-template "^1.0.0" 3112 | ghreleases "^1.0.2" 3113 | github-from-package "0.0.0" 3114 | minimist "^1.1.2" 3115 | mkdirp "^0.5.1" 3116 | node-gyp "^3.0.3" 3117 | node-ninja "^1.0.1" 3118 | noop-logger "^0.1.0" 3119 | npmlog "^2.0.0" 3120 | os-homedir "^1.0.1" 3121 | pump "^1.0.0" 3122 | rc "^1.0.3" 3123 | simple-get "^1.4.2" 3124 | tar-fs "^1.7.0" 3125 | tar-stream "^1.2.1" 3126 | xtend "^4.0.1" 3127 | 3128 | prelude-ls@~1.1.2: 3129 | version "1.1.2" 3130 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 3131 | 3132 | prepend-http@^1.0.1: 3133 | version "1.0.4" 3134 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 3135 | 3136 | preserve@^0.2.0: 3137 | version "0.2.0" 3138 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 3139 | 3140 | pretty-format@^19.0.0: 3141 | version "19.0.0" 3142 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-19.0.0.tgz#56530d32acb98a3fa4851c4e2b9d37b420684c84" 3143 | dependencies: 3144 | ansi-styles "^3.0.0" 3145 | 3146 | pretty-ms@^0.2.1: 3147 | version "0.2.2" 3148 | resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-0.2.2.tgz#da879a682ff33a37011046f13d627f67c73b84f6" 3149 | dependencies: 3150 | parse-ms "^0.1.0" 3151 | 3152 | pretty-ms@^2.0.0: 3153 | version "2.1.0" 3154 | resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-2.1.0.tgz#4257c256df3fb0b451d6affaab021884126981dc" 3155 | dependencies: 3156 | is-finite "^1.0.1" 3157 | parse-ms "^1.0.0" 3158 | plur "^1.0.0" 3159 | 3160 | private@^0.1.6: 3161 | version "0.1.7" 3162 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 3163 | 3164 | process-nextick-args@~1.0.6: 3165 | version "1.0.7" 3166 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 3167 | 3168 | progress@^1.1.8: 3169 | version "1.1.8" 3170 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 3171 | 3172 | pseudomap@^1.0.1: 3173 | version "1.0.2" 3174 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 3175 | 3176 | pump@^1.0.0: 3177 | version "1.0.2" 3178 | resolved "https://registry.yarnpkg.com/pump/-/pump-1.0.2.tgz#3b3ee6512f94f0e575538c17995f9f16990a5d51" 3179 | dependencies: 3180 | end-of-stream "^1.1.0" 3181 | once "^1.3.1" 3182 | 3183 | punycode@^1.4.1: 3184 | version "1.4.1" 3185 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 3186 | 3187 | qs@~6.3.0: 3188 | version "6.3.2" 3189 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.2.tgz#e75bd5f6e268122a2a0e0bda630b2550c166502c" 3190 | 3191 | qs@~6.4.0: 3192 | version "6.4.0" 3193 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 3194 | 3195 | randomatic@^1.1.3: 3196 | version "1.1.6" 3197 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 3198 | dependencies: 3199 | is-number "^2.0.2" 3200 | kind-of "^3.0.2" 3201 | 3202 | rc@^1.0.1, rc@^1.0.3, rc@^1.1.6, rc@^1.1.7: 3203 | version "1.2.1" 3204 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 3205 | dependencies: 3206 | deep-extend "~0.4.0" 3207 | ini "~1.3.0" 3208 | minimist "^1.2.0" 3209 | strip-json-comments "~2.0.1" 3210 | 3211 | read-pkg-up@^1.0.1: 3212 | version "1.0.1" 3213 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 3214 | dependencies: 3215 | find-up "^1.0.0" 3216 | read-pkg "^1.0.0" 3217 | 3218 | read-pkg-up@^2.0.0: 3219 | version "2.0.0" 3220 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 3221 | dependencies: 3222 | find-up "^2.0.0" 3223 | read-pkg "^2.0.0" 3224 | 3225 | read-pkg@^1.0.0: 3226 | version "1.1.0" 3227 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 3228 | dependencies: 3229 | load-json-file "^1.0.0" 3230 | normalize-package-data "^2.3.2" 3231 | path-type "^1.0.0" 3232 | 3233 | read-pkg@^2.0.0: 3234 | version "2.0.0" 3235 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 3236 | dependencies: 3237 | load-json-file "^2.0.0" 3238 | normalize-package-data "^2.3.2" 3239 | path-type "^2.0.0" 3240 | 3241 | "readable-stream@>=1.0.33-1 <1.1.0-0": 3242 | version "1.0.34" 3243 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" 3244 | dependencies: 3245 | core-util-is "~1.0.0" 3246 | inherits "~2.0.1" 3247 | isarray "0.0.1" 3248 | string_decoder "~0.10.x" 3249 | 3250 | readable-stream@^2.0.0, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.1.5, readable-stream@^2.2.2: 3251 | version "2.2.9" 3252 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.9.tgz#cf78ec6f4a6d1eb43d26488cac97f042e74b7fc8" 3253 | dependencies: 3254 | buffer-shims "~1.0.0" 3255 | core-util-is "~1.0.0" 3256 | inherits "~2.0.1" 3257 | isarray "~1.0.0" 3258 | process-nextick-args "~1.0.6" 3259 | string_decoder "~1.0.0" 3260 | util-deprecate "~1.0.1" 3261 | 3262 | readable-stream@~1.1.9: 3263 | version "1.1.14" 3264 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" 3265 | dependencies: 3266 | core-util-is "~1.0.0" 3267 | inherits "~2.0.1" 3268 | isarray "0.0.1" 3269 | string_decoder "~0.10.x" 3270 | 3271 | readable-stream@~2.0.5: 3272 | version "2.0.6" 3273 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" 3274 | dependencies: 3275 | core-util-is "~1.0.0" 3276 | inherits "~2.0.1" 3277 | isarray "~1.0.0" 3278 | process-nextick-args "~1.0.6" 3279 | string_decoder "~0.10.x" 3280 | util-deprecate "~1.0.1" 3281 | 3282 | readdirp@^2.0.0: 3283 | version "2.1.0" 3284 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 3285 | dependencies: 3286 | graceful-fs "^4.1.2" 3287 | minimatch "^3.0.2" 3288 | readable-stream "^2.0.2" 3289 | set-immediate-shim "^1.0.1" 3290 | 3291 | readline2@^1.0.1: 3292 | version "1.0.1" 3293 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 3294 | dependencies: 3295 | code-point-at "^1.0.0" 3296 | is-fullwidth-code-point "^1.0.0" 3297 | mute-stream "0.0.5" 3298 | 3299 | rechoir@^0.6.2: 3300 | version "0.6.2" 3301 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 3302 | dependencies: 3303 | resolve "^1.1.6" 3304 | 3305 | redent@^1.0.0: 3306 | version "1.0.0" 3307 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 3308 | dependencies: 3309 | indent-string "^2.1.0" 3310 | strip-indent "^1.0.1" 3311 | 3312 | regenerate@^1.2.1: 3313 | version "1.3.2" 3314 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 3315 | 3316 | regenerator-runtime@^0.10.0: 3317 | version "0.10.5" 3318 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 3319 | 3320 | regex-cache@^0.4.2: 3321 | version "0.4.3" 3322 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 3323 | dependencies: 3324 | is-equal-shallow "^0.1.3" 3325 | is-primitive "^2.0.0" 3326 | 3327 | regexpu-core@^2.0.0: 3328 | version "2.0.0" 3329 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 3330 | dependencies: 3331 | regenerate "^1.2.1" 3332 | regjsgen "^0.2.0" 3333 | regjsparser "^0.1.4" 3334 | 3335 | registry-auth-token@^3.0.1: 3336 | version "3.3.1" 3337 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.1.tgz#fb0d3289ee0d9ada2cbb52af5dfe66cb070d3006" 3338 | dependencies: 3339 | rc "^1.1.6" 3340 | safe-buffer "^5.0.1" 3341 | 3342 | registry-url@^3.0.3: 3343 | version "3.1.0" 3344 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 3345 | dependencies: 3346 | rc "^1.0.1" 3347 | 3348 | regjsgen@^0.2.0: 3349 | version "0.2.0" 3350 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 3351 | 3352 | regjsparser@^0.1.4: 3353 | version "0.1.5" 3354 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 3355 | dependencies: 3356 | jsesc "~0.5.0" 3357 | 3358 | release-zalgo@^1.0.0: 3359 | version "1.0.0" 3360 | resolved "https://registry.yarnpkg.com/release-zalgo/-/release-zalgo-1.0.0.tgz#09700b7e5074329739330e535c5a90fb67851730" 3361 | dependencies: 3362 | es6-error "^4.0.1" 3363 | 3364 | remove-trailing-separator@^1.0.1: 3365 | version "1.0.1" 3366 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" 3367 | 3368 | repeat-element@^1.1.2: 3369 | version "1.1.2" 3370 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3371 | 3372 | repeat-string@^1.5.2: 3373 | version "1.6.1" 3374 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3375 | 3376 | repeating@^2.0.0: 3377 | version "2.0.1" 3378 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3379 | dependencies: 3380 | is-finite "^1.0.0" 3381 | 3382 | request@2, request@2.79.0: 3383 | version "2.79.0" 3384 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" 3385 | dependencies: 3386 | aws-sign2 "~0.6.0" 3387 | aws4 "^1.2.1" 3388 | caseless "~0.11.0" 3389 | combined-stream "~1.0.5" 3390 | extend "~3.0.0" 3391 | forever-agent "~0.6.1" 3392 | form-data "~2.1.1" 3393 | har-validator "~2.0.6" 3394 | hawk "~3.1.3" 3395 | http-signature "~1.1.0" 3396 | is-typedarray "~1.0.0" 3397 | isstream "~0.1.2" 3398 | json-stringify-safe "~5.0.1" 3399 | mime-types "~2.1.7" 3400 | oauth-sign "~0.8.1" 3401 | qs "~6.3.0" 3402 | stringstream "~0.0.4" 3403 | tough-cookie "~2.3.0" 3404 | tunnel-agent "~0.4.1" 3405 | uuid "^3.0.0" 3406 | 3407 | request@^2.81.0: 3408 | version "2.81.0" 3409 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 3410 | dependencies: 3411 | aws-sign2 "~0.6.0" 3412 | aws4 "^1.2.1" 3413 | caseless "~0.12.0" 3414 | combined-stream "~1.0.5" 3415 | extend "~3.0.0" 3416 | forever-agent "~0.6.1" 3417 | form-data "~2.1.1" 3418 | har-validator "~4.2.1" 3419 | hawk "~3.1.3" 3420 | http-signature "~1.1.0" 3421 | is-typedarray "~1.0.0" 3422 | isstream "~0.1.2" 3423 | json-stringify-safe "~5.0.1" 3424 | mime-types "~2.1.7" 3425 | oauth-sign "~0.8.1" 3426 | performance-now "^0.2.0" 3427 | qs "~6.4.0" 3428 | safe-buffer "^5.0.1" 3429 | stringstream "~0.0.4" 3430 | tough-cookie "~2.3.0" 3431 | tunnel-agent "^0.6.0" 3432 | uuid "^3.0.0" 3433 | 3434 | require-directory@^2.1.1: 3435 | version "2.1.1" 3436 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3437 | 3438 | require-main-filename@^1.0.1: 3439 | version "1.0.1" 3440 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3441 | 3442 | require-precompiled@^0.1.0: 3443 | version "0.1.0" 3444 | resolved "https://registry.yarnpkg.com/require-precompiled/-/require-precompiled-0.1.0.tgz#5a1b52eb70ebed43eb982e974c85ab59571e56fa" 3445 | 3446 | require-uncached@^1.0.2: 3447 | version "1.0.3" 3448 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 3449 | dependencies: 3450 | caller-path "^0.1.0" 3451 | resolve-from "^1.0.0" 3452 | 3453 | resolve-cwd@^1.0.0: 3454 | version "1.0.0" 3455 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-1.0.0.tgz#4eaeea41ed040d1702457df64a42b2b07d246f9f" 3456 | dependencies: 3457 | resolve-from "^2.0.0" 3458 | 3459 | resolve-from@^1.0.0: 3460 | version "1.0.1" 3461 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 3462 | 3463 | resolve-from@^2.0.0: 3464 | version "2.0.0" 3465 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57" 3466 | 3467 | resolve@^1.1.6: 3468 | version "1.3.3" 3469 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5" 3470 | dependencies: 3471 | path-parse "^1.0.5" 3472 | 3473 | restore-cursor@^1.0.1: 3474 | version "1.0.1" 3475 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 3476 | dependencies: 3477 | exit-hook "^1.0.0" 3478 | onetime "^1.0.0" 3479 | 3480 | restore-cursor@^2.0.0: 3481 | version "2.0.0" 3482 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 3483 | dependencies: 3484 | onetime "^2.0.0" 3485 | signal-exit "^3.0.2" 3486 | 3487 | right-align@^0.1.1: 3488 | version "0.1.3" 3489 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3490 | dependencies: 3491 | align-text "^0.1.1" 3492 | 3493 | rimraf@2, rimraf@^2.2.8, rimraf@^2.3.3, rimraf@^2.5.1, rimraf@^2.5.4, rimraf@^2.6.1: 3494 | version "2.6.1" 3495 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 3496 | dependencies: 3497 | glob "^7.0.5" 3498 | 3499 | run-async@^0.1.0: 3500 | version "0.1.0" 3501 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 3502 | dependencies: 3503 | once "^1.3.0" 3504 | 3505 | rx-lite@^3.1.2: 3506 | version "3.1.2" 3507 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 3508 | 3509 | safe-buffer@^5.0.1: 3510 | version "5.0.1" 3511 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 3512 | 3513 | semver-diff@^2.0.0: 3514 | version "2.1.0" 3515 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 3516 | dependencies: 3517 | semver "^5.0.3" 3518 | 3519 | "semver@2 || 3 || 4 || 5", "semver@2.x || 3.x || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, semver@~5.3.0: 3520 | version "5.3.0" 3521 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 3522 | 3523 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3524 | version "2.0.0" 3525 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3526 | 3527 | set-immediate-shim@^1.0.1: 3528 | version "1.0.1" 3529 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3530 | 3531 | shebang-command@^1.2.0: 3532 | version "1.2.0" 3533 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3534 | dependencies: 3535 | shebang-regex "^1.0.0" 3536 | 3537 | shebang-regex@^1.0.0: 3538 | version "1.0.0" 3539 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3540 | 3541 | shelljs@^0.7.5: 3542 | version "0.7.7" 3543 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.7.tgz#b2f5c77ef97148f4b4f6e22682e10bba8667cff1" 3544 | dependencies: 3545 | glob "^7.0.0" 3546 | interpret "^1.0.0" 3547 | rechoir "^0.6.2" 3548 | 3549 | signal-exit@^2.0.0: 3550 | version "2.1.2" 3551 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-2.1.2.tgz#375879b1f92ebc3b334480d038dc546a6d558564" 3552 | 3553 | signal-exit@^3.0.0, signal-exit@^3.0.1, signal-exit@^3.0.2: 3554 | version "3.0.2" 3555 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3556 | 3557 | simple-get@^1.4.2: 3558 | version "1.4.3" 3559 | resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-1.4.3.tgz#e9755eda407e96da40c5e5158c9ea37b33becbeb" 3560 | dependencies: 3561 | once "^1.3.1" 3562 | unzip-response "^1.0.0" 3563 | xtend "^4.0.0" 3564 | 3565 | simple-mime@~0.1.0: 3566 | version "0.1.0" 3567 | resolved "https://registry.yarnpkg.com/simple-mime/-/simple-mime-0.1.0.tgz#95f517c4f466d7cff561a71fc9dab2596ea9ef2e" 3568 | 3569 | slash@^1.0.0: 3570 | version "1.0.0" 3571 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3572 | 3573 | slice-ansi@0.0.4: 3574 | version "0.0.4" 3575 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 3576 | 3577 | slide@^1.1.5: 3578 | version "1.1.6" 3579 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 3580 | 3581 | sntp@1.x.x: 3582 | version "1.0.9" 3583 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3584 | dependencies: 3585 | hoek "2.x.x" 3586 | 3587 | sort-keys@^1.1.1, sort-keys@^1.1.2: 3588 | version "1.1.2" 3589 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" 3590 | dependencies: 3591 | is-plain-obj "^1.0.0" 3592 | 3593 | source-map-support@^0.4.0, source-map-support@^0.4.2: 3594 | version "0.4.15" 3595 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1" 3596 | dependencies: 3597 | source-map "^0.5.6" 3598 | 3599 | source-map@^0.4.4: 3600 | version "0.4.4" 3601 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3602 | dependencies: 3603 | amdefine ">=0.0.4" 3604 | 3605 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 3606 | version "0.5.6" 3607 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 3608 | 3609 | spawn-wrap@1.2.4: 3610 | version "1.2.4" 3611 | resolved "https://registry.yarnpkg.com/spawn-wrap/-/spawn-wrap-1.2.4.tgz#920eb211a769c093eebfbd5b0e7a5d2e68ab2e40" 3612 | dependencies: 3613 | foreground-child "^1.3.3" 3614 | mkdirp "^0.5.0" 3615 | os-homedir "^1.0.1" 3616 | rimraf "^2.3.3" 3617 | signal-exit "^2.0.0" 3618 | which "^1.2.4" 3619 | 3620 | spdx-correct@~1.0.0: 3621 | version "1.0.2" 3622 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3623 | dependencies: 3624 | spdx-license-ids "^1.0.2" 3625 | 3626 | spdx-expression-parse@~1.0.0: 3627 | version "1.0.4" 3628 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3629 | 3630 | spdx-license-ids@^1.0.2: 3631 | version "1.2.2" 3632 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3633 | 3634 | sprintf-js@~1.0.2: 3635 | version "1.0.3" 3636 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3637 | 3638 | sshpk@^1.7.0: 3639 | version "1.13.0" 3640 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.0.tgz#ff2a3e4fd04497555fed97b39a0fd82fafb3a33c" 3641 | dependencies: 3642 | asn1 "~0.2.3" 3643 | assert-plus "^1.0.0" 3644 | dashdash "^1.12.0" 3645 | getpass "^0.1.1" 3646 | optionalDependencies: 3647 | bcrypt-pbkdf "^1.0.0" 3648 | ecc-jsbn "~0.1.1" 3649 | jodid25519 "^1.0.0" 3650 | jsbn "~0.1.0" 3651 | tweetnacl "~0.14.0" 3652 | 3653 | stack-utils@^1.0.0: 3654 | version "1.0.1" 3655 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.1.tgz#d4f33ab54e8e38778b0ca5cfd3b3afb12db68620" 3656 | 3657 | string-width@^1.0.1, string-width@^1.0.2: 3658 | version "1.0.2" 3659 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3660 | dependencies: 3661 | code-point-at "^1.0.0" 3662 | is-fullwidth-code-point "^1.0.0" 3663 | strip-ansi "^3.0.0" 3664 | 3665 | string-width@^2.0.0: 3666 | version "2.0.0" 3667 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 3668 | dependencies: 3669 | is-fullwidth-code-point "^2.0.0" 3670 | strip-ansi "^3.0.0" 3671 | 3672 | string_decoder@~0.10.x: 3673 | version "0.10.31" 3674 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 3675 | 3676 | string_decoder@~1.0.0: 3677 | version "1.0.0" 3678 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.0.tgz#f06f41157b664d86069f84bdbdc9b0d8ab281667" 3679 | dependencies: 3680 | buffer-shims "~1.0.0" 3681 | 3682 | stringstream@~0.0.4: 3683 | version "0.0.5" 3684 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3685 | 3686 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3687 | version "3.0.1" 3688 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3689 | dependencies: 3690 | ansi-regex "^2.0.0" 3691 | 3692 | strip-ansi@~0.1.0: 3693 | version "0.1.1" 3694 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-0.1.1.tgz#39e8a98d044d150660abe4a6808acf70bb7bc991" 3695 | 3696 | strip-bom-buf@^1.0.0: 3697 | version "1.0.0" 3698 | resolved "https://registry.yarnpkg.com/strip-bom-buf/-/strip-bom-buf-1.0.0.tgz#1cb45aaf57530f4caf86c7f75179d2c9a51dd572" 3699 | dependencies: 3700 | is-utf8 "^0.2.1" 3701 | 3702 | strip-bom@^2.0.0: 3703 | version "2.0.0" 3704 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3705 | dependencies: 3706 | is-utf8 "^0.2.0" 3707 | 3708 | strip-bom@^3.0.0: 3709 | version "3.0.0" 3710 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3711 | 3712 | strip-eof@^1.0.0: 3713 | version "1.0.0" 3714 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3715 | 3716 | strip-indent@^1.0.1: 3717 | version "1.0.1" 3718 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 3719 | dependencies: 3720 | get-stdin "^4.0.1" 3721 | 3722 | strip-json-comments@~2.0.1: 3723 | version "2.0.1" 3724 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3725 | 3726 | supports-color@^2.0.0: 3727 | version "2.0.0" 3728 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3729 | 3730 | supports-color@^3.1.2, supports-color@^3.2.3: 3731 | version "3.2.3" 3732 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3733 | dependencies: 3734 | has-flag "^1.0.0" 3735 | 3736 | symbol-observable@^0.2.2: 3737 | version "0.2.4" 3738 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-0.2.4.tgz#95a83db26186d6af7e7a18dbd9760a2f86d08f40" 3739 | 3740 | symbol-observable@^1.0.4: 3741 | version "1.0.4" 3742 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d" 3743 | 3744 | table@^3.7.8: 3745 | version "3.8.3" 3746 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 3747 | dependencies: 3748 | ajv "^4.7.0" 3749 | ajv-keywords "^1.0.0" 3750 | chalk "^1.1.1" 3751 | lodash "^4.0.0" 3752 | slice-ansi "0.0.4" 3753 | string-width "^2.0.0" 3754 | 3755 | tar-fs@^1.7.0: 3756 | version "1.15.2" 3757 | resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-1.15.2.tgz#761f5b32932c7b39461a60d537faea0d8084830c" 3758 | dependencies: 3759 | chownr "^1.0.1" 3760 | mkdirp "^0.5.1" 3761 | pump "^1.0.0" 3762 | tar-stream "^1.1.2" 3763 | 3764 | tar-pack@^3.4.0: 3765 | version "3.4.0" 3766 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 3767 | dependencies: 3768 | debug "^2.2.0" 3769 | fstream "^1.0.10" 3770 | fstream-ignore "^1.0.5" 3771 | once "^1.3.3" 3772 | readable-stream "^2.1.4" 3773 | rimraf "^2.5.1" 3774 | tar "^2.2.1" 3775 | uid-number "^0.0.6" 3776 | 3777 | tar-stream@^1.1.2, tar-stream@^1.2.1: 3778 | version "1.5.4" 3779 | resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-1.5.4.tgz#36549cf04ed1aee9b2a30c0143252238daf94016" 3780 | dependencies: 3781 | bl "^1.0.0" 3782 | end-of-stream "^1.0.0" 3783 | readable-stream "^2.0.0" 3784 | xtend "^4.0.0" 3785 | 3786 | tar@^2.0.0, tar@^2.2.1: 3787 | version "2.2.1" 3788 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3789 | dependencies: 3790 | block-stream "*" 3791 | fstream "^1.0.2" 3792 | inherits "2" 3793 | 3794 | tcomb@^2.5.0: 3795 | version "2.7.0" 3796 | resolved "https://registry.yarnpkg.com/tcomb/-/tcomb-2.7.0.tgz#10d62958041669a5d53567b9a4ee8cde22b1c2b0" 3797 | 3798 | term-size@^0.1.0: 3799 | version "0.1.1" 3800 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-0.1.1.tgz#87360b96396cab5760963714cda0d0cbeecad9ca" 3801 | dependencies: 3802 | execa "^0.4.0" 3803 | 3804 | test-exclude@^4.1.0: 3805 | version "4.1.0" 3806 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.0.tgz#04ca70b7390dd38c98d4a003a173806ca7991c91" 3807 | dependencies: 3808 | arrify "^1.0.1" 3809 | micromatch "^2.3.11" 3810 | object-assign "^4.1.0" 3811 | read-pkg-up "^1.0.1" 3812 | require-main-filename "^1.0.1" 3813 | 3814 | text-table@^0.2.0, text-table@~0.2.0: 3815 | version "0.2.0" 3816 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3817 | 3818 | three@^0.85.2: 3819 | version "0.85.2" 3820 | resolved "https://registry.yarnpkg.com/three/-/three-0.85.2.tgz#8936f89c3668f7bf12f9b085ddf5dd409916ea27" 3821 | 3822 | through2@^0.6.1, through2@^0.6.3, through2@~0.6.3: 3823 | version "0.6.5" 3824 | resolved "https://registry.yarnpkg.com/through2/-/through2-0.6.5.tgz#41ab9c67b29d57209071410e1d7a7a968cd3ad48" 3825 | dependencies: 3826 | readable-stream ">=1.0.33-1 <1.1.0-0" 3827 | xtend ">=4.0.0 <4.1.0-0" 3828 | 3829 | through2@^2.0.0: 3830 | version "2.0.3" 3831 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 3832 | dependencies: 3833 | readable-stream "^2.1.5" 3834 | xtend "~4.0.1" 3835 | 3836 | through2@~0.2.3: 3837 | version "0.2.3" 3838 | resolved "https://registry.yarnpkg.com/through2/-/through2-0.2.3.tgz#eb3284da4ea311b6cc8ace3653748a52abf25a3f" 3839 | dependencies: 3840 | readable-stream "~1.1.9" 3841 | xtend "~2.1.1" 3842 | 3843 | through@^2.3.6: 3844 | version "2.3.8" 3845 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3846 | 3847 | time-require@^0.1.2: 3848 | version "0.1.2" 3849 | resolved "https://registry.yarnpkg.com/time-require/-/time-require-0.1.2.tgz#f9e12cb370fc2605e11404582ba54ef5ca2b2d98" 3850 | dependencies: 3851 | chalk "^0.4.0" 3852 | date-time "^0.1.1" 3853 | pretty-ms "^0.2.1" 3854 | text-table "^0.2.0" 3855 | 3856 | timed-out@^4.0.0: 3857 | version "4.0.1" 3858 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" 3859 | 3860 | tmp@^0.0.31: 3861 | version "0.0.31" 3862 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.31.tgz#8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7" 3863 | dependencies: 3864 | os-tmpdir "~1.0.1" 3865 | 3866 | to-fast-properties@^1.0.1: 3867 | version "1.0.3" 3868 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3869 | 3870 | tough-cookie@~2.3.0: 3871 | version "2.3.2" 3872 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3873 | dependencies: 3874 | punycode "^1.4.1" 3875 | 3876 | trim-newlines@^1.0.0: 3877 | version "1.0.0" 3878 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 3879 | 3880 | trim-right@^1.0.1: 3881 | version "1.0.1" 3882 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3883 | 3884 | tryit@^1.0.1: 3885 | version "1.0.3" 3886 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 3887 | 3888 | tunnel-agent@^0.6.0: 3889 | version "0.6.0" 3890 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3891 | dependencies: 3892 | safe-buffer "^5.0.1" 3893 | 3894 | tunnel-agent@~0.4.1: 3895 | version "0.4.3" 3896 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 3897 | 3898 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3899 | version "0.14.5" 3900 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3901 | 3902 | type-check@~0.3.2: 3903 | version "0.3.2" 3904 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3905 | dependencies: 3906 | prelude-ls "~1.1.2" 3907 | 3908 | typedarray@^0.0.6: 3909 | version "0.0.6" 3910 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3911 | 3912 | uglify-js@^2.6: 3913 | version "2.8.26" 3914 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.26.tgz#3a1db8ae0a0aba7f92e1ddadadbd0293d549f90e" 3915 | dependencies: 3916 | source-map "~0.5.1" 3917 | yargs "~3.10.0" 3918 | optionalDependencies: 3919 | uglify-to-browserify "~1.0.0" 3920 | 3921 | uglify-to-browserify@~1.0.0: 3922 | version "1.0.2" 3923 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3924 | 3925 | uid-number@^0.0.6: 3926 | version "0.0.6" 3927 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3928 | 3929 | uid2@0.0.3: 3930 | version "0.0.3" 3931 | resolved "https://registry.yarnpkg.com/uid2/-/uid2-0.0.3.tgz#483126e11774df2f71b8b639dcd799c376162b82" 3932 | 3933 | unique-stream@^1.0.0: 3934 | version "1.0.0" 3935 | resolved "https://registry.yarnpkg.com/unique-stream/-/unique-stream-1.0.0.tgz#d59a4a75427447d9aa6c91e70263f8d26a4b104b" 3936 | 3937 | unique-string@^1.0.0: 3938 | version "1.0.0" 3939 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" 3940 | dependencies: 3941 | crypto-random-string "^1.0.0" 3942 | 3943 | unique-temp-dir@^1.0.0: 3944 | version "1.0.0" 3945 | resolved "https://registry.yarnpkg.com/unique-temp-dir/-/unique-temp-dir-1.0.0.tgz#6dce95b2681ca003eebfb304a415f9cbabcc5385" 3946 | dependencies: 3947 | mkdirp "^0.5.1" 3948 | os-tmpdir "^1.0.1" 3949 | uid2 "0.0.3" 3950 | 3951 | units-css@^0.4.0: 3952 | version "0.4.0" 3953 | resolved "https://registry.yarnpkg.com/units-css/-/units-css-0.4.0.tgz#d6228653a51983d7c16ff28f8b9dc3b1ffed3a07" 3954 | dependencies: 3955 | isnumeric "^0.2.0" 3956 | viewport-dimensions "^0.2.0" 3957 | 3958 | unquote@^1.1.0: 3959 | version "1.1.0" 3960 | resolved "https://registry.yarnpkg.com/unquote/-/unquote-1.1.0.tgz#98e1fc608b6b854c75afb1b95afc099ba69d942f" 3961 | 3962 | unzip-response@^1.0.0: 3963 | version "1.0.2" 3964 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-1.0.2.tgz#b984f0877fc0a89c2c773cc1ef7b5b232b5b06fe" 3965 | 3966 | unzip-response@^2.0.1: 3967 | version "2.0.1" 3968 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" 3969 | 3970 | update-notifier@^2.1.0: 3971 | version "2.1.0" 3972 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.1.0.tgz#ec0c1e53536b76647a24b77cb83966d9315123d9" 3973 | dependencies: 3974 | boxen "^1.0.0" 3975 | chalk "^1.0.0" 3976 | configstore "^3.0.0" 3977 | is-npm "^1.0.0" 3978 | latest-version "^3.0.0" 3979 | lazy-req "^2.0.0" 3980 | semver-diff "^2.0.0" 3981 | xdg-basedir "^3.0.0" 3982 | 3983 | url-parse-lax@^1.0.0: 3984 | version "1.0.0" 3985 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" 3986 | dependencies: 3987 | prepend-http "^1.0.1" 3988 | 3989 | url-template@~2.0.6: 3990 | version "2.0.8" 3991 | resolved "https://registry.yarnpkg.com/url-template/-/url-template-2.0.8.tgz#fc565a3cccbff7730c775f5641f9555791439f21" 3992 | 3993 | user-home@^2.0.0: 3994 | version "2.0.0" 3995 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 3996 | dependencies: 3997 | os-homedir "^1.0.0" 3998 | 3999 | util-deprecate@~1.0.1: 4000 | version "1.0.2" 4001 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 4002 | 4003 | util-extend@^1.0.1: 4004 | version "1.0.3" 4005 | resolved "https://registry.yarnpkg.com/util-extend/-/util-extend-1.0.3.tgz#a7c216d267545169637b3b6edc6ca9119e2ff93f" 4006 | 4007 | uuid@^3.0.0: 4008 | version "3.0.1" 4009 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 4010 | 4011 | validate-npm-package-license@^3.0.1: 4012 | version "3.0.1" 4013 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 4014 | dependencies: 4015 | spdx-correct "~1.0.0" 4016 | spdx-expression-parse "~1.0.0" 4017 | 4018 | verror@1.3.6: 4019 | version "1.3.6" 4020 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 4021 | dependencies: 4022 | extsprintf "1.0.2" 4023 | 4024 | viewport-dimensions@^0.2.0: 4025 | version "0.2.0" 4026 | resolved "https://registry.yarnpkg.com/viewport-dimensions/-/viewport-dimensions-0.2.0.tgz#de740747db5387fd1725f5175e91bac76afdf36c" 4027 | 4028 | which-module@^1.0.0: 4029 | version "1.0.0" 4030 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 4031 | 4032 | which@1, which@^1.2.4, which@^1.2.8, which@^1.2.9: 4033 | version "1.2.14" 4034 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 4035 | dependencies: 4036 | isexe "^2.0.0" 4037 | 4038 | wide-align@^1.1.0: 4039 | version "1.1.2" 4040 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 4041 | dependencies: 4042 | string-width "^1.0.2" 4043 | 4044 | widest-line@^1.0.0: 4045 | version "1.0.0" 4046 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-1.0.0.tgz#0c09c85c2a94683d0d7eaf8ee097d564bf0e105c" 4047 | dependencies: 4048 | string-width "^1.0.1" 4049 | 4050 | window-size@0.1.0: 4051 | version "0.1.0" 4052 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 4053 | 4054 | wordwrap@0.0.2: 4055 | version "0.0.2" 4056 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 4057 | 4058 | wordwrap@~0.0.2: 4059 | version "0.0.3" 4060 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 4061 | 4062 | wordwrap@~1.0.0: 4063 | version "1.0.0" 4064 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 4065 | 4066 | wrap-ansi@^2.0.0: 4067 | version "2.1.0" 4068 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 4069 | dependencies: 4070 | string-width "^1.0.1" 4071 | strip-ansi "^3.0.1" 4072 | 4073 | wrappy@1: 4074 | version "1.0.2" 4075 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 4076 | 4077 | write-file-atomic@^1.1.4: 4078 | version "1.3.4" 4079 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.4.tgz#f807a4f0b1d9e913ae7a48112e6cc3af1991b45f" 4080 | dependencies: 4081 | graceful-fs "^4.1.11" 4082 | imurmurhash "^0.1.4" 4083 | slide "^1.1.5" 4084 | 4085 | write-file-atomic@^2.0.0: 4086 | version "2.1.0" 4087 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.1.0.tgz#1769f4b551eedce419f0505deae2e26763542d37" 4088 | dependencies: 4089 | graceful-fs "^4.1.11" 4090 | imurmurhash "^0.1.4" 4091 | slide "^1.1.5" 4092 | 4093 | write-json-file@^2.0.0: 4094 | version "2.1.0" 4095 | resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-2.1.0.tgz#ba1cf3ac7ee89db26c3d528986e48421389046b7" 4096 | dependencies: 4097 | graceful-fs "^4.1.2" 4098 | make-dir "^1.0.0" 4099 | pify "^2.0.0" 4100 | sort-keys "^1.1.1" 4101 | write-file-atomic "^2.0.0" 4102 | 4103 | write-pkg@^2.0.0: 4104 | version "2.1.0" 4105 | resolved "https://registry.yarnpkg.com/write-pkg/-/write-pkg-2.1.0.tgz#353aa44c39c48c21440f5c08ce6abd46141c9c08" 4106 | dependencies: 4107 | sort-keys "^1.1.2" 4108 | write-json-file "^2.0.0" 4109 | 4110 | write@^0.2.1: 4111 | version "0.2.1" 4112 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 4113 | dependencies: 4114 | mkdirp "^0.5.1" 4115 | 4116 | xdg-basedir@^3.0.0: 4117 | version "3.0.0" 4118 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" 4119 | 4120 | "xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.0, xtend@~4.0.1: 4121 | version "4.0.1" 4122 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 4123 | 4124 | xtend@~2.1.1: 4125 | version "2.1.2" 4126 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-2.1.2.tgz#6efecc2a4dad8e6962c4901b337ce7ba87b5d28b" 4127 | dependencies: 4128 | object-keys "~0.4.0" 4129 | 4130 | y18n@^3.2.1: 4131 | version "3.2.1" 4132 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 4133 | 4134 | yallist@^2.0.0: 4135 | version "2.1.2" 4136 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 4137 | 4138 | yargs-parser@^5.0.0: 4139 | version "5.0.0" 4140 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" 4141 | dependencies: 4142 | camelcase "^3.0.0" 4143 | 4144 | yargs@^7.1.0: 4145 | version "7.1.0" 4146 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" 4147 | dependencies: 4148 | camelcase "^3.0.0" 4149 | cliui "^3.2.0" 4150 | decamelize "^1.1.1" 4151 | get-caller-file "^1.0.1" 4152 | os-locale "^1.4.0" 4153 | read-pkg-up "^1.0.1" 4154 | require-directory "^2.1.1" 4155 | require-main-filename "^1.0.1" 4156 | set-blocking "^2.0.0" 4157 | string-width "^1.0.2" 4158 | which-module "^1.0.0" 4159 | y18n "^3.2.1" 4160 | yargs-parser "^5.0.0" 4161 | 4162 | yargs@~3.10.0: 4163 | version "3.10.0" 4164 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 4165 | dependencies: 4166 | camelcase "^1.0.2" 4167 | cliui "^2.1.0" 4168 | decamelize "^1.0.0" 4169 | window-size "0.1.0" 4170 | --------------------------------------------------------------------------------