├── .gitignore ├── History.md ├── Makefile ├── Readme.md ├── circle.yml ├── examples ├── character-recognition │ ├── advanced │ │ ├── A.png │ │ ├── B.png │ │ ├── C.png │ │ ├── D.png │ │ └── index.js │ └── simple │ │ ├── character.js │ │ └── index.js ├── download-upload │ └── index.js └── exclusive-or │ └── index.js ├── index.js ├── package.json ├── test.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | tmp -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- 1 | 2 | 1.0.1 / 2017-05-23 3 | ================== 4 | 5 | * circle: add npm_auth variable 6 | 7 | 1.0.0 / 2017-05-23 8 | ================== 9 | 10 | * Refactor to use ava, es6, and yarn 11 | 12 | 0.3.0 / May 16, 2017 13 | 14 | * Allow learning multiple times 15 | 16 | 0.2.1 / August 6, 2015 17 | 18 | * Bumped mind-xor 19 | 20 | 0.2.0 / August 6, 2015 21 | 22 | * Updated to allow an arbitrary number of hidden layers 23 | 24 | 0.1.2 / August 4, 2015 25 | 26 | * Updated to emit the 'data' event with each iteration 27 | 28 | 0.1.1 / July 29, 2015 29 | 30 | * Simplified code 31 | 32 | 0.1.0 / July 24, 2015 33 | 34 | * Added ability to download/upload the network weights 35 | * Added download and upload examples 36 | * Updated readme with plugin explanation 37 | 38 | 0.0.9 / July 23, 2015 39 | 40 | * Updated readme and character recognition example 41 | 42 | 0.0.8 / July 22, 2015 43 | 44 | * Cleaned up learn function 45 | * Added more examples 46 | * Updated readme with new example 47 | 48 | 0.0.7 / July 20, 2015 49 | 50 | * Added link to demo in readme 51 | 52 | 0.0.6 / July 20, 2015 53 | 54 | * Moved activation functions into separate modules for better core code clarity 55 | 56 | 0.0.5 / July 20, 2015 57 | 58 | * Exposed iterations at the API level to improve flexibility 59 | 60 | 0.0.4 / July 13, 2015 61 | 62 | * Added option to use hyperbolic tangent as activation function 63 | 64 | 0.0.3 / July 07, 2015 65 | 66 | * Updated readme 67 | * Updated example 68 | 69 | 0.0.2 / July 07, 2015 70 | 71 | * Bumped matrix version 72 | 73 | 0.0.1 / July 06, 2015 74 | 75 | * Initial release 76 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | SRC := index.js 2 | TESTS := test.js 3 | 4 | test: node_modules 5 | ./node_modules/.bin/ava 6 | 7 | coverage: $(SRC) $(TESTS) node_modules 8 | ./node_modules/.bin/nyc --reporter=lcov --reporter=html ./node_modules/.bin/ava 9 | 10 | node_modules: package.json 11 | yarn 12 | touch $@ 13 | 14 | clean: 15 | rm -rf coverage .nyc_output 16 | 17 | .PHONY: test clean 18 | -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- 1 | [![](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/banner2-direct.svg)](https://github.com/vshymanskyy/StandWithUkraine/blob/main/docs/README.md) 2 | 3 | ![Mind Logo](https://cldup.com/D1yUfBz7Iu.png) 4 | 5 | [![CircleCI](https://circleci.com/gh/stevenmiller888/mind.svg?style=svg)](https://circleci.com/gh/stevenmiller888/mind) 6 | 7 | A flexible neural network library for Node.js and the browser. Check out a live [demo](http://stevenmiller888.github.io/mindjs.net/) of a movie recommendation engine built with Mind. 8 | 9 | ## Features 10 | 11 | - Vectorized - uses a matrix implementation to process training data 12 | - Configurable - allows you to customize the network topology 13 | - Pluggable - download/upload minds that have already learned 14 | 15 | ## Installation 16 | 17 | ```bash 18 | $ yarn add node-mind 19 | ``` 20 | 21 | ## Usage 22 | 23 | ```js 24 | const Mind = require('node-mind'); 25 | 26 | /** 27 | * Letters. 28 | * 29 | * - Imagine these # and . represent black and white pixels. 30 | */ 31 | 32 | const a = character( 33 | '.#####.' + 34 | '#.....#' + 35 | '#.....#' + 36 | '#######' + 37 | '#.....#' + 38 | '#.....#' + 39 | '#.....#' 40 | ) 41 | 42 | const b = character( 43 | '######.' + 44 | '#.....#' + 45 | '#.....#' + 46 | '######.' + 47 | '#.....#' + 48 | '#.....#' + 49 | '######.' 50 | ) 51 | 52 | const c = character( 53 | '#######' + 54 | '#......' + 55 | '#......' + 56 | '#......' + 57 | '#......' + 58 | '#......' + 59 | '#######' 60 | ) 61 | 62 | /** 63 | * Learn the letters A through C. 64 | */ 65 | 66 | const mind = new Mind({ activator: 'sigmoid' }) 67 | .learn([ 68 | { input: a, output: map('a') }, 69 | { input: b, output: map('b') }, 70 | { input: c, output: map('c') } 71 | ]) 72 | 73 | /** 74 | * Predict the letter C, even with a pixel off. 75 | */ 76 | 77 | const result = mind.predict(character( 78 | '#######' + 79 | '#......' + 80 | '#......' + 81 | '#......' + 82 | '#......' + 83 | '##.....' + 84 | '#######' 85 | )) 86 | 87 | console.log(result) // ~ 0.5 88 | 89 | /** 90 | * Turn the # into 1s and . into 0s. 91 | */ 92 | 93 | function character(string) { 94 | return string 95 | .trim() 96 | .split('') 97 | .map(integer) 98 | 99 | function integer(symbol) { 100 | if ('#' === symbol) return 1 101 | if ('.' === symbol) return 0 102 | } 103 | } 104 | 105 | /** 106 | * Map letter to a number. 107 | */ 108 | 109 | function map(letter) { 110 | if (letter === 'a') return [ 0.1 ] 111 | if (letter === 'b') return [ 0.3 ] 112 | if (letter === 'c') return [ 0.5 ] 113 | return 0 114 | } 115 | ``` 116 | 117 | ## Plugins 118 | 119 | Use plugins created by the Mind community to configure pre-trained networks that can go straight to making predictions. 120 | 121 | Here's a cool example of the way you could use a hypothetical `mind-ocr` plugin: 122 | 123 | ```js 124 | const Mind = require('node-mind') 125 | const ocr = require('mind-ocr') 126 | 127 | const mind = Mind() 128 | .upload(ocr) 129 | .predict( 130 | '.#####.' + 131 | '#.....#' + 132 | '#.....#' + 133 | '#######' + 134 | '#.....#' + 135 | '#.....#' + 136 | '#.....#' 137 | ) 138 | ``` 139 | 140 | To create a plugin, simply call `download` on your trained mind: 141 | 142 | ```js 143 | const Mind = require('node-mind') 144 | 145 | const mind = Mind() 146 | .learn([ 147 | { input: [0, 0], output: [ 0 ] }, 148 | { input: [0, 1], output: [ 1 ] }, 149 | { input: [1, 0], output: [ 1 ] }, 150 | { input: [1, 1], output: [ 0 ] } 151 | ]); 152 | 153 | const xor = mind.download() 154 | ``` 155 | 156 | Here's a list of available plugins: 157 | 158 | - [xor](https://github.com/stevenmiller888/mind-xor) 159 | 160 | ## API 161 | 162 | ### Mind(options) 163 | Create a new instance of Mind that can learn to make predictions. 164 | 165 | The available options are: 166 | * `activator`: the activation function to use, `sigmoid` or `htan` 167 | * `learningRate`: the speed at which the network will learn 168 | * `hiddenUnits`: the number of units in the hidden layer/s 169 | * `iterations`: the number of iterations to run 170 | * `hiddenLayers`: the number of hidden layers 171 | 172 | #### .learn() 173 | 174 | Learn from training data: 175 | 176 | ```js 177 | mind.learn([ 178 | { input: [0, 0], output: [ 0 ] }, 179 | { input: [0, 1], output: [ 1 ] }, 180 | { input: [1, 0], output: [ 1 ] }, 181 | { input: [1, 1], output: [ 0 ] } 182 | ]) 183 | ``` 184 | 185 | #### .predict() 186 | 187 | Make a prediction: 188 | 189 | ```js 190 | mind.predict([0, 1]) 191 | ``` 192 | 193 | #### .download() 194 | 195 | Download a mind: 196 | 197 | ```js 198 | const xor = mind.download() 199 | ``` 200 | 201 | #### .upload() 202 | 203 | Upload a mind: 204 | 205 | ```js 206 | mind.upload(xor) 207 | ``` 208 | 209 | #### .on() 210 | 211 | Listen for the 'data' event, which is fired with each iteration: 212 | 213 | ```js 214 | mind.on('data', (iteration, errors, results) => { 215 | // ... 216 | }) 217 | ``` 218 | 219 | ## Releasing / Publishing 220 | 221 | CircleCI will handle publishing to npm. To cut a new release, just do: 222 | 223 | ``` 224 | $ git changelog --tag 225 | $ vim package.json # enter 226 | $ git release 227 | ``` 228 | 229 | Where `` follows the [semver](http://semver.org/) spec. 230 | 231 | ## Note 232 | 233 | If you're interested in learning more, I wrote a blog post on how to build your own neural network: 234 | 235 | - [How to Build a Neural Network](http://stevenmiller888.github.io/mind-how-to-build-a-neural-network/) 236 | 237 | Also, here are some fantastic libraries you can check out: 238 | 239 | - [convnetjs](https://github.com/karpathy/convnetjs) 240 | - [synaptic](https://github.com/cazala/synaptic) 241 | - [brain](https://github.com/harthur-org/brain.js) 242 | 243 | ## License 244 | 245 | [MIT](https://tldrlegal.com/license/mit-license) 246 | 247 | --- 248 | 249 | > [stevenmiller888.github.io](https://stevenmiller888.github.io)  ·  250 | > GitHub [@stevenmiller888](https://github.com/stevenmiller888)  ·  251 | > Twitter [@stevenmiller888](https://twitter.com/stevenmiller888) 252 | -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- 1 | machine: 2 | node: 3 | version: 7 4 | environment: 5 | PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin" 6 | 7 | dependencies: 8 | pre: 9 | - npm config set "//registry.npmjs.org/:_authToken" $NPM_AUTH 10 | cache_directories: 11 | - ~/.cache/yarn 12 | override: 13 | - make node_modules 14 | 15 | test: 16 | override: 17 | - make test 18 | 19 | deployment: 20 | publish: 21 | tag: /[0-9]+(\.[0-9]+)*(-.+)?/ 22 | commands: 23 | - npm publish 24 | -------------------------------------------------------------------------------- /examples/character-recognition/advanced/A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenmiller888/mind/4b7cdc391f1655664c9a7b127f57edf136124be1/examples/character-recognition/advanced/A.png -------------------------------------------------------------------------------- /examples/character-recognition/advanced/B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenmiller888/mind/4b7cdc391f1655664c9a7b127f57edf136124be1/examples/character-recognition/advanced/B.png -------------------------------------------------------------------------------- /examples/character-recognition/advanced/C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenmiller888/mind/4b7cdc391f1655664c9a7b127f57edf136124be1/examples/character-recognition/advanced/C.png -------------------------------------------------------------------------------- /examples/character-recognition/advanced/D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenmiller888/mind/4b7cdc391f1655664c9a7b127f57edf136124be1/examples/character-recognition/advanced/D.png -------------------------------------------------------------------------------- /examples/character-recognition/advanced/index.js: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * Dependencies. 4 | */ 5 | 6 | const Picture = require('png-img') 7 | const Mind = require('../../..') 8 | const path = require('path') 9 | const fs = require('fs') 10 | 11 | /** 12 | * Learn. 13 | */ 14 | 15 | const mind = new Mind({ iterations: 100, activator: 'sigmoid' }) 16 | .learn([ 17 | { input: letter('A'), output: map('A') }, 18 | { input: letter('B'), output: map('B') }, 19 | { input: letter('C'), output: map('C') }, 20 | { input: letter('D'), output: map('D') } 21 | ]) 22 | 23 | const result = mind.predict(letter('C')) 24 | console.log(result) // ~ 0.5 25 | 26 | /** 27 | * Get an image of the letter. 28 | */ 29 | 30 | function letter (character) { 31 | const letterImg = new Picture(fs.readFileSync(path.join(__dirname, './' + character + '.png'))) 32 | const height = letterImg.img_.height 33 | const width = letterImg.img_.width 34 | const values = [] 35 | 36 | for (let i = 0; i < width; i++) { 37 | for (let j = 0; j < height; j++) { 38 | const k = letterImg.get(i, j) 39 | values.push(k.r / 255) 40 | values.push(k.g / 255) 41 | values.push(k.b / 255) 42 | values.push(k.a / 255) 43 | } 44 | } 45 | 46 | return values 47 | } 48 | 49 | /** 50 | * Map the letter to a number. 51 | */ 52 | 53 | function map (character) { 54 | if (character === 'A') return [ 0.1 ] 55 | if (character === 'B') return [ 0.3 ] 56 | if (character === 'C') return [ 0.5 ] 57 | if (character === 'D') return [ 0.7 ] 58 | return 0 59 | } 60 | -------------------------------------------------------------------------------- /examples/character-recognition/simple/character.js: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * Turn the # into 1s and . into 0s. 4 | */ 5 | 6 | module.exports = (string) => { 7 | return string 8 | .trim() 9 | .split('') 10 | .map((symbol) => { 11 | if (symbol === '#') return 1 12 | if (symbol === '.') return 0 13 | }) 14 | } 15 | -------------------------------------------------------------------------------- /examples/character-recognition/simple/index.js: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * Dependencies. 4 | */ 5 | 6 | const character = require('./character') 7 | const Mind = require('../../..') 8 | 9 | /** 10 | * Letters. 11 | * 12 | * - Imagine these # and . represent black and white pixels. 13 | */ 14 | 15 | const a = character( 16 | '.#####.' + 17 | '#.....#' + 18 | '#.....#' + 19 | '#######' + 20 | '#.....#' + 21 | '#.....#' + 22 | '#.....#' 23 | ) 24 | 25 | const b = character( 26 | '######.' + 27 | '#.....#' + 28 | '#.....#' + 29 | '######.' + 30 | '#.....#' + 31 | '#.....#' + 32 | '######.' 33 | ) 34 | 35 | const c = character( 36 | '#######' + 37 | '#......' + 38 | '#......' + 39 | '#......' + 40 | '#......' + 41 | '#......' + 42 | '#######' 43 | ) 44 | 45 | /** 46 | * Learn the letters A through C. 47 | */ 48 | 49 | const mind = new Mind({ activator: 'sigmoid' }) 50 | .learn([ 51 | { input: a, output: map('a') }, 52 | { input: b, output: map('b') }, 53 | { input: c, output: map('c') } 54 | ]) 55 | 56 | /** 57 | * Predict the letter C, even with a pixel off. 58 | */ 59 | 60 | const result = mind.predict(character( 61 | '#######' + 62 | '#......' + 63 | '#......' + 64 | '#......' + 65 | '#......' + 66 | '##.....' + 67 | '#######' 68 | )) 69 | 70 | console.log(result) // ~ 0.5 71 | 72 | /** 73 | * Map the letter to a number. 74 | */ 75 | 76 | function map (letter) { 77 | if (letter === 'a') return [ 0.1 ] 78 | if (letter === 'b') return [ 0.3 ] 79 | if (letter === 'c') return [ 0.5 ] 80 | return 0 81 | } 82 | -------------------------------------------------------------------------------- /examples/download-upload/index.js: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * Dependencies. 4 | */ 5 | 6 | const Mind = require('../..') 7 | 8 | /** 9 | * Learn the XOR gate. 10 | */ 11 | 12 | const mind = new Mind() 13 | .learn([ 14 | { input: [0, 0], output: [ 0 ] }, 15 | { input: [0, 1], output: [ 1 ] }, 16 | { input: [1, 0], output: [ 1 ] }, 17 | { input: [1, 1], output: [ 0 ] } 18 | ]) 19 | 20 | /** 21 | * Download the mind. 22 | */ 23 | 24 | const downloadedMind = mind.download() 25 | 26 | /** 27 | * Upload the downloaded mind. 28 | */ 29 | 30 | const uploadedMind = new Mind().upload(downloadedMind) 31 | 32 | /** 33 | * Predict. 34 | */ 35 | 36 | const result = uploadedMind.predict([0, 1]) 37 | console.log(result) // ~ 1 38 | -------------------------------------------------------------------------------- /examples/exclusive-or/index.js: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * Dependencies. 4 | */ 5 | 6 | const Mind = require('../..') 7 | 8 | /** 9 | * Learn the XOR gate. 10 | */ 11 | 12 | const mind = new Mind() 13 | .learn([ 14 | { input: [0, 0], output: [ 0 ] }, 15 | { input: [0, 1], output: [ 1 ] }, 16 | { input: [1, 0], output: [ 1 ] }, 17 | { input: [1, 1], output: [ 0 ] } 18 | ]) 19 | 20 | const result = mind.predict([ 1, 0 ]) 21 | console.log(result) // ~ 1 22 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | const sigmoidPrime = require('sigmoid-prime') 2 | const Emitter = require('emitter-component') 3 | const htanPrime = require('htan-prime') 4 | const Matrix = require('node-matrix') 5 | const sigmoid = require('sigmoid') 6 | const sample = require('samples') 7 | const htan = require('htan') 8 | 9 | class Mind extends Emitter { 10 | /** 11 | * Initialize a new `Mind`. 12 | * 13 | * @param {Object} options 14 | * @return {Object} this 15 | * @api public 16 | */ 17 | 18 | constructor (options) { 19 | super() 20 | 21 | options = options || {} 22 | 23 | if (options.activator === 'sigmoid') { 24 | this.activate = sigmoid 25 | this.activatePrime = sigmoidPrime 26 | } else { 27 | this.activate = htan 28 | this.activatePrime = htanPrime 29 | } 30 | 31 | // hyperparameters 32 | this.learningRate = options.learningRate || 0.7 33 | this.hiddenLayers = options.hiddenLayers || 1 34 | this.hiddenUnits = options.hiddenUnits || 3 35 | this.iterations = options.iterations || 10000 36 | } 37 | 38 | /** 39 | * Learn. 40 | * 41 | * 1. Normalize examples 42 | * 2. Setup weights 43 | * 3. Forward propagate to generate a prediction 44 | * 4. Back propagate to adjust weights 45 | * 5. Repeat (3) and (4) `this.iterations` times 46 | * 47 | * These five steps enable our network to learn the relationship 48 | * between inputs and outputs. 49 | * 50 | * @param {Array} examples 51 | * @return {Object} this 52 | * @api public 53 | */ 54 | 55 | learn (examples) { 56 | examples = normalize(examples) 57 | 58 | if (!this.weights) { 59 | this.setup(examples) 60 | } 61 | 62 | for (let i = 0; i < this.iterations; i++) { 63 | const results = this.forward(examples) 64 | const errors = this.back(examples, results) 65 | this.emit('data', i, errors, results) 66 | } 67 | 68 | return this 69 | } 70 | 71 | /** 72 | * Setup the weights. 73 | * 74 | * @param {Object} examples 75 | * @api private 76 | */ 77 | 78 | setup (examples) { 79 | this.weights = [] 80 | 81 | // input > hidden 82 | this.weights.push( 83 | Matrix({ 84 | rows: examples.input[0].length, 85 | columns: this.hiddenUnits, 86 | values: sample 87 | }) 88 | ) 89 | 90 | // hidden > hidden 91 | for (let i = 1; i < this.hiddenLayers; i++) { 92 | this.weights.push( 93 | Matrix({ 94 | rows: this.hiddenUnits, 95 | columns: this.hiddenUnits, 96 | values: sample 97 | }) 98 | ) 99 | } 100 | 101 | // hidden > output 102 | this.weights.push( 103 | Matrix({ 104 | rows: this.hiddenUnits, 105 | columns: examples.output[0].length, 106 | values: sample 107 | }) 108 | ) 109 | } 110 | 111 | /** 112 | * Forward propagate. 113 | * 114 | * @param {Object} examples 115 | * @return {Array} results 116 | * @api private 117 | */ 118 | 119 | forward (examples) { 120 | const results = [] 121 | 122 | // input > hidden 123 | results.push(this.sum(this.weights[0], examples.input)) 124 | 125 | // hidden > hidden 126 | for (let i = 1; i < this.hiddenLayers; i++) { 127 | results.push(this.sum(this.weights[i], results[i - 1].result)) 128 | } 129 | 130 | // hidden > output 131 | results.push(this.sum(this.weights[this.weights.length - 1], results[results.length - 1].result)) 132 | 133 | return results 134 | } 135 | 136 | /** 137 | * Sum `weight` and `input`. 138 | * 139 | * @param {Matrix} weight 140 | * @param {Array} input 141 | * @return {Object} 142 | * @api private 143 | */ 144 | 145 | sum (weight, input) { 146 | const res = {} 147 | 148 | res.sum = Matrix.multiply(weight, input) 149 | res.result = res.sum.transform(this.activate) 150 | 151 | return res 152 | } 153 | 154 | /** 155 | * Back propagate. 156 | * 157 | * @param {Object} outputMatrix 158 | * @api private 159 | */ 160 | 161 | back (examples, results) { 162 | const activatePrime = this.activatePrime 163 | const hiddenLayers = this.hiddenLayers 164 | const learningRate = this.learningRate 165 | const weights = this.weights 166 | 167 | // output > hidden 168 | const error = Matrix.subtract(examples.output, results[results.length - 1].result) 169 | let delta = Matrix.multiplyElements(results[results.length - 1].sum.transform(activatePrime), error) 170 | let changes = Matrix.multiplyScalar(Matrix.multiply(delta, results[hiddenLayers - 1].result.transpose()), learningRate) 171 | weights[weights.length - 1] = Matrix.add(weights[weights.length - 1], changes) 172 | 173 | // hidden > hidden 174 | for (let i = 1; i < hiddenLayers; i++) { 175 | delta = Matrix.multiplyElements(Matrix.multiply(weights[weights.length - i].transpose(), delta), results[results.length - (i + 1)].sum.transform(activatePrime)) 176 | changes = Matrix.multiplyScalar(Matrix.multiply(delta, results[results.length - (i + 1)].result.transpose()), learningRate) 177 | weights[weights.length - (i + 1)] = Matrix.add(weights[weights.length - (i + 1)], changes) 178 | } 179 | 180 | // hidden > input 181 | delta = Matrix.multiplyElements(Matrix.multiply(weights[1].transpose(), delta), results[0].sum.transform(activatePrime)) 182 | changes = Matrix.multiplyScalar(Matrix.multiply(delta, examples.input.transpose()), learningRate) 183 | weights[0] = Matrix.add(weights[0], changes) 184 | 185 | return error 186 | } 187 | 188 | /** 189 | * Predict. 190 | * 191 | * @param {Array} input 192 | * @api public 193 | */ 194 | 195 | predict (input) { 196 | const results = this.forward({ input: Matrix([input]) }) 197 | return results[results.length - 1].result[0] 198 | } 199 | 200 | /** 201 | * Upload weights. 202 | * 203 | * @param {Object} weights 204 | * @return {Object} this 205 | * @api public 206 | */ 207 | 208 | upload (weights) { 209 | this.weights = weights 210 | return this 211 | } 212 | 213 | /** 214 | * Download weights. 215 | * 216 | * @return {Object} weights 217 | * @api public 218 | */ 219 | 220 | download () { 221 | return this.weights 222 | } 223 | } 224 | 225 | module.exports = Mind 226 | 227 | /** 228 | * Normalize the data. 229 | * 230 | * @param {Array} data 231 | * @return {Object} ret 232 | */ 233 | 234 | function normalize (data) { 235 | const ret = { input: [], output: [] } 236 | 237 | for (let i = 0; i < data.length; i++) { 238 | ret.output.push(data[i].output) 239 | ret.input.push(data[i].input) 240 | } 241 | 242 | ret.output = Matrix(ret.output) 243 | ret.input = Matrix(ret.input) 244 | 245 | return ret 246 | } 247 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "node-mind", 3 | "description": "A flexible neural network library", 4 | "author": "Steven Miller", 5 | "version": "1.0.1", 6 | "repository": { 7 | "type": "git", 8 | "url": "https://github.com/stevenmiller888/mind" 9 | }, 10 | "keywords": [ 11 | "machine-learning", 12 | "neural-network", 13 | "learning", 14 | "sigmoid", 15 | "network", 16 | "neuron", 17 | "neural", 18 | "mind", 19 | "nn" 20 | ], 21 | "main": "index.js", 22 | "license": "MIT", 23 | "dependencies": { 24 | "emitter-component": "^1.1.1", 25 | "htan": "0.0.3", 26 | "htan-prime": "0.0.1", 27 | "node-matrix": "0.1.1", 28 | "samples": "0.0.2", 29 | "sigmoid": "0.0.1", 30 | "sigmoid-prime": "0.0.1" 31 | }, 32 | "devDependencies": { 33 | "ava": "^0.19.1", 34 | "babel-eslint": "^7.2.3", 35 | "mind-xor": "0.0.3", 36 | "nyc": "^10.3.2", 37 | "png-img": "^1.1.1", 38 | "standard": "^10.0.2" 39 | }, 40 | "standard": { 41 | "parser": "babel-eslint" 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- 1 | const Matrix = require('node-matrix') 2 | const test = require('ava') 3 | const Mind = require('./') 4 | 5 | test('is a constructor', t => { 6 | const mind = new Mind() 7 | t.truthy(mind instanceof Mind) 8 | }) 9 | 10 | test('accepts the number of hidden layer units as an option', t => { 11 | const mind = new Mind({ hiddenUnits: 2 }) 12 | t.is(mind.hiddenUnits, 2) 13 | }) 14 | 15 | test('accepts the number of hidden layer neurons as an option', t => { 16 | const mind = new Mind({ hiddenLayers: 3 }) 17 | t.is(mind.hiddenLayers, 3) 18 | }) 19 | 20 | test('accepts the learning rate as an option', t => { 21 | const mind = new Mind({ learningRate: 0.7 }) 22 | t.is(mind.learningRate, 0.7) 23 | }) 24 | 25 | test('accepts the number of learning iterations as an option', t => { 26 | const mind = new Mind({ iterations: 100000 }) 27 | t.is(mind.iterations, 100000) 28 | }) 29 | 30 | test('accepts the kind of activation function as an option', t => { 31 | const mind = new Mind({ activator: 'htan' }) 32 | t.is(typeof mind.activate, 'function') 33 | }) 34 | 35 | test('initializes with an activation function by default', t => { 36 | const mind = new Mind() 37 | t.is(typeof mind.activate, 'function') 38 | }) 39 | 40 | test('initializes with the derivative of the activation function by default', t => { 41 | const mind = new Mind() 42 | t.is(typeof mind.activatePrime, 'function') 43 | }) 44 | 45 | test('downloads the weights', t => { 46 | const plugin = new Mind().learn([{ input: [ 0 ], output: [ 0 ] }]).download() 47 | t.is(plugin[0].numRows, 1) 48 | t.is(plugin[0].numCols, 3) 49 | t.is(plugin[1].numRows, 3) 50 | t.is(plugin[1].numCols, 1) 51 | }) 52 | 53 | test('uploads the weights', t => { 54 | const mind = new Mind().upload({ inputHidden: [], hiddenOutput: [] }) 55 | t.deepEqual(mind.weights.inputHidden, []) 56 | t.deepEqual(mind.weights.hiddenOutput, []) 57 | }) 58 | 59 | test('creates a weights matrix for the hidden layer to the output layer', t => { 60 | const mind = new Mind() 61 | .learn([ 62 | { input: [0, 0], output: [ 0 ] }, 63 | { input: [0, 1], output: [ 1 ] }, 64 | { input: [1, 0], output: [ 1 ] }, 65 | { input: [1, 1], output: [ 0 ] } 66 | ]) 67 | 68 | t.truthy(mind.weights[1] instanceof Matrix) 69 | }) 70 | 71 | test('creates a weights matrix for the input layer to the hidden layer', t => { 72 | const mind = new Mind() 73 | .learn([ 74 | { input: [0, 0], output: [ 0 ] }, 75 | { input: [0, 1], output: [ 1 ] }, 76 | { input: [1, 0], output: [ 1 ] }, 77 | { input: [1, 1], output: [ 0 ] } 78 | ]) 79 | 80 | t.truthy(mind.weights[0] instanceof Matrix) 81 | }) 82 | 83 | test('forward propagates the array argument and returns the output', t => { 84 | const mind = new Mind() 85 | .learn([ 86 | { input: [0, 0], output: [ 0 ] }, 87 | { input: [0, 1], output: [ 1 ] }, 88 | { input: [1, 0], output: [ 1 ] }, 89 | { input: [1, 1], output: [ 0 ] } 90 | ]) 91 | 92 | t.truthy(mind.predict([0, 0]) instanceof Array) 93 | }) 94 | -------------------------------------------------------------------------------- /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 | ajv-keywords@^1.0.0: 59 | version "1.5.1" 60 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 61 | 62 | ajv@^4.7.0, ajv@^4.9.1: 63 | version "4.11.8" 64 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 65 | dependencies: 66 | co "^4.6.0" 67 | json-stable-stringify "^1.0.1" 68 | 69 | align-text@^0.1.1, align-text@^0.1.3: 70 | version "0.1.4" 71 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 72 | dependencies: 73 | kind-of "^3.0.2" 74 | longest "^1.0.1" 75 | repeat-string "^1.5.2" 76 | 77 | amdefine@>=0.0.4: 78 | version "1.0.1" 79 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 80 | 81 | ansi-align@^2.0.0: 82 | version "2.0.0" 83 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" 84 | dependencies: 85 | string-width "^2.0.0" 86 | 87 | ansi-escapes@^1.1.0: 88 | version "1.4.0" 89 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 90 | 91 | ansi-regex@^2.0.0: 92 | version "2.1.1" 93 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 94 | 95 | ansi-styles@^2.2.1: 96 | version "2.2.1" 97 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 98 | 99 | ansi-styles@^3.0.0: 100 | version "3.0.0" 101 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.0.0.tgz#5404e93a544c4fec7f048262977bebfe3155e0c1" 102 | dependencies: 103 | color-convert "^1.0.0" 104 | 105 | ansi-styles@~1.0.0: 106 | version "1.0.0" 107 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-1.0.0.tgz#cb102df1c56f5123eab8b67cd7b98027a0279178" 108 | 109 | anymatch@^1.3.0: 110 | version "1.3.0" 111 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 112 | dependencies: 113 | arrify "^1.0.0" 114 | micromatch "^2.1.5" 115 | 116 | append-transform@^0.4.0: 117 | version "0.4.0" 118 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 119 | dependencies: 120 | default-require-extensions "^1.0.0" 121 | 122 | aproba@^1.0.3: 123 | version "1.1.1" 124 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab" 125 | 126 | archy@^1.0.0: 127 | version "1.0.0" 128 | resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" 129 | 130 | are-we-there-yet@~1.1.2: 131 | version "1.1.4" 132 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 133 | dependencies: 134 | delegates "^1.0.0" 135 | readable-stream "^2.0.6" 136 | 137 | argparse@^1.0.7: 138 | version "1.0.9" 139 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 140 | dependencies: 141 | sprintf-js "~1.0.2" 142 | 143 | arr-diff@^2.0.0: 144 | version "2.0.0" 145 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 146 | dependencies: 147 | arr-flatten "^1.0.1" 148 | 149 | arr-exclude@^1.0.0: 150 | version "1.0.0" 151 | resolved "https://registry.yarnpkg.com/arr-exclude/-/arr-exclude-1.0.0.tgz#dfc7c2e552a270723ccda04cf3128c8cbfe5c631" 152 | 153 | arr-flatten@^1.0.1: 154 | version "1.0.3" 155 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1" 156 | 157 | array-differ@^1.0.0: 158 | version "1.0.0" 159 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" 160 | 161 | array-find-index@^1.0.1: 162 | version "1.0.2" 163 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 164 | 165 | array-union@^1.0.1: 166 | version "1.0.2" 167 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 168 | dependencies: 169 | array-uniq "^1.0.1" 170 | 171 | array-uniq@^1.0.1, array-uniq@^1.0.2: 172 | version "1.0.3" 173 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 174 | 175 | array-unique@^0.2.1: 176 | version "0.2.1" 177 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 178 | 179 | array.prototype.find@^2.0.1: 180 | version "2.0.4" 181 | resolved "https://registry.yarnpkg.com/array.prototype.find/-/array.prototype.find-2.0.4.tgz#556a5c5362c08648323ddaeb9de9d14bc1864c90" 182 | dependencies: 183 | define-properties "^1.1.2" 184 | es-abstract "^1.7.0" 185 | 186 | arrify@^1.0.0, arrify@^1.0.1: 187 | version "1.0.1" 188 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 189 | 190 | asn1@~0.2.3: 191 | version "0.2.3" 192 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 193 | 194 | assert-plus@1.0.0, assert-plus@^1.0.0: 195 | version "1.0.0" 196 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 197 | 198 | assert-plus@^0.2.0: 199 | version "0.2.0" 200 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 201 | 202 | async-each@^1.0.0: 203 | version "1.0.1" 204 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 205 | 206 | async@^1.4.0: 207 | version "1.5.2" 208 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 209 | 210 | asynckit@^0.4.0: 211 | version "0.4.0" 212 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 213 | 214 | auto-bind@^1.1.0: 215 | version "1.1.0" 216 | resolved "https://registry.yarnpkg.com/auto-bind/-/auto-bind-1.1.0.tgz#93b864dc7ee01a326281775d5c75ca0a751e5961" 217 | 218 | ava-init@^0.2.0: 219 | version "0.2.0" 220 | resolved "https://registry.yarnpkg.com/ava-init/-/ava-init-0.2.0.tgz#9304c8b4c357d66e3dfdae1fbff47b1199d5c55d" 221 | dependencies: 222 | arr-exclude "^1.0.0" 223 | execa "^0.5.0" 224 | has-yarn "^1.0.0" 225 | read-pkg-up "^2.0.0" 226 | write-pkg "^2.0.0" 227 | 228 | ava@^0.19.1: 229 | version "0.19.1" 230 | resolved "https://registry.yarnpkg.com/ava/-/ava-0.19.1.tgz#43dd82435ad19b3980ffca2488f05daab940b273" 231 | dependencies: 232 | "@ava/babel-preset-stage-4" "^1.0.0" 233 | "@ava/babel-preset-transform-test-files" "^3.0.0" 234 | "@ava/pretty-format" "^1.1.0" 235 | arr-flatten "^1.0.1" 236 | array-union "^1.0.1" 237 | array-uniq "^1.0.2" 238 | arrify "^1.0.0" 239 | auto-bind "^1.1.0" 240 | ava-init "^0.2.0" 241 | babel-code-frame "^6.16.0" 242 | babel-core "^6.17.0" 243 | bluebird "^3.0.0" 244 | caching-transform "^1.0.0" 245 | chalk "^1.0.0" 246 | chokidar "^1.4.2" 247 | clean-stack "^1.1.1" 248 | clean-yaml-object "^0.1.0" 249 | cli-cursor "^2.1.0" 250 | cli-spinners "^1.0.0" 251 | cli-truncate "^1.0.0" 252 | co-with-promise "^4.6.0" 253 | code-excerpt "^2.1.0" 254 | common-path-prefix "^1.0.0" 255 | convert-source-map "^1.2.0" 256 | core-assert "^0.2.0" 257 | currently-unhandled "^0.4.1" 258 | debug "^2.2.0" 259 | diff "^3.0.1" 260 | diff-match-patch "^1.0.0" 261 | dot-prop "^4.1.0" 262 | empower-core "^0.6.1" 263 | equal-length "^1.0.0" 264 | figures "^2.0.0" 265 | find-cache-dir "^0.1.1" 266 | fn-name "^2.0.0" 267 | get-port "^3.0.0" 268 | globby "^6.0.0" 269 | has-flag "^2.0.0" 270 | hullabaloo-config-manager "^1.0.0" 271 | ignore-by-default "^1.0.0" 272 | indent-string "^3.0.0" 273 | is-ci "^1.0.7" 274 | is-generator-fn "^1.0.0" 275 | is-obj "^1.0.0" 276 | is-observable "^0.2.0" 277 | is-promise "^2.1.0" 278 | jest-diff "19.0.0" 279 | jest-snapshot "19.0.2" 280 | js-yaml "^3.8.2" 281 | last-line-stream "^1.0.0" 282 | lodash.debounce "^4.0.3" 283 | lodash.difference "^4.3.0" 284 | lodash.flatten "^4.2.0" 285 | lodash.isequal "^4.5.0" 286 | loud-rejection "^1.2.0" 287 | matcher "^0.1.1" 288 | md5-hex "^2.0.0" 289 | meow "^3.7.0" 290 | mkdirp "^0.5.1" 291 | ms "^0.7.1" 292 | multimatch "^2.1.0" 293 | observable-to-promise "^0.5.0" 294 | option-chain "^0.1.0" 295 | package-hash "^2.0.0" 296 | pkg-conf "^2.0.0" 297 | plur "^2.0.0" 298 | pretty-ms "^2.0.0" 299 | require-precompiled "^0.1.0" 300 | resolve-cwd "^1.0.0" 301 | slash "^1.0.0" 302 | source-map-support "^0.4.0" 303 | stack-utils "^1.0.0" 304 | strip-ansi "^3.0.1" 305 | strip-bom-buf "^1.0.0" 306 | supports-color "^3.2.3" 307 | time-require "^0.1.2" 308 | unique-temp-dir "^1.0.0" 309 | update-notifier "^2.1.0" 310 | 311 | aws-sign2@~0.6.0: 312 | version "0.6.0" 313 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 314 | 315 | aws4@^1.2.1: 316 | version "1.6.0" 317 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 318 | 319 | babel-code-frame@^6.16.0, babel-code-frame@^6.22.0: 320 | version "6.22.0" 321 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 322 | dependencies: 323 | chalk "^1.1.0" 324 | esutils "^2.0.2" 325 | js-tokens "^3.0.0" 326 | 327 | babel-core@^6.17.0, babel-core@^6.24.1: 328 | version "6.24.1" 329 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.1.tgz#8c428564dce1e1f41fb337ec34f4c3b022b5ad83" 330 | dependencies: 331 | babel-code-frame "^6.22.0" 332 | babel-generator "^6.24.1" 333 | babel-helpers "^6.24.1" 334 | babel-messages "^6.23.0" 335 | babel-register "^6.24.1" 336 | babel-runtime "^6.22.0" 337 | babel-template "^6.24.1" 338 | babel-traverse "^6.24.1" 339 | babel-types "^6.24.1" 340 | babylon "^6.11.0" 341 | convert-source-map "^1.1.0" 342 | debug "^2.1.1" 343 | json5 "^0.5.0" 344 | lodash "^4.2.0" 345 | minimatch "^3.0.2" 346 | path-is-absolute "^1.0.0" 347 | private "^0.1.6" 348 | slash "^1.0.0" 349 | source-map "^0.5.0" 350 | 351 | babel-eslint@^7.2.3: 352 | version "7.2.3" 353 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.2.3.tgz#b2fe2d80126470f5c19442dc757253a897710827" 354 | dependencies: 355 | babel-code-frame "^6.22.0" 356 | babel-traverse "^6.23.1" 357 | babel-types "^6.23.0" 358 | babylon "^6.17.0" 359 | 360 | babel-generator@^6.1.0, babel-generator@^6.18.0, babel-generator@^6.24.1: 361 | version "6.24.1" 362 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.1.tgz#e715f486c58ded25649d888944d52aa07c5d9497" 363 | dependencies: 364 | babel-messages "^6.23.0" 365 | babel-runtime "^6.22.0" 366 | babel-types "^6.24.1" 367 | detect-indent "^4.0.0" 368 | jsesc "^1.3.0" 369 | lodash "^4.2.0" 370 | source-map "^0.5.0" 371 | trim-right "^1.0.1" 372 | 373 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 374 | version "6.24.1" 375 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 376 | dependencies: 377 | babel-helper-explode-assignable-expression "^6.24.1" 378 | babel-runtime "^6.22.0" 379 | babel-types "^6.24.1" 380 | 381 | babel-helper-call-delegate@^6.24.1: 382 | version "6.24.1" 383 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 384 | dependencies: 385 | babel-helper-hoist-variables "^6.24.1" 386 | babel-runtime "^6.22.0" 387 | babel-traverse "^6.24.1" 388 | babel-types "^6.24.1" 389 | 390 | babel-helper-explode-assignable-expression@^6.24.1: 391 | version "6.24.1" 392 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 393 | dependencies: 394 | babel-runtime "^6.22.0" 395 | babel-traverse "^6.24.1" 396 | babel-types "^6.24.1" 397 | 398 | babel-helper-function-name@^6.24.1: 399 | version "6.24.1" 400 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 401 | dependencies: 402 | babel-helper-get-function-arity "^6.24.1" 403 | babel-runtime "^6.22.0" 404 | babel-template "^6.24.1" 405 | babel-traverse "^6.24.1" 406 | babel-types "^6.24.1" 407 | 408 | babel-helper-get-function-arity@^6.24.1: 409 | version "6.24.1" 410 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 411 | dependencies: 412 | babel-runtime "^6.22.0" 413 | babel-types "^6.24.1" 414 | 415 | babel-helper-hoist-variables@^6.24.1: 416 | version "6.24.1" 417 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 418 | dependencies: 419 | babel-runtime "^6.22.0" 420 | babel-types "^6.24.1" 421 | 422 | babel-helper-regex@^6.24.1: 423 | version "6.24.1" 424 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8" 425 | dependencies: 426 | babel-runtime "^6.22.0" 427 | babel-types "^6.24.1" 428 | lodash "^4.2.0" 429 | 430 | babel-helper-remap-async-to-generator@^6.24.1: 431 | version "6.24.1" 432 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 433 | dependencies: 434 | babel-helper-function-name "^6.24.1" 435 | babel-runtime "^6.22.0" 436 | babel-template "^6.24.1" 437 | babel-traverse "^6.24.1" 438 | babel-types "^6.24.1" 439 | 440 | babel-helpers@^6.24.1: 441 | version "6.24.1" 442 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 443 | dependencies: 444 | babel-runtime "^6.22.0" 445 | babel-template "^6.24.1" 446 | 447 | babel-messages@^6.23.0: 448 | version "6.23.0" 449 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 450 | dependencies: 451 | babel-runtime "^6.22.0" 452 | 453 | babel-plugin-check-es2015-constants@^6.8.0: 454 | version "6.22.0" 455 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 456 | dependencies: 457 | babel-runtime "^6.22.0" 458 | 459 | babel-plugin-espower@^2.3.2: 460 | version "2.3.2" 461 | resolved "https://registry.yarnpkg.com/babel-plugin-espower/-/babel-plugin-espower-2.3.2.tgz#5516b8fcdb26c9f0e1d8160749f6e4c65e71271e" 462 | dependencies: 463 | babel-generator "^6.1.0" 464 | babylon "^6.1.0" 465 | call-matcher "^1.0.0" 466 | core-js "^2.0.0" 467 | espower-location-detector "^1.0.0" 468 | espurify "^1.6.0" 469 | estraverse "^4.1.1" 470 | 471 | babel-plugin-syntax-async-functions@^6.8.0: 472 | version "6.13.0" 473 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 474 | 475 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 476 | version "6.13.0" 477 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 478 | 479 | babel-plugin-syntax-trailing-function-commas@^6.20.0: 480 | version "6.22.0" 481 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 482 | 483 | babel-plugin-transform-async-to-generator@^6.16.0: 484 | version "6.24.1" 485 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 486 | dependencies: 487 | babel-helper-remap-async-to-generator "^6.24.1" 488 | babel-plugin-syntax-async-functions "^6.8.0" 489 | babel-runtime "^6.22.0" 490 | 491 | babel-plugin-transform-es2015-destructuring@^6.19.0: 492 | version "6.23.0" 493 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 494 | dependencies: 495 | babel-runtime "^6.22.0" 496 | 497 | babel-plugin-transform-es2015-function-name@^6.9.0: 498 | version "6.24.1" 499 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 500 | dependencies: 501 | babel-helper-function-name "^6.24.1" 502 | babel-runtime "^6.22.0" 503 | babel-types "^6.24.1" 504 | 505 | babel-plugin-transform-es2015-modules-commonjs@^6.18.0: 506 | version "6.24.1" 507 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" 508 | dependencies: 509 | babel-plugin-transform-strict-mode "^6.24.1" 510 | babel-runtime "^6.22.0" 511 | babel-template "^6.24.1" 512 | babel-types "^6.24.1" 513 | 514 | babel-plugin-transform-es2015-parameters@^6.21.0: 515 | version "6.24.1" 516 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 517 | dependencies: 518 | babel-helper-call-delegate "^6.24.1" 519 | babel-helper-get-function-arity "^6.24.1" 520 | babel-runtime "^6.22.0" 521 | babel-template "^6.24.1" 522 | babel-traverse "^6.24.1" 523 | babel-types "^6.24.1" 524 | 525 | babel-plugin-transform-es2015-spread@^6.8.0: 526 | version "6.22.0" 527 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 528 | dependencies: 529 | babel-runtime "^6.22.0" 530 | 531 | babel-plugin-transform-es2015-sticky-regex@^6.8.0: 532 | version "6.24.1" 533 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 534 | dependencies: 535 | babel-helper-regex "^6.24.1" 536 | babel-runtime "^6.22.0" 537 | babel-types "^6.24.1" 538 | 539 | babel-plugin-transform-es2015-unicode-regex@^6.11.0: 540 | version "6.24.1" 541 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 542 | dependencies: 543 | babel-helper-regex "^6.24.1" 544 | babel-runtime "^6.22.0" 545 | regexpu-core "^2.0.0" 546 | 547 | babel-plugin-transform-exponentiation-operator@^6.8.0: 548 | version "6.24.1" 549 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 550 | dependencies: 551 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 552 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 553 | babel-runtime "^6.22.0" 554 | 555 | babel-plugin-transform-strict-mode@^6.24.1: 556 | version "6.24.1" 557 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 558 | dependencies: 559 | babel-runtime "^6.22.0" 560 | babel-types "^6.24.1" 561 | 562 | babel-register@^6.24.1: 563 | version "6.24.1" 564 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 565 | dependencies: 566 | babel-core "^6.24.1" 567 | babel-runtime "^6.22.0" 568 | core-js "^2.4.0" 569 | home-or-tmp "^2.0.0" 570 | lodash "^4.2.0" 571 | mkdirp "^0.5.1" 572 | source-map-support "^0.4.2" 573 | 574 | babel-runtime@^6.22.0: 575 | version "6.23.0" 576 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 577 | dependencies: 578 | core-js "^2.4.0" 579 | regenerator-runtime "^0.10.0" 580 | 581 | babel-template@^6.16.0, babel-template@^6.24.1: 582 | version "6.24.1" 583 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333" 584 | dependencies: 585 | babel-runtime "^6.22.0" 586 | babel-traverse "^6.24.1" 587 | babel-types "^6.24.1" 588 | babylon "^6.11.0" 589 | lodash "^4.2.0" 590 | 591 | babel-traverse@^6.18.0, babel-traverse@^6.23.1, babel-traverse@^6.24.1: 592 | version "6.24.1" 593 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695" 594 | dependencies: 595 | babel-code-frame "^6.22.0" 596 | babel-messages "^6.23.0" 597 | babel-runtime "^6.22.0" 598 | babel-types "^6.24.1" 599 | babylon "^6.15.0" 600 | debug "^2.2.0" 601 | globals "^9.0.0" 602 | invariant "^2.2.0" 603 | lodash "^4.2.0" 604 | 605 | babel-types@^6.18.0, babel-types@^6.23.0, babel-types@^6.24.1: 606 | version "6.24.1" 607 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975" 608 | dependencies: 609 | babel-runtime "^6.22.0" 610 | esutils "^2.0.2" 611 | lodash "^4.2.0" 612 | to-fast-properties "^1.0.1" 613 | 614 | babylon@^6.1.0, babylon@^6.11.0, babylon@^6.13.0, babylon@^6.15.0, babylon@^6.17.0: 615 | version "6.17.1" 616 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.1.tgz#17f14fddf361b695981fe679385e4f1c01ebd86f" 617 | 618 | balanced-match@^0.4.1: 619 | version "0.4.2" 620 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 621 | 622 | bcrypt-pbkdf@^1.0.0: 623 | version "1.0.1" 624 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 625 | dependencies: 626 | tweetnacl "^0.14.3" 627 | 628 | binary-extensions@^1.0.0: 629 | version "1.8.0" 630 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 631 | 632 | block-stream@*: 633 | version "0.0.9" 634 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 635 | dependencies: 636 | inherits "~2.0.0" 637 | 638 | bluebird@^3.0.0: 639 | version "3.5.0" 640 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.0.tgz#791420d7f551eea2897453a8a77653f96606d67c" 641 | 642 | boom@2.x.x: 643 | version "2.10.1" 644 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 645 | dependencies: 646 | hoek "2.x.x" 647 | 648 | boxen@^1.0.0: 649 | version "1.1.0" 650 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.1.0.tgz#b1b69dd522305e807a99deee777dbd6e5167b102" 651 | dependencies: 652 | ansi-align "^2.0.0" 653 | camelcase "^4.0.0" 654 | chalk "^1.1.1" 655 | cli-boxes "^1.0.0" 656 | string-width "^2.0.0" 657 | term-size "^0.1.0" 658 | widest-line "^1.0.0" 659 | 660 | brace-expansion@^1.1.7: 661 | version "1.1.7" 662 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.7.tgz#3effc3c50e000531fb720eaff80f0ae8ef23cf59" 663 | dependencies: 664 | balanced-match "^0.4.1" 665 | concat-map "0.0.1" 666 | 667 | braces@^1.8.2: 668 | version "1.8.5" 669 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 670 | dependencies: 671 | expand-range "^1.8.1" 672 | preserve "^0.2.0" 673 | repeat-element "^1.1.2" 674 | 675 | buf-compare@^1.0.0: 676 | version "1.0.1" 677 | resolved "https://registry.yarnpkg.com/buf-compare/-/buf-compare-1.0.1.tgz#fef28da8b8113a0a0db4430b0b6467b69730b34a" 678 | 679 | buffer-shims@~1.0.0: 680 | version "1.0.0" 681 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 682 | 683 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 684 | version "1.1.1" 685 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 686 | 687 | caching-transform@^1.0.0: 688 | version "1.0.1" 689 | resolved "https://registry.yarnpkg.com/caching-transform/-/caching-transform-1.0.1.tgz#6dbdb2f20f8d8fbce79f3e94e9d1742dcdf5c0a1" 690 | dependencies: 691 | md5-hex "^1.2.0" 692 | mkdirp "^0.5.1" 693 | write-file-atomic "^1.1.4" 694 | 695 | call-matcher@^1.0.0: 696 | version "1.0.1" 697 | resolved "https://registry.yarnpkg.com/call-matcher/-/call-matcher-1.0.1.tgz#5134d077984f712a54dad3cbf62de28dce416ca8" 698 | dependencies: 699 | core-js "^2.0.0" 700 | deep-equal "^1.0.0" 701 | espurify "^1.6.0" 702 | estraverse "^4.0.0" 703 | 704 | call-signature@0.0.2: 705 | version "0.0.2" 706 | resolved "https://registry.yarnpkg.com/call-signature/-/call-signature-0.0.2.tgz#a84abc825a55ef4cb2b028bd74e205a65b9a4996" 707 | 708 | caller-path@^0.1.0: 709 | version "0.1.0" 710 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 711 | dependencies: 712 | callsites "^0.2.0" 713 | 714 | callsites@^0.2.0: 715 | version "0.2.0" 716 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 717 | 718 | camelcase-keys@^2.0.0: 719 | version "2.1.0" 720 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 721 | dependencies: 722 | camelcase "^2.0.0" 723 | map-obj "^1.0.0" 724 | 725 | camelcase@^1.0.2: 726 | version "1.2.1" 727 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 728 | 729 | camelcase@^2.0.0: 730 | version "2.1.1" 731 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 732 | 733 | camelcase@^3.0.0: 734 | version "3.0.0" 735 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 736 | 737 | camelcase@^4.0.0: 738 | version "4.1.0" 739 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 740 | 741 | capture-stack-trace@^1.0.0: 742 | version "1.0.0" 743 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" 744 | 745 | caseless@~0.12.0: 746 | version "0.12.0" 747 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 748 | 749 | center-align@^0.1.1: 750 | version "0.1.3" 751 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 752 | dependencies: 753 | align-text "^0.1.3" 754 | lazy-cache "^1.0.3" 755 | 756 | chalk@^0.4.0: 757 | version "0.4.0" 758 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-0.4.0.tgz#5199a3ddcd0c1efe23bc08c1b027b06176e0c64f" 759 | dependencies: 760 | ansi-styles "~1.0.0" 761 | has-color "~0.1.0" 762 | strip-ansi "~0.1.0" 763 | 764 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 765 | version "1.1.3" 766 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 767 | dependencies: 768 | ansi-styles "^2.2.1" 769 | escape-string-regexp "^1.0.2" 770 | has-ansi "^2.0.0" 771 | strip-ansi "^3.0.0" 772 | supports-color "^2.0.0" 773 | 774 | chokidar@^1.4.2: 775 | version "1.7.0" 776 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 777 | dependencies: 778 | anymatch "^1.3.0" 779 | async-each "^1.0.0" 780 | glob-parent "^2.0.0" 781 | inherits "^2.0.1" 782 | is-binary-path "^1.0.0" 783 | is-glob "^2.0.0" 784 | path-is-absolute "^1.0.0" 785 | readdirp "^2.0.0" 786 | optionalDependencies: 787 | fsevents "^1.0.0" 788 | 789 | ci-info@^1.0.0: 790 | version "1.0.0" 791 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 792 | 793 | circular-json@^0.3.1: 794 | version "0.3.1" 795 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 796 | 797 | clean-stack@^1.1.1: 798 | version "1.3.0" 799 | resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-1.3.0.tgz#9e821501ae979986c46b1d66d2d432db2fd4ae31" 800 | 801 | clean-yaml-object@^0.1.0: 802 | version "0.1.0" 803 | resolved "https://registry.yarnpkg.com/clean-yaml-object/-/clean-yaml-object-0.1.0.tgz#63fb110dc2ce1a84dc21f6d9334876d010ae8b68" 804 | 805 | cli-boxes@^1.0.0: 806 | version "1.0.0" 807 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 808 | 809 | cli-cursor@^1.0.1: 810 | version "1.0.2" 811 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 812 | dependencies: 813 | restore-cursor "^1.0.1" 814 | 815 | cli-cursor@^2.1.0: 816 | version "2.1.0" 817 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 818 | dependencies: 819 | restore-cursor "^2.0.0" 820 | 821 | cli-spinners@^1.0.0: 822 | version "1.0.0" 823 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-1.0.0.tgz#ef987ed3d48391ac3dab9180b406a742180d6e6a" 824 | 825 | cli-truncate@^1.0.0: 826 | version "1.0.0" 827 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-1.0.0.tgz#21eb91f47b3f6560f004db77a769b4668d9c5518" 828 | dependencies: 829 | slice-ansi "0.0.4" 830 | string-width "^2.0.0" 831 | 832 | cli-width@^2.0.0: 833 | version "2.1.0" 834 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 835 | 836 | cliui@^2.1.0: 837 | version "2.1.0" 838 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 839 | dependencies: 840 | center-align "^0.1.1" 841 | right-align "^0.1.1" 842 | wordwrap "0.0.2" 843 | 844 | cliui@^3.2.0: 845 | version "3.2.0" 846 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 847 | dependencies: 848 | string-width "^1.0.1" 849 | strip-ansi "^3.0.1" 850 | wrap-ansi "^2.0.0" 851 | 852 | co-with-promise@^4.6.0: 853 | version "4.6.0" 854 | resolved "https://registry.yarnpkg.com/co-with-promise/-/co-with-promise-4.6.0.tgz#413e7db6f5893a60b942cf492c4bec93db415ab7" 855 | dependencies: 856 | pinkie-promise "^1.0.0" 857 | 858 | co@^4.6.0: 859 | version "4.6.0" 860 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 861 | 862 | code-excerpt@^2.1.0: 863 | version "2.1.0" 864 | resolved "https://registry.yarnpkg.com/code-excerpt/-/code-excerpt-2.1.0.tgz#5dcc081e88f4a7e3b554e9e35d7ef232d47f8147" 865 | dependencies: 866 | convert-to-spaces "^1.0.1" 867 | 868 | code-point-at@^1.0.0: 869 | version "1.1.0" 870 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 871 | 872 | color-convert@^1.0.0: 873 | version "1.9.0" 874 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 875 | dependencies: 876 | color-name "^1.1.1" 877 | 878 | color-name@^1.1.1: 879 | version "1.1.2" 880 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.2.tgz#5c8ab72b64bd2215d617ae9559ebb148475cf98d" 881 | 882 | combined-stream@^1.0.5, combined-stream@~1.0.5: 883 | version "1.0.5" 884 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 885 | dependencies: 886 | delayed-stream "~1.0.0" 887 | 888 | common-path-prefix@^1.0.0: 889 | version "1.0.0" 890 | resolved "https://registry.yarnpkg.com/common-path-prefix/-/common-path-prefix-1.0.0.tgz#cd52f6f0712e0baab97d6f9732874f22f47752c0" 891 | 892 | commondir@^1.0.1: 893 | version "1.0.1" 894 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 895 | 896 | concat-map@0.0.1: 897 | version "0.0.1" 898 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 899 | 900 | concat-stream@^1.5.2: 901 | version "1.6.0" 902 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 903 | dependencies: 904 | inherits "^2.0.3" 905 | readable-stream "^2.2.2" 906 | typedarray "^0.0.6" 907 | 908 | configstore@^3.0.0: 909 | version "3.1.0" 910 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.0.tgz#45df907073e26dfa1cf4b2d52f5b60545eaa11d1" 911 | dependencies: 912 | dot-prop "^4.1.0" 913 | graceful-fs "^4.1.2" 914 | make-dir "^1.0.0" 915 | unique-string "^1.0.0" 916 | write-file-atomic "^2.0.0" 917 | xdg-basedir "^3.0.0" 918 | 919 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 920 | version "1.1.0" 921 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 922 | 923 | contains-path@^0.1.0: 924 | version "0.1.0" 925 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 926 | 927 | convert-source-map@^1.1.0, convert-source-map@^1.2.0, convert-source-map@^1.3.0: 928 | version "1.5.0" 929 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 930 | 931 | convert-to-spaces@^1.0.1: 932 | version "1.0.2" 933 | resolved "https://registry.yarnpkg.com/convert-to-spaces/-/convert-to-spaces-1.0.2.tgz#7e3e48bbe6d997b1417ddca2868204b4d3d85715" 934 | 935 | core-assert@^0.2.0: 936 | version "0.2.1" 937 | resolved "https://registry.yarnpkg.com/core-assert/-/core-assert-0.2.1.tgz#f85e2cf9bfed28f773cc8b3fa5c5b69bdc02fe3f" 938 | dependencies: 939 | buf-compare "^1.0.0" 940 | is-error "^2.2.0" 941 | 942 | core-js@^2.0.0, core-js@^2.4.0: 943 | version "2.4.1" 944 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 945 | 946 | core-util-is@~1.0.0: 947 | version "1.0.2" 948 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 949 | 950 | create-error-class@^3.0.0: 951 | version "3.0.2" 952 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" 953 | dependencies: 954 | capture-stack-trace "^1.0.0" 955 | 956 | cross-spawn-async@^2.1.1: 957 | version "2.2.5" 958 | resolved "https://registry.yarnpkg.com/cross-spawn-async/-/cross-spawn-async-2.2.5.tgz#845ff0c0834a3ded9d160daca6d390906bb288cc" 959 | dependencies: 960 | lru-cache "^4.0.0" 961 | which "^1.2.8" 962 | 963 | cross-spawn@^4, cross-spawn@^4.0.0: 964 | version "4.0.2" 965 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41" 966 | dependencies: 967 | lru-cache "^4.0.1" 968 | which "^1.2.9" 969 | 970 | cryptiles@2.x.x: 971 | version "2.0.5" 972 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 973 | dependencies: 974 | boom "2.x.x" 975 | 976 | crypto-random-string@^1.0.0: 977 | version "1.0.0" 978 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" 979 | 980 | currently-unhandled@^0.4.1: 981 | version "0.4.1" 982 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 983 | dependencies: 984 | array-find-index "^1.0.1" 985 | 986 | d@1: 987 | version "1.0.0" 988 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 989 | dependencies: 990 | es5-ext "^0.10.9" 991 | 992 | dashdash@^1.12.0: 993 | version "1.14.1" 994 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 995 | dependencies: 996 | assert-plus "^1.0.0" 997 | 998 | date-time@^0.1.1: 999 | version "0.1.1" 1000 | resolved "https://registry.yarnpkg.com/date-time/-/date-time-0.1.1.tgz#ed2f6d93d9790ce2fd66d5b5ff3edd5bbcbf3b07" 1001 | 1002 | debug-log@^1.0.0, debug-log@^1.0.1: 1003 | version "1.0.1" 1004 | resolved "https://registry.yarnpkg.com/debug-log/-/debug-log-1.0.1.tgz#2307632d4c04382b8df8a32f70b895046d52745f" 1005 | 1006 | debug@2.2.0: 1007 | version "2.2.0" 1008 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 1009 | dependencies: 1010 | ms "0.7.1" 1011 | 1012 | debug@^2.1.1, debug@^2.2.0, debug@^2.6.3: 1013 | version "2.6.8" 1014 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 1015 | dependencies: 1016 | ms "2.0.0" 1017 | 1018 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: 1019 | version "1.2.0" 1020 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1021 | 1022 | deep-equal@^1.0.0: 1023 | version "1.0.1" 1024 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" 1025 | 1026 | deep-extend@~0.4.0: 1027 | version "0.4.2" 1028 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1029 | 1030 | deep-is@~0.1.3: 1031 | version "0.1.3" 1032 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1033 | 1034 | default-require-extensions@^1.0.0: 1035 | version "1.0.0" 1036 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 1037 | dependencies: 1038 | strip-bom "^2.0.0" 1039 | 1040 | define-properties@^1.1.2: 1041 | version "1.1.2" 1042 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 1043 | dependencies: 1044 | foreach "^2.0.5" 1045 | object-keys "^1.0.8" 1046 | 1047 | deglob@^2.1.0: 1048 | version "2.1.0" 1049 | resolved "https://registry.yarnpkg.com/deglob/-/deglob-2.1.0.tgz#4d44abe16ef32c779b4972bd141a80325029a14a" 1050 | dependencies: 1051 | find-root "^1.0.0" 1052 | glob "^7.0.5" 1053 | ignore "^3.0.9" 1054 | pkg-config "^1.1.0" 1055 | run-parallel "^1.1.2" 1056 | uniq "^1.0.1" 1057 | 1058 | del@^2.0.2: 1059 | version "2.2.2" 1060 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1061 | dependencies: 1062 | globby "^5.0.0" 1063 | is-path-cwd "^1.0.0" 1064 | is-path-in-cwd "^1.0.0" 1065 | object-assign "^4.0.1" 1066 | pify "^2.0.0" 1067 | pinkie-promise "^2.0.0" 1068 | rimraf "^2.2.8" 1069 | 1070 | delayed-stream@~1.0.0: 1071 | version "1.0.0" 1072 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1073 | 1074 | delegates@^1.0.0: 1075 | version "1.0.0" 1076 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1077 | 1078 | detect-indent@^4.0.0: 1079 | version "4.0.0" 1080 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1081 | dependencies: 1082 | repeating "^2.0.0" 1083 | 1084 | diff-match-patch@^1.0.0: 1085 | version "1.0.0" 1086 | resolved "https://registry.yarnpkg.com/diff-match-patch/-/diff-match-patch-1.0.0.tgz#1cc3c83a490d67f95d91e39f6ad1f2e086b63048" 1087 | 1088 | diff@^3.0.0, diff@^3.0.1: 1089 | version "3.2.0" 1090 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 1091 | 1092 | doctrine@1.5.0, doctrine@^1.2.2: 1093 | version "1.5.0" 1094 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 1095 | dependencies: 1096 | esutils "^2.0.2" 1097 | isarray "^1.0.0" 1098 | 1099 | doctrine@^2.0.0: 1100 | version "2.0.0" 1101 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" 1102 | dependencies: 1103 | esutils "^2.0.2" 1104 | isarray "^1.0.0" 1105 | 1106 | dot-prop@^4.1.0: 1107 | version "4.1.1" 1108 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.1.1.tgz#a8493f0b7b5eeec82525b5c7587fa7de7ca859c1" 1109 | dependencies: 1110 | is-obj "^1.0.0" 1111 | 1112 | duplexer3@^0.1.4: 1113 | version "0.1.4" 1114 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" 1115 | 1116 | ecc-jsbn@~0.1.1: 1117 | version "0.1.1" 1118 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1119 | dependencies: 1120 | jsbn "~0.1.0" 1121 | 1122 | emitter-component@^1.1.1: 1123 | version "1.1.1" 1124 | resolved "https://registry.yarnpkg.com/emitter-component/-/emitter-component-1.1.1.tgz#065e2dbed6959bf470679edabeaf7981d1003ab6" 1125 | 1126 | empower-core@^0.6.1: 1127 | version "0.6.1" 1128 | resolved "https://registry.yarnpkg.com/empower-core/-/empower-core-0.6.1.tgz#6c187f502fcef7554d57933396aac655483772b1" 1129 | dependencies: 1130 | call-signature "0.0.2" 1131 | core-js "^2.0.0" 1132 | 1133 | equal-length@^1.0.0: 1134 | version "1.0.1" 1135 | resolved "https://registry.yarnpkg.com/equal-length/-/equal-length-1.0.1.tgz#21ca112d48ab24b4e1e7ffc0e5339d31fdfc274c" 1136 | 1137 | error-ex@^1.2.0: 1138 | version "1.3.1" 1139 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1140 | dependencies: 1141 | is-arrayish "^0.2.1" 1142 | 1143 | es-abstract@^1.7.0: 1144 | version "1.7.0" 1145 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.7.0.tgz#dfade774e01bfcd97f96180298c449c8623fb94c" 1146 | dependencies: 1147 | es-to-primitive "^1.1.1" 1148 | function-bind "^1.1.0" 1149 | is-callable "^1.1.3" 1150 | is-regex "^1.0.3" 1151 | 1152 | es-to-primitive@^1.1.1: 1153 | version "1.1.1" 1154 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 1155 | dependencies: 1156 | is-callable "^1.1.1" 1157 | is-date-object "^1.0.1" 1158 | is-symbol "^1.0.1" 1159 | 1160 | es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14: 1161 | version "0.10.21" 1162 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.21.tgz#19a725f9e51d0300bbc1e8e821109fd9daf55925" 1163 | dependencies: 1164 | es6-iterator "2" 1165 | es6-symbol "~3.1" 1166 | 1167 | es6-error@^4.0.1, es6-error@^4.0.2: 1168 | version "4.0.2" 1169 | resolved "https://registry.yarnpkg.com/es6-error/-/es6-error-4.0.2.tgz#eec5c726eacef51b7f6b73c20db6e1b13b069c98" 1170 | 1171 | es6-iterator@2, es6-iterator@^2.0.1, es6-iterator@~2.0.1: 1172 | version "2.0.1" 1173 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512" 1174 | dependencies: 1175 | d "1" 1176 | es5-ext "^0.10.14" 1177 | es6-symbol "^3.1" 1178 | 1179 | es6-map@^0.1.3: 1180 | version "0.1.5" 1181 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" 1182 | dependencies: 1183 | d "1" 1184 | es5-ext "~0.10.14" 1185 | es6-iterator "~2.0.1" 1186 | es6-set "~0.1.5" 1187 | es6-symbol "~3.1.1" 1188 | event-emitter "~0.3.5" 1189 | 1190 | es6-set@~0.1.5: 1191 | version "0.1.5" 1192 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" 1193 | dependencies: 1194 | d "1" 1195 | es5-ext "~0.10.14" 1196 | es6-iterator "~2.0.1" 1197 | es6-symbol "3.1.1" 1198 | event-emitter "~0.3.5" 1199 | 1200 | es6-symbol@3.1.1, es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1, es6-symbol@~3.1.1: 1201 | version "3.1.1" 1202 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 1203 | dependencies: 1204 | d "1" 1205 | es5-ext "~0.10.14" 1206 | 1207 | es6-weak-map@^2.0.1: 1208 | version "2.0.2" 1209 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 1210 | dependencies: 1211 | d "1" 1212 | es5-ext "^0.10.14" 1213 | es6-iterator "^2.0.1" 1214 | es6-symbol "^3.1.1" 1215 | 1216 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.4, escape-string-regexp@^1.0.5: 1217 | version "1.0.5" 1218 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1219 | 1220 | escope@^3.6.0: 1221 | version "3.6.0" 1222 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 1223 | dependencies: 1224 | es6-map "^0.1.3" 1225 | es6-weak-map "^2.0.1" 1226 | esrecurse "^4.1.0" 1227 | estraverse "^4.1.1" 1228 | 1229 | eslint-config-standard-jsx@4.0.1: 1230 | version "4.0.1" 1231 | resolved "https://registry.yarnpkg.com/eslint-config-standard-jsx/-/eslint-config-standard-jsx-4.0.1.tgz#cd4e463d0268e2d9e707f61f42f73f5b3333c642" 1232 | 1233 | eslint-config-standard@10.2.1: 1234 | version "10.2.1" 1235 | resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-10.2.1.tgz#c061e4d066f379dc17cd562c64e819b4dd454591" 1236 | 1237 | eslint-import-resolver-node@^0.2.0: 1238 | version "0.2.3" 1239 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.2.3.tgz#5add8106e8c928db2cba232bcd9efa846e3da16c" 1240 | dependencies: 1241 | debug "^2.2.0" 1242 | object-assign "^4.0.1" 1243 | resolve "^1.1.6" 1244 | 1245 | eslint-module-utils@^2.0.0: 1246 | version "2.0.0" 1247 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.0.0.tgz#a6f8c21d901358759cdc35dbac1982ae1ee58bce" 1248 | dependencies: 1249 | debug "2.2.0" 1250 | pkg-dir "^1.0.0" 1251 | 1252 | eslint-plugin-import@~2.2.0: 1253 | version "2.2.0" 1254 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.2.0.tgz#72ba306fad305d67c4816348a4699a4229ac8b4e" 1255 | dependencies: 1256 | builtin-modules "^1.1.1" 1257 | contains-path "^0.1.0" 1258 | debug "^2.2.0" 1259 | doctrine "1.5.0" 1260 | eslint-import-resolver-node "^0.2.0" 1261 | eslint-module-utils "^2.0.0" 1262 | has "^1.0.1" 1263 | lodash.cond "^4.3.0" 1264 | minimatch "^3.0.3" 1265 | pkg-up "^1.0.0" 1266 | 1267 | eslint-plugin-node@~4.2.2: 1268 | version "4.2.2" 1269 | resolved "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-4.2.2.tgz#82959ca9aed79fcbd28bb1b188d05cac04fb3363" 1270 | dependencies: 1271 | ignore "^3.0.11" 1272 | minimatch "^3.0.2" 1273 | object-assign "^4.0.1" 1274 | resolve "^1.1.7" 1275 | semver "5.3.0" 1276 | 1277 | eslint-plugin-promise@~3.5.0: 1278 | version "3.5.0" 1279 | resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-3.5.0.tgz#78fbb6ffe047201627569e85a6c5373af2a68fca" 1280 | 1281 | eslint-plugin-react@~6.10.0: 1282 | version "6.10.3" 1283 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-6.10.3.tgz#c5435beb06774e12c7db2f6abaddcbf900cd3f78" 1284 | dependencies: 1285 | array.prototype.find "^2.0.1" 1286 | doctrine "^1.2.2" 1287 | has "^1.0.1" 1288 | jsx-ast-utils "^1.3.4" 1289 | object.assign "^4.0.4" 1290 | 1291 | eslint-plugin-standard@~3.0.1: 1292 | version "3.0.1" 1293 | resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-3.0.1.tgz#34d0c915b45edc6f010393c7eef3823b08565cf2" 1294 | 1295 | eslint@~3.19.0: 1296 | version "3.19.0" 1297 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.19.0.tgz#c8fc6201c7f40dd08941b87c085767386a679acc" 1298 | dependencies: 1299 | babel-code-frame "^6.16.0" 1300 | chalk "^1.1.3" 1301 | concat-stream "^1.5.2" 1302 | debug "^2.1.1" 1303 | doctrine "^2.0.0" 1304 | escope "^3.6.0" 1305 | espree "^3.4.0" 1306 | esquery "^1.0.0" 1307 | estraverse "^4.2.0" 1308 | esutils "^2.0.2" 1309 | file-entry-cache "^2.0.0" 1310 | glob "^7.0.3" 1311 | globals "^9.14.0" 1312 | ignore "^3.2.0" 1313 | imurmurhash "^0.1.4" 1314 | inquirer "^0.12.0" 1315 | is-my-json-valid "^2.10.0" 1316 | is-resolvable "^1.0.0" 1317 | js-yaml "^3.5.1" 1318 | json-stable-stringify "^1.0.0" 1319 | levn "^0.3.0" 1320 | lodash "^4.0.0" 1321 | mkdirp "^0.5.0" 1322 | natural-compare "^1.4.0" 1323 | optionator "^0.8.2" 1324 | path-is-inside "^1.0.1" 1325 | pluralize "^1.2.1" 1326 | progress "^1.1.8" 1327 | require-uncached "^1.0.2" 1328 | shelljs "^0.7.5" 1329 | strip-bom "^3.0.0" 1330 | strip-json-comments "~2.0.1" 1331 | table "^3.7.8" 1332 | text-table "~0.2.0" 1333 | user-home "^2.0.0" 1334 | 1335 | espower-location-detector@^1.0.0: 1336 | version "1.0.0" 1337 | resolved "https://registry.yarnpkg.com/espower-location-detector/-/espower-location-detector-1.0.0.tgz#a17b7ecc59d30e179e2bef73fb4137704cb331b5" 1338 | dependencies: 1339 | is-url "^1.2.1" 1340 | path-is-absolute "^1.0.0" 1341 | source-map "^0.5.0" 1342 | xtend "^4.0.0" 1343 | 1344 | espree@^3.4.0: 1345 | version "3.4.3" 1346 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.3.tgz#2910b5ccd49ce893c2ffffaab4fd8b3a31b82374" 1347 | dependencies: 1348 | acorn "^5.0.1" 1349 | acorn-jsx "^3.0.0" 1350 | 1351 | esprima@^3.1.1: 1352 | version "3.1.3" 1353 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1354 | 1355 | espurify@^1.6.0: 1356 | version "1.7.0" 1357 | resolved "https://registry.yarnpkg.com/espurify/-/espurify-1.7.0.tgz#1c5cf6cbccc32e6f639380bd4f991fab9ba9d226" 1358 | dependencies: 1359 | core-js "^2.0.0" 1360 | 1361 | esquery@^1.0.0: 1362 | version "1.0.0" 1363 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 1364 | dependencies: 1365 | estraverse "^4.0.0" 1366 | 1367 | esrecurse@^4.1.0: 1368 | version "4.1.0" 1369 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 1370 | dependencies: 1371 | estraverse "~4.1.0" 1372 | object-assign "^4.0.1" 1373 | 1374 | estraverse@^4.0.0, estraverse@^4.1.1, estraverse@^4.2.0: 1375 | version "4.2.0" 1376 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1377 | 1378 | estraverse@~4.1.0: 1379 | version "4.1.1" 1380 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 1381 | 1382 | esutils@^2.0.2: 1383 | version "2.0.2" 1384 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1385 | 1386 | event-emitter@~0.3.5: 1387 | version "0.3.5" 1388 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 1389 | dependencies: 1390 | d "1" 1391 | es5-ext "~0.10.14" 1392 | 1393 | execa@^0.4.0: 1394 | version "0.4.0" 1395 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.4.0.tgz#4eb6467a36a095fabb2970ff9d5e3fb7bce6ebc3" 1396 | dependencies: 1397 | cross-spawn-async "^2.1.1" 1398 | is-stream "^1.1.0" 1399 | npm-run-path "^1.0.0" 1400 | object-assign "^4.0.1" 1401 | path-key "^1.0.0" 1402 | strip-eof "^1.0.0" 1403 | 1404 | execa@^0.5.0: 1405 | version "0.5.1" 1406 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.5.1.tgz#de3fb85cb8d6e91c85bcbceb164581785cb57b36" 1407 | dependencies: 1408 | cross-spawn "^4.0.0" 1409 | get-stream "^2.2.0" 1410 | is-stream "^1.1.0" 1411 | npm-run-path "^2.0.0" 1412 | p-finally "^1.0.0" 1413 | signal-exit "^3.0.0" 1414 | strip-eof "^1.0.0" 1415 | 1416 | exit-hook@^1.0.0: 1417 | version "1.1.1" 1418 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1419 | 1420 | expand-brackets@^0.1.4: 1421 | version "0.1.5" 1422 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1423 | dependencies: 1424 | is-posix-bracket "^0.1.0" 1425 | 1426 | expand-range@^1.8.1: 1427 | version "1.8.2" 1428 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1429 | dependencies: 1430 | fill-range "^2.1.0" 1431 | 1432 | extend@~3.0.0: 1433 | version "3.0.1" 1434 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1435 | 1436 | extglob@^0.3.1: 1437 | version "0.3.2" 1438 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1439 | dependencies: 1440 | is-extglob "^1.0.0" 1441 | 1442 | extsprintf@1.0.2: 1443 | version "1.0.2" 1444 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1445 | 1446 | fast-levenshtein@~2.0.4: 1447 | version "2.0.6" 1448 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1449 | 1450 | figures@^1.3.5: 1451 | version "1.7.0" 1452 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1453 | dependencies: 1454 | escape-string-regexp "^1.0.5" 1455 | object-assign "^4.1.0" 1456 | 1457 | figures@^2.0.0: 1458 | version "2.0.0" 1459 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1460 | dependencies: 1461 | escape-string-regexp "^1.0.5" 1462 | 1463 | file-entry-cache@^2.0.0: 1464 | version "2.0.0" 1465 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1466 | dependencies: 1467 | flat-cache "^1.2.1" 1468 | object-assign "^4.0.1" 1469 | 1470 | filename-regex@^2.0.0: 1471 | version "2.0.1" 1472 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1473 | 1474 | fill-range@^2.1.0: 1475 | version "2.2.3" 1476 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1477 | dependencies: 1478 | is-number "^2.1.0" 1479 | isobject "^2.0.0" 1480 | randomatic "^1.1.3" 1481 | repeat-element "^1.1.2" 1482 | repeat-string "^1.5.2" 1483 | 1484 | find-cache-dir@^0.1.1: 1485 | version "0.1.1" 1486 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" 1487 | dependencies: 1488 | commondir "^1.0.1" 1489 | mkdirp "^0.5.1" 1490 | pkg-dir "^1.0.0" 1491 | 1492 | find-root@^1.0.0: 1493 | version "1.0.0" 1494 | resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.0.0.tgz#962ff211aab25c6520feeeb8d6287f8f6e95807a" 1495 | 1496 | find-up@^1.0.0, find-up@^1.1.2: 1497 | version "1.1.2" 1498 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1499 | dependencies: 1500 | path-exists "^2.0.0" 1501 | pinkie-promise "^2.0.0" 1502 | 1503 | find-up@^2.0.0: 1504 | version "2.1.0" 1505 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1506 | dependencies: 1507 | locate-path "^2.0.0" 1508 | 1509 | flat-cache@^1.2.1: 1510 | version "1.2.2" 1511 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 1512 | dependencies: 1513 | circular-json "^0.3.1" 1514 | del "^2.0.2" 1515 | graceful-fs "^4.1.2" 1516 | write "^0.2.1" 1517 | 1518 | fn-name@^2.0.0: 1519 | version "2.0.1" 1520 | resolved "https://registry.yarnpkg.com/fn-name/-/fn-name-2.0.1.tgz#5214d7537a4d06a4a301c0cc262feb84188002e7" 1521 | 1522 | for-in@^1.0.1: 1523 | version "1.0.2" 1524 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1525 | 1526 | for-own@^0.1.4: 1527 | version "0.1.5" 1528 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1529 | dependencies: 1530 | for-in "^1.0.1" 1531 | 1532 | foreach@^2.0.5: 1533 | version "2.0.5" 1534 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1535 | 1536 | foreground-child@^1.3.3, foreground-child@^1.5.3: 1537 | version "1.5.6" 1538 | resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-1.5.6.tgz#4fd71ad2dfde96789b980a5c0a295937cb2f5ce9" 1539 | dependencies: 1540 | cross-spawn "^4" 1541 | signal-exit "^3.0.0" 1542 | 1543 | forever-agent@~0.6.1: 1544 | version "0.6.1" 1545 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1546 | 1547 | form-data@~2.1.1: 1548 | version "2.1.4" 1549 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1550 | dependencies: 1551 | asynckit "^0.4.0" 1552 | combined-stream "^1.0.5" 1553 | mime-types "^2.1.12" 1554 | 1555 | fs.realpath@^1.0.0: 1556 | version "1.0.0" 1557 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1558 | 1559 | fsevents@^1.0.0: 1560 | version "1.1.1" 1561 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff" 1562 | dependencies: 1563 | nan "^2.3.0" 1564 | node-pre-gyp "^0.6.29" 1565 | 1566 | fstream-ignore@^1.0.5: 1567 | version "1.0.5" 1568 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1569 | dependencies: 1570 | fstream "^1.0.0" 1571 | inherits "2" 1572 | minimatch "^3.0.0" 1573 | 1574 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1575 | version "1.0.11" 1576 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1577 | dependencies: 1578 | graceful-fs "^4.1.2" 1579 | inherits "~2.0.0" 1580 | mkdirp ">=0.5 0" 1581 | rimraf "2" 1582 | 1583 | function-bind@^1.0.2, function-bind@^1.1.0: 1584 | version "1.1.0" 1585 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 1586 | 1587 | gauge@~2.7.3: 1588 | version "2.7.4" 1589 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1590 | dependencies: 1591 | aproba "^1.0.3" 1592 | console-control-strings "^1.0.0" 1593 | has-unicode "^2.0.0" 1594 | object-assign "^4.1.0" 1595 | signal-exit "^3.0.0" 1596 | string-width "^1.0.1" 1597 | strip-ansi "^3.0.1" 1598 | wide-align "^1.1.0" 1599 | 1600 | generate-function@^2.0.0: 1601 | version "2.0.0" 1602 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1603 | 1604 | generate-object-property@^1.1.0: 1605 | version "1.2.0" 1606 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1607 | dependencies: 1608 | is-property "^1.0.0" 1609 | 1610 | get-caller-file@^1.0.1: 1611 | version "1.0.2" 1612 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1613 | 1614 | get-port@^3.0.0: 1615 | version "3.1.0" 1616 | resolved "https://registry.yarnpkg.com/get-port/-/get-port-3.1.0.tgz#ef01b18a84ca6486970ff99e54446141a73ffd3e" 1617 | 1618 | get-stdin@^4.0.1: 1619 | version "4.0.1" 1620 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 1621 | 1622 | get-stdin@^5.0.1: 1623 | version "5.0.1" 1624 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" 1625 | 1626 | get-stream@^2.2.0: 1627 | version "2.3.1" 1628 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-2.3.1.tgz#5f38f93f346009666ee0150a054167f91bdd95de" 1629 | dependencies: 1630 | object-assign "^4.0.1" 1631 | pinkie-promise "^2.0.0" 1632 | 1633 | get-stream@^3.0.0: 1634 | version "3.0.0" 1635 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1636 | 1637 | getpass@^0.1.1: 1638 | version "0.1.7" 1639 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1640 | dependencies: 1641 | assert-plus "^1.0.0" 1642 | 1643 | glob-base@^0.3.0: 1644 | version "0.3.0" 1645 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1646 | dependencies: 1647 | glob-parent "^2.0.0" 1648 | is-glob "^2.0.0" 1649 | 1650 | glob-parent@^2.0.0: 1651 | version "2.0.0" 1652 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1653 | dependencies: 1654 | is-glob "^2.0.0" 1655 | 1656 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.0.6: 1657 | version "7.1.2" 1658 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1659 | dependencies: 1660 | fs.realpath "^1.0.0" 1661 | inflight "^1.0.4" 1662 | inherits "2" 1663 | minimatch "^3.0.4" 1664 | once "^1.3.0" 1665 | path-is-absolute "^1.0.0" 1666 | 1667 | globals@^9.0.0, globals@^9.14.0: 1668 | version "9.17.0" 1669 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 1670 | 1671 | globby@^5.0.0: 1672 | version "5.0.0" 1673 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1674 | dependencies: 1675 | array-union "^1.0.1" 1676 | arrify "^1.0.0" 1677 | glob "^7.0.3" 1678 | object-assign "^4.0.1" 1679 | pify "^2.0.0" 1680 | pinkie-promise "^2.0.0" 1681 | 1682 | globby@^6.0.0: 1683 | version "6.1.0" 1684 | resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" 1685 | dependencies: 1686 | array-union "^1.0.1" 1687 | glob "^7.0.3" 1688 | object-assign "^4.0.1" 1689 | pify "^2.0.0" 1690 | pinkie-promise "^2.0.0" 1691 | 1692 | got@^6.7.1: 1693 | version "6.7.1" 1694 | resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" 1695 | dependencies: 1696 | create-error-class "^3.0.0" 1697 | duplexer3 "^0.1.4" 1698 | get-stream "^3.0.0" 1699 | is-redirect "^1.0.0" 1700 | is-retry-allowed "^1.0.0" 1701 | is-stream "^1.0.0" 1702 | lowercase-keys "^1.0.0" 1703 | safe-buffer "^5.0.1" 1704 | timed-out "^4.0.0" 1705 | unzip-response "^2.0.1" 1706 | url-parse-lax "^1.0.0" 1707 | 1708 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6: 1709 | version "4.1.11" 1710 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1711 | 1712 | handlebars@^4.0.3: 1713 | version "4.0.10" 1714 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.10.tgz#3d30c718b09a3d96f23ea4cc1f403c4d3ba9ff4f" 1715 | dependencies: 1716 | async "^1.4.0" 1717 | optimist "^0.6.1" 1718 | source-map "^0.4.4" 1719 | optionalDependencies: 1720 | uglify-js "^2.6" 1721 | 1722 | har-schema@^1.0.5: 1723 | version "1.0.5" 1724 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1725 | 1726 | har-validator@~4.2.1: 1727 | version "4.2.1" 1728 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1729 | dependencies: 1730 | ajv "^4.9.1" 1731 | har-schema "^1.0.5" 1732 | 1733 | has-ansi@^2.0.0: 1734 | version "2.0.0" 1735 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1736 | dependencies: 1737 | ansi-regex "^2.0.0" 1738 | 1739 | has-color@~0.1.0: 1740 | version "0.1.7" 1741 | resolved "https://registry.yarnpkg.com/has-color/-/has-color-0.1.7.tgz#67144a5260c34fc3cca677d041daf52fe7b78b2f" 1742 | 1743 | has-flag@^1.0.0: 1744 | version "1.0.0" 1745 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1746 | 1747 | has-flag@^2.0.0: 1748 | version "2.0.0" 1749 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1750 | 1751 | has-unicode@^2.0.0: 1752 | version "2.0.1" 1753 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1754 | 1755 | has-yarn@^1.0.0: 1756 | version "1.0.0" 1757 | resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-1.0.0.tgz#89e25db604b725c8f5976fff0addc921b828a5a7" 1758 | 1759 | has@^1.0.1: 1760 | version "1.0.1" 1761 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1762 | dependencies: 1763 | function-bind "^1.0.2" 1764 | 1765 | hawk@~3.1.3: 1766 | version "3.1.3" 1767 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1768 | dependencies: 1769 | boom "2.x.x" 1770 | cryptiles "2.x.x" 1771 | hoek "2.x.x" 1772 | sntp "1.x.x" 1773 | 1774 | hoek@2.x.x: 1775 | version "2.16.3" 1776 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1777 | 1778 | home-or-tmp@^2.0.0: 1779 | version "2.0.0" 1780 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1781 | dependencies: 1782 | os-homedir "^1.0.0" 1783 | os-tmpdir "^1.0.1" 1784 | 1785 | hosted-git-info@^2.1.4: 1786 | version "2.4.2" 1787 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.2.tgz#0076b9f46a270506ddbaaea56496897460612a67" 1788 | 1789 | htan-prime@0.0.1: 1790 | version "0.0.1" 1791 | resolved "https://registry.yarnpkg.com/htan-prime/-/htan-prime-0.0.1.tgz#744bea1015ad1717b4a806ea7846b2d4fdbc8eff" 1792 | 1793 | htan@0.0.3: 1794 | version "0.0.3" 1795 | resolved "https://registry.yarnpkg.com/htan/-/htan-0.0.3.tgz#8cd0ce77454659b35060648bc2e977c7096eb280" 1796 | 1797 | http-signature@~1.1.0: 1798 | version "1.1.1" 1799 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1800 | dependencies: 1801 | assert-plus "^0.2.0" 1802 | jsprim "^1.2.2" 1803 | sshpk "^1.7.0" 1804 | 1805 | hullabaloo-config-manager@^1.0.0: 1806 | version "1.0.1" 1807 | resolved "https://registry.yarnpkg.com/hullabaloo-config-manager/-/hullabaloo-config-manager-1.0.1.tgz#c72be7ba249a67c99b6ba3eb1f55837fa01acd8f" 1808 | dependencies: 1809 | dot-prop "^4.1.0" 1810 | es6-error "^4.0.2" 1811 | graceful-fs "^4.1.11" 1812 | indent-string "^3.1.0" 1813 | json5 "^0.5.1" 1814 | lodash.clonedeep "^4.5.0" 1815 | lodash.clonedeepwith "^4.5.0" 1816 | lodash.isequal "^4.5.0" 1817 | lodash.merge "^4.6.0" 1818 | md5-hex "^2.0.0" 1819 | package-hash "^2.0.0" 1820 | pkg-dir "^1.0.0" 1821 | resolve-from "^2.0.0" 1822 | 1823 | ignore-by-default@^1.0.0: 1824 | version "1.0.1" 1825 | resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" 1826 | 1827 | ignore@^3.0.11, ignore@^3.0.9, ignore@^3.2.0: 1828 | version "3.3.3" 1829 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.3.tgz#432352e57accd87ab3110e82d3fea0e47812156d" 1830 | 1831 | imurmurhash@^0.1.4: 1832 | version "0.1.4" 1833 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1834 | 1835 | indent-string@^2.1.0: 1836 | version "2.1.0" 1837 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 1838 | dependencies: 1839 | repeating "^2.0.0" 1840 | 1841 | indent-string@^3.0.0, indent-string@^3.1.0: 1842 | version "3.1.0" 1843 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.1.0.tgz#08ff4334603388399b329e6b9538dc7a3cf5de7d" 1844 | 1845 | inflight@^1.0.4: 1846 | version "1.0.6" 1847 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1848 | dependencies: 1849 | once "^1.3.0" 1850 | wrappy "1" 1851 | 1852 | inherit@~2.2.2: 1853 | version "2.2.6" 1854 | resolved "https://registry.yarnpkg.com/inherit/-/inherit-2.2.6.tgz#f1614b06c8544e8128e4229c86347db73ad9788d" 1855 | 1856 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1: 1857 | version "2.0.3" 1858 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1859 | 1860 | ini@~1.3.0: 1861 | version "1.3.4" 1862 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1863 | 1864 | inquirer@^0.12.0: 1865 | version "0.12.0" 1866 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 1867 | dependencies: 1868 | ansi-escapes "^1.1.0" 1869 | ansi-regex "^2.0.0" 1870 | chalk "^1.0.0" 1871 | cli-cursor "^1.0.1" 1872 | cli-width "^2.0.0" 1873 | figures "^1.3.5" 1874 | lodash "^4.3.0" 1875 | readline2 "^1.0.1" 1876 | run-async "^0.1.0" 1877 | rx-lite "^3.1.2" 1878 | string-width "^1.0.1" 1879 | strip-ansi "^3.0.0" 1880 | through "^2.3.6" 1881 | 1882 | interpret@^1.0.0: 1883 | version "1.0.3" 1884 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.3.tgz#cbc35c62eeee73f19ab7b10a801511401afc0f90" 1885 | 1886 | invariant@^2.2.0: 1887 | version "2.2.2" 1888 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1889 | dependencies: 1890 | loose-envify "^1.0.0" 1891 | 1892 | invert-kv@^1.0.0: 1893 | version "1.0.0" 1894 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1895 | 1896 | irregular-plurals@^1.0.0: 1897 | version "1.2.0" 1898 | resolved "https://registry.yarnpkg.com/irregular-plurals/-/irregular-plurals-1.2.0.tgz#38f299834ba8c00c30be9c554e137269752ff3ac" 1899 | 1900 | is-arrayish@^0.2.1: 1901 | version "0.2.1" 1902 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1903 | 1904 | is-binary-path@^1.0.0: 1905 | version "1.0.1" 1906 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1907 | dependencies: 1908 | binary-extensions "^1.0.0" 1909 | 1910 | is-buffer@^1.1.5: 1911 | version "1.1.5" 1912 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1913 | 1914 | is-builtin-module@^1.0.0: 1915 | version "1.0.0" 1916 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1917 | dependencies: 1918 | builtin-modules "^1.0.0" 1919 | 1920 | is-callable@^1.1.1, is-callable@^1.1.3: 1921 | version "1.1.3" 1922 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 1923 | 1924 | is-ci@^1.0.7: 1925 | version "1.0.10" 1926 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1927 | dependencies: 1928 | ci-info "^1.0.0" 1929 | 1930 | is-date-object@^1.0.1: 1931 | version "1.0.1" 1932 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1933 | 1934 | is-dotfile@^1.0.0: 1935 | version "1.0.2" 1936 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1937 | 1938 | is-equal-shallow@^0.1.3: 1939 | version "0.1.3" 1940 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1941 | dependencies: 1942 | is-primitive "^2.0.0" 1943 | 1944 | is-error@^2.2.0: 1945 | version "2.2.1" 1946 | resolved "https://registry.yarnpkg.com/is-error/-/is-error-2.2.1.tgz#684a96d84076577c98f4cdb40c6d26a5123bf19c" 1947 | 1948 | is-extendable@^0.1.1: 1949 | version "0.1.1" 1950 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1951 | 1952 | is-extglob@^1.0.0: 1953 | version "1.0.0" 1954 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1955 | 1956 | is-finite@^1.0.0, is-finite@^1.0.1: 1957 | version "1.0.2" 1958 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1959 | dependencies: 1960 | number-is-nan "^1.0.0" 1961 | 1962 | is-fullwidth-code-point@^1.0.0: 1963 | version "1.0.0" 1964 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1965 | dependencies: 1966 | number-is-nan "^1.0.0" 1967 | 1968 | is-fullwidth-code-point@^2.0.0: 1969 | version "2.0.0" 1970 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1971 | 1972 | is-generator-fn@^1.0.0: 1973 | version "1.0.0" 1974 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a" 1975 | 1976 | is-glob@^2.0.0, is-glob@^2.0.1: 1977 | version "2.0.1" 1978 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1979 | dependencies: 1980 | is-extglob "^1.0.0" 1981 | 1982 | is-my-json-valid@^2.10.0: 1983 | version "2.16.0" 1984 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693" 1985 | dependencies: 1986 | generate-function "^2.0.0" 1987 | generate-object-property "^1.1.0" 1988 | jsonpointer "^4.0.0" 1989 | xtend "^4.0.0" 1990 | 1991 | is-npm@^1.0.0: 1992 | version "1.0.0" 1993 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 1994 | 1995 | is-number@^2.0.2, is-number@^2.1.0: 1996 | version "2.1.0" 1997 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1998 | dependencies: 1999 | kind-of "^3.0.2" 2000 | 2001 | is-obj@^1.0.0: 2002 | version "1.0.1" 2003 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 2004 | 2005 | is-observable@^0.2.0: 2006 | version "0.2.0" 2007 | resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-0.2.0.tgz#b361311d83c6e5d726cabf5e250b0237106f5ae2" 2008 | dependencies: 2009 | symbol-observable "^0.2.2" 2010 | 2011 | is-path-cwd@^1.0.0: 2012 | version "1.0.0" 2013 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 2014 | 2015 | is-path-in-cwd@^1.0.0: 2016 | version "1.0.0" 2017 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 2018 | dependencies: 2019 | is-path-inside "^1.0.0" 2020 | 2021 | is-path-inside@^1.0.0: 2022 | version "1.0.0" 2023 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 2024 | dependencies: 2025 | path-is-inside "^1.0.1" 2026 | 2027 | is-plain-obj@^1.0.0: 2028 | version "1.1.0" 2029 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 2030 | 2031 | is-posix-bracket@^0.1.0: 2032 | version "0.1.1" 2033 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2034 | 2035 | is-primitive@^2.0.0: 2036 | version "2.0.0" 2037 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2038 | 2039 | is-promise@^2.1.0: 2040 | version "2.1.0" 2041 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 2042 | 2043 | is-property@^1.0.0: 2044 | version "1.0.2" 2045 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 2046 | 2047 | is-redirect@^1.0.0: 2048 | version "1.0.0" 2049 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 2050 | 2051 | is-regex@^1.0.3: 2052 | version "1.0.4" 2053 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 2054 | dependencies: 2055 | has "^1.0.1" 2056 | 2057 | is-resolvable@^1.0.0: 2058 | version "1.0.0" 2059 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 2060 | dependencies: 2061 | tryit "^1.0.1" 2062 | 2063 | is-retry-allowed@^1.0.0: 2064 | version "1.1.0" 2065 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" 2066 | 2067 | is-stream@^1.0.0, is-stream@^1.1.0: 2068 | version "1.1.0" 2069 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2070 | 2071 | is-symbol@^1.0.1: 2072 | version "1.0.1" 2073 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 2074 | 2075 | is-typedarray@~1.0.0: 2076 | version "1.0.0" 2077 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2078 | 2079 | is-url@^1.2.1: 2080 | version "1.2.2" 2081 | resolved "https://registry.yarnpkg.com/is-url/-/is-url-1.2.2.tgz#498905a593bf47cc2d9e7f738372bbf7696c7f26" 2082 | 2083 | is-utf8@^0.2.0, is-utf8@^0.2.1: 2084 | version "0.2.1" 2085 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 2086 | 2087 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2088 | version "1.0.0" 2089 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2090 | 2091 | isexe@^2.0.0: 2092 | version "2.0.0" 2093 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2094 | 2095 | isobject@^2.0.0: 2096 | version "2.1.0" 2097 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2098 | dependencies: 2099 | isarray "1.0.0" 2100 | 2101 | isstream@~0.1.2: 2102 | version "0.1.2" 2103 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2104 | 2105 | istanbul-lib-coverage@^1.1.0: 2106 | version "1.1.0" 2107 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.0.tgz#caca19decaef3525b5d6331d701f3f3b7ad48528" 2108 | 2109 | istanbul-lib-hook@^1.0.6: 2110 | version "1.0.6" 2111 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.6.tgz#c0866d1e81cf2d5319249510131fc16dee49231f" 2112 | dependencies: 2113 | append-transform "^0.4.0" 2114 | 2115 | istanbul-lib-instrument@^1.7.1: 2116 | version "1.7.1" 2117 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.1.tgz#169e31bc62c778851a99439dd99c3cc12184d360" 2118 | dependencies: 2119 | babel-generator "^6.18.0" 2120 | babel-template "^6.16.0" 2121 | babel-traverse "^6.18.0" 2122 | babel-types "^6.18.0" 2123 | babylon "^6.13.0" 2124 | istanbul-lib-coverage "^1.1.0" 2125 | semver "^5.3.0" 2126 | 2127 | istanbul-lib-report@^1.1.0: 2128 | version "1.1.0" 2129 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.0.tgz#444c4ecca9afa93cf584f56b10f195bf768c0770" 2130 | dependencies: 2131 | istanbul-lib-coverage "^1.1.0" 2132 | mkdirp "^0.5.1" 2133 | path-parse "^1.0.5" 2134 | supports-color "^3.1.2" 2135 | 2136 | istanbul-lib-source-maps@^1.2.0: 2137 | version "1.2.0" 2138 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.0.tgz#8c7706d497e26feeb6af3e0c28fd5b0669598d0e" 2139 | dependencies: 2140 | debug "^2.6.3" 2141 | istanbul-lib-coverage "^1.1.0" 2142 | mkdirp "^0.5.1" 2143 | rimraf "^2.6.1" 2144 | source-map "^0.5.3" 2145 | 2146 | istanbul-reports@^1.1.0: 2147 | version "1.1.0" 2148 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.0.tgz#1ef3b795889219cfb5fad16365f6ce108d5f8c66" 2149 | dependencies: 2150 | handlebars "^4.0.3" 2151 | 2152 | jest-diff@19.0.0, jest-diff@^19.0.0: 2153 | version "19.0.0" 2154 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-19.0.0.tgz#d1563cfc56c8b60232988fbc05d4d16ed90f063c" 2155 | dependencies: 2156 | chalk "^1.1.3" 2157 | diff "^3.0.0" 2158 | jest-matcher-utils "^19.0.0" 2159 | pretty-format "^19.0.0" 2160 | 2161 | jest-file-exists@^19.0.0: 2162 | version "19.0.0" 2163 | resolved "https://registry.yarnpkg.com/jest-file-exists/-/jest-file-exists-19.0.0.tgz#cca2e587a11ec92e24cfeab3f8a94d657f3fceb8" 2164 | 2165 | jest-matcher-utils@^19.0.0: 2166 | version "19.0.0" 2167 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-19.0.0.tgz#5ecd9b63565d2b001f61fbf7ec4c7f537964564d" 2168 | dependencies: 2169 | chalk "^1.1.3" 2170 | pretty-format "^19.0.0" 2171 | 2172 | jest-message-util@^19.0.0: 2173 | version "19.0.0" 2174 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-19.0.0.tgz#721796b89c0e4d761606f9ba8cb828a3b6246416" 2175 | dependencies: 2176 | chalk "^1.1.1" 2177 | micromatch "^2.3.11" 2178 | 2179 | jest-mock@^19.0.0: 2180 | version "19.0.0" 2181 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-19.0.0.tgz#67038641e9607ab2ce08ec4a8cb83aabbc899d01" 2182 | 2183 | jest-snapshot@19.0.2: 2184 | version "19.0.2" 2185 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-19.0.2.tgz#9c1b216214f7187c38bfd5c70b1efab16b0ff50b" 2186 | dependencies: 2187 | chalk "^1.1.3" 2188 | jest-diff "^19.0.0" 2189 | jest-file-exists "^19.0.0" 2190 | jest-matcher-utils "^19.0.0" 2191 | jest-util "^19.0.2" 2192 | natural-compare "^1.4.0" 2193 | pretty-format "^19.0.0" 2194 | 2195 | jest-util@^19.0.2: 2196 | version "19.0.2" 2197 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-19.0.2.tgz#e0a0232a2ab9e6b2b53668bdb3534c2b5977ed41" 2198 | dependencies: 2199 | chalk "^1.1.1" 2200 | graceful-fs "^4.1.6" 2201 | jest-file-exists "^19.0.0" 2202 | jest-message-util "^19.0.0" 2203 | jest-mock "^19.0.0" 2204 | jest-validate "^19.0.2" 2205 | leven "^2.0.0" 2206 | mkdirp "^0.5.1" 2207 | 2208 | jest-validate@^19.0.2: 2209 | version "19.0.2" 2210 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-19.0.2.tgz#dc534df5f1278d5b63df32b14241d4dbf7244c0c" 2211 | dependencies: 2212 | chalk "^1.1.1" 2213 | jest-matcher-utils "^19.0.0" 2214 | leven "^2.0.0" 2215 | pretty-format "^19.0.0" 2216 | 2217 | jodid25519@^1.0.0: 2218 | version "1.0.2" 2219 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 2220 | dependencies: 2221 | jsbn "~0.1.0" 2222 | 2223 | js-tokens@^3.0.0: 2224 | version "3.0.1" 2225 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 2226 | 2227 | js-yaml@^3.5.1, js-yaml@^3.8.2: 2228 | version "3.8.4" 2229 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.4.tgz#520b4564f86573ba96662af85a8cafa7b4b5a6f6" 2230 | dependencies: 2231 | argparse "^1.0.7" 2232 | esprima "^3.1.1" 2233 | 2234 | jsbn@~0.1.0: 2235 | version "0.1.1" 2236 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2237 | 2238 | jsesc@^1.3.0: 2239 | version "1.3.0" 2240 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2241 | 2242 | jsesc@~0.5.0: 2243 | version "0.5.0" 2244 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2245 | 2246 | json-schema@0.2.3: 2247 | version "0.2.3" 2248 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2249 | 2250 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 2251 | version "1.0.1" 2252 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2253 | dependencies: 2254 | jsonify "~0.0.0" 2255 | 2256 | json-stringify-safe@~5.0.1: 2257 | version "5.0.1" 2258 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2259 | 2260 | json5@^0.5.0, json5@^0.5.1: 2261 | version "0.5.1" 2262 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2263 | 2264 | jsonify@~0.0.0: 2265 | version "0.0.0" 2266 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2267 | 2268 | jsonpointer@^4.0.0: 2269 | version "4.0.1" 2270 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 2271 | 2272 | jsprim@^1.2.2: 2273 | version "1.4.0" 2274 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 2275 | dependencies: 2276 | assert-plus "1.0.0" 2277 | extsprintf "1.0.2" 2278 | json-schema "0.2.3" 2279 | verror "1.3.6" 2280 | 2281 | jsx-ast-utils@^1.3.4: 2282 | version "1.4.1" 2283 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-1.4.1.tgz#3867213e8dd79bf1e8f2300c0cfc1efb182c0df1" 2284 | 2285 | kind-of@^3.0.2: 2286 | version "3.2.2" 2287 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2288 | dependencies: 2289 | is-buffer "^1.1.5" 2290 | 2291 | last-line-stream@^1.0.0: 2292 | version "1.0.0" 2293 | resolved "https://registry.yarnpkg.com/last-line-stream/-/last-line-stream-1.0.0.tgz#d1b64d69f86ff24af2d04883a2ceee14520a5600" 2294 | dependencies: 2295 | through2 "^2.0.0" 2296 | 2297 | latest-version@^3.0.0: 2298 | version "3.1.0" 2299 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15" 2300 | dependencies: 2301 | package-json "^4.0.0" 2302 | 2303 | lazy-cache@^1.0.3: 2304 | version "1.0.4" 2305 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2306 | 2307 | lazy-req@^2.0.0: 2308 | version "2.0.0" 2309 | resolved "https://registry.yarnpkg.com/lazy-req/-/lazy-req-2.0.0.tgz#c9450a363ecdda2e6f0c70132ad4f37f8f06f2b4" 2310 | 2311 | lcid@^1.0.0: 2312 | version "1.0.0" 2313 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2314 | dependencies: 2315 | invert-kv "^1.0.0" 2316 | 2317 | leven@^2.0.0: 2318 | version "2.1.0" 2319 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 2320 | 2321 | levn@^0.3.0, levn@~0.3.0: 2322 | version "0.3.0" 2323 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2324 | dependencies: 2325 | prelude-ls "~1.1.2" 2326 | type-check "~0.3.2" 2327 | 2328 | load-json-file@^1.0.0: 2329 | version "1.1.0" 2330 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2331 | dependencies: 2332 | graceful-fs "^4.1.2" 2333 | parse-json "^2.2.0" 2334 | pify "^2.0.0" 2335 | pinkie-promise "^2.0.0" 2336 | strip-bom "^2.0.0" 2337 | 2338 | load-json-file@^2.0.0: 2339 | version "2.0.0" 2340 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2341 | dependencies: 2342 | graceful-fs "^4.1.2" 2343 | parse-json "^2.2.0" 2344 | pify "^2.0.0" 2345 | strip-bom "^3.0.0" 2346 | 2347 | locate-path@^2.0.0: 2348 | version "2.0.0" 2349 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2350 | dependencies: 2351 | p-locate "^2.0.0" 2352 | path-exists "^3.0.0" 2353 | 2354 | lodash.clonedeep@^4.5.0: 2355 | version "4.5.0" 2356 | resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" 2357 | 2358 | lodash.clonedeepwith@^4.5.0: 2359 | version "4.5.0" 2360 | resolved "https://registry.yarnpkg.com/lodash.clonedeepwith/-/lodash.clonedeepwith-4.5.0.tgz#6ee30573a03a1a60d670a62ef33c10cf1afdbdd4" 2361 | 2362 | lodash.cond@^4.3.0: 2363 | version "4.5.2" 2364 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" 2365 | 2366 | lodash.debounce@^4.0.3: 2367 | version "4.0.8" 2368 | resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" 2369 | 2370 | lodash.difference@^4.3.0: 2371 | version "4.5.0" 2372 | resolved "https://registry.yarnpkg.com/lodash.difference/-/lodash.difference-4.5.0.tgz#9ccb4e505d486b91651345772885a2df27fd017c" 2373 | 2374 | lodash.flatten@^4.2.0: 2375 | version "4.4.0" 2376 | resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f" 2377 | 2378 | lodash.flattendeep@^4.4.0: 2379 | version "4.4.0" 2380 | resolved "https://registry.yarnpkg.com/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz#fb030917f86a3134e5bc9bec0d69e0013ddfedb2" 2381 | 2382 | lodash.isequal@^4.5.0: 2383 | version "4.5.0" 2384 | resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" 2385 | 2386 | lodash.merge@^4.6.0: 2387 | version "4.6.0" 2388 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.0.tgz#69884ba144ac33fe699737a6086deffadd0f89c5" 2389 | 2390 | lodash@^4.0.0, lodash@^4.2.0, lodash@^4.3.0: 2391 | version "4.17.4" 2392 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2393 | 2394 | longest@^1.0.1: 2395 | version "1.0.1" 2396 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2397 | 2398 | loose-envify@^1.0.0: 2399 | version "1.3.1" 2400 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2401 | dependencies: 2402 | js-tokens "^3.0.0" 2403 | 2404 | loud-rejection@^1.0.0, loud-rejection@^1.2.0: 2405 | version "1.6.0" 2406 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 2407 | dependencies: 2408 | currently-unhandled "^0.4.1" 2409 | signal-exit "^3.0.0" 2410 | 2411 | lowercase-keys@^1.0.0: 2412 | version "1.0.0" 2413 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 2414 | 2415 | lru-cache@^4.0.0, lru-cache@^4.0.1: 2416 | version "4.0.2" 2417 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.2.tgz#1d17679c069cda5d040991a09dbc2c0db377e55e" 2418 | dependencies: 2419 | pseudomap "^1.0.1" 2420 | yallist "^2.0.0" 2421 | 2422 | make-dir@^1.0.0: 2423 | version "1.0.0" 2424 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.0.0.tgz#97a011751e91dd87cfadef58832ebb04936de978" 2425 | dependencies: 2426 | pify "^2.3.0" 2427 | 2428 | map-obj@^1.0.0, map-obj@^1.0.1: 2429 | version "1.0.1" 2430 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 2431 | 2432 | matcher@^0.1.1: 2433 | version "0.1.2" 2434 | resolved "https://registry.yarnpkg.com/matcher/-/matcher-0.1.2.tgz#ef20cbde64c24c50cc61af5b83ee0b1b8ff00101" 2435 | dependencies: 2436 | escape-string-regexp "^1.0.4" 2437 | 2438 | md5-hex@^1.2.0, md5-hex@^1.3.0: 2439 | version "1.3.0" 2440 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-1.3.0.tgz#d2c4afe983c4370662179b8cad145219135046c4" 2441 | dependencies: 2442 | md5-o-matic "^0.1.1" 2443 | 2444 | md5-hex@^2.0.0: 2445 | version "2.0.0" 2446 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-2.0.0.tgz#d0588e9f1c74954492ecd24ac0ac6ce997d92e33" 2447 | dependencies: 2448 | md5-o-matic "^0.1.1" 2449 | 2450 | md5-o-matic@^0.1.1: 2451 | version "0.1.1" 2452 | resolved "https://registry.yarnpkg.com/md5-o-matic/-/md5-o-matic-0.1.1.tgz#822bccd65e117c514fab176b25945d54100a03c3" 2453 | 2454 | meow@^3.7.0: 2455 | version "3.7.0" 2456 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 2457 | dependencies: 2458 | camelcase-keys "^2.0.0" 2459 | decamelize "^1.1.2" 2460 | loud-rejection "^1.0.0" 2461 | map-obj "^1.0.1" 2462 | minimist "^1.1.3" 2463 | normalize-package-data "^2.3.4" 2464 | object-assign "^4.0.1" 2465 | read-pkg-up "^1.0.1" 2466 | redent "^1.0.0" 2467 | trim-newlines "^1.0.0" 2468 | 2469 | merge-source-map@^1.0.2: 2470 | version "1.0.3" 2471 | resolved "https://registry.yarnpkg.com/merge-source-map/-/merge-source-map-1.0.3.tgz#da1415f2722a5119db07b14c4f973410863a2abf" 2472 | dependencies: 2473 | source-map "^0.5.3" 2474 | 2475 | micromatch@^2.1.5, micromatch@^2.3.11: 2476 | version "2.3.11" 2477 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2478 | dependencies: 2479 | arr-diff "^2.0.0" 2480 | array-unique "^0.2.1" 2481 | braces "^1.8.2" 2482 | expand-brackets "^0.1.4" 2483 | extglob "^0.3.1" 2484 | filename-regex "^2.0.0" 2485 | is-extglob "^1.0.0" 2486 | is-glob "^2.0.1" 2487 | kind-of "^3.0.2" 2488 | normalize-path "^2.0.1" 2489 | object.omit "^2.0.0" 2490 | parse-glob "^3.0.4" 2491 | regex-cache "^0.4.2" 2492 | 2493 | mime-db@~1.27.0: 2494 | version "1.27.0" 2495 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 2496 | 2497 | mime-types@^2.1.12, mime-types@~2.1.7: 2498 | version "2.1.15" 2499 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 2500 | dependencies: 2501 | mime-db "~1.27.0" 2502 | 2503 | mimic-fn@^1.0.0: 2504 | version "1.1.0" 2505 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 2506 | 2507 | mind-xor@0.0.3: 2508 | version "0.0.3" 2509 | resolved "https://registry.yarnpkg.com/mind-xor/-/mind-xor-0.0.3.tgz#c7d749a58f34557e70dab60ad0eb0182e6486680" 2510 | 2511 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 2512 | version "3.0.4" 2513 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2514 | dependencies: 2515 | brace-expansion "^1.1.7" 2516 | 2517 | minimist@0.0.8, minimist@~0.0.1: 2518 | version "0.0.8" 2519 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2520 | 2521 | minimist@^1.1.0, minimist@^1.1.3, minimist@^1.2.0: 2522 | version "1.2.0" 2523 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2524 | 2525 | "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1: 2526 | version "0.5.1" 2527 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2528 | dependencies: 2529 | minimist "0.0.8" 2530 | 2531 | ms@0.7.1: 2532 | version "0.7.1" 2533 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 2534 | 2535 | ms@2.0.0: 2536 | version "2.0.0" 2537 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2538 | 2539 | ms@^0.7.1: 2540 | version "0.7.3" 2541 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.3.tgz#708155a5e44e33f5fd0fc53e81d0d40a91be1fff" 2542 | 2543 | multimatch@^2.1.0: 2544 | version "2.1.0" 2545 | resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b" 2546 | dependencies: 2547 | array-differ "^1.0.0" 2548 | array-union "^1.0.1" 2549 | arrify "^1.0.0" 2550 | minimatch "^3.0.0" 2551 | 2552 | mute-stream@0.0.5: 2553 | version "0.0.5" 2554 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 2555 | 2556 | nan@^2.0.4, nan@^2.3.0: 2557 | version "2.6.2" 2558 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45" 2559 | 2560 | natural-compare@^1.4.0: 2561 | version "1.4.0" 2562 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2563 | 2564 | node-matrix@0.1.1: 2565 | version "0.1.1" 2566 | resolved "https://registry.yarnpkg.com/node-matrix/-/node-matrix-0.1.1.tgz#3bdc3935cb501623a1cacbdc996ab1368769f6ee" 2567 | 2568 | node-pre-gyp@^0.6.29: 2569 | version "0.6.34" 2570 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.34.tgz#94ad1c798a11d7fc67381b50d47f8cc18d9799f7" 2571 | dependencies: 2572 | mkdirp "^0.5.1" 2573 | nopt "^4.0.1" 2574 | npmlog "^4.0.2" 2575 | rc "^1.1.7" 2576 | request "^2.81.0" 2577 | rimraf "^2.6.1" 2578 | semver "^5.3.0" 2579 | tar "^2.2.1" 2580 | tar-pack "^3.4.0" 2581 | 2582 | nopt@^4.0.1: 2583 | version "4.0.1" 2584 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2585 | dependencies: 2586 | abbrev "1" 2587 | osenv "^0.1.4" 2588 | 2589 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: 2590 | version "2.3.8" 2591 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" 2592 | dependencies: 2593 | hosted-git-info "^2.1.4" 2594 | is-builtin-module "^1.0.0" 2595 | semver "2 || 3 || 4 || 5" 2596 | validate-npm-package-license "^3.0.1" 2597 | 2598 | normalize-path@^2.0.1: 2599 | version "2.1.1" 2600 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2601 | dependencies: 2602 | remove-trailing-separator "^1.0.1" 2603 | 2604 | npm-run-path@^1.0.0: 2605 | version "1.0.0" 2606 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-1.0.0.tgz#f5c32bf595fe81ae927daec52e82f8b000ac3c8f" 2607 | dependencies: 2608 | path-key "^1.0.0" 2609 | 2610 | npm-run-path@^2.0.0: 2611 | version "2.0.2" 2612 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2613 | dependencies: 2614 | path-key "^2.0.0" 2615 | 2616 | npmlog@^4.0.2: 2617 | version "4.1.0" 2618 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.0.tgz#dc59bee85f64f00ed424efb2af0783df25d1c0b5" 2619 | dependencies: 2620 | are-we-there-yet "~1.1.2" 2621 | console-control-strings "~1.1.0" 2622 | gauge "~2.7.3" 2623 | set-blocking "~2.0.0" 2624 | 2625 | number-is-nan@^1.0.0: 2626 | version "1.0.1" 2627 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2628 | 2629 | nyc@^10.3.2: 2630 | version "10.3.2" 2631 | resolved "https://registry.yarnpkg.com/nyc/-/nyc-10.3.2.tgz#f27f4d91f2a9db36c24f574ff5c6efff0233de46" 2632 | dependencies: 2633 | archy "^1.0.0" 2634 | arrify "^1.0.1" 2635 | caching-transform "^1.0.0" 2636 | convert-source-map "^1.3.0" 2637 | debug-log "^1.0.1" 2638 | default-require-extensions "^1.0.0" 2639 | find-cache-dir "^0.1.1" 2640 | find-up "^1.1.2" 2641 | foreground-child "^1.5.3" 2642 | glob "^7.0.6" 2643 | istanbul-lib-coverage "^1.1.0" 2644 | istanbul-lib-hook "^1.0.6" 2645 | istanbul-lib-instrument "^1.7.1" 2646 | istanbul-lib-report "^1.1.0" 2647 | istanbul-lib-source-maps "^1.2.0" 2648 | istanbul-reports "^1.1.0" 2649 | md5-hex "^1.2.0" 2650 | merge-source-map "^1.0.2" 2651 | micromatch "^2.3.11" 2652 | mkdirp "^0.5.0" 2653 | resolve-from "^2.0.0" 2654 | rimraf "^2.5.4" 2655 | signal-exit "^3.0.1" 2656 | spawn-wrap "1.2.4" 2657 | test-exclude "^4.1.0" 2658 | yargs "^7.1.0" 2659 | yargs-parser "^5.0.0" 2660 | 2661 | oauth-sign@~0.8.1: 2662 | version "0.8.2" 2663 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2664 | 2665 | object-assign@^4.0.1, object-assign@^4.1.0: 2666 | version "4.1.1" 2667 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2668 | 2669 | object-keys@^1.0.10, object-keys@^1.0.8: 2670 | version "1.0.11" 2671 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 2672 | 2673 | object.assign@^4.0.4: 2674 | version "4.0.4" 2675 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.0.4.tgz#b1c9cc044ef1b9fe63606fc141abbb32e14730cc" 2676 | dependencies: 2677 | define-properties "^1.1.2" 2678 | function-bind "^1.1.0" 2679 | object-keys "^1.0.10" 2680 | 2681 | object.omit@^2.0.0: 2682 | version "2.0.1" 2683 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2684 | dependencies: 2685 | for-own "^0.1.4" 2686 | is-extendable "^0.1.1" 2687 | 2688 | observable-to-promise@^0.5.0: 2689 | version "0.5.0" 2690 | resolved "https://registry.yarnpkg.com/observable-to-promise/-/observable-to-promise-0.5.0.tgz#c828f0f0dc47e9f86af8a4977c5d55076ce7a91f" 2691 | dependencies: 2692 | is-observable "^0.2.0" 2693 | symbol-observable "^1.0.4" 2694 | 2695 | once@^1.3.0, once@^1.3.3: 2696 | version "1.4.0" 2697 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2698 | dependencies: 2699 | wrappy "1" 2700 | 2701 | onetime@^1.0.0: 2702 | version "1.1.0" 2703 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2704 | 2705 | onetime@^2.0.0: 2706 | version "2.0.1" 2707 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2708 | dependencies: 2709 | mimic-fn "^1.0.0" 2710 | 2711 | optimist@^0.6.1: 2712 | version "0.6.1" 2713 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2714 | dependencies: 2715 | minimist "~0.0.1" 2716 | wordwrap "~0.0.2" 2717 | 2718 | option-chain@^0.1.0: 2719 | version "0.1.1" 2720 | resolved "https://registry.yarnpkg.com/option-chain/-/option-chain-0.1.1.tgz#e9b811e006f1c0f54802f28295bfc8970f8dcfbd" 2721 | dependencies: 2722 | object-assign "^4.0.1" 2723 | 2724 | optionator@^0.8.2: 2725 | version "0.8.2" 2726 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2727 | dependencies: 2728 | deep-is "~0.1.3" 2729 | fast-levenshtein "~2.0.4" 2730 | levn "~0.3.0" 2731 | prelude-ls "~1.1.2" 2732 | type-check "~0.3.2" 2733 | wordwrap "~1.0.0" 2734 | 2735 | os-homedir@^1.0.0, os-homedir@^1.0.1: 2736 | version "1.0.2" 2737 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2738 | 2739 | os-locale@^1.4.0: 2740 | version "1.4.0" 2741 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2742 | dependencies: 2743 | lcid "^1.0.0" 2744 | 2745 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 2746 | version "1.0.2" 2747 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2748 | 2749 | osenv@^0.1.4: 2750 | version "0.1.4" 2751 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2752 | dependencies: 2753 | os-homedir "^1.0.0" 2754 | os-tmpdir "^1.0.0" 2755 | 2756 | p-finally@^1.0.0: 2757 | version "1.0.0" 2758 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2759 | 2760 | p-limit@^1.1.0: 2761 | version "1.1.0" 2762 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2763 | 2764 | p-locate@^2.0.0: 2765 | version "2.0.0" 2766 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2767 | dependencies: 2768 | p-limit "^1.1.0" 2769 | 2770 | package-hash@^1.2.0: 2771 | version "1.2.0" 2772 | resolved "https://registry.yarnpkg.com/package-hash/-/package-hash-1.2.0.tgz#003e56cd57b736a6ed6114cc2b81542672770e44" 2773 | dependencies: 2774 | md5-hex "^1.3.0" 2775 | 2776 | package-hash@^2.0.0: 2777 | version "2.0.0" 2778 | resolved "https://registry.yarnpkg.com/package-hash/-/package-hash-2.0.0.tgz#78ae326c89e05a4d813b68601977af05c00d2a0d" 2779 | dependencies: 2780 | graceful-fs "^4.1.11" 2781 | lodash.flattendeep "^4.4.0" 2782 | md5-hex "^2.0.0" 2783 | release-zalgo "^1.0.0" 2784 | 2785 | package-json@^4.0.0: 2786 | version "4.0.1" 2787 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed" 2788 | dependencies: 2789 | got "^6.7.1" 2790 | registry-auth-token "^3.0.1" 2791 | registry-url "^3.0.3" 2792 | semver "^5.1.0" 2793 | 2794 | parse-glob@^3.0.4: 2795 | version "3.0.4" 2796 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2797 | dependencies: 2798 | glob-base "^0.3.0" 2799 | is-dotfile "^1.0.0" 2800 | is-extglob "^1.0.0" 2801 | is-glob "^2.0.0" 2802 | 2803 | parse-json@^2.2.0: 2804 | version "2.2.0" 2805 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2806 | dependencies: 2807 | error-ex "^1.2.0" 2808 | 2809 | parse-ms@^0.1.0: 2810 | version "0.1.2" 2811 | resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-0.1.2.tgz#dd3fa25ed6c2efc7bdde12ad9b46c163aa29224e" 2812 | 2813 | parse-ms@^1.0.0: 2814 | version "1.0.1" 2815 | resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-1.0.1.tgz#56346d4749d78f23430ca0c713850aef91aa361d" 2816 | 2817 | path-exists@^2.0.0: 2818 | version "2.1.0" 2819 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2820 | dependencies: 2821 | pinkie-promise "^2.0.0" 2822 | 2823 | path-exists@^3.0.0: 2824 | version "3.0.0" 2825 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2826 | 2827 | path-is-absolute@^1.0.0: 2828 | version "1.0.1" 2829 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2830 | 2831 | path-is-inside@^1.0.1: 2832 | version "1.0.2" 2833 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2834 | 2835 | path-key@^1.0.0: 2836 | version "1.0.0" 2837 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-1.0.0.tgz#5d53d578019646c0d68800db4e146e6bdc2ac7af" 2838 | 2839 | path-key@^2.0.0: 2840 | version "2.0.1" 2841 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2842 | 2843 | path-parse@^1.0.5: 2844 | version "1.0.5" 2845 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2846 | 2847 | path-type@^1.0.0: 2848 | version "1.1.0" 2849 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2850 | dependencies: 2851 | graceful-fs "^4.1.2" 2852 | pify "^2.0.0" 2853 | pinkie-promise "^2.0.0" 2854 | 2855 | path-type@^2.0.0: 2856 | version "2.0.0" 2857 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 2858 | dependencies: 2859 | pify "^2.0.0" 2860 | 2861 | performance-now@^0.2.0: 2862 | version "0.2.0" 2863 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2864 | 2865 | pify@^2.0.0, pify@^2.3.0: 2866 | version "2.3.0" 2867 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2868 | 2869 | pinkie-promise@^1.0.0: 2870 | version "1.0.0" 2871 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-1.0.0.tgz#d1da67f5482563bb7cf57f286ae2822ecfbf3670" 2872 | dependencies: 2873 | pinkie "^1.0.0" 2874 | 2875 | pinkie-promise@^2.0.0: 2876 | version "2.0.1" 2877 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2878 | dependencies: 2879 | pinkie "^2.0.0" 2880 | 2881 | pinkie@^1.0.0: 2882 | version "1.0.0" 2883 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-1.0.0.tgz#5a47f28ba1015d0201bda7bf0f358e47bec8c7e4" 2884 | 2885 | pinkie@^2.0.0: 2886 | version "2.0.4" 2887 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2888 | 2889 | pkg-conf@^2.0.0: 2890 | version "2.0.0" 2891 | resolved "https://registry.yarnpkg.com/pkg-conf/-/pkg-conf-2.0.0.tgz#071c87650403bccfb9c627f58751bfe47c067279" 2892 | dependencies: 2893 | find-up "^2.0.0" 2894 | load-json-file "^2.0.0" 2895 | 2896 | pkg-config@^1.1.0: 2897 | version "1.1.1" 2898 | resolved "https://registry.yarnpkg.com/pkg-config/-/pkg-config-1.1.1.tgz#557ef22d73da3c8837107766c52eadabde298fe4" 2899 | dependencies: 2900 | debug-log "^1.0.0" 2901 | find-root "^1.0.0" 2902 | xtend "^4.0.1" 2903 | 2904 | pkg-dir@^1.0.0: 2905 | version "1.0.0" 2906 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 2907 | dependencies: 2908 | find-up "^1.0.0" 2909 | 2910 | pkg-up@^1.0.0: 2911 | version "1.0.0" 2912 | resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-1.0.0.tgz#3e08fb461525c4421624a33b9f7e6d0af5b05a26" 2913 | dependencies: 2914 | find-up "^1.0.0" 2915 | 2916 | plur@^1.0.0: 2917 | version "1.0.0" 2918 | resolved "https://registry.yarnpkg.com/plur/-/plur-1.0.0.tgz#db85c6814f5e5e5a3b49efc28d604fec62975156" 2919 | 2920 | plur@^2.0.0: 2921 | version "2.1.2" 2922 | resolved "https://registry.yarnpkg.com/plur/-/plur-2.1.2.tgz#7482452c1a0f508e3e344eaec312c91c29dc655a" 2923 | dependencies: 2924 | irregular-plurals "^1.0.0" 2925 | 2926 | pluralize@^1.2.1: 2927 | version "1.2.1" 2928 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 2929 | 2930 | png-img@^1.1.1: 2931 | version "1.1.4" 2932 | resolved "https://registry.yarnpkg.com/png-img/-/png-img-1.1.4.tgz#98ca1eada09d12b2d660e1b1c49c2947dc72d4ff" 2933 | dependencies: 2934 | inherit "~2.2.2" 2935 | nan "^2.0.4" 2936 | 2937 | prelude-ls@~1.1.2: 2938 | version "1.1.2" 2939 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2940 | 2941 | prepend-http@^1.0.1: 2942 | version "1.0.4" 2943 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 2944 | 2945 | preserve@^0.2.0: 2946 | version "0.2.0" 2947 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2948 | 2949 | pretty-format@^19.0.0: 2950 | version "19.0.0" 2951 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-19.0.0.tgz#56530d32acb98a3fa4851c4e2b9d37b420684c84" 2952 | dependencies: 2953 | ansi-styles "^3.0.0" 2954 | 2955 | pretty-ms@^0.2.1: 2956 | version "0.2.2" 2957 | resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-0.2.2.tgz#da879a682ff33a37011046f13d627f67c73b84f6" 2958 | dependencies: 2959 | parse-ms "^0.1.0" 2960 | 2961 | pretty-ms@^2.0.0: 2962 | version "2.1.0" 2963 | resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-2.1.0.tgz#4257c256df3fb0b451d6affaab021884126981dc" 2964 | dependencies: 2965 | is-finite "^1.0.1" 2966 | parse-ms "^1.0.0" 2967 | plur "^1.0.0" 2968 | 2969 | private@^0.1.6: 2970 | version "0.1.7" 2971 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2972 | 2973 | process-nextick-args@~1.0.6: 2974 | version "1.0.7" 2975 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2976 | 2977 | progress@^1.1.8: 2978 | version "1.1.8" 2979 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 2980 | 2981 | pseudomap@^1.0.1: 2982 | version "1.0.2" 2983 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2984 | 2985 | punycode@^1.4.1: 2986 | version "1.4.1" 2987 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2988 | 2989 | qs@~6.4.0: 2990 | version "6.4.0" 2991 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2992 | 2993 | randomatic@^1.1.3: 2994 | version "1.1.6" 2995 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 2996 | dependencies: 2997 | is-number "^2.0.2" 2998 | kind-of "^3.0.2" 2999 | 3000 | rc@^1.0.1, rc@^1.1.6, rc@^1.1.7: 3001 | version "1.2.1" 3002 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 3003 | dependencies: 3004 | deep-extend "~0.4.0" 3005 | ini "~1.3.0" 3006 | minimist "^1.2.0" 3007 | strip-json-comments "~2.0.1" 3008 | 3009 | read-pkg-up@^1.0.1: 3010 | version "1.0.1" 3011 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 3012 | dependencies: 3013 | find-up "^1.0.0" 3014 | read-pkg "^1.0.0" 3015 | 3016 | read-pkg-up@^2.0.0: 3017 | version "2.0.0" 3018 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 3019 | dependencies: 3020 | find-up "^2.0.0" 3021 | read-pkg "^2.0.0" 3022 | 3023 | read-pkg@^1.0.0: 3024 | version "1.1.0" 3025 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 3026 | dependencies: 3027 | load-json-file "^1.0.0" 3028 | normalize-package-data "^2.3.2" 3029 | path-type "^1.0.0" 3030 | 3031 | read-pkg@^2.0.0: 3032 | version "2.0.0" 3033 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 3034 | dependencies: 3035 | load-json-file "^2.0.0" 3036 | normalize-package-data "^2.3.2" 3037 | path-type "^2.0.0" 3038 | 3039 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.1.5, readable-stream@^2.2.2: 3040 | version "2.2.9" 3041 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.9.tgz#cf78ec6f4a6d1eb43d26488cac97f042e74b7fc8" 3042 | dependencies: 3043 | buffer-shims "~1.0.0" 3044 | core-util-is "~1.0.0" 3045 | inherits "~2.0.1" 3046 | isarray "~1.0.0" 3047 | process-nextick-args "~1.0.6" 3048 | string_decoder "~1.0.0" 3049 | util-deprecate "~1.0.1" 3050 | 3051 | readdirp@^2.0.0: 3052 | version "2.1.0" 3053 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 3054 | dependencies: 3055 | graceful-fs "^4.1.2" 3056 | minimatch "^3.0.2" 3057 | readable-stream "^2.0.2" 3058 | set-immediate-shim "^1.0.1" 3059 | 3060 | readline2@^1.0.1: 3061 | version "1.0.1" 3062 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 3063 | dependencies: 3064 | code-point-at "^1.0.0" 3065 | is-fullwidth-code-point "^1.0.0" 3066 | mute-stream "0.0.5" 3067 | 3068 | rechoir@^0.6.2: 3069 | version "0.6.2" 3070 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 3071 | dependencies: 3072 | resolve "^1.1.6" 3073 | 3074 | redent@^1.0.0: 3075 | version "1.0.0" 3076 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 3077 | dependencies: 3078 | indent-string "^2.1.0" 3079 | strip-indent "^1.0.1" 3080 | 3081 | regenerate@^1.2.1: 3082 | version "1.3.2" 3083 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 3084 | 3085 | regenerator-runtime@^0.10.0: 3086 | version "0.10.5" 3087 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 3088 | 3089 | regex-cache@^0.4.2: 3090 | version "0.4.3" 3091 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 3092 | dependencies: 3093 | is-equal-shallow "^0.1.3" 3094 | is-primitive "^2.0.0" 3095 | 3096 | regexpu-core@^2.0.0: 3097 | version "2.0.0" 3098 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 3099 | dependencies: 3100 | regenerate "^1.2.1" 3101 | regjsgen "^0.2.0" 3102 | regjsparser "^0.1.4" 3103 | 3104 | registry-auth-token@^3.0.1: 3105 | version "3.3.1" 3106 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.1.tgz#fb0d3289ee0d9ada2cbb52af5dfe66cb070d3006" 3107 | dependencies: 3108 | rc "^1.1.6" 3109 | safe-buffer "^5.0.1" 3110 | 3111 | registry-url@^3.0.3: 3112 | version "3.1.0" 3113 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 3114 | dependencies: 3115 | rc "^1.0.1" 3116 | 3117 | regjsgen@^0.2.0: 3118 | version "0.2.0" 3119 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 3120 | 3121 | regjsparser@^0.1.4: 3122 | version "0.1.5" 3123 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 3124 | dependencies: 3125 | jsesc "~0.5.0" 3126 | 3127 | release-zalgo@^1.0.0: 3128 | version "1.0.0" 3129 | resolved "https://registry.yarnpkg.com/release-zalgo/-/release-zalgo-1.0.0.tgz#09700b7e5074329739330e535c5a90fb67851730" 3130 | dependencies: 3131 | es6-error "^4.0.1" 3132 | 3133 | remove-trailing-separator@^1.0.1: 3134 | version "1.0.1" 3135 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" 3136 | 3137 | repeat-element@^1.1.2: 3138 | version "1.1.2" 3139 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3140 | 3141 | repeat-string@^1.5.2: 3142 | version "1.6.1" 3143 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3144 | 3145 | repeating@^2.0.0: 3146 | version "2.0.1" 3147 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3148 | dependencies: 3149 | is-finite "^1.0.0" 3150 | 3151 | request@^2.81.0: 3152 | version "2.81.0" 3153 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 3154 | dependencies: 3155 | aws-sign2 "~0.6.0" 3156 | aws4 "^1.2.1" 3157 | caseless "~0.12.0" 3158 | combined-stream "~1.0.5" 3159 | extend "~3.0.0" 3160 | forever-agent "~0.6.1" 3161 | form-data "~2.1.1" 3162 | har-validator "~4.2.1" 3163 | hawk "~3.1.3" 3164 | http-signature "~1.1.0" 3165 | is-typedarray "~1.0.0" 3166 | isstream "~0.1.2" 3167 | json-stringify-safe "~5.0.1" 3168 | mime-types "~2.1.7" 3169 | oauth-sign "~0.8.1" 3170 | performance-now "^0.2.0" 3171 | qs "~6.4.0" 3172 | safe-buffer "^5.0.1" 3173 | stringstream "~0.0.4" 3174 | tough-cookie "~2.3.0" 3175 | tunnel-agent "^0.6.0" 3176 | uuid "^3.0.0" 3177 | 3178 | require-directory@^2.1.1: 3179 | version "2.1.1" 3180 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3181 | 3182 | require-main-filename@^1.0.1: 3183 | version "1.0.1" 3184 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3185 | 3186 | require-precompiled@^0.1.0: 3187 | version "0.1.0" 3188 | resolved "https://registry.yarnpkg.com/require-precompiled/-/require-precompiled-0.1.0.tgz#5a1b52eb70ebed43eb982e974c85ab59571e56fa" 3189 | 3190 | require-uncached@^1.0.2: 3191 | version "1.0.3" 3192 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 3193 | dependencies: 3194 | caller-path "^0.1.0" 3195 | resolve-from "^1.0.0" 3196 | 3197 | resolve-cwd@^1.0.0: 3198 | version "1.0.0" 3199 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-1.0.0.tgz#4eaeea41ed040d1702457df64a42b2b07d246f9f" 3200 | dependencies: 3201 | resolve-from "^2.0.0" 3202 | 3203 | resolve-from@^1.0.0: 3204 | version "1.0.1" 3205 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 3206 | 3207 | resolve-from@^2.0.0: 3208 | version "2.0.0" 3209 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57" 3210 | 3211 | resolve@^1.1.6, resolve@^1.1.7: 3212 | version "1.3.3" 3213 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5" 3214 | dependencies: 3215 | path-parse "^1.0.5" 3216 | 3217 | restore-cursor@^1.0.1: 3218 | version "1.0.1" 3219 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 3220 | dependencies: 3221 | exit-hook "^1.0.0" 3222 | onetime "^1.0.0" 3223 | 3224 | restore-cursor@^2.0.0: 3225 | version "2.0.0" 3226 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 3227 | dependencies: 3228 | onetime "^2.0.0" 3229 | signal-exit "^3.0.2" 3230 | 3231 | right-align@^0.1.1: 3232 | version "0.1.3" 3233 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3234 | dependencies: 3235 | align-text "^0.1.1" 3236 | 3237 | rimraf@2, rimraf@^2.2.8, rimraf@^2.3.3, rimraf@^2.5.1, rimraf@^2.5.4, rimraf@^2.6.1: 3238 | version "2.6.1" 3239 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 3240 | dependencies: 3241 | glob "^7.0.5" 3242 | 3243 | run-async@^0.1.0: 3244 | version "0.1.0" 3245 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 3246 | dependencies: 3247 | once "^1.3.0" 3248 | 3249 | run-parallel@^1.1.2: 3250 | version "1.1.6" 3251 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.1.6.tgz#29003c9a2163e01e2d2dfc90575f2c6c1d61a039" 3252 | 3253 | rx-lite@^3.1.2: 3254 | version "3.1.2" 3255 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 3256 | 3257 | safe-buffer@^5.0.1: 3258 | version "5.0.1" 3259 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 3260 | 3261 | samples@0.0.2: 3262 | version "0.0.2" 3263 | resolved "https://registry.yarnpkg.com/samples/-/samples-0.0.2.tgz#eaff03dd0262e430c9f790c2052c83b14f5a3129" 3264 | 3265 | semver-diff@^2.0.0: 3266 | version "2.1.0" 3267 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 3268 | dependencies: 3269 | semver "^5.0.3" 3270 | 3271 | "semver@2 || 3 || 4 || 5", semver@5.3.0, semver@^5.0.3, semver@^5.1.0, semver@^5.3.0: 3272 | version "5.3.0" 3273 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 3274 | 3275 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3276 | version "2.0.0" 3277 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3278 | 3279 | set-immediate-shim@^1.0.1: 3280 | version "1.0.1" 3281 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3282 | 3283 | shelljs@^0.7.5: 3284 | version "0.7.7" 3285 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.7.tgz#b2f5c77ef97148f4b4f6e22682e10bba8667cff1" 3286 | dependencies: 3287 | glob "^7.0.0" 3288 | interpret "^1.0.0" 3289 | rechoir "^0.6.2" 3290 | 3291 | sigmoid-prime@0.0.1: 3292 | version "0.0.1" 3293 | resolved "https://registry.yarnpkg.com/sigmoid-prime/-/sigmoid-prime-0.0.1.tgz#fd1d824e85ca37511b423d48e3589478fae7aa07" 3294 | 3295 | sigmoid@0.0.1: 3296 | version "0.0.1" 3297 | resolved "https://registry.yarnpkg.com/sigmoid/-/sigmoid-0.0.1.tgz#b15d37258742293f697008162ab8b9ac4749b4a4" 3298 | 3299 | signal-exit@^2.0.0: 3300 | version "2.1.2" 3301 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-2.1.2.tgz#375879b1f92ebc3b334480d038dc546a6d558564" 3302 | 3303 | signal-exit@^3.0.0, signal-exit@^3.0.1, signal-exit@^3.0.2: 3304 | version "3.0.2" 3305 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3306 | 3307 | slash@^1.0.0: 3308 | version "1.0.0" 3309 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3310 | 3311 | slice-ansi@0.0.4: 3312 | version "0.0.4" 3313 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 3314 | 3315 | slide@^1.1.5: 3316 | version "1.1.6" 3317 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 3318 | 3319 | sntp@1.x.x: 3320 | version "1.0.9" 3321 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3322 | dependencies: 3323 | hoek "2.x.x" 3324 | 3325 | sort-keys@^1.1.1, sort-keys@^1.1.2: 3326 | version "1.1.2" 3327 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" 3328 | dependencies: 3329 | is-plain-obj "^1.0.0" 3330 | 3331 | source-map-support@^0.4.0, source-map-support@^0.4.2: 3332 | version "0.4.15" 3333 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1" 3334 | dependencies: 3335 | source-map "^0.5.6" 3336 | 3337 | source-map@^0.4.4: 3338 | version "0.4.4" 3339 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3340 | dependencies: 3341 | amdefine ">=0.0.4" 3342 | 3343 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 3344 | version "0.5.6" 3345 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 3346 | 3347 | spawn-wrap@1.2.4: 3348 | version "1.2.4" 3349 | resolved "https://registry.yarnpkg.com/spawn-wrap/-/spawn-wrap-1.2.4.tgz#920eb211a769c093eebfbd5b0e7a5d2e68ab2e40" 3350 | dependencies: 3351 | foreground-child "^1.3.3" 3352 | mkdirp "^0.5.0" 3353 | os-homedir "^1.0.1" 3354 | rimraf "^2.3.3" 3355 | signal-exit "^2.0.0" 3356 | which "^1.2.4" 3357 | 3358 | spdx-correct@~1.0.0: 3359 | version "1.0.2" 3360 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3361 | dependencies: 3362 | spdx-license-ids "^1.0.2" 3363 | 3364 | spdx-expression-parse@~1.0.0: 3365 | version "1.0.4" 3366 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3367 | 3368 | spdx-license-ids@^1.0.2: 3369 | version "1.2.2" 3370 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3371 | 3372 | sprintf-js@~1.0.2: 3373 | version "1.0.3" 3374 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3375 | 3376 | sshpk@^1.7.0: 3377 | version "1.13.0" 3378 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.0.tgz#ff2a3e4fd04497555fed97b39a0fd82fafb3a33c" 3379 | dependencies: 3380 | asn1 "~0.2.3" 3381 | assert-plus "^1.0.0" 3382 | dashdash "^1.12.0" 3383 | getpass "^0.1.1" 3384 | optionalDependencies: 3385 | bcrypt-pbkdf "^1.0.0" 3386 | ecc-jsbn "~0.1.1" 3387 | jodid25519 "^1.0.0" 3388 | jsbn "~0.1.0" 3389 | tweetnacl "~0.14.0" 3390 | 3391 | stack-utils@^1.0.0: 3392 | version "1.0.1" 3393 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.1.tgz#d4f33ab54e8e38778b0ca5cfd3b3afb12db68620" 3394 | 3395 | standard-engine@~7.0.0: 3396 | version "7.0.0" 3397 | resolved "https://registry.yarnpkg.com/standard-engine/-/standard-engine-7.0.0.tgz#ebb77b9c8fc2c8165ffa353bd91ba0dff41af690" 3398 | dependencies: 3399 | deglob "^2.1.0" 3400 | get-stdin "^5.0.1" 3401 | minimist "^1.1.0" 3402 | pkg-conf "^2.0.0" 3403 | 3404 | standard@^10.0.2: 3405 | version "10.0.2" 3406 | resolved "https://registry.yarnpkg.com/standard/-/standard-10.0.2.tgz#974c1c53cc865b075a4b576e78441e1695daaf7b" 3407 | dependencies: 3408 | eslint "~3.19.0" 3409 | eslint-config-standard "10.2.1" 3410 | eslint-config-standard-jsx "4.0.1" 3411 | eslint-plugin-import "~2.2.0" 3412 | eslint-plugin-node "~4.2.2" 3413 | eslint-plugin-promise "~3.5.0" 3414 | eslint-plugin-react "~6.10.0" 3415 | eslint-plugin-standard "~3.0.1" 3416 | standard-engine "~7.0.0" 3417 | 3418 | string-width@^1.0.1, string-width@^1.0.2: 3419 | version "1.0.2" 3420 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3421 | dependencies: 3422 | code-point-at "^1.0.0" 3423 | is-fullwidth-code-point "^1.0.0" 3424 | strip-ansi "^3.0.0" 3425 | 3426 | string-width@^2.0.0: 3427 | version "2.0.0" 3428 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 3429 | dependencies: 3430 | is-fullwidth-code-point "^2.0.0" 3431 | strip-ansi "^3.0.0" 3432 | 3433 | string_decoder@~1.0.0: 3434 | version "1.0.1" 3435 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.1.tgz#62e200f039955a6810d8df0a33ffc0f013662d98" 3436 | dependencies: 3437 | safe-buffer "^5.0.1" 3438 | 3439 | stringstream@~0.0.4: 3440 | version "0.0.5" 3441 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3442 | 3443 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3444 | version "3.0.1" 3445 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3446 | dependencies: 3447 | ansi-regex "^2.0.0" 3448 | 3449 | strip-ansi@~0.1.0: 3450 | version "0.1.1" 3451 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-0.1.1.tgz#39e8a98d044d150660abe4a6808acf70bb7bc991" 3452 | 3453 | strip-bom-buf@^1.0.0: 3454 | version "1.0.0" 3455 | resolved "https://registry.yarnpkg.com/strip-bom-buf/-/strip-bom-buf-1.0.0.tgz#1cb45aaf57530f4caf86c7f75179d2c9a51dd572" 3456 | dependencies: 3457 | is-utf8 "^0.2.1" 3458 | 3459 | strip-bom@^2.0.0: 3460 | version "2.0.0" 3461 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3462 | dependencies: 3463 | is-utf8 "^0.2.0" 3464 | 3465 | strip-bom@^3.0.0: 3466 | version "3.0.0" 3467 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3468 | 3469 | strip-eof@^1.0.0: 3470 | version "1.0.0" 3471 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3472 | 3473 | strip-indent@^1.0.1: 3474 | version "1.0.1" 3475 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 3476 | dependencies: 3477 | get-stdin "^4.0.1" 3478 | 3479 | strip-json-comments@~2.0.1: 3480 | version "2.0.1" 3481 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3482 | 3483 | supports-color@^2.0.0: 3484 | version "2.0.0" 3485 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3486 | 3487 | supports-color@^3.1.2, supports-color@^3.2.3: 3488 | version "3.2.3" 3489 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3490 | dependencies: 3491 | has-flag "^1.0.0" 3492 | 3493 | symbol-observable@^0.2.2: 3494 | version "0.2.4" 3495 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-0.2.4.tgz#95a83db26186d6af7e7a18dbd9760a2f86d08f40" 3496 | 3497 | symbol-observable@^1.0.4: 3498 | version "1.0.4" 3499 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d" 3500 | 3501 | table@^3.7.8: 3502 | version "3.8.3" 3503 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 3504 | dependencies: 3505 | ajv "^4.7.0" 3506 | ajv-keywords "^1.0.0" 3507 | chalk "^1.1.1" 3508 | lodash "^4.0.0" 3509 | slice-ansi "0.0.4" 3510 | string-width "^2.0.0" 3511 | 3512 | tar-pack@^3.4.0: 3513 | version "3.4.0" 3514 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 3515 | dependencies: 3516 | debug "^2.2.0" 3517 | fstream "^1.0.10" 3518 | fstream-ignore "^1.0.5" 3519 | once "^1.3.3" 3520 | readable-stream "^2.1.4" 3521 | rimraf "^2.5.1" 3522 | tar "^2.2.1" 3523 | uid-number "^0.0.6" 3524 | 3525 | tar@^2.2.1: 3526 | version "2.2.1" 3527 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3528 | dependencies: 3529 | block-stream "*" 3530 | fstream "^1.0.2" 3531 | inherits "2" 3532 | 3533 | term-size@^0.1.0: 3534 | version "0.1.1" 3535 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-0.1.1.tgz#87360b96396cab5760963714cda0d0cbeecad9ca" 3536 | dependencies: 3537 | execa "^0.4.0" 3538 | 3539 | test-exclude@^4.1.0: 3540 | version "4.1.0" 3541 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.0.tgz#04ca70b7390dd38c98d4a003a173806ca7991c91" 3542 | dependencies: 3543 | arrify "^1.0.1" 3544 | micromatch "^2.3.11" 3545 | object-assign "^4.1.0" 3546 | read-pkg-up "^1.0.1" 3547 | require-main-filename "^1.0.1" 3548 | 3549 | text-table@^0.2.0, text-table@~0.2.0: 3550 | version "0.2.0" 3551 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3552 | 3553 | through2@^2.0.0: 3554 | version "2.0.3" 3555 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 3556 | dependencies: 3557 | readable-stream "^2.1.5" 3558 | xtend "~4.0.1" 3559 | 3560 | through@^2.3.6: 3561 | version "2.3.8" 3562 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3563 | 3564 | time-require@^0.1.2: 3565 | version "0.1.2" 3566 | resolved "https://registry.yarnpkg.com/time-require/-/time-require-0.1.2.tgz#f9e12cb370fc2605e11404582ba54ef5ca2b2d98" 3567 | dependencies: 3568 | chalk "^0.4.0" 3569 | date-time "^0.1.1" 3570 | pretty-ms "^0.2.1" 3571 | text-table "^0.2.0" 3572 | 3573 | timed-out@^4.0.0: 3574 | version "4.0.1" 3575 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" 3576 | 3577 | to-fast-properties@^1.0.1: 3578 | version "1.0.3" 3579 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3580 | 3581 | tough-cookie@~2.3.0: 3582 | version "2.3.2" 3583 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3584 | dependencies: 3585 | punycode "^1.4.1" 3586 | 3587 | trim-newlines@^1.0.0: 3588 | version "1.0.0" 3589 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 3590 | 3591 | trim-right@^1.0.1: 3592 | version "1.0.1" 3593 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3594 | 3595 | tryit@^1.0.1: 3596 | version "1.0.3" 3597 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 3598 | 3599 | tunnel-agent@^0.6.0: 3600 | version "0.6.0" 3601 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3602 | dependencies: 3603 | safe-buffer "^5.0.1" 3604 | 3605 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3606 | version "0.14.5" 3607 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3608 | 3609 | type-check@~0.3.2: 3610 | version "0.3.2" 3611 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3612 | dependencies: 3613 | prelude-ls "~1.1.2" 3614 | 3615 | typedarray@^0.0.6: 3616 | version "0.0.6" 3617 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3618 | 3619 | uglify-js@^2.6: 3620 | version "2.8.27" 3621 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.27.tgz#47787f912b0f242e5b984343be8e35e95f694c9c" 3622 | dependencies: 3623 | source-map "~0.5.1" 3624 | yargs "~3.10.0" 3625 | optionalDependencies: 3626 | uglify-to-browserify "~1.0.0" 3627 | 3628 | uglify-to-browserify@~1.0.0: 3629 | version "1.0.2" 3630 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3631 | 3632 | uid-number@^0.0.6: 3633 | version "0.0.6" 3634 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3635 | 3636 | uid2@0.0.3: 3637 | version "0.0.3" 3638 | resolved "https://registry.yarnpkg.com/uid2/-/uid2-0.0.3.tgz#483126e11774df2f71b8b639dcd799c376162b82" 3639 | 3640 | uniq@^1.0.1: 3641 | version "1.0.1" 3642 | resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" 3643 | 3644 | unique-string@^1.0.0: 3645 | version "1.0.0" 3646 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" 3647 | dependencies: 3648 | crypto-random-string "^1.0.0" 3649 | 3650 | unique-temp-dir@^1.0.0: 3651 | version "1.0.0" 3652 | resolved "https://registry.yarnpkg.com/unique-temp-dir/-/unique-temp-dir-1.0.0.tgz#6dce95b2681ca003eebfb304a415f9cbabcc5385" 3653 | dependencies: 3654 | mkdirp "^0.5.1" 3655 | os-tmpdir "^1.0.1" 3656 | uid2 "0.0.3" 3657 | 3658 | unzip-response@^2.0.1: 3659 | version "2.0.1" 3660 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" 3661 | 3662 | update-notifier@^2.1.0: 3663 | version "2.1.0" 3664 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.1.0.tgz#ec0c1e53536b76647a24b77cb83966d9315123d9" 3665 | dependencies: 3666 | boxen "^1.0.0" 3667 | chalk "^1.0.0" 3668 | configstore "^3.0.0" 3669 | is-npm "^1.0.0" 3670 | latest-version "^3.0.0" 3671 | lazy-req "^2.0.0" 3672 | semver-diff "^2.0.0" 3673 | xdg-basedir "^3.0.0" 3674 | 3675 | url-parse-lax@^1.0.0: 3676 | version "1.0.0" 3677 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" 3678 | dependencies: 3679 | prepend-http "^1.0.1" 3680 | 3681 | user-home@^2.0.0: 3682 | version "2.0.0" 3683 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 3684 | dependencies: 3685 | os-homedir "^1.0.0" 3686 | 3687 | util-deprecate@~1.0.1: 3688 | version "1.0.2" 3689 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3690 | 3691 | uuid@^3.0.0: 3692 | version "3.0.1" 3693 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 3694 | 3695 | validate-npm-package-license@^3.0.1: 3696 | version "3.0.1" 3697 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3698 | dependencies: 3699 | spdx-correct "~1.0.0" 3700 | spdx-expression-parse "~1.0.0" 3701 | 3702 | verror@1.3.6: 3703 | version "1.3.6" 3704 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 3705 | dependencies: 3706 | extsprintf "1.0.2" 3707 | 3708 | which-module@^1.0.0: 3709 | version "1.0.0" 3710 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 3711 | 3712 | which@^1.2.4, which@^1.2.8, which@^1.2.9: 3713 | version "1.2.14" 3714 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 3715 | dependencies: 3716 | isexe "^2.0.0" 3717 | 3718 | wide-align@^1.1.0: 3719 | version "1.1.2" 3720 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3721 | dependencies: 3722 | string-width "^1.0.2" 3723 | 3724 | widest-line@^1.0.0: 3725 | version "1.0.0" 3726 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-1.0.0.tgz#0c09c85c2a94683d0d7eaf8ee097d564bf0e105c" 3727 | dependencies: 3728 | string-width "^1.0.1" 3729 | 3730 | window-size@0.1.0: 3731 | version "0.1.0" 3732 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3733 | 3734 | wordwrap@0.0.2: 3735 | version "0.0.2" 3736 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3737 | 3738 | wordwrap@~0.0.2: 3739 | version "0.0.3" 3740 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3741 | 3742 | wordwrap@~1.0.0: 3743 | version "1.0.0" 3744 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3745 | 3746 | wrap-ansi@^2.0.0: 3747 | version "2.1.0" 3748 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3749 | dependencies: 3750 | string-width "^1.0.1" 3751 | strip-ansi "^3.0.1" 3752 | 3753 | wrappy@1: 3754 | version "1.0.2" 3755 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3756 | 3757 | write-file-atomic@^1.1.4: 3758 | version "1.3.4" 3759 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.4.tgz#f807a4f0b1d9e913ae7a48112e6cc3af1991b45f" 3760 | dependencies: 3761 | graceful-fs "^4.1.11" 3762 | imurmurhash "^0.1.4" 3763 | slide "^1.1.5" 3764 | 3765 | write-file-atomic@^2.0.0: 3766 | version "2.1.0" 3767 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.1.0.tgz#1769f4b551eedce419f0505deae2e26763542d37" 3768 | dependencies: 3769 | graceful-fs "^4.1.11" 3770 | imurmurhash "^0.1.4" 3771 | slide "^1.1.5" 3772 | 3773 | write-json-file@^2.0.0: 3774 | version "2.1.0" 3775 | resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-2.1.0.tgz#ba1cf3ac7ee89db26c3d528986e48421389046b7" 3776 | dependencies: 3777 | graceful-fs "^4.1.2" 3778 | make-dir "^1.0.0" 3779 | pify "^2.0.0" 3780 | sort-keys "^1.1.1" 3781 | write-file-atomic "^2.0.0" 3782 | 3783 | write-pkg@^2.0.0: 3784 | version "2.1.0" 3785 | resolved "https://registry.yarnpkg.com/write-pkg/-/write-pkg-2.1.0.tgz#353aa44c39c48c21440f5c08ce6abd46141c9c08" 3786 | dependencies: 3787 | sort-keys "^1.1.2" 3788 | write-json-file "^2.0.0" 3789 | 3790 | write@^0.2.1: 3791 | version "0.2.1" 3792 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 3793 | dependencies: 3794 | mkdirp "^0.5.1" 3795 | 3796 | xdg-basedir@^3.0.0: 3797 | version "3.0.0" 3798 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" 3799 | 3800 | xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.1: 3801 | version "4.0.1" 3802 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3803 | 3804 | y18n@^3.2.1: 3805 | version "3.2.1" 3806 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3807 | 3808 | yallist@^2.0.0: 3809 | version "2.1.2" 3810 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3811 | 3812 | yargs-parser@^5.0.0: 3813 | version "5.0.0" 3814 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" 3815 | dependencies: 3816 | camelcase "^3.0.0" 3817 | 3818 | yargs@^7.1.0: 3819 | version "7.1.0" 3820 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" 3821 | dependencies: 3822 | camelcase "^3.0.0" 3823 | cliui "^3.2.0" 3824 | decamelize "^1.1.1" 3825 | get-caller-file "^1.0.1" 3826 | os-locale "^1.4.0" 3827 | read-pkg-up "^1.0.1" 3828 | require-directory "^2.1.1" 3829 | require-main-filename "^1.0.1" 3830 | set-blocking "^2.0.0" 3831 | string-width "^1.0.2" 3832 | which-module "^1.0.0" 3833 | y18n "^3.2.1" 3834 | yargs-parser "^5.0.0" 3835 | 3836 | yargs@~3.10.0: 3837 | version "3.10.0" 3838 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3839 | dependencies: 3840 | camelcase "^1.0.2" 3841 | cliui "^2.1.0" 3842 | decamelize "^1.0.0" 3843 | window-size "0.1.0" 3844 | --------------------------------------------------------------------------------