├── .bithoundrc ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── lib ├── index.js ├── index.test.e2e.js └── index.test.js ├── package.json └── yarn.lock /.bithoundrc: -------------------------------------------------------------------------------- 1 | { 2 | "test":[ 3 | "**.test.*js" 4 | ] 5 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | 6 | # Runtime data 7 | pids 8 | *.pid 9 | *.seed 10 | 11 | # Directory for instrumented libs generated by jscoverage/JSCover 12 | lib-cov 13 | 14 | # Coverage directory used by tools like istanbul 15 | coverage 16 | 17 | # nyc test coverage 18 | .nyc_output 19 | 20 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 21 | .grunt 22 | 23 | # node-waf configuration 24 | .lock-wscript 25 | 26 | # Compiled binary addons (http://nodejs.org/api/addons.html) 27 | build/Release 28 | 29 | # Dependency directories 30 | node_modules 31 | jspm_packages 32 | 33 | # Optional npm cache directory 34 | .npm 35 | 36 | # Optional REPL history 37 | .node_repl_history 38 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 4 4 | after_success: 5 | - npm run cover 6 | - bash <(curl -s https://codecov.io/bash) 7 | deploy: 8 | provider: npm 9 | email: tonybadguy+npm@gmail.com 10 | api_key: 11 | secure: YBuTaWDDEBt4F4hLGEpWQsVo1O5KzL/kO1DYtQzoWyW5ONqZExJ4tYFqnIYsLHMB/amax2IflckuzG16rpbx+exjL8b8hTwe/5UuqRmR+HwqwHIGQ6a3Eotr8+rHYlsqPfFeG4Ffcb0gIucmv+gU953iluCLJ8HysDLNpDmUwkq2jARlwYO37vqzEOlL7URgjVN5Xi9hvGUvaZkvMWpi6prmhrEDmNLSgW8ULtCEkHIApdMPkivhn3NGNT0iwSzEPDI8gIQ9NkSaAkWr3O8BnoFpr4lOQdMFll38/fbv67fF6lAxw5Mw/lSAnWL6HLdWO09K1irr38VdmgvBTKEv7JxlLLY4apGlDTPJkTDQXxm82hZymCwl4jK3Gx0jGbtQk7mnBbRLIJ/2awaK1pd27/IPNJP32LEuynIjdDuMOUdH0QOU6yXqr3us9YzO9+7EVWnGnklXK4UztOWywR84VlVuwmOtYCOL/WMje1amSeEB08qnmPx2EPlvHeQWvcyQRlkt5Jdc9sI0aejuSVv3jHy7W6tm7q/bmGpKS0nIquFrJ/kZ2jiC6+zSz5ldIBu/wWP7VqmDRvhkpIMx7y7F1XV2qzZ/qlRvwfGV8Wvti+rz6shrDx+qpYRTnRIF+/wnjqXKbFRGFoH2VEkbIdegg1jwCdoaBF9u8oBaefKucW0= 12 | on: 13 | tags: true 14 | repo: tonybadguy/yelp-fusion 15 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2016 tonybadguy 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # yelp-fusion 2 | [![npm version](https://badge.fury.io/js/yelp-fusion.svg)](https://badge.fury.io/js/yelp-fusion) [![Build Status](https://travis-ci.org/tonybadguy/yelp-fusion.svg?branch=master)](https://travis-ci.org/tonybadguy/yelp-fusion) [![codecov](https://codecov.io/gh/tonybadguy/yelp-fusion/branch/master/graph/badge.svg)](https://codecov.io/gh/tonybadguy/yelp-fusion) 3 | 4 | Yelp Fusion API client for Node.js with Promises 5 | 6 | Please refer to official Yelp documentation for request / response model details: 7 | https://www.yelp.com/developers/documentation/v3 8 | 9 | #### V3 Breaking Changes 10 | The following beta endpoints have been deprecated by the API since April 1, 2019. This library has been updated to reflect this change. 11 | * ```GET https://api.yelp.com/v3/businesses/matches/best``` 12 | * ```GET https://api.yelp.com/v3/businesses/matches/lookup``` 13 | 14 | See https://www.yelp.com/developers/documentation/v3/business_match for more info 15 | 16 | #### V2 Breaking Changes 17 | * ```yelp.accessToken()``` method is removed because OAuthV2 is being deprecated by the API. Use the new API Key in place of the token derived from client id and client secret. See https://www.yelp.com/developers/documentation/v3/authentication#where-is-my-client-secret-going 18 | 19 | ## Install NPM Package 20 | ``` 21 | npm install yelp-fusion --save 22 | ``` 23 | 24 |
25 | 26 | ## Table of Contents 27 | Business Endpoints: 28 | * [Business Search](#business-search) 29 | * [Phone](#phone-search) 30 | * [Delivery](#transaction-search) 31 | * [Business Details](#business-details) 32 | * [Match](#business-match) 33 | * [Reviews](#reviews) 34 | * [Autocomplete](#autocomplete) 35 | 36 | Event Endpoints: 37 | * [Event Lookup](#event-lookup) 38 | * [Event Search](#event-search) 39 | * [Featured Event](#featured-event) 40 | 41 | Category Endpoints: 42 | * [All Categories](#all-categories) 43 | * [Category Details](#category-details) 44 | 45 |
46 | 47 | ## Business Endpoints 48 | 49 | ### Business Search 50 | ```javascript 51 | 'use strict'; 52 | 53 | const yelp = require('yelp-fusion'); 54 | const client = yelp.client('YOUR_API_KEY'); 55 | 56 | client.search({ 57 | term: 'Four Barrel Coffee', 58 | location: 'san francisco, ca', 59 | }).then(response => { 60 | console.log(response.jsonBody.businesses[0].name); 61 | }).catch(e => { 62 | console.log(e); 63 | }); 64 | ``` 65 | 66 | ### Phone Search 67 | ```javascript 68 | 'use strict'; 69 | 70 | const yelp = require('yelp-fusion'); 71 | const client = yelp.client('YOUR_API_KEY'); 72 | 73 | client.phoneSearch({ 74 | phone: '+14157492060' 75 | }).then(response => { 76 | console.log(response.jsonBody.businesses[0].name); 77 | }).catch(e => { 78 | console.log(e); 79 | }); 80 | ``` 81 | 82 | ### Transaction Search 83 | ```javascript 84 | 'use strict'; 85 | 86 | const yelp = require('yelp-fusion'); 87 | const client = yelp.client('YOUR_API_KEY'); 88 | 89 | client.transactionSearch('delivery', { 90 | location: 'san diego' 91 | }).then(response => { 92 | console.log(response.jsonBody.businesses[0].name); 93 | }).catch(e => { 94 | console.log(e); 95 | }); 96 | ``` 97 | 98 | ### Business Details 99 | ```javascript 100 | 'use strict'; 101 | 102 | const yelp = require('yelp-fusion'); 103 | const client = yelp.client('YOUR_API_KEY'); 104 | 105 | client.business('gary-danko-san-francisco').then(response => { 106 | console.log(response.jsonBody.name); 107 | }).catch(e => { 108 | console.log(e); 109 | }); 110 | ``` 111 | 112 | ### Business Match 113 | ```javascript 114 | 'use strict'; 115 | 116 | const yelp = require('yelp-fusion'); 117 | const client = yelp.client('YOUR_API_KEY'); 118 | 119 | client.businessMatch({ 120 | name: 'Pannikin Coffee & Tea', 121 | address1: '510 N Coast Hwy 101', 122 | address2: 'Encinitas, CA 92024', 123 | city: 'Encinitas', 124 | state: 'CA', 125 | country: 'US' 126 | }).then(response => { 127 | console.log(response.jsonBody.businesses[0].id); 128 | }).catch(e => { 129 | console.log(e); 130 | }); 131 | ``` 132 | 133 | ### Reviews 134 | ```javascript 135 | 'use strict'; 136 | 137 | const yelp = require('yelp-fusion'); 138 | const client = yelp.client('YOUR_API_KEY'); 139 | 140 | client.reviews('gary-danko-san-francisco').then(response => { 141 | console.log(response.jsonBody.reviews[0].text); 142 | }).catch(e => { 143 | console.log(e); 144 | }); 145 | ``` 146 | 147 | ### Autocomplete 148 | ```javascript 149 | 'use strict'; 150 | 151 | const yelp = require('yelp-fusion'); 152 | const client = yelp.client('YOUR_API_KEY'); 153 | 154 | client.autocomplete({ 155 | text: 'pizza' 156 | }).then(response => { 157 | console.log(response.jsonBody.terms[0].text); 158 | }).catch(e => { 159 | console.log(e); 160 | }); 161 | ``` 162 |
163 | 164 | ## Event Endpoints 165 | 166 | ### Event Lookup 167 | ```javascript 168 | 'use strict'; 169 | 170 | const yelp = require('yelp-fusion'); 171 | const client = yelp.client('YOUR_API_KEY'); 172 | 173 | client.eventLookup("oakland-saucy-oakland-restaurant-pop-up").then(response => { 174 | console.log(response.jsonBody.description); 175 | }).catch(e => { 176 | console.log(e); 177 | }); 178 | ``` 179 | 180 | ### Event Search 181 | ```javascript 182 | 'use strict'; 183 | 184 | const yelp = require('yelp-fusion'); 185 | const client = yelp.client('YOUR_API_KEY'); 186 | 187 | client.eventSearch({ 188 | categories: 2, 189 | is_free: true, 190 | location: 'claremont, ca' 191 | }).then(response => { 192 | console.log(response.jsonBody.events[0].name); 193 | }).catch(e => { 194 | console.log(e); 195 | }); 196 | ``` 197 | 198 | ### Featured Event 199 | ```javascript 200 | 'use strict'; 201 | 202 | const yelp = require('yelp-fusion'); 203 | const client = yelp.client('YOUR_API_KEY'); 204 | 205 | client.featuredEvent({ 206 | location: 'claremont, ca' 207 | }).then(response => { 208 | console.log(response.jsonBody.description); 209 | }).catch(e => { 210 | console.log(e); 211 | }); 212 | ``` 213 |
214 | 215 | ## Category Endpoints 216 | 217 | ### All Categories 218 | ```javascript 219 | 'use strict'; 220 | 221 | const yelp = require('yelp-fusion'); 222 | const client = yelp.client('YOUR_API_KEY'); 223 | 224 | client.allCategories().then(response => { 225 | console.log(response.jsonBody.categories[0].alias); 226 | }).catch(e => { 227 | console.log(e); 228 | }); 229 | ``` 230 | 231 | ### Category Details 232 | ```javascript 233 | 'use strict'; 234 | 235 | const yelp = require('yelp-fusion'); 236 | const client = yelp.client('YOUR_API_KEY'); 237 | 238 | client.categoryDetails('3dprinting').then(response => { 239 | console.log(response.jsonBody.category.title); 240 | }).catch(e => { 241 | console.log(e); 242 | }); 243 | ``` 244 | 245 |
246 | 247 | ## Advanced Request Options -- SocketTimeout 248 | 249 | Socket Timeout will abort the request if the server doesn't complete the response within that time in milliseconds. 250 | 251 | ```javascript 252 | 'use strict'; 253 | 254 | const yelp = require('yelp-fusion'); 255 | const client = yelp.client('YOUR_API_KEY', { 256 | socketTimeout: 5000 257 | }); 258 | 259 | // or optionally 260 | // client.options.socketTimeout = 5000; 261 | ``` 262 | 263 | Additionally, the options object support all fields defined here: 264 | https://nodejs.org/api/http.html#http_http_request_options_callback 265 | -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const _send = require('@tonybadguy/call-me-maybe'); 4 | 5 | class YelpClient { 6 | constructor(apiKey, options){ 7 | this.apiKey = apiKey; 8 | this.options = {}; 9 | 10 | if(typeof options !== 'undefined'){ 11 | this.options = options; 12 | } 13 | } 14 | 15 | send(requestOptions){ 16 | const combinedOptions = Object.assign({}, requestOptions, this.options); 17 | return _send(combinedOptions); 18 | }; 19 | 20 | // BUSINESS ENDPOINTS 21 | 22 | search(parameters){ 23 | return this.send({ 24 | url: 'https://api.yelp.com/v3/businesses/search', 25 | query: parameters, 26 | bearerToken: this.apiKey 27 | }); 28 | } 29 | 30 | phoneSearch(parameters){ 31 | return this.send({ 32 | url: 'https://api.yelp.com/v3/businesses/search/phone', 33 | query: parameters, 34 | bearerToken: this.apiKey 35 | }); 36 | } 37 | 38 | transactionSearch(transactionType, parameters){ 39 | return this.send({ 40 | url: 'https://api.yelp.com/v3/transactions/{transaction_type}/search', 41 | urlParams:{ 42 | transaction_type: transactionType 43 | }, 44 | query: parameters, 45 | bearerToken: this.apiKey 46 | }); 47 | } 48 | 49 | business(id){ 50 | return this.send({ 51 | url: 'https://api.yelp.com/v3/businesses/{id}', 52 | urlParams:{ 53 | id: id 54 | }, 55 | bearerToken: this.apiKey 56 | }); 57 | } 58 | 59 | reviews(businessId){ 60 | return this.send({ 61 | url: 'https://api.yelp.com/v3/businesses/{id}/reviews', 62 | urlParams:{ 63 | id: businessId 64 | }, 65 | bearerToken: this.apiKey 66 | }); 67 | } 68 | 69 | autocomplete(parameters){ 70 | return this.send({ 71 | url: 'https://api.yelp.com/v3/autocomplete', 72 | query: parameters, 73 | bearerToken: this.apiKey 74 | }); 75 | } 76 | 77 | businessMatch(parameters){ 78 | return this.send({ 79 | url: 'https://api.yelp.com/v3/businesses/matches', 80 | query: parameters, 81 | bearerToken: this.apiKey 82 | }); 83 | } 84 | 85 | // EVENTS ENDPOINTS 86 | 87 | eventLookup(eventId, parameters){ 88 | return this.send({ 89 | url: 'https://api.yelp.com/v3/events/{id}', 90 | urlParams:{ 91 | id: eventId 92 | }, 93 | query:parameters, 94 | bearerToken: this.apiKey 95 | }); 96 | } 97 | 98 | eventSearch(parameters){ 99 | return this.send({ 100 | url: 'https://api.yelp.com/v3/events', 101 | query: parameters, 102 | bearerToken: this.apiKey 103 | }); 104 | } 105 | 106 | featuredEvent(parameters){ 107 | return this.send({ 108 | url: 'https://api.yelp.com/v3/events/featured', 109 | query: parameters, 110 | bearerToken: this.apiKey 111 | }); 112 | } 113 | 114 | // CATEGORIES ENDPOINTS 115 | 116 | allCategories(){ 117 | return this.send({ 118 | url: 'https://api.yelp.com/v3/categories', 119 | bearerToken: this.apiKey 120 | }); 121 | } 122 | 123 | categoryDetails(alias){ 124 | return this.send({ 125 | url: 'https://api.yelp.com/v3/categories/{alias}', 126 | urlParams:{ 127 | alias: alias 128 | }, 129 | bearerToken: this.apiKey 130 | }); 131 | } 132 | 133 | } 134 | 135 | const createClient = (apiKey, options) => { 136 | return new YelpClient(apiKey, options); 137 | }; 138 | 139 | module.exports = { 140 | client: createClient 141 | }; 142 | -------------------------------------------------------------------------------- /lib/index.test.e2e.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const _yelp = require('./index'); 4 | const _test = require('tap').test; 5 | 6 | const apiKey = process.env.TEST_YELP_API_KEY; 7 | 8 | _test('Search', assert =>{ 9 | const client = _yelp.client(apiKey); 10 | client.search({ 11 | term:'Four Barrel Coffee', 12 | location: 'san francisco, CA' 13 | }).then(response => { 14 | assert.true(response.jsonBody.businesses); 15 | assert.end(); 16 | }).catch(e =>{ 17 | assert.fail(e); 18 | }); 19 | }); 20 | 21 | _test('Phone search', assert =>{ 22 | const client = _yelp.client(apiKey); 23 | client.phoneSearch({ 24 | phone:'+14157492060' 25 | }).then(response => { 26 | assert.equals(response.jsonBody.businesses[0].alias, 'gary-danko-san-francisco'); 27 | assert.end(); 28 | }).catch(e =>{ 29 | assert.fail(e); 30 | }); 31 | }); 32 | 33 | _test('Transaction search', assert =>{ 34 | const client = _yelp.client(apiKey); 35 | client.transactionSearch('delivery', { 36 | location:'san diego' 37 | }).then(response => { 38 | assert.true(response.jsonBody.businesses); 39 | assert.end(); 40 | }).catch(e =>{ 41 | assert.fail(e); 42 | }); 43 | }); 44 | 45 | _test('Business', assert =>{ 46 | const client = _yelp.client(apiKey); 47 | client.business('gary-danko-san-francisco').then(response => { 48 | assert.equals(response.jsonBody.name, 'Gary Danko'); 49 | assert.end(); 50 | }).catch(e =>{ 51 | assert.fail(e); 52 | }); 53 | }); 54 | 55 | _test('Reviews', assert =>{ 56 | const client = _yelp.client(apiKey); 57 | client.reviews('gary-danko-san-francisco').then(response => { 58 | assert.true(response.jsonBody.reviews); 59 | assert.end(); 60 | }).catch(e =>{ 61 | assert.fail(e); 62 | }); 63 | }); 64 | 65 | _test('Autocomplete', assert =>{ 66 | const client = _yelp.client(apiKey); 67 | client.autocomplete({ 68 | text:'pizza' 69 | }).then(response => { 70 | assert.true(response.jsonBody.terms); 71 | assert.end(); 72 | }).catch(e =>{ 73 | assert.fail(e); 74 | }); 75 | }); 76 | 77 | _test('Business match', assert =>{ 78 | const client = _yelp.client(apiKey); 79 | client.businessMatch({ 80 | name: 'Pannikin Coffee & Tea', 81 | address1: '510 N Coast Hwy 101, Encinitas, CA 92024', 82 | city: 'Encinitas', 83 | state: 'CA', 84 | country: 'US' 85 | }).then(response => { 86 | assert.true(response.jsonBody.businesses[0].id, 'pannikin-coffee-and-tea-encinitas'); 87 | assert.end(); 88 | }).catch(e =>{ 89 | assert.fail(e); 90 | }); 91 | }); 92 | 93 | _test('Event search', assert =>{ 94 | const client = _yelp.client(apiKey); 95 | client.eventSearch({ 96 | categories:2, 97 | is_free:true, 98 | location:'claremont, ca' 99 | }).then(response => { 100 | assert.true(response.jsonBody.events); 101 | assert.end(); 102 | }).catch(e =>{ 103 | assert.fail(e); 104 | }); 105 | }); 106 | 107 | _test('Event Lookup', assert =>{ 108 | const client = _yelp.client(apiKey); 109 | 110 | client.eventLookup("oakland-saucy-oakland-restaurant-pop-up", { 111 | locale: "en_US" 112 | }).then(response => { 113 | assert.equals(response.jsonBody.id, "oakland-saucy-oakland-restaurant-pop-up"); 114 | assert.end(); 115 | }).catch(e => { 116 | assert.fail(e); 117 | }); 118 | }); 119 | 120 | _test('Featured Event', assert =>{ 121 | const client = _yelp.client(apiKey); 122 | 123 | client.featuredEvent({ 124 | location: 'claremont, ca' 125 | }).then(response => { 126 | assert.end(); 127 | }).catch(e => { 128 | assert.fail(e); 129 | }); 130 | }); 131 | 132 | _test('All Categories', assert =>{ 133 | const client = _yelp.client(apiKey); 134 | 135 | client.allCategories().then(response => { 136 | assert.end(); 137 | }).catch(e => { 138 | assert.fail(e); 139 | }); 140 | }); 141 | 142 | _test('Category Details', assert =>{ 143 | const client = _yelp.client(apiKey); 144 | 145 | client.categoryDetails('3dprinting').then(response => { 146 | assert.end(); 147 | }).catch(e => { 148 | assert.fail(e); 149 | }); 150 | }); -------------------------------------------------------------------------------- /lib/index.test.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const _test = require('tap').test; 4 | const _proxyquire = require('proxyquire'); 5 | 6 | _test('Default options are combined with request', assert => { 7 | 8 | assert.plan(2); 9 | 10 | const yelp = _proxyquire('./index', { 11 | '@tonybadguy/call-me-maybe': (request)=>new Promise((resolve, reject) => { 12 | assert.equal(request.aDefaultOption, 123); 13 | assert.equal(request.aRequestOption, 456); 14 | assert.end(); 15 | resolve({}); 16 | }) 17 | }); 18 | 19 | const client = yelp.client("myapikey"); 20 | client.options = { 21 | aDefaultOption:123 22 | }; 23 | 24 | client.send({ 25 | aRequestOption:456 26 | }).then(response => {}); 27 | }); 28 | 29 | _test('Constructor default options are combined with request', assert => { 30 | 31 | assert.plan(2); 32 | 33 | const yelp = _proxyquire('./index', { 34 | '@tonybadguy/call-me-maybe': (request)=>new Promise((resolve, reject) => { 35 | assert.equal(request.aDefaultOption, 123); 36 | assert.equal(request.aRequestOption, 456); 37 | assert.end(); 38 | resolve({}); 39 | }) 40 | }); 41 | 42 | const client = yelp.client("myapikey", { 43 | aDefaultOption:123 44 | }); 45 | 46 | client.send({ 47 | aRequestOption:456 48 | }).then(response => {}); 49 | }); 50 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "yelp-fusion", 3 | "version": "3.0.0", 4 | "description": "Yelp Fusion API client for Node.js", 5 | "main": "lib/index.js", 6 | "scripts": { 7 | "test": "tap ./lib/*.test.*js --coverage", 8 | "cover": "tap --coverage-report=lcov" 9 | }, 10 | "repository": { 11 | "type": "git", 12 | "url": "tonybadguy/yelp-fusion" 13 | }, 14 | "keywords": [ 15 | "yelp", 16 | "fusion", 17 | "REST", 18 | "client", 19 | "api" 20 | ], 21 | "author": "Tony Liu", 22 | "license": "MIT", 23 | "dependencies": { 24 | "@tonybadguy/call-me-maybe": "^2.1.1" 25 | }, 26 | "devDependencies": { 27 | "proxyquire": "^2.1.0", 28 | "tap": "^11.0.0" 29 | }, 30 | "nyc": { 31 | "exclude": [ 32 | "lib/*.test.*js" 33 | ] 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@tonybadguy/call-me-maybe@^2.0.1": 6 | version "2.1.0" 7 | resolved "https://registry.yarnpkg.com/@tonybadguy/call-me-maybe/-/call-me-maybe-2.1.0.tgz#11047ab186a83dce606780958c1656d37b5446e7" 8 | dependencies: 9 | caseless "^0.11.0" 10 | error "^7.0.2" 11 | small-request "^2.0.2" 12 | string-template "^1.0.0" 13 | 14 | ajv@^5.3.0: 15 | version "5.5.2" 16 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 17 | dependencies: 18 | co "^4.6.0" 19 | fast-deep-equal "^1.0.0" 20 | fast-json-stable-stringify "^2.0.0" 21 | json-schema-traverse "^0.3.0" 22 | 23 | ansi-regex@^2.0.0: 24 | version "2.1.1" 25 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 26 | 27 | ansi-regex@^3.0.0: 28 | version "3.0.0" 29 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 30 | 31 | ansi-styles@^2.2.1: 32 | version "2.2.1" 33 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 34 | 35 | append-transform@^0.4.0: 36 | version "0.4.0" 37 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 38 | dependencies: 39 | default-require-extensions "^1.0.0" 40 | 41 | archy@^1.0.0: 42 | version "1.0.0" 43 | resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" 44 | 45 | argparse@^1.0.7: 46 | version "1.0.10" 47 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 48 | dependencies: 49 | sprintf-js "~1.0.2" 50 | 51 | arr-diff@^2.0.0: 52 | version "2.0.0" 53 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 54 | dependencies: 55 | arr-flatten "^1.0.1" 56 | 57 | arr-diff@^4.0.0: 58 | version "4.0.0" 59 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 60 | 61 | arr-flatten@^1.0.1, arr-flatten@^1.1.0: 62 | version "1.1.0" 63 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 64 | 65 | arr-union@^3.1.0: 66 | version "3.1.0" 67 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 68 | 69 | array-unique@^0.2.1: 70 | version "0.2.1" 71 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 72 | 73 | array-unique@^0.3.2: 74 | version "0.3.2" 75 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 76 | 77 | arrify@^1.0.1: 78 | version "1.0.1" 79 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 80 | 81 | asn1@~0.2.3: 82 | version "0.2.4" 83 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" 84 | dependencies: 85 | safer-buffer "~2.1.0" 86 | 87 | assert-plus@1.0.0, assert-plus@^1.0.0: 88 | version "1.0.0" 89 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 90 | 91 | assign-symbols@^1.0.0: 92 | version "1.0.0" 93 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 94 | 95 | async@^2.5.0: 96 | version "2.6.1" 97 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.1.tgz#b245a23ca71930044ec53fa46aa00a3e87c6a610" 98 | dependencies: 99 | lodash "^4.17.10" 100 | 101 | asynckit@^0.4.0: 102 | version "0.4.0" 103 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 104 | 105 | atob@^2.1.1: 106 | version "2.1.2" 107 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" 108 | 109 | aws-sign2@~0.7.0: 110 | version "0.7.0" 111 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 112 | 113 | aws4@^1.8.0: 114 | version "1.8.0" 115 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.8.0.tgz#f0e003d9ca9e7f59c7a508945d7b2ef9a04a542f" 116 | 117 | babel-code-frame@^6.26.0: 118 | version "6.26.0" 119 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 120 | dependencies: 121 | chalk "^1.1.3" 122 | esutils "^2.0.2" 123 | js-tokens "^3.0.2" 124 | 125 | babel-generator@^6.18.0: 126 | version "6.26.1" 127 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" 128 | dependencies: 129 | babel-messages "^6.23.0" 130 | babel-runtime "^6.26.0" 131 | babel-types "^6.26.0" 132 | detect-indent "^4.0.0" 133 | jsesc "^1.3.0" 134 | lodash "^4.17.4" 135 | source-map "^0.5.7" 136 | trim-right "^1.0.1" 137 | 138 | babel-messages@^6.23.0: 139 | version "6.23.0" 140 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 141 | dependencies: 142 | babel-runtime "^6.22.0" 143 | 144 | babel-runtime@^6.22.0, babel-runtime@^6.26.0: 145 | version "6.26.0" 146 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 147 | dependencies: 148 | core-js "^2.4.0" 149 | regenerator-runtime "^0.11.0" 150 | 151 | babel-template@^6.16.0: 152 | version "6.26.0" 153 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 154 | dependencies: 155 | babel-runtime "^6.26.0" 156 | babel-traverse "^6.26.0" 157 | babel-types "^6.26.0" 158 | babylon "^6.18.0" 159 | lodash "^4.17.4" 160 | 161 | babel-traverse@^6.18.0, babel-traverse@^6.26.0: 162 | version "6.26.0" 163 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 164 | dependencies: 165 | babel-code-frame "^6.26.0" 166 | babel-messages "^6.23.0" 167 | babel-runtime "^6.26.0" 168 | babel-types "^6.26.0" 169 | babylon "^6.18.0" 170 | debug "^2.6.8" 171 | globals "^9.18.0" 172 | invariant "^2.2.2" 173 | lodash "^4.17.4" 174 | 175 | babel-types@^6.18.0, babel-types@^6.26.0: 176 | version "6.26.0" 177 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 178 | dependencies: 179 | babel-runtime "^6.26.0" 180 | esutils "^2.0.2" 181 | lodash "^4.17.4" 182 | to-fast-properties "^1.0.3" 183 | 184 | babylon@^6.18.0: 185 | version "6.18.0" 186 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 187 | 188 | balanced-match@^1.0.0: 189 | version "1.0.0" 190 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 191 | 192 | base@^0.11.1: 193 | version "0.11.2" 194 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 195 | dependencies: 196 | cache-base "^1.0.1" 197 | class-utils "^0.3.5" 198 | component-emitter "^1.2.1" 199 | define-property "^1.0.0" 200 | isobject "^3.0.1" 201 | mixin-deep "^1.2.0" 202 | pascalcase "^0.1.1" 203 | 204 | bcrypt-pbkdf@^1.0.0: 205 | version "1.0.2" 206 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" 207 | dependencies: 208 | tweetnacl "^0.14.3" 209 | 210 | bind-obj-methods@^2.0.0: 211 | version "2.0.0" 212 | resolved "https://registry.yarnpkg.com/bind-obj-methods/-/bind-obj-methods-2.0.0.tgz#0178140dbe7b7bb67dc74892ace59bc0247f06f0" 213 | 214 | bluebird@^3.5.1: 215 | version "3.5.2" 216 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.2.tgz#1be0908e054a751754549c270489c1505d4ab15a" 217 | 218 | brace-expansion@^1.1.7: 219 | version "1.1.11" 220 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 221 | dependencies: 222 | balanced-match "^1.0.0" 223 | concat-map "0.0.1" 224 | 225 | braces@^1.8.2: 226 | version "1.8.5" 227 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 228 | dependencies: 229 | expand-range "^1.8.1" 230 | preserve "^0.2.0" 231 | repeat-element "^1.1.2" 232 | 233 | braces@^2.3.1: 234 | version "2.3.2" 235 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" 236 | dependencies: 237 | arr-flatten "^1.1.0" 238 | array-unique "^0.3.2" 239 | extend-shallow "^2.0.1" 240 | fill-range "^4.0.0" 241 | isobject "^3.0.1" 242 | repeat-element "^1.1.2" 243 | snapdragon "^0.8.1" 244 | snapdragon-node "^2.0.1" 245 | split-string "^3.0.2" 246 | to-regex "^3.0.1" 247 | 248 | buffer-from@^1.0.0: 249 | version "1.1.1" 250 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 251 | 252 | builtin-modules@^1.0.0: 253 | version "1.1.1" 254 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 255 | 256 | cache-base@^1.0.1: 257 | version "1.0.1" 258 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 259 | dependencies: 260 | collection-visit "^1.0.0" 261 | component-emitter "^1.2.1" 262 | get-value "^2.0.6" 263 | has-value "^1.0.0" 264 | isobject "^3.0.1" 265 | set-value "^2.0.0" 266 | to-object-path "^0.3.0" 267 | union-value "^1.0.0" 268 | unset-value "^1.0.0" 269 | 270 | caching-transform@^1.0.0: 271 | version "1.0.1" 272 | resolved "https://registry.yarnpkg.com/caching-transform/-/caching-transform-1.0.1.tgz#6dbdb2f20f8d8fbce79f3e94e9d1742dcdf5c0a1" 273 | dependencies: 274 | md5-hex "^1.2.0" 275 | mkdirp "^0.5.1" 276 | write-file-atomic "^1.1.4" 277 | 278 | camelcase@^4.1.0: 279 | version "4.1.0" 280 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 281 | 282 | caseless@^0.11.0: 283 | version "0.11.0" 284 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 285 | 286 | caseless@~0.12.0: 287 | version "0.12.0" 288 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 289 | 290 | chalk@^1.1.3: 291 | version "1.1.3" 292 | resolved "http://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 293 | dependencies: 294 | ansi-styles "^2.2.1" 295 | escape-string-regexp "^1.0.2" 296 | has-ansi "^2.0.0" 297 | strip-ansi "^3.0.0" 298 | supports-color "^2.0.0" 299 | 300 | class-utils@^0.3.5: 301 | version "0.3.6" 302 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 303 | dependencies: 304 | arr-union "^3.1.0" 305 | define-property "^0.2.5" 306 | isobject "^3.0.0" 307 | static-extend "^0.1.1" 308 | 309 | clean-yaml-object@^0.1.0: 310 | version "0.1.0" 311 | resolved "https://registry.yarnpkg.com/clean-yaml-object/-/clean-yaml-object-0.1.0.tgz#63fb110dc2ce1a84dc21f6d9334876d010ae8b68" 312 | 313 | cliui@^4.0.0: 314 | version "4.1.0" 315 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49" 316 | dependencies: 317 | string-width "^2.1.1" 318 | strip-ansi "^4.0.0" 319 | wrap-ansi "^2.0.0" 320 | 321 | co@^4.6.0: 322 | version "4.6.0" 323 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 324 | 325 | code-point-at@^1.0.0: 326 | version "1.1.0" 327 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 328 | 329 | collection-visit@^1.0.0: 330 | version "1.0.0" 331 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 332 | dependencies: 333 | map-visit "^1.0.0" 334 | object-visit "^1.0.0" 335 | 336 | color-support@^1.1.0: 337 | version "1.1.3" 338 | resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" 339 | 340 | combined-stream@1.0.6, combined-stream@~1.0.6: 341 | version "1.0.6" 342 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818" 343 | dependencies: 344 | delayed-stream "~1.0.0" 345 | 346 | commander@~2.17.1: 347 | version "2.17.1" 348 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf" 349 | 350 | commondir@^1.0.1: 351 | version "1.0.1" 352 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 353 | 354 | component-emitter@^1.2.1: 355 | version "1.2.1" 356 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 357 | 358 | concat-map@0.0.1: 359 | version "0.0.1" 360 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 361 | 362 | convert-source-map@^1.5.1: 363 | version "1.6.0" 364 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20" 365 | dependencies: 366 | safe-buffer "~5.1.1" 367 | 368 | copy-descriptor@^0.1.0: 369 | version "0.1.1" 370 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 371 | 372 | core-js@^2.4.0: 373 | version "2.5.7" 374 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.7.tgz#f972608ff0cead68b841a16a932d0b183791814e" 375 | 376 | core-util-is@1.0.2, core-util-is@~1.0.0: 377 | version "1.0.2" 378 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 379 | 380 | coveralls@^3.0.1: 381 | version "3.0.2" 382 | resolved "https://registry.yarnpkg.com/coveralls/-/coveralls-3.0.2.tgz#f5a0bcd90ca4e64e088b710fa8dda640aea4884f" 383 | dependencies: 384 | growl "~> 1.10.0" 385 | js-yaml "^3.11.0" 386 | lcov-parse "^0.0.10" 387 | log-driver "^1.2.7" 388 | minimist "^1.2.0" 389 | request "^2.85.0" 390 | 391 | cross-spawn@^4: 392 | version "4.0.2" 393 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41" 394 | dependencies: 395 | lru-cache "^4.0.1" 396 | which "^1.2.9" 397 | 398 | cross-spawn@^5.0.1: 399 | version "5.1.0" 400 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 401 | dependencies: 402 | lru-cache "^4.0.1" 403 | shebang-command "^1.2.0" 404 | which "^1.2.9" 405 | 406 | dashdash@^1.12.0: 407 | version "1.14.1" 408 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 409 | dependencies: 410 | assert-plus "^1.0.0" 411 | 412 | debug-log@^1.0.1: 413 | version "1.0.1" 414 | resolved "https://registry.yarnpkg.com/debug-log/-/debug-log-1.0.1.tgz#2307632d4c04382b8df8a32f70b895046d52745f" 415 | 416 | debug@^2.1.3, debug@^2.2.0, debug@^2.3.3, debug@^2.6.8: 417 | version "2.6.9" 418 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 419 | dependencies: 420 | ms "2.0.0" 421 | 422 | debug@^3.1.0: 423 | version "3.2.5" 424 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.5.tgz#c2418fbfd7a29f4d4f70ff4cea604d4b64c46407" 425 | dependencies: 426 | ms "^2.1.1" 427 | 428 | decamelize@^1.1.1: 429 | version "1.2.0" 430 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 431 | 432 | decode-uri-component@^0.2.0: 433 | version "0.2.0" 434 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 435 | 436 | default-require-extensions@^1.0.0: 437 | version "1.0.0" 438 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 439 | dependencies: 440 | strip-bom "^2.0.0" 441 | 442 | define-property@^0.2.5: 443 | version "0.2.5" 444 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 445 | dependencies: 446 | is-descriptor "^0.1.0" 447 | 448 | define-property@^1.0.0: 449 | version "1.0.0" 450 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 451 | dependencies: 452 | is-descriptor "^1.0.0" 453 | 454 | define-property@^2.0.2: 455 | version "2.0.2" 456 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 457 | dependencies: 458 | is-descriptor "^1.0.2" 459 | isobject "^3.0.1" 460 | 461 | delayed-stream@~1.0.0: 462 | version "1.0.0" 463 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 464 | 465 | detect-indent@^4.0.0: 466 | version "4.0.0" 467 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 468 | dependencies: 469 | repeating "^2.0.0" 470 | 471 | diff@^1.3.2: 472 | version "1.4.0" 473 | resolved "https://registry.yarnpkg.com/diff/-/diff-1.4.0.tgz#7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf" 474 | 475 | ecc-jsbn@~0.1.1: 476 | version "0.1.2" 477 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" 478 | dependencies: 479 | jsbn "~0.1.0" 480 | safer-buffer "^2.1.0" 481 | 482 | error-ex@^1.2.0: 483 | version "1.3.2" 484 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 485 | dependencies: 486 | is-arrayish "^0.2.1" 487 | 488 | error@^7.0.2: 489 | version "7.0.2" 490 | resolved "https://registry.yarnpkg.com/error/-/error-7.0.2.tgz#a5f75fff4d9926126ddac0ea5dc38e689153cb02" 491 | dependencies: 492 | string-template "~0.2.1" 493 | xtend "~4.0.0" 494 | 495 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.3: 496 | version "1.0.5" 497 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 498 | 499 | esprima@^4.0.0: 500 | version "4.0.1" 501 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 502 | 503 | esutils@^2.0.2: 504 | version "2.0.2" 505 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 506 | 507 | events-to-array@^1.0.1: 508 | version "1.1.2" 509 | resolved "https://registry.yarnpkg.com/events-to-array/-/events-to-array-1.1.2.tgz#2d41f563e1fe400ed4962fe1a4d5c6a7539df7f6" 510 | 511 | execa@^0.7.0: 512 | version "0.7.0" 513 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 514 | dependencies: 515 | cross-spawn "^5.0.1" 516 | get-stream "^3.0.0" 517 | is-stream "^1.1.0" 518 | npm-run-path "^2.0.0" 519 | p-finally "^1.0.0" 520 | signal-exit "^3.0.0" 521 | strip-eof "^1.0.0" 522 | 523 | expand-brackets@^0.1.4: 524 | version "0.1.5" 525 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 526 | dependencies: 527 | is-posix-bracket "^0.1.0" 528 | 529 | expand-brackets@^2.1.4: 530 | version "2.1.4" 531 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 532 | dependencies: 533 | debug "^2.3.3" 534 | define-property "^0.2.5" 535 | extend-shallow "^2.0.1" 536 | posix-character-classes "^0.1.0" 537 | regex-not "^1.0.0" 538 | snapdragon "^0.8.1" 539 | to-regex "^3.0.1" 540 | 541 | expand-range@^1.8.1: 542 | version "1.8.2" 543 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 544 | dependencies: 545 | fill-range "^2.1.0" 546 | 547 | extend-shallow@^2.0.1: 548 | version "2.0.1" 549 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 550 | dependencies: 551 | is-extendable "^0.1.0" 552 | 553 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 554 | version "3.0.2" 555 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 556 | dependencies: 557 | assign-symbols "^1.0.0" 558 | is-extendable "^1.0.1" 559 | 560 | extend@~3.0.2: 561 | version "3.0.2" 562 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 563 | 564 | extglob@^0.3.1: 565 | version "0.3.2" 566 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 567 | dependencies: 568 | is-extglob "^1.0.0" 569 | 570 | extglob@^2.0.4: 571 | version "2.0.4" 572 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 573 | dependencies: 574 | array-unique "^0.3.2" 575 | define-property "^1.0.0" 576 | expand-brackets "^2.1.4" 577 | extend-shallow "^2.0.1" 578 | fragment-cache "^0.2.1" 579 | regex-not "^1.0.0" 580 | snapdragon "^0.8.1" 581 | to-regex "^3.0.1" 582 | 583 | extsprintf@1.3.0: 584 | version "1.3.0" 585 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 586 | 587 | extsprintf@^1.2.0: 588 | version "1.4.0" 589 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 590 | 591 | fast-deep-equal@^1.0.0: 592 | version "1.1.0" 593 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" 594 | 595 | fast-json-stable-stringify@^2.0.0: 596 | version "2.0.0" 597 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 598 | 599 | filename-regex@^2.0.0: 600 | version "2.0.1" 601 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 602 | 603 | fill-keys@^1.0.2: 604 | version "1.0.2" 605 | resolved "https://registry.yarnpkg.com/fill-keys/-/fill-keys-1.0.2.tgz#9a8fa36f4e8ad634e3bf6b4f3c8882551452eb20" 606 | dependencies: 607 | is-object "~1.0.1" 608 | merge-descriptors "~1.0.0" 609 | 610 | fill-range@^2.1.0: 611 | version "2.2.4" 612 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565" 613 | dependencies: 614 | is-number "^2.1.0" 615 | isobject "^2.0.0" 616 | randomatic "^3.0.0" 617 | repeat-element "^1.1.2" 618 | repeat-string "^1.5.2" 619 | 620 | fill-range@^4.0.0: 621 | version "4.0.0" 622 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 623 | dependencies: 624 | extend-shallow "^2.0.1" 625 | is-number "^3.0.0" 626 | repeat-string "^1.6.1" 627 | to-regex-range "^2.1.0" 628 | 629 | find-cache-dir@^0.1.1: 630 | version "0.1.1" 631 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" 632 | dependencies: 633 | commondir "^1.0.1" 634 | mkdirp "^0.5.1" 635 | pkg-dir "^1.0.0" 636 | 637 | find-up@^1.0.0: 638 | version "1.1.2" 639 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 640 | dependencies: 641 | path-exists "^2.0.0" 642 | pinkie-promise "^2.0.0" 643 | 644 | find-up@^2.1.0: 645 | version "2.1.0" 646 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 647 | dependencies: 648 | locate-path "^2.0.0" 649 | 650 | for-in@^1.0.1, for-in@^1.0.2: 651 | version "1.0.2" 652 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 653 | 654 | for-own@^0.1.4: 655 | version "0.1.5" 656 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 657 | dependencies: 658 | for-in "^1.0.1" 659 | 660 | foreground-child@^1.3.3, foreground-child@^1.5.3, foreground-child@^1.5.6: 661 | version "1.5.6" 662 | resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-1.5.6.tgz#4fd71ad2dfde96789b980a5c0a295937cb2f5ce9" 663 | dependencies: 664 | cross-spawn "^4" 665 | signal-exit "^3.0.0" 666 | 667 | forever-agent@~0.6.1: 668 | version "0.6.1" 669 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 670 | 671 | form-data@~2.3.2: 672 | version "2.3.2" 673 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.2.tgz#4970498be604c20c005d4f5c23aecd21d6b49099" 674 | dependencies: 675 | asynckit "^0.4.0" 676 | combined-stream "1.0.6" 677 | mime-types "^2.1.12" 678 | 679 | fragment-cache@^0.2.1: 680 | version "0.2.1" 681 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 682 | dependencies: 683 | map-cache "^0.2.2" 684 | 685 | fs-exists-cached@^1.0.0: 686 | version "1.0.0" 687 | resolved "https://registry.yarnpkg.com/fs-exists-cached/-/fs-exists-cached-1.0.0.tgz#cf25554ca050dc49ae6656b41de42258989dcbce" 688 | 689 | fs.realpath@^1.0.0: 690 | version "1.0.0" 691 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 692 | 693 | function-loop@^1.0.1: 694 | version "1.0.1" 695 | resolved "https://registry.yarnpkg.com/function-loop/-/function-loop-1.0.1.tgz#8076bb305e8e6a3cceee2920765f330d190f340c" 696 | 697 | get-caller-file@^1.0.1: 698 | version "1.0.3" 699 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" 700 | 701 | get-stream@^3.0.0: 702 | version "3.0.0" 703 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 704 | 705 | get-value@^2.0.3, get-value@^2.0.6: 706 | version "2.0.6" 707 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 708 | 709 | getpass@^0.1.1: 710 | version "0.1.7" 711 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 712 | dependencies: 713 | assert-plus "^1.0.0" 714 | 715 | glob-base@^0.3.0: 716 | version "0.3.0" 717 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 718 | dependencies: 719 | glob-parent "^2.0.0" 720 | is-glob "^2.0.0" 721 | 722 | glob-parent@^2.0.0: 723 | version "2.0.0" 724 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 725 | dependencies: 726 | is-glob "^2.0.0" 727 | 728 | glob@^7.0.0, glob@^7.0.5, glob@^7.0.6: 729 | version "7.1.3" 730 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1" 731 | dependencies: 732 | fs.realpath "^1.0.0" 733 | inflight "^1.0.4" 734 | inherits "2" 735 | minimatch "^3.0.4" 736 | once "^1.3.0" 737 | path-is-absolute "^1.0.0" 738 | 739 | globals@^9.18.0: 740 | version "9.18.0" 741 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 742 | 743 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 744 | version "4.1.11" 745 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 746 | 747 | "growl@~> 1.10.0": 748 | version "1.10.5" 749 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e" 750 | 751 | handlebars@^4.0.3: 752 | version "4.0.12" 753 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.12.tgz#2c15c8a96d46da5e266700518ba8cb8d919d5bc5" 754 | dependencies: 755 | async "^2.5.0" 756 | optimist "^0.6.1" 757 | source-map "^0.6.1" 758 | optionalDependencies: 759 | uglify-js "^3.1.4" 760 | 761 | har-schema@^2.0.0: 762 | version "2.0.0" 763 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 764 | 765 | har-validator@~5.1.0: 766 | version "5.1.0" 767 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.0.tgz#44657f5688a22cfd4b72486e81b3a3fb11742c29" 768 | dependencies: 769 | ajv "^5.3.0" 770 | har-schema "^2.0.0" 771 | 772 | has-ansi@^2.0.0: 773 | version "2.0.0" 774 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 775 | dependencies: 776 | ansi-regex "^2.0.0" 777 | 778 | has-flag@^1.0.0: 779 | version "1.0.0" 780 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 781 | 782 | has-value@^0.3.1: 783 | version "0.3.1" 784 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 785 | dependencies: 786 | get-value "^2.0.3" 787 | has-values "^0.1.4" 788 | isobject "^2.0.0" 789 | 790 | has-value@^1.0.0: 791 | version "1.0.0" 792 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 793 | dependencies: 794 | get-value "^2.0.6" 795 | has-values "^1.0.0" 796 | isobject "^3.0.0" 797 | 798 | has-values@^0.1.4: 799 | version "0.1.4" 800 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 801 | 802 | has-values@^1.0.0: 803 | version "1.0.0" 804 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 805 | dependencies: 806 | is-number "^3.0.0" 807 | kind-of "^4.0.0" 808 | 809 | hosted-git-info@^2.1.4: 810 | version "2.7.1" 811 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.7.1.tgz#97f236977bd6e125408930ff6de3eec6281ec047" 812 | 813 | http-signature@~1.2.0: 814 | version "1.2.0" 815 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 816 | dependencies: 817 | assert-plus "^1.0.0" 818 | jsprim "^1.2.2" 819 | sshpk "^1.7.0" 820 | 821 | imurmurhash@^0.1.4: 822 | version "0.1.4" 823 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 824 | 825 | inflight@^1.0.4: 826 | version "1.0.6" 827 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 828 | dependencies: 829 | once "^1.3.0" 830 | wrappy "1" 831 | 832 | inherits@2, inherits@~2.0.3: 833 | version "2.0.3" 834 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 835 | 836 | invariant@^2.2.2: 837 | version "2.2.4" 838 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 839 | dependencies: 840 | loose-envify "^1.0.0" 841 | 842 | invert-kv@^1.0.0: 843 | version "1.0.0" 844 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 845 | 846 | is-accessor-descriptor@^0.1.6: 847 | version "0.1.6" 848 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 849 | dependencies: 850 | kind-of "^3.0.2" 851 | 852 | is-accessor-descriptor@^1.0.0: 853 | version "1.0.0" 854 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 855 | dependencies: 856 | kind-of "^6.0.0" 857 | 858 | is-arrayish@^0.2.1: 859 | version "0.2.1" 860 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 861 | 862 | is-buffer@^1.1.5: 863 | version "1.1.6" 864 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 865 | 866 | is-builtin-module@^1.0.0: 867 | version "1.0.0" 868 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 869 | dependencies: 870 | builtin-modules "^1.0.0" 871 | 872 | is-data-descriptor@^0.1.4: 873 | version "0.1.4" 874 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 875 | dependencies: 876 | kind-of "^3.0.2" 877 | 878 | is-data-descriptor@^1.0.0: 879 | version "1.0.0" 880 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 881 | dependencies: 882 | kind-of "^6.0.0" 883 | 884 | is-descriptor@^0.1.0: 885 | version "0.1.6" 886 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 887 | dependencies: 888 | is-accessor-descriptor "^0.1.6" 889 | is-data-descriptor "^0.1.4" 890 | kind-of "^5.0.0" 891 | 892 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 893 | version "1.0.2" 894 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 895 | dependencies: 896 | is-accessor-descriptor "^1.0.0" 897 | is-data-descriptor "^1.0.0" 898 | kind-of "^6.0.2" 899 | 900 | is-dotfile@^1.0.0: 901 | version "1.0.3" 902 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 903 | 904 | is-equal-shallow@^0.1.3: 905 | version "0.1.3" 906 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 907 | dependencies: 908 | is-primitive "^2.0.0" 909 | 910 | is-extendable@^0.1.0, is-extendable@^0.1.1: 911 | version "0.1.1" 912 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 913 | 914 | is-extendable@^1.0.1: 915 | version "1.0.1" 916 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 917 | dependencies: 918 | is-plain-object "^2.0.4" 919 | 920 | is-extglob@^1.0.0: 921 | version "1.0.0" 922 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 923 | 924 | is-finite@^1.0.0: 925 | version "1.0.2" 926 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 927 | dependencies: 928 | number-is-nan "^1.0.0" 929 | 930 | is-fullwidth-code-point@^1.0.0: 931 | version "1.0.0" 932 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 933 | dependencies: 934 | number-is-nan "^1.0.0" 935 | 936 | is-fullwidth-code-point@^2.0.0: 937 | version "2.0.0" 938 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 939 | 940 | is-glob@^2.0.0, is-glob@^2.0.1: 941 | version "2.0.1" 942 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 943 | dependencies: 944 | is-extglob "^1.0.0" 945 | 946 | is-number@^2.1.0: 947 | version "2.1.0" 948 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 949 | dependencies: 950 | kind-of "^3.0.2" 951 | 952 | is-number@^3.0.0: 953 | version "3.0.0" 954 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 955 | dependencies: 956 | kind-of "^3.0.2" 957 | 958 | is-number@^4.0.0: 959 | version "4.0.0" 960 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" 961 | 962 | is-object@~1.0.1: 963 | version "1.0.1" 964 | resolved "https://registry.yarnpkg.com/is-object/-/is-object-1.0.1.tgz#8952688c5ec2ffd6b03ecc85e769e02903083470" 965 | 966 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: 967 | version "2.0.4" 968 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 969 | dependencies: 970 | isobject "^3.0.1" 971 | 972 | is-posix-bracket@^0.1.0: 973 | version "0.1.1" 974 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 975 | 976 | is-primitive@^2.0.0: 977 | version "2.0.0" 978 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 979 | 980 | is-stream@^1.1.0: 981 | version "1.1.0" 982 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 983 | 984 | is-typedarray@~1.0.0: 985 | version "1.0.0" 986 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 987 | 988 | is-utf8@^0.2.0: 989 | version "0.2.1" 990 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 991 | 992 | is-windows@^1.0.2: 993 | version "1.0.2" 994 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 995 | 996 | isarray@1.0.0, isarray@~1.0.0: 997 | version "1.0.0" 998 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 999 | 1000 | isexe@^2.0.0: 1001 | version "2.0.0" 1002 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1003 | 1004 | isobject@^2.0.0: 1005 | version "2.1.0" 1006 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1007 | dependencies: 1008 | isarray "1.0.0" 1009 | 1010 | isobject@^3.0.0, isobject@^3.0.1: 1011 | version "3.0.1" 1012 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 1013 | 1014 | isstream@~0.1.2: 1015 | version "0.1.2" 1016 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1017 | 1018 | istanbul-lib-coverage@^1.1.2, istanbul-lib-coverage@^1.2.1: 1019 | version "1.2.1" 1020 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.1.tgz#ccf7edcd0a0bb9b8f729feeb0930470f9af664f0" 1021 | 1022 | istanbul-lib-hook@^1.1.0: 1023 | version "1.2.2" 1024 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.2.2.tgz#bc6bf07f12a641fbf1c85391d0daa8f0aea6bf86" 1025 | dependencies: 1026 | append-transform "^0.4.0" 1027 | 1028 | istanbul-lib-instrument@^1.10.0: 1029 | version "1.10.2" 1030 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.2.tgz#1f55ed10ac3c47f2bdddd5307935126754d0a9ca" 1031 | dependencies: 1032 | babel-generator "^6.18.0" 1033 | babel-template "^6.16.0" 1034 | babel-traverse "^6.18.0" 1035 | babel-types "^6.18.0" 1036 | babylon "^6.18.0" 1037 | istanbul-lib-coverage "^1.2.1" 1038 | semver "^5.3.0" 1039 | 1040 | istanbul-lib-report@^1.1.3: 1041 | version "1.1.5" 1042 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.5.tgz#f2a657fc6282f96170aaf281eb30a458f7f4170c" 1043 | dependencies: 1044 | istanbul-lib-coverage "^1.2.1" 1045 | mkdirp "^0.5.1" 1046 | path-parse "^1.0.5" 1047 | supports-color "^3.1.2" 1048 | 1049 | istanbul-lib-source-maps@^1.2.3: 1050 | version "1.2.6" 1051 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.6.tgz#37b9ff661580f8fca11232752ee42e08c6675d8f" 1052 | dependencies: 1053 | debug "^3.1.0" 1054 | istanbul-lib-coverage "^1.2.1" 1055 | mkdirp "^0.5.1" 1056 | rimraf "^2.6.1" 1057 | source-map "^0.5.3" 1058 | 1059 | istanbul-reports@^1.4.0: 1060 | version "1.5.1" 1061 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.5.1.tgz#97e4dbf3b515e8c484caea15d6524eebd3ff4e1a" 1062 | dependencies: 1063 | handlebars "^4.0.3" 1064 | 1065 | "js-tokens@^3.0.0 || ^4.0.0": 1066 | version "4.0.0" 1067 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1068 | 1069 | js-tokens@^3.0.2: 1070 | version "3.0.2" 1071 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1072 | 1073 | js-yaml@^3.11.0, js-yaml@^3.2.7, js-yaml@^3.3.1: 1074 | version "3.12.0" 1075 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.0.tgz#eaed656ec8344f10f527c6bfa1b6e2244de167d1" 1076 | dependencies: 1077 | argparse "^1.0.7" 1078 | esprima "^4.0.0" 1079 | 1080 | jsbn@~0.1.0: 1081 | version "0.1.1" 1082 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1083 | 1084 | jsesc@^1.3.0: 1085 | version "1.3.0" 1086 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1087 | 1088 | json-schema-traverse@^0.3.0: 1089 | version "0.3.1" 1090 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 1091 | 1092 | json-schema@0.2.3: 1093 | version "0.2.3" 1094 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1095 | 1096 | json-stringify-safe@~5.0.1: 1097 | version "5.0.1" 1098 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1099 | 1100 | jsprim@^1.2.2: 1101 | version "1.4.1" 1102 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1103 | dependencies: 1104 | assert-plus "1.0.0" 1105 | extsprintf "1.3.0" 1106 | json-schema "0.2.3" 1107 | verror "1.10.0" 1108 | 1109 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 1110 | version "3.2.2" 1111 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1112 | dependencies: 1113 | is-buffer "^1.1.5" 1114 | 1115 | kind-of@^4.0.0: 1116 | version "4.0.0" 1117 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1118 | dependencies: 1119 | is-buffer "^1.1.5" 1120 | 1121 | kind-of@^5.0.0: 1122 | version "5.1.0" 1123 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 1124 | 1125 | kind-of@^6.0.0, kind-of@^6.0.2: 1126 | version "6.0.2" 1127 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 1128 | 1129 | lcid@^1.0.0: 1130 | version "1.0.0" 1131 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1132 | dependencies: 1133 | invert-kv "^1.0.0" 1134 | 1135 | lcov-parse@^0.0.10: 1136 | version "0.0.10" 1137 | resolved "https://registry.yarnpkg.com/lcov-parse/-/lcov-parse-0.0.10.tgz#1b0b8ff9ac9c7889250582b70b71315d9da6d9a3" 1138 | 1139 | load-json-file@^1.0.0: 1140 | version "1.1.0" 1141 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1142 | dependencies: 1143 | graceful-fs "^4.1.2" 1144 | parse-json "^2.2.0" 1145 | pify "^2.0.0" 1146 | pinkie-promise "^2.0.0" 1147 | strip-bom "^2.0.0" 1148 | 1149 | locate-path@^2.0.0: 1150 | version "2.0.0" 1151 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1152 | dependencies: 1153 | p-locate "^2.0.0" 1154 | path-exists "^3.0.0" 1155 | 1156 | lodash@^4.17.10, lodash@^4.17.4: 1157 | version "4.17.11" 1158 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d" 1159 | 1160 | log-driver@^1.2.7: 1161 | version "1.2.7" 1162 | resolved "https://registry.yarnpkg.com/log-driver/-/log-driver-1.2.7.tgz#63b95021f0702fedfa2c9bb0a24e7797d71871d8" 1163 | 1164 | loose-envify@^1.0.0: 1165 | version "1.4.0" 1166 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 1167 | dependencies: 1168 | js-tokens "^3.0.0 || ^4.0.0" 1169 | 1170 | lru-cache@^4.0.1: 1171 | version "4.1.3" 1172 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.3.tgz#a1175cf3496dfc8436c156c334b4955992bce69c" 1173 | dependencies: 1174 | pseudomap "^1.0.2" 1175 | yallist "^2.1.2" 1176 | 1177 | map-cache@^0.2.2: 1178 | version "0.2.2" 1179 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 1180 | 1181 | map-visit@^1.0.0: 1182 | version "1.0.0" 1183 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 1184 | dependencies: 1185 | object-visit "^1.0.0" 1186 | 1187 | math-random@^1.0.1: 1188 | version "1.0.1" 1189 | resolved "https://registry.yarnpkg.com/math-random/-/math-random-1.0.1.tgz#8b3aac588b8a66e4975e3cdea67f7bb329601fac" 1190 | 1191 | md5-hex@^1.2.0: 1192 | version "1.3.0" 1193 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-1.3.0.tgz#d2c4afe983c4370662179b8cad145219135046c4" 1194 | dependencies: 1195 | md5-o-matic "^0.1.1" 1196 | 1197 | md5-o-matic@^0.1.1: 1198 | version "0.1.1" 1199 | resolved "https://registry.yarnpkg.com/md5-o-matic/-/md5-o-matic-0.1.1.tgz#822bccd65e117c514fab176b25945d54100a03c3" 1200 | 1201 | mem@^1.1.0: 1202 | version "1.1.0" 1203 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 1204 | dependencies: 1205 | mimic-fn "^1.0.0" 1206 | 1207 | merge-descriptors@~1.0.0: 1208 | version "1.0.1" 1209 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" 1210 | 1211 | merge-source-map@^1.1.0: 1212 | version "1.1.0" 1213 | resolved "https://registry.yarnpkg.com/merge-source-map/-/merge-source-map-1.1.0.tgz#2fdde7e6020939f70906a68f2d7ae685e4c8c646" 1214 | dependencies: 1215 | source-map "^0.6.1" 1216 | 1217 | micromatch@^2.3.11: 1218 | version "2.3.11" 1219 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1220 | dependencies: 1221 | arr-diff "^2.0.0" 1222 | array-unique "^0.2.1" 1223 | braces "^1.8.2" 1224 | expand-brackets "^0.1.4" 1225 | extglob "^0.3.1" 1226 | filename-regex "^2.0.0" 1227 | is-extglob "^1.0.0" 1228 | is-glob "^2.0.1" 1229 | kind-of "^3.0.2" 1230 | normalize-path "^2.0.1" 1231 | object.omit "^2.0.0" 1232 | parse-glob "^3.0.4" 1233 | regex-cache "^0.4.2" 1234 | 1235 | micromatch@^3.1.10: 1236 | version "3.1.10" 1237 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 1238 | dependencies: 1239 | arr-diff "^4.0.0" 1240 | array-unique "^0.3.2" 1241 | braces "^2.3.1" 1242 | define-property "^2.0.2" 1243 | extend-shallow "^3.0.2" 1244 | extglob "^2.0.4" 1245 | fragment-cache "^0.2.1" 1246 | kind-of "^6.0.2" 1247 | nanomatch "^1.2.9" 1248 | object.pick "^1.3.0" 1249 | regex-not "^1.0.0" 1250 | snapdragon "^0.8.1" 1251 | to-regex "^3.0.2" 1252 | 1253 | mime-db@~1.36.0: 1254 | version "1.36.0" 1255 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.36.0.tgz#5020478db3c7fe93aad7bbcc4dcf869c43363397" 1256 | 1257 | mime-types@^2.1.12, mime-types@~2.1.19: 1258 | version "2.1.20" 1259 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.20.tgz#930cb719d571e903738520f8470911548ca2cc19" 1260 | dependencies: 1261 | mime-db "~1.36.0" 1262 | 1263 | mimic-fn@^1.0.0: 1264 | version "1.2.0" 1265 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 1266 | 1267 | minimatch@^3.0.4: 1268 | version "3.0.4" 1269 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1270 | dependencies: 1271 | brace-expansion "^1.1.7" 1272 | 1273 | minimist@0.0.8: 1274 | version "0.0.8" 1275 | resolved "http://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1276 | 1277 | minimist@^1.2.0: 1278 | version "1.2.0" 1279 | resolved "http://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1280 | 1281 | minimist@~0.0.1: 1282 | version "0.0.10" 1283 | resolved "http://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 1284 | 1285 | minipass@^2.2.0, minipass@^2.3.0: 1286 | version "2.3.4" 1287 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.4.tgz#4768d7605ed6194d6d576169b9e12ef71e9d9957" 1288 | dependencies: 1289 | safe-buffer "^5.1.2" 1290 | yallist "^3.0.0" 1291 | 1292 | mixin-deep@^1.2.0: 1293 | version "1.3.1" 1294 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe" 1295 | dependencies: 1296 | for-in "^1.0.2" 1297 | is-extendable "^1.0.1" 1298 | 1299 | mkdirp@^0.5.0, mkdirp@^0.5.1: 1300 | version "0.5.1" 1301 | resolved "http://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1302 | dependencies: 1303 | minimist "0.0.8" 1304 | 1305 | module-not-found-error@^1.0.0: 1306 | version "1.0.1" 1307 | resolved "https://registry.yarnpkg.com/module-not-found-error/-/module-not-found-error-1.0.1.tgz#cf8b4ff4f29640674d6cdd02b0e3bc523c2bbdc0" 1308 | 1309 | ms@2.0.0: 1310 | version "2.0.0" 1311 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1312 | 1313 | ms@^2.1.1: 1314 | version "2.1.1" 1315 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" 1316 | 1317 | nanomatch@^1.2.9: 1318 | version "1.2.13" 1319 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" 1320 | dependencies: 1321 | arr-diff "^4.0.0" 1322 | array-unique "^0.3.2" 1323 | define-property "^2.0.2" 1324 | extend-shallow "^3.0.2" 1325 | fragment-cache "^0.2.1" 1326 | is-windows "^1.0.2" 1327 | kind-of "^6.0.2" 1328 | object.pick "^1.3.0" 1329 | regex-not "^1.0.0" 1330 | snapdragon "^0.8.1" 1331 | to-regex "^3.0.1" 1332 | 1333 | normalize-package-data@^2.3.2: 1334 | version "2.4.0" 1335 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 1336 | dependencies: 1337 | hosted-git-info "^2.1.4" 1338 | is-builtin-module "^1.0.0" 1339 | semver "2 || 3 || 4 || 5" 1340 | validate-npm-package-license "^3.0.1" 1341 | 1342 | normalize-path@^2.0.1: 1343 | version "2.1.1" 1344 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1345 | dependencies: 1346 | remove-trailing-separator "^1.0.1" 1347 | 1348 | npm-run-path@^2.0.0: 1349 | version "2.0.2" 1350 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 1351 | dependencies: 1352 | path-key "^2.0.0" 1353 | 1354 | number-is-nan@^1.0.0: 1355 | version "1.0.1" 1356 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1357 | 1358 | nyc@^11.7.2: 1359 | version "11.9.0" 1360 | resolved "https://registry.yarnpkg.com/nyc/-/nyc-11.9.0.tgz#4106e89e8fbe73623a1fc8b6ecb7abaa271ae1e4" 1361 | dependencies: 1362 | archy "^1.0.0" 1363 | arrify "^1.0.1" 1364 | caching-transform "^1.0.0" 1365 | convert-source-map "^1.5.1" 1366 | debug-log "^1.0.1" 1367 | default-require-extensions "^1.0.0" 1368 | find-cache-dir "^0.1.1" 1369 | find-up "^2.1.0" 1370 | foreground-child "^1.5.3" 1371 | glob "^7.0.6" 1372 | istanbul-lib-coverage "^1.1.2" 1373 | istanbul-lib-hook "^1.1.0" 1374 | istanbul-lib-instrument "^1.10.0" 1375 | istanbul-lib-report "^1.1.3" 1376 | istanbul-lib-source-maps "^1.2.3" 1377 | istanbul-reports "^1.4.0" 1378 | md5-hex "^1.2.0" 1379 | merge-source-map "^1.1.0" 1380 | micromatch "^3.1.10" 1381 | mkdirp "^0.5.0" 1382 | resolve-from "^2.0.0" 1383 | rimraf "^2.6.2" 1384 | signal-exit "^3.0.1" 1385 | spawn-wrap "^1.4.2" 1386 | test-exclude "^4.2.0" 1387 | yargs "11.1.0" 1388 | yargs-parser "^8.0.0" 1389 | 1390 | oauth-sign@~0.9.0: 1391 | version "0.9.0" 1392 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" 1393 | 1394 | object-assign@^4.1.0: 1395 | version "4.1.1" 1396 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1397 | 1398 | object-copy@^0.1.0: 1399 | version "0.1.0" 1400 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 1401 | dependencies: 1402 | copy-descriptor "^0.1.0" 1403 | define-property "^0.2.5" 1404 | kind-of "^3.0.3" 1405 | 1406 | object-visit@^1.0.0: 1407 | version "1.0.1" 1408 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 1409 | dependencies: 1410 | isobject "^3.0.0" 1411 | 1412 | object.omit@^2.0.0: 1413 | version "2.0.1" 1414 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1415 | dependencies: 1416 | for-own "^0.1.4" 1417 | is-extendable "^0.1.1" 1418 | 1419 | object.pick@^1.3.0: 1420 | version "1.3.0" 1421 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 1422 | dependencies: 1423 | isobject "^3.0.1" 1424 | 1425 | once@^1.3.0: 1426 | version "1.4.0" 1427 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1428 | dependencies: 1429 | wrappy "1" 1430 | 1431 | opener@^1.4.1: 1432 | version "1.5.1" 1433 | resolved "https://registry.yarnpkg.com/opener/-/opener-1.5.1.tgz#6d2f0e77f1a0af0032aca716c2c1fbb8e7e8abed" 1434 | 1435 | optimist@^0.6.1: 1436 | version "0.6.1" 1437 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 1438 | dependencies: 1439 | minimist "~0.0.1" 1440 | wordwrap "~0.0.2" 1441 | 1442 | os-homedir@^1.0.1, os-homedir@^1.0.2: 1443 | version "1.0.2" 1444 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1445 | 1446 | os-locale@^2.0.0: 1447 | version "2.1.0" 1448 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 1449 | dependencies: 1450 | execa "^0.7.0" 1451 | lcid "^1.0.0" 1452 | mem "^1.1.0" 1453 | 1454 | own-or-env@^1.0.1: 1455 | version "1.0.1" 1456 | resolved "https://registry.yarnpkg.com/own-or-env/-/own-or-env-1.0.1.tgz#54ce601d3bf78236c5c65633aa1c8ec03f8007e4" 1457 | dependencies: 1458 | own-or "^1.0.0" 1459 | 1460 | own-or@^1.0.0: 1461 | version "1.0.0" 1462 | resolved "https://registry.yarnpkg.com/own-or/-/own-or-1.0.0.tgz#4e877fbeda9a2ec8000fbc0bcae39645ee8bf8dc" 1463 | 1464 | p-finally@^1.0.0: 1465 | version "1.0.0" 1466 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 1467 | 1468 | p-limit@^1.1.0: 1469 | version "1.3.0" 1470 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" 1471 | dependencies: 1472 | p-try "^1.0.0" 1473 | 1474 | p-locate@^2.0.0: 1475 | version "2.0.0" 1476 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1477 | dependencies: 1478 | p-limit "^1.1.0" 1479 | 1480 | p-try@^1.0.0: 1481 | version "1.0.0" 1482 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 1483 | 1484 | parse-glob@^3.0.4: 1485 | version "3.0.4" 1486 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1487 | dependencies: 1488 | glob-base "^0.3.0" 1489 | is-dotfile "^1.0.0" 1490 | is-extglob "^1.0.0" 1491 | is-glob "^2.0.0" 1492 | 1493 | parse-json@^2.2.0: 1494 | version "2.2.0" 1495 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1496 | dependencies: 1497 | error-ex "^1.2.0" 1498 | 1499 | pascalcase@^0.1.1: 1500 | version "0.1.1" 1501 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 1502 | 1503 | path-exists@^2.0.0: 1504 | version "2.1.0" 1505 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1506 | dependencies: 1507 | pinkie-promise "^2.0.0" 1508 | 1509 | path-exists@^3.0.0: 1510 | version "3.0.0" 1511 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1512 | 1513 | path-is-absolute@^1.0.0: 1514 | version "1.0.1" 1515 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1516 | 1517 | path-key@^2.0.0: 1518 | version "2.0.1" 1519 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 1520 | 1521 | path-parse@^1.0.5: 1522 | version "1.0.6" 1523 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 1524 | 1525 | path-type@^1.0.0: 1526 | version "1.1.0" 1527 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 1528 | dependencies: 1529 | graceful-fs "^4.1.2" 1530 | pify "^2.0.0" 1531 | pinkie-promise "^2.0.0" 1532 | 1533 | performance-now@^2.1.0: 1534 | version "2.1.0" 1535 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 1536 | 1537 | pify@^2.0.0: 1538 | version "2.3.0" 1539 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1540 | 1541 | pinkie-promise@^2.0.0: 1542 | version "2.0.1" 1543 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1544 | dependencies: 1545 | pinkie "^2.0.0" 1546 | 1547 | pinkie@^2.0.0: 1548 | version "2.0.4" 1549 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1550 | 1551 | pkg-dir@^1.0.0: 1552 | version "1.0.0" 1553 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 1554 | dependencies: 1555 | find-up "^1.0.0" 1556 | 1557 | posix-character-classes@^0.1.0: 1558 | version "0.1.1" 1559 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 1560 | 1561 | preserve@^0.2.0: 1562 | version "0.2.0" 1563 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1564 | 1565 | process-nextick-args@~2.0.0: 1566 | version "2.0.0" 1567 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 1568 | 1569 | proxyquire@^2.1.0: 1570 | version "2.1.0" 1571 | resolved "https://registry.yarnpkg.com/proxyquire/-/proxyquire-2.1.0.tgz#c2263a38bf0725f2ae950facc130e27510edce8d" 1572 | dependencies: 1573 | fill-keys "^1.0.2" 1574 | module-not-found-error "^1.0.0" 1575 | resolve "~1.8.1" 1576 | 1577 | pseudomap@^1.0.2: 1578 | version "1.0.2" 1579 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 1580 | 1581 | psl@^1.1.24: 1582 | version "1.1.29" 1583 | resolved "https://registry.yarnpkg.com/psl/-/psl-1.1.29.tgz#60f580d360170bb722a797cc704411e6da850c67" 1584 | 1585 | punycode@^1.3.2, punycode@^1.4.1: 1586 | version "1.4.1" 1587 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1588 | 1589 | qs@~6.5.2: 1590 | version "6.5.2" 1591 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" 1592 | 1593 | randomatic@^3.0.0: 1594 | version "3.1.0" 1595 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-3.1.0.tgz#36f2ca708e9e567f5ed2ec01949026d50aa10116" 1596 | dependencies: 1597 | is-number "^4.0.0" 1598 | kind-of "^6.0.0" 1599 | math-random "^1.0.1" 1600 | 1601 | read-pkg-up@^1.0.1: 1602 | version "1.0.1" 1603 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 1604 | dependencies: 1605 | find-up "^1.0.0" 1606 | read-pkg "^1.0.0" 1607 | 1608 | read-pkg@^1.0.0: 1609 | version "1.1.0" 1610 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 1611 | dependencies: 1612 | load-json-file "^1.0.0" 1613 | normalize-package-data "^2.3.2" 1614 | path-type "^1.0.0" 1615 | 1616 | readable-stream@^2, readable-stream@^2.1.5: 1617 | version "2.3.6" 1618 | resolved "http://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 1619 | dependencies: 1620 | core-util-is "~1.0.0" 1621 | inherits "~2.0.3" 1622 | isarray "~1.0.0" 1623 | process-nextick-args "~2.0.0" 1624 | safe-buffer "~5.1.1" 1625 | string_decoder "~1.1.1" 1626 | util-deprecate "~1.0.1" 1627 | 1628 | regenerator-runtime@^0.11.0: 1629 | version "0.11.1" 1630 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 1631 | 1632 | regex-cache@^0.4.2: 1633 | version "0.4.4" 1634 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 1635 | dependencies: 1636 | is-equal-shallow "^0.1.3" 1637 | 1638 | regex-not@^1.0.0, regex-not@^1.0.2: 1639 | version "1.0.2" 1640 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 1641 | dependencies: 1642 | extend-shallow "^3.0.2" 1643 | safe-regex "^1.1.0" 1644 | 1645 | remove-trailing-separator@^1.0.1: 1646 | version "1.1.0" 1647 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 1648 | 1649 | repeat-element@^1.1.2: 1650 | version "1.1.3" 1651 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" 1652 | 1653 | repeat-string@^1.5.2, repeat-string@^1.6.1: 1654 | version "1.6.1" 1655 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1656 | 1657 | repeating@^2.0.0: 1658 | version "2.0.1" 1659 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1660 | dependencies: 1661 | is-finite "^1.0.0" 1662 | 1663 | request-function@^2.0.0: 1664 | version "2.0.0" 1665 | resolved "https://registry.yarnpkg.com/request-function/-/request-function-2.0.0.tgz#27aace27f871e3c2fd48a19dad75ca384c4b8654" 1666 | dependencies: 1667 | error "^7.0.2" 1668 | 1669 | request@^2.85.0: 1670 | version "2.88.0" 1671 | resolved "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef" 1672 | dependencies: 1673 | aws-sign2 "~0.7.0" 1674 | aws4 "^1.8.0" 1675 | caseless "~0.12.0" 1676 | combined-stream "~1.0.6" 1677 | extend "~3.0.2" 1678 | forever-agent "~0.6.1" 1679 | form-data "~2.3.2" 1680 | har-validator "~5.1.0" 1681 | http-signature "~1.2.0" 1682 | is-typedarray "~1.0.0" 1683 | isstream "~0.1.2" 1684 | json-stringify-safe "~5.0.1" 1685 | mime-types "~2.1.19" 1686 | oauth-sign "~0.9.0" 1687 | performance-now "^2.1.0" 1688 | qs "~6.5.2" 1689 | safe-buffer "^5.1.2" 1690 | tough-cookie "~2.4.3" 1691 | tunnel-agent "^0.6.0" 1692 | uuid "^3.3.2" 1693 | 1694 | require-directory@^2.1.1: 1695 | version "2.1.1" 1696 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 1697 | 1698 | require-main-filename@^1.0.1: 1699 | version "1.0.1" 1700 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 1701 | 1702 | resolve-from@^2.0.0: 1703 | version "2.0.0" 1704 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57" 1705 | 1706 | resolve-url@^0.2.1: 1707 | version "0.2.1" 1708 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 1709 | 1710 | resolve@~1.8.1: 1711 | version "1.8.1" 1712 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.8.1.tgz#82f1ec19a423ac1fbd080b0bab06ba36e84a7a26" 1713 | dependencies: 1714 | path-parse "^1.0.5" 1715 | 1716 | ret@~0.1.10: 1717 | version "0.1.15" 1718 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 1719 | 1720 | rimraf@^2.6.1, rimraf@^2.6.2: 1721 | version "2.6.2" 1722 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 1723 | dependencies: 1724 | glob "^7.0.5" 1725 | 1726 | safe-buffer@^5.0.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1727 | version "5.1.2" 1728 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 1729 | 1730 | safe-regex@^1.1.0: 1731 | version "1.1.0" 1732 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 1733 | dependencies: 1734 | ret "~0.1.10" 1735 | 1736 | safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: 1737 | version "2.1.2" 1738 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 1739 | 1740 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 1741 | version "5.5.1" 1742 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.1.tgz#7dfdd8814bdb7cabc7be0fb1d734cfb66c940477" 1743 | 1744 | set-blocking@^2.0.0: 1745 | version "2.0.0" 1746 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1747 | 1748 | set-value@^0.4.3: 1749 | version "0.4.3" 1750 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" 1751 | dependencies: 1752 | extend-shallow "^2.0.1" 1753 | is-extendable "^0.1.1" 1754 | is-plain-object "^2.0.1" 1755 | to-object-path "^0.3.0" 1756 | 1757 | set-value@^2.0.0: 1758 | version "2.0.0" 1759 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" 1760 | dependencies: 1761 | extend-shallow "^2.0.1" 1762 | is-extendable "^0.1.1" 1763 | is-plain-object "^2.0.3" 1764 | split-string "^3.0.1" 1765 | 1766 | shebang-command@^1.2.0: 1767 | version "1.2.0" 1768 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 1769 | dependencies: 1770 | shebang-regex "^1.0.0" 1771 | 1772 | shebang-regex@^1.0.0: 1773 | version "1.0.0" 1774 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 1775 | 1776 | signal-exit@^3.0.0, signal-exit@^3.0.1, signal-exit@^3.0.2: 1777 | version "3.0.2" 1778 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1779 | 1780 | slide@^1.1.5: 1781 | version "1.1.6" 1782 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 1783 | 1784 | small-request@^2.0.2: 1785 | version "2.1.0" 1786 | resolved "https://registry.yarnpkg.com/small-request/-/small-request-2.1.0.tgz#b1015a5047ca140b0a23ab2e0403bbe8d136beb3" 1787 | dependencies: 1788 | request-function "^2.0.0" 1789 | 1790 | snapdragon-node@^2.0.1: 1791 | version "2.1.1" 1792 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 1793 | dependencies: 1794 | define-property "^1.0.0" 1795 | isobject "^3.0.0" 1796 | snapdragon-util "^3.0.1" 1797 | 1798 | snapdragon-util@^3.0.1: 1799 | version "3.0.1" 1800 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 1801 | dependencies: 1802 | kind-of "^3.2.0" 1803 | 1804 | snapdragon@^0.8.1: 1805 | version "0.8.2" 1806 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 1807 | dependencies: 1808 | base "^0.11.1" 1809 | debug "^2.2.0" 1810 | define-property "^0.2.5" 1811 | extend-shallow "^2.0.1" 1812 | map-cache "^0.2.2" 1813 | source-map "^0.5.6" 1814 | source-map-resolve "^0.5.0" 1815 | use "^3.1.0" 1816 | 1817 | source-map-resolve@^0.5.0: 1818 | version "0.5.2" 1819 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" 1820 | dependencies: 1821 | atob "^2.1.1" 1822 | decode-uri-component "^0.2.0" 1823 | resolve-url "^0.2.1" 1824 | source-map-url "^0.4.0" 1825 | urix "^0.1.0" 1826 | 1827 | source-map-support@^0.5.5: 1828 | version "0.5.9" 1829 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.9.tgz#41bc953b2534267ea2d605bccfa7bfa3111ced5f" 1830 | dependencies: 1831 | buffer-from "^1.0.0" 1832 | source-map "^0.6.0" 1833 | 1834 | source-map-url@^0.4.0: 1835 | version "0.4.0" 1836 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 1837 | 1838 | source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7: 1839 | version "0.5.7" 1840 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 1841 | 1842 | source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: 1843 | version "0.6.1" 1844 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 1845 | 1846 | spawn-wrap@^1.4.2: 1847 | version "1.4.2" 1848 | resolved "https://registry.yarnpkg.com/spawn-wrap/-/spawn-wrap-1.4.2.tgz#cff58e73a8224617b6561abdc32586ea0c82248c" 1849 | dependencies: 1850 | foreground-child "^1.5.6" 1851 | mkdirp "^0.5.0" 1852 | os-homedir "^1.0.1" 1853 | rimraf "^2.6.2" 1854 | signal-exit "^3.0.2" 1855 | which "^1.3.0" 1856 | 1857 | spdx-correct@^3.0.0: 1858 | version "3.0.0" 1859 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.0.0.tgz#05a5b4d7153a195bc92c3c425b69f3b2a9524c82" 1860 | dependencies: 1861 | spdx-expression-parse "^3.0.0" 1862 | spdx-license-ids "^3.0.0" 1863 | 1864 | spdx-exceptions@^2.1.0: 1865 | version "2.1.0" 1866 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz#2c7ae61056c714a5b9b9b2b2af7d311ef5c78fe9" 1867 | 1868 | spdx-expression-parse@^3.0.0: 1869 | version "3.0.0" 1870 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" 1871 | dependencies: 1872 | spdx-exceptions "^2.1.0" 1873 | spdx-license-ids "^3.0.0" 1874 | 1875 | spdx-license-ids@^3.0.0: 1876 | version "3.0.1" 1877 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.1.tgz#e2a303236cac54b04031fa7a5a79c7e701df852f" 1878 | 1879 | split-string@^3.0.1, split-string@^3.0.2: 1880 | version "3.1.0" 1881 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 1882 | dependencies: 1883 | extend-shallow "^3.0.0" 1884 | 1885 | sprintf-js@~1.0.2: 1886 | version "1.0.3" 1887 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 1888 | 1889 | sshpk@^1.7.0: 1890 | version "1.14.2" 1891 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.14.2.tgz#c6fc61648a3d9c4e764fd3fcdf4ea105e492ba98" 1892 | dependencies: 1893 | asn1 "~0.2.3" 1894 | assert-plus "^1.0.0" 1895 | dashdash "^1.12.0" 1896 | getpass "^0.1.1" 1897 | safer-buffer "^2.0.2" 1898 | optionalDependencies: 1899 | bcrypt-pbkdf "^1.0.0" 1900 | ecc-jsbn "~0.1.1" 1901 | jsbn "~0.1.0" 1902 | tweetnacl "~0.14.0" 1903 | 1904 | stack-utils@^1.0.0: 1905 | version "1.0.1" 1906 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.1.tgz#d4f33ab54e8e38778b0ca5cfd3b3afb12db68620" 1907 | 1908 | static-extend@^0.1.1: 1909 | version "0.1.2" 1910 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 1911 | dependencies: 1912 | define-property "^0.2.5" 1913 | object-copy "^0.1.0" 1914 | 1915 | string-template@^1.0.0: 1916 | version "1.0.0" 1917 | resolved "https://registry.yarnpkg.com/string-template/-/string-template-1.0.0.tgz#9e9f2233dc00f218718ec379a28a5673ecca8b96" 1918 | 1919 | string-template@~0.2.1: 1920 | version "0.2.1" 1921 | resolved "https://registry.yarnpkg.com/string-template/-/string-template-0.2.1.tgz#42932e598a352d01fc22ec3367d9d84eec6c9add" 1922 | 1923 | string-width@^1.0.1: 1924 | version "1.0.2" 1925 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1926 | dependencies: 1927 | code-point-at "^1.0.0" 1928 | is-fullwidth-code-point "^1.0.0" 1929 | strip-ansi "^3.0.0" 1930 | 1931 | string-width@^2.0.0, string-width@^2.1.1: 1932 | version "2.1.1" 1933 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 1934 | dependencies: 1935 | is-fullwidth-code-point "^2.0.0" 1936 | strip-ansi "^4.0.0" 1937 | 1938 | string_decoder@~1.1.1: 1939 | version "1.1.1" 1940 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 1941 | dependencies: 1942 | safe-buffer "~5.1.0" 1943 | 1944 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1945 | version "3.0.1" 1946 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1947 | dependencies: 1948 | ansi-regex "^2.0.0" 1949 | 1950 | strip-ansi@^4.0.0: 1951 | version "4.0.0" 1952 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 1953 | dependencies: 1954 | ansi-regex "^3.0.0" 1955 | 1956 | strip-bom@^2.0.0: 1957 | version "2.0.0" 1958 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 1959 | dependencies: 1960 | is-utf8 "^0.2.0" 1961 | 1962 | strip-eof@^1.0.0: 1963 | version "1.0.0" 1964 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 1965 | 1966 | supports-color@^2.0.0: 1967 | version "2.0.0" 1968 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1969 | 1970 | supports-color@^3.1.2: 1971 | version "3.2.3" 1972 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 1973 | dependencies: 1974 | has-flag "^1.0.0" 1975 | 1976 | tap-mocha-reporter@^3.0.7: 1977 | version "3.0.7" 1978 | resolved "https://registry.yarnpkg.com/tap-mocha-reporter/-/tap-mocha-reporter-3.0.7.tgz#235e57893b500861ea5d0924965dadfb2f05eaa7" 1979 | dependencies: 1980 | color-support "^1.1.0" 1981 | debug "^2.1.3" 1982 | diff "^1.3.2" 1983 | escape-string-regexp "^1.0.3" 1984 | glob "^7.0.5" 1985 | js-yaml "^3.3.1" 1986 | tap-parser "^5.1.0" 1987 | unicode-length "^1.0.0" 1988 | optionalDependencies: 1989 | readable-stream "^2.1.5" 1990 | 1991 | tap-parser@^5.1.0: 1992 | version "5.4.0" 1993 | resolved "https://registry.yarnpkg.com/tap-parser/-/tap-parser-5.4.0.tgz#6907e89725d7b7fa6ae41ee2c464c3db43188aec" 1994 | dependencies: 1995 | events-to-array "^1.0.1" 1996 | js-yaml "^3.2.7" 1997 | optionalDependencies: 1998 | readable-stream "^2" 1999 | 2000 | tap-parser@^7.0.0: 2001 | version "7.0.0" 2002 | resolved "https://registry.yarnpkg.com/tap-parser/-/tap-parser-7.0.0.tgz#54db35302fda2c2ccc21954ad3be22b2cba42721" 2003 | dependencies: 2004 | events-to-array "^1.0.1" 2005 | js-yaml "^3.2.7" 2006 | minipass "^2.2.0" 2007 | 2008 | tap@^11.0.0: 2009 | version "11.1.5" 2010 | resolved "https://registry.yarnpkg.com/tap/-/tap-11.1.5.tgz#31bbef84c7a2ca78b2f811edf5fabd336c0ec846" 2011 | dependencies: 2012 | bind-obj-methods "^2.0.0" 2013 | bluebird "^3.5.1" 2014 | clean-yaml-object "^0.1.0" 2015 | color-support "^1.1.0" 2016 | coveralls "^3.0.1" 2017 | foreground-child "^1.3.3" 2018 | fs-exists-cached "^1.0.0" 2019 | function-loop "^1.0.1" 2020 | glob "^7.0.0" 2021 | isexe "^2.0.0" 2022 | js-yaml "^3.11.0" 2023 | minipass "^2.3.0" 2024 | mkdirp "^0.5.1" 2025 | nyc "^11.7.2" 2026 | opener "^1.4.1" 2027 | os-homedir "^1.0.2" 2028 | own-or "^1.0.0" 2029 | own-or-env "^1.0.1" 2030 | rimraf "^2.6.2" 2031 | signal-exit "^3.0.0" 2032 | source-map-support "^0.5.5" 2033 | stack-utils "^1.0.0" 2034 | tap-mocha-reporter "^3.0.7" 2035 | tap-parser "^7.0.0" 2036 | tmatch "^3.1.0" 2037 | trivial-deferred "^1.0.1" 2038 | tsame "^1.1.2" 2039 | write-file-atomic "^2.3.0" 2040 | yapool "^1.0.0" 2041 | 2042 | test-exclude@^4.2.0: 2043 | version "4.2.3" 2044 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.2.3.tgz#a9a5e64474e4398339245a0a769ad7c2f4a97c20" 2045 | dependencies: 2046 | arrify "^1.0.1" 2047 | micromatch "^2.3.11" 2048 | object-assign "^4.1.0" 2049 | read-pkg-up "^1.0.1" 2050 | require-main-filename "^1.0.1" 2051 | 2052 | tmatch@^3.1.0: 2053 | version "3.1.0" 2054 | resolved "https://registry.yarnpkg.com/tmatch/-/tmatch-3.1.0.tgz#701264fd7582d0144a80c85af3358cca269c71e3" 2055 | 2056 | to-fast-properties@^1.0.3: 2057 | version "1.0.3" 2058 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2059 | 2060 | to-object-path@^0.3.0: 2061 | version "0.3.0" 2062 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 2063 | dependencies: 2064 | kind-of "^3.0.2" 2065 | 2066 | to-regex-range@^2.1.0: 2067 | version "2.1.1" 2068 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 2069 | dependencies: 2070 | is-number "^3.0.0" 2071 | repeat-string "^1.6.1" 2072 | 2073 | to-regex@^3.0.1, to-regex@^3.0.2: 2074 | version "3.0.2" 2075 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 2076 | dependencies: 2077 | define-property "^2.0.2" 2078 | extend-shallow "^3.0.2" 2079 | regex-not "^1.0.2" 2080 | safe-regex "^1.1.0" 2081 | 2082 | tough-cookie@~2.4.3: 2083 | version "2.4.3" 2084 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781" 2085 | dependencies: 2086 | psl "^1.1.24" 2087 | punycode "^1.4.1" 2088 | 2089 | trim-right@^1.0.1: 2090 | version "1.0.1" 2091 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2092 | 2093 | trivial-deferred@^1.0.1: 2094 | version "1.0.1" 2095 | resolved "https://registry.yarnpkg.com/trivial-deferred/-/trivial-deferred-1.0.1.tgz#376d4d29d951d6368a6f7a0ae85c2f4d5e0658f3" 2096 | 2097 | tsame@^1.1.2: 2098 | version "1.1.2" 2099 | resolved "https://registry.yarnpkg.com/tsame/-/tsame-1.1.2.tgz#5ce0002acf685942789c63018797a2aa5e6b03c5" 2100 | 2101 | tunnel-agent@^0.6.0: 2102 | version "0.6.0" 2103 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2104 | dependencies: 2105 | safe-buffer "^5.0.1" 2106 | 2107 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2108 | version "0.14.5" 2109 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2110 | 2111 | uglify-js@^3.1.4: 2112 | version "3.4.9" 2113 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.4.9.tgz#af02f180c1207d76432e473ed24a28f4a782bae3" 2114 | dependencies: 2115 | commander "~2.17.1" 2116 | source-map "~0.6.1" 2117 | 2118 | unicode-length@^1.0.0: 2119 | version "1.0.3" 2120 | resolved "https://registry.yarnpkg.com/unicode-length/-/unicode-length-1.0.3.tgz#5ada7a7fed51841a418a328cf149478ac8358abb" 2121 | dependencies: 2122 | punycode "^1.3.2" 2123 | strip-ansi "^3.0.1" 2124 | 2125 | union-value@^1.0.0: 2126 | version "1.0.0" 2127 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" 2128 | dependencies: 2129 | arr-union "^3.1.0" 2130 | get-value "^2.0.6" 2131 | is-extendable "^0.1.1" 2132 | set-value "^0.4.3" 2133 | 2134 | unset-value@^1.0.0: 2135 | version "1.0.0" 2136 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 2137 | dependencies: 2138 | has-value "^0.3.1" 2139 | isobject "^3.0.0" 2140 | 2141 | urix@^0.1.0: 2142 | version "0.1.0" 2143 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 2144 | 2145 | use@^3.1.0: 2146 | version "3.1.1" 2147 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" 2148 | 2149 | util-deprecate@~1.0.1: 2150 | version "1.0.2" 2151 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2152 | 2153 | uuid@^3.3.2: 2154 | version "3.3.2" 2155 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131" 2156 | 2157 | validate-npm-package-license@^3.0.1: 2158 | version "3.0.4" 2159 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 2160 | dependencies: 2161 | spdx-correct "^3.0.0" 2162 | spdx-expression-parse "^3.0.0" 2163 | 2164 | verror@1.10.0: 2165 | version "1.10.0" 2166 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 2167 | dependencies: 2168 | assert-plus "^1.0.0" 2169 | core-util-is "1.0.2" 2170 | extsprintf "^1.2.0" 2171 | 2172 | which-module@^2.0.0: 2173 | version "2.0.0" 2174 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 2175 | 2176 | which@^1.2.9, which@^1.3.0: 2177 | version "1.3.1" 2178 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 2179 | dependencies: 2180 | isexe "^2.0.0" 2181 | 2182 | wordwrap@~0.0.2: 2183 | version "0.0.3" 2184 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 2185 | 2186 | wrap-ansi@^2.0.0: 2187 | version "2.1.0" 2188 | resolved "http://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 2189 | dependencies: 2190 | string-width "^1.0.1" 2191 | strip-ansi "^3.0.1" 2192 | 2193 | wrappy@1: 2194 | version "1.0.2" 2195 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2196 | 2197 | write-file-atomic@^1.1.4: 2198 | version "1.3.4" 2199 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.4.tgz#f807a4f0b1d9e913ae7a48112e6cc3af1991b45f" 2200 | dependencies: 2201 | graceful-fs "^4.1.11" 2202 | imurmurhash "^0.1.4" 2203 | slide "^1.1.5" 2204 | 2205 | write-file-atomic@^2.3.0: 2206 | version "2.3.0" 2207 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 2208 | dependencies: 2209 | graceful-fs "^4.1.11" 2210 | imurmurhash "^0.1.4" 2211 | signal-exit "^3.0.2" 2212 | 2213 | xtend@~4.0.0: 2214 | version "4.0.1" 2215 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2216 | 2217 | y18n@^3.2.1: 2218 | version "3.2.1" 2219 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 2220 | 2221 | yallist@^2.1.2: 2222 | version "2.1.2" 2223 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 2224 | 2225 | yallist@^3.0.0: 2226 | version "3.0.2" 2227 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.2.tgz#8452b4bb7e83c7c188d8041c1a837c773d6d8bb9" 2228 | 2229 | yapool@^1.0.0: 2230 | version "1.0.0" 2231 | resolved "https://registry.yarnpkg.com/yapool/-/yapool-1.0.0.tgz#f693f29a315b50d9a9da2646a7a6645c96985b6a" 2232 | 2233 | yargs-parser@^8.0.0: 2234 | version "8.1.0" 2235 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-8.1.0.tgz#f1376a33b6629a5d063782944da732631e966950" 2236 | dependencies: 2237 | camelcase "^4.1.0" 2238 | 2239 | yargs-parser@^9.0.2: 2240 | version "9.0.2" 2241 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-9.0.2.tgz#9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077" 2242 | dependencies: 2243 | camelcase "^4.1.0" 2244 | 2245 | yargs@11.1.0: 2246 | version "11.1.0" 2247 | resolved "http://registry.npmjs.org/yargs/-/yargs-11.1.0.tgz#90b869934ed6e871115ea2ff58b03f4724ed2d77" 2248 | dependencies: 2249 | cliui "^4.0.0" 2250 | decamelize "^1.1.1" 2251 | find-up "^2.1.0" 2252 | get-caller-file "^1.0.1" 2253 | os-locale "^2.0.0" 2254 | require-directory "^2.1.1" 2255 | require-main-filename "^1.0.1" 2256 | set-blocking "^2.0.0" 2257 | string-width "^2.0.0" 2258 | which-module "^2.0.0" 2259 | y18n "^3.2.1" 2260 | yargs-parser "^9.0.2" 2261 | --------------------------------------------------------------------------------