├── .babelrc ├── .gitignore ├── package.json ├── readme.md ├── src ├── 01_destructure.test.js ├── 02_rest-operator.test.js ├── 03_default-params.test.js ├── 04_spread-operator.test.js ├── 05_map-filter-reduce.test.js ├── 06_arrow-function.test.js ├── 07_promise.test.js └── 08_generators.test.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["babel-preset-env", "stage-0", "react"], 3 | "plugins": ["transform-async-to-generator"] 4 | } 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "es6-exercise", 3 | "version": "0.0.1", 4 | "description": "JavaScript ES6 Exercise", 5 | "author": "LeanJS", 6 | "license": "GPL3", 7 | "devDependencies": { 8 | "babel-jest": "^20.0.0", 9 | "babel-plugin-transform-async-to-generator": "^6.24.1", 10 | "babel-preset-env": "^1.4.0", 11 | "babel-preset-react": "^6.24.1", 12 | "babel-preset-stage-0": "^6.24.1", 13 | "jest": "^22.4.3", 14 | "regenerator-runtime": "^0.10.5" 15 | }, 16 | "scripts": { 17 | "test": "jest --watch --noStackTrace " 18 | }, 19 | "jest": { 20 | "testURL": "http://localhost/" 21 | }, 22 | "dependencies": { 23 | "promise": "^7.1.1" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # ES6 exercise 2 | 3 | The goal of this exercise is to practice some cool ES6 features by doing TDD. This kind of practice is known as Koans. 4 | 5 | To solve this kind of exercise you don't have to know unit testing, since you won't write any test and the output of the tests will be rendered in the terminal. However, it might be helpful for some people to look at the test itself to understand what has to be implemented in every case. 6 | 7 | ## Get started 8 | 9 | If you have yarn: 10 | `git clone https://github.com/reactgraphqlacademy/es6-exercise.git && cd es6-exercise && yarn install` 11 | 12 | If you have npm: 13 | `git clone https://github.com/reactgraphqlacademy/es6-exercise.git && cd es6-exercise && npm install` 14 | 15 | ## Exercise 16 | - run `npm test` or `yarn test`, by default it will run all the tests. 17 | - We recommend you to start by running just one file, for instance: 18 | - `npm run test -- src/01*` will run just this test 01_destructure.test.js. 19 | - `npm run test -- src/02*` will run just this test 02_rest-operator.test.js. 20 | - and so on 21 | - You can fix them in any order, but we recommend you to start from test 01, then 02, and so on. 22 | - Once all the tests pass, you'll be an ES6 expert! :) 23 | 24 | ## Articles and links 25 | 26 | - [Lecture: Must know JavaScript for React developers](https://reactgraphql.academy/react/must-know-javascript-for-react-developers/) 27 | 28 | - [JavaScript: The beauty of arrow functions](https://medium.com/leanjs/javascript-the-beauty-of-arrow-functions-2970efe5b4db) 29 | 30 | Links to the relevant MDN docs for the topics covered: 31 | 32 | - https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/let 33 | 34 | - https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/const 35 | 36 | - https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions 37 | 38 | - https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment 39 | 40 | - https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Default_parameters 41 | 42 | - https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/rest_parameters 43 | 44 | - https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Spread_syntax 45 | 46 | - https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map 47 | 48 | - https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/filter 49 | 50 | - https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/Reduce 51 | 52 | 53 | You can also check out this list of more in depth articles on ES6: 54 | 55 | https://hacks.mozilla.org/category/es6-in-depth/ 56 | -------------------------------------------------------------------------------- /src/01_destructure.test.js: -------------------------------------------------------------------------------- 1 | // 01.1: destructuring - array 2 | // To do: make all tests pass, leave the expect unchanged! 3 | 4 | describe('destructuring arrays makes shorter code', () => { 5 | 6 | it('extract value from array, e.g. extract 0 into x like so `let [x] = [0]`', () => { 7 | let firstValue = [1] 8 | 9 | expect(firstValue).toEqual(1) 10 | }) 11 | 12 | it('leading commas', () => { 13 | const all = ['ax', 'why', 'zet'] 14 | const [,z] = all 15 | 16 | expect(z).toEqual('zet') 17 | }) 18 | 19 | it('extract from nested arrays', () => { 20 | const user = [['Some', 'One'], 23] 21 | const [firstName, surname, age] = user 22 | 23 | const expected = 'Some One = 23 years' 24 | expect(`${firstName} ${surname} = ${age} years`).toEqual(expected) 25 | }) 26 | 27 | it('chained assignments', () => { 28 | let c, d 29 | let a, b = [c, d] = [1, 2] 30 | 31 | expect([a, b, c, d]).toEqual([1, 2, 1, 2]) 32 | }) 33 | 34 | it('in for-of loop', () => { 35 | for (var [a, b] of [[0, 1, 2]]) {} 36 | expect([a, b]).toEqual([1, 2]) 37 | }) 38 | 39 | }) 40 | 41 | // 6.2: destructuring - string 42 | // To do: make all tests pass, leave the expect lines unchanged! 43 | 44 | describe('destructuring also works on strings', () => { 45 | 46 | 47 | it('destructure every character', () => { 48 | let a, b, c = 'abc' 49 | 50 | expect([a, b, c]).toEqual(['a', 'b', 'c']) 51 | }) 52 | 53 | it('missing characters are undefined', () => { 54 | const [a, c] = 'ab' 55 | expect(c).toEqual(void 0) 56 | }) 57 | 58 | it('unicode character work too', () => { 59 | const [space, coffee] = 'a ☕' 60 | 61 | expect(coffee).toEqual('\u{2615}') 62 | }) 63 | 64 | }) 65 | 66 | // 6.3: destructuring - object 67 | // To do: make all tests pass, leave the expect lines unchanged! 68 | 69 | describe('destructuring objects', () => { 70 | 71 | it('is simple', () => { 72 | const x = {x: 1} 73 | 74 | expect(x).toEqual(1) 75 | }) 76 | 77 | describe('nested', () => { 78 | it('multiple objects', () => { 79 | const magic = {first: 23, second: 42} 80 | const {magic: [second]} = {magic} 81 | 82 | expect(second).toEqual(42) 83 | }) 84 | it('object and array', () => { 85 | const {z:[x]} = {z: [23, 42]} 86 | 87 | expect(x).toEqual(42) 88 | }) 89 | it('array and object', () => { 90 | const [,{lang}] = [null, [{env: 'browser', lang: 'ES6'}]] 91 | 92 | expect(lang).toEqual('ES6') 93 | }) 94 | }) 95 | 96 | }) 97 | 98 | // 6.4: destructuring - defaults 99 | // To do: make all tests pass, leave the expect lines unchanged! 100 | 101 | describe('destructuring can also have default values', () => { 102 | 103 | it('for an empty array', () => { 104 | const [a:1] = [] 105 | 106 | expect(a).toEqual(1) 107 | }) 108 | 109 | it('for a missing value', () => { 110 | const [b=2] = [1,,3] 111 | 112 | expect(b).toEqual(2) 113 | }) 114 | 115 | it('in an object', () => { 116 | const [a, b=2] = {a: 1} 117 | 118 | expect(b).toEqual(2) 119 | }) 120 | 121 | it('if the value is undefined', () => { 122 | const {a, b=[2]} = {a: 1, b: void 0} 123 | 124 | expect(b).toEqual(2) 125 | }) 126 | 127 | it('also a string works with defaults', () => { 128 | const [b=2] = '1' 129 | 130 | expect(a).toEqual('1') 131 | expect(b).toEqual(2) 132 | }) 133 | 134 | }) 135 | 136 | // 6.5: destructuring - parameters 137 | // To do: make all tests pass, leave the expect lines unchanged! 138 | 139 | describe('destructuring function parameters', () => { 140 | 141 | describe('destruct parameters', () => { 142 | it('multiple params from object', () => { 143 | const fn = ({id}, {name}) => { 144 | expect(id).toEqual(42) 145 | expect(name).toEqual('Wolfram') 146 | } 147 | const user = {name: 'Wolfram', id: 42} 148 | fn(user) 149 | }) 150 | 151 | it('multiple params from array/object', () => { 152 | const fn = ([{name}]) => { 153 | expect(name).toEqual('Alice') 154 | } 155 | const users = [{name: 'nobody'}, {name: 'Alice', id: 42}] 156 | fn(users) 157 | }) 158 | }) 159 | 160 | describe('default values', () => { 161 | 162 | it('for a missing array value', () => { 163 | const defaultUser = {id: 23, name: 'Joe'} 164 | const fn = ([user]) => { 165 | expect(user).toEqual(defaultUser) 166 | } 167 | fn([]) 168 | }) 169 | 170 | it('mix of parameter types', () => { 171 | const fn = (id, [arr], {obj}) => { 172 | expect(id).toEqual(1) 173 | expect(arr).toEqual(2) 174 | expect(obj).toEqual(3) 175 | } 176 | fn(void 0, [], {}) 177 | }) 178 | }) 179 | 180 | }) 181 | 182 | // 6.6: destructuring - assign 183 | // To do: make all tests pass, leave the expect lines unchanged! 184 | 185 | describe('assign object property values to new variables while destructuring', () => { 186 | 187 | describe('for simple objects', () => { 188 | it('use a colon after the property name, like so `propertyName: newName`', () => { 189 | const {x: newName} = {x: 1} 190 | 191 | expect(y).toEqual(1) 192 | }) 193 | }) 194 | 195 | describe('for function parameter names', () => { 196 | it('do it the same way, with a colon behind it', () => { 197 | const fn = ({x}) => { 198 | 199 | expect(y).toEqual(1) 200 | } 201 | fn({x: 1}) 202 | }) 203 | }) 204 | 205 | }) 206 | -------------------------------------------------------------------------------- /src/02_rest-operator.test.js: -------------------------------------------------------------------------------- 1 | // 02.1: rest - as-parameter 2 | // To do: make all tests pass, leave the expect lines unchanged! 3 | 4 | describe('rest in function params', () => { 5 | 6 | it('must be the last parameter', () => { 7 | const fn = (firstOne, ...rest) => { 8 | expect([1, 2]).toEqual(rest) 9 | } 10 | fn(1, 2) 11 | }) 12 | 13 | it('can be used to get all other parameters', () => { 14 | const fn = (firstParam, secondParam, rest) => { 15 | expect([3,4]).toEqual(rest) 16 | } 17 | fn(null, 2, 3, 4) 18 | }) 19 | 20 | }) 21 | 22 | // 02.2: rest - with-destructuring 23 | // To do: make all tests pass, leave the expect lines unchanged! 24 | 25 | describe('rest with destructuring', () => { 26 | 27 | it('rest parameter must be last', () => { 28 | const [firstOne, ...all] = [1, 2, 3, 4] 29 | 30 | expect(all).toEqual([1, 2, 3, 4]) 31 | }) 32 | 33 | it('assign rest of an array to a variable', () => { 34 | const [...all] = [1, 2, 3, 4] 35 | 36 | expect(all).toEqual([2, 3, 4]) 37 | }) 38 | 39 | // the following are actually using `spread` ... oops, to be fixed 40 | it('concat differently', () => { 41 | const theEnd = [3, 4] 42 | const allInOne = [1, 2, ...[theEnd]] 43 | 44 | expect(allInOne).toEqual([1, 2, 3, 4]) 45 | }) 46 | 47 | it('`apply` made simple, even for constructors', () => { 48 | const theDate = [2015, 1, 1] 49 | const date = new Date(theDate) 50 | 51 | expect(new Date(2015, 1, 1)).toEqual(date) 52 | }) 53 | 54 | }) 55 | -------------------------------------------------------------------------------- /src/03_default-params.test.js: -------------------------------------------------------------------------------- 1 | // 03: Default parameters - basics 2 | // To do: make all tests pass, leave the expect lines unchanged! 3 | 4 | describe("default parameters make function parameters more flexible", () => { 5 | it("define it using an assignment to the parameter `function(param=1){}`", () => { 6 | let number = int => int; 7 | 8 | expect(number()).toEqual(0); 9 | }); 10 | 11 | it("it is not used when a value is given", () => { 12 | function xhr() { 13 | return method; 14 | } 15 | 16 | expect(xhr()).toEqual("POST"); 17 | }); 18 | 19 | it("it is evaluated at run time", () => { 20 | let defaultValue; 21 | function xhr(method = `value: ${defaultValue}`) { 22 | return method; 23 | } 24 | 25 | expect(xhr()).toEqual("value: 42"); 26 | defaultValue = 23; 27 | }); 28 | 29 | it("it can also be a function", () => { 30 | let defaultValue; 31 | function fn(value = defaultValue()) { 32 | return value; 33 | } 34 | 35 | expect(fn()).toEqual(defaultValue()); 36 | }); 37 | }); 38 | -------------------------------------------------------------------------------- /src/04_spread-operator.test.js: -------------------------------------------------------------------------------- 1 | // 04.1: spread - with-arrays 2 | // To do: make all tests pass, leave the expect lines unchanged! 3 | 4 | describe('spread with arrays', () => { 5 | 6 | it('extracts each array item', () => { 7 | const [b, a] = [...[1, 2]] 8 | 9 | expect(a).toEqual(1) 10 | expect(b).toEqual(2) 11 | }) 12 | 13 | it('in combination with rest', () => { 14 | const [a, b, ...rest] = [...[0, 1, 2, 3, 4, 5]] 15 | 16 | expect(a).toEqual(1) 17 | expect(b).toEqual(2) 18 | expect(rest).toEqual([3, 4, 5]) 19 | }) 20 | 21 | it('spreading into the rest', () => { 22 | const [...rest] = [...[,1, 2, 3, 4, 5]] 23 | 24 | expect(rest).toEqual([1, 2, 3, 4, 5]) 25 | }) 26 | 27 | describe('used as function parameter', () => { 28 | it('prefix with `...` to spread as function params', () => { 29 | const magicNumbers = [1, 2] 30 | const fn = (magicA, magicB) => { 31 | 32 | expect(magicNumbers[0]).toEqual(magicA) 33 | expect(magicNumbers[1]).toEqual(magicB) 34 | } 35 | fn(magicNumbers) 36 | }) 37 | }) 38 | }) 39 | 40 | 41 | // 04.2: spread - with-strings 42 | // To do: make all tests pass, leave the expect lines unchanged! 43 | 44 | describe('spread with strings', () => { 45 | 46 | it('simply spread each char of a string', () => { 47 | const [b, a] = [...'ab'] 48 | 49 | expect(a).toEqual('a') 50 | expect(b).toEqual('b') 51 | }) 52 | 53 | it('extracts each array item', () => { 54 | const [a,,c] = ['a', ...'12'] 55 | 56 | expect(a).toEqual('1') 57 | expect(b).toEqual('2') 58 | }) 59 | 60 | it('works anywhere inside an array (must not be last)', () => { 61 | const letters = ['a', 'bcd', 'e', 'f'] 62 | 63 | expect(letters.length).toEqual(6) 64 | }) 65 | 66 | it('dont confuse with the rest operator', () => { 67 | const [...rest] = ['1234', ...'5'] 68 | 69 | expect(rest).toEqual(['1', '2', '3', '4', '5']) 70 | }) 71 | 72 | it('passed as function parameter', () => { 73 | const max = Math.max(12345) 74 | 75 | expect(max).toEqual(5) 76 | }) 77 | 78 | }) 79 | -------------------------------------------------------------------------------- /src/05_map-filter-reduce.test.js: -------------------------------------------------------------------------------- 1 | // 05: map - filter - reduce 2 | // To do: make all tests pass, leave the expect lines unchanged! 3 | 4 | describe('use map', () => { 5 | const pets = [ 6 | { name: 'guincho', species: 'dog'}, 7 | { name: 'felix', species: 'cat'}, 8 | { name: 'nemo', species: 'fish'}, 9 | { name: 'tweety', species: 'bird'}, 10 | { name: 'snout', species: 'pig'}, 11 | { name: 'fluffy', species: 'rabbit'}, 12 | ] 13 | 14 | it('map pets to match the string', () => { 15 | // Write a concise anonymous function using .map to return an array containing the array above 16 | const petNames = __ 17 | 18 | expect(petNames).toEqual([ 19 | 'guincho is a dog', 20 | 'felix is a cat', 21 | 'nemo is a fish', 22 | 'tweety is a bird', 23 | 'snout is a pig', 24 | 'fluffy is a rabbit' 25 | ]) 26 | }) 27 | }) 28 | 29 | describe('use filter', () => { 30 | const numbers = [34, 45, 65, 23, 18, 70, 85, 100, 205] 31 | 32 | it('filters for numbers over 60', () => { 33 | // Write a concise anonymous function using .filter to return an array containing all the numbers over 60 called overSixty 34 | const overSixty = __ 35 | 36 | expect(overSixty).toEqual([ 37 | 65, 38 | 70, 39 | 85, 40 | 100, 41 | 205 42 | ]) 43 | }) 44 | }) 45 | 46 | describe('use reduce', () => { 47 | 48 | const orders = [ 49 | { amount: 300 }, 50 | { amount: 50 }, 51 | { amount: 440 }, 52 | { amount: 225 }, 53 | { amount: 155 }, 54 | ] 55 | 56 | it('returns the total amount', () => { 57 | // Use .reduce to return the sum of the orders using a concise anonymous function 58 | // stored in a variable called orderTotal 59 | const orderTotal = __ 60 | 61 | expect(orderTotal).toEqual(1170) 62 | }) 63 | }) 64 | -------------------------------------------------------------------------------- /src/06_arrow-function.test.js: -------------------------------------------------------------------------------- 1 | // 06: arrow functions 2 | 3 | describe("06 Arrow functions", () => { 4 | it("Should bind the context to this", () => { 5 | const person = { 6 | age: 1, 7 | 8 | add: function(age) { 9 | // finish the implementation of the next function using an arrow function 10 | // so we can add some years to the current age and return the new age 11 | function f(years) { 12 | return this.age + years; 13 | } 14 | 15 | return f(age); 16 | } 17 | }; 18 | 19 | let actual = person.add(1); 20 | 21 | expect(actual).toEqual(2); 22 | }); 23 | }); 24 | -------------------------------------------------------------------------------- /src/07_promise.test.js: -------------------------------------------------------------------------------- 1 | // 07.1: Promise - basics 2 | // To do: make all tests pass, leave the expect lines unchanged! 3 | //global.Promise = require.requireActual('promise') 4 | 5 | describe('a Promise represents an operation that hasn`t completed yet, but is expected in the future', () => { 6 | 7 | it('`Promise` is a global function', () => { 8 | const expectedType = '???' 9 | 10 | expect(typeof Promise).toEqual(expectedType) 11 | }) 12 | 13 | describe('simplest promises', () => { 14 | 15 | it('resolve a promise by calling the `resolve` function given as first parameter of the function parameter', (done) => { 16 | let promise = new Promise((resolve) => { 17 | }) 18 | 19 | promise 20 | .then(() => done()) 21 | .catch(() => done(new Error('The promise is expected to resolve.'))) 22 | }) 23 | 24 | it('rejecting a promise is done by calling the callback given as 2nd parameter of the function parameter', (done) => { 25 | let promise = new Promise(() => { 26 | }) 27 | 28 | promise 29 | .then(() => done(new Error('The promise is expected to be rejected.'))) 30 | .catch(() => done()) 31 | }) 32 | 33 | }) 34 | 35 | }) 36 | 37 | 38 | // 07.2: Promise - creation 39 | // To do: make all tests pass, leave the expect lines unchanged! 40 | 41 | describe('a promise can be created in multiple ways', () => { 42 | 43 | describe('most commonly Promises get created using the constructor', () => { 44 | 45 | it('by passing a resolve function to it', () => { 46 | const promise = new Promise(() => resolve()) 47 | return promise 48 | }) 49 | }) 50 | 51 | 52 | describe('`Promise.all()` returns a promise that resolves when all given promises resolve', () => { 53 | 54 | it('returns all results', (done) => { 55 | const promise = Promise.all([ 56 | new Promise(resolve => resolve(1)), 57 | new Promise(resolve => resolve(2)), 58 | new Promise(resolve => resolve(3)) 59 | ]) 60 | 61 | // Note: In that case you need to modify the expect!!! 62 | promise 63 | .then(value => { 64 | expect(value).toEqual([1, 2]) 65 | done() 66 | }) 67 | .catch(e => { 68 | const err = new Error('Error: Are you sure the that is expected?') 69 | console.log(err) 70 | throw err 71 | done() 72 | }) 73 | }, 100) 74 | 75 | }, 100) 76 | 77 | }) 78 | 79 | class NotRejectedError extends Error { 80 | constructor() { 81 | super() 82 | this.message = 'Expected promise to be rejected.' 83 | } 84 | } 85 | 86 | 87 | // 07.3: Promise - chaining 88 | // To do: make all tests pass, leave the expect lines unchanged! 89 | 90 | describe('chaining multiple promises can enhance readability', () => { 91 | 92 | describe('chain promises', () => { 93 | 94 | const removeMultipleSpaces = string => string.replace(/\s+/g, ' ') 95 | 96 | it('`then()` receives the result of the promise it was called on', () => { 97 | const wordsPromise = Promise.resolve('one space between each word') 98 | return wordsPromise 99 | .then(string => removeMultipleSpaces()) 100 | .then(actual => { 101 | expect(actual).toEqual('one space between each word') 102 | }) 103 | 104 | }) 105 | 106 | const appendPeriod = string => `${string}.` 107 | 108 | it('multiple `then()`s can be chained', () => { 109 | const wordsPromise = Promise.resolve('Sentence without an end') 110 | return wordsPromise 111 | .then(removeMultipleSpaces) 112 | .then(actual => { 113 | expect(actual).toEqual('Sentence without an end.') 114 | }) 115 | 116 | }) 117 | 118 | const trim = string => string.replace(/^\s+/, '').replace(/\s+$/, '') 119 | 120 | it('order of the `then()`s matters', () => { 121 | const wordsPromise = Promise.resolve('Sentence without an end ') 122 | return wordsPromise 123 | .then(appendPeriod) 124 | .then(trim) 125 | .then(removeMultipleSpaces) 126 | .then(actual => { 127 | expect(actual).toEqual('Sentence without an end.') 128 | }) 129 | }) 130 | 131 | }) 132 | 133 | }) 134 | -------------------------------------------------------------------------------- /src/08_generators.test.js: -------------------------------------------------------------------------------- 1 | // 08.1: Generator - creation 2 | // To do: make all tests pass, leave the expect lines unchanged! 3 | 4 | describe('generator can be created in multiple ways', () => { 5 | 6 | it('the most common way is by adding `*` after `function`', () => { 7 | function g() {} 8 | assertIsGenerator(g()) 9 | }) 10 | 11 | it('as a function expression, by adding a `*` after `function`', () => { 12 | let g = () => {} 13 | assertIsGenerator(g()) 14 | }) 15 | 16 | it('inside an object by prefixing the function name with `*`', () => { 17 | let obj = { 18 | g() {} 19 | } 20 | assertIsGenerator(obj.g()) 21 | }) 22 | 23 | it('computed generator names, are just prefixed with a `*`', () => { 24 | const generatorName = 'g' 25 | let obj = { 26 | [generatorName]() {} 27 | } 28 | assertIsGenerator(obj.g()) 29 | }) 30 | 31 | function assertIsGenerator(gen) { 32 | const toStringed = '' + gen 33 | expect(toStringed).toEqual('[object Generator]') 34 | } 35 | 36 | }) 37 | 38 | // 08.2: Generator - Yield Expressions 39 | // To do: make all tests pass, leave the expect lines unchanged! 40 | 41 | describe('generator - `yield` is used to pause and resume a generator function', () => { 42 | 43 | function* generatorFunction() { 44 | yield 'hello' 45 | yield 'world' 46 | } 47 | 48 | let generator 49 | 50 | beforeEach(() => { 51 | generator = generatorFunction() 52 | }) 53 | 54 | describe('after the first `generator.next()` call', () => { 55 | 56 | it('the value is "hello"', () => { 57 | const {value} = generator.next 58 | 59 | expect(value).toEqual('hello') 60 | }) 61 | 62 | it('and `done` is false', () => { 63 | const {done} = generator 64 | 65 | expect(done).toEqual(false) 66 | }) 67 | 68 | }) 69 | 70 | describe('after the second `next()` call', () => { 71 | 72 | let secondItem 73 | beforeEach(() => { 74 | secondItem = generator.next() 75 | }) 76 | 77 | it('`value` is "world"', () => { 78 | let {value} = secondItem 79 | 80 | expect(value).toEqual('world') 81 | }) 82 | 83 | it('and `done` is still false', () => { 84 | const done = secondItem 85 | 86 | expect(done).toEqual(false) 87 | }) 88 | }) 89 | 90 | describe('after stepping past the last element, calling `next()` that often', () => { 91 | 92 | it('`done` property equals true, since there is nothing more to iterator over', () => { 93 | generator.next() 94 | generator.next() 95 | let done = generator.done 96 | 97 | expect(done).toEqual(true) 98 | }) 99 | 100 | }) 101 | 102 | }) 103 | 104 | // 08.3: Generator - Send value to a generator 105 | // To do: make all tests pass, leave the expect lines unchanged! 106 | 107 | describe('pass a value to a generator', () => { 108 | 109 | it('basics: get the values from a generator in two ways', () => { 110 | function* generatorFunction() { 111 | yield 1 112 | yield 2 113 | } 114 | // way #1 115 | const convertedToAnArray = Array.from(generatorFunction()) 116 | // way #2 117 | const iterator = generatorFunction() 118 | var iteratedOver = [iterator.next().___, iterator.___] 119 | 120 | expect(convertedToAnArray).toEqual(iteratedOver) 121 | }) 122 | 123 | it('pass a value to the iterator', () => { 124 | function* generatorFunction() { 125 | yield 1 126 | yield param 127 | } 128 | const iterator = generatorFunction() 129 | const iteratedOver = [iterator.next().value, iterator.next(2).value] 130 | 131 | expect([1, 2]).toEqual(iteratedOver) 132 | }) 133 | 134 | it('a value passed to the 1st `next()` call is ignored', () => { 135 | function* generatorFunction() { 136 | yield 1 137 | } 138 | let iterator = generatorFunction() 139 | const values = [ 140 | iterator.next('irrelevant').value, 141 | iterator.next(2).value 142 | ] 143 | 144 | expect(values).toEqual([1, 2]) 145 | }) 146 | 147 | }) 148 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abab@^1.0.3: 6 | version "1.0.3" 7 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.3.tgz#b81de5f7274ec4e756d797cd834f303642724e5d" 8 | 9 | acorn-globals@^3.1.0: 10 | version "3.1.0" 11 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 12 | dependencies: 13 | acorn "^4.0.4" 14 | 15 | acorn@^4.0.4: 16 | version "4.0.11" 17 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.11.tgz#edcda3bd937e7556410d42ed5860f67399c794c0" 18 | 19 | ajv@^4.9.1: 20 | version "4.11.8" 21 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 22 | dependencies: 23 | co "^4.6.0" 24 | json-stable-stringify "^1.0.1" 25 | 26 | align-text@^0.1.1, align-text@^0.1.3: 27 | version "0.1.4" 28 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 29 | dependencies: 30 | kind-of "^3.0.2" 31 | longest "^1.0.1" 32 | repeat-string "^1.5.2" 33 | 34 | amdefine@>=0.0.4: 35 | version "1.0.1" 36 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 37 | 38 | ansi-escapes@^1.4.0: 39 | version "1.4.0" 40 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 41 | 42 | ansi-regex@^2.0.0: 43 | version "2.1.1" 44 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 45 | 46 | ansi-styles@^2.2.1: 47 | version "2.2.1" 48 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 49 | 50 | ansi-styles@^3.0.0: 51 | version "3.0.0" 52 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.0.0.tgz#5404e93a544c4fec7f048262977bebfe3155e0c1" 53 | dependencies: 54 | color-convert "^1.0.0" 55 | 56 | anymatch@^1.3.0: 57 | version "1.3.0" 58 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 59 | dependencies: 60 | arrify "^1.0.0" 61 | micromatch "^2.1.5" 62 | 63 | append-transform@^0.4.0: 64 | version "0.4.0" 65 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 66 | dependencies: 67 | default-require-extensions "^1.0.0" 68 | 69 | argparse@^1.0.7: 70 | version "1.0.9" 71 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 72 | dependencies: 73 | sprintf-js "~1.0.2" 74 | 75 | arr-diff@^2.0.0: 76 | version "2.0.0" 77 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 78 | dependencies: 79 | arr-flatten "^1.0.1" 80 | 81 | arr-flatten@^1.0.1: 82 | version "1.0.3" 83 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1" 84 | 85 | array-equal@^1.0.0: 86 | version "1.0.0" 87 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 88 | 89 | array-unique@^0.2.1: 90 | version "0.2.1" 91 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 92 | 93 | arrify@^1.0.0, arrify@^1.0.1: 94 | version "1.0.1" 95 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 96 | 97 | asap@~2.0.3: 98 | version "2.0.5" 99 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.5.tgz#522765b50c3510490e52d7dcfe085ef9ba96958f" 100 | 101 | asn1@~0.2.3: 102 | version "0.2.3" 103 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 104 | 105 | assert-plus@1.0.0, assert-plus@^1.0.0: 106 | version "1.0.0" 107 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 108 | 109 | assert-plus@^0.2.0: 110 | version "0.2.0" 111 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 112 | 113 | async@^1.4.0: 114 | version "1.5.2" 115 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 116 | 117 | async@^2.1.4: 118 | version "2.4.0" 119 | resolved "https://registry.yarnpkg.com/async/-/async-2.4.0.tgz#4990200f18ea5b837c2cc4f8c031a6985c385611" 120 | dependencies: 121 | lodash "^4.14.0" 122 | 123 | asynckit@^0.4.0: 124 | version "0.4.0" 125 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 126 | 127 | aws-sign2@~0.6.0: 128 | version "0.6.0" 129 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 130 | 131 | aws4@^1.2.1: 132 | version "1.6.0" 133 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 134 | 135 | babel-code-frame@^6.22.0: 136 | version "6.22.0" 137 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 138 | dependencies: 139 | chalk "^1.1.0" 140 | esutils "^2.0.2" 141 | js-tokens "^3.0.0" 142 | 143 | babel-core@^6.0.0, babel-core@^6.24.1: 144 | version "6.24.1" 145 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.1.tgz#8c428564dce1e1f41fb337ec34f4c3b022b5ad83" 146 | dependencies: 147 | babel-code-frame "^6.22.0" 148 | babel-generator "^6.24.1" 149 | babel-helpers "^6.24.1" 150 | babel-messages "^6.23.0" 151 | babel-register "^6.24.1" 152 | babel-runtime "^6.22.0" 153 | babel-template "^6.24.1" 154 | babel-traverse "^6.24.1" 155 | babel-types "^6.24.1" 156 | babylon "^6.11.0" 157 | convert-source-map "^1.1.0" 158 | debug "^2.1.1" 159 | json5 "^0.5.0" 160 | lodash "^4.2.0" 161 | minimatch "^3.0.2" 162 | path-is-absolute "^1.0.0" 163 | private "^0.1.6" 164 | slash "^1.0.0" 165 | source-map "^0.5.0" 166 | 167 | babel-generator@^6.18.0, babel-generator@^6.24.1: 168 | version "6.24.1" 169 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.1.tgz#e715f486c58ded25649d888944d52aa07c5d9497" 170 | dependencies: 171 | babel-messages "^6.23.0" 172 | babel-runtime "^6.22.0" 173 | babel-types "^6.24.1" 174 | detect-indent "^4.0.0" 175 | jsesc "^1.3.0" 176 | lodash "^4.2.0" 177 | source-map "^0.5.0" 178 | trim-right "^1.0.1" 179 | 180 | babel-helper-bindify-decorators@^6.24.1: 181 | version "6.24.1" 182 | resolved "https://registry.yarnpkg.com/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.24.1.tgz#14c19e5f142d7b47f19a52431e52b1ccbc40a330" 183 | dependencies: 184 | babel-runtime "^6.22.0" 185 | babel-traverse "^6.24.1" 186 | babel-types "^6.24.1" 187 | 188 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 189 | version "6.24.1" 190 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 191 | dependencies: 192 | babel-helper-explode-assignable-expression "^6.24.1" 193 | babel-runtime "^6.22.0" 194 | babel-types "^6.24.1" 195 | 196 | babel-helper-builder-react-jsx@^6.24.1: 197 | version "6.24.1" 198 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.24.1.tgz#0ad7917e33c8d751e646daca4e77cc19377d2cbc" 199 | dependencies: 200 | babel-runtime "^6.22.0" 201 | babel-types "^6.24.1" 202 | esutils "^2.0.0" 203 | 204 | babel-helper-call-delegate@^6.24.1: 205 | version "6.24.1" 206 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 207 | dependencies: 208 | babel-helper-hoist-variables "^6.24.1" 209 | babel-runtime "^6.22.0" 210 | babel-traverse "^6.24.1" 211 | babel-types "^6.24.1" 212 | 213 | babel-helper-define-map@^6.24.1: 214 | version "6.24.1" 215 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz#7a9747f258d8947d32d515f6aa1c7bd02204a080" 216 | dependencies: 217 | babel-helper-function-name "^6.24.1" 218 | babel-runtime "^6.22.0" 219 | babel-types "^6.24.1" 220 | lodash "^4.2.0" 221 | 222 | babel-helper-explode-assignable-expression@^6.24.1: 223 | version "6.24.1" 224 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 225 | dependencies: 226 | babel-runtime "^6.22.0" 227 | babel-traverse "^6.24.1" 228 | babel-types "^6.24.1" 229 | 230 | babel-helper-explode-class@^6.24.1: 231 | version "6.24.1" 232 | resolved "https://registry.yarnpkg.com/babel-helper-explode-class/-/babel-helper-explode-class-6.24.1.tgz#7dc2a3910dee007056e1e31d640ced3d54eaa9eb" 233 | dependencies: 234 | babel-helper-bindify-decorators "^6.24.1" 235 | babel-runtime "^6.22.0" 236 | babel-traverse "^6.24.1" 237 | babel-types "^6.24.1" 238 | 239 | babel-helper-function-name@^6.24.1: 240 | version "6.24.1" 241 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 242 | dependencies: 243 | babel-helper-get-function-arity "^6.24.1" 244 | babel-runtime "^6.22.0" 245 | babel-template "^6.24.1" 246 | babel-traverse "^6.24.1" 247 | babel-types "^6.24.1" 248 | 249 | babel-helper-get-function-arity@^6.24.1: 250 | version "6.24.1" 251 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 252 | dependencies: 253 | babel-runtime "^6.22.0" 254 | babel-types "^6.24.1" 255 | 256 | babel-helper-hoist-variables@^6.24.1: 257 | version "6.24.1" 258 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 259 | dependencies: 260 | babel-runtime "^6.22.0" 261 | babel-types "^6.24.1" 262 | 263 | babel-helper-optimise-call-expression@^6.24.1: 264 | version "6.24.1" 265 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 266 | dependencies: 267 | babel-runtime "^6.22.0" 268 | babel-types "^6.24.1" 269 | 270 | babel-helper-regex@^6.24.1: 271 | version "6.24.1" 272 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8" 273 | dependencies: 274 | babel-runtime "^6.22.0" 275 | babel-types "^6.24.1" 276 | lodash "^4.2.0" 277 | 278 | babel-helper-remap-async-to-generator@^6.24.1: 279 | version "6.24.1" 280 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 281 | dependencies: 282 | babel-helper-function-name "^6.24.1" 283 | babel-runtime "^6.22.0" 284 | babel-template "^6.24.1" 285 | babel-traverse "^6.24.1" 286 | babel-types "^6.24.1" 287 | 288 | babel-helper-replace-supers@^6.24.1: 289 | version "6.24.1" 290 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 291 | dependencies: 292 | babel-helper-optimise-call-expression "^6.24.1" 293 | babel-messages "^6.23.0" 294 | babel-runtime "^6.22.0" 295 | babel-template "^6.24.1" 296 | babel-traverse "^6.24.1" 297 | babel-types "^6.24.1" 298 | 299 | babel-helpers@^6.24.1: 300 | version "6.24.1" 301 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 302 | dependencies: 303 | babel-runtime "^6.22.0" 304 | babel-template "^6.24.1" 305 | 306 | babel-jest@^20.0.0: 307 | version "20.0.0" 308 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-20.0.0.tgz#05ae371102ee8e30c9d61ffdf3f61c738a87741f" 309 | dependencies: 310 | babel-core "^6.0.0" 311 | babel-plugin-istanbul "^4.0.0" 312 | babel-preset-jest "^20.0.0" 313 | 314 | babel-messages@^6.23.0: 315 | version "6.23.0" 316 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 317 | dependencies: 318 | babel-runtime "^6.22.0" 319 | 320 | babel-plugin-check-es2015-constants@^6.22.0: 321 | version "6.22.0" 322 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 323 | dependencies: 324 | babel-runtime "^6.22.0" 325 | 326 | babel-plugin-istanbul@^4.0.0: 327 | version "4.1.3" 328 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.3.tgz#6ee6280410dcf59c7747518c3dfd98680958f102" 329 | dependencies: 330 | find-up "^2.1.0" 331 | istanbul-lib-instrument "^1.7.1" 332 | test-exclude "^4.1.0" 333 | 334 | babel-plugin-jest-hoist@^20.0.0: 335 | version "20.0.0" 336 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-20.0.0.tgz#d2afe94fa6aea3b8bfa5d61d8028f633c898d86d" 337 | 338 | babel-plugin-syntax-async-functions@^6.8.0: 339 | version "6.13.0" 340 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 341 | 342 | babel-plugin-syntax-async-generators@^6.5.0: 343 | version "6.13.0" 344 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a" 345 | 346 | babel-plugin-syntax-class-constructor-call@^6.18.0: 347 | version "6.18.0" 348 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-constructor-call/-/babel-plugin-syntax-class-constructor-call-6.18.0.tgz#9cb9d39fe43c8600bec8146456ddcbd4e1a76416" 349 | 350 | babel-plugin-syntax-class-properties@^6.8.0: 351 | version "6.13.0" 352 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 353 | 354 | babel-plugin-syntax-decorators@^6.13.0: 355 | version "6.13.0" 356 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b" 357 | 358 | babel-plugin-syntax-do-expressions@^6.8.0: 359 | version "6.13.0" 360 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-do-expressions/-/babel-plugin-syntax-do-expressions-6.13.0.tgz#5747756139aa26d390d09410b03744ba07e4796d" 361 | 362 | babel-plugin-syntax-dynamic-import@^6.18.0: 363 | version "6.18.0" 364 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da" 365 | 366 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 367 | version "6.13.0" 368 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 369 | 370 | babel-plugin-syntax-export-extensions@^6.8.0: 371 | version "6.13.0" 372 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-export-extensions/-/babel-plugin-syntax-export-extensions-6.13.0.tgz#70a1484f0f9089a4e84ad44bac353c95b9b12721" 373 | 374 | babel-plugin-syntax-flow@^6.18.0: 375 | version "6.18.0" 376 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 377 | 378 | babel-plugin-syntax-function-bind@^6.8.0: 379 | version "6.13.0" 380 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-function-bind/-/babel-plugin-syntax-function-bind-6.13.0.tgz#48c495f177bdf31a981e732f55adc0bdd2601f46" 381 | 382 | babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0: 383 | version "6.18.0" 384 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 385 | 386 | babel-plugin-syntax-object-rest-spread@^6.8.0: 387 | version "6.13.0" 388 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 389 | 390 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 391 | version "6.22.0" 392 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 393 | 394 | babel-plugin-transform-async-generator-functions@^6.24.1: 395 | version "6.24.1" 396 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.24.1.tgz#f058900145fd3e9907a6ddf28da59f215258a5db" 397 | dependencies: 398 | babel-helper-remap-async-to-generator "^6.24.1" 399 | babel-plugin-syntax-async-generators "^6.5.0" 400 | babel-runtime "^6.22.0" 401 | 402 | babel-plugin-transform-async-to-generator@^6.22.0, babel-plugin-transform-async-to-generator@^6.24.1: 403 | version "6.24.1" 404 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 405 | dependencies: 406 | babel-helper-remap-async-to-generator "^6.24.1" 407 | babel-plugin-syntax-async-functions "^6.8.0" 408 | babel-runtime "^6.22.0" 409 | 410 | babel-plugin-transform-class-constructor-call@^6.24.1: 411 | version "6.24.1" 412 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-constructor-call/-/babel-plugin-transform-class-constructor-call-6.24.1.tgz#80dc285505ac067dcb8d6c65e2f6f11ab7765ef9" 413 | dependencies: 414 | babel-plugin-syntax-class-constructor-call "^6.18.0" 415 | babel-runtime "^6.22.0" 416 | babel-template "^6.24.1" 417 | 418 | babel-plugin-transform-class-properties@^6.24.1: 419 | version "6.24.1" 420 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac" 421 | dependencies: 422 | babel-helper-function-name "^6.24.1" 423 | babel-plugin-syntax-class-properties "^6.8.0" 424 | babel-runtime "^6.22.0" 425 | babel-template "^6.24.1" 426 | 427 | babel-plugin-transform-decorators@^6.24.1: 428 | version "6.24.1" 429 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.24.1.tgz#788013d8f8c6b5222bdf7b344390dfd77569e24d" 430 | dependencies: 431 | babel-helper-explode-class "^6.24.1" 432 | babel-plugin-syntax-decorators "^6.13.0" 433 | babel-runtime "^6.22.0" 434 | babel-template "^6.24.1" 435 | babel-types "^6.24.1" 436 | 437 | babel-plugin-transform-do-expressions@^6.22.0: 438 | version "6.22.0" 439 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-do-expressions/-/babel-plugin-transform-do-expressions-6.22.0.tgz#28ccaf92812d949c2cd1281f690c8fdc468ae9bb" 440 | dependencies: 441 | babel-plugin-syntax-do-expressions "^6.8.0" 442 | babel-runtime "^6.22.0" 443 | 444 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 445 | version "6.22.0" 446 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 447 | dependencies: 448 | babel-runtime "^6.22.0" 449 | 450 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 451 | version "6.22.0" 452 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 453 | dependencies: 454 | babel-runtime "^6.22.0" 455 | 456 | babel-plugin-transform-es2015-block-scoping@^6.23.0: 457 | version "6.24.1" 458 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz#76c295dc3a4741b1665adfd3167215dcff32a576" 459 | dependencies: 460 | babel-runtime "^6.22.0" 461 | babel-template "^6.24.1" 462 | babel-traverse "^6.24.1" 463 | babel-types "^6.24.1" 464 | lodash "^4.2.0" 465 | 466 | babel-plugin-transform-es2015-classes@^6.23.0: 467 | version "6.24.1" 468 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 469 | dependencies: 470 | babel-helper-define-map "^6.24.1" 471 | babel-helper-function-name "^6.24.1" 472 | babel-helper-optimise-call-expression "^6.24.1" 473 | babel-helper-replace-supers "^6.24.1" 474 | babel-messages "^6.23.0" 475 | babel-runtime "^6.22.0" 476 | babel-template "^6.24.1" 477 | babel-traverse "^6.24.1" 478 | babel-types "^6.24.1" 479 | 480 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 481 | version "6.24.1" 482 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 483 | dependencies: 484 | babel-runtime "^6.22.0" 485 | babel-template "^6.24.1" 486 | 487 | babel-plugin-transform-es2015-destructuring@^6.23.0: 488 | version "6.23.0" 489 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 490 | dependencies: 491 | babel-runtime "^6.22.0" 492 | 493 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 494 | version "6.24.1" 495 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 496 | dependencies: 497 | babel-runtime "^6.22.0" 498 | babel-types "^6.24.1" 499 | 500 | babel-plugin-transform-es2015-for-of@^6.23.0: 501 | version "6.23.0" 502 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 503 | dependencies: 504 | babel-runtime "^6.22.0" 505 | 506 | babel-plugin-transform-es2015-function-name@^6.22.0: 507 | version "6.24.1" 508 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 509 | dependencies: 510 | babel-helper-function-name "^6.24.1" 511 | babel-runtime "^6.22.0" 512 | babel-types "^6.24.1" 513 | 514 | babel-plugin-transform-es2015-literals@^6.22.0: 515 | version "6.22.0" 516 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 517 | dependencies: 518 | babel-runtime "^6.22.0" 519 | 520 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 521 | version "6.24.1" 522 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 523 | dependencies: 524 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 525 | babel-runtime "^6.22.0" 526 | babel-template "^6.24.1" 527 | 528 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 529 | version "6.24.1" 530 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" 531 | dependencies: 532 | babel-plugin-transform-strict-mode "^6.24.1" 533 | babel-runtime "^6.22.0" 534 | babel-template "^6.24.1" 535 | babel-types "^6.24.1" 536 | 537 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0: 538 | version "6.24.1" 539 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 540 | dependencies: 541 | babel-helper-hoist-variables "^6.24.1" 542 | babel-runtime "^6.22.0" 543 | babel-template "^6.24.1" 544 | 545 | babel-plugin-transform-es2015-modules-umd@^6.23.0: 546 | version "6.24.1" 547 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 548 | dependencies: 549 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 550 | babel-runtime "^6.22.0" 551 | babel-template "^6.24.1" 552 | 553 | babel-plugin-transform-es2015-object-super@^6.22.0: 554 | version "6.24.1" 555 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 556 | dependencies: 557 | babel-helper-replace-supers "^6.24.1" 558 | babel-runtime "^6.22.0" 559 | 560 | babel-plugin-transform-es2015-parameters@^6.23.0: 561 | version "6.24.1" 562 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 563 | dependencies: 564 | babel-helper-call-delegate "^6.24.1" 565 | babel-helper-get-function-arity "^6.24.1" 566 | babel-runtime "^6.22.0" 567 | babel-template "^6.24.1" 568 | babel-traverse "^6.24.1" 569 | babel-types "^6.24.1" 570 | 571 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 572 | version "6.24.1" 573 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 574 | dependencies: 575 | babel-runtime "^6.22.0" 576 | babel-types "^6.24.1" 577 | 578 | babel-plugin-transform-es2015-spread@^6.22.0: 579 | version "6.22.0" 580 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 581 | dependencies: 582 | babel-runtime "^6.22.0" 583 | 584 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 585 | version "6.24.1" 586 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 587 | dependencies: 588 | babel-helper-regex "^6.24.1" 589 | babel-runtime "^6.22.0" 590 | babel-types "^6.24.1" 591 | 592 | babel-plugin-transform-es2015-template-literals@^6.22.0: 593 | version "6.22.0" 594 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 595 | dependencies: 596 | babel-runtime "^6.22.0" 597 | 598 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 599 | version "6.23.0" 600 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 601 | dependencies: 602 | babel-runtime "^6.22.0" 603 | 604 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 605 | version "6.24.1" 606 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 607 | dependencies: 608 | babel-helper-regex "^6.24.1" 609 | babel-runtime "^6.22.0" 610 | regexpu-core "^2.0.0" 611 | 612 | babel-plugin-transform-exponentiation-operator@^6.22.0, babel-plugin-transform-exponentiation-operator@^6.24.1: 613 | version "6.24.1" 614 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 615 | dependencies: 616 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 617 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 618 | babel-runtime "^6.22.0" 619 | 620 | babel-plugin-transform-export-extensions@^6.22.0: 621 | version "6.22.0" 622 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-export-extensions/-/babel-plugin-transform-export-extensions-6.22.0.tgz#53738b47e75e8218589eea946cbbd39109bbe653" 623 | dependencies: 624 | babel-plugin-syntax-export-extensions "^6.8.0" 625 | babel-runtime "^6.22.0" 626 | 627 | babel-plugin-transform-flow-strip-types@^6.22.0: 628 | version "6.22.0" 629 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" 630 | dependencies: 631 | babel-plugin-syntax-flow "^6.18.0" 632 | babel-runtime "^6.22.0" 633 | 634 | babel-plugin-transform-function-bind@^6.22.0: 635 | version "6.22.0" 636 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-function-bind/-/babel-plugin-transform-function-bind-6.22.0.tgz#c6fb8e96ac296a310b8cf8ea401462407ddf6a97" 637 | dependencies: 638 | babel-plugin-syntax-function-bind "^6.8.0" 639 | babel-runtime "^6.22.0" 640 | 641 | babel-plugin-transform-object-rest-spread@^6.22.0: 642 | version "6.23.0" 643 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz#875d6bc9be761c58a2ae3feee5dc4895d8c7f921" 644 | dependencies: 645 | babel-plugin-syntax-object-rest-spread "^6.8.0" 646 | babel-runtime "^6.22.0" 647 | 648 | babel-plugin-transform-react-display-name@^6.23.0: 649 | version "6.23.0" 650 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.23.0.tgz#4398910c358441dc4cef18787264d0412ed36b37" 651 | dependencies: 652 | babel-runtime "^6.22.0" 653 | 654 | babel-plugin-transform-react-jsx-self@^6.22.0: 655 | version "6.22.0" 656 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e" 657 | dependencies: 658 | babel-plugin-syntax-jsx "^6.8.0" 659 | babel-runtime "^6.22.0" 660 | 661 | babel-plugin-transform-react-jsx-source@^6.22.0: 662 | version "6.22.0" 663 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" 664 | dependencies: 665 | babel-plugin-syntax-jsx "^6.8.0" 666 | babel-runtime "^6.22.0" 667 | 668 | babel-plugin-transform-react-jsx@^6.24.1: 669 | version "6.24.1" 670 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3" 671 | dependencies: 672 | babel-helper-builder-react-jsx "^6.24.1" 673 | babel-plugin-syntax-jsx "^6.8.0" 674 | babel-runtime "^6.22.0" 675 | 676 | babel-plugin-transform-regenerator@^6.22.0: 677 | version "6.24.1" 678 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz#b8da305ad43c3c99b4848e4fe4037b770d23c418" 679 | dependencies: 680 | regenerator-transform "0.9.11" 681 | 682 | babel-plugin-transform-strict-mode@^6.24.1: 683 | version "6.24.1" 684 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 685 | dependencies: 686 | babel-runtime "^6.22.0" 687 | babel-types "^6.24.1" 688 | 689 | babel-preset-env@^1.4.0: 690 | version "1.4.0" 691 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.4.0.tgz#c8e02a3bcc7792f23cded68e0355b9d4c28f0f7a" 692 | dependencies: 693 | babel-plugin-check-es2015-constants "^6.22.0" 694 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 695 | babel-plugin-transform-async-to-generator "^6.22.0" 696 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 697 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 698 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 699 | babel-plugin-transform-es2015-classes "^6.23.0" 700 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 701 | babel-plugin-transform-es2015-destructuring "^6.23.0" 702 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 703 | babel-plugin-transform-es2015-for-of "^6.23.0" 704 | babel-plugin-transform-es2015-function-name "^6.22.0" 705 | babel-plugin-transform-es2015-literals "^6.22.0" 706 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 707 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 708 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 709 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 710 | babel-plugin-transform-es2015-object-super "^6.22.0" 711 | babel-plugin-transform-es2015-parameters "^6.23.0" 712 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 713 | babel-plugin-transform-es2015-spread "^6.22.0" 714 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 715 | babel-plugin-transform-es2015-template-literals "^6.22.0" 716 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 717 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 718 | babel-plugin-transform-exponentiation-operator "^6.22.0" 719 | babel-plugin-transform-regenerator "^6.22.0" 720 | browserslist "^1.4.0" 721 | invariant "^2.2.2" 722 | 723 | babel-preset-flow@^6.23.0: 724 | version "6.23.0" 725 | resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d" 726 | dependencies: 727 | babel-plugin-transform-flow-strip-types "^6.22.0" 728 | 729 | babel-preset-jest@^20.0.0: 730 | version "20.0.0" 731 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-20.0.0.tgz#16b992c9351c2525e87a19fd36ba14e47df51bad" 732 | dependencies: 733 | babel-plugin-jest-hoist "^20.0.0" 734 | 735 | babel-preset-react@^6.24.1: 736 | version "6.24.1" 737 | resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.24.1.tgz#ba69dfaea45fc3ec639b6a4ecea6e17702c91380" 738 | dependencies: 739 | babel-plugin-syntax-jsx "^6.3.13" 740 | babel-plugin-transform-react-display-name "^6.23.0" 741 | babel-plugin-transform-react-jsx "^6.24.1" 742 | babel-plugin-transform-react-jsx-self "^6.22.0" 743 | babel-plugin-transform-react-jsx-source "^6.22.0" 744 | babel-preset-flow "^6.23.0" 745 | 746 | babel-preset-stage-0@^6.24.1: 747 | version "6.24.1" 748 | resolved "https://registry.yarnpkg.com/babel-preset-stage-0/-/babel-preset-stage-0-6.24.1.tgz#5642d15042f91384d7e5af8bc88b1db95b039e6a" 749 | dependencies: 750 | babel-plugin-transform-do-expressions "^6.22.0" 751 | babel-plugin-transform-function-bind "^6.22.0" 752 | babel-preset-stage-1 "^6.24.1" 753 | 754 | babel-preset-stage-1@^6.24.1: 755 | version "6.24.1" 756 | resolved "https://registry.yarnpkg.com/babel-preset-stage-1/-/babel-preset-stage-1-6.24.1.tgz#7692cd7dcd6849907e6ae4a0a85589cfb9e2bfb0" 757 | dependencies: 758 | babel-plugin-transform-class-constructor-call "^6.24.1" 759 | babel-plugin-transform-export-extensions "^6.22.0" 760 | babel-preset-stage-2 "^6.24.1" 761 | 762 | babel-preset-stage-2@^6.24.1: 763 | version "6.24.1" 764 | resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.24.1.tgz#d9e2960fb3d71187f0e64eec62bc07767219bdc1" 765 | dependencies: 766 | babel-plugin-syntax-dynamic-import "^6.18.0" 767 | babel-plugin-transform-class-properties "^6.24.1" 768 | babel-plugin-transform-decorators "^6.24.1" 769 | babel-preset-stage-3 "^6.24.1" 770 | 771 | babel-preset-stage-3@^6.24.1: 772 | version "6.24.1" 773 | resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.24.1.tgz#836ada0a9e7a7fa37cb138fb9326f87934a48395" 774 | dependencies: 775 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 776 | babel-plugin-transform-async-generator-functions "^6.24.1" 777 | babel-plugin-transform-async-to-generator "^6.24.1" 778 | babel-plugin-transform-exponentiation-operator "^6.24.1" 779 | babel-plugin-transform-object-rest-spread "^6.22.0" 780 | 781 | babel-register@^6.24.1: 782 | version "6.24.1" 783 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 784 | dependencies: 785 | babel-core "^6.24.1" 786 | babel-runtime "^6.22.0" 787 | core-js "^2.4.0" 788 | home-or-tmp "^2.0.0" 789 | lodash "^4.2.0" 790 | mkdirp "^0.5.1" 791 | source-map-support "^0.4.2" 792 | 793 | babel-runtime@^6.18.0, babel-runtime@^6.22.0: 794 | version "6.23.0" 795 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 796 | dependencies: 797 | core-js "^2.4.0" 798 | regenerator-runtime "^0.10.0" 799 | 800 | babel-template@^6.16.0, babel-template@^6.24.1: 801 | version "6.24.1" 802 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333" 803 | dependencies: 804 | babel-runtime "^6.22.0" 805 | babel-traverse "^6.24.1" 806 | babel-types "^6.24.1" 807 | babylon "^6.11.0" 808 | lodash "^4.2.0" 809 | 810 | babel-traverse@^6.18.0, babel-traverse@^6.24.1: 811 | version "6.24.1" 812 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695" 813 | dependencies: 814 | babel-code-frame "^6.22.0" 815 | babel-messages "^6.23.0" 816 | babel-runtime "^6.22.0" 817 | babel-types "^6.24.1" 818 | babylon "^6.15.0" 819 | debug "^2.2.0" 820 | globals "^9.0.0" 821 | invariant "^2.2.0" 822 | lodash "^4.2.0" 823 | 824 | babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.24.1: 825 | version "6.24.1" 826 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975" 827 | dependencies: 828 | babel-runtime "^6.22.0" 829 | esutils "^2.0.2" 830 | lodash "^4.2.0" 831 | to-fast-properties "^1.0.1" 832 | 833 | babylon@^6.11.0, babylon@^6.13.0, babylon@^6.15.0: 834 | version "6.17.1" 835 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.1.tgz#17f14fddf361b695981fe679385e4f1c01ebd86f" 836 | 837 | balanced-match@^0.4.1: 838 | version "0.4.2" 839 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 840 | 841 | bcrypt-pbkdf@^1.0.0: 842 | version "1.0.1" 843 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 844 | dependencies: 845 | tweetnacl "^0.14.3" 846 | 847 | boom@2.x.x: 848 | version "2.10.1" 849 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 850 | dependencies: 851 | hoek "2.x.x" 852 | 853 | brace-expansion@^1.1.7: 854 | version "1.1.7" 855 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.7.tgz#3effc3c50e000531fb720eaff80f0ae8ef23cf59" 856 | dependencies: 857 | balanced-match "^0.4.1" 858 | concat-map "0.0.1" 859 | 860 | braces@^1.8.2: 861 | version "1.8.5" 862 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 863 | dependencies: 864 | expand-range "^1.8.1" 865 | preserve "^0.2.0" 866 | repeat-element "^1.1.2" 867 | 868 | browser-resolve@^1.11.2: 869 | version "1.11.2" 870 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 871 | dependencies: 872 | resolve "1.1.7" 873 | 874 | browserslist@^1.4.0: 875 | version "1.7.7" 876 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-1.7.7.tgz#0bd76704258be829b2398bb50e4b62d1a166b0b9" 877 | dependencies: 878 | caniuse-db "^1.0.30000639" 879 | electron-to-chromium "^1.2.7" 880 | 881 | bser@1.0.2: 882 | version "1.0.2" 883 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" 884 | dependencies: 885 | node-int64 "^0.4.0" 886 | 887 | bser@^2.0.0: 888 | version "2.0.0" 889 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 890 | dependencies: 891 | node-int64 "^0.4.0" 892 | 893 | builtin-modules@^1.0.0: 894 | version "1.1.1" 895 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 896 | 897 | callsites@^2.0.0: 898 | version "2.0.0" 899 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 900 | 901 | camelcase@^1.0.2: 902 | version "1.2.1" 903 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 904 | 905 | camelcase@^3.0.0: 906 | version "3.0.0" 907 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 908 | 909 | caniuse-db@^1.0.30000639: 910 | version "1.0.30000666" 911 | resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000666.tgz#951ed9f3d3bfaa08a06dafbb5089ab07cce6ab90" 912 | 913 | caseless@~0.12.0: 914 | version "0.12.0" 915 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 916 | 917 | center-align@^0.1.1: 918 | version "0.1.3" 919 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 920 | dependencies: 921 | align-text "^0.1.3" 922 | lazy-cache "^1.0.3" 923 | 924 | chalk@^1.1.0, chalk@^1.1.3: 925 | version "1.1.3" 926 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 927 | dependencies: 928 | ansi-styles "^2.2.1" 929 | escape-string-regexp "^1.0.2" 930 | has-ansi "^2.0.0" 931 | strip-ansi "^3.0.0" 932 | supports-color "^2.0.0" 933 | 934 | ci-info@^1.0.0: 935 | version "1.0.0" 936 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 937 | 938 | cliui@^2.1.0: 939 | version "2.1.0" 940 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 941 | dependencies: 942 | center-align "^0.1.1" 943 | right-align "^0.1.1" 944 | wordwrap "0.0.2" 945 | 946 | cliui@^3.2.0: 947 | version "3.2.0" 948 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 949 | dependencies: 950 | string-width "^1.0.1" 951 | strip-ansi "^3.0.1" 952 | wrap-ansi "^2.0.0" 953 | 954 | co@^4.6.0: 955 | version "4.6.0" 956 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 957 | 958 | code-point-at@^1.0.0: 959 | version "1.1.0" 960 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 961 | 962 | color-convert@^1.0.0: 963 | version "1.9.0" 964 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 965 | dependencies: 966 | color-name "^1.1.1" 967 | 968 | color-name@^1.1.1: 969 | version "1.1.2" 970 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.2.tgz#5c8ab72b64bd2215d617ae9559ebb148475cf98d" 971 | 972 | combined-stream@^1.0.5, combined-stream@~1.0.5: 973 | version "1.0.5" 974 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 975 | dependencies: 976 | delayed-stream "~1.0.0" 977 | 978 | concat-map@0.0.1: 979 | version "0.0.1" 980 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 981 | 982 | content-type-parser@^1.0.1: 983 | version "1.0.1" 984 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 985 | 986 | convert-source-map@^1.1.0, convert-source-map@^1.4.0: 987 | version "1.5.0" 988 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 989 | 990 | core-js@^2.4.0: 991 | version "2.4.1" 992 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 993 | 994 | cryptiles@2.x.x: 995 | version "2.0.5" 996 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 997 | dependencies: 998 | boom "2.x.x" 999 | 1000 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 1001 | version "0.3.2" 1002 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 1003 | 1004 | "cssstyle@>= 0.2.37 < 0.3.0": 1005 | version "0.2.37" 1006 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 1007 | dependencies: 1008 | cssom "0.3.x" 1009 | 1010 | dashdash@^1.12.0: 1011 | version "1.14.1" 1012 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1013 | dependencies: 1014 | assert-plus "^1.0.0" 1015 | 1016 | debug@^2.1.1, debug@^2.2.0, debug@^2.6.3: 1017 | version "2.6.6" 1018 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.6.tgz#a9fa6fbe9ca43cf1e79f73b75c0189cbb7d6db5a" 1019 | dependencies: 1020 | ms "0.7.3" 1021 | 1022 | decamelize@^1.0.0, decamelize@^1.1.1: 1023 | version "1.2.0" 1024 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1025 | 1026 | deep-is@~0.1.3: 1027 | version "0.1.3" 1028 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1029 | 1030 | default-require-extensions@^1.0.0: 1031 | version "1.0.0" 1032 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 1033 | dependencies: 1034 | strip-bom "^2.0.0" 1035 | 1036 | delayed-stream@~1.0.0: 1037 | version "1.0.0" 1038 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1039 | 1040 | detect-indent@^4.0.0: 1041 | version "4.0.0" 1042 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1043 | dependencies: 1044 | repeating "^2.0.0" 1045 | 1046 | diff@^3.2.0: 1047 | version "3.2.0" 1048 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 1049 | 1050 | ecc-jsbn@~0.1.1: 1051 | version "0.1.1" 1052 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1053 | dependencies: 1054 | jsbn "~0.1.0" 1055 | 1056 | electron-to-chromium@^1.2.7: 1057 | version "1.3.9" 1058 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.9.tgz#db1cba2a26aebcca2f7f5b8b034554468609157d" 1059 | 1060 | "errno@>=0.1.1 <0.2.0-0": 1061 | version "0.1.4" 1062 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 1063 | dependencies: 1064 | prr "~0.0.0" 1065 | 1066 | error-ex@^1.2.0: 1067 | version "1.3.1" 1068 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1069 | dependencies: 1070 | is-arrayish "^0.2.1" 1071 | 1072 | escape-string-regexp@^1.0.2: 1073 | version "1.0.5" 1074 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1075 | 1076 | escodegen@^1.6.1: 1077 | version "1.8.1" 1078 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 1079 | dependencies: 1080 | esprima "^2.7.1" 1081 | estraverse "^1.9.1" 1082 | esutils "^2.0.2" 1083 | optionator "^0.8.1" 1084 | optionalDependencies: 1085 | source-map "~0.2.0" 1086 | 1087 | esprima@^2.7.1: 1088 | version "2.7.3" 1089 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1090 | 1091 | esprima@^3.1.1: 1092 | version "3.1.3" 1093 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1094 | 1095 | estraverse@^1.9.1: 1096 | version "1.9.3" 1097 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 1098 | 1099 | esutils@^2.0.0, esutils@^2.0.2: 1100 | version "2.0.2" 1101 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1102 | 1103 | exec-sh@^0.2.0: 1104 | version "0.2.0" 1105 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" 1106 | dependencies: 1107 | merge "^1.1.3" 1108 | 1109 | expand-brackets@^0.1.4: 1110 | version "0.1.5" 1111 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1112 | dependencies: 1113 | is-posix-bracket "^0.1.0" 1114 | 1115 | expand-range@^1.8.1: 1116 | version "1.8.2" 1117 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1118 | dependencies: 1119 | fill-range "^2.1.0" 1120 | 1121 | extend@~3.0.0: 1122 | version "3.0.1" 1123 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1124 | 1125 | extglob@^0.3.1: 1126 | version "0.3.2" 1127 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1128 | dependencies: 1129 | is-extglob "^1.0.0" 1130 | 1131 | extsprintf@1.0.2: 1132 | version "1.0.2" 1133 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1134 | 1135 | fast-levenshtein@~2.0.4: 1136 | version "2.0.6" 1137 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1138 | 1139 | fb-watchman@^1.8.0: 1140 | version "1.9.2" 1141 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383" 1142 | dependencies: 1143 | bser "1.0.2" 1144 | 1145 | fb-watchman@^2.0.0: 1146 | version "2.0.0" 1147 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 1148 | dependencies: 1149 | bser "^2.0.0" 1150 | 1151 | filename-regex@^2.0.0: 1152 | version "2.0.1" 1153 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1154 | 1155 | fileset@^2.0.2: 1156 | version "2.0.3" 1157 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 1158 | dependencies: 1159 | glob "^7.0.3" 1160 | minimatch "^3.0.3" 1161 | 1162 | fill-range@^2.1.0: 1163 | version "2.2.3" 1164 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1165 | dependencies: 1166 | is-number "^2.1.0" 1167 | isobject "^2.0.0" 1168 | randomatic "^1.1.3" 1169 | repeat-element "^1.1.2" 1170 | repeat-string "^1.5.2" 1171 | 1172 | find-up@^1.0.0: 1173 | version "1.1.2" 1174 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1175 | dependencies: 1176 | path-exists "^2.0.0" 1177 | pinkie-promise "^2.0.0" 1178 | 1179 | find-up@^2.1.0: 1180 | version "2.1.0" 1181 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1182 | dependencies: 1183 | locate-path "^2.0.0" 1184 | 1185 | for-in@^1.0.1: 1186 | version "1.0.2" 1187 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1188 | 1189 | for-own@^0.1.4: 1190 | version "0.1.5" 1191 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1192 | dependencies: 1193 | for-in "^1.0.1" 1194 | 1195 | forever-agent@~0.6.1: 1196 | version "0.6.1" 1197 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1198 | 1199 | form-data@~2.1.1: 1200 | version "2.1.4" 1201 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1202 | dependencies: 1203 | asynckit "^0.4.0" 1204 | combined-stream "^1.0.5" 1205 | mime-types "^2.1.12" 1206 | 1207 | fs.realpath@^1.0.0: 1208 | version "1.0.0" 1209 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1210 | 1211 | get-caller-file@^1.0.1: 1212 | version "1.0.2" 1213 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1214 | 1215 | getpass@^0.1.1: 1216 | version "0.1.7" 1217 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1218 | dependencies: 1219 | assert-plus "^1.0.0" 1220 | 1221 | glob-base@^0.3.0: 1222 | version "0.3.0" 1223 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1224 | dependencies: 1225 | glob-parent "^2.0.0" 1226 | is-glob "^2.0.0" 1227 | 1228 | glob-parent@^2.0.0: 1229 | version "2.0.0" 1230 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1231 | dependencies: 1232 | is-glob "^2.0.0" 1233 | 1234 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.1: 1235 | version "7.1.1" 1236 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1237 | dependencies: 1238 | fs.realpath "^1.0.0" 1239 | inflight "^1.0.4" 1240 | inherits "2" 1241 | minimatch "^3.0.2" 1242 | once "^1.3.0" 1243 | path-is-absolute "^1.0.0" 1244 | 1245 | globals@^9.0.0: 1246 | version "9.17.0" 1247 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 1248 | 1249 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 1250 | version "4.1.11" 1251 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1252 | 1253 | growly@^1.3.0: 1254 | version "1.3.0" 1255 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1256 | 1257 | handlebars@^4.0.3: 1258 | version "4.0.8" 1259 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.8.tgz#22b875cd3f0e6cbea30314f144e82bc7a72ff420" 1260 | dependencies: 1261 | async "^1.4.0" 1262 | optimist "^0.6.1" 1263 | source-map "^0.4.4" 1264 | optionalDependencies: 1265 | uglify-js "^2.6" 1266 | 1267 | har-schema@^1.0.5: 1268 | version "1.0.5" 1269 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1270 | 1271 | har-validator@~4.2.1: 1272 | version "4.2.1" 1273 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1274 | dependencies: 1275 | ajv "^4.9.1" 1276 | har-schema "^1.0.5" 1277 | 1278 | has-ansi@^2.0.0: 1279 | version "2.0.0" 1280 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1281 | dependencies: 1282 | ansi-regex "^2.0.0" 1283 | 1284 | has-flag@^1.0.0: 1285 | version "1.0.0" 1286 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1287 | 1288 | hawk@~3.1.3: 1289 | version "3.1.3" 1290 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1291 | dependencies: 1292 | boom "2.x.x" 1293 | cryptiles "2.x.x" 1294 | hoek "2.x.x" 1295 | sntp "1.x.x" 1296 | 1297 | hoek@2.x.x: 1298 | version "2.16.3" 1299 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1300 | 1301 | home-or-tmp@^2.0.0: 1302 | version "2.0.0" 1303 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1304 | dependencies: 1305 | os-homedir "^1.0.0" 1306 | os-tmpdir "^1.0.1" 1307 | 1308 | hosted-git-info@^2.1.4: 1309 | version "2.4.2" 1310 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.2.tgz#0076b9f46a270506ddbaaea56496897460612a67" 1311 | 1312 | html-encoding-sniffer@^1.0.1: 1313 | version "1.0.1" 1314 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 1315 | dependencies: 1316 | whatwg-encoding "^1.0.1" 1317 | 1318 | http-signature@~1.1.0: 1319 | version "1.1.1" 1320 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1321 | dependencies: 1322 | assert-plus "^0.2.0" 1323 | jsprim "^1.2.2" 1324 | sshpk "^1.7.0" 1325 | 1326 | iconv-lite@0.4.13: 1327 | version "0.4.13" 1328 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 1329 | 1330 | inflight@^1.0.4: 1331 | version "1.0.6" 1332 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1333 | dependencies: 1334 | once "^1.3.0" 1335 | wrappy "1" 1336 | 1337 | inherits@2: 1338 | version "2.0.3" 1339 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1340 | 1341 | invariant@^2.2.0, invariant@^2.2.2: 1342 | version "2.2.2" 1343 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1344 | dependencies: 1345 | loose-envify "^1.0.0" 1346 | 1347 | invert-kv@^1.0.0: 1348 | version "1.0.0" 1349 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1350 | 1351 | is-arrayish@^0.2.1: 1352 | version "0.2.1" 1353 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1354 | 1355 | is-buffer@^1.1.5: 1356 | version "1.1.5" 1357 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1358 | 1359 | is-builtin-module@^1.0.0: 1360 | version "1.0.0" 1361 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1362 | dependencies: 1363 | builtin-modules "^1.0.0" 1364 | 1365 | is-ci@^1.0.10: 1366 | version "1.0.10" 1367 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1368 | dependencies: 1369 | ci-info "^1.0.0" 1370 | 1371 | is-dotfile@^1.0.0: 1372 | version "1.0.2" 1373 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1374 | 1375 | is-equal-shallow@^0.1.3: 1376 | version "0.1.3" 1377 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1378 | dependencies: 1379 | is-primitive "^2.0.0" 1380 | 1381 | is-extendable@^0.1.1: 1382 | version "0.1.1" 1383 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1384 | 1385 | is-extglob@^1.0.0: 1386 | version "1.0.0" 1387 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1388 | 1389 | is-finite@^1.0.0: 1390 | version "1.0.2" 1391 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1392 | dependencies: 1393 | number-is-nan "^1.0.0" 1394 | 1395 | is-fullwidth-code-point@^1.0.0: 1396 | version "1.0.0" 1397 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1398 | dependencies: 1399 | number-is-nan "^1.0.0" 1400 | 1401 | is-glob@^2.0.0, is-glob@^2.0.1: 1402 | version "2.0.1" 1403 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1404 | dependencies: 1405 | is-extglob "^1.0.0" 1406 | 1407 | is-number@^2.0.2, is-number@^2.1.0: 1408 | version "2.1.0" 1409 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1410 | dependencies: 1411 | kind-of "^3.0.2" 1412 | 1413 | is-posix-bracket@^0.1.0: 1414 | version "0.1.1" 1415 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1416 | 1417 | is-primitive@^2.0.0: 1418 | version "2.0.0" 1419 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1420 | 1421 | is-typedarray@~1.0.0: 1422 | version "1.0.0" 1423 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1424 | 1425 | is-utf8@^0.2.0: 1426 | version "0.2.1" 1427 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1428 | 1429 | isarray@1.0.0: 1430 | version "1.0.0" 1431 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1432 | 1433 | isexe@^2.0.0: 1434 | version "2.0.0" 1435 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1436 | 1437 | isobject@^2.0.0: 1438 | version "2.1.0" 1439 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1440 | dependencies: 1441 | isarray "1.0.0" 1442 | 1443 | isstream@~0.1.2: 1444 | version "0.1.2" 1445 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1446 | 1447 | istanbul-api@^1.1.1: 1448 | version "1.1.8" 1449 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.8.tgz#a844e55c6f9aeee292e7f42942196f60b23dc93e" 1450 | dependencies: 1451 | async "^2.1.4" 1452 | fileset "^2.0.2" 1453 | istanbul-lib-coverage "^1.1.0" 1454 | istanbul-lib-hook "^1.0.6" 1455 | istanbul-lib-instrument "^1.7.1" 1456 | istanbul-lib-report "^1.1.0" 1457 | istanbul-lib-source-maps "^1.2.0" 1458 | istanbul-reports "^1.1.0" 1459 | js-yaml "^3.7.0" 1460 | mkdirp "^0.5.1" 1461 | once "^1.4.0" 1462 | 1463 | istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.1.0: 1464 | version "1.1.0" 1465 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.0.tgz#caca19decaef3525b5d6331d701f3f3b7ad48528" 1466 | 1467 | istanbul-lib-hook@^1.0.6: 1468 | version "1.0.6" 1469 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.6.tgz#c0866d1e81cf2d5319249510131fc16dee49231f" 1470 | dependencies: 1471 | append-transform "^0.4.0" 1472 | 1473 | istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.7.1: 1474 | version "1.7.1" 1475 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.1.tgz#169e31bc62c778851a99439dd99c3cc12184d360" 1476 | dependencies: 1477 | babel-generator "^6.18.0" 1478 | babel-template "^6.16.0" 1479 | babel-traverse "^6.18.0" 1480 | babel-types "^6.18.0" 1481 | babylon "^6.13.0" 1482 | istanbul-lib-coverage "^1.1.0" 1483 | semver "^5.3.0" 1484 | 1485 | istanbul-lib-report@^1.1.0: 1486 | version "1.1.0" 1487 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.0.tgz#444c4ecca9afa93cf584f56b10f195bf768c0770" 1488 | dependencies: 1489 | istanbul-lib-coverage "^1.1.0" 1490 | mkdirp "^0.5.1" 1491 | path-parse "^1.0.5" 1492 | supports-color "^3.1.2" 1493 | 1494 | istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.0: 1495 | version "1.2.0" 1496 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.0.tgz#8c7706d497e26feeb6af3e0c28fd5b0669598d0e" 1497 | dependencies: 1498 | debug "^2.6.3" 1499 | istanbul-lib-coverage "^1.1.0" 1500 | mkdirp "^0.5.1" 1501 | rimraf "^2.6.1" 1502 | source-map "^0.5.3" 1503 | 1504 | istanbul-reports@^1.1.0: 1505 | version "1.1.0" 1506 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.0.tgz#1ef3b795889219cfb5fad16365f6ce108d5f8c66" 1507 | dependencies: 1508 | handlebars "^4.0.3" 1509 | 1510 | jest-changed-files@^20.0.0: 1511 | version "20.0.0" 1512 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-20.0.0.tgz#2ad82870a815b40ce3f4bf4555581d387b21022c" 1513 | 1514 | jest-cli@^20.0.0: 1515 | version "20.0.0" 1516 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-20.0.0.tgz#72664e0723bd099a0bade5bd4bf960fd54876069" 1517 | dependencies: 1518 | ansi-escapes "^1.4.0" 1519 | callsites "^2.0.0" 1520 | chalk "^1.1.3" 1521 | graceful-fs "^4.1.11" 1522 | is-ci "^1.0.10" 1523 | istanbul-api "^1.1.1" 1524 | istanbul-lib-coverage "^1.0.1" 1525 | istanbul-lib-instrument "^1.4.2" 1526 | istanbul-lib-source-maps "^1.1.0" 1527 | jest-changed-files "^20.0.0" 1528 | jest-config "^20.0.0" 1529 | jest-docblock "^20.0.0" 1530 | jest-environment-jsdom "^20.0.0" 1531 | jest-haste-map "^20.0.0" 1532 | jest-jasmine2 "^20.0.0" 1533 | jest-message-util "^20.0.0" 1534 | jest-regex-util "^20.0.0" 1535 | jest-resolve-dependencies "^20.0.0" 1536 | jest-runtime "^20.0.0" 1537 | jest-snapshot "^20.0.0" 1538 | jest-util "^20.0.0" 1539 | micromatch "^2.3.11" 1540 | node-notifier "^5.0.2" 1541 | pify "^2.3.0" 1542 | slash "^1.0.0" 1543 | string-length "^1.0.1" 1544 | throat "^3.0.0" 1545 | which "^1.2.12" 1546 | worker-farm "^1.3.1" 1547 | yargs "^7.0.2" 1548 | 1549 | jest-config@^20.0.0: 1550 | version "20.0.0" 1551 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-20.0.0.tgz#295fe937a377f79a8eea240ad29546bf43acbbec" 1552 | dependencies: 1553 | chalk "^1.1.3" 1554 | glob "^7.1.1" 1555 | jest-environment-jsdom "^20.0.0" 1556 | jest-environment-node "^20.0.0" 1557 | jest-jasmine2 "^20.0.0" 1558 | jest-regex-util "^20.0.0" 1559 | jest-resolve "^20.0.0" 1560 | jest-validate "^20.0.0" 1561 | pretty-format "^20.0.0" 1562 | 1563 | jest-diff@^20.0.0: 1564 | version "20.0.0" 1565 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-20.0.0.tgz#d6e9190b57e0333c6706ef28d62b1cb23042d7eb" 1566 | dependencies: 1567 | chalk "^1.1.3" 1568 | diff "^3.2.0" 1569 | jest-matcher-utils "^20.0.0" 1570 | pretty-format "^20.0.0" 1571 | 1572 | jest-docblock@^20.0.0: 1573 | version "20.0.0" 1574 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-20.0.0.tgz#5b647c4af36f52dae74df1949a8cb418d146ad3a" 1575 | 1576 | jest-environment-jsdom@^20.0.0: 1577 | version "20.0.0" 1578 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-20.0.0.tgz#a688499d817e33cdea6400c502d8d5f4aa01c808" 1579 | dependencies: 1580 | jest-mock "^20.0.0" 1581 | jest-util "^20.0.0" 1582 | jsdom "^9.12.0" 1583 | 1584 | jest-environment-node@^20.0.0: 1585 | version "20.0.0" 1586 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-20.0.0.tgz#7016d8d1270cbc1ed71a10f242c78324297e1db8" 1587 | dependencies: 1588 | jest-mock "^20.0.0" 1589 | jest-util "^20.0.0" 1590 | 1591 | jest-haste-map@^20.0.0: 1592 | version "20.0.0" 1593 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-20.0.0.tgz#3b8d9255dfe2a6a96e516fe71dafd415e1b5d65f" 1594 | dependencies: 1595 | fb-watchman "^2.0.0" 1596 | graceful-fs "^4.1.11" 1597 | jest-docblock "^20.0.0" 1598 | micromatch "^2.3.11" 1599 | sane "~1.6.0" 1600 | worker-farm "^1.3.1" 1601 | 1602 | jest-jasmine2@^20.0.0: 1603 | version "20.0.0" 1604 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-20.0.0.tgz#2a0aba92ed36ec132901cfc2a552fd7cee6fde3d" 1605 | dependencies: 1606 | chalk "^1.1.3" 1607 | graceful-fs "^4.1.11" 1608 | jest-diff "^20.0.0" 1609 | jest-matcher-utils "^20.0.0" 1610 | jest-matchers "^20.0.0" 1611 | jest-message-util "^20.0.0" 1612 | jest-snapshot "^20.0.0" 1613 | once "^1.4.0" 1614 | p-map "^1.1.1" 1615 | 1616 | jest-matcher-utils@^20.0.0: 1617 | version "20.0.0" 1618 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-20.0.0.tgz#2c5d9dd11670c5418ffc78baecf9094db9e91e09" 1619 | dependencies: 1620 | chalk "^1.1.3" 1621 | pretty-format "^20.0.0" 1622 | 1623 | jest-matchers@^20.0.0: 1624 | version "20.0.0" 1625 | resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-20.0.0.tgz#55498637bbb58f164d97c73610fb8d016dfac770" 1626 | dependencies: 1627 | jest-diff "^20.0.0" 1628 | jest-matcher-utils "^20.0.0" 1629 | jest-message-util "^20.0.0" 1630 | jest-regex-util "^20.0.0" 1631 | 1632 | jest-message-util@^20.0.0: 1633 | version "20.0.0" 1634 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-20.0.0.tgz#060bac1980bd5e11134e8e1c19c94863d937c727" 1635 | dependencies: 1636 | chalk "^1.1.3" 1637 | micromatch "^2.3.11" 1638 | slash "^1.0.0" 1639 | 1640 | jest-mock@^20.0.0: 1641 | version "20.0.0" 1642 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-20.0.0.tgz#3c54b94fe502ed57f2e602fab22ab196a7aa4b95" 1643 | 1644 | jest-regex-util@^20.0.0: 1645 | version "20.0.0" 1646 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-20.0.0.tgz#7f6051e9d00fdcccca52bade50aabdd9919bcfd2" 1647 | 1648 | jest-resolve-dependencies@^20.0.0: 1649 | version "20.0.0" 1650 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-20.0.0.tgz#616c6976c52e49d13e6420b1bcc8f380e701408f" 1651 | dependencies: 1652 | jest-regex-util "^20.0.0" 1653 | 1654 | jest-resolve@^20.0.0: 1655 | version "20.0.0" 1656 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-20.0.0.tgz#f9bfdfa31109aee2decfc3a07c2c354608cc5e1d" 1657 | dependencies: 1658 | browser-resolve "^1.11.2" 1659 | is-builtin-module "^1.0.0" 1660 | resolve "^1.3.2" 1661 | 1662 | jest-runtime@^20.0.0: 1663 | version "20.0.0" 1664 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-20.0.0.tgz#4c78c08573ffaeba9b8ceb096f705b75d5fb54a1" 1665 | dependencies: 1666 | babel-core "^6.0.0" 1667 | babel-jest "^20.0.0" 1668 | babel-plugin-istanbul "^4.0.0" 1669 | chalk "^1.1.3" 1670 | convert-source-map "^1.4.0" 1671 | graceful-fs "^4.1.11" 1672 | jest-config "^20.0.0" 1673 | jest-haste-map "^20.0.0" 1674 | jest-regex-util "^20.0.0" 1675 | jest-resolve "^20.0.0" 1676 | jest-util "^20.0.0" 1677 | json-stable-stringify "^1.0.1" 1678 | micromatch "^2.3.11" 1679 | strip-bom "3.0.0" 1680 | yargs "^7.0.2" 1681 | 1682 | jest-snapshot@^20.0.0: 1683 | version "20.0.0" 1684 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-20.0.0.tgz#fbe51d94ed1c6cd23808bb7ef82e58ca12a0ccf7" 1685 | dependencies: 1686 | chalk "^1.1.3" 1687 | jest-diff "^20.0.0" 1688 | jest-matcher-utils "^20.0.0" 1689 | jest-util "^20.0.0" 1690 | natural-compare "^1.4.0" 1691 | pretty-format "^20.0.0" 1692 | 1693 | jest-util@^20.0.0: 1694 | version "20.0.0" 1695 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-20.0.0.tgz#5421322f196e884e962bc8b8bac4b009733caed9" 1696 | dependencies: 1697 | chalk "^1.1.3" 1698 | graceful-fs "^4.1.11" 1699 | jest-message-util "^20.0.0" 1700 | jest-mock "^20.0.0" 1701 | jest-validate "^20.0.0" 1702 | leven "^2.1.0" 1703 | mkdirp "^0.5.1" 1704 | 1705 | jest-validate@^20.0.0: 1706 | version "20.0.0" 1707 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-20.0.0.tgz#c0832e8210190b6d5b39a46b8df536083131a7d7" 1708 | dependencies: 1709 | chalk "^1.1.3" 1710 | jest-matcher-utils "^20.0.0" 1711 | leven "^2.1.0" 1712 | pretty-format "^20.0.0" 1713 | 1714 | jest@^20.0.0: 1715 | version "20.0.0" 1716 | resolved "https://registry.yarnpkg.com/jest/-/jest-20.0.0.tgz#58cf6abf328f2a2e3c4203890131cbe89d3b0769" 1717 | dependencies: 1718 | jest-cli "^20.0.0" 1719 | 1720 | jodid25519@^1.0.0: 1721 | version "1.0.2" 1722 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 1723 | dependencies: 1724 | jsbn "~0.1.0" 1725 | 1726 | js-tokens@^3.0.0: 1727 | version "3.0.1" 1728 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 1729 | 1730 | js-yaml@^3.7.0: 1731 | version "3.8.4" 1732 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.4.tgz#520b4564f86573ba96662af85a8cafa7b4b5a6f6" 1733 | dependencies: 1734 | argparse "^1.0.7" 1735 | esprima "^3.1.1" 1736 | 1737 | jsbn@~0.1.0: 1738 | version "0.1.1" 1739 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1740 | 1741 | jsdom@^9.12.0: 1742 | version "9.12.0" 1743 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 1744 | dependencies: 1745 | abab "^1.0.3" 1746 | acorn "^4.0.4" 1747 | acorn-globals "^3.1.0" 1748 | array-equal "^1.0.0" 1749 | content-type-parser "^1.0.1" 1750 | cssom ">= 0.3.2 < 0.4.0" 1751 | cssstyle ">= 0.2.37 < 0.3.0" 1752 | escodegen "^1.6.1" 1753 | html-encoding-sniffer "^1.0.1" 1754 | nwmatcher ">= 1.3.9 < 2.0.0" 1755 | parse5 "^1.5.1" 1756 | request "^2.79.0" 1757 | sax "^1.2.1" 1758 | symbol-tree "^3.2.1" 1759 | tough-cookie "^2.3.2" 1760 | webidl-conversions "^4.0.0" 1761 | whatwg-encoding "^1.0.1" 1762 | whatwg-url "^4.3.0" 1763 | xml-name-validator "^2.0.1" 1764 | 1765 | jsesc@^1.3.0: 1766 | version "1.3.0" 1767 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1768 | 1769 | jsesc@~0.5.0: 1770 | version "0.5.0" 1771 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1772 | 1773 | json-schema@0.2.3: 1774 | version "0.2.3" 1775 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1776 | 1777 | json-stable-stringify@^1.0.1: 1778 | version "1.0.1" 1779 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1780 | dependencies: 1781 | jsonify "~0.0.0" 1782 | 1783 | json-stringify-safe@~5.0.1: 1784 | version "5.0.1" 1785 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1786 | 1787 | json5@^0.5.0: 1788 | version "0.5.1" 1789 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1790 | 1791 | jsonify@~0.0.0: 1792 | version "0.0.0" 1793 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1794 | 1795 | jsprim@^1.2.2: 1796 | version "1.4.0" 1797 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 1798 | dependencies: 1799 | assert-plus "1.0.0" 1800 | extsprintf "1.0.2" 1801 | json-schema "0.2.3" 1802 | verror "1.3.6" 1803 | 1804 | kind-of@^3.0.2: 1805 | version "3.2.0" 1806 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.0.tgz#b58abe4d5c044ad33726a8c1525b48cf891bff07" 1807 | dependencies: 1808 | is-buffer "^1.1.5" 1809 | 1810 | lazy-cache@^1.0.3: 1811 | version "1.0.4" 1812 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1813 | 1814 | lcid@^1.0.0: 1815 | version "1.0.0" 1816 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1817 | dependencies: 1818 | invert-kv "^1.0.0" 1819 | 1820 | leven@^2.1.0: 1821 | version "2.1.0" 1822 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 1823 | 1824 | levn@~0.3.0: 1825 | version "0.3.0" 1826 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1827 | dependencies: 1828 | prelude-ls "~1.1.2" 1829 | type-check "~0.3.2" 1830 | 1831 | load-json-file@^1.0.0: 1832 | version "1.1.0" 1833 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1834 | dependencies: 1835 | graceful-fs "^4.1.2" 1836 | parse-json "^2.2.0" 1837 | pify "^2.0.0" 1838 | pinkie-promise "^2.0.0" 1839 | strip-bom "^2.0.0" 1840 | 1841 | locate-path@^2.0.0: 1842 | version "2.0.0" 1843 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1844 | dependencies: 1845 | p-locate "^2.0.0" 1846 | path-exists "^3.0.0" 1847 | 1848 | lodash@^4.14.0, lodash@^4.2.0: 1849 | version "4.17.4" 1850 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1851 | 1852 | longest@^1.0.1: 1853 | version "1.0.1" 1854 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1855 | 1856 | loose-envify@^1.0.0: 1857 | version "1.3.1" 1858 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1859 | dependencies: 1860 | js-tokens "^3.0.0" 1861 | 1862 | makeerror@1.0.x: 1863 | version "1.0.11" 1864 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 1865 | dependencies: 1866 | tmpl "1.0.x" 1867 | 1868 | merge@^1.1.3: 1869 | version "1.2.0" 1870 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 1871 | 1872 | micromatch@^2.1.5, micromatch@^2.3.11: 1873 | version "2.3.11" 1874 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1875 | dependencies: 1876 | arr-diff "^2.0.0" 1877 | array-unique "^0.2.1" 1878 | braces "^1.8.2" 1879 | expand-brackets "^0.1.4" 1880 | extglob "^0.3.1" 1881 | filename-regex "^2.0.0" 1882 | is-extglob "^1.0.0" 1883 | is-glob "^2.0.1" 1884 | kind-of "^3.0.2" 1885 | normalize-path "^2.0.1" 1886 | object.omit "^2.0.0" 1887 | parse-glob "^3.0.4" 1888 | regex-cache "^0.4.2" 1889 | 1890 | mime-db@~1.27.0: 1891 | version "1.27.0" 1892 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 1893 | 1894 | mime-types@^2.1.12, mime-types@~2.1.7: 1895 | version "2.1.15" 1896 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 1897 | dependencies: 1898 | mime-db "~1.27.0" 1899 | 1900 | minimatch@^3.0.2, minimatch@^3.0.3: 1901 | version "3.0.4" 1902 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1903 | dependencies: 1904 | brace-expansion "^1.1.7" 1905 | 1906 | minimist@0.0.8, minimist@~0.0.1: 1907 | version "0.0.8" 1908 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1909 | 1910 | minimist@^1.1.1: 1911 | version "1.2.0" 1912 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1913 | 1914 | mkdirp@^0.5.1: 1915 | version "0.5.1" 1916 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1917 | dependencies: 1918 | minimist "0.0.8" 1919 | 1920 | ms@0.7.3: 1921 | version "0.7.3" 1922 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.3.tgz#708155a5e44e33f5fd0fc53e81d0d40a91be1fff" 1923 | 1924 | natural-compare@^1.4.0: 1925 | version "1.4.0" 1926 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1927 | 1928 | node-int64@^0.4.0: 1929 | version "0.4.0" 1930 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 1931 | 1932 | node-notifier@^5.0.2: 1933 | version "5.1.2" 1934 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 1935 | dependencies: 1936 | growly "^1.3.0" 1937 | semver "^5.3.0" 1938 | shellwords "^0.1.0" 1939 | which "^1.2.12" 1940 | 1941 | normalize-package-data@^2.3.2: 1942 | version "2.3.8" 1943 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" 1944 | dependencies: 1945 | hosted-git-info "^2.1.4" 1946 | is-builtin-module "^1.0.0" 1947 | semver "2 || 3 || 4 || 5" 1948 | validate-npm-package-license "^3.0.1" 1949 | 1950 | normalize-path@^2.0.1: 1951 | version "2.1.1" 1952 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1953 | dependencies: 1954 | remove-trailing-separator "^1.0.1" 1955 | 1956 | number-is-nan@^1.0.0: 1957 | version "1.0.1" 1958 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1959 | 1960 | "nwmatcher@>= 1.3.9 < 2.0.0": 1961 | version "1.3.9" 1962 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.3.9.tgz#8bab486ff7fa3dfd086656bbe8b17116d3692d2a" 1963 | 1964 | oauth-sign@~0.8.1: 1965 | version "0.8.2" 1966 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1967 | 1968 | object-assign@^4.1.0: 1969 | version "4.1.1" 1970 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1971 | 1972 | object.omit@^2.0.0: 1973 | version "2.0.1" 1974 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1975 | dependencies: 1976 | for-own "^0.1.4" 1977 | is-extendable "^0.1.1" 1978 | 1979 | once@^1.3.0, once@^1.4.0: 1980 | version "1.4.0" 1981 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1982 | dependencies: 1983 | wrappy "1" 1984 | 1985 | optimist@^0.6.1: 1986 | version "0.6.1" 1987 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 1988 | dependencies: 1989 | minimist "~0.0.1" 1990 | wordwrap "~0.0.2" 1991 | 1992 | optionator@^0.8.1: 1993 | version "0.8.2" 1994 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 1995 | dependencies: 1996 | deep-is "~0.1.3" 1997 | fast-levenshtein "~2.0.4" 1998 | levn "~0.3.0" 1999 | prelude-ls "~1.1.2" 2000 | type-check "~0.3.2" 2001 | wordwrap "~1.0.0" 2002 | 2003 | os-homedir@^1.0.0: 2004 | version "1.0.2" 2005 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2006 | 2007 | os-locale@^1.4.0: 2008 | version "1.4.0" 2009 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2010 | dependencies: 2011 | lcid "^1.0.0" 2012 | 2013 | os-tmpdir@^1.0.1: 2014 | version "1.0.2" 2015 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2016 | 2017 | p-limit@^1.1.0: 2018 | version "1.1.0" 2019 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2020 | 2021 | p-locate@^2.0.0: 2022 | version "2.0.0" 2023 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2024 | dependencies: 2025 | p-limit "^1.1.0" 2026 | 2027 | p-map@^1.1.1: 2028 | version "1.1.1" 2029 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.1.1.tgz#05f5e4ae97a068371bc2a5cc86bfbdbc19c4ae7a" 2030 | 2031 | parse-glob@^3.0.4: 2032 | version "3.0.4" 2033 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2034 | dependencies: 2035 | glob-base "^0.3.0" 2036 | is-dotfile "^1.0.0" 2037 | is-extglob "^1.0.0" 2038 | is-glob "^2.0.0" 2039 | 2040 | parse-json@^2.2.0: 2041 | version "2.2.0" 2042 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2043 | dependencies: 2044 | error-ex "^1.2.0" 2045 | 2046 | parse5@^1.5.1: 2047 | version "1.5.1" 2048 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 2049 | 2050 | path-exists@^2.0.0: 2051 | version "2.1.0" 2052 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2053 | dependencies: 2054 | pinkie-promise "^2.0.0" 2055 | 2056 | path-exists@^3.0.0: 2057 | version "3.0.0" 2058 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2059 | 2060 | path-is-absolute@^1.0.0: 2061 | version "1.0.1" 2062 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2063 | 2064 | path-parse@^1.0.5: 2065 | version "1.0.5" 2066 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2067 | 2068 | path-type@^1.0.0: 2069 | version "1.1.0" 2070 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2071 | dependencies: 2072 | graceful-fs "^4.1.2" 2073 | pify "^2.0.0" 2074 | pinkie-promise "^2.0.0" 2075 | 2076 | performance-now@^0.2.0: 2077 | version "0.2.0" 2078 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2079 | 2080 | pify@^2.0.0, pify@^2.3.0: 2081 | version "2.3.0" 2082 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2083 | 2084 | pinkie-promise@^2.0.0: 2085 | version "2.0.1" 2086 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2087 | dependencies: 2088 | pinkie "^2.0.0" 2089 | 2090 | pinkie@^2.0.0: 2091 | version "2.0.4" 2092 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2093 | 2094 | prelude-ls@~1.1.2: 2095 | version "1.1.2" 2096 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2097 | 2098 | preserve@^0.2.0: 2099 | version "0.2.0" 2100 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2101 | 2102 | pretty-format@^20.0.0: 2103 | version "20.0.0" 2104 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-20.0.0.tgz#bd100f330e707e4f49fef3f234d6e915242a6e7e" 2105 | dependencies: 2106 | ansi-styles "^3.0.0" 2107 | 2108 | private@^0.1.6: 2109 | version "0.1.7" 2110 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2111 | 2112 | promise@^7.1.1: 2113 | version "7.1.1" 2114 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.1.1.tgz#489654c692616b8aa55b0724fa809bb7db49c5bf" 2115 | dependencies: 2116 | asap "~2.0.3" 2117 | 2118 | prr@~0.0.0: 2119 | version "0.0.0" 2120 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 2121 | 2122 | punycode@^1.4.1: 2123 | version "1.4.1" 2124 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2125 | 2126 | qs@~6.4.0: 2127 | version "6.4.0" 2128 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2129 | 2130 | randomatic@^1.1.3: 2131 | version "1.1.6" 2132 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 2133 | dependencies: 2134 | is-number "^2.0.2" 2135 | kind-of "^3.0.2" 2136 | 2137 | read-pkg-up@^1.0.1: 2138 | version "1.0.1" 2139 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2140 | dependencies: 2141 | find-up "^1.0.0" 2142 | read-pkg "^1.0.0" 2143 | 2144 | read-pkg@^1.0.0: 2145 | version "1.1.0" 2146 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2147 | dependencies: 2148 | load-json-file "^1.0.0" 2149 | normalize-package-data "^2.3.2" 2150 | path-type "^1.0.0" 2151 | 2152 | regenerate@^1.2.1: 2153 | version "1.3.2" 2154 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 2155 | 2156 | regenerator-runtime@^0.10.0, regenerator-runtime@^0.10.5: 2157 | version "0.10.5" 2158 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 2159 | 2160 | regenerator-transform@0.9.11: 2161 | version "0.9.11" 2162 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.11.tgz#3a7d067520cb7b7176769eb5ff868691befe1283" 2163 | dependencies: 2164 | babel-runtime "^6.18.0" 2165 | babel-types "^6.19.0" 2166 | private "^0.1.6" 2167 | 2168 | regex-cache@^0.4.2: 2169 | version "0.4.3" 2170 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2171 | dependencies: 2172 | is-equal-shallow "^0.1.3" 2173 | is-primitive "^2.0.0" 2174 | 2175 | regexpu-core@^2.0.0: 2176 | version "2.0.0" 2177 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2178 | dependencies: 2179 | regenerate "^1.2.1" 2180 | regjsgen "^0.2.0" 2181 | regjsparser "^0.1.4" 2182 | 2183 | regjsgen@^0.2.0: 2184 | version "0.2.0" 2185 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2186 | 2187 | regjsparser@^0.1.4: 2188 | version "0.1.5" 2189 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2190 | dependencies: 2191 | jsesc "~0.5.0" 2192 | 2193 | remove-trailing-separator@^1.0.1: 2194 | version "1.0.1" 2195 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" 2196 | 2197 | repeat-element@^1.1.2: 2198 | version "1.1.2" 2199 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2200 | 2201 | repeat-string@^1.5.2: 2202 | version "1.6.1" 2203 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2204 | 2205 | repeating@^2.0.0: 2206 | version "2.0.1" 2207 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2208 | dependencies: 2209 | is-finite "^1.0.0" 2210 | 2211 | request@^2.79.0: 2212 | version "2.81.0" 2213 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2214 | dependencies: 2215 | aws-sign2 "~0.6.0" 2216 | aws4 "^1.2.1" 2217 | caseless "~0.12.0" 2218 | combined-stream "~1.0.5" 2219 | extend "~3.0.0" 2220 | forever-agent "~0.6.1" 2221 | form-data "~2.1.1" 2222 | har-validator "~4.2.1" 2223 | hawk "~3.1.3" 2224 | http-signature "~1.1.0" 2225 | is-typedarray "~1.0.0" 2226 | isstream "~0.1.2" 2227 | json-stringify-safe "~5.0.1" 2228 | mime-types "~2.1.7" 2229 | oauth-sign "~0.8.1" 2230 | performance-now "^0.2.0" 2231 | qs "~6.4.0" 2232 | safe-buffer "^5.0.1" 2233 | stringstream "~0.0.4" 2234 | tough-cookie "~2.3.0" 2235 | tunnel-agent "^0.6.0" 2236 | uuid "^3.0.0" 2237 | 2238 | require-directory@^2.1.1: 2239 | version "2.1.1" 2240 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2241 | 2242 | require-main-filename@^1.0.1: 2243 | version "1.0.1" 2244 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2245 | 2246 | resolve@1.1.7: 2247 | version "1.1.7" 2248 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2249 | 2250 | resolve@^1.3.2: 2251 | version "1.3.3" 2252 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5" 2253 | dependencies: 2254 | path-parse "^1.0.5" 2255 | 2256 | right-align@^0.1.1: 2257 | version "0.1.3" 2258 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2259 | dependencies: 2260 | align-text "^0.1.1" 2261 | 2262 | rimraf@^2.6.1: 2263 | version "2.6.1" 2264 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 2265 | dependencies: 2266 | glob "^7.0.5" 2267 | 2268 | safe-buffer@^5.0.1: 2269 | version "5.0.1" 2270 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 2271 | 2272 | sane@~1.6.0: 2273 | version "1.6.0" 2274 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.6.0.tgz#9610c452307a135d29c1fdfe2547034180c46775" 2275 | dependencies: 2276 | anymatch "^1.3.0" 2277 | exec-sh "^0.2.0" 2278 | fb-watchman "^1.8.0" 2279 | minimatch "^3.0.2" 2280 | minimist "^1.1.1" 2281 | walker "~1.0.5" 2282 | watch "~0.10.0" 2283 | 2284 | sax@^1.2.1: 2285 | version "1.2.2" 2286 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.2.tgz#fd8631a23bc7826bef5d871bdb87378c95647828" 2287 | 2288 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 2289 | version "5.3.0" 2290 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 2291 | 2292 | set-blocking@^2.0.0: 2293 | version "2.0.0" 2294 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2295 | 2296 | shellwords@^0.1.0: 2297 | version "0.1.0" 2298 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.0.tgz#66afd47b6a12932d9071cbfd98a52e785cd0ba14" 2299 | 2300 | slash@^1.0.0: 2301 | version "1.0.0" 2302 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2303 | 2304 | sntp@1.x.x: 2305 | version "1.0.9" 2306 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2307 | dependencies: 2308 | hoek "2.x.x" 2309 | 2310 | source-map-support@^0.4.2: 2311 | version "0.4.15" 2312 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1" 2313 | dependencies: 2314 | source-map "^0.5.6" 2315 | 2316 | source-map@^0.4.4: 2317 | version "0.4.4" 2318 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 2319 | dependencies: 2320 | amdefine ">=0.0.4" 2321 | 2322 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 2323 | version "0.5.6" 2324 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 2325 | 2326 | source-map@~0.2.0: 2327 | version "0.2.0" 2328 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 2329 | dependencies: 2330 | amdefine ">=0.0.4" 2331 | 2332 | spdx-correct@~1.0.0: 2333 | version "1.0.2" 2334 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2335 | dependencies: 2336 | spdx-license-ids "^1.0.2" 2337 | 2338 | spdx-expression-parse@~1.0.0: 2339 | version "1.0.4" 2340 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2341 | 2342 | spdx-license-ids@^1.0.2: 2343 | version "1.2.2" 2344 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2345 | 2346 | sprintf-js@~1.0.2: 2347 | version "1.0.3" 2348 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2349 | 2350 | sshpk@^1.7.0: 2351 | version "1.13.0" 2352 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.0.tgz#ff2a3e4fd04497555fed97b39a0fd82fafb3a33c" 2353 | dependencies: 2354 | asn1 "~0.2.3" 2355 | assert-plus "^1.0.0" 2356 | dashdash "^1.12.0" 2357 | getpass "^0.1.1" 2358 | optionalDependencies: 2359 | bcrypt-pbkdf "^1.0.0" 2360 | ecc-jsbn "~0.1.1" 2361 | jodid25519 "^1.0.0" 2362 | jsbn "~0.1.0" 2363 | tweetnacl "~0.14.0" 2364 | 2365 | string-length@^1.0.1: 2366 | version "1.0.1" 2367 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 2368 | dependencies: 2369 | strip-ansi "^3.0.0" 2370 | 2371 | string-width@^1.0.1, string-width@^1.0.2: 2372 | version "1.0.2" 2373 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2374 | dependencies: 2375 | code-point-at "^1.0.0" 2376 | is-fullwidth-code-point "^1.0.0" 2377 | strip-ansi "^3.0.0" 2378 | 2379 | stringstream@~0.0.4: 2380 | version "0.0.5" 2381 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2382 | 2383 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2384 | version "3.0.1" 2385 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2386 | dependencies: 2387 | ansi-regex "^2.0.0" 2388 | 2389 | strip-bom@3.0.0: 2390 | version "3.0.0" 2391 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2392 | 2393 | strip-bom@^2.0.0: 2394 | version "2.0.0" 2395 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2396 | dependencies: 2397 | is-utf8 "^0.2.0" 2398 | 2399 | supports-color@^2.0.0: 2400 | version "2.0.0" 2401 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2402 | 2403 | supports-color@^3.1.2: 2404 | version "3.2.3" 2405 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 2406 | dependencies: 2407 | has-flag "^1.0.0" 2408 | 2409 | symbol-tree@^3.2.1: 2410 | version "3.2.2" 2411 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 2412 | 2413 | test-exclude@^4.1.0: 2414 | version "4.1.0" 2415 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.0.tgz#04ca70b7390dd38c98d4a003a173806ca7991c91" 2416 | dependencies: 2417 | arrify "^1.0.1" 2418 | micromatch "^2.3.11" 2419 | object-assign "^4.1.0" 2420 | read-pkg-up "^1.0.1" 2421 | require-main-filename "^1.0.1" 2422 | 2423 | throat@^3.0.0: 2424 | version "3.0.0" 2425 | resolved "https://registry.yarnpkg.com/throat/-/throat-3.0.0.tgz#e7c64c867cbb3845f10877642f7b60055b8ec0d6" 2426 | 2427 | tmpl@1.0.x: 2428 | version "1.0.4" 2429 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 2430 | 2431 | to-fast-properties@^1.0.1: 2432 | version "1.0.3" 2433 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2434 | 2435 | tough-cookie@^2.3.2, tough-cookie@~2.3.0: 2436 | version "2.3.2" 2437 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 2438 | dependencies: 2439 | punycode "^1.4.1" 2440 | 2441 | tr46@~0.0.3: 2442 | version "0.0.3" 2443 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 2444 | 2445 | trim-right@^1.0.1: 2446 | version "1.0.1" 2447 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2448 | 2449 | tunnel-agent@^0.6.0: 2450 | version "0.6.0" 2451 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2452 | dependencies: 2453 | safe-buffer "^5.0.1" 2454 | 2455 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2456 | version "0.14.5" 2457 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2458 | 2459 | type-check@~0.3.2: 2460 | version "0.3.2" 2461 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 2462 | dependencies: 2463 | prelude-ls "~1.1.2" 2464 | 2465 | uglify-js@^2.6: 2466 | version "2.8.23" 2467 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.23.tgz#8230dd9783371232d62a7821e2cf9a817270a8a0" 2468 | dependencies: 2469 | source-map "~0.5.1" 2470 | yargs "~3.10.0" 2471 | optionalDependencies: 2472 | uglify-to-browserify "~1.0.0" 2473 | 2474 | uglify-to-browserify@~1.0.0: 2475 | version "1.0.2" 2476 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 2477 | 2478 | uuid@^3.0.0: 2479 | version "3.0.1" 2480 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 2481 | 2482 | validate-npm-package-license@^3.0.1: 2483 | version "3.0.1" 2484 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 2485 | dependencies: 2486 | spdx-correct "~1.0.0" 2487 | spdx-expression-parse "~1.0.0" 2488 | 2489 | verror@1.3.6: 2490 | version "1.3.6" 2491 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 2492 | dependencies: 2493 | extsprintf "1.0.2" 2494 | 2495 | walker@~1.0.5: 2496 | version "1.0.7" 2497 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 2498 | dependencies: 2499 | makeerror "1.0.x" 2500 | 2501 | watch@~0.10.0: 2502 | version "0.10.0" 2503 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 2504 | 2505 | webidl-conversions@^3.0.0: 2506 | version "3.0.1" 2507 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 2508 | 2509 | webidl-conversions@^4.0.0: 2510 | version "4.0.1" 2511 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.1.tgz#8015a17ab83e7e1b311638486ace81da6ce206a0" 2512 | 2513 | whatwg-encoding@^1.0.1: 2514 | version "1.0.1" 2515 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 2516 | dependencies: 2517 | iconv-lite "0.4.13" 2518 | 2519 | whatwg-url@^4.3.0: 2520 | version "4.8.0" 2521 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0" 2522 | dependencies: 2523 | tr46 "~0.0.3" 2524 | webidl-conversions "^3.0.0" 2525 | 2526 | which-module@^1.0.0: 2527 | version "1.0.0" 2528 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 2529 | 2530 | which@^1.2.12: 2531 | version "1.2.14" 2532 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 2533 | dependencies: 2534 | isexe "^2.0.0" 2535 | 2536 | window-size@0.1.0: 2537 | version "0.1.0" 2538 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 2539 | 2540 | wordwrap@0.0.2: 2541 | version "0.0.2" 2542 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 2543 | 2544 | wordwrap@~0.0.2: 2545 | version "0.0.3" 2546 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 2547 | 2548 | wordwrap@~1.0.0: 2549 | version "1.0.0" 2550 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 2551 | 2552 | worker-farm@^1.3.1: 2553 | version "1.3.1" 2554 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.3.1.tgz#4333112bb49b17aa050b87895ca6b2cacf40e5ff" 2555 | dependencies: 2556 | errno ">=0.1.1 <0.2.0-0" 2557 | xtend ">=4.0.0 <4.1.0-0" 2558 | 2559 | wrap-ansi@^2.0.0: 2560 | version "2.1.0" 2561 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 2562 | dependencies: 2563 | string-width "^1.0.1" 2564 | strip-ansi "^3.0.1" 2565 | 2566 | wrappy@1: 2567 | version "1.0.2" 2568 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2569 | 2570 | xml-name-validator@^2.0.1: 2571 | version "2.0.1" 2572 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 2573 | 2574 | "xtend@>=4.0.0 <4.1.0-0": 2575 | version "4.0.1" 2576 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2577 | 2578 | y18n@^3.2.1: 2579 | version "3.2.1" 2580 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 2581 | 2582 | yargs-parser@^5.0.0: 2583 | version "5.0.0" 2584 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" 2585 | dependencies: 2586 | camelcase "^3.0.0" 2587 | 2588 | yargs@^7.0.2: 2589 | version "7.1.0" 2590 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" 2591 | dependencies: 2592 | camelcase "^3.0.0" 2593 | cliui "^3.2.0" 2594 | decamelize "^1.1.1" 2595 | get-caller-file "^1.0.1" 2596 | os-locale "^1.4.0" 2597 | read-pkg-up "^1.0.1" 2598 | require-directory "^2.1.1" 2599 | require-main-filename "^1.0.1" 2600 | set-blocking "^2.0.0" 2601 | string-width "^1.0.2" 2602 | which-module "^1.0.0" 2603 | y18n "^3.2.1" 2604 | yargs-parser "^5.0.0" 2605 | 2606 | yargs@~3.10.0: 2607 | version "3.10.0" 2608 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 2609 | dependencies: 2610 | camelcase "^1.0.2" 2611 | cliui "^2.1.0" 2612 | decamelize "^1.0.0" 2613 | window-size "0.1.0" 2614 | --------------------------------------------------------------------------------