├── .gitignore ├── README.md ├── docs ├── CHALLENGES.md ├── ISSUE_TEMPLATE.md └── assets │ ├── js_logo.png │ └── old_logo.png ├── generate-tests.js ├── package.json ├── src ├── challenges.js ├── solutions.js └── typeCheck.js ├── test.js ├── tests ├── _alphabeticallySort.js ├── _arrayMerge.js ├── _arraySum.js ├── _arrayToTree.js ├── _capitalize.js ├── _firstRecurringChar.js ├── _fizzBuzz.js ├── _isMultipleOf.js ├── _isPalindrome.js ├── _longestWord.js ├── _maxChar.js ├── _objectForEach.js ├── _objectMerge.js ├── _reverseString.js ├── _round.js ├── _simpleAdding.js └── _vowelCount.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | *.pid.lock 13 | 14 | # Directory for instrumented libs generated by jscoverage/JSCover 15 | lib-cov 16 | 17 | # Coverage directory used by tools like istanbul 18 | coverage 19 | 20 | # nyc test coverage 21 | .nyc_output 22 | 23 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 24 | .grunt 25 | 26 | # Bower dependency directory (https://bower.io/) 27 | bower_components 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # Compiled binary addons (http://nodejs.org/api/addons.html) 33 | build/Release 34 | 35 | # Dependency directories 36 | node_modules/ 37 | jspm_packages/ 38 | 39 | # Typescript v1 declaration files 40 | typings/ 41 | 42 | # Optional npm cache directory 43 | .npm 44 | 45 | # Optional eslint cache 46 | .eslintcache 47 | 48 | # Optional REPL history 49 | .node_repl_history 50 | 51 | # Output of 'npm pack' 52 | *.tgz 53 | 54 | # Yarn Integrity file 55 | .yarn-integrity 56 | 57 | # dotenv environment variables file 58 | .env 59 | 60 | .DS_Store 61 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 |
3 |
4 |
5 |
6 | logo 7 |
8 |
9 | Some javascript challenges from beginner to advanced difficulty. 10 |

11 |
12 |
13 |
14 | 15 | ### Index 16 | - [What](#what) 17 | - [Why](#so-why) 18 | - [Challenges](#challenges) 19 | 1. [Round number](#round-number) 20 | 2. [Merge multiple arrays](#merge-multiple-arrays) 21 | 3. [Sum content of an array](#sum-content-of-an-array) 22 | 4. [Object `forEach`](#object-foreach) 23 | 5. [String reverse](#string-reverse) 24 | 6. [More Challenges](docs/CHALLENGES.md) 25 | - [Partecipating](#partecipating) 26 | - [Contributing](#contributing) 27 | - [Notes](#contributing-notes) 28 | - [Related Repos](#related) 29 | 30 | 31 | ## What? 32 | A collection of Javascript coding challenges, from beginner to advanced. All challenges are taken from the generous web or created by some awesome [contributors][contributors]. 33 | 34 | ## So, Why? 35 | I'm creating this repo because I want to compile as many coding challenges (for free obviously) in one file. I know that there are many websites like [codewars](https://codewars.com/) or [coderbyte](https://coderbyte.com) but this is different. These websites may not be free and you may need to pay a subscription. 36 | 37 | ## Challenges 38 | Below are a few challenges - you can get the full documentation [here](docs/CHALLENGES.md). 39 | 40 | If you have an idea on how to improve this repo don't be shy, post a **PR** or open a new **ISSUE**! 41 | 42 | 1. #### ROUND NUMBER 43 | - **NAME**: `round` 44 | - **DESCRIPTION**: Write a function that rounds a number to given amount of decimal places. 45 | ```js 46 | round(Math.PI, 2); // => 3.14 47 | ``` 48 | 49 | 2. #### MERGE MULTIPLE ARRAYS 50 | - **NAME**: `arrayMerge` 51 | - **DESCRIPTION**: Write a function that merges multiple given arrays. 52 | ```js 53 | arrayMerge([1, 2], [3, 4]); // => [1, 2, 3, 4] 54 | ``` 55 | 56 | 1. #### SUM CONTENT OF AN ARRAY 57 | - **NAME**: `arraySum` 58 | - **DESCRIPTION**: Write a function to sum the content of an array. 59 | ```js 60 | arraySum([1, 2, 3]) // => 6 61 | ``` 62 | 63 | 1. #### OBJECT FOREACH 64 | - **NAME**: `objectForEach` 65 | - **DESCRIPTION**: Write a forEach function that works with Objects. 66 | ```js 67 | var obj = { 68 | first_name: 'Elon', 69 | last_name: 'Musk' 70 | } 71 | 72 | objectForEach(obj, (key, value) => { 73 | console.log(key, value) 74 | }) 75 | 76 | //=> 'first_name', 'Elon' 77 | //=> 'last_name', 'Musk' 78 | ``` 79 | 80 | 5. #### STRING REVERSE 81 | - **NAME**: `reverseString` 82 | - **DESCRIPTION**: Write a function that reverses a string. 83 | ```js 84 | reverseString('hello world!') //=> '!dlrow olleh' 85 | ``` 86 | 87 | --- 88 | ## Participating 89 | 1. Clone this repo 90 | 2. Install all dependencies via `npm install`. 91 | 3. Fill all challenges in [`./src/challenges.js`][srcChallenges]. 92 | 4. Test them via `npm run test`. 93 | 5. Share the challenge on twitter via `#jschallenges` 94 | 6. Some ideas? Read below the [contributing](#contributing) paragraph or open an **ISSUE**! 95 | 96 | ## Contributing 97 | 1. Clone this repo. 98 | 2. Install all dependencies via `npm install`. 99 | 3. Write down your challenge (with solution) in [`./src/challenges.js`][srcChallenges]. 100 | 4. Write a test for your challenge in `./test/_your-challenge.js`. 101 | 5. Import your test in the `test.js` file. 102 | 6. Test your challenge via `npx ava ./test/_your-challenge.js`. 103 | 7. Move your solution to [`./src/solutions.js`][srcSolutions]. 104 | 8. Submit your PR! 105 | 106 | 107 | ### Contributing notes 108 | All challenges need to follow this scheme: 109 | > (2 spaces between each challenge) 110 | 111 | ```js 112 | /** 113 | * CHALLEBGE : 114 | * @name 115 | * @description 116 | * @author 117 | * 118 | * 119 | * @example Usage: 120 | * functionName(args) //=> output 121 | * 122 | * 123 | * @param {Type} a ... 124 | * @param {Type} b ... 125 | * 126 | * @returns {Type} ... 127 | */ 128 | module.exports.challenge_name = function() {} 129 | ``` 130 | If your challenge is taken from forums please link the thread or the stackoverflow question with `@see` 131 | ##### READ MORE ABOUT **JSODC** [here](http://usejsdoc.org/) 132 | 133 | ## Related 134 | - [Javascript30][js30] - 30 Day Vanilla JS Challenge 135 | - [Javascript Cardio][jscardio] - JavaScript challenges and problems 136 | 137 | -------- 138 |

139 | TwitterInstagramGitHub 140 |

141 | 142 | 143 | [js30]: https://github.com/wesbos/JavaScript30 144 | [jscardio]: https://github.com/bradtraversy/javascript_cardio 145 | [challenges]: docs/CHALLENGES.md 146 | [srcChallenges]: src/challenges.js 147 | [srcSolutions]: src/solutions.js 148 | [contributors]: https://github.com/Rawnly/js-challenges/graphs/contributors 149 | -------------------------------------------------------------------------------- /docs/CHALLENGES.md: -------------------------------------------------------------------------------- 1 | # Challenges 2 | Below all the available challenges and some relative examples. 3 | 4 | - #### 1. ROUND NUMBER 5 | - **NAME**: `round` 6 | - **DESCRIPTION**: Write a function that round a number to given decimal places. 7 | ```js 8 | round(Math.PI, 2); // => 3.14 9 | ``` 10 | 11 | - #### 2. MERGE MULTIPLE ARRAYS 12 | - **NAME**: `arrayMerge` 13 | - **DESCRIPTION**: Write a function that merges multiple given arrays. 14 | ```js 15 | arrayMerge([1, 2], [3, 4]); // => [1, 2, 3, 4] 16 | ``` 17 | 18 | - #### 3. SUM CONTENT OF AN ARRAY 19 | - **NAME**: `arraySum` 20 | - **DESCRIPTION**: Write a function to sum the content of an array. 21 | ```js 22 | arraySum([1, 2, 3]) // => 6 23 | ``` 24 | 25 | - #### 4. OBJECT FOREACH 26 | - **NAME**: `objectForEach` 27 | - **DESCRIPTION**: Write a forEach function that works with Objects. 28 | ```js 29 | var obj = { 30 | first_name: 'Elon', 31 | last_name: 'Musk' 32 | } 33 | 34 | objectForEach(obj, (key, value) => { 35 | console.log(key, value) 36 | }) 37 | 38 | //=> 'first_name', 'Elon' 39 | //=> 'last_name', 'Musk' 40 | ``` 41 | 42 | - #### 5. STRING REVERSE 43 | - **NAME**: `reverseString` 44 | - **DESCRIPTION**: Write a function that reverse a string. 45 | ```js 46 | reverseString('hello world!') //=> '!dlrow olleh' 47 | ``` 48 | 49 | - #### 6. CHECK PALINDROME 50 | - **NAME**: `isPalindrome` 51 | - **DESCRIPTION**: Write a function that checks if a word is a [palindrome](https://en.wikipedia.org/wiki/Palindrome). 52 | ```js 53 | isPalindrome('level') //=> true 54 | isPalindrome('racecar') //=> true 55 | ``` 56 | 57 | - #### 7. IS MULTIPLE 58 | - **NAME**: `isMultipleOf` 59 | - **DESCRIPTION**: Write a function that checks if a number is multiple of another number. 60 | ```js 61 | isMultipleOf(15, 3) //=> true 62 | isMultipleOf(15, 5) //=> true 63 | ``` 64 | 65 | - #### 8. GET THE LONGEST WORD 66 | - **NAME**: `longestWord` 67 | - **DESCRIPTION**: Write a function that returns the longest word of a sentence. 68 | ```js 69 | longestWord('Hello beautiful people!') //=> 'beautiful' 70 | longestWord('aaaa bbb cc d eeee') //=> 'aaaa' 71 | ``` 72 | 73 | - #### 9. CAPITALIZE 74 | - **NAME**: `capitalize` 75 | - **DESCRIPTION**: Write a function that capitalize each word in a sentence. 76 | ```js 77 | capitalize('hello world') //=> 'Hello World' 78 | ``` 79 | 80 | - #### 10. VOWEL COUNT 81 | - **NAME**: `vowelCount` 82 | - **DESCRIPTION**: Write a function that count vowel in a sentence. 83 | ```js 84 | vowelCount('hello') //=> 2 85 | ``` 86 | 87 | - #### 11. MAX CHAR 88 | - **NAME**: `maxChar` 89 | - **DESCRIPTION**: Get the most used char in a sentence. 90 | ```js 91 | maxChar('hello world') //=> {count: 3, char: 'l'} 92 | ``` 93 | 94 | - #### 12. FIZZ BUZZ 95 | - **NAME**: `fizzBuzz` 96 | - **DESCRIPTION**: Fizz Buzz game, generate number from 0 to 100 and if the number is multiple of 3 print "Fizz", if mutliple of 5 print "Buzz", if is multiple of both print "FizzBuzz" else print the number. 97 | ```js 98 | fizzBuzz(); 99 | 100 | //=> 1 101 | //=> 2 102 | //=> fizz 103 | //=> 4 104 | //=> buzz 105 | //=> fizz 106 | //=> 7 107 | //=> 8 108 | //=> fizz 109 | //=> buzz 110 | ``` 111 | 112 | 113 | - #### 13. SIMPLE ADDING 114 | - **NAME**: `simpleAdding` 115 | - **DESCRIPTION**: Write a function that sums all numbers from 0 to the given number. 116 | ```js 117 | simpleAdding(3) //=> 6 118 | ``` 119 | 120 | - #### 14. ARRAY TO TREE 121 | - **NAME**: `arrayToTree` 122 | - **DESCRIPTION**: Transform an array into a tree like object. 123 | ```js 124 | arrayToTree(['folder', 'subfolder', 'file.txt']) //=> [{name: 'folder', children: [ { name: 'subfolder', children: [ {name: 'file.txt'} ]} ]}] 125 | ``` 126 | 127 | - #### 15. ALPHABETICALLY SORT 128 | - **NAME**: `alphabeticallySort` 129 | - **DESCRIPTION**: Write a function that can be used into an `Array.sort()` for sorting items alphabetically. 130 | ```js 131 | var myArray = ['Italy', 'Canada', 'Germany']; 132 | var mySortedArray = myArray.sort(alphabeticallySort) //=> ['Canada', 'Germany', 'Italy'] 133 | ``` 134 | 135 | - #### 16. FIRST RECURRING CHARACTER 136 | - **NAME**: `firstRecurringChar` 137 | - **DESCRIPTION**: Write a function that returns the furst recurring character in a string. 138 | ```js 139 | firstRecurringChar('abacyb') //=> 'a' 140 | ``` 141 | 142 | - #### 17. OBJECT MERGE 143 | - **NAME**: `objectMerge` 144 | - **DESCRIPTION**: Write a function that returns an object that includes all given objects. 145 | 146 | ```js 147 | /* Example usage */ 148 | const user = [ 149 | { first: 'john' }, 150 | { last: 'doe' } 151 | ]; 152 | 153 | objectMerge({ first: 'john' }, { last: 'doe' }); 154 | /* OR */ 155 | objectMerge(user); 156 | ``` -------------------------------------------------------------------------------- /docs/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | - [ ] This is a problem with a test 2 | - [ ] This is an idea for a new challenge 3 | 4 | 5 | #### Challenge code: 6 | ```js 7 | ``` 8 | 9 | ---- 10 | ### The issue: -------------------------------------------------------------------------------- /docs/assets/js_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawnly/js-challenges/f4fa26d95186e8551f6a1cdffa82daa8ad77d14f/docs/assets/js_logo.png -------------------------------------------------------------------------------- /docs/assets/old_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawnly/js-challenges/f4fa26d95186e8551f6a1cdffa82daa8ad77d14f/docs/assets/old_logo.png -------------------------------------------------------------------------------- /generate-tests.js: -------------------------------------------------------------------------------- 1 | #! /usr/local/bin node 2 | 3 | const fs = require('fs'); 4 | const path = require('path'); 5 | const mkdirp = require('mkdirp'); 6 | 7 | const functions = require('.'); 8 | let requirements = []; 9 | 10 | mkdirp.sync( path.join(__dirname, 'tests') ); 11 | 12 | for (funcname in functions) { 13 | requirements.push(funcname); 14 | var testName = `${funcname.split(/[A-Z]/g)[0]} ${funcname.match(/[A-Z]/g)}${funcname.split(/[A-Z]/g)[1]}`.toUpperCase(); 15 | 16 | var template = `const test = require('ava'); 17 | const {${funcname}} = require('..'); 18 | const solutions = require('../src/solutions') 19 | 20 | test('${testName}', t => { 21 | var argument = 'hello'; 22 | var output = ${funcname}(argument); 23 | 24 | return t.deepEqual(output, solutions.${funcname}(argument)); 25 | })` 26 | 27 | var testPath = path.join(__dirname, 'tests', `_${funcname}.js`); 28 | 29 | if ( !fs.existsSync(testPath) ) { 30 | fs.writeFileSync(testPath, template) 31 | } 32 | } 33 | 34 | requirements = requirements 35 | .sort((a, b) => a.localeCompare(b)) 36 | .map(req => { 37 | return `require('./tests/_${req}');` 38 | }) 39 | 40 | fs.unlinkSync(path.join(__dirname, 'test.js')); 41 | fs.writeFileSync(path.join(__dirname, 'test.js'), requirements.join('\n')); -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "js-challenges", 3 | "version": "0.0.3", 4 | "author": "Federico Vitale (federicovitale.me)", 5 | "main": "src/challenges.js", 6 | "license": "MIT", 7 | "scripts": { 8 | "test": "ava", 9 | "generate": "./generate-tests.js" 10 | }, 11 | "devDependencies": { 12 | "ava": "^0.25.0", 13 | "mkdirp": "^0.5.1" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/challenges.js: -------------------------------------------------------------------------------- 1 | /** 2 | * CHALLENGE 1: ROUND NUMBER 3 | * @name round 4 | * @description Write a function that round a number (`n`) to given decimal places. 5 | * @author Federico Vitale 6 | * 7 | * 8 | * @example Usage: 9 | * round(Math.PI, 2) // => 3.14 10 | * 11 | * 12 | * @param {Number} n The number to be rounded 13 | * @param {Number} places Decimal places 14 | * 15 | * @returns {Number} Rounded number 16 | */ 17 | module.exports.round = function (n, places = 0) {} 18 | 19 | 20 | /** 21 | * CHALLENGE 2: MERGE MULTIPLE ARRAYS 22 | * @name arrayMerge 23 | * @description Write a function that merges multiple given arrays. 24 | * @author Federico Vitale 25 | * 26 | * 27 | * @example Usage: 28 | * ArrayMerge([1, 2], ['a', 'b']) //=> [1, 2, 'a', 'b'] 29 | * 30 | * 31 | * @param {Array} arr Arrays to merge 32 | * 33 | * @returns {Array} Returns the merge of all arrays 34 | */ 35 | module.exports.arrayMerge = function (...arr) {} 36 | 37 | 38 | /** 39 | * CHALLENGE 3: SUM CONTENT OF AN ARRAY 40 | * 41 | * @name arraySum 42 | * @description Write a function to sum the content of an array 43 | * @author Federico Vitale 44 | * 45 | * 46 | * @example Usage: 47 | * arraySum([10, 10, 10]) //=> 30 48 | * 49 | * 50 | * @param {Array} arr Array to sum 51 | * 52 | * @return {Number} The sum of all items in the array 53 | */ 54 | module.exports.arraySum = function (arr) {} 55 | 56 | 57 | /** 58 | * CHALLENGE 4: OBJECT FOREACH 59 | * @name objectForEach 60 | * @description ForEach function that works with Objects. 61 | * @author Federico Vitale 62 | * 63 | * 64 | * @example Usage: 65 | * objectForEach({ a:1, b:2 }, (key, value) => console.log(key, value)) //=> { a:1, b:2 } 66 | * 67 | * 68 | * @param {Object} obj Main Object 69 | * @param {Function} callback Function callback 70 | * 71 | * @returns {Object} The start object 72 | */ 73 | module.exports.objectForEach = function (obj, callback) {} 74 | 75 | 76 | /** 77 | * CHALLENGE 5: REVERSE STRING 78 | * @name reverseString 79 | * @description A function that reverse a string. 80 | * @author Federico Vitale 81 | * 82 | * 83 | * @example Usage: 84 | * reverseString('hello') //=> 'ollah' 85 | * 86 | * 87 | * @param {String} str String to be reversed. 88 | * 89 | * @returns {String} String reversed. 90 | */ 91 | module.exports.reverseString = function (str) {} 92 | 93 | 94 | /** 95 | * CHALLENGE 6: CHECK PALINDROME 96 | * @name isPalindrome 97 | * @description A function that checks if a word is a palindrome. 98 | * @author Federico Vitale 99 | * 100 | * 101 | * @example Usage: 102 | * isPalindrome('racecar') //=> true 103 | * 104 | * 105 | * @param {String} str String to be checked for palindrome. 106 | * 107 | * @returns {Boolean} Return true if is a palindrome. 108 | */ 109 | module.exports.isPalindrome = function (str) {} 110 | 111 | 112 | /** 113 | * CHALLENGE 7: IS MULTIPLE OF 114 | * @name isMultipleOf 115 | * @description A function that checks if a number is multiple of another number. 116 | * @author Federico Vitale 117 | * 118 | * 119 | * @example Usage: 120 | * isMultipleOf(3, 15) //=> true 121 | * 122 | * 123 | * @param {Number} a Number to be checked for multiple of `b` 124 | * @param {Number} b 125 | * 126 | * @returns {Boolean} If `a` is multiple of `b` returns true 127 | */ 128 | module.exports.isMultipleOf = function (a, b) {} 129 | 130 | 131 | /** 132 | * CHALLENGE 8: GET THE LONGEST WORD 133 | * @name longestWord 134 | * @description A function that returns the longest word of a sentence. 135 | * @author Federico Vitale 136 | * 137 | * 138 | * @example Usage: 139 | * longestWord('short loooong l0000ng') //=> 'loooong' 140 | * 141 | * 142 | * @param {String} str The string to be checked 143 | * 144 | * @returns {String} Returns the longest word of `str` 145 | */ 146 | module.exports.longestWord = function (str) {} 147 | 148 | 149 | /** 150 | * CHALLENGE 9: CAPITALIZE 151 | * @name capitalize 152 | * @description A function that capitalize each word in a sentence. 153 | * @author Federico Vitale 154 | * 155 | * 156 | * @example Usage: 157 | * capitalize('hello world') //=> 'Hello World' 158 | * 159 | * 160 | * @param {String} str The string to be capitalized 161 | * 162 | * @returns {String} Returns a capitalized string 163 | */ 164 | module.exports.capitalize = function (str) {} 165 | 166 | 167 | 168 | /** 169 | * CHALLENGE 10: VOWEL COUNT 170 | * @name vowelCount 171 | * @description A function that count vowel in a sentence. 172 | * @author Federico Vitale 173 | * 174 | * 175 | * @example Usage: 176 | * vowelCount('fox') //=> 1 177 | * 178 | * 179 | * @param {String} str The string to be checked 180 | * 181 | * @returns {Number} Returns number of vowels in `str` 182 | */ 183 | module.exports.vowelCount = function (str) {} 184 | 185 | 186 | 187 | /** 188 | * CHALLENGE 11: MAX CHAR 189 | * @name maxChar 190 | * @description Get the most used char in a sentence. 191 | * @author Federico Vitale 192 | * 193 | * 194 | * @example Usage: 195 | * maxChar('hello') //=> l 196 | * 197 | * 198 | * @param {String} str The string to be checked 199 | * 200 | * @returns {Number} Returns character most used in the string. 201 | */ 202 | module.exports.maxChar = function (str) {} 203 | 204 | 205 | /** 206 | * CHALLENGE 12: FIZZ BUZZ 207 | * @name fizzBuzz 208 | * @description Fizz Buzz game, generate number from 0 to `max` and if the number is multiple of `n1` print "Fizz", if the number is multiple of `n2` print "Buzz", if is multiple of both print "FizzBuzz" else print the number. 209 | * @author Federico Vitale 210 | * 211 | * 212 | * @example 213 | * fizzBuzz() //=> [0, 1, 2, Fizz, 4, Buzz ...etc] 214 | * 215 | * 216 | * @param {Number} n1 Fizz number 217 | * @param {Number} n2 Buzz number 218 | * @param {Number} max Length of the array 219 | * 220 | * @returns {Array} Returns an array of numbers 221 | */ 222 | module.exports.fizzBuzz = function ({ 223 | n1 = 3, 224 | n2 = 5, 225 | max = 100 226 | } = {}) {} 227 | 228 | 229 | /** 230 | * CHALLENGE 13: SIMPLE ADDING 231 | * @name simpleAdding 232 | * @description Write a function that sums all numbers from 0 to the given number. 233 | * @author Federico Vitale 234 | * 235 | * 236 | * @example Usage: 237 | * simpleAdding(3) //=> 6 238 | * 239 | * 240 | * @param {Number} num Counter 241 | * 242 | * @returns {Number} Returns sum of all numbers from 0 to `counter` 243 | */ 244 | module.exports.simpleAdding = function (num) {} 245 | 246 | 247 | /** 248 | * CHALLENGE 14: ARRAY TO TREE 249 | * @name arrayToTree 250 | * @description Transform an array into a tree like object. 251 | * @author Nenad Vracar (http://nenadvracar.com) 252 | * 253 | * @see https://stackoverflow.com/questions/48951551/what-is-the-most-efficient-way-to-transform-an-array-of-array-of-string-to-a-tre 254 | * 255 | * @example Usage: 256 | * arrayToTree(['folder', 'subfolder', 'file.txt']) //=> [{name: 'folder', children: [ { name: 'subfolder', children: [ {name: 'file.txt'} ]} ]}] 257 | * 258 | * 259 | * @param {Array} paths Array of the items to convert 260 | * 261 | * @returns {Array} Returns the tree generated from `paths` 262 | */ 263 | module.exports.arrayToTree = function (...paths) {} 264 | 265 | 266 | /** 267 | * CHALLENGE 15: ALPHABETICALLY SORT 268 | * @name alphabeticallySort 269 | * @description Write a function that can be used into an Array.sort() for sorting items alphabetically. 270 | * @author Nachiketha 271 | * 272 | * @see https://stackoverflow.com/questions/6712034/sort-array-by-firstname-alphabetically-in-javascript 273 | * 274 | * @example Usage: 275 | * ['Italy', 'Canada', 'Australia'].sort(alphabeticallySort) //=> ['Australia', 'Canada', 'Italy'] 276 | * 277 | * 278 | * @param {String} a First argument of the `.sort` function 279 | * @param {String} b Second argument of the `.sort` function 280 | * 281 | * @returns {Boolean} 282 | */ 283 | module.exports.alphabeticallySort = function (a, b) {} 284 | 285 | 286 | /** 287 | * CHALLENGE 16: FIRST RECURRING CHARACTER 288 | * @name firstRecurringCharacter 289 | * @description Write a function that returns the first recurring character in a string or null if no recursion. 290 | * @author Federico Vitale 291 | * 292 | * @example Usage: 293 | * firstRecurringChar('federico') // => 'e' 294 | * 295 | * @param {String} str String to analyze 296 | * 297 | * @returns {String} or {Null} 298 | */ 299 | module.exports.firstRecurringChar = function(str) {} 300 | 301 | 302 | /** 303 | * CHALLENGE 17: OBJECT MERGE 304 | * @name objectMerge 305 | * @description Write a function that returns an object that includes all given objects. 306 | * @author Federico Vitale 307 | * 308 | * @example Usage: 309 | * objectMerge({ a: 'b' }, { c: 'd' }) // => { a: 'b', c: 'd' } 310 | * 311 | * @param {Array} objects - An array of objects 312 | * 313 | * @returns {Object} 314 | */ 315 | module.exports.objectMerge = function(...objects) {} 316 | -------------------------------------------------------------------------------- /src/solutions.js: -------------------------------------------------------------------------------- 1 | const typeCheck = require('./typeCheck'); 2 | 3 | /** 4 | * CHALLENGE 1: ROUND NUMBER 5 | * @name round 6 | * @description Write a function that round a number (`n`) to given decimal places. 7 | * @author Federico Vitale 8 | * 9 | * 10 | * @example Usage: 11 | * round(Math.PI, 2) // => 3.14 12 | * 13 | * 14 | * @param {Number} n The number to be rounded 15 | * @param {Number} places Decimal places 16 | * 17 | * @returns {Number} Rounded number 18 | */ 19 | module.exports.round = function (n, places = 0) { 20 | typeCheck({ 21 | param: n, 22 | type: 'number' 23 | }, { 24 | param: places, 25 | type: 'number' 26 | }) 27 | 28 | places = Math.pow(10, places) 29 | 30 | return Math.floor(n * places) / places; 31 | } 32 | 33 | 34 | /** 35 | * CHALLENGE 2: MERGE MULTIPLE ARRAYS 36 | * @name arrayMerge 37 | * @description Write a function that merges multiple given arrays. 38 | * @author Federico Vitale 39 | * 40 | * 41 | * @example Usage: 42 | * ArrayMerge([1, 2], ['a', 'b']) //=> [1, 2, 'a', 'b'] 43 | * 44 | * 45 | * @param {Array} arr Arrays to merge 46 | * 47 | * @returns {Array} Returns the merge of all arrays 48 | */ 49 | module.exports.arrayMerge = function (...arr) { 50 | typeCheck({ 51 | param: arr, 52 | type: 'array' 53 | }) 54 | 55 | return arr.reduce((a, b) => { 56 | typeCheck({ 57 | param: a, 58 | type: 'array' 59 | }, { 60 | param: b, 61 | type: 'array' 62 | }) 63 | 64 | return [...a, ...b] 65 | }); 66 | } 67 | 68 | 69 | /** 70 | * CHALLENGE 3: SUM CONTENT OF AN ARRAY 71 | * 72 | * @name arraySum 73 | * @description Write a function to sum the content of an array 74 | * @author Federico Vitale 75 | * 76 | * 77 | * @example Usage: 78 | * arraySum([10, 10, 10]) //=> 30 79 | * 80 | * 81 | * @param {Array} arr Array to sum 82 | * 83 | * @return {Number} The sum of all items in the array 84 | */ 85 | module.exports.arraySum = function (arr) { 86 | typeCheck({ 87 | param: arr, 88 | type: 'array' 89 | }) 90 | 91 | return arr.reduce((a, b) => { 92 | typeCheck({ 93 | param: a, 94 | type: 'number' 95 | }, { 96 | param: b, 97 | type: 'number' 98 | }) 99 | 100 | return a+b; 101 | }); 102 | } 103 | 104 | 105 | /** 106 | * CHALLENGE 4: OBJECT FOREACH 107 | * @name objectForEach 108 | * @description ForEach function that works with Objects. 109 | * @author Federico Vitale 110 | * 111 | * 112 | * @example Usage: 113 | * objectForEach({ a:1, b:2 }, (key, value) => console.log(key, value)) //=> { a:1, b:2 } 114 | * 115 | * 116 | * @param {Object} obj Main Object 117 | * @param {Function} callback Function callback 118 | * 119 | * @returns {Object} The start object 120 | */ 121 | module.exports.objectForEach = function (obj, callback) { 122 | Object.keys(obj).forEach(key => callback(key, obj[key])); 123 | 124 | return obj; 125 | } 126 | 127 | 128 | /** 129 | * CHALLENGE 5: REVERSE STRING 130 | * @name reverseString 131 | * @description A function that reverse a string. 132 | * @author Federico Vitale 133 | * 134 | * 135 | * @example Usage: 136 | * reverseString('hello') //=> 'ollah' 137 | * 138 | * 139 | * @param {String} str String to be reversed. 140 | * 141 | * @returns {String} String reversed. 142 | */ 143 | module.exports.reverseString = function (str) { 144 | return str.split('').reverse().join('') 145 | } 146 | 147 | 148 | /** 149 | * CHALLENGE 6: CHECK PALINDROME 150 | * @name isPalindrome 151 | * @description A function that checks if a word is a palindrome. 152 | * @author Federico Vitale 153 | * 154 | * 155 | * @example Usage: 156 | * isPalindrome('racecar') //=> true 157 | * 158 | * 159 | * @param {String} str String to be checked for palindrome. 160 | * 161 | * @returns {Boolean} Return true if is a palindrome. 162 | */ 163 | module.exports.isPalindrome = function (str) { 164 | 165 | return str.split('').reverse().join('') === str; 166 | } 167 | 168 | 169 | /** 170 | * CHALLENGE 7: IS MULTIPLE OF 171 | * @name isMultipleOf 172 | * @description A function that checks if a number is multiple of another number. 173 | * @author Federico Vitale 174 | * 175 | * 176 | * @example Usage: 177 | * isMultipleOf(15, 3) //=> true 178 | * 179 | * 180 | * @param {Number} a Number to be checked for multiple of `b` 181 | * @param {Number} b 182 | * 183 | * @returns {Boolean} If `a` is multiple of `b` returns true 184 | */ 185 | module.exports.isMultipleOf = function (a, b) { 186 | 187 | return a % b === 0; 188 | } 189 | 190 | 191 | /** 192 | * CHALLENGE 8: GET THE LONGEST WORD 193 | * @name longestWord 194 | * @description A function that returns the longest word of a sentence. 195 | * @author Federico Vitale 196 | * 197 | * 198 | * @example Usage: 199 | * longestWord('short loooong l0000ng') //=> 'loooong' 200 | * 201 | * 202 | * @param {String} str The string to be checked 203 | * 204 | * @returns {String} Returns the longest word of `str` 205 | */ 206 | module.exports.longestWord = function (str) { 207 | 208 | var words = str.trim().replace(/\W/g, ' ').trim().split(/\s+/); 209 | 210 | words = words.sort((a, b) => { 211 | return b.length - a.length 212 | }) 213 | 214 | return words.shift() 215 | } 216 | 217 | 218 | /** 219 | * CHALLENGE 9: CAPITALIZE 220 | * @name capitalize 221 | * @description A function that capitalize each word in a sentence. 222 | * @author Federico Vitale 223 | * 224 | * 225 | * @example Usage: 226 | * capitalize('hello world') //=> 'Hello World' 227 | * 228 | * 229 | * @param {String} str The string to be capitalized 230 | * 231 | * @returns {String} Returns a capitalized string 232 | */ 233 | module.exports.capitalize = function (str) { 234 | 235 | var words = str.trim().split(/\s+/g) 236 | 237 | return words.map(word => { 238 | return word[0].toUpperCase() + word.substr(1, word.length) 239 | }).join(' '); 240 | } 241 | 242 | 243 | 244 | /** 245 | * CHALLENGE 10: VOWEL COUNT 246 | * @name vowelCount 247 | * @description A function that count vowel in a sentence. 248 | * @author Federico Vitale 249 | * 250 | * 251 | * @example Usage: 252 | * vowelCount('fox') //=> 1 253 | * 254 | * 255 | * @param {String} str The string to be checked 256 | * 257 | * @returns {Number} Returns number of vowels in `str` 258 | */ 259 | module.exports.vowelCount = function (str) { 260 | let isVowel = /[aAeEiIoOuU]/g 261 | 262 | 263 | return str.split('').filter(letter => { 264 | return isVowel.test(letter) 265 | }).length 266 | } 267 | 268 | 269 | 270 | /** 271 | * CHALLENGE 11: MAX CHAR 272 | * @name maxChar 273 | * @description Get the most used char in a sentence. 274 | * @author Federico Vitale 275 | * 276 | * 277 | * @example Usage: 278 | * maxChar('hello') //=> { count: 2, char: 'l' } 279 | * 280 | * 281 | * @param {String} str The string to be checked 282 | * 283 | * @returns {Object} Returns character most used in the string. 284 | */ 285 | module.exports.maxChar = function (str) { 286 | let charMap = {}; 287 | let charCount = 0; 288 | let charMostUsed = ''; 289 | 290 | 291 | 292 | for (var i = 0; i < str.split('').length; i++) { 293 | var letter = str.split('')[i]; 294 | 295 | if (charMap[letter]) { 296 | charMap[letter]++ 297 | } else { 298 | charMap[letter] = 1 299 | } 300 | } 301 | 302 | for (char in charMap) { 303 | if (charMap[char] > charCount) { 304 | charCount = charMap[char] 305 | charMostUsed = char; 306 | } 307 | } 308 | 309 | return { 310 | char: charMostUsed, 311 | count: charCount 312 | }; 313 | } 314 | 315 | 316 | /** 317 | * CHALLENGE 12: FIZZ BUZZ 318 | * @name fizzBuzz 319 | * @description Fizz Buzz game, generate number from 0 to `max` and if the number is multiple of `n1` print "Fizz", if the number is multiple of `n2` print "Buzz", if is multiple of both print "FizzBuzz" else print the number. 320 | * @author Federico Vitale 321 | * 322 | * 323 | * @example 324 | * fizzBuzz() //=> [0, 1, 2, Fizz, 4, Buzz ...etc] 325 | * 326 | * 327 | * @param {Number} n1 Fizz number 328 | * @param {Number} n2 Buzz number 329 | * @param {Number} max Length of the array 330 | * 331 | * @returns {Array} Returns an array of numbers 332 | */ 333 | module.exports.fizzBuzz = function ({ 334 | n1 = 3, 335 | n2 = 5, 336 | max = 100 337 | } = {}) { 338 | var numbers = []; 339 | for (let i = 0; i <= max; i++) { 340 | let char = ''; 341 | 342 | if (i % n1 === 0) { 343 | char += 'Fizz'; 344 | } 345 | 346 | if (i % n2 === 0) { 347 | char += 'Buzz'; 348 | } 349 | 350 | numbers.push(char || i); 351 | } 352 | 353 | return numbers 354 | } 355 | 356 | 357 | /** 358 | * CHALLENGE 13: SIMPLE ADDING 359 | * @name simpleAdding 360 | * @description Write a function that sums all numbers from 0 to the given number. 361 | * @author Federico Vitale 362 | * 363 | * 364 | * @example Usage: 365 | * simpleAdding(3) //=> 6 366 | * 367 | * 368 | * @param {Number} num Counter 369 | * 370 | * @returns {Number} Returns sum of all numbers from 0 to `counter` 371 | */ 372 | module.exports.simpleAdding = function (num) { 373 | var numbers = []; 374 | 375 | 376 | num = Math.abs(num) 377 | 378 | if (num === 1) return 1; 379 | 380 | for (var i = 0; i <= num; i++) { 381 | numbers.push(i) 382 | } 383 | 384 | return numbers.reduce((a, b) => a + b); 385 | } 386 | 387 | 388 | /** 389 | * CHALLENGE 14: ARRAY TO TREE 390 | * @name arrayToTree 391 | * @description Transform an array into a tree like object. 392 | * @author Nenad Vracar (http://nenadvracar.com) 393 | * 394 | * @see https://stackoverflow.com/questions/48951551/what-is-the-most-efficient-way-to-transform-an-array-of-array-of-string-to-a-tre 395 | * 396 | * @example Usage: 397 | * arrayToTree(['folder', 'subfolder', 'file.txt']) //=> [{name: 'folder', children: [ { name: 'subfolder', children: [ {name: 'file.txt'} ]} ]}] 398 | * 399 | * 400 | * @param {Array} paths Array of the items to convert 401 | * 402 | * @returns {Array} Returns the tree generated from `paths` 403 | */ 404 | module.exports.arrayToTree = function (...paths) { 405 | var result = [], 406 | tmp = { 407 | result 408 | } 409 | 410 | paths.forEach(function (path) { 411 | path.reduce(function (r, name, i) { 412 | if (!r[name]) { 413 | var o = { 414 | name 415 | }, 416 | children = [] 417 | 418 | r[name] = { 419 | result: children 420 | } 421 | 422 | if (path[i + 1]) { 423 | o.children = children 424 | } 425 | 426 | r.result.push(o) 427 | } 428 | return r[name] 429 | }, tmp) 430 | }) 431 | 432 | return result; 433 | } 434 | 435 | 436 | /** 437 | * CHALLENGE 14: ARRAY TO TREE 438 | * @name alphabeticallySort 439 | * @description Write a function that can be used into an Array.sort() for sorting items alphabetically. 440 | * @author Nachiketha 441 | * 442 | * @see https://stackoverflow.com/questions/6712034/sort-array-by-firstname-alphabetically-in-javascript 443 | * 444 | * @example Usage: 445 | * ['Italy', 'Canada', 'Australia'].sort(alphabeticallySort) //=> ['Australia', 'Canada', 'Italy'] 446 | * 447 | * 448 | * @param {String} a First argument of the `.sort` function 449 | * @param {String} b Second argument of the `.sort` function 450 | * 451 | * @returns {Boolean} 452 | */ 453 | module.exports.alphabeticallySort = function (a, b) { 454 | return a.localeCompare(b) 455 | } 456 | 457 | 458 | /** 459 | * CHALLENGE 16: FIRST RECURRING CHARACTER 460 | * @name firstRecurringCharacter 461 | * @description Write a function that returns the first recurring character in a string or null if no recursion. 462 | * @author Federico Vitale 463 | * 464 | * @example Usage: 465 | * firstRecurringChar('federico') // => 'e' 466 | * 467 | * @param {String} str String to analyze 468 | * 469 | * @returns {String} or {Null} 470 | */ 471 | module.exports.firstRecurringChar = function(str) { 472 | typeCheck({ param: str, type: 'string' }) 473 | var charCount = {}; 474 | 475 | // Let's removem all spaces 476 | str = str.replace(/\s+/g, ''); 477 | 478 | for (let i in str) { 479 | var char = str[i]; 480 | 481 | if ( char in charCount ) return 482 | charCount[char] = 1; 483 | } 484 | 485 | return null; 486 | } 487 | 488 | 489 | /** 490 | * CHALLENGE 17: OBJECT MERGE 491 | * @name objectMerge 492 | * @description Write a function that returns an object that includes all given objects. 493 | * @author Federico Vitale 494 | * 495 | * @example Usage: 496 | * objectMerge({ a: 'b' }, { c: 'd' }) // => { a: 'b', c: 'd' } 497 | * 498 | * @param {Array} objects - An array of objects 499 | * 500 | * @returns {Object} 501 | */ 502 | module.exports.objectMerge = function(...objects) { 503 | if ( Array.isArray(objects[0]) ) { 504 | objects = objects[0] 505 | } 506 | 507 | return objects.reduce((a, b) => { 508 | typeCheck({ 509 | param: a, 510 | type: 'object' 511 | }, { 512 | param: b, 513 | type: 'object' 514 | }) 515 | 516 | return Object.assign(a, b); 517 | }) 518 | } 519 | -------------------------------------------------------------------------------- /src/typeCheck.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @name typeCheck 3 | * @param {Array} args Arguments 4 | * 5 | * @throws SyntaxError 6 | * 7 | * @return null 8 | */ 9 | module.exports = function (...args) { 10 | let defaultOptions = { 11 | throwError: true 12 | }; 13 | 14 | if (Array.isArray(args[0])) { 15 | defaultOptions = Object.assign(defaultOptions, args[1]); 16 | args = args[0]; 17 | } 18 | 19 | return args.filter(({ 20 | param, 21 | type 22 | }) => { 23 | var expected = type; 24 | var varType = Array.isArray(param) ? 'array' : typeof param; 25 | 26 | if (/\|/g.test(expected)) { 27 | expected = expected.split('|'); 28 | } 29 | 30 | if (Array.isArray(expected)) { 31 | if (expected.indexOf(varType) < 0) { 32 | if (defaultOptions.throwError === true) { 33 | throw new SyntaxError(`Expected ${expected.join( expected.length > 1 ? ' or ' : '')} saw ${varType}`); 34 | } 35 | 36 | return false; 37 | } 38 | 39 | return true; 40 | } else { 41 | if (expected !== varType) { 42 | if (defaultOptions.throwError === true) { 43 | throw new SyntaxError(`Expected ${expected} saw ${varType}`) 44 | } 45 | 46 | return false; 47 | } 48 | 49 | return true; 50 | } 51 | }).length > 0 52 | } -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- 1 | require('./tests/_round'); 2 | require('./tests/_maxChar'); 3 | require('./tests/_arraySum'); 4 | require('./tests/_fizzBuzz'); 5 | require('./tests/_capitalize'); 6 | require('./tests/_objectMerge') 7 | require('./tests/_vowelCount'); 8 | require('./tests/_arrayMerge'); 9 | require('./tests/_arrayToTree'); 10 | require('./tests/_longestWord'); 11 | require('./tests/_isPalindrome'); 12 | require('./tests/_simpleAdding'); 13 | require('./tests/_isMultipleOf'); 14 | require('./tests/_objectForEach'); 15 | require('./tests/_reverseString'); 16 | require('./tests/_firstRecurringChar'); 17 | require('./tests/_alphabeticallySort'); -------------------------------------------------------------------------------- /tests/_alphabeticallySort.js: -------------------------------------------------------------------------------- 1 | const test = require('ava'); 2 | const {alphabeticallySort} = require('..'); 3 | const solutions = require('../src/solutions') 4 | 5 | test('ALPHABETICALLY SORT', t => { 6 | var argument = ['Canada','Italy', 'Australia']; 7 | var output = argument.sort(alphabeticallySort); 8 | 9 | return t.deepEqual(output, argument.sort(solutions.alphabeticallySort)); 10 | }) -------------------------------------------------------------------------------- /tests/_arrayMerge.js: -------------------------------------------------------------------------------- 1 | const test = require('ava'); 2 | const {arrayMerge} = require('..'); 3 | const solutions = require('../src/solutions') 4 | 5 | test('ARRAY MERGE', t => { 6 | var argument = [[1, 2], [3, 4]]; 7 | var output = arrayMerge.apply(this, argument); 8 | 9 | return t.deepEqual(output, solutions.arrayMerge.apply(this, argument)); 10 | }) -------------------------------------------------------------------------------- /tests/_arraySum.js: -------------------------------------------------------------------------------- 1 | const test = require('ava'); 2 | const {arraySum} = require('..'); 3 | const solutions = require('../src/solutions') 4 | 5 | test('ARRAY SUM', t => { 6 | var argument = [1, 2, 3]; 7 | var output = arraySum(argument); 8 | 9 | return t.deepEqual(output, solutions.arraySum(argument)); 10 | }) -------------------------------------------------------------------------------- /tests/_arrayToTree.js: -------------------------------------------------------------------------------- 1 | const test = require('ava'); 2 | const {arrayToTree} = require('..'); 3 | const solutions = require('../src/solutions') 4 | 5 | test('ARRAY TO TREE', t => { 6 | var argument = [['folder', 'subfolder', 'file.txt']]; 7 | var output = arrayToTree.apply(this, argument); 8 | 9 | return t.deepEqual(output, solutions.arrayToTree.apply(this, argument)); 10 | }) 11 | -------------------------------------------------------------------------------- /tests/_capitalize.js: -------------------------------------------------------------------------------- 1 | const test = require('ava'); 2 | const {capitalize} = require('..'); 3 | const solutions = require('../src/solutions') 4 | 5 | test('CAPITALIZE', t => { 6 | var argument = 'hello'; 7 | var output = capitalize(argument); 8 | 9 | return t.deepEqual(output, solutions.capitalize(argument)); 10 | }) -------------------------------------------------------------------------------- /tests/_firstRecurringChar.js: -------------------------------------------------------------------------------- 1 | const test = require('ava'); 2 | const {firstRecurringChar} = require('..'); 3 | const solutions = require('../src/solutions') 4 | 5 | test('FIRST RECURRING', t => { 6 | var argument = 'level'; 7 | var output = firstRecurringChar(argument); 8 | 9 | return t.deepEqual(output, solutions.firstRecurringChar(argument)); 10 | }) 11 | -------------------------------------------------------------------------------- /tests/_fizzBuzz.js: -------------------------------------------------------------------------------- 1 | const test = require('ava'); 2 | const {fizzBuzz} = require('..'); 3 | const solutions = require('../src/solutions') 4 | 5 | test('FIZZ BUZZ', t => { 6 | var arguments = {n1: 3, n2: 5, max: 15}; 7 | var expectedResult = solutions.fizzBuzz(arguments); 8 | 9 | var output = fizzBuzz(arguments); 10 | 11 | return t.deepEqual(output, expectedResult); 12 | }); -------------------------------------------------------------------------------- /tests/_isMultipleOf.js: -------------------------------------------------------------------------------- 1 | const test = require('ava'); 2 | const {isMultipleOf} = require('..'); 3 | const solutions = require('../src/solutions') 4 | 5 | test('IS MULTIPLE', t => { 6 | var argument = [2, 2]; 7 | var output = isMultipleOf(argument); 8 | 9 | return t.deepEqual(output, solutions.isMultipleOf(argument)); 10 | }) -------------------------------------------------------------------------------- /tests/_isPalindrome.js: -------------------------------------------------------------------------------- 1 | const test = require('ava'); 2 | const {isPalindrome} = require('..'); 3 | const solutions = require('../src/solutions') 4 | 5 | test('IS PALINDROME', t => { 6 | var argument = 'racecar'; 7 | var output = isPalindrome(argument); 8 | 9 | return t.deepEqual(output, solutions.isPalindrome(argument)); 10 | }) -------------------------------------------------------------------------------- /tests/_longestWord.js: -------------------------------------------------------------------------------- 1 | const test = require('ava'); 2 | const {longestWord} = require('..'); 3 | const solutions = require('../src/solutions') 4 | 5 | test('LONGEST WORD', t => { 6 | var argument = 'Hi! How are you?'; 7 | var output = longestWord(argument); 8 | 9 | return t.deepEqual(output, solutions.longestWord(argument)); 10 | }) -------------------------------------------------------------------------------- /tests/_maxChar.js: -------------------------------------------------------------------------------- 1 | const test = require('ava'); 2 | const {maxChar} = require('..'); 3 | const solutions = require('../src/solutions') 4 | 5 | test('MAX CHAR', t => { 6 | var argument = 'hello'; 7 | var output = maxChar(argument); 8 | 9 | return t.deepEqual(output, solutions.maxChar(argument)); 10 | }) -------------------------------------------------------------------------------- /tests/_objectForEach.js: -------------------------------------------------------------------------------- 1 | const test = require('ava'); 2 | const {objectForEach} = require('..'); 3 | const solutions = require('../src/solutions') 4 | 5 | test('OBJECT FOR EACH', t => { 6 | var argument = {a: 1, b: 2}; 7 | var callback = () =>{}; 8 | var output = objectForEach(argument, callback); 9 | 10 | return t.deepEqual(output, solutions.objectForEach(argument, callback)); 11 | }) -------------------------------------------------------------------------------- /tests/_objectMerge.js: -------------------------------------------------------------------------------- 1 | const test = require('ava'); 2 | const { objectMerge } = require('..'); 3 | 4 | const solutions = require('../src/solutions') 5 | 6 | test('OBJECT MERGE', t => { 7 | var arguments = [{a: 1, b: 2}, { c: 3, d: 4}]; 8 | 9 | return t.deepEqual(objectMerge(arguments[0], arguments[1]), solutions.objectMerge(arguments[0], arguments[1])); 10 | }) -------------------------------------------------------------------------------- /tests/_reverseString.js: -------------------------------------------------------------------------------- 1 | const test = require('ava'); 2 | const {reverseString} = require('..'); 3 | const solutions = require('../src/solutions') 4 | 5 | test('REVERSE STRING', t => { 6 | var argument = 'hello'; 7 | var output = reverseString(argument); 8 | 9 | return t.deepEqual(output, solutions.reverseString(argument)); 10 | }) -------------------------------------------------------------------------------- /tests/_round.js: -------------------------------------------------------------------------------- 1 | const test = require('ava'); 2 | const {round} = require('..'); 3 | const solutions = require('../src/solutions') 4 | 5 | test('ROUND', t => { 6 | var argument = Math.PI; 7 | var output = round(argument); 8 | 9 | return t.deepEqual(output, solutions.round(argument)); 10 | }) 11 | -------------------------------------------------------------------------------- /tests/_simpleAdding.js: -------------------------------------------------------------------------------- 1 | const test = require('ava'); 2 | const {simpleAdding} = require('..'); 3 | const solutions = require('../src/solutions') 4 | 5 | test('SIMPLE ADDING', t => { 6 | var argument = 3; 7 | var output = simpleAdding(argument); 8 | 9 | return t.deepEqual(output, solutions.simpleAdding(argument)); 10 | }) -------------------------------------------------------------------------------- /tests/_vowelCount.js: -------------------------------------------------------------------------------- 1 | const test = require('ava'); 2 | const {vowelCount} = require('..'); 3 | const solutions = require('../src/solutions') 4 | 5 | test('VOWEL COUNT', t => { 6 | var argument = 'hello'; 7 | var output = vowelCount(argument); 8 | 9 | return t.deepEqual(output, solutions.vowelCount(argument)); 10 | }) -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@ava/babel-plugin-throws-helper@^2.0.0": 6 | version "2.0.0" 7 | resolved "https://registry.yarnpkg.com/@ava/babel-plugin-throws-helper/-/babel-plugin-throws-helper-2.0.0.tgz#2fc1fe3c211a71071a4eca7b8f7af5842cd1ae7c" 8 | 9 | "@ava/babel-preset-stage-4@^1.1.0": 10 | version "1.1.0" 11 | resolved "https://registry.yarnpkg.com/@ava/babel-preset-stage-4/-/babel-preset-stage-4-1.1.0.tgz#ae60be881a0babf7d35f52aba770d1f6194f76bd" 12 | dependencies: 13 | babel-plugin-check-es2015-constants "^6.8.0" 14 | babel-plugin-syntax-trailing-function-commas "^6.20.0" 15 | babel-plugin-transform-async-to-generator "^6.16.0" 16 | babel-plugin-transform-es2015-destructuring "^6.19.0" 17 | babel-plugin-transform-es2015-function-name "^6.9.0" 18 | babel-plugin-transform-es2015-modules-commonjs "^6.18.0" 19 | babel-plugin-transform-es2015-parameters "^6.21.0" 20 | babel-plugin-transform-es2015-spread "^6.8.0" 21 | babel-plugin-transform-es2015-sticky-regex "^6.8.0" 22 | babel-plugin-transform-es2015-unicode-regex "^6.11.0" 23 | babel-plugin-transform-exponentiation-operator "^6.8.0" 24 | package-hash "^1.2.0" 25 | 26 | "@ava/babel-preset-transform-test-files@^3.0.0": 27 | version "3.0.0" 28 | resolved "https://registry.yarnpkg.com/@ava/babel-preset-transform-test-files/-/babel-preset-transform-test-files-3.0.0.tgz#cded1196a8d8d9381a509240ab92e91a5ec069f7" 29 | dependencies: 30 | "@ava/babel-plugin-throws-helper" "^2.0.0" 31 | babel-plugin-espower "^2.3.2" 32 | 33 | "@ava/write-file-atomic@^2.2.0": 34 | version "2.2.0" 35 | resolved "https://registry.yarnpkg.com/@ava/write-file-atomic/-/write-file-atomic-2.2.0.tgz#d625046f3495f1f5e372135f473909684b429247" 36 | dependencies: 37 | graceful-fs "^4.1.11" 38 | imurmurhash "^0.1.4" 39 | slide "^1.1.5" 40 | 41 | "@concordance/react@^1.0.0": 42 | version "1.0.0" 43 | resolved "https://registry.yarnpkg.com/@concordance/react/-/react-1.0.0.tgz#fcf3cad020e5121bfd1c61d05bc3516aac25f734" 44 | dependencies: 45 | arrify "^1.0.1" 46 | 47 | "@ladjs/time-require@^0.1.4": 48 | version "0.1.4" 49 | resolved "https://registry.yarnpkg.com/@ladjs/time-require/-/time-require-0.1.4.tgz#5c615d75fd647ddd5de9cf6922649558856b21a1" 50 | dependencies: 51 | chalk "^0.4.0" 52 | date-time "^0.1.1" 53 | pretty-ms "^0.2.1" 54 | text-table "^0.2.0" 55 | 56 | abbrev@1: 57 | version "1.1.1" 58 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 59 | 60 | ajv@^4.9.1: 61 | version "4.11.8" 62 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 63 | dependencies: 64 | co "^4.6.0" 65 | json-stable-stringify "^1.0.1" 66 | 67 | ansi-align@^2.0.0: 68 | version "2.0.0" 69 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" 70 | dependencies: 71 | string-width "^2.0.0" 72 | 73 | ansi-escapes@^3.0.0: 74 | version "3.0.0" 75 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92" 76 | 77 | ansi-regex@^2.0.0: 78 | version "2.1.1" 79 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 80 | 81 | ansi-regex@^3.0.0: 82 | version "3.0.0" 83 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 84 | 85 | ansi-styles@^2.2.1: 86 | version "2.2.1" 87 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 88 | 89 | ansi-styles@^3.1.0, ansi-styles@^3.2.0: 90 | version "3.2.0" 91 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 92 | dependencies: 93 | color-convert "^1.9.0" 94 | 95 | ansi-styles@~1.0.0: 96 | version "1.0.0" 97 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-1.0.0.tgz#cb102df1c56f5123eab8b67cd7b98027a0279178" 98 | 99 | anymatch@^1.3.0: 100 | version "1.3.2" 101 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 102 | dependencies: 103 | micromatch "^2.1.5" 104 | normalize-path "^2.0.0" 105 | 106 | aproba@^1.0.3: 107 | version "1.2.0" 108 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 109 | 110 | are-we-there-yet@~1.1.2: 111 | version "1.1.4" 112 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 113 | dependencies: 114 | delegates "^1.0.0" 115 | readable-stream "^2.0.6" 116 | 117 | argparse@^1.0.7: 118 | version "1.0.10" 119 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 120 | dependencies: 121 | sprintf-js "~1.0.2" 122 | 123 | arr-diff@^2.0.0: 124 | version "2.0.0" 125 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 126 | dependencies: 127 | arr-flatten "^1.0.1" 128 | 129 | arr-exclude@^1.0.0: 130 | version "1.0.0" 131 | resolved "https://registry.yarnpkg.com/arr-exclude/-/arr-exclude-1.0.0.tgz#dfc7c2e552a270723ccda04cf3128c8cbfe5c631" 132 | 133 | arr-flatten@^1.0.1: 134 | version "1.1.0" 135 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 136 | 137 | array-differ@^1.0.0: 138 | version "1.0.0" 139 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" 140 | 141 | array-find-index@^1.0.1: 142 | version "1.0.2" 143 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 144 | 145 | array-union@^1.0.1: 146 | version "1.0.2" 147 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 148 | dependencies: 149 | array-uniq "^1.0.1" 150 | 151 | array-uniq@^1.0.1, array-uniq@^1.0.2: 152 | version "1.0.3" 153 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 154 | 155 | array-unique@^0.2.1: 156 | version "0.2.1" 157 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 158 | 159 | arrify@^1.0.0, arrify@^1.0.1: 160 | version "1.0.1" 161 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 162 | 163 | asn1@~0.2.3: 164 | version "0.2.3" 165 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 166 | 167 | assert-plus@1.0.0, assert-plus@^1.0.0: 168 | version "1.0.0" 169 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 170 | 171 | assert-plus@^0.2.0: 172 | version "0.2.0" 173 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 174 | 175 | async-each@^1.0.0: 176 | version "1.0.1" 177 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 178 | 179 | asynckit@^0.4.0: 180 | version "0.4.0" 181 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 182 | 183 | auto-bind@^1.1.0: 184 | version "1.2.0" 185 | resolved "https://registry.yarnpkg.com/auto-bind/-/auto-bind-1.2.0.tgz#8b7e318aad53d43ba8a8ecaf0066d85d5f798cd6" 186 | 187 | ava-init@^0.2.0: 188 | version "0.2.1" 189 | resolved "https://registry.yarnpkg.com/ava-init/-/ava-init-0.2.1.tgz#75ac4c8553326290d2866e63b62fa7035684bd58" 190 | dependencies: 191 | arr-exclude "^1.0.0" 192 | execa "^0.7.0" 193 | has-yarn "^1.0.0" 194 | read-pkg-up "^2.0.0" 195 | write-pkg "^3.1.0" 196 | 197 | ava@^0.25.0: 198 | version "0.25.0" 199 | resolved "https://registry.yarnpkg.com/ava/-/ava-0.25.0.tgz#8ac87780514f96a6fd42e1306eaa0752ce3a407f" 200 | dependencies: 201 | "@ava/babel-preset-stage-4" "^1.1.0" 202 | "@ava/babel-preset-transform-test-files" "^3.0.0" 203 | "@ava/write-file-atomic" "^2.2.0" 204 | "@concordance/react" "^1.0.0" 205 | "@ladjs/time-require" "^0.1.4" 206 | ansi-escapes "^3.0.0" 207 | ansi-styles "^3.1.0" 208 | arr-flatten "^1.0.1" 209 | array-union "^1.0.1" 210 | array-uniq "^1.0.2" 211 | arrify "^1.0.0" 212 | auto-bind "^1.1.0" 213 | ava-init "^0.2.0" 214 | babel-core "^6.17.0" 215 | babel-generator "^6.26.0" 216 | babel-plugin-syntax-object-rest-spread "^6.13.0" 217 | bluebird "^3.0.0" 218 | caching-transform "^1.0.0" 219 | chalk "^2.0.1" 220 | chokidar "^1.4.2" 221 | clean-stack "^1.1.1" 222 | clean-yaml-object "^0.1.0" 223 | cli-cursor "^2.1.0" 224 | cli-spinners "^1.0.0" 225 | cli-truncate "^1.0.0" 226 | co-with-promise "^4.6.0" 227 | code-excerpt "^2.1.1" 228 | common-path-prefix "^1.0.0" 229 | concordance "^3.0.0" 230 | convert-source-map "^1.5.1" 231 | core-assert "^0.2.0" 232 | currently-unhandled "^0.4.1" 233 | debug "^3.0.1" 234 | dot-prop "^4.1.0" 235 | empower-core "^0.6.1" 236 | equal-length "^1.0.0" 237 | figures "^2.0.0" 238 | find-cache-dir "^1.0.0" 239 | fn-name "^2.0.0" 240 | get-port "^3.0.0" 241 | globby "^6.0.0" 242 | has-flag "^2.0.0" 243 | hullabaloo-config-manager "^1.1.0" 244 | ignore-by-default "^1.0.0" 245 | import-local "^0.1.1" 246 | indent-string "^3.0.0" 247 | is-ci "^1.0.7" 248 | is-generator-fn "^1.0.0" 249 | is-obj "^1.0.0" 250 | is-observable "^1.0.0" 251 | is-promise "^2.1.0" 252 | last-line-stream "^1.0.0" 253 | lodash.clonedeepwith "^4.5.0" 254 | lodash.debounce "^4.0.3" 255 | lodash.difference "^4.3.0" 256 | lodash.flatten "^4.2.0" 257 | loud-rejection "^1.2.0" 258 | make-dir "^1.0.0" 259 | matcher "^1.0.0" 260 | md5-hex "^2.0.0" 261 | meow "^3.7.0" 262 | ms "^2.0.0" 263 | multimatch "^2.1.0" 264 | observable-to-promise "^0.5.0" 265 | option-chain "^1.0.0" 266 | package-hash "^2.0.0" 267 | pkg-conf "^2.0.0" 268 | plur "^2.0.0" 269 | pretty-ms "^3.0.0" 270 | require-precompiled "^0.1.0" 271 | resolve-cwd "^2.0.0" 272 | safe-buffer "^5.1.1" 273 | semver "^5.4.1" 274 | slash "^1.0.0" 275 | source-map-support "^0.5.0" 276 | stack-utils "^1.0.1" 277 | strip-ansi "^4.0.0" 278 | strip-bom-buf "^1.0.0" 279 | supertap "^1.0.0" 280 | supports-color "^5.0.0" 281 | trim-off-newlines "^1.0.1" 282 | unique-temp-dir "^1.0.0" 283 | update-notifier "^2.3.0" 284 | 285 | aws-sign2@~0.6.0: 286 | version "0.6.0" 287 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 288 | 289 | aws4@^1.2.1: 290 | version "1.6.0" 291 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 292 | 293 | babel-code-frame@^6.26.0: 294 | version "6.26.0" 295 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 296 | dependencies: 297 | chalk "^1.1.3" 298 | esutils "^2.0.2" 299 | js-tokens "^3.0.2" 300 | 301 | babel-core@^6.17.0, babel-core@^6.26.0: 302 | version "6.26.0" 303 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 304 | dependencies: 305 | babel-code-frame "^6.26.0" 306 | babel-generator "^6.26.0" 307 | babel-helpers "^6.24.1" 308 | babel-messages "^6.23.0" 309 | babel-register "^6.26.0" 310 | babel-runtime "^6.26.0" 311 | babel-template "^6.26.0" 312 | babel-traverse "^6.26.0" 313 | babel-types "^6.26.0" 314 | babylon "^6.18.0" 315 | convert-source-map "^1.5.0" 316 | debug "^2.6.8" 317 | json5 "^0.5.1" 318 | lodash "^4.17.4" 319 | minimatch "^3.0.4" 320 | path-is-absolute "^1.0.1" 321 | private "^0.1.7" 322 | slash "^1.0.0" 323 | source-map "^0.5.6" 324 | 325 | babel-generator@^6.1.0, babel-generator@^6.26.0: 326 | version "6.26.1" 327 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" 328 | dependencies: 329 | babel-messages "^6.23.0" 330 | babel-runtime "^6.26.0" 331 | babel-types "^6.26.0" 332 | detect-indent "^4.0.0" 333 | jsesc "^1.3.0" 334 | lodash "^4.17.4" 335 | source-map "^0.5.7" 336 | trim-right "^1.0.1" 337 | 338 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 339 | version "6.24.1" 340 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 341 | dependencies: 342 | babel-helper-explode-assignable-expression "^6.24.1" 343 | babel-runtime "^6.22.0" 344 | babel-types "^6.24.1" 345 | 346 | babel-helper-call-delegate@^6.24.1: 347 | version "6.24.1" 348 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 349 | dependencies: 350 | babel-helper-hoist-variables "^6.24.1" 351 | babel-runtime "^6.22.0" 352 | babel-traverse "^6.24.1" 353 | babel-types "^6.24.1" 354 | 355 | babel-helper-explode-assignable-expression@^6.24.1: 356 | version "6.24.1" 357 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 358 | dependencies: 359 | babel-runtime "^6.22.0" 360 | babel-traverse "^6.24.1" 361 | babel-types "^6.24.1" 362 | 363 | babel-helper-function-name@^6.24.1: 364 | version "6.24.1" 365 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 366 | dependencies: 367 | babel-helper-get-function-arity "^6.24.1" 368 | babel-runtime "^6.22.0" 369 | babel-template "^6.24.1" 370 | babel-traverse "^6.24.1" 371 | babel-types "^6.24.1" 372 | 373 | babel-helper-get-function-arity@^6.24.1: 374 | version "6.24.1" 375 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 376 | dependencies: 377 | babel-runtime "^6.22.0" 378 | babel-types "^6.24.1" 379 | 380 | babel-helper-hoist-variables@^6.24.1: 381 | version "6.24.1" 382 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 383 | dependencies: 384 | babel-runtime "^6.22.0" 385 | babel-types "^6.24.1" 386 | 387 | babel-helper-regex@^6.24.1: 388 | version "6.26.0" 389 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 390 | dependencies: 391 | babel-runtime "^6.26.0" 392 | babel-types "^6.26.0" 393 | lodash "^4.17.4" 394 | 395 | babel-helper-remap-async-to-generator@^6.24.1: 396 | version "6.24.1" 397 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 398 | dependencies: 399 | babel-helper-function-name "^6.24.1" 400 | babel-runtime "^6.22.0" 401 | babel-template "^6.24.1" 402 | babel-traverse "^6.24.1" 403 | babel-types "^6.24.1" 404 | 405 | babel-helpers@^6.24.1: 406 | version "6.24.1" 407 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 408 | dependencies: 409 | babel-runtime "^6.22.0" 410 | babel-template "^6.24.1" 411 | 412 | babel-messages@^6.23.0: 413 | version "6.23.0" 414 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 415 | dependencies: 416 | babel-runtime "^6.22.0" 417 | 418 | babel-plugin-check-es2015-constants@^6.8.0: 419 | version "6.22.0" 420 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 421 | dependencies: 422 | babel-runtime "^6.22.0" 423 | 424 | babel-plugin-espower@^2.3.2: 425 | version "2.4.0" 426 | resolved "https://registry.yarnpkg.com/babel-plugin-espower/-/babel-plugin-espower-2.4.0.tgz#9f92c080e9adfe73f69baed7ab3e24f649009373" 427 | dependencies: 428 | babel-generator "^6.1.0" 429 | babylon "^6.1.0" 430 | call-matcher "^1.0.0" 431 | core-js "^2.0.0" 432 | espower-location-detector "^1.0.0" 433 | espurify "^1.6.0" 434 | estraverse "^4.1.1" 435 | 436 | babel-plugin-syntax-async-functions@^6.8.0: 437 | version "6.13.0" 438 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 439 | 440 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 441 | version "6.13.0" 442 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 443 | 444 | babel-plugin-syntax-object-rest-spread@^6.13.0: 445 | version "6.13.0" 446 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 447 | 448 | babel-plugin-syntax-trailing-function-commas@^6.20.0: 449 | version "6.22.0" 450 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 451 | 452 | babel-plugin-transform-async-to-generator@^6.16.0: 453 | version "6.24.1" 454 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 455 | dependencies: 456 | babel-helper-remap-async-to-generator "^6.24.1" 457 | babel-plugin-syntax-async-functions "^6.8.0" 458 | babel-runtime "^6.22.0" 459 | 460 | babel-plugin-transform-es2015-destructuring@^6.19.0: 461 | version "6.23.0" 462 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 463 | dependencies: 464 | babel-runtime "^6.22.0" 465 | 466 | babel-plugin-transform-es2015-function-name@^6.9.0: 467 | version "6.24.1" 468 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 469 | dependencies: 470 | babel-helper-function-name "^6.24.1" 471 | babel-runtime "^6.22.0" 472 | babel-types "^6.24.1" 473 | 474 | babel-plugin-transform-es2015-modules-commonjs@^6.18.0: 475 | version "6.26.0" 476 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" 477 | dependencies: 478 | babel-plugin-transform-strict-mode "^6.24.1" 479 | babel-runtime "^6.26.0" 480 | babel-template "^6.26.0" 481 | babel-types "^6.26.0" 482 | 483 | babel-plugin-transform-es2015-parameters@^6.21.0: 484 | version "6.24.1" 485 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 486 | dependencies: 487 | babel-helper-call-delegate "^6.24.1" 488 | babel-helper-get-function-arity "^6.24.1" 489 | babel-runtime "^6.22.0" 490 | babel-template "^6.24.1" 491 | babel-traverse "^6.24.1" 492 | babel-types "^6.24.1" 493 | 494 | babel-plugin-transform-es2015-spread@^6.8.0: 495 | version "6.22.0" 496 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 497 | dependencies: 498 | babel-runtime "^6.22.0" 499 | 500 | babel-plugin-transform-es2015-sticky-regex@^6.8.0: 501 | version "6.24.1" 502 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 503 | dependencies: 504 | babel-helper-regex "^6.24.1" 505 | babel-runtime "^6.22.0" 506 | babel-types "^6.24.1" 507 | 508 | babel-plugin-transform-es2015-unicode-regex@^6.11.0: 509 | version "6.24.1" 510 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 511 | dependencies: 512 | babel-helper-regex "^6.24.1" 513 | babel-runtime "^6.22.0" 514 | regexpu-core "^2.0.0" 515 | 516 | babel-plugin-transform-exponentiation-operator@^6.8.0: 517 | version "6.24.1" 518 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 519 | dependencies: 520 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 521 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 522 | babel-runtime "^6.22.0" 523 | 524 | babel-plugin-transform-strict-mode@^6.24.1: 525 | version "6.24.1" 526 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 527 | dependencies: 528 | babel-runtime "^6.22.0" 529 | babel-types "^6.24.1" 530 | 531 | babel-register@^6.26.0: 532 | version "6.26.0" 533 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 534 | dependencies: 535 | babel-core "^6.26.0" 536 | babel-runtime "^6.26.0" 537 | core-js "^2.5.0" 538 | home-or-tmp "^2.0.0" 539 | lodash "^4.17.4" 540 | mkdirp "^0.5.1" 541 | source-map-support "^0.4.15" 542 | 543 | babel-runtime@^6.22.0, babel-runtime@^6.26.0: 544 | version "6.26.0" 545 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 546 | dependencies: 547 | core-js "^2.4.0" 548 | regenerator-runtime "^0.11.0" 549 | 550 | babel-template@^6.24.1, babel-template@^6.26.0: 551 | version "6.26.0" 552 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 553 | dependencies: 554 | babel-runtime "^6.26.0" 555 | babel-traverse "^6.26.0" 556 | babel-types "^6.26.0" 557 | babylon "^6.18.0" 558 | lodash "^4.17.4" 559 | 560 | babel-traverse@^6.24.1, babel-traverse@^6.26.0: 561 | version "6.26.0" 562 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 563 | dependencies: 564 | babel-code-frame "^6.26.0" 565 | babel-messages "^6.23.0" 566 | babel-runtime "^6.26.0" 567 | babel-types "^6.26.0" 568 | babylon "^6.18.0" 569 | debug "^2.6.8" 570 | globals "^9.18.0" 571 | invariant "^2.2.2" 572 | lodash "^4.17.4" 573 | 574 | babel-types@^6.24.1, babel-types@^6.26.0: 575 | version "6.26.0" 576 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 577 | dependencies: 578 | babel-runtime "^6.26.0" 579 | esutils "^2.0.2" 580 | lodash "^4.17.4" 581 | to-fast-properties "^1.0.3" 582 | 583 | babylon@^6.1.0, babylon@^6.18.0: 584 | version "6.18.0" 585 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 586 | 587 | balanced-match@^1.0.0: 588 | version "1.0.0" 589 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 590 | 591 | bcrypt-pbkdf@^1.0.0: 592 | version "1.0.1" 593 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 594 | dependencies: 595 | tweetnacl "^0.14.3" 596 | 597 | binary-extensions@^1.0.0: 598 | version "1.11.0" 599 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 600 | 601 | block-stream@*: 602 | version "0.0.9" 603 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 604 | dependencies: 605 | inherits "~2.0.0" 606 | 607 | bluebird@^3.0.0: 608 | version "3.5.1" 609 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.1.tgz#d9551f9de98f1fcda1e683d17ee91a0602ee2eb9" 610 | 611 | boom@2.x.x: 612 | version "2.10.1" 613 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 614 | dependencies: 615 | hoek "2.x.x" 616 | 617 | boxen@^1.2.1: 618 | version "1.3.0" 619 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b" 620 | dependencies: 621 | ansi-align "^2.0.0" 622 | camelcase "^4.0.0" 623 | chalk "^2.0.1" 624 | cli-boxes "^1.0.0" 625 | string-width "^2.0.0" 626 | term-size "^1.2.0" 627 | widest-line "^2.0.0" 628 | 629 | brace-expansion@^1.1.7: 630 | version "1.1.11" 631 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 632 | dependencies: 633 | balanced-match "^1.0.0" 634 | concat-map "0.0.1" 635 | 636 | braces@^1.8.2: 637 | version "1.8.5" 638 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 639 | dependencies: 640 | expand-range "^1.8.1" 641 | preserve "^0.2.0" 642 | repeat-element "^1.1.2" 643 | 644 | buf-compare@^1.0.0: 645 | version "1.0.1" 646 | resolved "https://registry.yarnpkg.com/buf-compare/-/buf-compare-1.0.1.tgz#fef28da8b8113a0a0db4430b0b6467b69730b34a" 647 | 648 | builtin-modules@^1.0.0: 649 | version "1.1.1" 650 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 651 | 652 | caching-transform@^1.0.0: 653 | version "1.0.1" 654 | resolved "https://registry.yarnpkg.com/caching-transform/-/caching-transform-1.0.1.tgz#6dbdb2f20f8d8fbce79f3e94e9d1742dcdf5c0a1" 655 | dependencies: 656 | md5-hex "^1.2.0" 657 | mkdirp "^0.5.1" 658 | write-file-atomic "^1.1.4" 659 | 660 | call-matcher@^1.0.0: 661 | version "1.0.1" 662 | resolved "https://registry.yarnpkg.com/call-matcher/-/call-matcher-1.0.1.tgz#5134d077984f712a54dad3cbf62de28dce416ca8" 663 | dependencies: 664 | core-js "^2.0.0" 665 | deep-equal "^1.0.0" 666 | espurify "^1.6.0" 667 | estraverse "^4.0.0" 668 | 669 | call-signature@0.0.2: 670 | version "0.0.2" 671 | resolved "https://registry.yarnpkg.com/call-signature/-/call-signature-0.0.2.tgz#a84abc825a55ef4cb2b028bd74e205a65b9a4996" 672 | 673 | camelcase-keys@^2.0.0: 674 | version "2.1.0" 675 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 676 | dependencies: 677 | camelcase "^2.0.0" 678 | map-obj "^1.0.0" 679 | 680 | camelcase@^2.0.0: 681 | version "2.1.1" 682 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 683 | 684 | camelcase@^4.0.0: 685 | version "4.1.0" 686 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 687 | 688 | capture-stack-trace@^1.0.0: 689 | version "1.0.0" 690 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" 691 | 692 | caseless@~0.12.0: 693 | version "0.12.0" 694 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 695 | 696 | chalk@^0.4.0: 697 | version "0.4.0" 698 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-0.4.0.tgz#5199a3ddcd0c1efe23bc08c1b027b06176e0c64f" 699 | dependencies: 700 | ansi-styles "~1.0.0" 701 | has-color "~0.1.0" 702 | strip-ansi "~0.1.0" 703 | 704 | chalk@^1.1.3: 705 | version "1.1.3" 706 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 707 | dependencies: 708 | ansi-styles "^2.2.1" 709 | escape-string-regexp "^1.0.2" 710 | has-ansi "^2.0.0" 711 | strip-ansi "^3.0.0" 712 | supports-color "^2.0.0" 713 | 714 | chalk@^2.0.1: 715 | version "2.3.1" 716 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.1.tgz#523fe2678aec7b04e8041909292fe8b17059b796" 717 | dependencies: 718 | ansi-styles "^3.2.0" 719 | escape-string-regexp "^1.0.5" 720 | supports-color "^5.2.0" 721 | 722 | chokidar@^1.4.2: 723 | version "1.7.0" 724 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 725 | dependencies: 726 | anymatch "^1.3.0" 727 | async-each "^1.0.0" 728 | glob-parent "^2.0.0" 729 | inherits "^2.0.1" 730 | is-binary-path "^1.0.0" 731 | is-glob "^2.0.0" 732 | path-is-absolute "^1.0.0" 733 | readdirp "^2.0.0" 734 | optionalDependencies: 735 | fsevents "^1.0.0" 736 | 737 | ci-info@^1.0.0: 738 | version "1.1.2" 739 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.2.tgz#03561259db48d0474c8bdc90f5b47b068b6bbfb4" 740 | 741 | clean-stack@^1.1.1: 742 | version "1.3.0" 743 | resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-1.3.0.tgz#9e821501ae979986c46b1d66d2d432db2fd4ae31" 744 | 745 | clean-yaml-object@^0.1.0: 746 | version "0.1.0" 747 | resolved "https://registry.yarnpkg.com/clean-yaml-object/-/clean-yaml-object-0.1.0.tgz#63fb110dc2ce1a84dc21f6d9334876d010ae8b68" 748 | 749 | cli-boxes@^1.0.0: 750 | version "1.0.0" 751 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 752 | 753 | cli-cursor@^2.1.0: 754 | version "2.1.0" 755 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 756 | dependencies: 757 | restore-cursor "^2.0.0" 758 | 759 | cli-spinners@^1.0.0: 760 | version "1.1.0" 761 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-1.1.0.tgz#f1847b168844d917a671eb9d147e3df497c90d06" 762 | 763 | cli-truncate@^1.0.0: 764 | version "1.1.0" 765 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-1.1.0.tgz#2b2dfd83c53cfd3572b87fc4d430a808afb04086" 766 | dependencies: 767 | slice-ansi "^1.0.0" 768 | string-width "^2.0.0" 769 | 770 | co-with-promise@^4.6.0: 771 | version "4.6.0" 772 | resolved "https://registry.yarnpkg.com/co-with-promise/-/co-with-promise-4.6.0.tgz#413e7db6f5893a60b942cf492c4bec93db415ab7" 773 | dependencies: 774 | pinkie-promise "^1.0.0" 775 | 776 | co@^4.6.0: 777 | version "4.6.0" 778 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 779 | 780 | code-excerpt@^2.1.1: 781 | version "2.1.1" 782 | resolved "https://registry.yarnpkg.com/code-excerpt/-/code-excerpt-2.1.1.tgz#5fe3057bfbb71a5f300f659ef2cc0a47651ba77c" 783 | dependencies: 784 | convert-to-spaces "^1.0.1" 785 | 786 | code-point-at@^1.0.0: 787 | version "1.1.0" 788 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 789 | 790 | color-convert@^1.9.0: 791 | version "1.9.1" 792 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 793 | dependencies: 794 | color-name "^1.1.1" 795 | 796 | color-name@^1.1.1: 797 | version "1.1.3" 798 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 799 | 800 | combined-stream@^1.0.5, combined-stream@~1.0.5: 801 | version "1.0.6" 802 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818" 803 | dependencies: 804 | delayed-stream "~1.0.0" 805 | 806 | common-path-prefix@^1.0.0: 807 | version "1.0.0" 808 | resolved "https://registry.yarnpkg.com/common-path-prefix/-/common-path-prefix-1.0.0.tgz#cd52f6f0712e0baab97d6f9732874f22f47752c0" 809 | 810 | commondir@^1.0.1: 811 | version "1.0.1" 812 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 813 | 814 | concat-map@0.0.1: 815 | version "0.0.1" 816 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 817 | 818 | concordance@^3.0.0: 819 | version "3.0.0" 820 | resolved "https://registry.yarnpkg.com/concordance/-/concordance-3.0.0.tgz#b2286af54405fc995fc7345b0b106d8dd073cb29" 821 | dependencies: 822 | date-time "^2.1.0" 823 | esutils "^2.0.2" 824 | fast-diff "^1.1.1" 825 | function-name-support "^0.2.0" 826 | js-string-escape "^1.0.1" 827 | lodash.clonedeep "^4.5.0" 828 | lodash.flattendeep "^4.4.0" 829 | lodash.merge "^4.6.0" 830 | md5-hex "^2.0.0" 831 | semver "^5.3.0" 832 | well-known-symbols "^1.0.0" 833 | 834 | configstore@^3.0.0: 835 | version "3.1.1" 836 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.1.tgz#094ee662ab83fad9917678de114faaea8fcdca90" 837 | dependencies: 838 | dot-prop "^4.1.0" 839 | graceful-fs "^4.1.2" 840 | make-dir "^1.0.0" 841 | unique-string "^1.0.0" 842 | write-file-atomic "^2.0.0" 843 | xdg-basedir "^3.0.0" 844 | 845 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 846 | version "1.1.0" 847 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 848 | 849 | convert-source-map@^1.5.0, convert-source-map@^1.5.1: 850 | version "1.5.1" 851 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 852 | 853 | convert-to-spaces@^1.0.1: 854 | version "1.0.2" 855 | resolved "https://registry.yarnpkg.com/convert-to-spaces/-/convert-to-spaces-1.0.2.tgz#7e3e48bbe6d997b1417ddca2868204b4d3d85715" 856 | 857 | core-assert@^0.2.0: 858 | version "0.2.1" 859 | resolved "https://registry.yarnpkg.com/core-assert/-/core-assert-0.2.1.tgz#f85e2cf9bfed28f773cc8b3fa5c5b69bdc02fe3f" 860 | dependencies: 861 | buf-compare "^1.0.0" 862 | is-error "^2.2.0" 863 | 864 | core-js@^2.0.0, core-js@^2.4.0, core-js@^2.5.0: 865 | version "2.5.3" 866 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e" 867 | 868 | core-util-is@1.0.2, core-util-is@~1.0.0: 869 | version "1.0.2" 870 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 871 | 872 | create-error-class@^3.0.0: 873 | version "3.0.2" 874 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" 875 | dependencies: 876 | capture-stack-trace "^1.0.0" 877 | 878 | cross-spawn@^5.0.1: 879 | version "5.1.0" 880 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 881 | dependencies: 882 | lru-cache "^4.0.1" 883 | shebang-command "^1.2.0" 884 | which "^1.2.9" 885 | 886 | cryptiles@2.x.x: 887 | version "2.0.5" 888 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 889 | dependencies: 890 | boom "2.x.x" 891 | 892 | crypto-random-string@^1.0.0: 893 | version "1.0.0" 894 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" 895 | 896 | currently-unhandled@^0.4.1: 897 | version "0.4.1" 898 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 899 | dependencies: 900 | array-find-index "^1.0.1" 901 | 902 | dashdash@^1.12.0: 903 | version "1.14.1" 904 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 905 | dependencies: 906 | assert-plus "^1.0.0" 907 | 908 | date-time@^0.1.1: 909 | version "0.1.1" 910 | resolved "https://registry.yarnpkg.com/date-time/-/date-time-0.1.1.tgz#ed2f6d93d9790ce2fd66d5b5ff3edd5bbcbf3b07" 911 | 912 | date-time@^2.1.0: 913 | version "2.1.0" 914 | resolved "https://registry.yarnpkg.com/date-time/-/date-time-2.1.0.tgz#0286d1b4c769633b3ca13e1e62558d2dbdc2eba2" 915 | dependencies: 916 | time-zone "^1.0.0" 917 | 918 | debug@^2.2.0, debug@^2.6.8: 919 | version "2.6.9" 920 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 921 | dependencies: 922 | ms "2.0.0" 923 | 924 | debug@^3.0.1: 925 | version "3.1.0" 926 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 927 | dependencies: 928 | ms "2.0.0" 929 | 930 | decamelize@^1.1.2: 931 | version "1.2.0" 932 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 933 | 934 | deep-equal@^1.0.0: 935 | version "1.0.1" 936 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" 937 | 938 | deep-extend@~0.4.0: 939 | version "0.4.2" 940 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 941 | 942 | delayed-stream@~1.0.0: 943 | version "1.0.0" 944 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 945 | 946 | delegates@^1.0.0: 947 | version "1.0.0" 948 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 949 | 950 | detect-indent@^4.0.0: 951 | version "4.0.0" 952 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 953 | dependencies: 954 | repeating "^2.0.0" 955 | 956 | detect-indent@^5.0.0: 957 | version "5.0.0" 958 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-5.0.0.tgz#3871cc0a6a002e8c3e5b3cf7f336264675f06b9d" 959 | 960 | detect-libc@^1.0.2: 961 | version "1.0.3" 962 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 963 | 964 | dot-prop@^4.1.0: 965 | version "4.2.0" 966 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57" 967 | dependencies: 968 | is-obj "^1.0.0" 969 | 970 | duplexer3@^0.1.4: 971 | version "0.1.4" 972 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" 973 | 974 | ecc-jsbn@~0.1.1: 975 | version "0.1.1" 976 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 977 | dependencies: 978 | jsbn "~0.1.0" 979 | 980 | empower-core@^0.6.1: 981 | version "0.6.2" 982 | resolved "https://registry.yarnpkg.com/empower-core/-/empower-core-0.6.2.tgz#5adef566088e31fba80ba0a36df47d7094169144" 983 | dependencies: 984 | call-signature "0.0.2" 985 | core-js "^2.0.0" 986 | 987 | equal-length@^1.0.0: 988 | version "1.0.1" 989 | resolved "https://registry.yarnpkg.com/equal-length/-/equal-length-1.0.1.tgz#21ca112d48ab24b4e1e7ffc0e5339d31fdfc274c" 990 | 991 | error-ex@^1.2.0, error-ex@^1.3.1: 992 | version "1.3.1" 993 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 994 | dependencies: 995 | is-arrayish "^0.2.1" 996 | 997 | es6-error@^4.0.1, es6-error@^4.0.2: 998 | version "4.1.1" 999 | resolved "https://registry.yarnpkg.com/es6-error/-/es6-error-4.1.1.tgz#9e3af407459deed47e9a91f9b885a84eb05c561d" 1000 | 1001 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.4, escape-string-regexp@^1.0.5: 1002 | version "1.0.5" 1003 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1004 | 1005 | espower-location-detector@^1.0.0: 1006 | version "1.0.0" 1007 | resolved "https://registry.yarnpkg.com/espower-location-detector/-/espower-location-detector-1.0.0.tgz#a17b7ecc59d30e179e2bef73fb4137704cb331b5" 1008 | dependencies: 1009 | is-url "^1.2.1" 1010 | path-is-absolute "^1.0.0" 1011 | source-map "^0.5.0" 1012 | xtend "^4.0.0" 1013 | 1014 | esprima@^4.0.0: 1015 | version "4.0.0" 1016 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1017 | 1018 | espurify@^1.6.0: 1019 | version "1.7.0" 1020 | resolved "https://registry.yarnpkg.com/espurify/-/espurify-1.7.0.tgz#1c5cf6cbccc32e6f639380bd4f991fab9ba9d226" 1021 | dependencies: 1022 | core-js "^2.0.0" 1023 | 1024 | estraverse@^4.0.0, estraverse@^4.1.1: 1025 | version "4.2.0" 1026 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1027 | 1028 | esutils@^2.0.2: 1029 | version "2.0.2" 1030 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1031 | 1032 | execa@^0.7.0: 1033 | version "0.7.0" 1034 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1035 | dependencies: 1036 | cross-spawn "^5.0.1" 1037 | get-stream "^3.0.0" 1038 | is-stream "^1.1.0" 1039 | npm-run-path "^2.0.0" 1040 | p-finally "^1.0.0" 1041 | signal-exit "^3.0.0" 1042 | strip-eof "^1.0.0" 1043 | 1044 | expand-brackets@^0.1.4: 1045 | version "0.1.5" 1046 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1047 | dependencies: 1048 | is-posix-bracket "^0.1.0" 1049 | 1050 | expand-range@^1.8.1: 1051 | version "1.8.2" 1052 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1053 | dependencies: 1054 | fill-range "^2.1.0" 1055 | 1056 | extend@~3.0.0: 1057 | version "3.0.1" 1058 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1059 | 1060 | extglob@^0.3.1: 1061 | version "0.3.2" 1062 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1063 | dependencies: 1064 | is-extglob "^1.0.0" 1065 | 1066 | extsprintf@1.3.0: 1067 | version "1.3.0" 1068 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1069 | 1070 | extsprintf@^1.2.0: 1071 | version "1.4.0" 1072 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 1073 | 1074 | fast-diff@^1.1.1: 1075 | version "1.1.2" 1076 | resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.1.2.tgz#4b62c42b8e03de3f848460b639079920695d0154" 1077 | 1078 | figures@^2.0.0: 1079 | version "2.0.0" 1080 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1081 | dependencies: 1082 | escape-string-regexp "^1.0.5" 1083 | 1084 | filename-regex@^2.0.0: 1085 | version "2.0.1" 1086 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1087 | 1088 | fill-range@^2.1.0: 1089 | version "2.2.3" 1090 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1091 | dependencies: 1092 | is-number "^2.1.0" 1093 | isobject "^2.0.0" 1094 | randomatic "^1.1.3" 1095 | repeat-element "^1.1.2" 1096 | repeat-string "^1.5.2" 1097 | 1098 | find-cache-dir@^1.0.0: 1099 | version "1.0.0" 1100 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-1.0.0.tgz#9288e3e9e3cc3748717d39eade17cf71fc30ee6f" 1101 | dependencies: 1102 | commondir "^1.0.1" 1103 | make-dir "^1.0.0" 1104 | pkg-dir "^2.0.0" 1105 | 1106 | find-up@^1.0.0: 1107 | version "1.1.2" 1108 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1109 | dependencies: 1110 | path-exists "^2.0.0" 1111 | pinkie-promise "^2.0.0" 1112 | 1113 | find-up@^2.0.0, find-up@^2.1.0: 1114 | version "2.1.0" 1115 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1116 | dependencies: 1117 | locate-path "^2.0.0" 1118 | 1119 | fn-name@^2.0.0: 1120 | version "2.0.1" 1121 | resolved "https://registry.yarnpkg.com/fn-name/-/fn-name-2.0.1.tgz#5214d7537a4d06a4a301c0cc262feb84188002e7" 1122 | 1123 | for-in@^1.0.1: 1124 | version "1.0.2" 1125 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1126 | 1127 | for-own@^0.1.4: 1128 | version "0.1.5" 1129 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1130 | dependencies: 1131 | for-in "^1.0.1" 1132 | 1133 | forever-agent@~0.6.1: 1134 | version "0.6.1" 1135 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1136 | 1137 | form-data@~2.1.1: 1138 | version "2.1.4" 1139 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1140 | dependencies: 1141 | asynckit "^0.4.0" 1142 | combined-stream "^1.0.5" 1143 | mime-types "^2.1.12" 1144 | 1145 | fs.realpath@^1.0.0: 1146 | version "1.0.0" 1147 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1148 | 1149 | fsevents@^1.0.0: 1150 | version "1.1.3" 1151 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8" 1152 | dependencies: 1153 | nan "^2.3.0" 1154 | node-pre-gyp "^0.6.39" 1155 | 1156 | fstream-ignore@^1.0.5: 1157 | version "1.0.5" 1158 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1159 | dependencies: 1160 | fstream "^1.0.0" 1161 | inherits "2" 1162 | minimatch "^3.0.0" 1163 | 1164 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1165 | version "1.0.11" 1166 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1167 | dependencies: 1168 | graceful-fs "^4.1.2" 1169 | inherits "~2.0.0" 1170 | mkdirp ">=0.5 0" 1171 | rimraf "2" 1172 | 1173 | function-name-support@^0.2.0: 1174 | version "0.2.0" 1175 | resolved "https://registry.yarnpkg.com/function-name-support/-/function-name-support-0.2.0.tgz#55d3bfaa6eafd505a50f9bc81fdf57564a0bb071" 1176 | 1177 | gauge@~2.7.3: 1178 | version "2.7.4" 1179 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1180 | dependencies: 1181 | aproba "^1.0.3" 1182 | console-control-strings "^1.0.0" 1183 | has-unicode "^2.0.0" 1184 | object-assign "^4.1.0" 1185 | signal-exit "^3.0.0" 1186 | string-width "^1.0.1" 1187 | strip-ansi "^3.0.1" 1188 | wide-align "^1.1.0" 1189 | 1190 | get-port@^3.0.0: 1191 | version "3.2.0" 1192 | resolved "https://registry.yarnpkg.com/get-port/-/get-port-3.2.0.tgz#dd7ce7de187c06c8bf353796ac71e099f0980ebc" 1193 | 1194 | get-stdin@^4.0.1: 1195 | version "4.0.1" 1196 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 1197 | 1198 | get-stream@^3.0.0: 1199 | version "3.0.0" 1200 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1201 | 1202 | getpass@^0.1.1: 1203 | version "0.1.7" 1204 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1205 | dependencies: 1206 | assert-plus "^1.0.0" 1207 | 1208 | glob-base@^0.3.0: 1209 | version "0.3.0" 1210 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1211 | dependencies: 1212 | glob-parent "^2.0.0" 1213 | is-glob "^2.0.0" 1214 | 1215 | glob-parent@^2.0.0: 1216 | version "2.0.0" 1217 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1218 | dependencies: 1219 | is-glob "^2.0.0" 1220 | 1221 | glob@^7.0.3, glob@^7.0.5: 1222 | version "7.1.2" 1223 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1224 | dependencies: 1225 | fs.realpath "^1.0.0" 1226 | inflight "^1.0.4" 1227 | inherits "2" 1228 | minimatch "^3.0.4" 1229 | once "^1.3.0" 1230 | path-is-absolute "^1.0.0" 1231 | 1232 | global-dirs@^0.1.0: 1233 | version "0.1.1" 1234 | resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445" 1235 | dependencies: 1236 | ini "^1.3.4" 1237 | 1238 | globals@^9.18.0: 1239 | version "9.18.0" 1240 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1241 | 1242 | globby@^6.0.0: 1243 | version "6.1.0" 1244 | resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" 1245 | dependencies: 1246 | array-union "^1.0.1" 1247 | glob "^7.0.3" 1248 | object-assign "^4.0.1" 1249 | pify "^2.0.0" 1250 | pinkie-promise "^2.0.0" 1251 | 1252 | got@^6.7.1: 1253 | version "6.7.1" 1254 | resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" 1255 | dependencies: 1256 | create-error-class "^3.0.0" 1257 | duplexer3 "^0.1.4" 1258 | get-stream "^3.0.0" 1259 | is-redirect "^1.0.0" 1260 | is-retry-allowed "^1.0.0" 1261 | is-stream "^1.0.0" 1262 | lowercase-keys "^1.0.0" 1263 | safe-buffer "^5.0.1" 1264 | timed-out "^4.0.0" 1265 | unzip-response "^2.0.1" 1266 | url-parse-lax "^1.0.0" 1267 | 1268 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 1269 | version "4.1.11" 1270 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1271 | 1272 | har-schema@^1.0.5: 1273 | version "1.0.5" 1274 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1275 | 1276 | har-validator@~4.2.1: 1277 | version "4.2.1" 1278 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1279 | dependencies: 1280 | ajv "^4.9.1" 1281 | har-schema "^1.0.5" 1282 | 1283 | has-ansi@^2.0.0: 1284 | version "2.0.0" 1285 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1286 | dependencies: 1287 | ansi-regex "^2.0.0" 1288 | 1289 | has-color@~0.1.0: 1290 | version "0.1.7" 1291 | resolved "https://registry.yarnpkg.com/has-color/-/has-color-0.1.7.tgz#67144a5260c34fc3cca677d041daf52fe7b78b2f" 1292 | 1293 | has-flag@^2.0.0: 1294 | version "2.0.0" 1295 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1296 | 1297 | has-flag@^3.0.0: 1298 | version "3.0.0" 1299 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1300 | 1301 | has-unicode@^2.0.0: 1302 | version "2.0.1" 1303 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1304 | 1305 | has-yarn@^1.0.0: 1306 | version "1.0.0" 1307 | resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-1.0.0.tgz#89e25db604b725c8f5976fff0addc921b828a5a7" 1308 | 1309 | hawk@3.1.3, hawk@~3.1.3: 1310 | version "3.1.3" 1311 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1312 | dependencies: 1313 | boom "2.x.x" 1314 | cryptiles "2.x.x" 1315 | hoek "2.x.x" 1316 | sntp "1.x.x" 1317 | 1318 | hoek@2.x.x: 1319 | version "2.16.3" 1320 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1321 | 1322 | home-or-tmp@^2.0.0: 1323 | version "2.0.0" 1324 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1325 | dependencies: 1326 | os-homedir "^1.0.0" 1327 | os-tmpdir "^1.0.1" 1328 | 1329 | hosted-git-info@^2.1.4: 1330 | version "2.5.0" 1331 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 1332 | 1333 | http-signature@~1.1.0: 1334 | version "1.1.1" 1335 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1336 | dependencies: 1337 | assert-plus "^0.2.0" 1338 | jsprim "^1.2.2" 1339 | sshpk "^1.7.0" 1340 | 1341 | hullabaloo-config-manager@^1.1.0: 1342 | version "1.1.1" 1343 | resolved "https://registry.yarnpkg.com/hullabaloo-config-manager/-/hullabaloo-config-manager-1.1.1.tgz#1d9117813129ad035fd9e8477eaf066911269fe3" 1344 | dependencies: 1345 | dot-prop "^4.1.0" 1346 | es6-error "^4.0.2" 1347 | graceful-fs "^4.1.11" 1348 | indent-string "^3.1.0" 1349 | json5 "^0.5.1" 1350 | lodash.clonedeep "^4.5.0" 1351 | lodash.clonedeepwith "^4.5.0" 1352 | lodash.isequal "^4.5.0" 1353 | lodash.merge "^4.6.0" 1354 | md5-hex "^2.0.0" 1355 | package-hash "^2.0.0" 1356 | pkg-dir "^2.0.0" 1357 | resolve-from "^3.0.0" 1358 | safe-buffer "^5.0.1" 1359 | 1360 | ignore-by-default@^1.0.0: 1361 | version "1.0.1" 1362 | resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" 1363 | 1364 | import-lazy@^2.1.0: 1365 | version "2.1.0" 1366 | resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" 1367 | 1368 | import-local@^0.1.1: 1369 | version "0.1.1" 1370 | resolved "https://registry.yarnpkg.com/import-local/-/import-local-0.1.1.tgz#b1179572aacdc11c6a91009fb430dbcab5f668a8" 1371 | dependencies: 1372 | pkg-dir "^2.0.0" 1373 | resolve-cwd "^2.0.0" 1374 | 1375 | imurmurhash@^0.1.4: 1376 | version "0.1.4" 1377 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1378 | 1379 | indent-string@^2.1.0: 1380 | version "2.1.0" 1381 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 1382 | dependencies: 1383 | repeating "^2.0.0" 1384 | 1385 | indent-string@^3.0.0, indent-string@^3.1.0, indent-string@^3.2.0: 1386 | version "3.2.0" 1387 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" 1388 | 1389 | inflight@^1.0.4: 1390 | version "1.0.6" 1391 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1392 | dependencies: 1393 | once "^1.3.0" 1394 | wrappy "1" 1395 | 1396 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.3: 1397 | version "2.0.3" 1398 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1399 | 1400 | ini@^1.3.4, ini@~1.3.0: 1401 | version "1.3.5" 1402 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1403 | 1404 | invariant@^2.2.2: 1405 | version "2.2.3" 1406 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.3.tgz#1a827dfde7dcbd7c323f0ca826be8fa7c5e9d688" 1407 | dependencies: 1408 | loose-envify "^1.0.0" 1409 | 1410 | irregular-plurals@^1.0.0: 1411 | version "1.4.0" 1412 | resolved "https://registry.yarnpkg.com/irregular-plurals/-/irregular-plurals-1.4.0.tgz#2ca9b033651111855412f16be5d77c62a458a766" 1413 | 1414 | is-arrayish@^0.2.1: 1415 | version "0.2.1" 1416 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1417 | 1418 | is-binary-path@^1.0.0: 1419 | version "1.0.1" 1420 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1421 | dependencies: 1422 | binary-extensions "^1.0.0" 1423 | 1424 | is-buffer@^1.1.5: 1425 | version "1.1.6" 1426 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1427 | 1428 | is-builtin-module@^1.0.0: 1429 | version "1.0.0" 1430 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1431 | dependencies: 1432 | builtin-modules "^1.0.0" 1433 | 1434 | is-ci@^1.0.7: 1435 | version "1.1.0" 1436 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.1.0.tgz#247e4162e7860cebbdaf30b774d6b0ac7dcfe7a5" 1437 | dependencies: 1438 | ci-info "^1.0.0" 1439 | 1440 | is-dotfile@^1.0.0: 1441 | version "1.0.3" 1442 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1443 | 1444 | is-equal-shallow@^0.1.3: 1445 | version "0.1.3" 1446 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1447 | dependencies: 1448 | is-primitive "^2.0.0" 1449 | 1450 | is-error@^2.2.0: 1451 | version "2.2.1" 1452 | resolved "https://registry.yarnpkg.com/is-error/-/is-error-2.2.1.tgz#684a96d84076577c98f4cdb40c6d26a5123bf19c" 1453 | 1454 | is-extendable@^0.1.1: 1455 | version "0.1.1" 1456 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1457 | 1458 | is-extglob@^1.0.0: 1459 | version "1.0.0" 1460 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1461 | 1462 | is-finite@^1.0.0: 1463 | version "1.0.2" 1464 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1465 | dependencies: 1466 | number-is-nan "^1.0.0" 1467 | 1468 | is-fullwidth-code-point@^1.0.0: 1469 | version "1.0.0" 1470 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1471 | dependencies: 1472 | number-is-nan "^1.0.0" 1473 | 1474 | is-fullwidth-code-point@^2.0.0: 1475 | version "2.0.0" 1476 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1477 | 1478 | is-generator-fn@^1.0.0: 1479 | version "1.0.0" 1480 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a" 1481 | 1482 | is-glob@^2.0.0, is-glob@^2.0.1: 1483 | version "2.0.1" 1484 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1485 | dependencies: 1486 | is-extglob "^1.0.0" 1487 | 1488 | is-installed-globally@^0.1.0: 1489 | version "0.1.0" 1490 | resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.1.0.tgz#0dfd98f5a9111716dd535dda6492f67bf3d25a80" 1491 | dependencies: 1492 | global-dirs "^0.1.0" 1493 | is-path-inside "^1.0.0" 1494 | 1495 | is-npm@^1.0.0: 1496 | version "1.0.0" 1497 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 1498 | 1499 | is-number@^2.1.0: 1500 | version "2.1.0" 1501 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1502 | dependencies: 1503 | kind-of "^3.0.2" 1504 | 1505 | is-number@^3.0.0: 1506 | version "3.0.0" 1507 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1508 | dependencies: 1509 | kind-of "^3.0.2" 1510 | 1511 | is-obj@^1.0.0: 1512 | version "1.0.1" 1513 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 1514 | 1515 | is-observable@^0.2.0: 1516 | version "0.2.0" 1517 | resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-0.2.0.tgz#b361311d83c6e5d726cabf5e250b0237106f5ae2" 1518 | dependencies: 1519 | symbol-observable "^0.2.2" 1520 | 1521 | is-observable@^1.0.0: 1522 | version "1.1.0" 1523 | resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-1.1.0.tgz#b3e986c8f44de950867cab5403f5a3465005975e" 1524 | dependencies: 1525 | symbol-observable "^1.1.0" 1526 | 1527 | is-path-inside@^1.0.0: 1528 | version "1.0.1" 1529 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" 1530 | dependencies: 1531 | path-is-inside "^1.0.1" 1532 | 1533 | is-plain-obj@^1.0.0: 1534 | version "1.1.0" 1535 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 1536 | 1537 | is-posix-bracket@^0.1.0: 1538 | version "0.1.1" 1539 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1540 | 1541 | is-primitive@^2.0.0: 1542 | version "2.0.0" 1543 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1544 | 1545 | is-promise@^2.1.0: 1546 | version "2.1.0" 1547 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1548 | 1549 | is-redirect@^1.0.0: 1550 | version "1.0.0" 1551 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 1552 | 1553 | is-retry-allowed@^1.0.0: 1554 | version "1.1.0" 1555 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" 1556 | 1557 | is-stream@^1.0.0, is-stream@^1.1.0: 1558 | version "1.1.0" 1559 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1560 | 1561 | is-typedarray@~1.0.0: 1562 | version "1.0.0" 1563 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1564 | 1565 | is-url@^1.2.1: 1566 | version "1.2.2" 1567 | resolved "https://registry.yarnpkg.com/is-url/-/is-url-1.2.2.tgz#498905a593bf47cc2d9e7f738372bbf7696c7f26" 1568 | 1569 | is-utf8@^0.2.0, is-utf8@^0.2.1: 1570 | version "0.2.1" 1571 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1572 | 1573 | isarray@1.0.0, isarray@~1.0.0: 1574 | version "1.0.0" 1575 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1576 | 1577 | isexe@^2.0.0: 1578 | version "2.0.0" 1579 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1580 | 1581 | isobject@^2.0.0: 1582 | version "2.1.0" 1583 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1584 | dependencies: 1585 | isarray "1.0.0" 1586 | 1587 | isstream@~0.1.2: 1588 | version "0.1.2" 1589 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1590 | 1591 | js-string-escape@^1.0.1: 1592 | version "1.0.1" 1593 | resolved "https://registry.yarnpkg.com/js-string-escape/-/js-string-escape-1.0.1.tgz#e2625badbc0d67c7533e9edc1068c587ae4137ef" 1594 | 1595 | js-tokens@^3.0.0, js-tokens@^3.0.2: 1596 | version "3.0.2" 1597 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1598 | 1599 | js-yaml@^3.10.0: 1600 | version "3.10.0" 1601 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 1602 | dependencies: 1603 | argparse "^1.0.7" 1604 | esprima "^4.0.0" 1605 | 1606 | jsbn@~0.1.0: 1607 | version "0.1.1" 1608 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1609 | 1610 | jsesc@^1.3.0: 1611 | version "1.3.0" 1612 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1613 | 1614 | jsesc@~0.5.0: 1615 | version "0.5.0" 1616 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1617 | 1618 | json-parse-better-errors@^1.0.1: 1619 | version "1.0.1" 1620 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.1.tgz#50183cd1b2d25275de069e9e71b467ac9eab973a" 1621 | 1622 | json-schema@0.2.3: 1623 | version "0.2.3" 1624 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1625 | 1626 | json-stable-stringify@^1.0.1: 1627 | version "1.0.1" 1628 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1629 | dependencies: 1630 | jsonify "~0.0.0" 1631 | 1632 | json-stringify-safe@~5.0.1: 1633 | version "5.0.1" 1634 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1635 | 1636 | json5@^0.5.1: 1637 | version "0.5.1" 1638 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1639 | 1640 | jsonify@~0.0.0: 1641 | version "0.0.0" 1642 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1643 | 1644 | jsprim@^1.2.2: 1645 | version "1.4.1" 1646 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1647 | dependencies: 1648 | assert-plus "1.0.0" 1649 | extsprintf "1.3.0" 1650 | json-schema "0.2.3" 1651 | verror "1.10.0" 1652 | 1653 | kind-of@^3.0.2: 1654 | version "3.2.2" 1655 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1656 | dependencies: 1657 | is-buffer "^1.1.5" 1658 | 1659 | kind-of@^4.0.0: 1660 | version "4.0.0" 1661 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1662 | dependencies: 1663 | is-buffer "^1.1.5" 1664 | 1665 | last-line-stream@^1.0.0: 1666 | version "1.0.0" 1667 | resolved "https://registry.yarnpkg.com/last-line-stream/-/last-line-stream-1.0.0.tgz#d1b64d69f86ff24af2d04883a2ceee14520a5600" 1668 | dependencies: 1669 | through2 "^2.0.0" 1670 | 1671 | latest-version@^3.0.0: 1672 | version "3.1.0" 1673 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15" 1674 | dependencies: 1675 | package-json "^4.0.0" 1676 | 1677 | load-json-file@^1.0.0: 1678 | version "1.1.0" 1679 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1680 | dependencies: 1681 | graceful-fs "^4.1.2" 1682 | parse-json "^2.2.0" 1683 | pify "^2.0.0" 1684 | pinkie-promise "^2.0.0" 1685 | strip-bom "^2.0.0" 1686 | 1687 | load-json-file@^2.0.0: 1688 | version "2.0.0" 1689 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 1690 | dependencies: 1691 | graceful-fs "^4.1.2" 1692 | parse-json "^2.2.0" 1693 | pify "^2.0.0" 1694 | strip-bom "^3.0.0" 1695 | 1696 | load-json-file@^4.0.0: 1697 | version "4.0.0" 1698 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" 1699 | dependencies: 1700 | graceful-fs "^4.1.2" 1701 | parse-json "^4.0.0" 1702 | pify "^3.0.0" 1703 | strip-bom "^3.0.0" 1704 | 1705 | locate-path@^2.0.0: 1706 | version "2.0.0" 1707 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1708 | dependencies: 1709 | p-locate "^2.0.0" 1710 | path-exists "^3.0.0" 1711 | 1712 | lodash.clonedeep@^4.5.0: 1713 | version "4.5.0" 1714 | resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" 1715 | 1716 | lodash.clonedeepwith@^4.5.0: 1717 | version "4.5.0" 1718 | resolved "https://registry.yarnpkg.com/lodash.clonedeepwith/-/lodash.clonedeepwith-4.5.0.tgz#6ee30573a03a1a60d670a62ef33c10cf1afdbdd4" 1719 | 1720 | lodash.debounce@^4.0.3: 1721 | version "4.0.8" 1722 | resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" 1723 | 1724 | lodash.difference@^4.3.0: 1725 | version "4.5.0" 1726 | resolved "https://registry.yarnpkg.com/lodash.difference/-/lodash.difference-4.5.0.tgz#9ccb4e505d486b91651345772885a2df27fd017c" 1727 | 1728 | lodash.flatten@^4.2.0: 1729 | version "4.4.0" 1730 | resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f" 1731 | 1732 | lodash.flattendeep@^4.4.0: 1733 | version "4.4.0" 1734 | resolved "https://registry.yarnpkg.com/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz#fb030917f86a3134e5bc9bec0d69e0013ddfedb2" 1735 | 1736 | lodash.isequal@^4.5.0: 1737 | version "4.5.0" 1738 | resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" 1739 | 1740 | lodash.merge@^4.6.0: 1741 | version "4.6.1" 1742 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.1.tgz#adc25d9cb99b9391c59624f379fbba60d7111d54" 1743 | 1744 | lodash@^4.17.4: 1745 | version "4.17.5" 1746 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.5.tgz#99a92d65c0272debe8c96b6057bc8fbfa3bed511" 1747 | 1748 | loose-envify@^1.0.0: 1749 | version "1.3.1" 1750 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1751 | dependencies: 1752 | js-tokens "^3.0.0" 1753 | 1754 | loud-rejection@^1.0.0, loud-rejection@^1.2.0: 1755 | version "1.6.0" 1756 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 1757 | dependencies: 1758 | currently-unhandled "^0.4.1" 1759 | signal-exit "^3.0.0" 1760 | 1761 | lowercase-keys@^1.0.0: 1762 | version "1.0.0" 1763 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 1764 | 1765 | lru-cache@^4.0.1: 1766 | version "4.1.1" 1767 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 1768 | dependencies: 1769 | pseudomap "^1.0.2" 1770 | yallist "^2.1.2" 1771 | 1772 | make-dir@^1.0.0: 1773 | version "1.2.0" 1774 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.2.0.tgz#6d6a49eead4aae296c53bbf3a1a008bd6c89469b" 1775 | dependencies: 1776 | pify "^3.0.0" 1777 | 1778 | map-obj@^1.0.0, map-obj@^1.0.1: 1779 | version "1.0.1" 1780 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 1781 | 1782 | matcher@^1.0.0: 1783 | version "1.1.0" 1784 | resolved "https://registry.yarnpkg.com/matcher/-/matcher-1.1.0.tgz#4ad3a9cb6585186dc95cb8a08c7de936caed17ee" 1785 | dependencies: 1786 | escape-string-regexp "^1.0.4" 1787 | 1788 | md5-hex@^1.2.0, md5-hex@^1.3.0: 1789 | version "1.3.0" 1790 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-1.3.0.tgz#d2c4afe983c4370662179b8cad145219135046c4" 1791 | dependencies: 1792 | md5-o-matic "^0.1.1" 1793 | 1794 | md5-hex@^2.0.0: 1795 | version "2.0.0" 1796 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-2.0.0.tgz#d0588e9f1c74954492ecd24ac0ac6ce997d92e33" 1797 | dependencies: 1798 | md5-o-matic "^0.1.1" 1799 | 1800 | md5-o-matic@^0.1.1: 1801 | version "0.1.1" 1802 | resolved "https://registry.yarnpkg.com/md5-o-matic/-/md5-o-matic-0.1.1.tgz#822bccd65e117c514fab176b25945d54100a03c3" 1803 | 1804 | meow@^3.7.0: 1805 | version "3.7.0" 1806 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 1807 | dependencies: 1808 | camelcase-keys "^2.0.0" 1809 | decamelize "^1.1.2" 1810 | loud-rejection "^1.0.0" 1811 | map-obj "^1.0.1" 1812 | minimist "^1.1.3" 1813 | normalize-package-data "^2.3.4" 1814 | object-assign "^4.0.1" 1815 | read-pkg-up "^1.0.1" 1816 | redent "^1.0.0" 1817 | trim-newlines "^1.0.0" 1818 | 1819 | micromatch@^2.1.5: 1820 | version "2.3.11" 1821 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1822 | dependencies: 1823 | arr-diff "^2.0.0" 1824 | array-unique "^0.2.1" 1825 | braces "^1.8.2" 1826 | expand-brackets "^0.1.4" 1827 | extglob "^0.3.1" 1828 | filename-regex "^2.0.0" 1829 | is-extglob "^1.0.0" 1830 | is-glob "^2.0.1" 1831 | kind-of "^3.0.2" 1832 | normalize-path "^2.0.1" 1833 | object.omit "^2.0.0" 1834 | parse-glob "^3.0.4" 1835 | regex-cache "^0.4.2" 1836 | 1837 | mime-db@~1.33.0: 1838 | version "1.33.0" 1839 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db" 1840 | 1841 | mime-types@^2.1.12, mime-types@~2.1.7: 1842 | version "2.1.18" 1843 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8" 1844 | dependencies: 1845 | mime-db "~1.33.0" 1846 | 1847 | mimic-fn@^1.0.0: 1848 | version "1.2.0" 1849 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 1850 | 1851 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 1852 | version "3.0.4" 1853 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1854 | dependencies: 1855 | brace-expansion "^1.1.7" 1856 | 1857 | minimist@0.0.8: 1858 | version "0.0.8" 1859 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1860 | 1861 | minimist@^1.1.3, minimist@^1.2.0: 1862 | version "1.2.0" 1863 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1864 | 1865 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 1866 | version "0.5.1" 1867 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1868 | dependencies: 1869 | minimist "0.0.8" 1870 | 1871 | ms@2.0.0: 1872 | version "2.0.0" 1873 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1874 | 1875 | ms@^2.0.0: 1876 | version "2.1.1" 1877 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" 1878 | 1879 | multimatch@^2.1.0: 1880 | version "2.1.0" 1881 | resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b" 1882 | dependencies: 1883 | array-differ "^1.0.0" 1884 | array-union "^1.0.1" 1885 | arrify "^1.0.0" 1886 | minimatch "^3.0.0" 1887 | 1888 | nan@^2.3.0: 1889 | version "2.8.0" 1890 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.8.0.tgz#ed715f3fe9de02b57a5e6252d90a96675e1f085a" 1891 | 1892 | node-pre-gyp@^0.6.39: 1893 | version "0.6.39" 1894 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 1895 | dependencies: 1896 | detect-libc "^1.0.2" 1897 | hawk "3.1.3" 1898 | mkdirp "^0.5.1" 1899 | nopt "^4.0.1" 1900 | npmlog "^4.0.2" 1901 | rc "^1.1.7" 1902 | request "2.81.0" 1903 | rimraf "^2.6.1" 1904 | semver "^5.3.0" 1905 | tar "^2.2.1" 1906 | tar-pack "^3.4.0" 1907 | 1908 | nopt@^4.0.1: 1909 | version "4.0.1" 1910 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1911 | dependencies: 1912 | abbrev "1" 1913 | osenv "^0.1.4" 1914 | 1915 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: 1916 | version "2.4.0" 1917 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 1918 | dependencies: 1919 | hosted-git-info "^2.1.4" 1920 | is-builtin-module "^1.0.0" 1921 | semver "2 || 3 || 4 || 5" 1922 | validate-npm-package-license "^3.0.1" 1923 | 1924 | normalize-path@^2.0.0, normalize-path@^2.0.1: 1925 | version "2.1.1" 1926 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1927 | dependencies: 1928 | remove-trailing-separator "^1.0.1" 1929 | 1930 | npm-run-path@^2.0.0: 1931 | version "2.0.2" 1932 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 1933 | dependencies: 1934 | path-key "^2.0.0" 1935 | 1936 | npmlog@^4.0.2: 1937 | version "4.1.2" 1938 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1939 | dependencies: 1940 | are-we-there-yet "~1.1.2" 1941 | console-control-strings "~1.1.0" 1942 | gauge "~2.7.3" 1943 | set-blocking "~2.0.0" 1944 | 1945 | number-is-nan@^1.0.0: 1946 | version "1.0.1" 1947 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1948 | 1949 | oauth-sign@~0.8.1: 1950 | version "0.8.2" 1951 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1952 | 1953 | object-assign@^4.0.1, object-assign@^4.1.0: 1954 | version "4.1.1" 1955 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1956 | 1957 | object.omit@^2.0.0: 1958 | version "2.0.1" 1959 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1960 | dependencies: 1961 | for-own "^0.1.4" 1962 | is-extendable "^0.1.1" 1963 | 1964 | observable-to-promise@^0.5.0: 1965 | version "0.5.0" 1966 | resolved "https://registry.yarnpkg.com/observable-to-promise/-/observable-to-promise-0.5.0.tgz#c828f0f0dc47e9f86af8a4977c5d55076ce7a91f" 1967 | dependencies: 1968 | is-observable "^0.2.0" 1969 | symbol-observable "^1.0.4" 1970 | 1971 | once@^1.3.0, once@^1.3.3: 1972 | version "1.4.0" 1973 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1974 | dependencies: 1975 | wrappy "1" 1976 | 1977 | onetime@^2.0.0: 1978 | version "2.0.1" 1979 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 1980 | dependencies: 1981 | mimic-fn "^1.0.0" 1982 | 1983 | option-chain@^1.0.0: 1984 | version "1.0.0" 1985 | resolved "https://registry.yarnpkg.com/option-chain/-/option-chain-1.0.0.tgz#938d73bd4e1783f948d34023644ada23669e30f2" 1986 | 1987 | os-homedir@^1.0.0: 1988 | version "1.0.2" 1989 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1990 | 1991 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 1992 | version "1.0.2" 1993 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1994 | 1995 | osenv@^0.1.4: 1996 | version "0.1.5" 1997 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 1998 | dependencies: 1999 | os-homedir "^1.0.0" 2000 | os-tmpdir "^1.0.0" 2001 | 2002 | p-finally@^1.0.0: 2003 | version "1.0.0" 2004 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2005 | 2006 | p-limit@^1.1.0: 2007 | version "1.2.0" 2008 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.2.0.tgz#0e92b6bedcb59f022c13d0f1949dc82d15909f1c" 2009 | dependencies: 2010 | p-try "^1.0.0" 2011 | 2012 | p-locate@^2.0.0: 2013 | version "2.0.0" 2014 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2015 | dependencies: 2016 | p-limit "^1.1.0" 2017 | 2018 | p-try@^1.0.0: 2019 | version "1.0.0" 2020 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 2021 | 2022 | package-hash@^1.2.0: 2023 | version "1.2.0" 2024 | resolved "https://registry.yarnpkg.com/package-hash/-/package-hash-1.2.0.tgz#003e56cd57b736a6ed6114cc2b81542672770e44" 2025 | dependencies: 2026 | md5-hex "^1.3.0" 2027 | 2028 | package-hash@^2.0.0: 2029 | version "2.0.0" 2030 | resolved "https://registry.yarnpkg.com/package-hash/-/package-hash-2.0.0.tgz#78ae326c89e05a4d813b68601977af05c00d2a0d" 2031 | dependencies: 2032 | graceful-fs "^4.1.11" 2033 | lodash.flattendeep "^4.4.0" 2034 | md5-hex "^2.0.0" 2035 | release-zalgo "^1.0.0" 2036 | 2037 | package-json@^4.0.0: 2038 | version "4.0.1" 2039 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed" 2040 | dependencies: 2041 | got "^6.7.1" 2042 | registry-auth-token "^3.0.1" 2043 | registry-url "^3.0.3" 2044 | semver "^5.1.0" 2045 | 2046 | parse-glob@^3.0.4: 2047 | version "3.0.4" 2048 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2049 | dependencies: 2050 | glob-base "^0.3.0" 2051 | is-dotfile "^1.0.0" 2052 | is-extglob "^1.0.0" 2053 | is-glob "^2.0.0" 2054 | 2055 | parse-json@^2.2.0: 2056 | version "2.2.0" 2057 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2058 | dependencies: 2059 | error-ex "^1.2.0" 2060 | 2061 | parse-json@^4.0.0: 2062 | version "4.0.0" 2063 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" 2064 | dependencies: 2065 | error-ex "^1.3.1" 2066 | json-parse-better-errors "^1.0.1" 2067 | 2068 | parse-ms@^0.1.0: 2069 | version "0.1.2" 2070 | resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-0.1.2.tgz#dd3fa25ed6c2efc7bdde12ad9b46c163aa29224e" 2071 | 2072 | parse-ms@^1.0.0: 2073 | version "1.0.1" 2074 | resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-1.0.1.tgz#56346d4749d78f23430ca0c713850aef91aa361d" 2075 | 2076 | path-exists@^2.0.0: 2077 | version "2.1.0" 2078 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2079 | dependencies: 2080 | pinkie-promise "^2.0.0" 2081 | 2082 | path-exists@^3.0.0: 2083 | version "3.0.0" 2084 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2085 | 2086 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 2087 | version "1.0.1" 2088 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2089 | 2090 | path-is-inside@^1.0.1: 2091 | version "1.0.2" 2092 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2093 | 2094 | path-key@^2.0.0: 2095 | version "2.0.1" 2096 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2097 | 2098 | path-type@^1.0.0: 2099 | version "1.1.0" 2100 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2101 | dependencies: 2102 | graceful-fs "^4.1.2" 2103 | pify "^2.0.0" 2104 | pinkie-promise "^2.0.0" 2105 | 2106 | path-type@^2.0.0: 2107 | version "2.0.0" 2108 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 2109 | dependencies: 2110 | pify "^2.0.0" 2111 | 2112 | performance-now@^0.2.0: 2113 | version "0.2.0" 2114 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2115 | 2116 | pify@^2.0.0: 2117 | version "2.3.0" 2118 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2119 | 2120 | pify@^3.0.0: 2121 | version "3.0.0" 2122 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 2123 | 2124 | pinkie-promise@^1.0.0: 2125 | version "1.0.0" 2126 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-1.0.0.tgz#d1da67f5482563bb7cf57f286ae2822ecfbf3670" 2127 | dependencies: 2128 | pinkie "^1.0.0" 2129 | 2130 | pinkie-promise@^2.0.0: 2131 | version "2.0.1" 2132 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2133 | dependencies: 2134 | pinkie "^2.0.0" 2135 | 2136 | pinkie@^1.0.0: 2137 | version "1.0.0" 2138 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-1.0.0.tgz#5a47f28ba1015d0201bda7bf0f358e47bec8c7e4" 2139 | 2140 | pinkie@^2.0.0: 2141 | version "2.0.4" 2142 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2143 | 2144 | pkg-conf@^2.0.0: 2145 | version "2.1.0" 2146 | resolved "https://registry.yarnpkg.com/pkg-conf/-/pkg-conf-2.1.0.tgz#2126514ca6f2abfebd168596df18ba57867f0058" 2147 | dependencies: 2148 | find-up "^2.0.0" 2149 | load-json-file "^4.0.0" 2150 | 2151 | pkg-dir@^2.0.0: 2152 | version "2.0.0" 2153 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" 2154 | dependencies: 2155 | find-up "^2.1.0" 2156 | 2157 | plur@^2.0.0, plur@^2.1.2: 2158 | version "2.1.2" 2159 | resolved "https://registry.yarnpkg.com/plur/-/plur-2.1.2.tgz#7482452c1a0f508e3e344eaec312c91c29dc655a" 2160 | dependencies: 2161 | irregular-plurals "^1.0.0" 2162 | 2163 | prepend-http@^1.0.1: 2164 | version "1.0.4" 2165 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 2166 | 2167 | preserve@^0.2.0: 2168 | version "0.2.0" 2169 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2170 | 2171 | pretty-ms@^0.2.1: 2172 | version "0.2.2" 2173 | resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-0.2.2.tgz#da879a682ff33a37011046f13d627f67c73b84f6" 2174 | dependencies: 2175 | parse-ms "^0.1.0" 2176 | 2177 | pretty-ms@^3.0.0: 2178 | version "3.1.0" 2179 | resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-3.1.0.tgz#e9cac9c76bf6ee52fe942dd9c6c4213153b12881" 2180 | dependencies: 2181 | parse-ms "^1.0.0" 2182 | plur "^2.1.2" 2183 | 2184 | private@^0.1.7: 2185 | version "0.1.8" 2186 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 2187 | 2188 | process-nextick-args@~2.0.0: 2189 | version "2.0.0" 2190 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 2191 | 2192 | pseudomap@^1.0.2: 2193 | version "1.0.2" 2194 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2195 | 2196 | punycode@^1.4.1: 2197 | version "1.4.1" 2198 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2199 | 2200 | qs@~6.4.0: 2201 | version "6.4.0" 2202 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2203 | 2204 | randomatic@^1.1.3: 2205 | version "1.1.7" 2206 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 2207 | dependencies: 2208 | is-number "^3.0.0" 2209 | kind-of "^4.0.0" 2210 | 2211 | rc@^1.0.1, rc@^1.1.6, rc@^1.1.7: 2212 | version "1.2.5" 2213 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.5.tgz#275cd687f6e3b36cc756baa26dfee80a790301fd" 2214 | dependencies: 2215 | deep-extend "~0.4.0" 2216 | ini "~1.3.0" 2217 | minimist "^1.2.0" 2218 | strip-json-comments "~2.0.1" 2219 | 2220 | read-pkg-up@^1.0.1: 2221 | version "1.0.1" 2222 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2223 | dependencies: 2224 | find-up "^1.0.0" 2225 | read-pkg "^1.0.0" 2226 | 2227 | read-pkg-up@^2.0.0: 2228 | version "2.0.0" 2229 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 2230 | dependencies: 2231 | find-up "^2.0.0" 2232 | read-pkg "^2.0.0" 2233 | 2234 | read-pkg@^1.0.0: 2235 | version "1.1.0" 2236 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2237 | dependencies: 2238 | load-json-file "^1.0.0" 2239 | normalize-package-data "^2.3.2" 2240 | path-type "^1.0.0" 2241 | 2242 | read-pkg@^2.0.0: 2243 | version "2.0.0" 2244 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 2245 | dependencies: 2246 | load-json-file "^2.0.0" 2247 | normalize-package-data "^2.3.2" 2248 | path-type "^2.0.0" 2249 | 2250 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.1.5: 2251 | version "2.3.4" 2252 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.4.tgz#c946c3f47fa7d8eabc0b6150f4a12f69a4574071" 2253 | dependencies: 2254 | core-util-is "~1.0.0" 2255 | inherits "~2.0.3" 2256 | isarray "~1.0.0" 2257 | process-nextick-args "~2.0.0" 2258 | safe-buffer "~5.1.1" 2259 | string_decoder "~1.0.3" 2260 | util-deprecate "~1.0.1" 2261 | 2262 | readdirp@^2.0.0: 2263 | version "2.1.0" 2264 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2265 | dependencies: 2266 | graceful-fs "^4.1.2" 2267 | minimatch "^3.0.2" 2268 | readable-stream "^2.0.2" 2269 | set-immediate-shim "^1.0.1" 2270 | 2271 | redent@^1.0.0: 2272 | version "1.0.0" 2273 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 2274 | dependencies: 2275 | indent-string "^2.1.0" 2276 | strip-indent "^1.0.1" 2277 | 2278 | regenerate@^1.2.1: 2279 | version "1.3.3" 2280 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f" 2281 | 2282 | regenerator-runtime@^0.11.0: 2283 | version "0.11.1" 2284 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 2285 | 2286 | regex-cache@^0.4.2: 2287 | version "0.4.4" 2288 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2289 | dependencies: 2290 | is-equal-shallow "^0.1.3" 2291 | 2292 | regexpu-core@^2.0.0: 2293 | version "2.0.0" 2294 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2295 | dependencies: 2296 | regenerate "^1.2.1" 2297 | regjsgen "^0.2.0" 2298 | regjsparser "^0.1.4" 2299 | 2300 | registry-auth-token@^3.0.1: 2301 | version "3.3.2" 2302 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.2.tgz#851fd49038eecb586911115af845260eec983f20" 2303 | dependencies: 2304 | rc "^1.1.6" 2305 | safe-buffer "^5.0.1" 2306 | 2307 | registry-url@^3.0.3: 2308 | version "3.1.0" 2309 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 2310 | dependencies: 2311 | rc "^1.0.1" 2312 | 2313 | regjsgen@^0.2.0: 2314 | version "0.2.0" 2315 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2316 | 2317 | regjsparser@^0.1.4: 2318 | version "0.1.5" 2319 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2320 | dependencies: 2321 | jsesc "~0.5.0" 2322 | 2323 | release-zalgo@^1.0.0: 2324 | version "1.0.0" 2325 | resolved "https://registry.yarnpkg.com/release-zalgo/-/release-zalgo-1.0.0.tgz#09700b7e5074329739330e535c5a90fb67851730" 2326 | dependencies: 2327 | es6-error "^4.0.1" 2328 | 2329 | remove-trailing-separator@^1.0.1: 2330 | version "1.1.0" 2331 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2332 | 2333 | repeat-element@^1.1.2: 2334 | version "1.1.2" 2335 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2336 | 2337 | repeat-string@^1.5.2: 2338 | version "1.6.1" 2339 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2340 | 2341 | repeating@^2.0.0: 2342 | version "2.0.1" 2343 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2344 | dependencies: 2345 | is-finite "^1.0.0" 2346 | 2347 | request@2.81.0: 2348 | version "2.81.0" 2349 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2350 | dependencies: 2351 | aws-sign2 "~0.6.0" 2352 | aws4 "^1.2.1" 2353 | caseless "~0.12.0" 2354 | combined-stream "~1.0.5" 2355 | extend "~3.0.0" 2356 | forever-agent "~0.6.1" 2357 | form-data "~2.1.1" 2358 | har-validator "~4.2.1" 2359 | hawk "~3.1.3" 2360 | http-signature "~1.1.0" 2361 | is-typedarray "~1.0.0" 2362 | isstream "~0.1.2" 2363 | json-stringify-safe "~5.0.1" 2364 | mime-types "~2.1.7" 2365 | oauth-sign "~0.8.1" 2366 | performance-now "^0.2.0" 2367 | qs "~6.4.0" 2368 | safe-buffer "^5.0.1" 2369 | stringstream "~0.0.4" 2370 | tough-cookie "~2.3.0" 2371 | tunnel-agent "^0.6.0" 2372 | uuid "^3.0.0" 2373 | 2374 | require-precompiled@^0.1.0: 2375 | version "0.1.0" 2376 | resolved "https://registry.yarnpkg.com/require-precompiled/-/require-precompiled-0.1.0.tgz#5a1b52eb70ebed43eb982e974c85ab59571e56fa" 2377 | 2378 | resolve-cwd@^2.0.0: 2379 | version "2.0.0" 2380 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" 2381 | dependencies: 2382 | resolve-from "^3.0.0" 2383 | 2384 | resolve-from@^3.0.0: 2385 | version "3.0.0" 2386 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" 2387 | 2388 | restore-cursor@^2.0.0: 2389 | version "2.0.0" 2390 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 2391 | dependencies: 2392 | onetime "^2.0.0" 2393 | signal-exit "^3.0.2" 2394 | 2395 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1: 2396 | version "2.6.2" 2397 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2398 | dependencies: 2399 | glob "^7.0.5" 2400 | 2401 | safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2402 | version "5.1.1" 2403 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2404 | 2405 | semver-diff@^2.0.0: 2406 | version "2.1.0" 2407 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 2408 | dependencies: 2409 | semver "^5.0.3" 2410 | 2411 | "semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, semver@^5.4.1: 2412 | version "5.5.0" 2413 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 2414 | 2415 | serialize-error@^2.1.0: 2416 | version "2.1.0" 2417 | resolved "https://registry.yarnpkg.com/serialize-error/-/serialize-error-2.1.0.tgz#50b679d5635cdf84667bdc8e59af4e5b81d5f60a" 2418 | 2419 | set-blocking@~2.0.0: 2420 | version "2.0.0" 2421 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2422 | 2423 | set-immediate-shim@^1.0.1: 2424 | version "1.0.1" 2425 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2426 | 2427 | shebang-command@^1.2.0: 2428 | version "1.2.0" 2429 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2430 | dependencies: 2431 | shebang-regex "^1.0.0" 2432 | 2433 | shebang-regex@^1.0.0: 2434 | version "1.0.0" 2435 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2436 | 2437 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2438 | version "3.0.2" 2439 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2440 | 2441 | slash@^1.0.0: 2442 | version "1.0.0" 2443 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2444 | 2445 | slice-ansi@^1.0.0: 2446 | version "1.0.0" 2447 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" 2448 | dependencies: 2449 | is-fullwidth-code-point "^2.0.0" 2450 | 2451 | slide@^1.1.5: 2452 | version "1.1.6" 2453 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 2454 | 2455 | sntp@1.x.x: 2456 | version "1.0.9" 2457 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2458 | dependencies: 2459 | hoek "2.x.x" 2460 | 2461 | sort-keys@^2.0.0: 2462 | version "2.0.0" 2463 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-2.0.0.tgz#658535584861ec97d730d6cf41822e1f56684128" 2464 | dependencies: 2465 | is-plain-obj "^1.0.0" 2466 | 2467 | source-map-support@^0.4.15: 2468 | version "0.4.18" 2469 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 2470 | dependencies: 2471 | source-map "^0.5.6" 2472 | 2473 | source-map-support@^0.5.0: 2474 | version "0.5.3" 2475 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.3.tgz#2b3d5fff298cfa4d1afd7d4352d569e9a0158e76" 2476 | dependencies: 2477 | source-map "^0.6.0" 2478 | 2479 | source-map@^0.5.0, source-map@^0.5.6, source-map@^0.5.7: 2480 | version "0.5.7" 2481 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2482 | 2483 | source-map@^0.6.0: 2484 | version "0.6.1" 2485 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2486 | 2487 | spdx-correct@~1.0.0: 2488 | version "1.0.2" 2489 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2490 | dependencies: 2491 | spdx-license-ids "^1.0.2" 2492 | 2493 | spdx-expression-parse@~1.0.0: 2494 | version "1.0.4" 2495 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2496 | 2497 | spdx-license-ids@^1.0.2: 2498 | version "1.2.2" 2499 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2500 | 2501 | sprintf-js@~1.0.2: 2502 | version "1.0.3" 2503 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2504 | 2505 | sshpk@^1.7.0: 2506 | version "1.13.1" 2507 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 2508 | dependencies: 2509 | asn1 "~0.2.3" 2510 | assert-plus "^1.0.0" 2511 | dashdash "^1.12.0" 2512 | getpass "^0.1.1" 2513 | optionalDependencies: 2514 | bcrypt-pbkdf "^1.0.0" 2515 | ecc-jsbn "~0.1.1" 2516 | jsbn "~0.1.0" 2517 | tweetnacl "~0.14.0" 2518 | 2519 | stack-utils@^1.0.1: 2520 | version "1.0.1" 2521 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.1.tgz#d4f33ab54e8e38778b0ca5cfd3b3afb12db68620" 2522 | 2523 | string-width@^1.0.1, string-width@^1.0.2: 2524 | version "1.0.2" 2525 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2526 | dependencies: 2527 | code-point-at "^1.0.0" 2528 | is-fullwidth-code-point "^1.0.0" 2529 | strip-ansi "^3.0.0" 2530 | 2531 | string-width@^2.0.0, string-width@^2.1.1: 2532 | version "2.1.1" 2533 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2534 | dependencies: 2535 | is-fullwidth-code-point "^2.0.0" 2536 | strip-ansi "^4.0.0" 2537 | 2538 | string_decoder@~1.0.3: 2539 | version "1.0.3" 2540 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 2541 | dependencies: 2542 | safe-buffer "~5.1.0" 2543 | 2544 | stringstream@~0.0.4: 2545 | version "0.0.5" 2546 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2547 | 2548 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2549 | version "3.0.1" 2550 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2551 | dependencies: 2552 | ansi-regex "^2.0.0" 2553 | 2554 | strip-ansi@^4.0.0: 2555 | version "4.0.0" 2556 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2557 | dependencies: 2558 | ansi-regex "^3.0.0" 2559 | 2560 | strip-ansi@~0.1.0: 2561 | version "0.1.1" 2562 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-0.1.1.tgz#39e8a98d044d150660abe4a6808acf70bb7bc991" 2563 | 2564 | strip-bom-buf@^1.0.0: 2565 | version "1.0.0" 2566 | resolved "https://registry.yarnpkg.com/strip-bom-buf/-/strip-bom-buf-1.0.0.tgz#1cb45aaf57530f4caf86c7f75179d2c9a51dd572" 2567 | dependencies: 2568 | is-utf8 "^0.2.1" 2569 | 2570 | strip-bom@^2.0.0: 2571 | version "2.0.0" 2572 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2573 | dependencies: 2574 | is-utf8 "^0.2.0" 2575 | 2576 | strip-bom@^3.0.0: 2577 | version "3.0.0" 2578 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2579 | 2580 | strip-eof@^1.0.0: 2581 | version "1.0.0" 2582 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 2583 | 2584 | strip-indent@^1.0.1: 2585 | version "1.0.1" 2586 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 2587 | dependencies: 2588 | get-stdin "^4.0.1" 2589 | 2590 | strip-json-comments@~2.0.1: 2591 | version "2.0.1" 2592 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2593 | 2594 | supertap@^1.0.0: 2595 | version "1.0.0" 2596 | resolved "https://registry.yarnpkg.com/supertap/-/supertap-1.0.0.tgz#bd9751c7fafd68c68cf8222a29892206a119fa9e" 2597 | dependencies: 2598 | arrify "^1.0.1" 2599 | indent-string "^3.2.0" 2600 | js-yaml "^3.10.0" 2601 | serialize-error "^2.1.0" 2602 | strip-ansi "^4.0.0" 2603 | 2604 | supports-color@^2.0.0: 2605 | version "2.0.0" 2606 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2607 | 2608 | supports-color@^5.0.0, supports-color@^5.2.0: 2609 | version "5.2.0" 2610 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.2.0.tgz#b0d5333b1184dd3666cbe5aa0b45c5ac7ac17a4a" 2611 | dependencies: 2612 | has-flag "^3.0.0" 2613 | 2614 | symbol-observable@^0.2.2: 2615 | version "0.2.4" 2616 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-0.2.4.tgz#95a83db26186d6af7e7a18dbd9760a2f86d08f40" 2617 | 2618 | symbol-observable@^1.0.4, symbol-observable@^1.1.0: 2619 | version "1.2.0" 2620 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804" 2621 | 2622 | tar-pack@^3.4.0: 2623 | version "3.4.1" 2624 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 2625 | dependencies: 2626 | debug "^2.2.0" 2627 | fstream "^1.0.10" 2628 | fstream-ignore "^1.0.5" 2629 | once "^1.3.3" 2630 | readable-stream "^2.1.4" 2631 | rimraf "^2.5.1" 2632 | tar "^2.2.1" 2633 | uid-number "^0.0.6" 2634 | 2635 | tar@^2.2.1: 2636 | version "2.2.1" 2637 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 2638 | dependencies: 2639 | block-stream "*" 2640 | fstream "^1.0.2" 2641 | inherits "2" 2642 | 2643 | term-size@^1.2.0: 2644 | version "1.2.0" 2645 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69" 2646 | dependencies: 2647 | execa "^0.7.0" 2648 | 2649 | text-table@^0.2.0: 2650 | version "0.2.0" 2651 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 2652 | 2653 | through2@^2.0.0: 2654 | version "2.0.3" 2655 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 2656 | dependencies: 2657 | readable-stream "^2.1.5" 2658 | xtend "~4.0.1" 2659 | 2660 | time-zone@^1.0.0: 2661 | version "1.0.0" 2662 | resolved "https://registry.yarnpkg.com/time-zone/-/time-zone-1.0.0.tgz#99c5bf55958966af6d06d83bdf3800dc82faec5d" 2663 | 2664 | timed-out@^4.0.0: 2665 | version "4.0.1" 2666 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" 2667 | 2668 | to-fast-properties@^1.0.3: 2669 | version "1.0.3" 2670 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2671 | 2672 | tough-cookie@~2.3.0: 2673 | version "2.3.3" 2674 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 2675 | dependencies: 2676 | punycode "^1.4.1" 2677 | 2678 | trim-newlines@^1.0.0: 2679 | version "1.0.0" 2680 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 2681 | 2682 | trim-off-newlines@^1.0.1: 2683 | version "1.0.1" 2684 | resolved "https://registry.yarnpkg.com/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz#9f9ba9d9efa8764c387698bcbfeb2c848f11adb3" 2685 | 2686 | trim-right@^1.0.1: 2687 | version "1.0.1" 2688 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2689 | 2690 | tunnel-agent@^0.6.0: 2691 | version "0.6.0" 2692 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2693 | dependencies: 2694 | safe-buffer "^5.0.1" 2695 | 2696 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2697 | version "0.14.5" 2698 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2699 | 2700 | uid-number@^0.0.6: 2701 | version "0.0.6" 2702 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 2703 | 2704 | uid2@0.0.3: 2705 | version "0.0.3" 2706 | resolved "https://registry.yarnpkg.com/uid2/-/uid2-0.0.3.tgz#483126e11774df2f71b8b639dcd799c376162b82" 2707 | 2708 | unique-string@^1.0.0: 2709 | version "1.0.0" 2710 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" 2711 | dependencies: 2712 | crypto-random-string "^1.0.0" 2713 | 2714 | unique-temp-dir@^1.0.0: 2715 | version "1.0.0" 2716 | resolved "https://registry.yarnpkg.com/unique-temp-dir/-/unique-temp-dir-1.0.0.tgz#6dce95b2681ca003eebfb304a415f9cbabcc5385" 2717 | dependencies: 2718 | mkdirp "^0.5.1" 2719 | os-tmpdir "^1.0.1" 2720 | uid2 "0.0.3" 2721 | 2722 | unzip-response@^2.0.1: 2723 | version "2.0.1" 2724 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" 2725 | 2726 | update-notifier@^2.3.0: 2727 | version "2.3.0" 2728 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.3.0.tgz#4e8827a6bb915140ab093559d7014e3ebb837451" 2729 | dependencies: 2730 | boxen "^1.2.1" 2731 | chalk "^2.0.1" 2732 | configstore "^3.0.0" 2733 | import-lazy "^2.1.0" 2734 | is-installed-globally "^0.1.0" 2735 | is-npm "^1.0.0" 2736 | latest-version "^3.0.0" 2737 | semver-diff "^2.0.0" 2738 | xdg-basedir "^3.0.0" 2739 | 2740 | url-parse-lax@^1.0.0: 2741 | version "1.0.0" 2742 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" 2743 | dependencies: 2744 | prepend-http "^1.0.1" 2745 | 2746 | util-deprecate@~1.0.1: 2747 | version "1.0.2" 2748 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2749 | 2750 | uuid@^3.0.0: 2751 | version "3.2.1" 2752 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14" 2753 | 2754 | validate-npm-package-license@^3.0.1: 2755 | version "3.0.1" 2756 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 2757 | dependencies: 2758 | spdx-correct "~1.0.0" 2759 | spdx-expression-parse "~1.0.0" 2760 | 2761 | verror@1.10.0: 2762 | version "1.10.0" 2763 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 2764 | dependencies: 2765 | assert-plus "^1.0.0" 2766 | core-util-is "1.0.2" 2767 | extsprintf "^1.2.0" 2768 | 2769 | well-known-symbols@^1.0.0: 2770 | version "1.0.0" 2771 | resolved "https://registry.yarnpkg.com/well-known-symbols/-/well-known-symbols-1.0.0.tgz#73c78ae81a7726a8fa598e2880801c8b16225518" 2772 | 2773 | which@^1.2.9: 2774 | version "1.3.0" 2775 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 2776 | dependencies: 2777 | isexe "^2.0.0" 2778 | 2779 | wide-align@^1.1.0: 2780 | version "1.1.2" 2781 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 2782 | dependencies: 2783 | string-width "^1.0.2" 2784 | 2785 | widest-line@^2.0.0: 2786 | version "2.0.0" 2787 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-2.0.0.tgz#0142a4e8a243f8882c0233aa0e0281aa76152273" 2788 | dependencies: 2789 | string-width "^2.1.1" 2790 | 2791 | wrappy@1: 2792 | version "1.0.2" 2793 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2794 | 2795 | write-file-atomic@^1.1.4: 2796 | version "1.3.4" 2797 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.4.tgz#f807a4f0b1d9e913ae7a48112e6cc3af1991b45f" 2798 | dependencies: 2799 | graceful-fs "^4.1.11" 2800 | imurmurhash "^0.1.4" 2801 | slide "^1.1.5" 2802 | 2803 | write-file-atomic@^2.0.0: 2804 | version "2.3.0" 2805 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 2806 | dependencies: 2807 | graceful-fs "^4.1.11" 2808 | imurmurhash "^0.1.4" 2809 | signal-exit "^3.0.2" 2810 | 2811 | write-json-file@^2.2.0: 2812 | version "2.3.0" 2813 | resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-2.3.0.tgz#2b64c8a33004d54b8698c76d585a77ceb61da32f" 2814 | dependencies: 2815 | detect-indent "^5.0.0" 2816 | graceful-fs "^4.1.2" 2817 | make-dir "^1.0.0" 2818 | pify "^3.0.0" 2819 | sort-keys "^2.0.0" 2820 | write-file-atomic "^2.0.0" 2821 | 2822 | write-pkg@^3.1.0: 2823 | version "3.1.0" 2824 | resolved "https://registry.yarnpkg.com/write-pkg/-/write-pkg-3.1.0.tgz#030a9994cc9993d25b4e75a9f1a1923607291ce9" 2825 | dependencies: 2826 | sort-keys "^2.0.0" 2827 | write-json-file "^2.2.0" 2828 | 2829 | xdg-basedir@^3.0.0: 2830 | version "3.0.0" 2831 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" 2832 | 2833 | xtend@^4.0.0, xtend@~4.0.1: 2834 | version "4.0.1" 2835 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2836 | 2837 | yallist@^2.1.2: 2838 | version "2.1.2" 2839 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 2840 | --------------------------------------------------------------------------------