├── .gitignore ├── LICENSE ├── README.md ├── docs ├── General_AWScloud.png ├── aws_maintenance_lambda.png ├── hipchat-notification.png └── slack-notification.png └── lambda ├── .gitignore ├── .npmignore ├── aws_maintenance_lambda.js ├── config.json ├── ec2.js ├── notifications ├── hipchat.js ├── notification.js └── slack.js ├── package.json ├── simpledb.js ├── test ├── config │ ├── default.json │ ├── with_hipchat_notification.json │ ├── with_slack_and_hipchat_notification.json │ └── with_slack_notification.json ├── data │ └── instance_details.json ├── ec2_test.js ├── notifications │ └── notification_test.js ├── simpledb_test.js └── test_helper.js ├── utils.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright {yyyy} {name of copyright owner} 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | 3 |

4 | 5 | A lambda function to send alerts (to Slack, Hipchat) on AWS maintenance events. While the email from AWS includes only the instance id, the alert will include the Name of the instance and owner from the appropriate tags. 6 | 7 | ## Sample Notification on Slack 8 | ![](docs/slack-notification.png) 9 | 10 | ## Sample notification on HipChat 11 | ![](docs/hipchat-notification.png) 12 | 13 | ## Prerequisite 14 | 15 | The lambda function assumes that all resources (EC2 instances) are tagged with a key `Owner` specifying the owner of the resource. 16 | 17 | ## Installation 18 | 19 | Update `lambda/config.json` with necessary config for your environment. The keys are explained below: 20 | 21 | `store.simpledb.domain` - The lambda function keeps track of processed events in AWS simbedb. This configures the simpledb domain to be used for this purpose. 22 | 23 | `notification.hipchat` 24 | - `auth_token` - The Hipchat API token. 25 | - `room` - The room to send the notifications to. 26 | - `icon_url` - Icon to use for the bot that sends the notification. 27 | - `username` - Username of the bot that sends the notification. 28 | - `owners` - List of owners per tag. The keys here will be the value of the tag `Owner`. This maps the tag value to owners - for example - `"devops : { "owner": "@devops_team"}"` 29 | - `all` - this is a catchall owner that is used as default if the resource did not have the `Owner` tag. 30 | 31 | 32 | `notification.slack` 33 | - `hook` - The slack hook url. 34 | - `channel` - The channel to send the notifications to. 35 | - `icon_url` - Icon to use for the bot that sends the notification. 36 | - `username` - Username of the bot that sends the notification. 37 | - `owners` - List of owners per tag. The keys here will be the value of the tag `Owner`. This maps the tag value to owners - for example - `"devops : { "owner": "@devops_team"}"` 38 | - `all` - this is a catchall owner that is used as default if the resource did not have the `Owner` tag. 39 | 40 | ### Manual 41 | 42 | Once the `config.json` has been updated, the lambda function can be manually installed by doing a `npm install --production`, zipping up the entire lambda folder and uploading to AWS like any other lambda function. 43 | 44 | ### Terraform 45 | 46 | The terraform plans to setup the lambda function are available at https://github.com/indix/terraform-aws-maintenance-lambda 47 | 48 | It is also available as a module in the Terraform registry - https://registry.terraform.io/modules/indix/maintenance-lambda/aws 49 | 50 | The plans include the necessary IAM roles and lambda schedule (once an hour by default). A normal `terraform plan` and `terraform apply` should fully setup the lambda function. Requires terraform 0.8.0+. 51 | 52 | Example usage as a module: 53 | 54 | ```hcl 55 | module "aws-maintenance-lambda" { 56 | source = "indix/maintenance-lambda/aws" 57 | 58 | lambda_prepared_source_dir = "${path.root}/aws-maintenance-lambda-temp/source" 59 | lambda_archive_path = "${path.root}/aws-maintenance-lambda-temp/dist/aws_maintenance_lambda.zip" 60 | config_json = "${path.root}/files/aws-maintenance-lambda-config.json" 61 | } 62 | ``` 63 | 64 | ## License 65 | 66 | This is an open source project licensed under the [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0). 67 | -------------------------------------------------------------------------------- /docs/General_AWScloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indix/aws-maintenance-lambda/d9268ccab0e83d828a7689664671ae937c36d6da/docs/General_AWScloud.png -------------------------------------------------------------------------------- /docs/aws_maintenance_lambda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indix/aws-maintenance-lambda/d9268ccab0e83d828a7689664671ae937c36d6da/docs/aws_maintenance_lambda.png -------------------------------------------------------------------------------- /docs/hipchat-notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indix/aws-maintenance-lambda/d9268ccab0e83d828a7689664671ae937c36d6da/docs/hipchat-notification.png -------------------------------------------------------------------------------- /docs/slack-notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indix/aws-maintenance-lambda/d9268ccab0e83d828a7689664671ae937c36d6da/docs/slack-notification.png -------------------------------------------------------------------------------- /lambda/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | *.tgz 3 | package/ 4 | *.log 5 | -------------------------------------------------------------------------------- /lambda/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | *.tgz 3 | package/ 4 | *.log 5 | test/ -------------------------------------------------------------------------------- /lambda/aws_maintenance_lambda.js: -------------------------------------------------------------------------------- 1 | var Promise = require('bluebird'); 2 | 3 | var notification = require('./notifications/notification'); 4 | var simpledb = require('./simpledb'); 5 | var ec2 = require('./ec2'); 6 | 7 | var handler = function* (event, context, callback) { 8 | try { 9 | yield simpledb.createDomain(); 10 | 11 | var instances = yield ec2.getInstancesUnderMaintenance(); 12 | 13 | yield Promise.filter(Object.keys(instances), function(instance) { 14 | var eventTimestamp = instances[instance].Events[0].NotBefore; 15 | return simpledb.isInstanceToBeProcessed(instance, eventTimestamp); 16 | }).map(function(instance) { 17 | return notification.sendMessage(instances[instance]) 18 | .then(function() { 19 | var eventTimestamp = instances[instance].Events[0].NotBefore; 20 | return simpledb.markInstanceAsProcessed(instance, eventTimestamp); 21 | }); 22 | }) 23 | 24 | callback(null, 'Finished'); 25 | } catch(ex) { 26 | callback(ex); 27 | } 28 | }; 29 | 30 | exports.handler = Promise.coroutine(handler); 31 | 32 | //Uncomment below to test locally 33 | // exports.handler(null, null, function(e, s) { 34 | // if(e) { 35 | // console.log('[ERROR] ' + e); 36 | // return; 37 | // } 38 | // 39 | // console.log(s); 40 | // }); 41 | -------------------------------------------------------------------------------- /lambda/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "store": { 3 | "simpledb": { 4 | "domain": "aws-maintenance-notifications" 5 | } 6 | }, 7 | "notifications": { 8 | "hipchat": { 9 | "auth_token": "", 10 | "room": "alerts", 11 | "icon_url": "https://raw.githubusercontent.com/indix/aws-maintenance-lambda/master/docs/General_AWScloud.png", 12 | "username": "AWS", 13 | "owners": { 14 | "all": { "owner": "@manojlds"} 15 | } 16 | }, 17 | "slack": { 18 | "hook": "https://hooks.slack.com", 19 | "channel": "#alerts", 20 | "icon_url": "https://raw.githubusercontent.com/indix/aws-maintenance-lambda/master/docs/General_AWScloud.png", 21 | "username": "AWS", 22 | "owners": { 23 | "all": { "owner": "@manojlds"} 24 | } 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /lambda/ec2.js: -------------------------------------------------------------------------------- 1 | var utils = require('./utils'); 2 | 3 | var Promise = require('bluebird'); 4 | var AWS = require('aws-sdk'); 5 | 6 | var getInstancesUnderMaintenance = function() { 7 | var ec2 = new AWS.EC2(utils.getRegionObject()); 8 | var instances = {}; 9 | 10 | var instanceStatusParams = { 11 | DryRun: false, 12 | Filters: [ 13 | { 14 | Name: 'event.code', 15 | Values: [ 16 | 'instance-reboot', 'system-reboot', 'system-maintenance', 'instance-retirement', 'instance-stop' 17 | ] 18 | }, 19 | ], 20 | IncludeAllInstances: true, 21 | MaxResults: 10, 22 | }; 23 | 24 | return ec2.describeInstanceStatus(instanceStatusParams) 25 | .promise() 26 | .then(function(data) { 27 | if(data.InstanceStatuses.length > 0) { 28 | data.InstanceStatuses.forEach(function(e) { instances[e.InstanceId] = e; }); 29 | return ec2.describeInstances({ InstanceIds: Object.keys(instances) }).promise(); 30 | } 31 | }).then(function(data) { 32 | if(data) { 33 | [].concat.apply([], data.Reservations.map(function(e) { return e.Instances; })) 34 | .forEach(function(e) { instances[e.InstanceId]['details'] = e; }); 35 | } 36 | return instances; 37 | }); 38 | }; 39 | 40 | module.exports = { getInstancesUnderMaintenance }; 41 | -------------------------------------------------------------------------------- /lambda/notifications/hipchat.js: -------------------------------------------------------------------------------- 1 | var http = require('https'); 2 | var querystring = require('querystring'); 3 | var Promise = require('bluebird'); 4 | 5 | var utils = require('../utils'); 6 | 7 | var getRequestData = function(notificationData, config) { 8 | var data = JSON.stringify({ 9 | 'color': notificationData.color, 10 | 'message': notificationData.message, 11 | 'notify': true, 12 | 'message_format': 'text', 13 | 'card': { 14 | 'style': 'application', 15 | 'url': 'https://console.aws.amazon.com/ec2/v2/home?region=' + utils.getRegion() + '#Events:', 16 | 'format': 'medium', 17 | 'id': notificationData.instanceId + notificationData.date, 18 | 'title': 'AWS Maintenance Event', 19 | 'description': notificationData.message, 20 | 'icon': { 21 | 'url': config.icon_url 22 | }, 23 | 'attributes': [ 24 | { 25 | 'label': 'Instance ID', 26 | 'value': { 27 | 'label': notificationData.instanceId 28 | } 29 | }, 30 | { 31 | 'label': 'Name', 32 | 'value': { 33 | 'label': notificationData.name 34 | } 35 | }, 36 | { 37 | 'label': 'Owner', 38 | 'value': { 39 | 'label': notificationData.owner 40 | } 41 | }, 42 | { 43 | 'label': 'Date', 44 | 'value': { 45 | 'label': notificationData.date 46 | } 47 | }, 48 | ] 49 | } 50 | }); 51 | 52 | var options = { 53 | hostname: 'api.hipchat.com', 54 | port: 443, 55 | path: '/v2/room/' + config.room + '/notification?auth_token=' + config.auth_token, 56 | method: 'POST', 57 | headers: { 58 | 'Content-Type': 'application/json', 59 | 'Content-Length': data.length 60 | } 61 | }; 62 | 63 | return { options, data }; 64 | }; 65 | 66 | module.exports = { getRequestData }; 67 | -------------------------------------------------------------------------------- /lambda/notifications/notification.js: -------------------------------------------------------------------------------- 1 | var http = require('https'); 2 | var querystring = require('querystring'); 3 | 4 | var Promise = require('bluebird'); 5 | 6 | var config = require('../config.json').notifications; 7 | 8 | var notificationChannels = { 9 | slack: require('./slack'), 10 | hipchat: require('./hipchat') 11 | }; 12 | 13 | var getMessageColor = function(instanceDetails) { 14 | return instanceDetails.Events[0].Description.indexOf('[Completed] ') === 0 15 | ? 'yellow' : 'red'; 16 | }; 17 | 18 | var postRequest = function(options, data) { 19 | return new Promise(function(resolve, reject) { 20 | var req = http.request(options, function(res) { 21 | if(res.statusCode < 200 || res.statusCode > 299) { 22 | return reject('Failed to send notification to ' + options.hostname + ' Status code: ' + res.statusCode ); 23 | } 24 | 25 | var buffer = ''; 26 | res.on('data', function(chunk) { 27 | if(chunk) { 28 | buffer += chunk; 29 | } 30 | }).on('end', function() { 31 | resolve(buffer); 32 | }); 33 | }).on('error', function(e) { 34 | reject(e); 35 | }); 36 | 37 | req.write(data); 38 | req.end(); 39 | }); 40 | }; 41 | 42 | var getNotificationData = function(instanceDetails, config) { 43 | var tags = instanceDetails.details.Tags.reduce(function(final, current) { 44 | final[current.Key] = current.Value; 45 | return final; 46 | }, {}); 47 | var owner = tags['Owner']; 48 | 49 | return { 50 | color: getMessageColor(instanceDetails), 51 | message: instanceDetails.Events[0].Description, 52 | name: tags['Name'], 53 | owner: (config.owners[owner] || config.owners.all).owner, 54 | date: instanceDetails.Events[0].NotBefore.toLocaleString(), 55 | instanceId: instanceDetails.InstanceId 56 | }; 57 | } 58 | 59 | var sendMessage = function(instanceDetails) { 60 | var notificationPromises = Object.keys(config).map(function(channel) { 61 | var notificationData = getNotificationData(instanceDetails, config[channel]); 62 | var requestData = notificationChannels[channel].getRequestData(notificationData, config[channel]); 63 | 64 | return postRequest(requestData.options, requestData.data); 65 | }); 66 | 67 | return Promise.all(notificationPromises); 68 | }; 69 | 70 | module.exports = { sendMessage }; -------------------------------------------------------------------------------- /lambda/notifications/slack.js: -------------------------------------------------------------------------------- 1 | var http = require('https'); 2 | var querystring = require('querystring'); 3 | var Promise = require('bluebird'); 4 | 5 | var getRequestData = function(notificationData, config) { 6 | notificationData.color = notificationData.color === 'red' ? 'danger' : 'warning'; 7 | 8 | var payloadStr = JSON.stringify({ 9 | 'username': config.username, 10 | 'channel': config.channel, 11 | 'link_names': 1, 12 | 'attachments': [ 13 | { 14 | 'title': 'AWS Maintenance Event', 15 | 'fallback': notificationData.message, 16 | 'text': notificationData.message, 17 | 'mrkdwn_in': ['fields'], 18 | 'fields': [ 19 | { 20 | 'title': 'Instance ID', 21 | 'value': notificationData.instanceId, 22 | 'short': true 23 | }, 24 | { 25 | 'title': 'Name', 26 | 'value': notificationData.name, 27 | 'short': true 28 | }, 29 | { 30 | 'title': 'Owner', 31 | 'value': notificationData.owner, 32 | 'short': true 33 | }, 34 | { 35 | 'title': 'Date', 36 | 'value': notificationData.date, 37 | 'short': true 38 | } 39 | ], 40 | 'color': notificationData.color 41 | } 42 | ], 43 | 'icon_url': config.icon_url 44 | }); 45 | 46 | var data = querystring.stringify({ 47 | 'payload': payloadStr 48 | }); 49 | 50 | var options = { 51 | hostname: 'hooks.slack.com', 52 | port: 443, 53 | path: config.hook.split('hooks.slack.com')[1], 54 | method: 'POST', 55 | headers: { 56 | 'Content-Type': 'application/x-www-form-urlencoded', 57 | 'Content-Length': data.length 58 | } 59 | }; 60 | 61 | return { options, data }; 62 | }; 63 | 64 | module.exports = { getRequestData }; 65 | -------------------------------------------------------------------------------- /lambda/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "aws_maintenance_lambda", 3 | "version": "0.3.0", 4 | "description": "AWS Lambda function to send alerts to Slack on AWS maintenance events", 5 | "main": "aws_maintenance_lambda.js", 6 | "scripts": { 7 | "test": "mocha --recursive --reporter spec" 8 | }, 9 | "author": "manojlds (https://stacktoheap.com/)", 10 | "license": "MIT", 11 | "dependencies": { 12 | "bluebird": "3.5.5" 13 | }, 14 | "devDependencies": { 15 | "aws-sdk-mock": "4.5.0", 16 | "chai": "4.2.0", 17 | "chai-as-promised": "7.1.1", 18 | "mocha": "6.2.0", 19 | "nock": "10.0.6", 20 | "rewire": "4.0.1" 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /lambda/simpledb.js: -------------------------------------------------------------------------------- 1 | var utils = require('./utils'); 2 | 3 | var Promise = require('bluebird'); 4 | var AWS = require('aws-sdk'); 5 | 6 | 7 | var config = require('./config.json').store.simpledb; 8 | 9 | var createDomain = function() { 10 | var simpledb = new AWS.SimpleDB(utils.getRegionObject()); 11 | return simpledb.createDomain({ DomainName: config.domain }).promise(); 12 | }; 13 | 14 | var deleteDomain = function() { 15 | var simpledb = new AWS.SimpleDB(utils.getRegionObject()); 16 | return simpledb.deleteDomain({ DomainName: config.domain }).promise(); 17 | }; 18 | 19 | var isInstanceToBeProcessed = function(instance, eventTimestamp) { 20 | var simpledb = new AWS.SimpleDB(utils.getRegionObject()); 21 | var key = instance + eventTimestamp; 22 | return simpledb.getAttributes({ 23 | DomainName: config.domain, 24 | ItemName: key, 25 | AttributeNames: [ 'processed' ], 26 | ConsistentRead: true 27 | }) 28 | .promise() 29 | .then(function(data) { 30 | return data.Attributes === undefined; 31 | }); 32 | }; 33 | 34 | var markInstanceAsProcessed = function(instance, eventTimestamp) { 35 | var simpledb = new AWS.SimpleDB(utils.getRegionObject()); 36 | var key = instance + eventTimestamp; 37 | return simpledb.putAttributes({ 38 | DomainName: config.domain, 39 | ItemName: key, 40 | Attributes: [ 41 | { 42 | Name: 'processed', 43 | Value: 'true' 44 | } 45 | ] 46 | }).promise(); 47 | }; 48 | 49 | module.exports = { createDomain, deleteDomain, isInstanceToBeProcessed, markInstanceAsProcessed}; -------------------------------------------------------------------------------- /lambda/test/config/default.json: -------------------------------------------------------------------------------- 1 | { 2 | "store": { 3 | "simpledb": { 4 | "domain": "aws-maintenance-notifications" 5 | } 6 | }, 7 | "notifications": { 8 | 9 | } 10 | } -------------------------------------------------------------------------------- /lambda/test/config/with_hipchat_notification.json: -------------------------------------------------------------------------------- 1 | { 2 | "store": { 3 | "simpledb": { 4 | "domain": "aws-maintenance-notifications" 5 | } 6 | }, 7 | "notifications": { 8 | "hipchat": { 9 | "auth_token": "123456", 10 | "room": "alerts", 11 | "icon_url": "https://raw.githubusercontent.com/indix/aws-maintenance-lambda/master/docs/General_AWScloud.png", 12 | "username": "AWS", 13 | "owners": { 14 | "all": { "owner": "@manojlds"} 15 | } 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /lambda/test/config/with_slack_and_hipchat_notification.json: -------------------------------------------------------------------------------- 1 | { 2 | "store": { 3 | "simpledb": { 4 | "domain": "aws-maintenance-notifications" 5 | } 6 | }, 7 | "notifications": { 8 | "slack": { 9 | "hook": "https://hooks.slack.com/123456", 10 | "channel": "#alerts", 11 | "icon_url": "https://raw.githubusercontent.com/indix/aws-maintenance-lambda/master/docs/General_AWScloud.png", 12 | "username": "AWS", 13 | "owners": { 14 | "all": { "owner": "@manojlds"} 15 | } 16 | }, 17 | "hipchat": { 18 | "auth_token": "123456", 19 | "room": "alerts", 20 | "icon_url": "https://raw.githubusercontent.com/indix/aws-maintenance-lambda/master/docs/General_AWScloud.png", 21 | "username": "AWS", 22 | "owners": { 23 | "all": { "owner": "@manojlds"} 24 | } 25 | } 26 | } 27 | } -------------------------------------------------------------------------------- /lambda/test/config/with_slack_notification.json: -------------------------------------------------------------------------------- 1 | { 2 | "store": { 3 | "simpledb": { 4 | "domain": "aws-maintenance-notifications" 5 | } 6 | }, 7 | "notifications": { 8 | "slack": { 9 | "hook": "https://hooks.slack.com/123456", 10 | "channel": "#alerts", 11 | "icon_url": "https://raw.githubusercontent.com/indix/aws-maintenance-lambda/master/docs/General_AWScloud.png", 12 | "username": "AWS", 13 | "owners": { 14 | "all": { "owner": "@manojlds"} 15 | } 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /lambda/test/data/instance_details.json: -------------------------------------------------------------------------------- 1 | { 2 | "Events": [ 3 | { 4 | "Description": "degraded hardware", 5 | "NotBefore": "2016-11-10" 6 | } 7 | ], 8 | "InstanceId": "i-123456", 9 | "details": { 10 | "Tags": [ 11 | { 12 | "Key": "Name", 13 | "Value": "instance-1" 14 | }, 15 | { 16 | "Key": "Owner", 17 | "Value": "owner-1" 18 | } 19 | ] 20 | } 21 | } -------------------------------------------------------------------------------- /lambda/test/ec2_test.js: -------------------------------------------------------------------------------- 1 | var AWS = require('aws-sdk-mock'); 2 | 3 | describe('ec2#getInstancesUnderMaintenance', function() { 4 | var ec2 = require('../ec2.js'); 5 | 6 | afterEach(function() { 7 | AWS.restore('EC2'); 8 | }); 9 | 10 | it('should return empty if no instance under maintenance', function() { 11 | AWS.mock('EC2', 'describeInstanceStatus', function (params, callback){ 12 | callback(null, { 13 | InstanceStatuses: [] 14 | }); 15 | }); 16 | 17 | return ec2.getInstancesUnderMaintenance().should.eventually.eql({}); 18 | }); 19 | 20 | it('should return instances under maintenance', function() { 21 | AWS.mock('EC2', 'describeInstanceStatus', function (params, callback){ 22 | callback(null, { 23 | InstanceStatuses: [ 24 | { 25 | InstanceId: 'id-1' 26 | } 27 | ] 28 | }); 29 | }); 30 | AWS.mock('EC2', 'describeInstances', function (params, callback){ 31 | callback(null, { 32 | Reservations: [ 33 | { 34 | Instances: [ 35 | { 36 | InstanceId: 'id-1', 37 | Tags: [ 38 | { 39 | Key: 'Name', 40 | Value: 'Instance 1' 41 | } 42 | ] 43 | } 44 | ] 45 | } 46 | ] 47 | }); 48 | }); 49 | return ec2.getInstancesUnderMaintenance().should.eventually.eql({ 50 | 'id-1': { 51 | InstanceId: 'id-1', 52 | details: { 53 | InstanceId: 'id-1', 54 | Tags: [ 55 | { 56 | Key: 'Name', 57 | Value: 'Instance 1' 58 | } 59 | ] 60 | } 61 | } 62 | }); 63 | }); 64 | }); 65 | 66 | -------------------------------------------------------------------------------- /lambda/test/notifications/notification_test.js: -------------------------------------------------------------------------------- 1 | var rewire = require('rewire'); 2 | var nock = require('nock'); 3 | var testInstanceDetails = require('../data/instance_details.json'); 4 | 5 | describe('notification#sendMessage', function() { 6 | it('should not send message if no notification handler is configured', function() { 7 | var notification = rewire('../../notifications/notification'); 8 | notification.__set__('config', require('../config/default.json').notifications); 9 | 10 | notification.sendMessage({}).should.be.fulfilled; 11 | }); 12 | 13 | it('should fail when unable to send notification to slack ', function() { 14 | nock('https://hooks.slack.com') 15 | .intercept('/123456', 'POST') 16 | .reply(500); 17 | var notification = rewire('../../notifications/notification'); 18 | notification.__set__('config', require('../config/with_slack_notification.json').notifications); 19 | notification.sendMessage(testInstanceDetails).should.be.rejected; 20 | }); 21 | 22 | it('should send notification to slack ', function() { 23 | nock('https://hooks.slack.com') 24 | .intercept('/123456', 'POST') 25 | .reply(200); 26 | var notification = rewire('../../notifications/notification'); 27 | notification.__set__('config', require('../config/with_slack_notification.json').notifications); 28 | notification.sendMessage(testInstanceDetails).should.be.fulfilled; 29 | }); 30 | 31 | it('should fail when unable to send notification to hipchat', function() { 32 | nock('https://api.hipchat.com') 33 | .intercept('/v2/room/alerts/notification', 'POST') 34 | .query({ auth_token: '123456' }) 35 | .reply(500); 36 | var notification = rewire('../../notifications/notification'); 37 | notification.__set__('config', require('../config/with_hipchat_notification.json').notifications); 38 | notification.sendMessage(testInstanceDetails).should.be.rejected; 39 | }); 40 | 41 | it('should send notification to hipchat', function() { 42 | nock('https://api.hipchat.com') 43 | .intercept('/v2/room/alerts/notification', 'POST') 44 | .query({ auth_token: '123456' }) 45 | .reply(200); 46 | var notification = rewire('../../notifications/notification'); 47 | notification.__set__('config', require('../config/with_hipchat_notification.json').notifications); 48 | notification.sendMessage(testInstanceDetails).should.be.fulfilled; 49 | }); 50 | 51 | it('should fail if failure to send notification to slack or hipchat', function() { 52 | nock('https://hooks.slack.com') 53 | .intercept('/123456', 'POST') 54 | .reply(200); 55 | nock('https://api.hipchat.com') 56 | .intercept('/v2/room/alerts/notification', 'POST') 57 | .query({ auth_token: '123456' }) 58 | .reply(500); 59 | var notification = rewire('../../notifications/notification'); 60 | notification.__set__('config', require('../config/with_slack_and_hipchat_notification.json').notifications); 61 | notification.sendMessage(testInstanceDetails).should.be.rejected; 62 | }); 63 | 64 | it('should send notification to slack and hipchat', function() { 65 | var slackNock = nock('https://hooks.slack.com') 66 | .intercept('/123456', 'POST') 67 | .reply(200); 68 | var hipchatNock = nock('https://api.hipchat.com') 69 | .intercept('/v2/room/alerts/notification', 'POST') 70 | .query({ auth_token: '123456' }) 71 | .reply(200); 72 | var notification = rewire('../../notifications/notification'); 73 | notification.__set__('config', require('../config/with_slack_and_hipchat_notification.json').notifications); 74 | notification.sendMessage(testInstanceDetails).should.be.fulfilled 75 | .then(function() { 76 | slackNock.done(); 77 | hipchatNock.done(); 78 | }); 79 | }); 80 | }); -------------------------------------------------------------------------------- /lambda/test/simpledb_test.js: -------------------------------------------------------------------------------- 1 | var AWS = require('aws-sdk-mock'); 2 | describe('simpledb#createDomain', function() { 3 | var simpledb = require('../simpledb.js'); 4 | 5 | afterEach(function() { 6 | AWS.restore('SimpleDB'); 7 | }); 8 | 9 | it('should create new domain if it doesn\'t exist', function() { 10 | AWS.mock('SimpleDB', 'createDomain', function (params, callback){ 11 | callback(null, 'created'); 12 | }); 13 | 14 | return simpledb.createDomain().should.be.fulfilled; 15 | }); 16 | }); 17 | 18 | describe('simpledb#isInstanceToBeProcessed', function() { 19 | var simpledb = require('../simpledb.js'); 20 | 21 | afterEach(function() { 22 | AWS.restore('SimpleDB'); 23 | }); 24 | 25 | it('should return true if event for instance has not been processed', function() { 26 | AWS.mock('SimpleDB', 'getAttributes', function (params, callback){ 27 | if(params.DomainName === 'aws-maintenance-notifications' && params.ItemName === 'instance-1event-1') { 28 | return callback(null, {}); 29 | } 30 | 31 | return callback('error'); 32 | }); 33 | 34 | return simpledb.isInstanceToBeProcessed('instance-1', 'event-1').should.eventually.equal(true); 35 | }); 36 | 37 | it('should return false if event for instance has been processed', function() { 38 | AWS.mock('SimpleDB', 'getAttributes', function (params, callback){ 39 | if(params.DomainName === 'aws-maintenance-notifications' && params.ItemName === 'instance-1event-1') { 40 | return callback(null, { Attributes: 'done'}); 41 | } 42 | 43 | return callback('error'); 44 | }); 45 | 46 | return simpledb.isInstanceToBeProcessed('instance-1', 'event-1').should.eventually.equal(false); 47 | }); 48 | }); 49 | 50 | 51 | describe('simpledb#markInstanceAsProcessed', function() { 52 | var simpledb = require('../simpledb.js'); 53 | 54 | afterEach(function() { 55 | AWS.restore('SimpleDB'); 56 | }); 57 | 58 | it('should set event of instance as processed', function() { 59 | AWS.mock('SimpleDB', 'putAttributes', function (params, callback){ 60 | params.should.eql({ 61 | DomainName: 'aws-maintenance-notifications', 62 | ItemName: 'instance-1event-1', 63 | Attributes: [ 64 | { 65 | Name: 'processed', 66 | Value: 'true' 67 | } 68 | ] 69 | }); 70 | 71 | callback(null, 'done') 72 | }); 73 | 74 | return simpledb.markInstanceAsProcessed('instance-1', 'event-1').should.be.fulfilled 75 | }); 76 | }); 77 | 78 | -------------------------------------------------------------------------------- /lambda/test/test_helper.js: -------------------------------------------------------------------------------- 1 | var chai = require('chai'); 2 | var chaiAsPromised = require('chai-as-promised'); 3 | chai.use(chaiAsPromised); 4 | chai.should(); 5 | var nock = require('nock'); 6 | 7 | before(function() { 8 | nock.disableNetConnect(); 9 | }); 10 | 11 | after(function() { 12 | nock.enableNetConnect(); 13 | }); -------------------------------------------------------------------------------- /lambda/utils.js: -------------------------------------------------------------------------------- 1 | var region = process.env.AWS_DEFAULT_REGION || 'us-east-1'; 2 | 3 | var getRegion = function () { 4 | return region; 5 | } 6 | 7 | var getRegionObject = function() { 8 | return { region: region }; 9 | } 10 | 11 | module.exports = { getRegion, getRegionObject }; -------------------------------------------------------------------------------- /lambda/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@sinonjs/commons@^1", "@sinonjs/commons@^1.0.2", "@sinonjs/commons@^1.4.0": 6 | version "1.4.0" 7 | resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.4.0.tgz#7b3ec2d96af481d7a0321252e7b1c94724ec5a78" 8 | integrity sha512-9jHK3YF/8HtJ9wCAbG+j8cD0i0+ATS9A7gXFqS36TblLPNy6rEEc+SB0imo91eCboGaBYGV/MT1/br/J+EE7Tw== 9 | dependencies: 10 | type-detect "4.0.8" 11 | 12 | "@sinonjs/formatio@^3.1.0", "@sinonjs/formatio@^3.2.1": 13 | version "3.2.1" 14 | resolved "https://registry.yarnpkg.com/@sinonjs/formatio/-/formatio-3.2.1.tgz#52310f2f9bcbc67bdac18c94ad4901b95fde267e" 15 | integrity sha512-tsHvOB24rvyvV2+zKMmPkZ7dXX6LSLKZ7aOtXY6Edklp0uRcgGpOsQTTGTcWViFyx4uhWc6GV8QdnALbIbIdeQ== 16 | dependencies: 17 | "@sinonjs/commons" "^1" 18 | "@sinonjs/samsam" "^3.1.0" 19 | 20 | "@sinonjs/samsam@^3.1.0", "@sinonjs/samsam@^3.3.1": 21 | version "3.3.2" 22 | resolved "https://registry.yarnpkg.com/@sinonjs/samsam/-/samsam-3.3.2.tgz#63942e3d5eb0b79f6de3bef9abfad15fb4b6401b" 23 | integrity sha512-ILO/rR8LfAb60Y1Yfp9vxfYAASK43NFC2mLzpvLUbCQY/Qu8YwReboseu8aheCEkyElZF2L2T9mHcR2bgdvZyA== 24 | dependencies: 25 | "@sinonjs/commons" "^1.0.2" 26 | array-from "^2.1.1" 27 | lodash "^4.17.11" 28 | 29 | "@sinonjs/text-encoding@^0.7.1": 30 | version "0.7.1" 31 | resolved "https://registry.yarnpkg.com/@sinonjs/text-encoding/-/text-encoding-0.7.1.tgz#8da5c6530915653f3a1f38fd5f101d8c3f8079c5" 32 | integrity sha512-+iTbntw2IZPb/anVDbypzfQa+ay64MW0Zo8aJ8gZPWMMK6/OubMVb6lUPMagqjOPnmtauXnFCACVl3O7ogjeqQ== 33 | 34 | acorn-jsx@^3.0.0: 35 | version "3.0.1" 36 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 37 | integrity sha1-r9+UiPsezvyDSPb7IvRk4ypYs2s= 38 | dependencies: 39 | acorn "^3.0.4" 40 | 41 | acorn@^3.0.4: 42 | version "3.3.0" 43 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 44 | integrity sha1-ReN/s56No/JbruP/U2niu18iAXo= 45 | 46 | acorn@^5.5.0: 47 | version "5.7.3" 48 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279" 49 | integrity sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw== 50 | 51 | ajv-keywords@^2.1.0: 52 | version "2.1.1" 53 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762" 54 | integrity sha1-YXmX/F9gV2iUxDX5QNgZ4TW4B2I= 55 | 56 | ajv@^5.2.3, ajv@^5.3.0: 57 | version "5.5.2" 58 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 59 | integrity sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU= 60 | dependencies: 61 | co "^4.6.0" 62 | fast-deep-equal "^1.0.0" 63 | fast-json-stable-stringify "^2.0.0" 64 | json-schema-traverse "^0.3.0" 65 | 66 | ansi-colors@3.2.3: 67 | version "3.2.3" 68 | resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.3.tgz#57d35b8686e851e2cc04c403f1c00203976a1813" 69 | integrity sha512-LEHHyuhlPY3TmuUYMh2oz89lTShfvgbmzaBcxve9t/9Wuy7Dwf4yoAKcND7KFT1HAQfqZ12qtc+DUrBMeKF9nw== 70 | 71 | ansi-escapes@^3.0.0: 72 | version "3.2.0" 73 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" 74 | integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== 75 | 76 | ansi-regex@^2.0.0: 77 | version "2.1.1" 78 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 79 | integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= 80 | 81 | ansi-regex@^3.0.0: 82 | version "3.0.0" 83 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 84 | integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= 85 | 86 | ansi-regex@^4.1.0: 87 | version "4.1.0" 88 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" 89 | integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== 90 | 91 | ansi-styles@^2.2.1: 92 | version "2.2.1" 93 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 94 | integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= 95 | 96 | ansi-styles@^3.2.1: 97 | version "3.2.1" 98 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 99 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 100 | dependencies: 101 | color-convert "^1.9.0" 102 | 103 | argparse@^1.0.7: 104 | version "1.0.10" 105 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 106 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 107 | dependencies: 108 | sprintf-js "~1.0.2" 109 | 110 | array-from@^2.1.1: 111 | version "2.1.1" 112 | resolved "https://registry.yarnpkg.com/array-from/-/array-from-2.1.1.tgz#cfe9d8c26628b9dc5aecc62a9f5d8f1f352c1195" 113 | integrity sha1-z+nYwmYoudxa7MYqn12PHzUsEZU= 114 | 115 | assertion-error@^1.1.0: 116 | version "1.1.0" 117 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b" 118 | integrity sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw== 119 | 120 | aws-sdk-mock@4.5.0: 121 | version "4.5.0" 122 | resolved "https://registry.yarnpkg.com/aws-sdk-mock/-/aws-sdk-mock-4.5.0.tgz#9de5feefaf9c755f22fcf029db3f202599a9219e" 123 | integrity sha512-PAZKbQsdaVVoMr1JZbi04FUrkxCK16qnwBWLm4keeBrEfqYab/cFNsn5IVp/ThdMQpJGYHnmqUPyFq1plKaHZg== 124 | dependencies: 125 | aws-sdk "^2.483.0" 126 | sinon "^7.3.2" 127 | traverse "^0.6.6" 128 | 129 | aws-sdk@^2.483.0: 130 | version "2.498.0" 131 | resolved "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.498.0.tgz#42e05965166a01b45e026e4922926df4cd160fc5" 132 | integrity sha512-xyIBgPylTWGfwOUgDzXMIcB5uVdBfTAfA+cOEl/tCsq88kNm4LWuZtv/O9g5hZYFQeUViQMiRwpFUAf9v8rcCQ== 133 | dependencies: 134 | buffer "4.9.1" 135 | events "1.1.1" 136 | ieee754 "1.1.8" 137 | jmespath "0.15.0" 138 | querystring "0.2.0" 139 | sax "1.2.1" 140 | url "0.10.3" 141 | uuid "3.3.2" 142 | xml2js "0.4.19" 143 | 144 | babel-code-frame@^6.22.0: 145 | version "6.26.0" 146 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 147 | integrity sha1-Y/1D99weO7fONZR9uP42mj9Yx0s= 148 | dependencies: 149 | chalk "^1.1.3" 150 | esutils "^2.0.2" 151 | js-tokens "^3.0.2" 152 | 153 | balanced-match@^1.0.0: 154 | version "1.0.0" 155 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 156 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 157 | 158 | base64-js@^1.0.2: 159 | version "1.3.0" 160 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.0.tgz#cab1e6118f051095e58b5281aea8c1cd22bfc0e3" 161 | integrity sha512-ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw== 162 | 163 | bluebird@3.5.5: 164 | version "3.5.5" 165 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.5.tgz#a8d0afd73251effbbd5fe384a77d73003c17a71f" 166 | integrity sha512-5am6HnnfN+urzt4yfg7IgTbotDjIT/u8AJpEt0sIU9FtXfVeezXAPKswrG+xKUCOYAINpSdgZVDU6QFh+cuH3w== 167 | 168 | brace-expansion@^1.1.7: 169 | version "1.1.11" 170 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 171 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 172 | dependencies: 173 | balanced-match "^1.0.0" 174 | concat-map "0.0.1" 175 | 176 | browser-stdout@1.3.1: 177 | version "1.3.1" 178 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" 179 | integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw== 180 | 181 | buffer-from@^1.0.0: 182 | version "1.1.1" 183 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 184 | integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== 185 | 186 | buffer@4.9.1: 187 | version "4.9.1" 188 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 189 | integrity sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg= 190 | dependencies: 191 | base64-js "^1.0.2" 192 | ieee754 "^1.1.4" 193 | isarray "^1.0.0" 194 | 195 | caller-path@^0.1.0: 196 | version "0.1.0" 197 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 198 | integrity sha1-lAhe9jWB7NPaqSREqP6U6CV3dR8= 199 | dependencies: 200 | callsites "^0.2.0" 201 | 202 | callsites@^0.2.0: 203 | version "0.2.0" 204 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 205 | integrity sha1-r6uWJikQp/M8GaV3WCXGnzTjUMo= 206 | 207 | camelcase@^5.0.0: 208 | version "5.3.1" 209 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 210 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 211 | 212 | chai-as-promised@7.1.1: 213 | version "7.1.1" 214 | resolved "https://registry.yarnpkg.com/chai-as-promised/-/chai-as-promised-7.1.1.tgz#08645d825deb8696ee61725dbf590c012eb00ca0" 215 | integrity sha512-azL6xMoi+uxu6z4rhWQ1jbdUhOMhis2PvscD/xjLqNMkv3BPPp2JyyuTHOrf9BOosGpNQ11v6BKv/g57RXbiaA== 216 | dependencies: 217 | check-error "^1.0.2" 218 | 219 | chai@4.2.0, chai@^4.1.2: 220 | version "4.2.0" 221 | resolved "https://registry.yarnpkg.com/chai/-/chai-4.2.0.tgz#760aa72cf20e3795e84b12877ce0e83737aa29e5" 222 | integrity sha512-XQU3bhBukrOsQCuwZndwGcCVQHyZi53fQ6Ys1Fym7E4olpIqqZZhhoFJoaKVvV17lWQoXYwgWN2nF5crA8J2jw== 223 | dependencies: 224 | assertion-error "^1.1.0" 225 | check-error "^1.0.2" 226 | deep-eql "^3.0.1" 227 | get-func-name "^2.0.0" 228 | pathval "^1.1.0" 229 | type-detect "^4.0.5" 230 | 231 | chalk@^1.1.3: 232 | version "1.1.3" 233 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 234 | integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= 235 | dependencies: 236 | ansi-styles "^2.2.1" 237 | escape-string-regexp "^1.0.2" 238 | has-ansi "^2.0.0" 239 | strip-ansi "^3.0.0" 240 | supports-color "^2.0.0" 241 | 242 | chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0: 243 | version "2.4.2" 244 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 245 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 246 | dependencies: 247 | ansi-styles "^3.2.1" 248 | escape-string-regexp "^1.0.5" 249 | supports-color "^5.3.0" 250 | 251 | chardet@^0.4.0: 252 | version "0.4.2" 253 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" 254 | integrity sha1-tUc7M9yXxCTl2Y3IfVXU2KKci/I= 255 | 256 | check-error@^1.0.2: 257 | version "1.0.2" 258 | resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82" 259 | integrity sha1-V00xLt2Iu13YkS6Sht1sCu1KrII= 260 | 261 | circular-json@^0.3.1: 262 | version "0.3.3" 263 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" 264 | integrity sha512-UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A== 265 | 266 | cli-cursor@^2.1.0: 267 | version "2.1.0" 268 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 269 | integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU= 270 | dependencies: 271 | restore-cursor "^2.0.0" 272 | 273 | cli-width@^2.0.0: 274 | version "2.2.0" 275 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 276 | integrity sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk= 277 | 278 | cliui@^4.0.0: 279 | version "4.1.0" 280 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49" 281 | integrity sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ== 282 | dependencies: 283 | string-width "^2.1.1" 284 | strip-ansi "^4.0.0" 285 | wrap-ansi "^2.0.0" 286 | 287 | co@^4.6.0: 288 | version "4.6.0" 289 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 290 | integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= 291 | 292 | code-point-at@^1.0.0: 293 | version "1.1.0" 294 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 295 | integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= 296 | 297 | color-convert@^1.9.0: 298 | version "1.9.3" 299 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 300 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 301 | dependencies: 302 | color-name "1.1.3" 303 | 304 | color-name@1.1.3: 305 | version "1.1.3" 306 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 307 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 308 | 309 | concat-map@0.0.1: 310 | version "0.0.1" 311 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 312 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 313 | 314 | concat-stream@^1.6.0: 315 | version "1.6.2" 316 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" 317 | integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== 318 | dependencies: 319 | buffer-from "^1.0.0" 320 | inherits "^2.0.3" 321 | readable-stream "^2.2.2" 322 | typedarray "^0.0.6" 323 | 324 | core-util-is@~1.0.0: 325 | version "1.0.2" 326 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 327 | integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= 328 | 329 | cross-spawn@^5.1.0: 330 | version "5.1.0" 331 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 332 | integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk= 333 | dependencies: 334 | lru-cache "^4.0.1" 335 | shebang-command "^1.2.0" 336 | which "^1.2.9" 337 | 338 | cross-spawn@^6.0.0: 339 | version "6.0.5" 340 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" 341 | integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== 342 | dependencies: 343 | nice-try "^1.0.4" 344 | path-key "^2.0.1" 345 | semver "^5.5.0" 346 | shebang-command "^1.2.0" 347 | which "^1.2.9" 348 | 349 | debug@3.2.6, debug@^3.1.0: 350 | version "3.2.6" 351 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" 352 | integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== 353 | dependencies: 354 | ms "^2.1.1" 355 | 356 | debug@^4.1.0: 357 | version "4.1.1" 358 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" 359 | integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== 360 | dependencies: 361 | ms "^2.1.1" 362 | 363 | decamelize@^1.2.0: 364 | version "1.2.0" 365 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 366 | integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= 367 | 368 | deep-eql@^3.0.1: 369 | version "3.0.1" 370 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-3.0.1.tgz#dfc9404400ad1c8fe023e7da1df1c147c4b444df" 371 | integrity sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw== 372 | dependencies: 373 | type-detect "^4.0.0" 374 | 375 | deep-equal@^1.0.0: 376 | version "1.0.1" 377 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" 378 | integrity sha1-9dJgKStmDghO/0zbyfCK0yR0SLU= 379 | 380 | deep-is@~0.1.3: 381 | version "0.1.3" 382 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 383 | integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= 384 | 385 | define-properties@^1.1.2: 386 | version "1.1.3" 387 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 388 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== 389 | dependencies: 390 | object-keys "^1.0.12" 391 | 392 | diff@3.5.0, diff@^3.5.0: 393 | version "3.5.0" 394 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" 395 | integrity sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA== 396 | 397 | doctrine@^2.1.0: 398 | version "2.1.0" 399 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 400 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== 401 | dependencies: 402 | esutils "^2.0.2" 403 | 404 | emoji-regex@^7.0.1: 405 | version "7.0.3" 406 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" 407 | integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== 408 | 409 | end-of-stream@^1.1.0: 410 | version "1.4.1" 411 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.1.tgz#ed29634d19baba463b6ce6b80a37213eab71ec43" 412 | integrity sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q== 413 | dependencies: 414 | once "^1.4.0" 415 | 416 | es-abstract@^1.5.1: 417 | version "1.13.0" 418 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.13.0.tgz#ac86145fdd5099d8dd49558ccba2eaf9b88e24e9" 419 | integrity sha512-vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg== 420 | dependencies: 421 | es-to-primitive "^1.2.0" 422 | function-bind "^1.1.1" 423 | has "^1.0.3" 424 | is-callable "^1.1.4" 425 | is-regex "^1.0.4" 426 | object-keys "^1.0.12" 427 | 428 | es-to-primitive@^1.2.0: 429 | version "1.2.0" 430 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377" 431 | integrity sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg== 432 | dependencies: 433 | is-callable "^1.1.4" 434 | is-date-object "^1.0.1" 435 | is-symbol "^1.0.2" 436 | 437 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 438 | version "1.0.5" 439 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 440 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 441 | 442 | eslint-scope@^3.7.1: 443 | version "3.7.3" 444 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.3.tgz#bb507200d3d17f60247636160b4826284b108535" 445 | integrity sha512-W+B0SvF4gamyCTmUc+uITPY0989iXVfKvhwtmJocTaYoc/3khEHmEmvfY/Gn9HA9VV75jrQECsHizkNw1b68FA== 446 | dependencies: 447 | esrecurse "^4.1.0" 448 | estraverse "^4.1.1" 449 | 450 | eslint-visitor-keys@^1.0.0: 451 | version "1.0.0" 452 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d" 453 | integrity sha512-qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ== 454 | 455 | eslint@^4.19.1: 456 | version "4.19.1" 457 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.19.1.tgz#32d1d653e1d90408854bfb296f076ec7e186a300" 458 | integrity sha512-bT3/1x1EbZB7phzYu7vCr1v3ONuzDtX8WjuM9c0iYxe+cq+pwcKEoQjl7zd3RpC6YOLgnSy3cTN58M2jcoPDIQ== 459 | dependencies: 460 | ajv "^5.3.0" 461 | babel-code-frame "^6.22.0" 462 | chalk "^2.1.0" 463 | concat-stream "^1.6.0" 464 | cross-spawn "^5.1.0" 465 | debug "^3.1.0" 466 | doctrine "^2.1.0" 467 | eslint-scope "^3.7.1" 468 | eslint-visitor-keys "^1.0.0" 469 | espree "^3.5.4" 470 | esquery "^1.0.0" 471 | esutils "^2.0.2" 472 | file-entry-cache "^2.0.0" 473 | functional-red-black-tree "^1.0.1" 474 | glob "^7.1.2" 475 | globals "^11.0.1" 476 | ignore "^3.3.3" 477 | imurmurhash "^0.1.4" 478 | inquirer "^3.0.6" 479 | is-resolvable "^1.0.0" 480 | js-yaml "^3.9.1" 481 | json-stable-stringify-without-jsonify "^1.0.1" 482 | levn "^0.3.0" 483 | lodash "^4.17.4" 484 | minimatch "^3.0.2" 485 | mkdirp "^0.5.1" 486 | natural-compare "^1.4.0" 487 | optionator "^0.8.2" 488 | path-is-inside "^1.0.2" 489 | pluralize "^7.0.0" 490 | progress "^2.0.0" 491 | regexpp "^1.0.1" 492 | require-uncached "^1.0.3" 493 | semver "^5.3.0" 494 | strip-ansi "^4.0.0" 495 | strip-json-comments "~2.0.1" 496 | table "4.0.2" 497 | text-table "~0.2.0" 498 | 499 | espree@^3.5.4: 500 | version "3.5.4" 501 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.4.tgz#b0f447187c8a8bed944b815a660bddf5deb5d1a7" 502 | integrity sha512-yAcIQxtmMiB/jL32dzEp2enBeidsB7xWPLNiw3IIkpVds1P+h7qF9YwJq1yUNzp2OKXgAprs4F61ih66UsoD1A== 503 | dependencies: 504 | acorn "^5.5.0" 505 | acorn-jsx "^3.0.0" 506 | 507 | esprima@^4.0.0: 508 | version "4.0.1" 509 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 510 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 511 | 512 | esquery@^1.0.0: 513 | version "1.0.1" 514 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708" 515 | integrity sha512-SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA== 516 | dependencies: 517 | estraverse "^4.0.0" 518 | 519 | esrecurse@^4.1.0: 520 | version "4.2.1" 521 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" 522 | integrity sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ== 523 | dependencies: 524 | estraverse "^4.1.0" 525 | 526 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1: 527 | version "4.2.0" 528 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 529 | integrity sha1-De4/7TH81GlhjOc0IJn8GvoL2xM= 530 | 531 | esutils@^2.0.2: 532 | version "2.0.2" 533 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 534 | integrity sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs= 535 | 536 | events@1.1.1: 537 | version "1.1.1" 538 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 539 | integrity sha1-nr23Y1rQmccNzEwqH1AEKI6L2SQ= 540 | 541 | execa@^1.0.0: 542 | version "1.0.0" 543 | resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" 544 | integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== 545 | dependencies: 546 | cross-spawn "^6.0.0" 547 | get-stream "^4.0.0" 548 | is-stream "^1.1.0" 549 | npm-run-path "^2.0.0" 550 | p-finally "^1.0.0" 551 | signal-exit "^3.0.0" 552 | strip-eof "^1.0.0" 553 | 554 | external-editor@^2.0.4: 555 | version "2.2.0" 556 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5" 557 | integrity sha512-bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A== 558 | dependencies: 559 | chardet "^0.4.0" 560 | iconv-lite "^0.4.17" 561 | tmp "^0.0.33" 562 | 563 | fast-deep-equal@^1.0.0: 564 | version "1.1.0" 565 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" 566 | integrity sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ= 567 | 568 | fast-json-stable-stringify@^2.0.0: 569 | version "2.0.0" 570 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 571 | integrity sha1-1RQsDK7msRifh9OnYREGT4bIu/I= 572 | 573 | fast-levenshtein@~2.0.4: 574 | version "2.0.6" 575 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 576 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= 577 | 578 | figures@^2.0.0: 579 | version "2.0.0" 580 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 581 | integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI= 582 | dependencies: 583 | escape-string-regexp "^1.0.5" 584 | 585 | file-entry-cache@^2.0.0: 586 | version "2.0.0" 587 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 588 | integrity sha1-w5KZDD5oR4PYOLjISkXYoEhFg2E= 589 | dependencies: 590 | flat-cache "^1.2.1" 591 | object-assign "^4.0.1" 592 | 593 | find-up@3.0.0, find-up@^3.0.0: 594 | version "3.0.0" 595 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" 596 | integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== 597 | dependencies: 598 | locate-path "^3.0.0" 599 | 600 | flat-cache@^1.2.1: 601 | version "1.3.4" 602 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.4.tgz#2c2ef77525cc2929007dfffa1dd314aa9c9dee6f" 603 | integrity sha512-VwyB3Lkgacfik2vhqR4uv2rvebqmDvFu4jlN/C1RzWoJEo8I7z4Q404oiqYCkq41mni8EzQnm95emU9seckwtg== 604 | dependencies: 605 | circular-json "^0.3.1" 606 | graceful-fs "^4.1.2" 607 | rimraf "~2.6.2" 608 | write "^0.2.1" 609 | 610 | flat@^4.1.0: 611 | version "4.1.0" 612 | resolved "https://registry.yarnpkg.com/flat/-/flat-4.1.0.tgz#090bec8b05e39cba309747f1d588f04dbaf98db2" 613 | integrity sha512-Px/TiLIznH7gEDlPXcUD4KnBusa6kR6ayRUVcnEAbreRIuhkqow/mun59BuRXwoYk7ZQOLW1ZM05ilIvK38hFw== 614 | dependencies: 615 | is-buffer "~2.0.3" 616 | 617 | fs.realpath@^1.0.0: 618 | version "1.0.0" 619 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 620 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 621 | 622 | function-bind@^1.1.1: 623 | version "1.1.1" 624 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 625 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 626 | 627 | functional-red-black-tree@^1.0.1: 628 | version "1.0.1" 629 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 630 | integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= 631 | 632 | get-caller-file@^1.0.1: 633 | version "1.0.3" 634 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" 635 | integrity sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w== 636 | 637 | get-caller-file@^2.0.1: 638 | version "2.0.5" 639 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 640 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 641 | 642 | get-func-name@^2.0.0: 643 | version "2.0.0" 644 | resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41" 645 | integrity sha1-6td0q+5y4gQJQzoGY2YCPdaIekE= 646 | 647 | get-stream@^4.0.0: 648 | version "4.1.0" 649 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" 650 | integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== 651 | dependencies: 652 | pump "^3.0.0" 653 | 654 | glob@7.1.3: 655 | version "7.1.3" 656 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1" 657 | integrity sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ== 658 | dependencies: 659 | fs.realpath "^1.0.0" 660 | inflight "^1.0.4" 661 | inherits "2" 662 | minimatch "^3.0.4" 663 | once "^1.3.0" 664 | path-is-absolute "^1.0.0" 665 | 666 | glob@^7.1.2, glob@^7.1.3: 667 | version "7.1.4" 668 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255" 669 | integrity sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A== 670 | dependencies: 671 | fs.realpath "^1.0.0" 672 | inflight "^1.0.4" 673 | inherits "2" 674 | minimatch "^3.0.4" 675 | once "^1.3.0" 676 | path-is-absolute "^1.0.0" 677 | 678 | globals@^11.0.1: 679 | version "11.12.0" 680 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 681 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 682 | 683 | graceful-fs@^4.1.2: 684 | version "4.2.0" 685 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.0.tgz#8d8fdc73977cb04104721cb53666c1ca64cd328b" 686 | integrity sha512-jpSvDPV4Cq/bgtpndIWbI5hmYxhQGHPC4d4cqBPb4DLniCfhJokdXhwhaDuLBGLQdvvRum/UiX6ECVIPvDXqdg== 687 | 688 | growl@1.10.5: 689 | version "1.10.5" 690 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e" 691 | integrity sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA== 692 | 693 | has-ansi@^2.0.0: 694 | version "2.0.0" 695 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 696 | integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE= 697 | dependencies: 698 | ansi-regex "^2.0.0" 699 | 700 | has-flag@^3.0.0: 701 | version "3.0.0" 702 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 703 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 704 | 705 | has-symbols@^1.0.0: 706 | version "1.0.0" 707 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" 708 | integrity sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q= 709 | 710 | has@^1.0.1, has@^1.0.3: 711 | version "1.0.3" 712 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 713 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 714 | dependencies: 715 | function-bind "^1.1.1" 716 | 717 | he@1.2.0: 718 | version "1.2.0" 719 | resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" 720 | integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== 721 | 722 | iconv-lite@^0.4.17: 723 | version "0.4.24" 724 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 725 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== 726 | dependencies: 727 | safer-buffer ">= 2.1.2 < 3" 728 | 729 | ieee754@1.1.8: 730 | version "1.1.8" 731 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 732 | integrity sha1-vjPUCsEO8ZJnAfbwii2G+/0a0+Q= 733 | 734 | ieee754@^1.1.4: 735 | version "1.1.13" 736 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84" 737 | integrity sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg== 738 | 739 | ignore@^3.3.3: 740 | version "3.3.10" 741 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043" 742 | integrity sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug== 743 | 744 | imurmurhash@^0.1.4: 745 | version "0.1.4" 746 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 747 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 748 | 749 | inflight@^1.0.4: 750 | version "1.0.6" 751 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 752 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 753 | dependencies: 754 | once "^1.3.0" 755 | wrappy "1" 756 | 757 | inherits@2, inherits@^2.0.3, inherits@~2.0.3: 758 | version "2.0.4" 759 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 760 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 761 | 762 | inquirer@^3.0.6: 763 | version "3.3.0" 764 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" 765 | integrity sha512-h+xtnyk4EwKvFWHrUYsWErEVR+igKtLdchu+o0Z1RL7VU/jVMFbYir2bp6bAj8efFNxWqHX0dIss6fJQ+/+qeQ== 766 | dependencies: 767 | ansi-escapes "^3.0.0" 768 | chalk "^2.0.0" 769 | cli-cursor "^2.1.0" 770 | cli-width "^2.0.0" 771 | external-editor "^2.0.4" 772 | figures "^2.0.0" 773 | lodash "^4.3.0" 774 | mute-stream "0.0.7" 775 | run-async "^2.2.0" 776 | rx-lite "^4.0.8" 777 | rx-lite-aggregates "^4.0.8" 778 | string-width "^2.1.0" 779 | strip-ansi "^4.0.0" 780 | through "^2.3.6" 781 | 782 | invert-kv@^2.0.0: 783 | version "2.0.0" 784 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-2.0.0.tgz#7393f5afa59ec9ff5f67a27620d11c226e3eec02" 785 | integrity sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA== 786 | 787 | is-buffer@~2.0.3: 788 | version "2.0.3" 789 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.3.tgz#4ecf3fcf749cbd1e472689e109ac66261a25e725" 790 | integrity sha512-U15Q7MXTuZlrbymiz95PJpZxu8IlipAp4dtS3wOdgPXx3mqBnslrWU14kxfHB+Py/+2PVKSr37dMAgM2A4uArw== 791 | 792 | is-callable@^1.1.4: 793 | version "1.1.4" 794 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" 795 | integrity sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA== 796 | 797 | is-date-object@^1.0.1: 798 | version "1.0.1" 799 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 800 | integrity sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY= 801 | 802 | is-fullwidth-code-point@^1.0.0: 803 | version "1.0.0" 804 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 805 | integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= 806 | dependencies: 807 | number-is-nan "^1.0.0" 808 | 809 | is-fullwidth-code-point@^2.0.0: 810 | version "2.0.0" 811 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 812 | integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= 813 | 814 | is-promise@^2.1.0: 815 | version "2.1.0" 816 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 817 | integrity sha1-eaKp7OfwlugPNtKy87wWwf9L8/o= 818 | 819 | is-regex@^1.0.4: 820 | version "1.0.4" 821 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 822 | integrity sha1-VRdIm1RwkbCTDglWVM7SXul+lJE= 823 | dependencies: 824 | has "^1.0.1" 825 | 826 | is-resolvable@^1.0.0: 827 | version "1.1.0" 828 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" 829 | integrity sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg== 830 | 831 | is-stream@^1.1.0: 832 | version "1.1.0" 833 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 834 | integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= 835 | 836 | is-symbol@^1.0.2: 837 | version "1.0.2" 838 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38" 839 | integrity sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw== 840 | dependencies: 841 | has-symbols "^1.0.0" 842 | 843 | isarray@0.0.1: 844 | version "0.0.1" 845 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 846 | integrity sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8= 847 | 848 | isarray@^1.0.0, isarray@~1.0.0: 849 | version "1.0.0" 850 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 851 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= 852 | 853 | isexe@^2.0.0: 854 | version "2.0.0" 855 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 856 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 857 | 858 | jmespath@0.15.0: 859 | version "0.15.0" 860 | resolved "https://registry.yarnpkg.com/jmespath/-/jmespath-0.15.0.tgz#a3f222a9aae9f966f5d27c796510e28091764217" 861 | integrity sha1-o/Iiqarp+Wb10nx5ZRDigJF2Qhc= 862 | 863 | js-tokens@^3.0.2: 864 | version "3.0.2" 865 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 866 | integrity sha1-mGbfOVECEw449/mWvOtlRDIJwls= 867 | 868 | js-yaml@3.13.1, js-yaml@^3.9.1: 869 | version "3.13.1" 870 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" 871 | integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw== 872 | dependencies: 873 | argparse "^1.0.7" 874 | esprima "^4.0.0" 875 | 876 | json-schema-traverse@^0.3.0: 877 | version "0.3.1" 878 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 879 | integrity sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A= 880 | 881 | json-stable-stringify-without-jsonify@^1.0.1: 882 | version "1.0.1" 883 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 884 | integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= 885 | 886 | json-stringify-safe@^5.0.1: 887 | version "5.0.1" 888 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 889 | integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= 890 | 891 | just-extend@^4.0.2: 892 | version "4.0.2" 893 | resolved "https://registry.yarnpkg.com/just-extend/-/just-extend-4.0.2.tgz#f3f47f7dfca0f989c55410a7ebc8854b07108afc" 894 | integrity sha512-FrLwOgm+iXrPV+5zDU6Jqu4gCRXbWEQg2O3SKONsWE4w7AXFRkryS53bpWdaL9cNol+AmR3AEYz6kn+o0fCPnw== 895 | 896 | lcid@^2.0.0: 897 | version "2.0.0" 898 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-2.0.0.tgz#6ef5d2df60e52f82eb228a4c373e8d1f397253cf" 899 | integrity sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA== 900 | dependencies: 901 | invert-kv "^2.0.0" 902 | 903 | levn@^0.3.0, levn@~0.3.0: 904 | version "0.3.0" 905 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 906 | integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= 907 | dependencies: 908 | prelude-ls "~1.1.2" 909 | type-check "~0.3.2" 910 | 911 | locate-path@^3.0.0: 912 | version "3.0.0" 913 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" 914 | integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== 915 | dependencies: 916 | p-locate "^3.0.0" 917 | path-exists "^3.0.0" 918 | 919 | lodash@^4.17.11, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.3.0: 920 | version "4.17.15" 921 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" 922 | integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A== 923 | 924 | log-symbols@2.2.0: 925 | version "2.2.0" 926 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a" 927 | integrity sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg== 928 | dependencies: 929 | chalk "^2.0.1" 930 | 931 | lolex@^4.0.1, lolex@^4.1.0: 932 | version "4.1.0" 933 | resolved "https://registry.yarnpkg.com/lolex/-/lolex-4.1.0.tgz#ecdd7b86539391d8237947a3419aa8ac975f0fe1" 934 | integrity sha512-BYxIEXiVq5lGIXeVHnsFzqa1TxN5acnKnPCdlZSpzm8viNEOhiigupA4vTQ9HEFQ6nLTQ9wQOgBknJgzUYQ9Aw== 935 | 936 | lru-cache@^4.0.1: 937 | version "4.1.5" 938 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" 939 | integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== 940 | dependencies: 941 | pseudomap "^1.0.2" 942 | yallist "^2.1.2" 943 | 944 | map-age-cleaner@^0.1.1: 945 | version "0.1.3" 946 | resolved "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a" 947 | integrity sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w== 948 | dependencies: 949 | p-defer "^1.0.0" 950 | 951 | mem@^4.0.0: 952 | version "4.3.0" 953 | resolved "https://registry.yarnpkg.com/mem/-/mem-4.3.0.tgz#461af497bc4ae09608cdb2e60eefb69bff744178" 954 | integrity sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w== 955 | dependencies: 956 | map-age-cleaner "^0.1.1" 957 | mimic-fn "^2.0.0" 958 | p-is-promise "^2.0.0" 959 | 960 | mimic-fn@^1.0.0: 961 | version "1.2.0" 962 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 963 | integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== 964 | 965 | mimic-fn@^2.0.0: 966 | version "2.1.0" 967 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" 968 | integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== 969 | 970 | minimatch@3.0.4, minimatch@^3.0.2, minimatch@^3.0.4: 971 | version "3.0.4" 972 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 973 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 974 | dependencies: 975 | brace-expansion "^1.1.7" 976 | 977 | minimist@0.0.8: 978 | version "0.0.8" 979 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 980 | integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0= 981 | 982 | mkdirp@0.5.1, mkdirp@^0.5.0, mkdirp@^0.5.1: 983 | version "0.5.1" 984 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 985 | integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM= 986 | dependencies: 987 | minimist "0.0.8" 988 | 989 | mocha@6.2.0: 990 | version "6.2.0" 991 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-6.2.0.tgz#f896b642843445d1bb8bca60eabd9206b8916e56" 992 | integrity sha512-qwfFgY+7EKAAUAdv7VYMZQknI7YJSGesxHyhn6qD52DV8UcSZs5XwCifcZGMVIE4a5fbmhvbotxC0DLQ0oKohQ== 993 | dependencies: 994 | ansi-colors "3.2.3" 995 | browser-stdout "1.3.1" 996 | debug "3.2.6" 997 | diff "3.5.0" 998 | escape-string-regexp "1.0.5" 999 | find-up "3.0.0" 1000 | glob "7.1.3" 1001 | growl "1.10.5" 1002 | he "1.2.0" 1003 | js-yaml "3.13.1" 1004 | log-symbols "2.2.0" 1005 | minimatch "3.0.4" 1006 | mkdirp "0.5.1" 1007 | ms "2.1.1" 1008 | node-environment-flags "1.0.5" 1009 | object.assign "4.1.0" 1010 | strip-json-comments "2.0.1" 1011 | supports-color "6.0.0" 1012 | which "1.3.1" 1013 | wide-align "1.1.3" 1014 | yargs "13.2.2" 1015 | yargs-parser "13.0.0" 1016 | yargs-unparser "1.5.0" 1017 | 1018 | ms@2.1.1: 1019 | version "2.1.1" 1020 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" 1021 | integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== 1022 | 1023 | ms@^2.1.1: 1024 | version "2.1.2" 1025 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1026 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1027 | 1028 | mute-stream@0.0.7: 1029 | version "0.0.7" 1030 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 1031 | integrity sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s= 1032 | 1033 | natural-compare@^1.4.0: 1034 | version "1.4.0" 1035 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1036 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= 1037 | 1038 | nice-try@^1.0.4: 1039 | version "1.0.5" 1040 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" 1041 | integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== 1042 | 1043 | nise@^1.4.10: 1044 | version "1.5.0" 1045 | resolved "https://registry.yarnpkg.com/nise/-/nise-1.5.0.tgz#d03ea0e6c1b75c638015aa3585eddc132949a50d" 1046 | integrity sha512-Z3sfYEkLFzFmL8KY6xnSJLRxwQwYBjOXi/24lb62ZnZiGA0JUzGGTI6TBIgfCSMIDl9Jlu8SRmHNACLTemDHww== 1047 | dependencies: 1048 | "@sinonjs/formatio" "^3.1.0" 1049 | "@sinonjs/text-encoding" "^0.7.1" 1050 | just-extend "^4.0.2" 1051 | lolex "^4.1.0" 1052 | path-to-regexp "^1.7.0" 1053 | 1054 | nock@10.0.6: 1055 | version "10.0.6" 1056 | resolved "https://registry.yarnpkg.com/nock/-/nock-10.0.6.tgz#e6d90ee7a68b8cfc2ab7f6127e7d99aa7d13d111" 1057 | integrity sha512-b47OWj1qf/LqSQYnmokNWM8D88KvUl2y7jT0567NB3ZBAZFz2bWp2PC81Xn7u8F2/vJxzkzNZybnemeFa7AZ2w== 1058 | dependencies: 1059 | chai "^4.1.2" 1060 | debug "^4.1.0" 1061 | deep-equal "^1.0.0" 1062 | json-stringify-safe "^5.0.1" 1063 | lodash "^4.17.5" 1064 | mkdirp "^0.5.0" 1065 | propagate "^1.0.0" 1066 | qs "^6.5.1" 1067 | semver "^5.5.0" 1068 | 1069 | node-environment-flags@1.0.5: 1070 | version "1.0.5" 1071 | resolved "https://registry.yarnpkg.com/node-environment-flags/-/node-environment-flags-1.0.5.tgz#fa930275f5bf5dae188d6192b24b4c8bbac3d76a" 1072 | integrity sha512-VNYPRfGfmZLx0Ye20jWzHUjyTW/c+6Wq+iLhDzUI4XmhrDd9l/FozXV3F2xOaXjvp0co0+v1YSR3CMP6g+VvLQ== 1073 | dependencies: 1074 | object.getownpropertydescriptors "^2.0.3" 1075 | semver "^5.7.0" 1076 | 1077 | npm-run-path@^2.0.0: 1078 | version "2.0.2" 1079 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 1080 | integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= 1081 | dependencies: 1082 | path-key "^2.0.0" 1083 | 1084 | number-is-nan@^1.0.0: 1085 | version "1.0.1" 1086 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1087 | integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= 1088 | 1089 | object-assign@^4.0.1: 1090 | version "4.1.1" 1091 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1092 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 1093 | 1094 | object-keys@^1.0.11, object-keys@^1.0.12: 1095 | version "1.1.1" 1096 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 1097 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1098 | 1099 | object.assign@4.1.0: 1100 | version "4.1.0" 1101 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" 1102 | integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w== 1103 | dependencies: 1104 | define-properties "^1.1.2" 1105 | function-bind "^1.1.1" 1106 | has-symbols "^1.0.0" 1107 | object-keys "^1.0.11" 1108 | 1109 | object.getownpropertydescriptors@^2.0.3: 1110 | version "2.0.3" 1111 | resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" 1112 | integrity sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY= 1113 | dependencies: 1114 | define-properties "^1.1.2" 1115 | es-abstract "^1.5.1" 1116 | 1117 | once@^1.3.0, once@^1.3.1, once@^1.4.0: 1118 | version "1.4.0" 1119 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1120 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 1121 | dependencies: 1122 | wrappy "1" 1123 | 1124 | onetime@^2.0.0: 1125 | version "2.0.1" 1126 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 1127 | integrity sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ= 1128 | dependencies: 1129 | mimic-fn "^1.0.0" 1130 | 1131 | optionator@^0.8.2: 1132 | version "0.8.2" 1133 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 1134 | integrity sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q= 1135 | dependencies: 1136 | deep-is "~0.1.3" 1137 | fast-levenshtein "~2.0.4" 1138 | levn "~0.3.0" 1139 | prelude-ls "~1.1.2" 1140 | type-check "~0.3.2" 1141 | wordwrap "~1.0.0" 1142 | 1143 | os-locale@^3.0.0, os-locale@^3.1.0: 1144 | version "3.1.0" 1145 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-3.1.0.tgz#a802a6ee17f24c10483ab9935719cef4ed16bf1a" 1146 | integrity sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q== 1147 | dependencies: 1148 | execa "^1.0.0" 1149 | lcid "^2.0.0" 1150 | mem "^4.0.0" 1151 | 1152 | os-tmpdir@~1.0.2: 1153 | version "1.0.2" 1154 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1155 | integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= 1156 | 1157 | p-defer@^1.0.0: 1158 | version "1.0.0" 1159 | resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c" 1160 | integrity sha1-n26xgvbJqozXQwBKfU+WsZaw+ww= 1161 | 1162 | p-finally@^1.0.0: 1163 | version "1.0.0" 1164 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 1165 | integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= 1166 | 1167 | p-is-promise@^2.0.0: 1168 | version "2.1.0" 1169 | resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-2.1.0.tgz#918cebaea248a62cf7ffab8e3bca8c5f882fc42e" 1170 | integrity sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg== 1171 | 1172 | p-limit@^2.0.0: 1173 | version "2.2.0" 1174 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.0.tgz#417c9941e6027a9abcba5092dd2904e255b5fbc2" 1175 | integrity sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ== 1176 | dependencies: 1177 | p-try "^2.0.0" 1178 | 1179 | p-locate@^3.0.0: 1180 | version "3.0.0" 1181 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" 1182 | integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== 1183 | dependencies: 1184 | p-limit "^2.0.0" 1185 | 1186 | p-try@^2.0.0: 1187 | version "2.2.0" 1188 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" 1189 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== 1190 | 1191 | path-exists@^3.0.0: 1192 | version "3.0.0" 1193 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1194 | integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= 1195 | 1196 | path-is-absolute@^1.0.0: 1197 | version "1.0.1" 1198 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1199 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 1200 | 1201 | path-is-inside@^1.0.2: 1202 | version "1.0.2" 1203 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 1204 | integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM= 1205 | 1206 | path-key@^2.0.0, path-key@^2.0.1: 1207 | version "2.0.1" 1208 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 1209 | integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= 1210 | 1211 | path-to-regexp@^1.7.0: 1212 | version "1.7.0" 1213 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.7.0.tgz#59fde0f435badacba103a84e9d3bc64e96b9937d" 1214 | integrity sha1-Wf3g9DW62suhA6hOnTvGTpa5k30= 1215 | dependencies: 1216 | isarray "0.0.1" 1217 | 1218 | pathval@^1.1.0: 1219 | version "1.1.0" 1220 | resolved "https://registry.yarnpkg.com/pathval/-/pathval-1.1.0.tgz#b942e6d4bde653005ef6b71361def8727d0645e0" 1221 | integrity sha1-uULm1L3mUwBe9rcTYd74cn0GReA= 1222 | 1223 | pluralize@^7.0.0: 1224 | version "7.0.0" 1225 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" 1226 | integrity sha512-ARhBOdzS3e41FbkW/XWrTEtukqqLoK5+Z/4UeDaLuSW+39JPeFgs4gCGqsrJHVZX0fUrx//4OF0K1CUGwlIFow== 1227 | 1228 | prelude-ls@~1.1.2: 1229 | version "1.1.2" 1230 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 1231 | integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= 1232 | 1233 | process-nextick-args@~2.0.0: 1234 | version "2.0.1" 1235 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" 1236 | integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== 1237 | 1238 | progress@^2.0.0: 1239 | version "2.0.3" 1240 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" 1241 | integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== 1242 | 1243 | propagate@^1.0.0: 1244 | version "1.0.0" 1245 | resolved "https://registry.yarnpkg.com/propagate/-/propagate-1.0.0.tgz#00c2daeedda20e87e3782b344adba1cddd6ad709" 1246 | integrity sha1-AMLa7t2iDofjeCs0Stuhzd1q1wk= 1247 | 1248 | pseudomap@^1.0.2: 1249 | version "1.0.2" 1250 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 1251 | integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= 1252 | 1253 | pump@^3.0.0: 1254 | version "3.0.0" 1255 | resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" 1256 | integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== 1257 | dependencies: 1258 | end-of-stream "^1.1.0" 1259 | once "^1.3.1" 1260 | 1261 | punycode@1.3.2: 1262 | version "1.3.2" 1263 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 1264 | integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0= 1265 | 1266 | qs@^6.5.1: 1267 | version "6.7.0" 1268 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc" 1269 | integrity sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ== 1270 | 1271 | querystring@0.2.0: 1272 | version "0.2.0" 1273 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 1274 | integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA= 1275 | 1276 | readable-stream@^2.2.2: 1277 | version "2.3.6" 1278 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 1279 | integrity sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw== 1280 | dependencies: 1281 | core-util-is "~1.0.0" 1282 | inherits "~2.0.3" 1283 | isarray "~1.0.0" 1284 | process-nextick-args "~2.0.0" 1285 | safe-buffer "~5.1.1" 1286 | string_decoder "~1.1.1" 1287 | util-deprecate "~1.0.1" 1288 | 1289 | regexpp@^1.0.1: 1290 | version "1.1.0" 1291 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-1.1.0.tgz#0e3516dd0b7904f413d2d4193dce4618c3a689ab" 1292 | integrity sha512-LOPw8FpgdQF9etWMaAfG/WRthIdXJGYp4mJ2Jgn/2lpkbod9jPn0t9UqN7AxBOKNfzRbYyVfgc7Vk4t/MpnXgw== 1293 | 1294 | require-directory@^2.1.1: 1295 | version "2.1.1" 1296 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 1297 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= 1298 | 1299 | require-main-filename@^1.0.1: 1300 | version "1.0.1" 1301 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 1302 | integrity sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE= 1303 | 1304 | require-main-filename@^2.0.0: 1305 | version "2.0.0" 1306 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" 1307 | integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== 1308 | 1309 | require-uncached@^1.0.3: 1310 | version "1.0.3" 1311 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 1312 | integrity sha1-Tg1W1slmL9MeQwEcS5WqSZVUIdM= 1313 | dependencies: 1314 | caller-path "^0.1.0" 1315 | resolve-from "^1.0.0" 1316 | 1317 | resolve-from@^1.0.0: 1318 | version "1.0.1" 1319 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 1320 | integrity sha1-Jsv+k10a7uq7Kbw/5a6wHpPUQiY= 1321 | 1322 | restore-cursor@^2.0.0: 1323 | version "2.0.0" 1324 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 1325 | integrity sha1-n37ih/gv0ybU/RYpI9YhKe7g368= 1326 | dependencies: 1327 | onetime "^2.0.0" 1328 | signal-exit "^3.0.2" 1329 | 1330 | rewire@4.0.1: 1331 | version "4.0.1" 1332 | resolved "https://registry.yarnpkg.com/rewire/-/rewire-4.0.1.tgz#ba1100d400a9da759fe599fc6e0233f0879ed6da" 1333 | integrity sha512-+7RQ/BYwTieHVXetpKhT11UbfF6v1kGhKFrtZN7UDL2PybMsSt/rpLWeEUGF5Ndsl1D5BxiCB14VDJyoX+noYw== 1334 | dependencies: 1335 | eslint "^4.19.1" 1336 | 1337 | rimraf@~2.6.2: 1338 | version "2.6.3" 1339 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" 1340 | integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== 1341 | dependencies: 1342 | glob "^7.1.3" 1343 | 1344 | run-async@^2.2.0: 1345 | version "2.3.0" 1346 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 1347 | integrity sha1-A3GrSuC91yDUFm19/aZP96RFpsA= 1348 | dependencies: 1349 | is-promise "^2.1.0" 1350 | 1351 | rx-lite-aggregates@^4.0.8: 1352 | version "4.0.8" 1353 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 1354 | integrity sha1-dTuHqJoRyVRnxKwWJsTvxOBcZ74= 1355 | dependencies: 1356 | rx-lite "*" 1357 | 1358 | rx-lite@*, rx-lite@^4.0.8: 1359 | version "4.0.8" 1360 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 1361 | integrity sha1-Cx4Rr4vESDbwSmQH6S2kJGe3lEQ= 1362 | 1363 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1364 | version "5.1.2" 1365 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 1366 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 1367 | 1368 | "safer-buffer@>= 2.1.2 < 3": 1369 | version "2.1.2" 1370 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 1371 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 1372 | 1373 | sax@1.2.1: 1374 | version "1.2.1" 1375 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.1.tgz#7b8e656190b228e81a66aea748480d828cd2d37a" 1376 | integrity sha1-e45lYZCyKOgaZq6nSEgNgozS03o= 1377 | 1378 | sax@>=0.6.0: 1379 | version "1.2.4" 1380 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 1381 | integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== 1382 | 1383 | semver@^5.3.0, semver@^5.5.0, semver@^5.7.0: 1384 | version "5.7.0" 1385 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.0.tgz#790a7cf6fea5459bac96110b29b60412dc8ff96b" 1386 | integrity sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA== 1387 | 1388 | set-blocking@^2.0.0: 1389 | version "2.0.0" 1390 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1391 | integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= 1392 | 1393 | shebang-command@^1.2.0: 1394 | version "1.2.0" 1395 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 1396 | integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= 1397 | dependencies: 1398 | shebang-regex "^1.0.0" 1399 | 1400 | shebang-regex@^1.0.0: 1401 | version "1.0.0" 1402 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 1403 | integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= 1404 | 1405 | signal-exit@^3.0.0, signal-exit@^3.0.2: 1406 | version "3.0.2" 1407 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1408 | integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0= 1409 | 1410 | sinon@^7.3.2: 1411 | version "7.3.2" 1412 | resolved "https://registry.yarnpkg.com/sinon/-/sinon-7.3.2.tgz#82dba3a6d85f6d2181e1eca2c10d8657c2161f28" 1413 | integrity sha512-thErC1z64BeyGiPvF8aoSg0LEnptSaWE7YhdWWbWXgelOyThent7uKOnnEh9zBxDbKixtr5dEko+ws1sZMuFMA== 1414 | dependencies: 1415 | "@sinonjs/commons" "^1.4.0" 1416 | "@sinonjs/formatio" "^3.2.1" 1417 | "@sinonjs/samsam" "^3.3.1" 1418 | diff "^3.5.0" 1419 | lolex "^4.0.1" 1420 | nise "^1.4.10" 1421 | supports-color "^5.5.0" 1422 | 1423 | slice-ansi@1.0.0: 1424 | version "1.0.0" 1425 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" 1426 | integrity sha512-POqxBK6Lb3q6s047D/XsDVNPnF9Dl8JSaqe9h9lURl0OdNqy/ujDrOiIHtsqXMGbWWTIomRzAMaTyawAU//Reg== 1427 | dependencies: 1428 | is-fullwidth-code-point "^2.0.0" 1429 | 1430 | sprintf-js@~1.0.2: 1431 | version "1.0.3" 1432 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 1433 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 1434 | 1435 | string-width@^1.0.1: 1436 | version "1.0.2" 1437 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1438 | integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= 1439 | dependencies: 1440 | code-point-at "^1.0.0" 1441 | is-fullwidth-code-point "^1.0.0" 1442 | strip-ansi "^3.0.0" 1443 | 1444 | "string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: 1445 | version "2.1.1" 1446 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 1447 | integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== 1448 | dependencies: 1449 | is-fullwidth-code-point "^2.0.0" 1450 | strip-ansi "^4.0.0" 1451 | 1452 | string-width@^3.0.0: 1453 | version "3.1.0" 1454 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" 1455 | integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== 1456 | dependencies: 1457 | emoji-regex "^7.0.1" 1458 | is-fullwidth-code-point "^2.0.0" 1459 | strip-ansi "^5.1.0" 1460 | 1461 | string_decoder@~1.1.1: 1462 | version "1.1.1" 1463 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 1464 | integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== 1465 | dependencies: 1466 | safe-buffer "~5.1.0" 1467 | 1468 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1469 | version "3.0.1" 1470 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1471 | integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= 1472 | dependencies: 1473 | ansi-regex "^2.0.0" 1474 | 1475 | strip-ansi@^4.0.0: 1476 | version "4.0.0" 1477 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 1478 | integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= 1479 | dependencies: 1480 | ansi-regex "^3.0.0" 1481 | 1482 | strip-ansi@^5.1.0: 1483 | version "5.2.0" 1484 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" 1485 | integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== 1486 | dependencies: 1487 | ansi-regex "^4.1.0" 1488 | 1489 | strip-eof@^1.0.0: 1490 | version "1.0.0" 1491 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 1492 | integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= 1493 | 1494 | strip-json-comments@2.0.1, strip-json-comments@~2.0.1: 1495 | version "2.0.1" 1496 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1497 | integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= 1498 | 1499 | supports-color@6.0.0: 1500 | version "6.0.0" 1501 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.0.0.tgz#76cfe742cf1f41bb9b1c29ad03068c05b4c0e40a" 1502 | integrity sha512-on9Kwidc1IUQo+bQdhi8+Tijpo0e1SS6RoGo2guUwn5vdaxw8RXOF9Vb2ws+ihWOmh4JnCJOvaziZWP1VABaLg== 1503 | dependencies: 1504 | has-flag "^3.0.0" 1505 | 1506 | supports-color@^2.0.0: 1507 | version "2.0.0" 1508 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1509 | integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= 1510 | 1511 | supports-color@^5.3.0, supports-color@^5.5.0: 1512 | version "5.5.0" 1513 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 1514 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 1515 | dependencies: 1516 | has-flag "^3.0.0" 1517 | 1518 | table@4.0.2: 1519 | version "4.0.2" 1520 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36" 1521 | integrity sha512-UUkEAPdSGxtRpiV9ozJ5cMTtYiqz7Ni1OGqLXRCynrvzdtR1p+cfOWe2RJLwvUG8hNanaSRjecIqwOjqeatDsA== 1522 | dependencies: 1523 | ajv "^5.2.3" 1524 | ajv-keywords "^2.1.0" 1525 | chalk "^2.1.0" 1526 | lodash "^4.17.4" 1527 | slice-ansi "1.0.0" 1528 | string-width "^2.1.1" 1529 | 1530 | text-table@~0.2.0: 1531 | version "0.2.0" 1532 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 1533 | integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= 1534 | 1535 | through@^2.3.6: 1536 | version "2.3.8" 1537 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 1538 | integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= 1539 | 1540 | tmp@^0.0.33: 1541 | version "0.0.33" 1542 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 1543 | integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== 1544 | dependencies: 1545 | os-tmpdir "~1.0.2" 1546 | 1547 | traverse@^0.6.6: 1548 | version "0.6.6" 1549 | resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.6.tgz#cbdf560fd7b9af632502fed40f918c157ea97137" 1550 | integrity sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc= 1551 | 1552 | type-check@~0.3.2: 1553 | version "0.3.2" 1554 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 1555 | integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= 1556 | dependencies: 1557 | prelude-ls "~1.1.2" 1558 | 1559 | type-detect@4.0.8, type-detect@^4.0.0, type-detect@^4.0.5: 1560 | version "4.0.8" 1561 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" 1562 | integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== 1563 | 1564 | typedarray@^0.0.6: 1565 | version "0.0.6" 1566 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 1567 | integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= 1568 | 1569 | url@0.10.3: 1570 | version "0.10.3" 1571 | resolved "https://registry.yarnpkg.com/url/-/url-0.10.3.tgz#021e4d9c7705f21bbf37d03ceb58767402774c64" 1572 | integrity sha1-Ah5NnHcF8hu/N9A861h2dAJ3TGQ= 1573 | dependencies: 1574 | punycode "1.3.2" 1575 | querystring "0.2.0" 1576 | 1577 | util-deprecate@~1.0.1: 1578 | version "1.0.2" 1579 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1580 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= 1581 | 1582 | uuid@3.3.2: 1583 | version "3.3.2" 1584 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131" 1585 | integrity sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA== 1586 | 1587 | which-module@^2.0.0: 1588 | version "2.0.0" 1589 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 1590 | integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= 1591 | 1592 | which@1.3.1, which@^1.2.9: 1593 | version "1.3.1" 1594 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 1595 | integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== 1596 | dependencies: 1597 | isexe "^2.0.0" 1598 | 1599 | wide-align@1.1.3: 1600 | version "1.1.3" 1601 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 1602 | integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== 1603 | dependencies: 1604 | string-width "^1.0.2 || 2" 1605 | 1606 | wordwrap@~1.0.0: 1607 | version "1.0.0" 1608 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 1609 | integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= 1610 | 1611 | wrap-ansi@^2.0.0: 1612 | version "2.1.0" 1613 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 1614 | integrity sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU= 1615 | dependencies: 1616 | string-width "^1.0.1" 1617 | strip-ansi "^3.0.1" 1618 | 1619 | wrappy@1: 1620 | version "1.0.2" 1621 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1622 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 1623 | 1624 | write@^0.2.1: 1625 | version "0.2.1" 1626 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 1627 | integrity sha1-X8A4KOJkzqP+kUVUdvejxWbLB1c= 1628 | dependencies: 1629 | mkdirp "^0.5.1" 1630 | 1631 | xml2js@0.4.19: 1632 | version "0.4.19" 1633 | resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.19.tgz#686c20f213209e94abf0d1bcf1efaa291c7827a7" 1634 | integrity sha512-esZnJZJOiJR9wWKMyuvSE1y6Dq5LCuJanqhxslH2bxM6duahNZ+HMpCLhBQGZkbX6xRf8x1Y2eJlgt2q3qo49Q== 1635 | dependencies: 1636 | sax ">=0.6.0" 1637 | xmlbuilder "~9.0.1" 1638 | 1639 | xmlbuilder@~9.0.1: 1640 | version "9.0.7" 1641 | resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-9.0.7.tgz#132ee63d2ec5565c557e20f4c22df9aca686b10d" 1642 | integrity sha1-Ey7mPS7FVlxVfiD0wi35rKaGsQ0= 1643 | 1644 | "y18n@^3.2.1 || ^4.0.0", y18n@^4.0.0: 1645 | version "4.0.0" 1646 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" 1647 | integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w== 1648 | 1649 | yallist@^2.1.2: 1650 | version "2.1.2" 1651 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 1652 | integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= 1653 | 1654 | yargs-parser@13.0.0: 1655 | version "13.0.0" 1656 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.0.0.tgz#3fc44f3e76a8bdb1cc3602e860108602e5ccde8b" 1657 | integrity sha512-w2LXjoL8oRdRQN+hOyppuXs+V/fVAYtpcrRxZuF7Kt/Oc+Jr2uAcVntaUTNT6w5ihoWfFDpNY8CPx1QskxZ/pw== 1658 | dependencies: 1659 | camelcase "^5.0.0" 1660 | decamelize "^1.2.0" 1661 | 1662 | yargs-parser@^11.1.1: 1663 | version "11.1.1" 1664 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-11.1.1.tgz#879a0865973bca9f6bab5cbdf3b1c67ec7d3bcf4" 1665 | integrity sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ== 1666 | dependencies: 1667 | camelcase "^5.0.0" 1668 | decamelize "^1.2.0" 1669 | 1670 | yargs-parser@^13.0.0: 1671 | version "13.1.1" 1672 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.1.tgz#d26058532aa06d365fe091f6a1fc06b2f7e5eca0" 1673 | integrity sha512-oVAVsHz6uFrg3XQheFII8ESO2ssAf9luWuAd6Wexsu4F3OtIW0o8IribPXYrD4WC24LWtPrJlGy87y5udK+dxQ== 1674 | dependencies: 1675 | camelcase "^5.0.0" 1676 | decamelize "^1.2.0" 1677 | 1678 | yargs-unparser@1.5.0: 1679 | version "1.5.0" 1680 | resolved "https://registry.yarnpkg.com/yargs-unparser/-/yargs-unparser-1.5.0.tgz#f2bb2a7e83cbc87bb95c8e572828a06c9add6e0d" 1681 | integrity sha512-HK25qidFTCVuj/D1VfNiEndpLIeJN78aqgR23nL3y4N0U/91cOAzqfHlF8n2BvoNDcZmJKin3ddNSvOxSr8flw== 1682 | dependencies: 1683 | flat "^4.1.0" 1684 | lodash "^4.17.11" 1685 | yargs "^12.0.5" 1686 | 1687 | yargs@13.2.2: 1688 | version "13.2.2" 1689 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.2.2.tgz#0c101f580ae95cea7f39d927e7770e3fdc97f993" 1690 | integrity sha512-WyEoxgyTD3w5XRpAQNYUB9ycVH/PQrToaTXdYXRdOXvEy1l19br+VJsc0vcO8PTGg5ro/l/GY7F/JMEBmI0BxA== 1691 | dependencies: 1692 | cliui "^4.0.0" 1693 | find-up "^3.0.0" 1694 | get-caller-file "^2.0.1" 1695 | os-locale "^3.1.0" 1696 | require-directory "^2.1.1" 1697 | require-main-filename "^2.0.0" 1698 | set-blocking "^2.0.0" 1699 | string-width "^3.0.0" 1700 | which-module "^2.0.0" 1701 | y18n "^4.0.0" 1702 | yargs-parser "^13.0.0" 1703 | 1704 | yargs@^12.0.5: 1705 | version "12.0.5" 1706 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-12.0.5.tgz#05f5997b609647b64f66b81e3b4b10a368e7ad13" 1707 | integrity sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw== 1708 | dependencies: 1709 | cliui "^4.0.0" 1710 | decamelize "^1.2.0" 1711 | find-up "^3.0.0" 1712 | get-caller-file "^1.0.1" 1713 | os-locale "^3.0.0" 1714 | require-directory "^2.1.1" 1715 | require-main-filename "^1.0.1" 1716 | set-blocking "^2.0.0" 1717 | string-width "^2.0.0" 1718 | which-module "^2.0.0" 1719 | y18n "^3.2.1 || ^4.0.0" 1720 | yargs-parser "^11.1.1" 1721 | --------------------------------------------------------------------------------