├── .gitignore ├── LICENSE ├── README.md ├── app └── LGCalculator.apk ├── config ├── wdio.app.config.js └── wdio.browser.config.js ├── features ├── appium.feature └── calculator.feature ├── images ├── allure.png ├── allure_graph.png └── appium-webdriverio-typescript.png ├── package.json ├── pages ├── appiumPage.ts └── calcPage.ts ├── stepDefinitions ├── appiumSteps.ts └── calcSteps.ts ├── tsconfig.json ├── tslint.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | allure-results/ 2 | allure-report/ 3 | node_modules/ 4 | typeScript/ 5 | reports/ 6 | .vscode 7 | *.log 8 | .DS_Store 9 | package-lock.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Ram Pasala 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | titleImage.png 3 |

4 | 5 |

6 | Test framework for automating mobile apps with appium using webdriverio & typescript! 7 | 8 |

9 | 10 | --- 11 | 12 | ###

[About](#about) **|** [Getting Started](#getting-started) **|** [Installation](#installation) **|** [Writing Tests](#writing-tests) **|** [Page Objects](#page-objects) **|** [Finding Elements](#finding-elements) **|** [Reports](#reports)

13 | 14 | ## About 15 | 16 | Currently this framework has been developed to run scripts in **ANDROID** platform with real device. 17 | 18 | The tests run both on **Android Native App** and **Mobile Browser**. Chrome browser is configured currently for running browser tests. 19 | 20 | ### Tech Stack 21 | 22 | * [Appium]() - This is the node server which interacts with the mobile devices 23 | * [WebdriverIO](http://webdriver.io/) - It is the selenium webdriver api bindings for node.js, It has a very simple api which could be used to automate web & browser apps in a fast and scalable way. 24 | * [Typescript(Javascript)](https://www.typescriptlang.org/) - It is the superset of javascript which has additional static typings and features like JAVA and other languaes. Now you could write your code which compiles to pure javascript. 25 | * [Cucumber](https://cucumber.io/) - The popular BDD test framework which helps us write automated tests. 26 | 27 | ## Getting Started 28 | 29 | ### Pre-requisites 30 | 31 | 1. NodeJS installed globally in the system. 32 | https://nodejs.org/en/download/ 33 | 34 | 2. JAVA(jdk) installed in the system. 35 | 36 | 3. Andriod(sdk) installed in the system. 37 | 38 | 4. Set **JAVA_HOME** & **ANDROID_HOME** paths correctly in the system. 39 | 40 | 5. Chrome browser installed. 41 | 42 | 6. Text Editor/IDE (Optional) installed-->Sublime/Visual Studio Code/Brackets. 43 | 44 | **Tip:** Install `npm install -g appium-doctor` and run it from the command-line which checks if your java jdk and android sdk paths are set correctly or not. 45 | 46 | ## Installation 47 | 48 | ### Setup Scripts 49 | 50 | * Clone the repository into a folder 51 | * Go inside the folder and run following command from terminal/command prompt 52 | ``` 53 | npm install 54 | ``` 55 | * All the dependencies from package.json and typescript typings would be installed in node_modules folder. 56 | 57 | **Tip:** Use [**Yarn**](https://yarnpkg.com/en/docs/installing-dependencies) to install your modules `npm install -g yarn` as it caches & locks them which would help us install correct versions of modules across various platforms without any issues. This project is configured with `yarn.lock` file. So you could make use of it. 58 | 59 | ### Run Tests 60 | 61 | * First step is to start the `appium` server, This project includes the appium node module so you don't have to download it externally. You can run the appium server by the following npm command. 62 | 63 | ``` 64 | npm run appium 65 | ``` 66 | * Next you have to transpile/compile your typescript files to javascript files, you could do this by running the command - 67 | 68 | ``` 69 | npm run build 70 | ``` 71 | 72 | Next step is to execute the config files. This project has 2 config files - 73 | 74 | * [wdio.app.config.js](./config/wdio.app.config.js) - This config file is used to run tests in real mobile native apps. 75 | You would have to change the `appium settings` to run tests in your device. 76 | 77 | ``` 78 | capabilities: [ 79 | { 80 | appiumVersion: '1.7.1', // Appium module version 81 | browserName: '', // browser name is empty for native apps 82 | platformName: 'Android', 83 | app: './app/LGCalculator.apk', // Path to the native app 84 | appPackage: 'com.android.calculator2', // Package name of the app 85 | appActivity: 'com.android.calculator2.Calculator', // App activity of the app 86 | platformVersion: '5.1.1', // Android platform version of the device 87 | deviceName: 'THF755e0384', // device name of the mobile device 88 | waitforTimeout: waitforTimeout, 89 | commandTimeout: commandTimeout, 90 | newCommandTimeout: 30 * 60000, 91 | } 92 | ], 93 | ``` 94 | To know your device name you could run the `adb devices` command which comes out of the box from Android SDK. 95 | 96 | The node command to run Native app tests of this project is - 97 | 98 | ``` 99 | npm run app-test 100 | ``` 101 | The above command which is set in `package.json` internally calls the WebdriverIO's binary `wdio ./config/wdio.app.config.js` and runs the app config file. 102 | 103 | * [wdio.browser.config.js](./config/wdio.browser.config.js) - This config file is used to run tests in the chrome browser of the configured mobile device. The appium settings would looks like this- 104 | 105 | ``` 106 | capabilities: [ 107 | { 108 | appiumVersion: '1.7.1', 109 | browserName: 'chrome', // browser name should be specified 110 | platformName: 'Android', 111 | platformVersion: '5.1.1', 112 | deviceName: 'THF755e0384', // device name is mandatory 113 | waitforTimeout: waitforTimeout, 114 | commandTimeout: commandTimeout, 115 | newCommandTimeout: 30 * 60000, 116 | } 117 | ], 118 | ``` 119 | 120 | The node command to run browser tests of this project is - 121 | 122 | ``` 123 | npm run browser-test 124 | ``` 125 | The above command internally calls the WebdriverIO's binary `wdio ./config/wdio.browser.config.js` and runs the browser config file. 126 | 127 | ### Run Test Suite 128 | 129 | You could run both the native app and browser tests by running the following command - 130 | 131 | ``` 132 | npm test 133 | ``` 134 | The above command internally calls `npm run app-test` and `npm run browser-test`. 135 | 136 | ## Writing Tests 137 | 138 | Cucumber framework has been integrated with thi project, WebdriverIO's `wdio-cucumber-framework` adapter helps write BDD style tests with Features & Step Definitions. 139 | 140 | ``` 141 | const {Given, When, Then} = require('cucumber'); 142 | import {expect} from 'chai'; 143 | import {CalculatorPageObject} from '../pages/calcPage'; 144 | 145 | const calc: CalculatorPageObject = new CalculatorPageObject(); 146 | 147 | Given(/^I am on my mobile calculator app$/, () => { 148 | const title = browser.getText('android.widget.TextView'); 149 | expect(title).to.equal('Calculator'); 150 | }); 151 | ``` 152 | ## Page Objects 153 | 154 | This framework is strictly written using page-object design pattern. 155 | 156 | ``` 157 | class GooglePageObject { 158 | public get searchTextBox(): any { return browser.element('#lst-ib'); } 159 | public get searchButton(): any { return browser.element('button[name="btnG"]'); } 160 | public get results(): any { return browser.waitForVisible('#rso', 5000); } 161 | public get firstLink(): any { return browser.element('#rso div._H1m._ees'); } 162 | } 163 | /* 164 | Public Interface - export instances of classes 165 | **/ 166 | export const GooglePage = new GooglePageObject() 167 | ``` 168 | ## Finding-Elements 169 | 170 | Finding elements in mobile apps and browser's could be tricky sometimes. 171 | 172 | * Best way to find elements in native mobile apps is using [**UIAutomatorViewer**](https://developer.android.com/training/testing/ui-automator.html) .This supports Android 4.3 and above only, If you are using android version less than that, you could use [**Selendriod**](http://selendroid.io/) 173 | * Best way to find elements in mobile browser is by ***Remote debugging with Chrome DevTools***. I personally find it lot easier & hassle free. You could find detail steps about it in this [blog](http://toolsqa.com/mobile-automation/appium/inspect-elements-of-mobile-web-application/) 174 | 175 | ## Reports 176 | 177 | Currently this project has been integrated with [Allure-Reports](http://allure.qatools.ru/). WebdriverIO's `wdio-allure-reporter` helps us generate detailed reports of our mobile automated tests. 178 | Once the test execution is finished you would find the **allure-results** folder generated automatically. Then you would have to run the following command to generate **HTML Report** 179 | 180 | ``` 181 | npm run report 182 | ``` 183 | 184 | **Caveat:** Chrome browser has an issue rendering the AJAX requests from local files generated by allure, You could use **Firefox** for seeing the html report. 185 | You could find more details about this issue [here](https://stackoverflow.com/questions/23997449/allure-report-nothing-shown-in-chrome) 186 | 187 | allure.png 188 | 189 | allure_graph.png 190 | 191 | ## License 192 | ``` 193 | MIT License 194 | 195 | Copyright (c) 2017 Ram Pasala 196 | ``` 197 | -------------------------------------------------------------------------------- /app/LGCalculator.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igniteram/appium-webdriverio-typescript/f926094e8d137a779b3b88df1ca6c81440a947b5/app/LGCalculator.apk -------------------------------------------------------------------------------- /config/wdio.app.config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * WebdriverIO config file to run tests on native mobile apps. 3 | * Config file helps us configure all the settings and setup environments 4 | * to run our tests. 5 | */ 6 | 7 | const host = '127.0.0.1'; // default appium host 8 | const port = 4730; // default appium port 9 | 10 | const waitforTimeout = 30 * 60000; 11 | const commandTimeout = 30 * 60000; 12 | 13 | exports.config = { 14 | debug: false, 15 | specs: [ 16 | './features/calculator.feature', 17 | ], 18 | 19 | reporters: ['allure','spec'], 20 | reporterOptions: { 21 | allure: { 22 | outputDir: './allure-results/' 23 | } 24 | }, 25 | 26 | host: host, 27 | port: port, 28 | 29 | maxInstances: 1, 30 | 31 | capabilities: [ 32 | { 33 | appiumVersion: '1.8.1', // Appium module version 34 | browserName: '', // browser name is empty for native apps 35 | platformName: 'Android', 36 | app: './app/LGCalculator.apk', // Path to your native app 37 | appPackage: 'com.android.calculator2', // Package name of your app 38 | appActivity: 'com.android.calculator2.Calculator', // App activity of the app 39 | platformVersion: '7.1.1', // Android platform version of the device 40 | deviceName: 'THF755e0384', // device name of the mobile device 41 | waitforTimeout: waitforTimeout, 42 | commandTimeout: commandTimeout, 43 | newCommandTimeout: 30 * 60000, 44 | } 45 | ], 46 | 47 | services: ['appium'], 48 | appium: { 49 | waitStartTime: 6000, 50 | waitforTimeout: waitforTimeout, 51 | command: 'appium', 52 | logFileName: 'appium.log', 53 | args: { 54 | address: host, 55 | port: port, 56 | commandTimeout: commandTimeout, 57 | sessionOverride: true, 58 | debugLogSpacing: true 59 | } 60 | }, 61 | 62 | /** 63 | * test configurations 64 | */ 65 | logLevel: 'silent', 66 | coloredLogs: true, 67 | framework: 'cucumber', // cucumber framework specified 68 | cucumberOpts: { 69 | compiler: ['ts:ts-node/register'], 70 | backtrace: true, 71 | failFast: false, 72 | timeout: 5 * 60 * 60000, 73 | require: ['./stepDefinitions/calcSteps.ts'] // importing/requiring step definition files 74 | }, 75 | 76 | /** 77 | * hooks help us execute the repeatitive and common utilities 78 | * of the project. 79 | */ 80 | onPrepare: function () { 81 | console.log('<<< NATIVE APP TESTS STARTED >>>'); 82 | }, 83 | 84 | afterScenario: function (scenario) { 85 | browser.screenshot(); 86 | }, 87 | 88 | onComplete: function () { 89 | console.log('<<< TESTING FINISHED >>>'); 90 | } 91 | 92 | }; 93 | -------------------------------------------------------------------------------- /config/wdio.browser.config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * WebdriverIO config file to run tests on native mobile apps. 3 | * Config file helps us configure all the settings and setup environments 4 | * to run our tests. 5 | */ 6 | 7 | const host = '127.0.0.1'; // default appium host 8 | const port = 4730; // default appium port 9 | 10 | const waitforTimeout = 30 * 60000; 11 | const commandTimeout = 30 * 60000; 12 | 13 | exports.config = { 14 | debug: false, 15 | specs: [ 16 | './features/appium.feature', 17 | ], 18 | 19 | reporters: ['allure','spec'], 20 | reporterOptions: { 21 | allure: { 22 | outputDir: 'allure-results' 23 | } 24 | }, 25 | 26 | host: host, 27 | port: port, 28 | 29 | maxInstances: 1, 30 | 31 | baseUrl: 'http://www.google.com', 32 | 33 | capabilities: [ 34 | { 35 | appiumVersion: '1.8.1', 36 | browserName: 'chrome', // browser name should be specified 37 | platformName: 'Android', 38 | platformVersion: '7.1.1', 39 | deviceName: 'A0001', // device name is mandatory 40 | waitforTimeout: waitforTimeout, 41 | commandTimeout: commandTimeout, 42 | newCommandTimeout: 30 * 60000, 43 | } 44 | ], 45 | 46 | services: ['appium'], 47 | appium: { 48 | waitStartTime: 6000, 49 | waitforTimeout: waitforTimeout, 50 | command: 'appium', 51 | logFileName: 'appium.log', 52 | args: { 53 | address: host, 54 | port: port, 55 | commandTimeout: commandTimeout, 56 | sessionOverride: true, 57 | debugLogSpacing: true 58 | } 59 | }, 60 | 61 | /** 62 | * test configurations 63 | */ 64 | logLevel: 'silent', 65 | coloredLogs: true, 66 | framework: 'cucumber', // cucumber framework specified 67 | cucumberOpts: { 68 | compiler: ['ts:ts-node/register'], 69 | backtrace: true, 70 | failFast: false, 71 | timeout: 5 * 60 * 60000, 72 | require: ['./stepDefinitions/appiumSteps.ts'] // importing/requiring step definition files 73 | }, 74 | 75 | /** 76 | * hooks 77 | */ 78 | onPrepare: function () { 79 | console.log('<<< BROWSER TESTS STARTED >>>'); 80 | }, 81 | 82 | before: function (capabilities, specs) { 83 | browser.url(this.baseUrl); 84 | }, 85 | 86 | afterScenario: function (scenario) { 87 | browser.screenshot(); 88 | }, 89 | 90 | onComplete: function () { 91 | 92 | console.log('<<< TESTING FINISHED >>>'); 93 | } 94 | 95 | }; -------------------------------------------------------------------------------- /features/appium.feature: -------------------------------------------------------------------------------- 1 | Feature: To search appium in google & verify appium webpage 2 | 3 | @AppiumSearchScenario 4 | Scenario: Appium Google Search 5 | Given I am on google page 6 | When I type "appium" 7 | Then I click on search button 8 | Then appium links should be displayed 9 | 10 | @AppiumWebsiteScenario 11 | Scenario: Navigate to appium's official website 12 | When I click on first search link 13 | Then I should be navigated to appium's official site "http://appium.io/" 14 | Then I verify the title of the page to be "Appium: Mobile App Automation Made Awesome." 15 | 16 | @AppiumTutorialScenario 17 | Scenario: Navigate & verify appium tutorial page 18 | When I click on top menu button 19 | When I click on tutorial link 20 | Then I click on android tutorial link 21 | Then I verify the title of android tutorial page to be "Mobile Test Automation with Appium" -------------------------------------------------------------------------------- /features/calculator.feature: -------------------------------------------------------------------------------- 1 | Feature: To test the add & subtract feature of mobile calculator app 2 | 3 | @AddScenario 4 | Scenario: Add two numbers 5 | Given I am on my mobile calculator app 6 | When I add "3" and "5" 7 | Then the result "8" should be displayed 8 | 9 | @SubtractScenario 10 | Scenario: Subtract two numbers 11 | When I subtract "7" from "5" 12 | Then the result "2" should be displayed 13 | 14 | @MultiplyScenario 15 | Scenario: Multiply two numbers 16 | When I multiply "3" with "5" 17 | Then the result "15" should be displayed 18 | 19 | @DivideScenario 20 | Scenario: Divide two numbers 21 | When I divide "9" with "3" 22 | Then the result "3" should be displayed 23 | 24 | @ClearScenario 25 | Scenario: Clear the text 26 | When I add "8" and "7" 27 | When I click on AC button 28 | Then the result should be cleared 29 | -------------------------------------------------------------------------------- /images/allure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igniteram/appium-webdriverio-typescript/f926094e8d137a779b3b88df1ca6c81440a947b5/images/allure.png -------------------------------------------------------------------------------- /images/allure_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igniteram/appium-webdriverio-typescript/f926094e8d137a779b3b88df1ca6c81440a947b5/images/allure_graph.png -------------------------------------------------------------------------------- /images/appium-webdriverio-typescript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igniteram/appium-webdriverio-typescript/f926094e8d137a779b3b88df1ca6c81440a947b5/images/appium-webdriverio-typescript.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "appium-webdriverio-tests", 3 | "version": "1.0.0", 4 | "description": "Test framework for automating mobile apps with appium using webdriverio & typescript!", 5 | "main": "index.js", 6 | "scripts": { 7 | "build": "tsc", 8 | "clean": "rimraf typeScript/", 9 | "clean-build": "npm run clean && npm run build", 10 | "appium": "appium", 11 | "app-test": "wdio ./config/wdio.app.config.js", 12 | "browser-test": "wdio ./config/wdio.browser.config.js", 13 | "pretest": "npm run clean-build", 14 | "test": "npm run app-test && npm run browser-test", 15 | "report": "allure generate ./allure-results" 16 | }, 17 | "keywords": [ 18 | "appium", 19 | "webdriverio", 20 | "typescript", 21 | "mobile automation", 22 | "behaviour driven development", 23 | "bdd", 24 | "selenium", 25 | "webdriverJS", 26 | "gherkin", 27 | "automation testing" 28 | ], 29 | "author": "Ram Pasala ", 30 | "license": "MIT", 31 | "devDependencies": { 32 | "@types/chai": "^4.1.4", 33 | "@types/cucumber": "^4.0.4", 34 | "@types/node": "^10.3.4", 35 | "@types/webdriverio": "^4.10.2", 36 | "allure-commandline": "^2.5.0", 37 | "appium": "^1.8.1", 38 | "chai": "^4.1.2", 39 | "cucumber": "^4.2.1", 40 | "rimraf": "^2.6.2", 41 | "ts-node": "^6.1.1", 42 | "tslint": "^5.10.0", 43 | "typescript": "^2.9.2", 44 | "wdio-allure-reporter": "^0.6.2", 45 | "wdio-appium-service": "^0.2.3", 46 | "wdio-cucumber-framework": "^2.1.0", 47 | "wdio-spec-reporter": "^0.1.4", 48 | "webdriverio": "^4.12.0" 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /pages/appiumPage.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Page Objects help in better re-usablitity and maintenance of element locators. 3 | * This file exports GooglePageObject & AppiumPageObject classes 4 | */ 5 | 6 | class GooglePageObject { 7 | public get searchTextBox(): any { return browser.element('input[type="search"]'); } 8 | public get searchButton(): any { return browser.element('button[aria-label="Google Search"]'); } 9 | public get results(): any { return browser.waitForVisible('#ires #rso', 5000); } 10 | public get firstLink(): any { return browser.element('#rso > div:nth-child(1) > div > div > div > div:nth-child(1) > div > a'); } 11 | } 12 | 13 | class AppiumPageObject { 14 | public get linkButton(): any { return browser.element('body > nav.navbar.navbar-inverse.navbar-static-top button'); } 15 | public get tutorialLink(): any { return browser.element('#bs-example-navbar-collapse-1 > ul > li:nth-child(7) > a'); } 16 | public get firstBook(): any { return browser.element('#readmeMarkdown > div:nth-child(1) > a.resource-title'); } 17 | public get androidTutorialTitle(): any { return browser.element('#native-android-automation').getText(); } 18 | } 19 | 20 | /* 21 | Public Interface - export instances of classes 22 | **/ 23 | export const GooglePage = new GooglePageObject(); 24 | export const AppiumPage = new AppiumPageObject(); 25 | -------------------------------------------------------------------------------- /pages/calcPage.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Page Objects help in better re-usablitity and maintenance of element locators. 3 | * This file exports CalculatorPageObject class 4 | */ 5 | 6 | export class CalculatorPageObject { 7 | public addOperator: string; 8 | public subtractOperator: string; 9 | public multiplyOperator: string; 10 | public divisionOperator: string; 11 | public equalOperator: string; 12 | public clearOperator: string; 13 | public outputText: string = 'com.android.calculator2.CalculatorEditText'; 14 | public idLocator: string = 'com.android.calculator2:id/'; 15 | public digitLocator: string = 'com.android.calculator2:id/digit'; 16 | 17 | constructor() { 18 | this.addOperator = this.androidIDSelector(this.calcOperatorSelector('plus')); 19 | this.subtractOperator = this.androidIDSelector(this.calcOperatorSelector('minus')); 20 | this.multiplyOperator = this.androidIDSelector(this.calcOperatorSelector('mul')); 21 | this.divisionOperator = this.androidIDSelector(this.calcOperatorSelector('div')); 22 | this.equalOperator = this.androidIDSelector(this.calcOperatorSelector('equal')); 23 | this.clearOperator = this.androidIDSelector(this.calcOperatorSelector('allClear')); 24 | this.outputText = this.androidClassSelector(this.outputText); 25 | } 26 | 27 | public calcDigitSelector = (selector: string): string => { 28 | return this.androidIDSelector(this.digitLocator + selector); 29 | } 30 | 31 | private androidIDSelector = (selector: any): string => { 32 | let str = `'android=new UiSelector().resourceId("${selector}")'`; 33 | str = str.substring(1, str.length - 1); 34 | return str; 35 | } 36 | 37 | private androidClassSelector = (selector: any): string => { 38 | let str = `'android=new UiSelector().className("${selector}")'`; 39 | str = str.substring(1, str.length - 1); 40 | return str; 41 | } 42 | 43 | private calcOperatorSelector = (selector: string): string => { 44 | return this.idLocator + selector; 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /stepDefinitions/appiumSteps.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Step Definitons are the glue code which drive 3 | * the feature scenarios, Cucumber helps us provide 4 | * gherkin language syntax's - Given, When, Then 5 | */ 6 | 7 | import { AppiumPage, GooglePage } from '../pages/appiumPage'; 8 | const { Given, When, Then, BeforeAll } = require('cucumber'); 9 | import {expect} from 'chai'; 10 | 11 | Given(/^I am on google page$/, () => { 12 | expect(browser.getTitle()).to.equal('Google'); 13 | }); 14 | 15 | When(/^I type "(.*?)"$/, (text) => { 16 | GooglePage.searchTextBox.setValue(text); 17 | }); 18 | 19 | When(/^I click on first search link$/, () => { 20 | GooglePage.firstLink.click(); 21 | }); 22 | 23 | Then(/^I click on search button$/, () => { 24 | GooglePage.searchButton.click(); 25 | }); 26 | 27 | Then(/^appium links should be displayed$/, () => { 28 | expect(GooglePage.results).to.equal(true); 29 | }); 30 | 31 | Then(/^I should be navigated to appium's official site "(.*?)"$/, (expectedUrl) => { 32 | browser.waitUntil(async () => { 33 | const url = await browser.getUrl(); 34 | return url === expectedUrl; 35 | }, 5000, `expected url to be ${expectedUrl}`); 36 | }); 37 | 38 | Then(/^I verify the title of the page to be "(.*?)"$/, (expectedTitle) => { 39 | browser.waitUntil(async () => { 40 | const title = await browser.getTitle(); 41 | return title === expectedTitle; 42 | }, 5000, `expected url to be ${expectedTitle}`); 43 | }); 44 | 45 | When(/^I click on top menu button$/, () => { 46 | AppiumPage.linkButton.click(); 47 | }); 48 | 49 | When(/^I click on tutorial link$/, () => { 50 | AppiumPage.tutorialLink.click(); 51 | }); 52 | 53 | Then(/^I click on android tutorial link$/, () => { 54 | AppiumPage.firstBook.click(); 55 | }); 56 | 57 | Then(/^I verify the title of android tutorial page to be "(.*?)"$/, (expectedTitle) => { 58 | browser.waitUntil(async () => { 59 | const title = await browser.getTitle(); 60 | return title === expectedTitle; 61 | }, 5000, `expected url to be ${expectedTitle}`); 62 | }); 63 | -------------------------------------------------------------------------------- /stepDefinitions/calcSteps.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Step Definitons are the glue code which drive 3 | * the feature scenarios, Cucumber helps us provide 4 | * gherkin language syntax's - Given, When, Then 5 | */ 6 | 7 | const {Given, When, Then} = require('cucumber'); 8 | import {expect} from 'chai'; 9 | import {CalculatorPageObject} from '../pages/calcPage'; 10 | 11 | const calc: CalculatorPageObject = new CalculatorPageObject(); 12 | 13 | Given(/^I am on my mobile calculator app$/, () => { 14 | const title = browser.getText('android.widget.TextView'); 15 | expect(title).to.equal('Calculator'); 16 | }); 17 | 18 | When(/^I add "(.*?)" and "(.*?)"$/, (num1: string, num2: string) => { 19 | browser.click(calc.calcDigitSelector(num1)); 20 | browser.click(calc.addOperator); 21 | browser.click(calc.calcDigitSelector(num2)); 22 | browser.click(calc.equalOperator); 23 | }); 24 | 25 | When(/^I subtract "(.*?)" from "(.*?)"$/, (num1: string, num2: string) => { 26 | browser.click(calc.calcDigitSelector(num1)); 27 | browser.click(calc.subtractOperator); 28 | browser.click(calc.calcDigitSelector(num2)); 29 | browser.click(calc.equalOperator); 30 | }); 31 | 32 | When(/^I multiply "(.*?)" with "(.*?)"$/, (num1: string, num2: string) => { 33 | browser.click(calc.calcDigitSelector(num1)); 34 | browser.click(calc.multiplyOperator); 35 | browser.click(calc.calcDigitSelector(num2)); 36 | browser.click(calc.equalOperator); 37 | }); 38 | 39 | When(/^I divide "(.*?)" with "(.*?)"$/, (num1: string, num2: string) => { 40 | browser.click(calc.calcDigitSelector(num1)); 41 | browser.click(calc.divisionOperator); 42 | browser.click(calc.calcDigitSelector(num2)); 43 | browser.click(calc.equalOperator); 44 | }); 45 | 46 | When(/^I click on AC button$/, () => { 47 | browser.click(calc.clearOperator); 48 | }); 49 | 50 | Then(/^the result "(.*?)" should be displayed$/, (result: string) => { 51 | return expect(browser.getText(calc.outputText)).to.contain(result); 52 | }); 53 | 54 | Then(/^the result should be cleared$/, () => { 55 | return expect(browser.getText(calc.outputText)).to.equal(''); 56 | }); 57 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "module": "commonjs", 4 | "target": "es6", 5 | "moduleResolution": "node", 6 | "sourceMap": false, 7 | "declaration": false, 8 | "emitDecoratorMetadata": true, 9 | "experimentalDecorators": true, 10 | "removeComments": false, 11 | "noImplicitAny": false, 12 | "outDir": "typeScript", 13 | "typeRoots": [ "./node_modules/@types" ], 14 | "types": ["node","cucumber","webdriverio","chai"] 15 | }, 16 | "exclude": [ 17 | "node_modules", 18 | "typescript" 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultSeverity": "error", 3 | "extends": ["tslint:recommended"], 4 | "jsRules": {}, 5 | "rules": { 6 | "no-duplicate-imports": true, 7 | "no-duplicate-variable": true, 8 | "no-var-keyword": true, 9 | "no-var-requires": false, 10 | "quotemark": [true, "single", "avoid-escape"], 11 | "semicolon": [true], 12 | "variable-name": [true, "ban-keywords"], 13 | "no-console": [false], 14 | "max-line-length": [true, 200], 15 | "max-classes-per-file": [true, 2], 16 | "trailing-comma": [ 17 | true, 18 | { 19 | "multiline": { 20 | "objects": "always", 21 | "arrays": "always", 22 | "functions": "never", 23 | "typeLiterals": "ignore" 24 | } 25 | } 26 | ] 27 | } 28 | } -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@types/chai@^4.1.4": 6 | version "4.1.7" 7 | resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.1.7.tgz#1b8e33b61a8c09cbe1f85133071baa0dbf9fa71a" 8 | integrity sha512-2Y8uPt0/jwjhQ6EiluT0XCri1Dbplr0ZxfFXUz+ye13gaqE8u5gL5ppao1JrUYr9cIip5S6MvQzBS7Kke7U9VA== 9 | 10 | "@types/cucumber@^4.0.4": 11 | version "4.0.5" 12 | resolved "https://registry.yarnpkg.com/@types/cucumber/-/cucumber-4.0.5.tgz#67e5858b62a3ff4d90d80f5733cc8164ce016689" 13 | integrity sha512-0KRiDjnzCZz7WDhdH0N418Kpsa1utoFvA1KSk38LPi2SjLy1EaD/hJcWPXCG+6kj5O+qXMPXW3VjzxWX3T/6HA== 14 | 15 | "@types/node@*": 16 | version "10.3.4" 17 | resolved "https://registry.yarnpkg.com/@types/node/-/node-10.3.4.tgz#c74e8aec19e555df44609b8057311052a2c84d9e" 18 | 19 | "@types/node@^10.3.4": 20 | version "10.14.3" 21 | resolved "https://registry.yarnpkg.com/@types/node/-/node-10.14.3.tgz#170a81168620d931cc3b83460be253cadd3028f1" 22 | integrity sha512-2lhc7S28vo8FwR3Jv3Ifyd77AxEsx+Nl9ajWiac6/eWuvZ84zPK4RE05pfqcn3acIzlZDpQj5F1rIKQZX3ptLQ== 23 | 24 | "@types/webdriverio@^4.10.2": 25 | version "4.13.3" 26 | resolved "https://registry.yarnpkg.com/@types/webdriverio/-/webdriverio-4.13.3.tgz#c1571c4e62724135c0b11e7d7e36b07af5168856" 27 | integrity sha512-AfSQM1xTO9Ax+u9uSQPDuw69DQ0qA2RMoKHn86jCgWNcwKVUjGMSP4sfSl3JOfcZN8X/gWvn7znVPp2/g9zcJA== 28 | dependencies: 29 | "@types/node" "*" 30 | 31 | abbrev@1: 32 | version "1.1.1" 33 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 34 | 35 | accepts@~1.3.5: 36 | version "1.3.5" 37 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.5.tgz#eb777df6011723a3b14e8a72c0805c8e86746bd2" 38 | dependencies: 39 | mime-types "~2.1.18" 40 | negotiator "0.6.1" 41 | 42 | adbkit-logcat@^1.1.0: 43 | version "1.1.0" 44 | resolved "https://registry.yarnpkg.com/adbkit-logcat/-/adbkit-logcat-1.1.0.tgz#01d7f9b0cef9093a30bcb3b007efff301508962f" 45 | 46 | adbkit-monkey@~1.0.1: 47 | version "1.0.1" 48 | resolved "https://registry.yarnpkg.com/adbkit-monkey/-/adbkit-monkey-1.0.1.tgz#f291be701a2efc567a63fc7aa6afcded31430be1" 49 | dependencies: 50 | async "~0.2.9" 51 | 52 | adbkit@^2.4.1: 53 | version "2.11.0" 54 | resolved "https://registry.yarnpkg.com/adbkit/-/adbkit-2.11.0.tgz#9a8da51e62790f8bae5296b1c52614f69e4c2684" 55 | dependencies: 56 | adbkit-logcat "^1.1.0" 57 | adbkit-monkey "~1.0.1" 58 | bluebird "~2.9.24" 59 | commander "^2.3.0" 60 | debug "~2.6.3" 61 | node-forge "^0.7.1" 62 | split "~0.3.3" 63 | 64 | aggregate-error@^1.0.0: 65 | version "1.0.0" 66 | resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-1.0.0.tgz#888344dad0220a72e3af50906117f48771925fac" 67 | dependencies: 68 | clean-stack "^1.0.0" 69 | indent-string "^3.0.0" 70 | 71 | ajv@^5.1.0: 72 | version "5.5.2" 73 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 74 | dependencies: 75 | co "^4.6.0" 76 | fast-deep-equal "^1.0.0" 77 | fast-json-stable-stringify "^2.0.0" 78 | json-schema-traverse "^0.3.0" 79 | 80 | allure-commandline@^2.5.0: 81 | version "2.9.0" 82 | resolved "https://registry.yarnpkg.com/allure-commandline/-/allure-commandline-2.9.0.tgz#35f4f5d862f0680ae26de59e9bee2d01f9d8b9ef" 83 | integrity sha512-yeIP/+xSUN6GR63iTc/XkS04sIzcNlDZuawQMDQBQiLGCOyJr/EumAQoVlDFq8C0yfOBPrx5CP82GahqoUKI9w== 84 | 85 | allure-js-commons@^1.3.1: 86 | version "1.3.2" 87 | resolved "https://registry.yarnpkg.com/allure-js-commons/-/allure-js-commons-1.3.2.tgz#e1cf0466e36695bb3ced1228f6570eac6c2e9eda" 88 | dependencies: 89 | file-type "^7.7.1" 90 | fs-extra "^6.0.1" 91 | js2xmlparser "^3.0.0" 92 | mime "^2.3.1" 93 | object-assign "^4.1.1" 94 | uuid "^3.0.0" 95 | 96 | amdefine@>=0.0.4: 97 | version "1.0.1" 98 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 99 | 100 | ansi-escapes@^3.0.0: 101 | version "3.1.0" 102 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30" 103 | 104 | ansi-regex@^2.0.0: 105 | version "2.1.1" 106 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 107 | 108 | ansi-regex@^3.0.0: 109 | version "3.0.0" 110 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 111 | 112 | ansi-styles@^2.2.1: 113 | version "2.2.1" 114 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 115 | 116 | ansi-styles@^3.2.1: 117 | version "3.2.1" 118 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 119 | dependencies: 120 | color-convert "^1.9.0" 121 | 122 | any-promise@^1.0.0: 123 | version "1.3.0" 124 | resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" 125 | 126 | appium-adb@^6.0.1, appium-adb@^6.2.1, appium-adb@^6.2.2, appium-adb@^6.5.2, appium-adb@^6.8.0: 127 | version "6.11.1" 128 | resolved "https://registry.yarnpkg.com/appium-adb/-/appium-adb-6.11.1.tgz#37e325e185e4d1ef540f69598d2047910d9e995f" 129 | dependencies: 130 | appium-support "^2.4.0" 131 | asyncbox "^2.3.1" 132 | babel-runtime "=5.8.24" 133 | bluebird "^3.4.7" 134 | lodash "^4.0.0" 135 | semver "^5.5.0" 136 | shell-quote "^1.6.1" 137 | source-map-support "^0.5.5" 138 | teen_process "^1.11.0" 139 | xmldom "^0.1.27" 140 | xpath "^0.0.27" 141 | 142 | appium-android-bootstrap@^2.11.0: 143 | version "2.11.0" 144 | resolved "https://registry.yarnpkg.com/appium-android-bootstrap/-/appium-android-bootstrap-2.11.0.tgz#faf018c48485fea183b018d99c39fd11def63d26" 145 | dependencies: 146 | appium-base-driver "^2.21.2" 147 | appium-support "^2.5.0" 148 | appium-uiautomator "^1.1.0" 149 | babel-runtime "=5.8.24" 150 | bluebird "^2.11.0" 151 | lodash "^4.17.5" 152 | net "^1.0.2" 153 | source-map-support "^0.5.3" 154 | teen_process "^1.3.1" 155 | 156 | appium-android-driver@2.x: 157 | version "2.7.0" 158 | resolved "https://registry.yarnpkg.com/appium-android-driver/-/appium-android-driver-2.7.0.tgz#7afeafd6f3b37f64911c2998789fde9a1f7eeccc" 159 | dependencies: 160 | appium-adb "^6.8.0" 161 | appium-android-bootstrap "^2.11.0" 162 | appium-android-ime "^2.0.0" 163 | appium-base-driver "^2.26.0" 164 | appium-chromedriver "^4.0.0" 165 | appium-support "^2.13.0" 166 | appium-unlock "^2.0.0" 167 | asyncbox "^2.0.4" 168 | babel-runtime "=5.8.24" 169 | bluebird "^3.4.7" 170 | io.appium.settings "^2.4.0" 171 | jimp "^0.2.24" 172 | lodash "^4.17.4" 173 | portfinder "^1.0.6" 174 | shared-preferences-builder "^0.0.4" 175 | shell-quote "^1.6.1" 176 | source-map-support "^0.5.5" 177 | teen_process "^1.9.0" 178 | temp "^0.8.3" 179 | ws "^5.0.0" 180 | yargs "^11.0.0" 181 | 182 | appium-android-driver@^3.0.0: 183 | version "3.0.3" 184 | resolved "https://registry.yarnpkg.com/appium-android-driver/-/appium-android-driver-3.0.3.tgz#4ea94973d5c5e74fbf92db4bf42235b80c1827a0" 185 | dependencies: 186 | appium-adb "^6.8.0" 187 | appium-android-bootstrap "^2.11.0" 188 | appium-android-ime "^2.0.0" 189 | appium-base-driver "^2.32.1" 190 | appium-chromedriver "^4.0.0" 191 | appium-support "^2.13.0" 192 | appium-unlock "^2.0.0" 193 | asyncbox "^2.0.4" 194 | babel-runtime "=5.8.24" 195 | bluebird "^3.4.7" 196 | io.appium.settings "^2.4.0" 197 | jimp "^0.2.24" 198 | lodash "^4.17.4" 199 | portfinder "^1.0.6" 200 | shared-preferences-builder "^0.0.4" 201 | shell-quote "^1.6.1" 202 | source-map-support "^0.5.5" 203 | teen_process "^1.9.0" 204 | temp "^0.8.3" 205 | ws "^5.0.0" 206 | yargs "^11.0.0" 207 | 208 | appium-android-ime@^2.0.0: 209 | version "2.0.0" 210 | resolved "https://registry.yarnpkg.com/appium-android-ime/-/appium-android-ime-2.0.0.tgz#e4127fd4553e01819900769a8446b499e6328289" 211 | 212 | appium-base-driver@^2.0.0, appium-base-driver@^2.0.1, appium-base-driver@^2.18.4, appium-base-driver@^2.20.2, appium-base-driver@^2.21.2, appium-base-driver@^2.22.1, appium-base-driver@^2.23.0, appium-base-driver@^2.25.0, appium-base-driver@^2.26.0, appium-base-driver@^2.28.0, appium-base-driver@^2.32.1: 213 | version "2.32.2" 214 | resolved "https://registry.yarnpkg.com/appium-base-driver/-/appium-base-driver-2.32.2.tgz#5c19ec5f6d86a96e084fcd2196947e041bab0556" 215 | dependencies: 216 | appium-support "^2.15.0" 217 | asyncbox "^2.3.1" 218 | babel-runtime "=5.8.24" 219 | bluebird "^2.10.2" 220 | body-parser "^1.18.2" 221 | colors "^1.1.2" 222 | es6-error "^4.1.1" 223 | express "^4.16.2" 224 | http-status-codes "^1.3.0" 225 | lodash "^4.0.0" 226 | method-override "^2.3.10" 227 | morgan "^1.9.0" 228 | request "^2.83.0" 229 | request-promise "^4.2.2" 230 | serve-favicon "^2.4.5" 231 | source-map-support "^0.5.5" 232 | teen_process "^1.11.0" 233 | uuid-js "^0.7.5" 234 | validate.js "^0.12.0" 235 | ws "^5.0.0" 236 | 237 | appium-chromedriver@^4.0.0: 238 | version "4.1.0" 239 | resolved "https://registry.yarnpkg.com/appium-chromedriver/-/appium-chromedriver-4.1.0.tgz#58a3bdea064bc31f74f4587dbaaeb564ca448c09" 240 | dependencies: 241 | appium-base-driver "^2.25.0" 242 | appium-support "^2.8.0" 243 | asyncbox "^2.0.2" 244 | babel-runtime "=5.8.24" 245 | bluebird "^3.5.1" 246 | continuation-local-storage "^3.1.4" 247 | is-os "^1.0.0" 248 | lodash "^4.17.4" 249 | request "^2.57.0" 250 | request-promise "^4.2.2" 251 | semver "^5.5.0" 252 | source-map-support "^0.5.5" 253 | teen_process "^1.3.1" 254 | through "^2.3.7" 255 | 256 | appium-espresso-driver@^1.0.0-beta.3: 257 | version "1.0.0-beta.11" 258 | resolved "https://registry.yarnpkg.com/appium-espresso-driver/-/appium-espresso-driver-1.0.0-beta.11.tgz#2cc17f8ade72fc5f2cdb3641c5b812c75f09f1a5" 259 | dependencies: 260 | appium-adb "^6.0.1" 261 | appium-android-driver "^3.0.0" 262 | appium-base-driver "^2.18.4" 263 | appium-support "^2.12.0" 264 | asyncbox "^2.3.1" 265 | babel-runtime "=5.8.24" 266 | bluebird "^3.5.0" 267 | lodash "^4.17.4" 268 | portscanner "^2.1.1" 269 | request-promise "^4.2.1" 270 | source-map-support "^0.5.5" 271 | teen_process "^1.8.2" 272 | yargs "^11.0.0" 273 | 274 | appium-fake-driver@^0.x: 275 | version "0.4.0" 276 | resolved "https://registry.yarnpkg.com/appium-fake-driver/-/appium-fake-driver-0.4.0.tgz#f9290a08109c3bf14617a64a1bd6f3e9924011bb" 277 | dependencies: 278 | appium-base-driver "^2.18.4" 279 | appium-support "^2.11.1" 280 | asyncbox "^2.3.2" 281 | babel-runtime "5.8.24" 282 | bluebird "^3.5.1" 283 | lodash "^4.17.4" 284 | source-map-support "^0.5.5" 285 | xmldom "^0.1.19" 286 | xpath "0.0.27" 287 | yargs "^11.0.0" 288 | 289 | appium-ios-driver@2.x, appium-ios-driver@^2.4.3: 290 | version "2.4.4" 291 | resolved "https://registry.yarnpkg.com/appium-ios-driver/-/appium-ios-driver-2.4.4.tgz#546c62453a9a0cea0761767936b3e02dc932c7ee" 292 | dependencies: 293 | appium-base-driver "^2.23.0" 294 | appium-ios-simulator "^2.12.0" 295 | appium-remote-debugger "^3.8.0" 296 | appium-support "^2.12.0" 297 | appium-xcode "^3.1.0" 298 | asyncbox "^2.3.1" 299 | babel-runtime "=5.8.24" 300 | bluebird "^2.10.2" 301 | colors "^1.1.2" 302 | continuation-local-storage "^3.1.7" 303 | js2xmlparser2 "^0.2.0" 304 | lodash "^4.13.1" 305 | node-idevice "^0.1.6" 306 | node-simctl "^3.11.5" 307 | path "^0.12.7" 308 | pem "^1.8.3" 309 | portfinder "^1.0.13" 310 | request "^2.79.0" 311 | request-promise "^4.1.1" 312 | safari-launcher "^2.0.5" 313 | source-map-support "^0.5.5" 314 | teen_process "^1.6.0" 315 | through "^2.3.8" 316 | url "^0.11.0" 317 | uuid-js "^0.7.5" 318 | xmldom "^0.1.22" 319 | xpath "^0.0.24" 320 | yargs "^11.0.0" 321 | 322 | appium-ios-simulator@^2.12.0: 323 | version "2.14.0" 324 | resolved "https://registry.yarnpkg.com/appium-ios-simulator/-/appium-ios-simulator-2.14.0.tgz#8036e8889f46a5acb1614112a58c1141ab4e22b2" 325 | dependencies: 326 | appium-support "^2.4.0" 327 | appium-xcode "^3.1.0" 328 | async-lock "^1.0.0" 329 | asyncbox "^2.3.1" 330 | babel-runtime "=5.8.24" 331 | bluebird "^3.5.1" 332 | fkill "^5.0.0" 333 | lodash "^4.2.1" 334 | node-simctl "^3.11.0" 335 | openssl-wrapper "^0.3.4" 336 | semver-compare "^1.0.0" 337 | source-map-support "^0.5.3" 338 | teen_process "^1.3.0" 339 | 340 | appium-ios-simulator@^3.0.0: 341 | version "3.0.0" 342 | resolved "https://registry.yarnpkg.com/appium-ios-simulator/-/appium-ios-simulator-3.0.0.tgz#ef3799b1f4e811c7147d9e827ed757ad0433d609" 343 | dependencies: 344 | appium-support "^2.4.0" 345 | appium-xcode "^3.1.0" 346 | async-lock "^1.0.0" 347 | asyncbox "^2.3.1" 348 | babel-runtime "=5.8.24" 349 | bluebird "^3.5.1" 350 | fkill "^5.0.0" 351 | lodash "^4.2.1" 352 | node-simctl "^3.11.0" 353 | openssl-wrapper "^0.3.4" 354 | semver-compare "^1.0.0" 355 | source-map-support "^0.5.3" 356 | teen_process "^1.3.0" 357 | 358 | appium-mac-driver@1.x: 359 | version "1.2.0" 360 | resolved "https://registry.yarnpkg.com/appium-mac-driver/-/appium-mac-driver-1.2.0.tgz#f9730909dfb44d785a8060a62a34801aa553ebc7" 361 | dependencies: 362 | appium-base-driver "^2.18.4" 363 | appium-support "^2.6.0" 364 | asyncbox "^2.3.1" 365 | babel-runtime "=5.8.24" 366 | bluebird "^3.5.1" 367 | lodash "^4.6.1" 368 | punycode "^2.0.0" 369 | request-promise "^4.2.2" 370 | source-map-support "^0.5.5" 371 | teen_process "^1.7.0" 372 | yargs "^11.0.0" 373 | 374 | appium-remote-debugger@^3.10.0, appium-remote-debugger@^3.8.0: 375 | version "3.12.0" 376 | resolved "https://registry.yarnpkg.com/appium-remote-debugger/-/appium-remote-debugger-3.12.0.tgz#1585ebd27a0d63a7284731dda55d39ef0f7a2a5e" 377 | dependencies: 378 | appium-base-driver "^2.0.0" 379 | appium-support "^2.4.0" 380 | babel-runtime "=5.8.24" 381 | bluebird "^3.4.7" 382 | bplist-creator "0.0.7" 383 | bplist-parser "^0.1.0" 384 | bufferpack "0.0.6" 385 | lodash "^4.2.1" 386 | request "^2.79.0" 387 | request-promise "^4.1.1" 388 | source-map-support "^0.5.5" 389 | uuid "^3.0.1" 390 | ws "^5.1.1" 391 | 392 | appium-selendroid-driver@1.x: 393 | version "1.9.0" 394 | resolved "https://registry.yarnpkg.com/appium-selendroid-driver/-/appium-selendroid-driver-1.9.0.tgz#3de0faedf3f54db71c7a16338067d2917f2f682e" 395 | dependencies: 396 | appium-adb "^6.2.1" 397 | appium-android-driver "^3.0.0" 398 | appium-base-driver "^2.22.1" 399 | appium-support "^2.5.0" 400 | asyncbox "^2.3.1" 401 | babel-runtime "=5.8.24" 402 | lodash "^4.17.4" 403 | request-promise "^4.1.1" 404 | source-map-support "^0.5.5" 405 | teen_process "^1.7.1" 406 | utf7 "^1.0.0" 407 | yargs "^11.0.0" 408 | 409 | appium-support@2.x, appium-support@^2.0.10, appium-support@^2.11.1, appium-support@^2.12.0, appium-support@^2.13.0, appium-support@^2.15.0, appium-support@^2.4.0, appium-support@^2.5.0, appium-support@^2.6.0, appium-support@^2.8.0: 410 | version "2.17.0" 411 | resolved "https://registry.yarnpkg.com/appium-support/-/appium-support-2.17.0.tgz#f2c195ce7f5ab5c31b7b2e644fc5f0001975a560" 412 | dependencies: 413 | archiver "^1.3.0" 414 | babel-runtime "=5.8.24" 415 | bluebird "^3.5.1" 416 | bplist-creator "^0.0.7" 417 | bplist-parser "^0.1.0" 418 | extract-zip "^1.6.0" 419 | glob "^7.1.2" 420 | jsftp "^2.1.2" 421 | lodash "^4.2.1" 422 | md5-file "^4.0.0" 423 | mkdirp "^0.5.1" 424 | mv "^2.1.1" 425 | ncp "^2.0.0" 426 | npmlog "^4.1.2" 427 | plist "^3.0.1" 428 | pngjs "^3.0.0" 429 | request "^2.83.0" 430 | request-promise "^4.2.2" 431 | rimraf "^2.5.1" 432 | source-map-support "^0.5.5" 433 | teen_process "^1.5.1" 434 | which "^1.2.4" 435 | yauzl "^2.7.0" 436 | 437 | appium-uiautomator2-driver@1.x: 438 | version "1.13.1" 439 | resolved "https://registry.yarnpkg.com/appium-uiautomator2-driver/-/appium-uiautomator2-driver-1.13.1.tgz#afecb76e7386c67a641409759f2698f21c6c639b" 440 | dependencies: 441 | adbkit "^2.4.1" 442 | appium-adb "^6.5.2" 443 | appium-android-driver "^3.0.0" 444 | appium-base-driver "^2.26.0" 445 | appium-support "^2.12.0" 446 | appium-uiautomator2-server "^1.9.2" 447 | asyncbox "^2.3.1" 448 | babel-runtime "=5.8.24" 449 | bluebird "^3.5.1" 450 | lodash "^4.17.4" 451 | portscanner "2.2.0" 452 | request "^2.81.0" 453 | request-promise "^4.1.1" 454 | source-map-support "^0.5.5" 455 | teen_process "^1.3.1" 456 | utf7 "^1.0.0" 457 | ws "^5.0.0" 458 | yargs "^11.0.0" 459 | 460 | appium-uiautomator2-server@^1.9.2: 461 | version "1.12.0" 462 | resolved "https://registry.yarnpkg.com/appium-uiautomator2-server/-/appium-uiautomator2-server-1.12.0.tgz#7589d7a2d6fea16dd2c0520fef122d67de8512b1" 463 | 464 | appium-uiautomator@^1.1.0: 465 | version "1.2.0" 466 | resolved "https://registry.yarnpkg.com/appium-uiautomator/-/appium-uiautomator-1.2.0.tgz#f531ab87fe3fc18a89bcfa5e205d5128b4b4127d" 467 | dependencies: 468 | appium-adb "^6.2.2" 469 | appium-support "^2.5.0" 470 | babel-runtime "=5.8.24" 471 | source-map-support "^0.5.3" 472 | 473 | appium-unlock@^2.0.0: 474 | version "2.0.0" 475 | resolved "https://registry.yarnpkg.com/appium-unlock/-/appium-unlock-2.0.0.tgz#cce93347e665ac381046f17df3e9d768b29a9bcd" 476 | 477 | appium-windows-driver@1.x: 478 | version "1.2.0" 479 | resolved "https://registry.yarnpkg.com/appium-windows-driver/-/appium-windows-driver-1.2.0.tgz#9f8705b4fe6a96b8d9ba9099fa6598de8ed8333c" 480 | dependencies: 481 | appium-base-driver "^2.0.1" 482 | appium-support "^2.5.0" 483 | asyncbox "^2.3.1" 484 | babel-runtime "=5.8.24" 485 | bluebird "^3.5.1" 486 | lodash "^4.6.1" 487 | punycode "^2.0.0" 488 | request-promise "^4.2.2" 489 | source-map-support "^0.5.5" 490 | teen_process "^1.7.0" 491 | yargs "^11.0.0" 492 | 493 | appium-xcode@^3.1.0, appium-xcode@^3.2.0: 494 | version "3.6.0" 495 | resolved "https://registry.yarnpkg.com/appium-xcode/-/appium-xcode-3.6.0.tgz#b8fb30c26dcc49d2e20511f7e47b5a66bd4601c2" 496 | dependencies: 497 | appium-support "^2.4.0" 498 | asyncbox "^2.3.0" 499 | babel-runtime "=5.8.24" 500 | lodash "^4.17.4" 501 | plist "^3.0.1" 502 | semver "^5.5.0" 503 | source-map-support "^0.5.5" 504 | teen_process "^1.3.0" 505 | 506 | appium-xcuitest-driver@2.x: 507 | version "2.85.0" 508 | resolved "https://registry.yarnpkg.com/appium-xcuitest-driver/-/appium-xcuitest-driver-2.85.0.tgz#d34b655839a6c49733ab8b37814e0c5a8b1369e3" 509 | dependencies: 510 | appium-base-driver "^2.28.0" 511 | appium-ios-driver "^2.4.3" 512 | appium-ios-simulator "^3.0.0" 513 | appium-remote-debugger "^3.10.0" 514 | appium-support "^2.13.0" 515 | appium-xcode "^3.2.0" 516 | async-lock "^1.0.0" 517 | asyncbox "^2.3.1" 518 | babel-runtime "=5.8.24" 519 | bluebird "^3.1.1" 520 | js2xmlparser2 "^0.2.0" 521 | lodash "^4.0.0" 522 | node-simctl "^3.10.0" 523 | request "^2.79.0" 524 | request-promise "^4.1.1" 525 | source-map-support "^0.5.5" 526 | teen_process "^1.7.1" 527 | uuid-js "^0.7.5" 528 | ws "^5.0.0" 529 | xmldom "^0.1.27" 530 | yargs "^11.0.0" 531 | 532 | appium-youiengine-driver@^1.0.17: 533 | version "1.0.18" 534 | resolved "https://registry.yarnpkg.com/appium-youiengine-driver/-/appium-youiengine-driver-1.0.18.tgz#242f0e382db553f1be19871aa4b92002e43b1768" 535 | dependencies: 536 | appium-android-driver "2.x" 537 | appium-base-driver "^2.20.2" 538 | appium-ios-driver "2.x" 539 | appium-mac-driver "1.x" 540 | appium-support "2.x" 541 | appium-xcuitest-driver "2.x" 542 | asyncbox "2.x" 543 | babel-runtime "=5.8.24" 544 | bluebird "2.x" 545 | lodash "4.x" 546 | selenium-webdriver "3.x" 547 | shelljs "0.8.x" 548 | 549 | appium@^1.8.1: 550 | version "1.8.1" 551 | resolved "https://registry.yarnpkg.com/appium/-/appium-1.8.1.tgz#93e1f0bb35f0f20f0c1d98af405d6260f5f3dc95" 552 | dependencies: 553 | appium-android-driver "2.x" 554 | appium-base-driver "^2.20.2" 555 | appium-espresso-driver "^1.0.0-beta.3" 556 | appium-fake-driver "^0.x" 557 | appium-ios-driver "2.x" 558 | appium-mac-driver "1.x" 559 | appium-selendroid-driver "1.x" 560 | appium-support "2.x" 561 | appium-uiautomator2-driver "1.x" 562 | appium-windows-driver "1.x" 563 | appium-xcuitest-driver "2.x" 564 | appium-youiengine-driver "^1.0.17" 565 | argparse "^1.0.10" 566 | async-lock "^1.0.0" 567 | asyncbox "2.x" 568 | babel-runtime "=5.8.24" 569 | bluebird "3.x" 570 | continuation-local-storage "3.x" 571 | dateformat "^3.0.3" 572 | lodash "4.x" 573 | npmlog "4.x" 574 | request "^2.81.0" 575 | request-promise "4.x" 576 | semver "^5.5.0" 577 | source-map-support "0.x" 578 | teen_process "1.x" 579 | winston "2.x" 580 | optionalDependencies: 581 | fsevents "1.x" 582 | heapdump "0.x" 583 | 584 | aproba@^1.0.3: 585 | version "1.2.0" 586 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 587 | 588 | archiver-utils@^1.3.0: 589 | version "1.3.0" 590 | resolved "https://registry.yarnpkg.com/archiver-utils/-/archiver-utils-1.3.0.tgz#e50b4c09c70bf3d680e32ff1b7994e9f9d895174" 591 | dependencies: 592 | glob "^7.0.0" 593 | graceful-fs "^4.1.0" 594 | lazystream "^1.0.0" 595 | lodash "^4.8.0" 596 | normalize-path "^2.0.0" 597 | readable-stream "^2.0.0" 598 | 599 | archiver@^1.3.0: 600 | version "1.3.0" 601 | resolved "https://registry.yarnpkg.com/archiver/-/archiver-1.3.0.tgz#4f2194d6d8f99df3f531e6881f14f15d55faaf22" 602 | dependencies: 603 | archiver-utils "^1.3.0" 604 | async "^2.0.0" 605 | buffer-crc32 "^0.2.1" 606 | glob "^7.0.0" 607 | lodash "^4.8.0" 608 | readable-stream "^2.0.0" 609 | tar-stream "^1.5.0" 610 | walkdir "^0.0.11" 611 | zip-stream "^1.1.0" 612 | 613 | archiver@~2.1.0: 614 | version "2.1.1" 615 | resolved "https://registry.yarnpkg.com/archiver/-/archiver-2.1.1.tgz#ff662b4a78201494a3ee544d3a33fe7496509ebc" 616 | dependencies: 617 | archiver-utils "^1.3.0" 618 | async "^2.0.0" 619 | buffer-crc32 "^0.2.1" 620 | glob "^7.0.0" 621 | lodash "^4.8.0" 622 | readable-stream "^2.0.0" 623 | tar-stream "^1.5.0" 624 | zip-stream "^1.2.0" 625 | 626 | are-we-there-yet@~1.1.2: 627 | version "1.1.5" 628 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" 629 | dependencies: 630 | delegates "^1.0.0" 631 | readable-stream "^2.0.6" 632 | 633 | argparse@^1.0.10, argparse@^1.0.7: 634 | version "1.0.10" 635 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 636 | dependencies: 637 | sprintf-js "~1.0.2" 638 | 639 | array-filter@~0.0.0: 640 | version "0.0.1" 641 | resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" 642 | 643 | array-flatten@1.1.1: 644 | version "1.1.1" 645 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" 646 | 647 | array-map@~0.0.0: 648 | version "0.0.0" 649 | resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" 650 | 651 | array-reduce@~0.0.0: 652 | version "0.0.0" 653 | resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b" 654 | 655 | arrify@^1.0.0: 656 | version "1.0.1" 657 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 658 | 659 | asn1@~0.2.3: 660 | version "0.2.3" 661 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 662 | 663 | assert-plus@1.0.0, assert-plus@^1.0.0: 664 | version "1.0.0" 665 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 666 | 667 | assertion-error-formatter@^2.0.1: 668 | version "2.0.1" 669 | resolved "https://registry.yarnpkg.com/assertion-error-formatter/-/assertion-error-formatter-2.0.1.tgz#6bbdffaec8e2fa9e2b0eb158bfe353132d7c0a9b" 670 | dependencies: 671 | diff "^3.0.0" 672 | pad-right "^0.2.2" 673 | repeat-string "^1.6.1" 674 | 675 | assertion-error@^1.0.1: 676 | version "1.1.0" 677 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b" 678 | 679 | async-limiter@~1.0.0: 680 | version "1.0.0" 681 | resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8" 682 | 683 | async-listener@^0.6.0: 684 | version "0.6.9" 685 | resolved "https://registry.yarnpkg.com/async-listener/-/async-listener-0.6.9.tgz#51bc95e41095417f33922fb4dee4f232b3226488" 686 | dependencies: 687 | semver "^5.3.0" 688 | shimmer "^1.1.0" 689 | 690 | async-lock@^1.0.0: 691 | version "1.1.3" 692 | resolved "https://registry.yarnpkg.com/async-lock/-/async-lock-1.1.3.tgz#e47f1cbb6bec765b73e27ed8961d58006457ec08" 693 | 694 | async@^1.5.2: 695 | version "1.5.2" 696 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 697 | 698 | async@^2.0.0, async@^2.6.0: 699 | version "2.6.1" 700 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.1.tgz#b245a23ca71930044ec53fa46aa00a3e87c6a610" 701 | dependencies: 702 | lodash "^4.17.10" 703 | 704 | async@~0.2.9: 705 | version "0.2.10" 706 | resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1" 707 | 708 | async@~1.0.0: 709 | version "1.0.0" 710 | resolved "https://registry.yarnpkg.com/async/-/async-1.0.0.tgz#f8fc04ca3a13784ade9e1641af98578cfbd647a9" 711 | 712 | asyncbox@2.x, asyncbox@^2.0.2, asyncbox@^2.0.4, asyncbox@^2.3.0, asyncbox@^2.3.1, asyncbox@^2.3.2: 713 | version "2.4.0" 714 | resolved "https://registry.yarnpkg.com/asyncbox/-/asyncbox-2.4.0.tgz#f8d79abbb0c7f512aff2086e2c279e371597c67e" 715 | dependencies: 716 | babel-runtime "=5.8.24" 717 | bluebird "^3.5.1" 718 | es6-mapify "^1.1.0" 719 | lodash "^4.17.4" 720 | source-map-support "^0.5.5" 721 | 722 | asynckit@^0.4.0: 723 | version "0.4.0" 724 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 725 | 726 | atob@^2.1.1: 727 | version "2.1.1" 728 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.1.tgz#ae2d5a729477f289d60dd7f96a6314a22dd6c22a" 729 | 730 | aws-sign2@~0.7.0: 731 | version "0.7.0" 732 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 733 | 734 | aws4@^1.6.0: 735 | version "1.7.0" 736 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.7.0.tgz#d4d0e9b9dbfca77bf08eeb0a8a471550fe39e289" 737 | 738 | babel-code-frame@^6.22.0: 739 | version "6.26.0" 740 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 741 | dependencies: 742 | chalk "^1.1.3" 743 | esutils "^2.0.2" 744 | js-tokens "^3.0.2" 745 | 746 | babel-runtime@5.8.24, babel-runtime@=5.8.24: 747 | version "5.8.24" 748 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-5.8.24.tgz#3014a6b01bd4cb74720f13925253ae0d9268147b" 749 | dependencies: 750 | core-js "^1.0.0" 751 | 752 | babel-runtime@^6.11.6, babel-runtime@^6.26.0, babel-runtime@~6.26.0: 753 | version "6.26.0" 754 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 755 | dependencies: 756 | core-js "^2.4.0" 757 | regenerator-runtime "^0.11.0" 758 | 759 | balanced-match@^1.0.0: 760 | version "1.0.0" 761 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 762 | 763 | base64-js@^1.2.3: 764 | version "1.3.0" 765 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.0.tgz#cab1e6118f051095e58b5281aea8c1cd22bfc0e3" 766 | 767 | basic-auth@~2.0.0: 768 | version "2.0.0" 769 | resolved "https://registry.yarnpkg.com/basic-auth/-/basic-auth-2.0.0.tgz#015db3f353e02e56377755f962742e8981e7bbba" 770 | dependencies: 771 | safe-buffer "5.1.1" 772 | 773 | bcrypt-pbkdf@^1.0.0: 774 | version "1.0.1" 775 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 776 | dependencies: 777 | tweetnacl "^0.14.3" 778 | 779 | becke-ch--regex--s0-0-v1--base--pl--lib@^1.2.0: 780 | version "1.4.0" 781 | resolved "https://registry.yarnpkg.com/becke-ch--regex--s0-0-v1--base--pl--lib/-/becke-ch--regex--s0-0-v1--base--pl--lib-1.4.0.tgz#429ceebbfa5f7e936e78d73fbdc7da7162b20e20" 782 | 783 | big-integer@^1.6.7: 784 | version "1.6.31" 785 | resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.31.tgz#6d7852486e67c642502dcc03f7225a245c9fc7fa" 786 | 787 | bignumber.js@^2.1.0: 788 | version "2.4.0" 789 | resolved "https://registry.yarnpkg.com/bignumber.js/-/bignumber.js-2.4.0.tgz#838a992da9f9d737e0f4b2db0be62bb09dd0c5e8" 790 | 791 | bl@^1.0.0: 792 | version "1.2.2" 793 | resolved "https://registry.yarnpkg.com/bl/-/bl-1.2.2.tgz#a160911717103c07410cef63ef51b397c025af9c" 794 | dependencies: 795 | readable-stream "^2.3.5" 796 | safe-buffer "^5.1.1" 797 | 798 | bluebird@2.x, bluebird@^2.10.2, bluebird@^2.11.0: 799 | version "2.11.0" 800 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-2.11.0.tgz#534b9033c022c9579c56ba3b3e5a5caafbb650e1" 801 | 802 | bluebird@3.x, bluebird@^3.1.1, bluebird@^3.4.1, bluebird@^3.4.7, bluebird@^3.5.0, bluebird@^3.5.1: 803 | version "3.5.1" 804 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.1.tgz#d9551f9de98f1fcda1e683d17ee91a0602ee2eb9" 805 | 806 | bluebird@~2.9.24: 807 | version "2.9.34" 808 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-2.9.34.tgz#2f7b4ec80216328a9fddebdf69c8d4942feff7d8" 809 | 810 | bmp-js@0.0.3: 811 | version "0.0.3" 812 | resolved "https://registry.yarnpkg.com/bmp-js/-/bmp-js-0.0.3.tgz#64113e9c7cf1202b376ed607bf30626ebe57b18a" 813 | 814 | body-parser@1.18.2: 815 | version "1.18.2" 816 | resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.18.2.tgz#87678a19d84b47d859b83199bd59bce222b10454" 817 | dependencies: 818 | bytes "3.0.0" 819 | content-type "~1.0.4" 820 | debug "2.6.9" 821 | depd "~1.1.1" 822 | http-errors "~1.6.2" 823 | iconv-lite "0.4.19" 824 | on-finished "~2.3.0" 825 | qs "6.5.1" 826 | raw-body "2.3.2" 827 | type-is "~1.6.15" 828 | 829 | body-parser@^1.18.2: 830 | version "1.18.3" 831 | resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.18.3.tgz#5b292198ffdd553b3a0f20ded0592b956955c8b4" 832 | dependencies: 833 | bytes "3.0.0" 834 | content-type "~1.0.4" 835 | debug "2.6.9" 836 | depd "~1.1.2" 837 | http-errors "~1.6.3" 838 | iconv-lite "0.4.23" 839 | on-finished "~2.3.0" 840 | qs "6.5.2" 841 | raw-body "2.3.3" 842 | type-is "~1.6.16" 843 | 844 | bplist-creator@0.0.7, bplist-creator@^0.0.7: 845 | version "0.0.7" 846 | resolved "https://registry.yarnpkg.com/bplist-creator/-/bplist-creator-0.0.7.tgz#37df1536092824b87c42f957b01344117372ae45" 847 | dependencies: 848 | stream-buffers "~2.2.0" 849 | 850 | bplist-parser@^0.1.0: 851 | version "0.1.1" 852 | resolved "https://registry.yarnpkg.com/bplist-parser/-/bplist-parser-0.1.1.tgz#d60d5dcc20cba6dc7e1f299b35d3e1f95dafbae6" 853 | dependencies: 854 | big-integer "^1.6.7" 855 | 856 | brace-expansion@^1.1.7: 857 | version "1.1.11" 858 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 859 | dependencies: 860 | balanced-match "^1.0.0" 861 | concat-map "0.0.1" 862 | 863 | buffer-alloc-unsafe@^1.1.0: 864 | version "1.1.0" 865 | resolved "https://registry.yarnpkg.com/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz#bd7dc26ae2972d0eda253be061dba992349c19f0" 866 | 867 | buffer-alloc@^1.1.0: 868 | version "1.2.0" 869 | resolved "https://registry.yarnpkg.com/buffer-alloc/-/buffer-alloc-1.2.0.tgz#890dd90d923a873e08e10e5fd51a57e5b7cce0ec" 870 | dependencies: 871 | buffer-alloc-unsafe "^1.1.0" 872 | buffer-fill "^1.0.0" 873 | 874 | buffer-crc32@^0.2.1, buffer-crc32@~0.2.3: 875 | version "0.2.13" 876 | resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" 877 | 878 | buffer-equal@0.0.1: 879 | version "0.0.1" 880 | resolved "https://registry.yarnpkg.com/buffer-equal/-/buffer-equal-0.0.1.tgz#91bc74b11ea405bc916bc6aa908faafa5b4aac4b" 881 | 882 | buffer-fill@^1.0.0: 883 | version "1.0.0" 884 | resolved "https://registry.yarnpkg.com/buffer-fill/-/buffer-fill-1.0.0.tgz#f8f78b76789888ef39f205cd637f68e702122b2c" 885 | 886 | buffer-from@^1.0.0: 887 | version "1.1.0" 888 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.0.tgz#87fcaa3a298358e0ade6e442cfce840740d1ad04" 889 | 890 | buffer-from@^1.1.0: 891 | version "1.1.1" 892 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 893 | integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== 894 | 895 | bufferpack@0.0.6: 896 | version "0.0.6" 897 | resolved "https://registry.yarnpkg.com/bufferpack/-/bufferpack-0.0.6.tgz#fb3d8738a0e1e4e03bcff99f9a75f9ec18a9d73e" 898 | 899 | builtin-modules@^1.1.1: 900 | version "1.1.1" 901 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 902 | 903 | bytes@3.0.0: 904 | version "3.0.0" 905 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" 906 | 907 | camelcase@^4.1.0: 908 | version "4.1.0" 909 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 910 | 911 | caseless@~0.12.0: 912 | version "0.12.0" 913 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 914 | 915 | chai@^4.1.2: 916 | version "4.1.2" 917 | resolved "https://registry.yarnpkg.com/chai/-/chai-4.1.2.tgz#0f64584ba642f0f2ace2806279f4f06ca23ad73c" 918 | dependencies: 919 | assertion-error "^1.0.1" 920 | check-error "^1.0.1" 921 | deep-eql "^3.0.0" 922 | get-func-name "^2.0.0" 923 | pathval "^1.0.0" 924 | type-detect "^4.0.0" 925 | 926 | chalk@^1.1.3: 927 | version "1.1.3" 928 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 929 | dependencies: 930 | ansi-styles "^2.2.1" 931 | escape-string-regexp "^1.0.2" 932 | has-ansi "^2.0.0" 933 | strip-ansi "^3.0.0" 934 | supports-color "^2.0.0" 935 | 936 | chalk@^2.0.0, chalk@^2.3.0: 937 | version "2.4.1" 938 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e" 939 | dependencies: 940 | ansi-styles "^3.2.1" 941 | escape-string-regexp "^1.0.5" 942 | supports-color "^5.3.0" 943 | 944 | chardet@^0.4.0: 945 | version "0.4.2" 946 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" 947 | 948 | charenc@~0.0.1: 949 | version "0.0.2" 950 | resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667" 951 | 952 | check-error@^1.0.1: 953 | version "1.0.2" 954 | resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82" 955 | 956 | chownr@^1.0.1: 957 | version "1.0.1" 958 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.0.1.tgz#e2a75042a9551908bebd25b8523d5f9769d79181" 959 | 960 | clean-stack@^1.0.0: 961 | version "1.3.0" 962 | resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-1.3.0.tgz#9e821501ae979986c46b1d66d2d432db2fd4ae31" 963 | 964 | cli-cursor@^2.1.0: 965 | version "2.1.0" 966 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 967 | dependencies: 968 | restore-cursor "^2.0.0" 969 | 970 | cli-table@^0.3.1: 971 | version "0.3.1" 972 | resolved "https://registry.yarnpkg.com/cli-table/-/cli-table-0.3.1.tgz#f53b05266a8b1a0b934b3d0821e6e2dc5914ae23" 973 | dependencies: 974 | colors "1.0.3" 975 | 976 | cli-width@^2.0.0: 977 | version "2.2.0" 978 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 979 | 980 | cliui@^4.0.0: 981 | version "4.1.0" 982 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49" 983 | dependencies: 984 | string-width "^2.1.1" 985 | strip-ansi "^4.0.0" 986 | wrap-ansi "^2.0.0" 987 | 988 | co@^4.6.0: 989 | version "4.6.0" 990 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 991 | 992 | code-point-at@^1.0.0: 993 | version "1.1.0" 994 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 995 | 996 | color-convert@^1.9.0: 997 | version "1.9.2" 998 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.2.tgz#49881b8fba67df12a96bdf3f56c0aab9e7913147" 999 | dependencies: 1000 | color-name "1.1.1" 1001 | 1002 | color-name@1.1.1: 1003 | version "1.1.1" 1004 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.1.tgz#4b1415304cf50028ea81643643bd82ea05803689" 1005 | 1006 | colors@1.0.3, colors@1.0.x: 1007 | version "1.0.3" 1008 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b" 1009 | 1010 | colors@^1.1.2: 1011 | version "1.3.0" 1012 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.3.0.tgz#5f20c9fef6945cb1134260aab33bfbdc8295e04e" 1013 | 1014 | combined-stream@1.0.6, combined-stream@~1.0.5: 1015 | version "1.0.6" 1016 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818" 1017 | dependencies: 1018 | delayed-stream "~1.0.0" 1019 | 1020 | commander@^2.12.1, commander@^2.3.0, commander@^2.9.0: 1021 | version "2.15.1" 1022 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.15.1.tgz#df46e867d0fc2aec66a34662b406a9ccafff5b0f" 1023 | 1024 | compress-commons@^1.2.0: 1025 | version "1.2.2" 1026 | resolved "https://registry.yarnpkg.com/compress-commons/-/compress-commons-1.2.2.tgz#524a9f10903f3a813389b0225d27c48bb751890f" 1027 | dependencies: 1028 | buffer-crc32 "^0.2.1" 1029 | crc32-stream "^2.0.0" 1030 | normalize-path "^2.0.0" 1031 | readable-stream "^2.0.0" 1032 | 1033 | concat-map@0.0.1: 1034 | version "0.0.1" 1035 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1036 | 1037 | concat-stream@1.6.2: 1038 | version "1.6.2" 1039 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" 1040 | dependencies: 1041 | buffer-from "^1.0.0" 1042 | inherits "^2.0.3" 1043 | readable-stream "^2.2.2" 1044 | typedarray "^0.0.6" 1045 | 1046 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1047 | version "1.1.0" 1048 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1049 | 1050 | content-disposition@0.5.2: 1051 | version "0.5.2" 1052 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" 1053 | 1054 | content-type@~1.0.4: 1055 | version "1.0.4" 1056 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" 1057 | 1058 | continuation-local-storage@3.x, continuation-local-storage@^3.1.4, continuation-local-storage@^3.1.7: 1059 | version "3.2.1" 1060 | resolved "https://registry.yarnpkg.com/continuation-local-storage/-/continuation-local-storage-3.2.1.tgz#11f613f74e914fe9b34c92ad2d28fe6ae1db7ffb" 1061 | dependencies: 1062 | async-listener "^0.6.0" 1063 | emitter-listener "^1.1.1" 1064 | 1065 | cookie-signature@1.0.6: 1066 | version "1.0.6" 1067 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" 1068 | 1069 | cookie@0.3.1: 1070 | version "0.3.1" 1071 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" 1072 | 1073 | core-js@^1.0.0: 1074 | version "1.2.7" 1075 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 1076 | 1077 | core-js@^2.4.0: 1078 | version "2.5.7" 1079 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.7.tgz#f972608ff0cead68b841a16a932d0b183791814e" 1080 | 1081 | core-js@~2.3.0: 1082 | version "2.3.0" 1083 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.3.0.tgz#fab83fbb0b2d8dc85fa636c4b9d34c75420c6d65" 1084 | 1085 | core-util-is@1.0.2, core-util-is@~1.0.0: 1086 | version "1.0.2" 1087 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1088 | 1089 | crc32-stream@^2.0.0: 1090 | version "2.0.0" 1091 | resolved "https://registry.yarnpkg.com/crc32-stream/-/crc32-stream-2.0.0.tgz#e3cdd3b4df3168dd74e3de3fbbcb7b297fe908f4" 1092 | dependencies: 1093 | crc "^3.4.4" 1094 | readable-stream "^2.0.0" 1095 | 1096 | crc@^3.4.4: 1097 | version "3.5.0" 1098 | resolved "https://registry.yarnpkg.com/crc/-/crc-3.5.0.tgz#98b8ba7d489665ba3979f59b21381374101a1964" 1099 | 1100 | cross-spawn-async@^2.1.1: 1101 | version "2.2.5" 1102 | resolved "https://registry.yarnpkg.com/cross-spawn-async/-/cross-spawn-async-2.2.5.tgz#845ff0c0834a3ded9d160daca6d390906bb288cc" 1103 | dependencies: 1104 | lru-cache "^4.0.0" 1105 | which "^1.2.8" 1106 | 1107 | cross-spawn@^5.0.1: 1108 | version "5.1.0" 1109 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 1110 | dependencies: 1111 | lru-cache "^4.0.1" 1112 | shebang-command "^1.2.0" 1113 | which "^1.2.9" 1114 | 1115 | cross-spawn@^6.0.0: 1116 | version "6.0.5" 1117 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" 1118 | dependencies: 1119 | nice-try "^1.0.4" 1120 | path-key "^2.0.1" 1121 | semver "^5.5.0" 1122 | shebang-command "^1.2.0" 1123 | which "^1.2.9" 1124 | 1125 | crypt@~0.0.1: 1126 | version "0.0.2" 1127 | resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b" 1128 | 1129 | css-parse@^2.0.0: 1130 | version "2.0.0" 1131 | resolved "https://registry.yarnpkg.com/css-parse/-/css-parse-2.0.0.tgz#a468ee667c16d81ccf05c58c38d2a97c780dbfd4" 1132 | integrity sha1-pGjuZnwW2BzPBcWMONKpfHgNv9Q= 1133 | dependencies: 1134 | css "^2.0.0" 1135 | 1136 | css-value@~0.0.1: 1137 | version "0.0.1" 1138 | resolved "https://registry.yarnpkg.com/css-value/-/css-value-0.0.1.tgz#5efd6c2eea5ea1fd6b6ac57ec0427b18452424ea" 1139 | 1140 | css@^2.0.0: 1141 | version "2.2.3" 1142 | resolved "https://registry.yarnpkg.com/css/-/css-2.2.3.tgz#f861f4ba61e79bedc962aa548e5780fd95cbc6be" 1143 | dependencies: 1144 | inherits "^2.0.1" 1145 | source-map "^0.1.38" 1146 | source-map-resolve "^0.5.1" 1147 | urix "^0.1.0" 1148 | 1149 | csv-parser@^1.6.0: 1150 | version "1.12.1" 1151 | resolved "https://registry.yarnpkg.com/csv-parser/-/csv-parser-1.12.1.tgz#391e1ef961b1f9dcb4c7c0f82eb450a1bd916158" 1152 | dependencies: 1153 | buffer-alloc "^1.1.0" 1154 | buffer-from "^1.0.0" 1155 | generate-function "^1.0.1" 1156 | generate-object-property "^1.0.0" 1157 | inherits "^2.0.1" 1158 | minimist "^1.2.0" 1159 | ndjson "^1.4.0" 1160 | 1161 | cucumber-expressions@^5.0.13: 1162 | version "5.0.18" 1163 | resolved "https://registry.yarnpkg.com/cucumber-expressions/-/cucumber-expressions-5.0.18.tgz#6c70779efd3aebc5e9e7853938b1110322429596" 1164 | integrity sha1-bHB3nv0668Xp54U5OLERAyJClZY= 1165 | dependencies: 1166 | becke-ch--regex--s0-0-v1--base--pl--lib "^1.2.0" 1167 | 1168 | cucumber-tag-expressions@^1.1.1: 1169 | version "1.1.1" 1170 | resolved "https://registry.yarnpkg.com/cucumber-tag-expressions/-/cucumber-tag-expressions-1.1.1.tgz#7f5c7b70009bc2b666591bfe64854578bedee85a" 1171 | 1172 | cucumber@^4.1.0, cucumber@^4.2.1: 1173 | version "4.2.1" 1174 | resolved "https://registry.yarnpkg.com/cucumber/-/cucumber-4.2.1.tgz#64cfff6150bbe6b5e94b173470057353d6206719" 1175 | integrity sha512-3gQ0Vv4kSHsvXEFC6b1c+TfLRDzWD1/kU7e5vm8Kh8j35b95k6favan9/4ixcBNqd7UsU1T6FYcawC87+DlNKw== 1176 | dependencies: 1177 | assertion-error-formatter "^2.0.1" 1178 | babel-runtime "^6.11.6" 1179 | bluebird "^3.4.1" 1180 | cli-table "^0.3.1" 1181 | colors "^1.1.2" 1182 | commander "^2.9.0" 1183 | cucumber-expressions "^5.0.13" 1184 | cucumber-tag-expressions "^1.1.1" 1185 | duration "^0.2.0" 1186 | escape-string-regexp "^1.0.5" 1187 | figures "2.0.0" 1188 | gherkin "^5.0.0" 1189 | glob "^7.0.0" 1190 | indent-string "^3.1.0" 1191 | is-generator "^1.0.2" 1192 | is-stream "^1.1.0" 1193 | knuth-shuffle-seeded "^1.0.6" 1194 | lodash "^4.17.4" 1195 | mz "^2.4.0" 1196 | progress "^2.0.0" 1197 | resolve "^1.3.3" 1198 | serialize-error "^2.1.0" 1199 | stack-chain "^2.0.0" 1200 | stacktrace-js "^2.0.0" 1201 | string-argv "0.0.2" 1202 | title-case "^2.1.1" 1203 | util-arity "^1.0.2" 1204 | verror "^1.9.0" 1205 | 1206 | cycle@1.0.x: 1207 | version "1.0.3" 1208 | resolved "https://registry.yarnpkg.com/cycle/-/cycle-1.0.3.tgz#21e80b2be8580f98b468f379430662b046c34ad2" 1209 | 1210 | d@1: 1211 | version "1.0.0" 1212 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 1213 | dependencies: 1214 | es5-ext "^0.10.9" 1215 | 1216 | d@~0.1.1: 1217 | version "0.1.1" 1218 | resolved "https://registry.yarnpkg.com/d/-/d-0.1.1.tgz#da184c535d18d8ee7ba2aa229b914009fae11309" 1219 | dependencies: 1220 | es5-ext "~0.10.2" 1221 | 1222 | dashdash@^1.12.0: 1223 | version "1.14.1" 1224 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1225 | dependencies: 1226 | assert-plus "^1.0.0" 1227 | 1228 | dateformat@^3.0.3: 1229 | version "3.0.3" 1230 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-3.0.3.tgz#a6e37499a4d9a9cf85ef5872044d62901c9889ae" 1231 | 1232 | debug@2.6.9, debug@^2.1.2, debug@^2.2.0, debug@~2.6.3: 1233 | version "2.6.9" 1234 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1235 | dependencies: 1236 | ms "2.0.0" 1237 | 1238 | debug@^3.1.0: 1239 | version "3.1.0" 1240 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 1241 | dependencies: 1242 | ms "2.0.0" 1243 | 1244 | decamelize@^1.1.1: 1245 | version "1.2.0" 1246 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1247 | 1248 | decode-uri-component@^0.2.0: 1249 | version "0.2.0" 1250 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 1251 | 1252 | deep-eql@^3.0.0: 1253 | version "3.0.1" 1254 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-3.0.1.tgz#dfc9404400ad1c8fe023e7da1df1c147c4b444df" 1255 | dependencies: 1256 | type-detect "^4.0.0" 1257 | 1258 | deep-extend@^0.6.0: 1259 | version "0.6.0" 1260 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 1261 | 1262 | deepmerge@~2.0.1: 1263 | version "2.0.1" 1264 | resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-2.0.1.tgz#25c1c24f110fb914f80001b925264dd77f3f4312" 1265 | 1266 | define-properties@^1.1.2: 1267 | version "1.1.2" 1268 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 1269 | dependencies: 1270 | foreach "^2.0.5" 1271 | object-keys "^1.0.8" 1272 | 1273 | delayed-stream@~1.0.0: 1274 | version "1.0.0" 1275 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1276 | 1277 | delegates@^1.0.0: 1278 | version "1.0.0" 1279 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1280 | 1281 | depd@1.1.1: 1282 | version "1.1.1" 1283 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.1.tgz#5783b4e1c459f06fa5ca27f991f3d06e7a310359" 1284 | 1285 | depd@~1.1.1, depd@~1.1.2: 1286 | version "1.1.2" 1287 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" 1288 | 1289 | destroy@~1.0.4: 1290 | version "1.0.4" 1291 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 1292 | 1293 | detect-libc@^1.0.2, detect-libc@^1.0.3: 1294 | version "1.0.3" 1295 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 1296 | 1297 | diff@^3.0.0, diff@^3.1.0, diff@^3.2.0: 1298 | version "3.5.0" 1299 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" 1300 | 1301 | dom-walk@^0.1.0: 1302 | version "0.1.1" 1303 | resolved "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.1.tgz#672226dc74c8f799ad35307df936aba11acd6018" 1304 | 1305 | duplexer@~0.1.1: 1306 | version "0.1.1" 1307 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" 1308 | 1309 | duration@^0.2.0: 1310 | version "0.2.0" 1311 | resolved "https://registry.yarnpkg.com/duration/-/duration-0.2.0.tgz#5f9c4dfaafff655de986112efe25c5978dd85146" 1312 | dependencies: 1313 | d "~0.1.1" 1314 | es5-ext "~0.10.2" 1315 | 1316 | ecc-jsbn@~0.1.1: 1317 | version "0.1.1" 1318 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1319 | dependencies: 1320 | jsbn "~0.1.0" 1321 | 1322 | ee-first@1.1.1: 1323 | version "1.1.1" 1324 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 1325 | 1326 | ejs@~2.5.6: 1327 | version "2.5.9" 1328 | resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.5.9.tgz#7ba254582a560d267437109a68354112475b0ce5" 1329 | 1330 | emitter-listener@^1.1.1: 1331 | version "1.1.1" 1332 | resolved "https://registry.yarnpkg.com/emitter-listener/-/emitter-listener-1.1.1.tgz#e8bbbe8244bc8e0d0b4ef71cd14294c7f241c7ec" 1333 | dependencies: 1334 | shimmer "^1.2.0" 1335 | 1336 | encodeurl@~1.0.2: 1337 | version "1.0.2" 1338 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" 1339 | 1340 | end-of-stream@^1.0.0: 1341 | version "1.4.1" 1342 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.1.tgz#ed29634d19baba463b6ce6b80a37213eab71ec43" 1343 | dependencies: 1344 | once "^1.4.0" 1345 | 1346 | error-stack-parser@^2.0.1: 1347 | version "2.0.2" 1348 | resolved "https://registry.yarnpkg.com/error-stack-parser/-/error-stack-parser-2.0.2.tgz#4ae8dbaa2bf90a8b450707b9149dcabca135520d" 1349 | dependencies: 1350 | stackframe "^1.0.4" 1351 | 1352 | es5-ext@^0.10.35, es5-ext@^0.10.9, es5-ext@~0.10.14, es5-ext@~0.10.2: 1353 | version "0.10.45" 1354 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.45.tgz#0bfdf7b473da5919d5adf3bd25ceb754fccc3653" 1355 | dependencies: 1356 | es6-iterator "~2.0.3" 1357 | es6-symbol "~3.1.1" 1358 | next-tick "1" 1359 | 1360 | es6-error@^4.1.1: 1361 | version "4.1.1" 1362 | resolved "https://registry.yarnpkg.com/es6-error/-/es6-error-4.1.1.tgz#9e3af407459deed47e9a91f9b885a84eb05c561d" 1363 | 1364 | es6-iterator@~2.0.3: 1365 | version "2.0.3" 1366 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" 1367 | dependencies: 1368 | d "1" 1369 | es5-ext "^0.10.35" 1370 | es6-symbol "^3.1.1" 1371 | 1372 | es6-mapify@^1.1.0: 1373 | version "1.1.0" 1374 | resolved "https://registry.yarnpkg.com/es6-mapify/-/es6-mapify-1.1.0.tgz#29cb965c0a5a8fa53414564ac38f02b2a19dc93e" 1375 | dependencies: 1376 | babel-runtime "=5.8.24" 1377 | 1378 | es6-promise@^3.0.2: 1379 | version "3.3.1" 1380 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-3.3.1.tgz#a08cdde84ccdbf34d027a1451bc91d4bcd28a613" 1381 | 1382 | es6-promise@~3.0.2: 1383 | version "3.0.2" 1384 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-3.0.2.tgz#010d5858423a5f118979665f46486a95c6ee2bb6" 1385 | 1386 | es6-symbol@^3.1.1, es6-symbol@~3.1.1: 1387 | version "3.1.1" 1388 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 1389 | dependencies: 1390 | d "1" 1391 | es5-ext "~0.10.14" 1392 | 1393 | escape-html@~1.0.3: 1394 | version "1.0.3" 1395 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 1396 | 1397 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1398 | version "1.0.5" 1399 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1400 | 1401 | esprima@^4.0.0: 1402 | version "4.0.1" 1403 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 1404 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 1405 | 1406 | esutils@^2.0.2: 1407 | version "2.0.2" 1408 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1409 | 1410 | etag@~1.8.1: 1411 | version "1.8.1" 1412 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" 1413 | 1414 | execa@^0.1.1: 1415 | version "0.1.1" 1416 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.1.1.tgz#b09c2a9309bc0ef0501479472db3180f8d4c3edd" 1417 | dependencies: 1418 | cross-spawn-async "^2.1.1" 1419 | object-assign "^4.0.1" 1420 | strip-eof "^1.0.0" 1421 | 1422 | execa@^0.10.0: 1423 | version "0.10.0" 1424 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.10.0.tgz#ff456a8f53f90f8eccc71a96d11bdfc7f082cb50" 1425 | dependencies: 1426 | cross-spawn "^6.0.0" 1427 | get-stream "^3.0.0" 1428 | is-stream "^1.1.0" 1429 | npm-run-path "^2.0.0" 1430 | p-finally "^1.0.0" 1431 | signal-exit "^3.0.0" 1432 | strip-eof "^1.0.0" 1433 | 1434 | execa@^0.7.0: 1435 | version "0.7.0" 1436 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1437 | dependencies: 1438 | cross-spawn "^5.0.1" 1439 | get-stream "^3.0.0" 1440 | is-stream "^1.1.0" 1441 | npm-run-path "^2.0.0" 1442 | p-finally "^1.0.0" 1443 | signal-exit "^3.0.0" 1444 | strip-eof "^1.0.0" 1445 | 1446 | execa@^0.9.0: 1447 | version "0.9.0" 1448 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.9.0.tgz#adb7ce62cf985071f60580deb4a88b9e34712d01" 1449 | dependencies: 1450 | cross-spawn "^5.0.1" 1451 | get-stream "^3.0.0" 1452 | is-stream "^1.1.0" 1453 | npm-run-path "^2.0.0" 1454 | p-finally "^1.0.0" 1455 | signal-exit "^3.0.0" 1456 | strip-eof "^1.0.0" 1457 | 1458 | exif-parser@^0.1.9: 1459 | version "0.1.12" 1460 | resolved "https://registry.yarnpkg.com/exif-parser/-/exif-parser-0.1.12.tgz#58a9d2d72c02c1f6f02a0ef4a9166272b7760922" 1461 | 1462 | express@^4.16.2: 1463 | version "4.16.3" 1464 | resolved "https://registry.yarnpkg.com/express/-/express-4.16.3.tgz#6af8a502350db3246ecc4becf6b5a34d22f7ed53" 1465 | dependencies: 1466 | accepts "~1.3.5" 1467 | array-flatten "1.1.1" 1468 | body-parser "1.18.2" 1469 | content-disposition "0.5.2" 1470 | content-type "~1.0.4" 1471 | cookie "0.3.1" 1472 | cookie-signature "1.0.6" 1473 | debug "2.6.9" 1474 | depd "~1.1.2" 1475 | encodeurl "~1.0.2" 1476 | escape-html "~1.0.3" 1477 | etag "~1.8.1" 1478 | finalhandler "1.1.1" 1479 | fresh "0.5.2" 1480 | merge-descriptors "1.0.1" 1481 | methods "~1.1.2" 1482 | on-finished "~2.3.0" 1483 | parseurl "~1.3.2" 1484 | path-to-regexp "0.1.7" 1485 | proxy-addr "~2.0.3" 1486 | qs "6.5.1" 1487 | range-parser "~1.2.0" 1488 | safe-buffer "5.1.1" 1489 | send "0.16.2" 1490 | serve-static "1.13.2" 1491 | setprototypeof "1.1.0" 1492 | statuses "~1.4.0" 1493 | type-is "~1.6.16" 1494 | utils-merge "1.0.1" 1495 | vary "~1.1.2" 1496 | 1497 | extend@~3.0.1: 1498 | version "3.0.1" 1499 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1500 | 1501 | external-editor@^2.0.4: 1502 | version "2.2.0" 1503 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5" 1504 | dependencies: 1505 | chardet "^0.4.0" 1506 | iconv-lite "^0.4.17" 1507 | tmp "^0.0.33" 1508 | 1509 | extract-zip@^1.6.0: 1510 | version "1.6.7" 1511 | resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-1.6.7.tgz#a840b4b8af6403264c8db57f4f1a74333ef81fe9" 1512 | dependencies: 1513 | concat-stream "1.6.2" 1514 | debug "2.6.9" 1515 | mkdirp "0.5.1" 1516 | yauzl "2.4.1" 1517 | 1518 | extsprintf@1.3.0: 1519 | version "1.3.0" 1520 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1521 | 1522 | extsprintf@^1.2.0: 1523 | version "1.4.0" 1524 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 1525 | 1526 | eyes@0.1.x: 1527 | version "0.1.8" 1528 | resolved "https://registry.yarnpkg.com/eyes/-/eyes-0.1.8.tgz#62cf120234c683785d902348a800ef3e0cc20bc0" 1529 | 1530 | fast-deep-equal@^1.0.0: 1531 | version "1.1.0" 1532 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" 1533 | 1534 | fast-json-stable-stringify@^2.0.0: 1535 | version "2.0.0" 1536 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1537 | 1538 | fd-slicer@~1.0.1: 1539 | version "1.0.1" 1540 | resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.0.1.tgz#8b5bcbd9ec327c5041bf9ab023fd6750f1177e65" 1541 | dependencies: 1542 | pend "~1.2.0" 1543 | 1544 | fd-slicer@~1.1.0: 1545 | version "1.1.0" 1546 | resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz#25c7c89cb1f9077f8891bbe61d8f390eae256f1e" 1547 | dependencies: 1548 | pend "~1.2.0" 1549 | 1550 | fibers@^3.0.0: 1551 | version "3.1.1" 1552 | resolved "https://registry.yarnpkg.com/fibers/-/fibers-3.1.1.tgz#0238902ca938347bd779523692fbeefdf4f688ab" 1553 | integrity sha512-dl3Ukt08rHVQfY8xGD0ODwyjwrRALtaghuqGH2jByYX1wpY+nAnRQjJ6Dbqq0DnVgNVQ9yibObzbF4IlPyiwPw== 1554 | dependencies: 1555 | detect-libc "^1.0.3" 1556 | 1557 | figures@2.0.0, figures@^2.0.0: 1558 | version "2.0.0" 1559 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1560 | dependencies: 1561 | escape-string-regexp "^1.0.5" 1562 | 1563 | file-type@^3.1.0: 1564 | version "3.9.0" 1565 | resolved "https://registry.yarnpkg.com/file-type/-/file-type-3.9.0.tgz#257a078384d1db8087bc449d107d52a52672b9e9" 1566 | 1567 | file-type@^7.7.1: 1568 | version "7.7.1" 1569 | resolved "https://registry.yarnpkg.com/file-type/-/file-type-7.7.1.tgz#91c2f5edb8ce70688b9b68a90d931bbb6cb21f65" 1570 | 1571 | finalhandler@1.1.1: 1572 | version "1.1.1" 1573 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.1.tgz#eebf4ed840079c83f4249038c9d703008301b105" 1574 | dependencies: 1575 | debug "2.6.9" 1576 | encodeurl "~1.0.2" 1577 | escape-html "~1.0.3" 1578 | on-finished "~2.3.0" 1579 | parseurl "~1.3.2" 1580 | statuses "~1.4.0" 1581 | unpipe "~1.0.0" 1582 | 1583 | find-up@^2.1.0: 1584 | version "2.1.0" 1585 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1586 | dependencies: 1587 | locate-path "^2.0.0" 1588 | 1589 | fkill@^5.0.0: 1590 | version "5.3.0" 1591 | resolved "https://registry.yarnpkg.com/fkill/-/fkill-5.3.0.tgz#317248aa3efdb1b26b9bf5dc3a198ac3ed27b860" 1592 | dependencies: 1593 | aggregate-error "^1.0.0" 1594 | arrify "^1.0.0" 1595 | execa "^0.10.0" 1596 | pid-from-port "^1.0.0" 1597 | process-exists "^3.1.0" 1598 | taskkill "^2.0.0" 1599 | 1600 | for-each@^0.3.2: 1601 | version "0.3.3" 1602 | resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" 1603 | dependencies: 1604 | is-callable "^1.1.3" 1605 | 1606 | foreach@^2.0.5: 1607 | version "2.0.5" 1608 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1609 | 1610 | forever-agent@~0.6.1: 1611 | version "0.6.1" 1612 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1613 | 1614 | form-data@~2.3.1: 1615 | version "2.3.2" 1616 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.2.tgz#4970498be604c20c005d4f5c23aecd21d6b49099" 1617 | dependencies: 1618 | asynckit "^0.4.0" 1619 | combined-stream "1.0.6" 1620 | mime-types "^2.1.12" 1621 | 1622 | forwarded@~0.1.2: 1623 | version "0.1.2" 1624 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84" 1625 | 1626 | fresh@0.5.2: 1627 | version "0.5.2" 1628 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" 1629 | 1630 | from2@^2.1.1: 1631 | version "2.3.0" 1632 | resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af" 1633 | dependencies: 1634 | inherits "^2.0.1" 1635 | readable-stream "^2.0.0" 1636 | 1637 | fs-constants@^1.0.0: 1638 | version "1.0.0" 1639 | resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" 1640 | 1641 | fs-extra@^6.0.1: 1642 | version "6.0.1" 1643 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-6.0.1.tgz#8abc128f7946e310135ddc93b98bddb410e7a34b" 1644 | dependencies: 1645 | graceful-fs "^4.1.2" 1646 | jsonfile "^4.0.0" 1647 | universalify "^0.1.0" 1648 | 1649 | fs-minipass@^1.2.5: 1650 | version "1.2.5" 1651 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d" 1652 | dependencies: 1653 | minipass "^2.2.1" 1654 | 1655 | fs.realpath@^1.0.0: 1656 | version "1.0.0" 1657 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1658 | 1659 | fsevents@1.x: 1660 | version "1.2.4" 1661 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.4.tgz#f41dcb1af2582af3692da36fc55cbd8e1041c426" 1662 | dependencies: 1663 | nan "^2.9.2" 1664 | node-pre-gyp "^0.10.0" 1665 | 1666 | ftp-response-parser@^1.0.1: 1667 | version "1.0.1" 1668 | resolved "https://registry.yarnpkg.com/ftp-response-parser/-/ftp-response-parser-1.0.1.tgz#3b9d33f8edd5fb8e4700b8f778c462e5b1581f89" 1669 | dependencies: 1670 | readable-stream "^1.0.31" 1671 | 1672 | function-bind@^1.1.1: 1673 | version "1.1.1" 1674 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1675 | 1676 | gauge@~2.7.3: 1677 | version "2.7.4" 1678 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1679 | dependencies: 1680 | aproba "^1.0.3" 1681 | console-control-strings "^1.0.0" 1682 | has-unicode "^2.0.0" 1683 | object-assign "^4.1.0" 1684 | signal-exit "^3.0.0" 1685 | string-width "^1.0.1" 1686 | strip-ansi "^3.0.1" 1687 | wide-align "^1.1.0" 1688 | 1689 | gaze@~1.1.2: 1690 | version "1.1.3" 1691 | resolved "https://registry.yarnpkg.com/gaze/-/gaze-1.1.3.tgz#c441733e13b927ac8c0ff0b4c3b033f28812924a" 1692 | dependencies: 1693 | globule "^1.0.0" 1694 | 1695 | generate-function@^1.0.1: 1696 | version "1.1.0" 1697 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-1.1.0.tgz#54c21b080192b16d9877779c5bb81666e772365f" 1698 | 1699 | generate-object-property@^1.0.0: 1700 | version "1.2.0" 1701 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1702 | dependencies: 1703 | is-property "^1.0.0" 1704 | 1705 | get-caller-file@^1.0.1: 1706 | version "1.0.2" 1707 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1708 | 1709 | get-func-name@^2.0.0: 1710 | version "2.0.0" 1711 | resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41" 1712 | 1713 | get-stream@^2.1.0: 1714 | version "2.3.1" 1715 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-2.3.1.tgz#5f38f93f346009666ee0150a054167f91bdd95de" 1716 | dependencies: 1717 | object-assign "^4.0.1" 1718 | pinkie-promise "^2.0.0" 1719 | 1720 | get-stream@^3.0.0: 1721 | version "3.0.0" 1722 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1723 | 1724 | getpass@^0.1.1: 1725 | version "0.1.7" 1726 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1727 | dependencies: 1728 | assert-plus "^1.0.0" 1729 | 1730 | gherkin@^5.0.0: 1731 | version "5.1.0" 1732 | resolved "https://registry.yarnpkg.com/gherkin/-/gherkin-5.1.0.tgz#684bbb03add24eaf7bdf544f58033eb28fb3c6d5" 1733 | 1734 | glob@^6.0.1: 1735 | version "6.0.4" 1736 | resolved "https://registry.yarnpkg.com/glob/-/glob-6.0.4.tgz#0f08860f6a155127b2fadd4f9ce24b1aab6e4d22" 1737 | dependencies: 1738 | inflight "^1.0.4" 1739 | inherits "2" 1740 | minimatch "2 || 3" 1741 | once "^1.3.0" 1742 | path-is-absolute "^1.0.0" 1743 | 1744 | glob@^7.0.0, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2, glob@~7.1.1: 1745 | version "7.1.2" 1746 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1747 | dependencies: 1748 | fs.realpath "^1.0.0" 1749 | inflight "^1.0.4" 1750 | inherits "2" 1751 | minimatch "^3.0.4" 1752 | once "^1.3.0" 1753 | path-is-absolute "^1.0.0" 1754 | 1755 | global@~4.3.0: 1756 | version "4.3.2" 1757 | resolved "https://registry.yarnpkg.com/global/-/global-4.3.2.tgz#e76989268a6c74c38908b1305b10fc0e394e9d0f" 1758 | dependencies: 1759 | min-document "^2.19.0" 1760 | process "~0.5.1" 1761 | 1762 | globule@^1.0.0: 1763 | version "1.2.1" 1764 | resolved "https://registry.yarnpkg.com/globule/-/globule-1.2.1.tgz#5dffb1b191f22d20797a9369b49eab4e9839696d" 1765 | dependencies: 1766 | glob "~7.1.1" 1767 | lodash "~4.17.10" 1768 | minimatch "~3.0.2" 1769 | 1770 | graceful-fs@^4.1.0, graceful-fs@^4.1.2, graceful-fs@^4.1.6: 1771 | version "4.1.11" 1772 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1773 | 1774 | grapheme-splitter@^1.0.2: 1775 | version "1.0.4" 1776 | resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e" 1777 | integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== 1778 | 1779 | har-schema@^2.0.0: 1780 | version "2.0.0" 1781 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 1782 | 1783 | har-validator@~5.0.3: 1784 | version "5.0.3" 1785 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" 1786 | dependencies: 1787 | ajv "^5.1.0" 1788 | har-schema "^2.0.0" 1789 | 1790 | has-ansi@^2.0.0: 1791 | version "2.0.0" 1792 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1793 | dependencies: 1794 | ansi-regex "^2.0.0" 1795 | 1796 | has-flag@^2.0.0: 1797 | version "2.0.0" 1798 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1799 | 1800 | has-flag@^3.0.0: 1801 | version "3.0.0" 1802 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1803 | 1804 | has-symbols@^1.0.0: 1805 | version "1.0.0" 1806 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" 1807 | 1808 | has-unicode@^2.0.0: 1809 | version "2.0.1" 1810 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1811 | 1812 | heapdump@0.x: 1813 | version "0.3.9" 1814 | resolved "https://registry.yarnpkg.com/heapdump/-/heapdump-0.3.9.tgz#03c74eb0df5d67be0982e83429ba9c9d2b3b7f78" 1815 | 1816 | http-errors@1.6.2: 1817 | version "1.6.2" 1818 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.2.tgz#0a002cc85707192a7e7946ceedc11155f60ec736" 1819 | dependencies: 1820 | depd "1.1.1" 1821 | inherits "2.0.3" 1822 | setprototypeof "1.0.3" 1823 | statuses ">= 1.3.1 < 2" 1824 | 1825 | http-errors@1.6.3, http-errors@~1.6.2, http-errors@~1.6.3: 1826 | version "1.6.3" 1827 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d" 1828 | dependencies: 1829 | depd "~1.1.2" 1830 | inherits "2.0.3" 1831 | setprototypeof "1.1.0" 1832 | statuses ">= 1.4.0 < 2" 1833 | 1834 | http-signature@~1.2.0: 1835 | version "1.2.0" 1836 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 1837 | dependencies: 1838 | assert-plus "^1.0.0" 1839 | jsprim "^1.2.2" 1840 | sshpk "^1.7.0" 1841 | 1842 | http-status-codes@^1.3.0: 1843 | version "1.3.0" 1844 | resolved "https://registry.yarnpkg.com/http-status-codes/-/http-status-codes-1.3.0.tgz#9cd0e71391773d0671b489d41cbc5094aa4163b6" 1845 | 1846 | humanize-duration@~3.15.0: 1847 | version "3.15.3" 1848 | resolved "https://registry.yarnpkg.com/humanize-duration/-/humanize-duration-3.15.3.tgz#600a939bd9d9a16b696e907b3fc08d1a4f15e8c9" 1849 | integrity sha512-BMz6w8p3NVa6QP9wDtqUkXfwgBqDaZ5z/np0EYdoWrLqL849Onp6JWMXMhbHtuvO9jUThLN5H1ThRQ8dUWnYkA== 1850 | 1851 | iconv-lite@0.4.19: 1852 | version "0.4.19" 1853 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 1854 | 1855 | iconv-lite@0.4.23, iconv-lite@^0.4.17, iconv-lite@^0.4.4: 1856 | version "0.4.23" 1857 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.23.tgz#297871f63be507adcfbfca715d0cd0eed84e9a63" 1858 | dependencies: 1859 | safer-buffer ">= 2.1.2 < 3" 1860 | 1861 | ignore-walk@^3.0.1: 1862 | version "3.0.1" 1863 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" 1864 | dependencies: 1865 | minimatch "^3.0.4" 1866 | 1867 | immediate@~3.0.5: 1868 | version "3.0.6" 1869 | resolved "https://registry.yarnpkg.com/immediate/-/immediate-3.0.6.tgz#9db1dbd0faf8de6fbe0f5dd5e56bb606280de69b" 1870 | 1871 | indent-string@^3.0.0, indent-string@^3.1.0: 1872 | version "3.2.0" 1873 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" 1874 | 1875 | inflight@^1.0.4: 1876 | version "1.0.6" 1877 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1878 | dependencies: 1879 | once "^1.3.0" 1880 | wrappy "1" 1881 | 1882 | inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.1, inherits@~2.0.3: 1883 | version "2.0.3" 1884 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1885 | 1886 | ini@~1.3.0: 1887 | version "1.3.5" 1888 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1889 | 1890 | inquirer@~3.3.0: 1891 | version "3.3.0" 1892 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" 1893 | dependencies: 1894 | ansi-escapes "^3.0.0" 1895 | chalk "^2.0.0" 1896 | cli-cursor "^2.1.0" 1897 | cli-width "^2.0.0" 1898 | external-editor "^2.0.4" 1899 | figures "^2.0.0" 1900 | lodash "^4.3.0" 1901 | mute-stream "0.0.7" 1902 | run-async "^2.2.0" 1903 | rx-lite "^4.0.8" 1904 | rx-lite-aggregates "^4.0.8" 1905 | string-width "^2.1.0" 1906 | strip-ansi "^4.0.0" 1907 | through "^2.3.6" 1908 | 1909 | interpret@^1.0.0: 1910 | version "1.1.0" 1911 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.1.0.tgz#7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614" 1912 | 1913 | into-stream@^2.0.0: 1914 | version "2.0.1" 1915 | resolved "https://registry.yarnpkg.com/into-stream/-/into-stream-2.0.1.tgz#db9b003694453eae091d8a5c84cc11507b781d31" 1916 | dependencies: 1917 | from2 "^2.1.1" 1918 | 1919 | invert-kv@^1.0.0: 1920 | version "1.0.0" 1921 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1922 | 1923 | io.appium.settings@^2.4.0: 1924 | version "2.4.0" 1925 | resolved "https://registry.yarnpkg.com/io.appium.settings/-/io.appium.settings-2.4.0.tgz#5369d5056dc6263860791bcbaf74f0cbcbbec32b" 1926 | 1927 | ip-regex@^1.0.1: 1928 | version "1.0.3" 1929 | resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-1.0.3.tgz#dc589076f659f419c222039a33316f1c7387effd" 1930 | 1931 | ipaddr.js@1.6.0: 1932 | version "1.6.0" 1933 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.6.0.tgz#e3fa357b773da619f26e95f049d055c72796f86b" 1934 | 1935 | is-buffer@~1.1.1: 1936 | version "1.1.6" 1937 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1938 | 1939 | is-callable@^1.1.3: 1940 | version "1.1.3" 1941 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 1942 | 1943 | is-extglob@^2.1.1: 1944 | version "2.1.1" 1945 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1946 | 1947 | is-fullwidth-code-point@^1.0.0: 1948 | version "1.0.0" 1949 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1950 | dependencies: 1951 | number-is-nan "^1.0.0" 1952 | 1953 | is-fullwidth-code-point@^2.0.0: 1954 | version "2.0.0" 1955 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1956 | 1957 | is-function@^1.0.1: 1958 | version "1.0.1" 1959 | resolved "https://registry.yarnpkg.com/is-function/-/is-function-1.0.1.tgz#12cfb98b65b57dd3d193a3121f5f6e2f437602b5" 1960 | 1961 | is-generator@^1.0.2: 1962 | version "1.0.3" 1963 | resolved "https://registry.yarnpkg.com/is-generator/-/is-generator-1.0.3.tgz#c14c21057ed36e328db80347966c693f886389f3" 1964 | 1965 | is-glob@^4.0.0: 1966 | version "4.0.0" 1967 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.0.tgz#9521c76845cc2610a85203ddf080a958c2ffabc0" 1968 | dependencies: 1969 | is-extglob "^2.1.1" 1970 | 1971 | is-number-like@^1.0.3: 1972 | version "1.0.8" 1973 | resolved "https://registry.yarnpkg.com/is-number-like/-/is-number-like-1.0.8.tgz#2e129620b50891042e44e9bbbb30593e75cfbbe3" 1974 | dependencies: 1975 | lodash.isfinite "^3.3.2" 1976 | 1977 | is-os@^1.0.0: 1978 | version "1.0.1" 1979 | resolved "https://registry.yarnpkg.com/is-os/-/is-os-1.0.1.tgz#b8710d1ad0def5192df43f759f174060ba6148e7" 1980 | 1981 | is-promise@^2.1.0: 1982 | version "2.1.0" 1983 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1984 | 1985 | is-property@^1.0.0: 1986 | version "1.0.2" 1987 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1988 | 1989 | is-stream@^1.1.0: 1990 | version "1.1.0" 1991 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1992 | 1993 | is-typedarray@~1.0.0: 1994 | version "1.0.0" 1995 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1996 | 1997 | isarray@0.0.1: 1998 | version "0.0.1" 1999 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 2000 | 2001 | isarray@~1.0.0: 2002 | version "1.0.0" 2003 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2004 | 2005 | isexe@^2.0.0: 2006 | version "2.0.0" 2007 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2008 | 2009 | isstream@0.1.x, isstream@~0.1.2: 2010 | version "0.1.2" 2011 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2012 | 2013 | jimp@^0.2.24: 2014 | version "0.2.28" 2015 | resolved "https://registry.yarnpkg.com/jimp/-/jimp-0.2.28.tgz#dd529a937190f42957a7937d1acc3a7762996ea2" 2016 | dependencies: 2017 | bignumber.js "^2.1.0" 2018 | bmp-js "0.0.3" 2019 | es6-promise "^3.0.2" 2020 | exif-parser "^0.1.9" 2021 | file-type "^3.1.0" 2022 | jpeg-js "^0.2.0" 2023 | load-bmfont "^1.2.3" 2024 | mime "^1.3.4" 2025 | mkdirp "0.5.1" 2026 | pixelmatch "^4.0.0" 2027 | pngjs "^3.0.0" 2028 | read-chunk "^1.0.1" 2029 | request "^2.65.0" 2030 | stream-to-buffer "^0.1.0" 2031 | tinycolor2 "^1.1.2" 2032 | url-regex "^3.0.0" 2033 | 2034 | jpeg-js@^0.2.0: 2035 | version "0.2.0" 2036 | resolved "https://registry.yarnpkg.com/jpeg-js/-/jpeg-js-0.2.0.tgz#53e448ec9d263e683266467e9442d2c5a2ef5482" 2037 | 2038 | js-tokens@^3.0.2: 2039 | version "3.0.2" 2040 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 2041 | 2042 | js-yaml@^3.7.0: 2043 | version "3.13.1" 2044 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" 2045 | integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw== 2046 | dependencies: 2047 | argparse "^1.0.7" 2048 | esprima "^4.0.0" 2049 | 2050 | js2xmlparser2@^0.2.0: 2051 | version "0.2.0" 2052 | resolved "https://registry.yarnpkg.com/js2xmlparser2/-/js2xmlparser2-0.2.0.tgz#a7ca2089b83d02331d631892dd6743864125033f" 2053 | 2054 | js2xmlparser@^3.0.0: 2055 | version "3.0.0" 2056 | resolved "https://registry.yarnpkg.com/js2xmlparser/-/js2xmlparser-3.0.0.tgz#3fb60eaa089c5440f9319f51760ccd07e2499733" 2057 | dependencies: 2058 | xmlcreate "^1.0.1" 2059 | 2060 | jsbn@~0.1.0: 2061 | version "0.1.1" 2062 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2063 | 2064 | jsftp@^2.1.2: 2065 | version "2.1.3" 2066 | resolved "https://registry.yarnpkg.com/jsftp/-/jsftp-2.1.3.tgz#3a0936b58d170441a0e74f27d34b53dda8dea9c1" 2067 | dependencies: 2068 | debug "^3.1.0" 2069 | ftp-response-parser "^1.0.1" 2070 | once "^1.4.0" 2071 | parse-listing "^1.1.3" 2072 | stream-combiner "^0.2.2" 2073 | unorm "^1.4.1" 2074 | 2075 | json-schema-traverse@^0.3.0: 2076 | version "0.3.1" 2077 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 2078 | 2079 | json-schema@0.2.3: 2080 | version "0.2.3" 2081 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2082 | 2083 | json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1: 2084 | version "5.0.1" 2085 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2086 | 2087 | jsonfile@^4.0.0: 2088 | version "4.0.0" 2089 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" 2090 | optionalDependencies: 2091 | graceful-fs "^4.1.6" 2092 | 2093 | jsonify@~0.0.0: 2094 | version "0.0.0" 2095 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2096 | 2097 | jsprim@^1.2.2: 2098 | version "1.4.1" 2099 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 2100 | dependencies: 2101 | assert-plus "1.0.0" 2102 | extsprintf "1.3.0" 2103 | json-schema "0.2.3" 2104 | verror "1.10.0" 2105 | 2106 | jszip@^3.1.3: 2107 | version "3.1.5" 2108 | resolved "https://registry.yarnpkg.com/jszip/-/jszip-3.1.5.tgz#e3c2a6c6d706ac6e603314036d43cd40beefdf37" 2109 | dependencies: 2110 | core-js "~2.3.0" 2111 | es6-promise "~3.0.2" 2112 | lie "~3.1.0" 2113 | pako "~1.0.2" 2114 | readable-stream "~2.0.6" 2115 | 2116 | knuth-shuffle-seeded@^1.0.6: 2117 | version "1.0.6" 2118 | resolved "https://registry.yarnpkg.com/knuth-shuffle-seeded/-/knuth-shuffle-seeded-1.0.6.tgz#01f1b65733aa7540ee08d8b0174164d22081e4e1" 2119 | integrity sha1-AfG2VzOqdUDuCNiwF0Fk0iCB5OE= 2120 | dependencies: 2121 | seed-random "~2.2.0" 2122 | 2123 | lazystream@^1.0.0: 2124 | version "1.0.0" 2125 | resolved "https://registry.yarnpkg.com/lazystream/-/lazystream-1.0.0.tgz#f6995fe0f820392f61396be89462407bb77168e4" 2126 | dependencies: 2127 | readable-stream "^2.0.5" 2128 | 2129 | lcid@^1.0.0: 2130 | version "1.0.0" 2131 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2132 | dependencies: 2133 | invert-kv "^1.0.0" 2134 | 2135 | lie@~3.1.0: 2136 | version "3.1.1" 2137 | resolved "https://registry.yarnpkg.com/lie/-/lie-3.1.1.tgz#9a436b2cc7746ca59de7a41fa469b3efb76bd87e" 2138 | dependencies: 2139 | immediate "~3.0.5" 2140 | 2141 | load-bmfont@^1.2.3: 2142 | version "1.3.0" 2143 | resolved "https://registry.yarnpkg.com/load-bmfont/-/load-bmfont-1.3.0.tgz#bb7e7c710de6bcafcb13cb3b8c81e0c0131ecbc9" 2144 | dependencies: 2145 | buffer-equal "0.0.1" 2146 | mime "^1.3.4" 2147 | parse-bmfont-ascii "^1.0.3" 2148 | parse-bmfont-binary "^1.0.5" 2149 | parse-bmfont-xml "^1.1.0" 2150 | xhr "^2.0.1" 2151 | xtend "^4.0.0" 2152 | 2153 | locate-path@^2.0.0: 2154 | version "2.0.0" 2155 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2156 | dependencies: 2157 | p-locate "^2.0.0" 2158 | path-exists "^3.0.0" 2159 | 2160 | lodash.isfinite@^3.3.2: 2161 | version "3.3.2" 2162 | resolved "https://registry.yarnpkg.com/lodash.isfinite/-/lodash.isfinite-3.3.2.tgz#fb89b65a9a80281833f0b7478b3a5104f898ebb3" 2163 | 2164 | lodash@4.x, lodash@^4.0.0, lodash@^4.13.1, lodash@^4.17.10, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.2.1, lodash@^4.3.0, lodash@^4.6.1, lodash@^4.8.0, lodash@~4.17.10: 2165 | version "4.17.14" 2166 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.14.tgz#9ce487ae66c96254fe20b599f21b6816028078ba" 2167 | integrity sha512-mmKYbW3GLuJeX+iGP+Y7Gp1AiGHGbXHCOh/jZmrawMmsE7MS4znI3RL2FsjbqOyMayHInjOeykW7PEajUk1/xw== 2168 | 2169 | lower-case@^1.1.1: 2170 | version "1.1.4" 2171 | resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-1.1.4.tgz#9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac" 2172 | 2173 | lru-cache@^4.0.0, lru-cache@^4.0.1: 2174 | version "4.1.3" 2175 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.3.tgz#a1175cf3496dfc8436c156c334b4955992bce69c" 2176 | dependencies: 2177 | pseudomap "^1.0.2" 2178 | yallist "^2.1.2" 2179 | 2180 | make-error@^1.1.1: 2181 | version "1.3.4" 2182 | resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.4.tgz#19978ed575f9e9545d2ff8c13e33b5d18a67d535" 2183 | 2184 | md5-file@^4.0.0: 2185 | version "4.0.0" 2186 | resolved "https://registry.yarnpkg.com/md5-file/-/md5-file-4.0.0.tgz#f3f7ba1e2dd1144d5bf1de698d0e5f44a4409584" 2187 | 2188 | md5@^2.2.1: 2189 | version "2.2.1" 2190 | resolved "https://registry.yarnpkg.com/md5/-/md5-2.2.1.tgz#53ab38d5fe3c8891ba465329ea23fac0540126f9" 2191 | dependencies: 2192 | charenc "~0.0.1" 2193 | crypt "~0.0.1" 2194 | is-buffer "~1.1.1" 2195 | 2196 | media-typer@0.3.0: 2197 | version "0.3.0" 2198 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 2199 | 2200 | mem@^1.1.0: 2201 | version "1.1.0" 2202 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 2203 | dependencies: 2204 | mimic-fn "^1.0.0" 2205 | 2206 | merge-descriptors@1.0.1: 2207 | version "1.0.1" 2208 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" 2209 | 2210 | method-override@^2.3.10: 2211 | version "2.3.10" 2212 | resolved "https://registry.yarnpkg.com/method-override/-/method-override-2.3.10.tgz#e3daf8d5dee10dd2dce7d4ae88d62bbee77476b4" 2213 | dependencies: 2214 | debug "2.6.9" 2215 | methods "~1.1.2" 2216 | parseurl "~1.3.2" 2217 | vary "~1.1.2" 2218 | 2219 | methods@~1.1.2: 2220 | version "1.1.2" 2221 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 2222 | 2223 | mime-db@~1.33.0: 2224 | version "1.33.0" 2225 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db" 2226 | 2227 | mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.18: 2228 | version "2.1.18" 2229 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8" 2230 | dependencies: 2231 | mime-db "~1.33.0" 2232 | 2233 | mime@1.4.1: 2234 | version "1.4.1" 2235 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.4.1.tgz#121f9ebc49e3766f311a76e1fa1c8003c4b03aa6" 2236 | 2237 | mime@^1.3.4: 2238 | version "1.6.0" 2239 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" 2240 | 2241 | mime@^2.3.1: 2242 | version "2.3.1" 2243 | resolved "https://registry.yarnpkg.com/mime/-/mime-2.3.1.tgz#b1621c54d63b97c47d3cfe7f7215f7d64517c369" 2244 | 2245 | mimic-fn@^1.0.0: 2246 | version "1.2.0" 2247 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 2248 | 2249 | min-document@^2.19.0: 2250 | version "2.19.0" 2251 | resolved "https://registry.yarnpkg.com/min-document/-/min-document-2.19.0.tgz#7bd282e3f5842ed295bb748cdd9f1ffa2c824685" 2252 | dependencies: 2253 | dom-walk "^0.1.0" 2254 | 2255 | "minimatch@2 || 3", minimatch@^3.0.4, minimatch@~3.0.2: 2256 | version "3.0.4" 2257 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2258 | dependencies: 2259 | brace-expansion "^1.1.7" 2260 | 2261 | minimist@0.0.8: 2262 | version "0.0.8" 2263 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2264 | 2265 | minimist@^1.2.0: 2266 | version "1.2.0" 2267 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2268 | 2269 | minimist@~0.0.1: 2270 | version "0.0.10" 2271 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 2272 | 2273 | minipass@^2.2.1, minipass@^2.3.3: 2274 | version "2.3.3" 2275 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.3.tgz#a7dcc8b7b833f5d368759cce544dccb55f50f233" 2276 | dependencies: 2277 | safe-buffer "^5.1.2" 2278 | yallist "^3.0.0" 2279 | 2280 | minizlib@^1.1.0: 2281 | version "1.1.0" 2282 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.1.0.tgz#11e13658ce46bc3a70a267aac58359d1e0c29ceb" 2283 | dependencies: 2284 | minipass "^2.2.1" 2285 | 2286 | mkdirp@0.5.1, mkdirp@0.5.x, mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.1: 2287 | version "0.5.1" 2288 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2289 | dependencies: 2290 | minimist "0.0.8" 2291 | 2292 | mockery@~2.1.0: 2293 | version "2.1.0" 2294 | resolved "https://registry.yarnpkg.com/mockery/-/mockery-2.1.0.tgz#5b0aef1ff564f0f8139445e165536c7909713470" 2295 | 2296 | morgan@^1.9.0: 2297 | version "1.9.0" 2298 | resolved "https://registry.yarnpkg.com/morgan/-/morgan-1.9.0.tgz#d01fa6c65859b76fcf31b3cb53a3821a311d8051" 2299 | dependencies: 2300 | basic-auth "~2.0.0" 2301 | debug "2.6.9" 2302 | depd "~1.1.1" 2303 | on-finished "~2.3.0" 2304 | on-headers "~1.0.1" 2305 | 2306 | ms@2.0.0: 2307 | version "2.0.0" 2308 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2309 | 2310 | ms@2.1.1: 2311 | version "2.1.1" 2312 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" 2313 | 2314 | mute-stream@0.0.7: 2315 | version "0.0.7" 2316 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 2317 | 2318 | mv@^2.1.1: 2319 | version "2.1.1" 2320 | resolved "https://registry.yarnpkg.com/mv/-/mv-2.1.1.tgz#ae6ce0d6f6d5e0a4f7d893798d03c1ea9559b6a2" 2321 | dependencies: 2322 | mkdirp "~0.5.1" 2323 | ncp "~2.0.0" 2324 | rimraf "~2.4.0" 2325 | 2326 | mz@^2.4.0: 2327 | version "2.7.0" 2328 | resolved "https://registry.yarnpkg.com/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32" 2329 | dependencies: 2330 | any-promise "^1.0.0" 2331 | object-assign "^4.0.1" 2332 | thenify-all "^1.0.0" 2333 | 2334 | nan@^2.9.2: 2335 | version "2.10.0" 2336 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.10.0.tgz#96d0cd610ebd58d4b4de9cc0c6828cda99c7548f" 2337 | 2338 | ncp@^2.0.0, ncp@~2.0.0: 2339 | version "2.0.0" 2340 | resolved "https://registry.yarnpkg.com/ncp/-/ncp-2.0.0.tgz#195a21d6c46e361d2fb1281ba38b91e9df7bdbb3" 2341 | 2342 | ndjson@^1.4.0: 2343 | version "1.5.0" 2344 | resolved "https://registry.yarnpkg.com/ndjson/-/ndjson-1.5.0.tgz#ae603b36b134bcec347b452422b0bf98d5832ec8" 2345 | dependencies: 2346 | json-stringify-safe "^5.0.1" 2347 | minimist "^1.2.0" 2348 | split2 "^2.1.0" 2349 | through2 "^2.0.3" 2350 | 2351 | neat-csv@^2.1.0: 2352 | version "2.1.0" 2353 | resolved "https://registry.yarnpkg.com/neat-csv/-/neat-csv-2.1.0.tgz#06f58360c4c3b955bd467ddc85ae4511a3907a4c" 2354 | dependencies: 2355 | csv-parser "^1.6.0" 2356 | get-stream "^2.1.0" 2357 | into-stream "^2.0.0" 2358 | 2359 | needle@^2.2.0: 2360 | version "2.2.1" 2361 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.1.tgz#b5e325bd3aae8c2678902fa296f729455d1d3a7d" 2362 | dependencies: 2363 | debug "^2.1.2" 2364 | iconv-lite "^0.4.4" 2365 | sax "^1.2.4" 2366 | 2367 | negotiator@0.6.1: 2368 | version "0.6.1" 2369 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" 2370 | 2371 | net@^1.0.2: 2372 | version "1.0.2" 2373 | resolved "https://registry.yarnpkg.com/net/-/net-1.0.2.tgz#d1757ec9a7fb2371d83cf4755ce3e27e10829388" 2374 | 2375 | next-tick@1: 2376 | version "1.0.0" 2377 | resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c" 2378 | 2379 | nice-try@^1.0.4: 2380 | version "1.0.4" 2381 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.4.tgz#d93962f6c52f2c1558c0fbda6d512819f1efe1c4" 2382 | 2383 | no-case@^2.2.0: 2384 | version "2.3.2" 2385 | resolved "https://registry.yarnpkg.com/no-case/-/no-case-2.3.2.tgz#60b813396be39b3f1288a4c1ed5d1e7d28b464ac" 2386 | dependencies: 2387 | lower-case "^1.1.1" 2388 | 2389 | node-forge@^0.7.1: 2390 | version "0.7.5" 2391 | resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.7.5.tgz#6c152c345ce11c52f465c2abd957e8639cd674df" 2392 | 2393 | node-idevice@^0.1.6: 2394 | version "0.1.6" 2395 | resolved "https://registry.yarnpkg.com/node-idevice/-/node-idevice-0.1.6.tgz#9411aa768b44bfb7cd25ece5c8a1c8b4b6f1fa44" 2396 | 2397 | node-pre-gyp@^0.10.0: 2398 | version "0.10.0" 2399 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.10.0.tgz#6e4ef5bb5c5203c6552448828c852c40111aac46" 2400 | dependencies: 2401 | detect-libc "^1.0.2" 2402 | mkdirp "^0.5.1" 2403 | needle "^2.2.0" 2404 | nopt "^4.0.1" 2405 | npm-packlist "^1.1.6" 2406 | npmlog "^4.0.2" 2407 | rc "^1.1.7" 2408 | rimraf "^2.6.1" 2409 | semver "^5.3.0" 2410 | tar "^4" 2411 | 2412 | node-simctl@^3.10.0, node-simctl@^3.11.0, node-simctl@^3.11.5: 2413 | version "3.12.0" 2414 | resolved "https://registry.yarnpkg.com/node-simctl/-/node-simctl-3.12.0.tgz#3238f45f08cea494cf5a3cbed8ebf6df1055db03" 2415 | dependencies: 2416 | appium-support "^2.4.0" 2417 | appium-xcode "^3.1.0" 2418 | asyncbox "^2.3.1" 2419 | babel-runtime "=5.8.24" 2420 | lodash "^4.2.1" 2421 | source-map-support "^0.5.5" 2422 | teen_process "^1.5.1" 2423 | 2424 | nopt@^4.0.1: 2425 | version "4.0.1" 2426 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2427 | dependencies: 2428 | abbrev "1" 2429 | osenv "^0.1.4" 2430 | 2431 | normalize-path@^2.0.0: 2432 | version "2.1.1" 2433 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2434 | dependencies: 2435 | remove-trailing-separator "^1.0.1" 2436 | 2437 | npm-bundled@^1.0.1: 2438 | version "1.0.3" 2439 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.3.tgz#7e71703d973af3370a9591bafe3a63aca0be2308" 2440 | 2441 | npm-install-package@~2.1.0: 2442 | version "2.1.0" 2443 | resolved "https://registry.yarnpkg.com/npm-install-package/-/npm-install-package-2.1.0.tgz#d7efe3cfcd7ab00614b896ea53119dc9ab259125" 2444 | 2445 | npm-packlist@^1.1.6: 2446 | version "1.1.10" 2447 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.1.10.tgz#1039db9e985727e464df066f4cf0ab6ef85c398a" 2448 | dependencies: 2449 | ignore-walk "^3.0.1" 2450 | npm-bundled "^1.0.1" 2451 | 2452 | npm-run-path@^2.0.0: 2453 | version "2.0.2" 2454 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2455 | dependencies: 2456 | path-key "^2.0.0" 2457 | 2458 | npmlog@4.x, npmlog@^4.0.2, npmlog@^4.1.2: 2459 | version "4.1.2" 2460 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2461 | dependencies: 2462 | are-we-there-yet "~1.1.2" 2463 | console-control-strings "~1.1.0" 2464 | gauge "~2.7.3" 2465 | set-blocking "~2.0.0" 2466 | 2467 | number-is-nan@^1.0.0: 2468 | version "1.0.1" 2469 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2470 | 2471 | oauth-sign@~0.8.2: 2472 | version "0.8.2" 2473 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2474 | 2475 | object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: 2476 | version "4.1.1" 2477 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2478 | 2479 | object-keys@^1.0.11, object-keys@^1.0.8: 2480 | version "1.0.12" 2481 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.12.tgz#09c53855377575310cca62f55bb334abff7b3ed2" 2482 | 2483 | object.assign@^4.0.3: 2484 | version "4.1.0" 2485 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" 2486 | dependencies: 2487 | define-properties "^1.1.2" 2488 | function-bind "^1.1.1" 2489 | has-symbols "^1.0.0" 2490 | object-keys "^1.0.11" 2491 | 2492 | on-finished@~2.3.0: 2493 | version "2.3.0" 2494 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 2495 | dependencies: 2496 | ee-first "1.1.1" 2497 | 2498 | on-headers@~1.0.1: 2499 | version "1.0.1" 2500 | resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.1.tgz#928f5d0f470d49342651ea6794b0857c100693f7" 2501 | 2502 | once@^1.3.0, once@^1.4.0: 2503 | version "1.4.0" 2504 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2505 | dependencies: 2506 | wrappy "1" 2507 | 2508 | onetime@^2.0.0: 2509 | version "2.0.1" 2510 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2511 | dependencies: 2512 | mimic-fn "^1.0.0" 2513 | 2514 | openssl-wrapper@^0.3.4: 2515 | version "0.3.4" 2516 | resolved "https://registry.yarnpkg.com/openssl-wrapper/-/openssl-wrapper-0.3.4.tgz#c01ec98e4dcd2b5dfe0b693f31827200e3b81b07" 2517 | 2518 | optimist@~0.6.1: 2519 | version "0.6.1" 2520 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2521 | dependencies: 2522 | minimist "~0.0.1" 2523 | wordwrap "~0.0.2" 2524 | 2525 | os-homedir@^1.0.0: 2526 | version "1.0.2" 2527 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2528 | 2529 | os-locale@^2.0.0: 2530 | version "2.1.0" 2531 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 2532 | dependencies: 2533 | execa "^0.7.0" 2534 | lcid "^1.0.0" 2535 | mem "^1.1.0" 2536 | 2537 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.1, os-tmpdir@~1.0.2: 2538 | version "1.0.2" 2539 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2540 | 2541 | osenv@^0.1.4: 2542 | version "0.1.5" 2543 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 2544 | dependencies: 2545 | os-homedir "^1.0.0" 2546 | os-tmpdir "^1.0.0" 2547 | 2548 | p-finally@^1.0.0: 2549 | version "1.0.0" 2550 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2551 | 2552 | p-limit@^1.1.0: 2553 | version "1.3.0" 2554 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" 2555 | dependencies: 2556 | p-try "^1.0.0" 2557 | 2558 | p-locate@^2.0.0: 2559 | version "2.0.0" 2560 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2561 | dependencies: 2562 | p-limit "^1.1.0" 2563 | 2564 | p-try@^1.0.0: 2565 | version "1.0.0" 2566 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 2567 | 2568 | pad-right@^0.2.2: 2569 | version "0.2.2" 2570 | resolved "https://registry.yarnpkg.com/pad-right/-/pad-right-0.2.2.tgz#6fbc924045d244f2a2a244503060d3bfc6009774" 2571 | dependencies: 2572 | repeat-string "^1.5.2" 2573 | 2574 | pako@~1.0.2: 2575 | version "1.0.6" 2576 | resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.6.tgz#0101211baa70c4bca4a0f63f2206e97b7dfaf258" 2577 | 2578 | parse-bmfont-ascii@^1.0.3: 2579 | version "1.0.6" 2580 | resolved "https://registry.yarnpkg.com/parse-bmfont-ascii/-/parse-bmfont-ascii-1.0.6.tgz#11ac3c3ff58f7c2020ab22769079108d4dfa0285" 2581 | 2582 | parse-bmfont-binary@^1.0.5: 2583 | version "1.0.6" 2584 | resolved "https://registry.yarnpkg.com/parse-bmfont-binary/-/parse-bmfont-binary-1.0.6.tgz#d038b476d3e9dd9db1e11a0b0e53a22792b69006" 2585 | 2586 | parse-bmfont-xml@^1.1.0: 2587 | version "1.1.3" 2588 | resolved "https://registry.yarnpkg.com/parse-bmfont-xml/-/parse-bmfont-xml-1.1.3.tgz#d6b66a371afd39c5007d9f0eeb262a4f2cce7b7c" 2589 | dependencies: 2590 | xml-parse-from-string "^1.0.0" 2591 | xml2js "^0.4.5" 2592 | 2593 | parse-headers@^2.0.0: 2594 | version "2.0.1" 2595 | resolved "https://registry.yarnpkg.com/parse-headers/-/parse-headers-2.0.1.tgz#6ae83a7aa25a9d9b700acc28698cd1f1ed7e9536" 2596 | dependencies: 2597 | for-each "^0.3.2" 2598 | trim "0.0.1" 2599 | 2600 | parse-listing@^1.1.3: 2601 | version "1.1.3" 2602 | resolved "https://registry.yarnpkg.com/parse-listing/-/parse-listing-1.1.3.tgz#aa546f57fdc129cfbf9945cd4b757b14b06182dd" 2603 | 2604 | parseurl@~1.3.2: 2605 | version "1.3.2" 2606 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.2.tgz#fc289d4ed8993119460c156253262cdc8de65bf3" 2607 | 2608 | path-exists@^3.0.0: 2609 | version "3.0.0" 2610 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2611 | 2612 | path-is-absolute@^1.0.0: 2613 | version "1.0.1" 2614 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2615 | 2616 | path-key@^2.0.0, path-key@^2.0.1: 2617 | version "2.0.1" 2618 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2619 | 2620 | path-parse@^1.0.5: 2621 | version "1.0.5" 2622 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2623 | 2624 | path-to-regexp@0.1.7: 2625 | version "0.1.7" 2626 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" 2627 | 2628 | path@^0.12.7: 2629 | version "0.12.7" 2630 | resolved "https://registry.yarnpkg.com/path/-/path-0.12.7.tgz#d4dc2a506c4ce2197eb481ebfcd5b36c0140b10f" 2631 | dependencies: 2632 | process "^0.11.1" 2633 | util "^0.10.3" 2634 | 2635 | pathval@^1.0.0: 2636 | version "1.1.0" 2637 | resolved "https://registry.yarnpkg.com/pathval/-/pathval-1.1.0.tgz#b942e6d4bde653005ef6b71361def8727d0645e0" 2638 | 2639 | pem@^1.8.3: 2640 | version "1.12.5" 2641 | resolved "https://registry.yarnpkg.com/pem/-/pem-1.12.5.tgz#97bf2e459537c54e0ee5b0aa11b5ca18d6b5fef2" 2642 | dependencies: 2643 | md5 "^2.2.1" 2644 | os-tmpdir "^1.0.1" 2645 | safe-buffer "^5.1.1" 2646 | which "^1.2.4" 2647 | 2648 | pend@~1.2.0: 2649 | version "1.2.0" 2650 | resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" 2651 | 2652 | performance-now@^2.1.0: 2653 | version "2.1.0" 2654 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 2655 | 2656 | pid-from-port@^1.0.0: 2657 | version "1.1.3" 2658 | resolved "https://registry.yarnpkg.com/pid-from-port/-/pid-from-port-1.1.3.tgz#313a1d056ee71319cff0940ed0ff027dad39ca69" 2659 | dependencies: 2660 | execa "^0.9.0" 2661 | 2662 | pify@^2.2.0: 2663 | version "2.3.0" 2664 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2665 | 2666 | pify@^3.0.0: 2667 | version "3.0.0" 2668 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 2669 | 2670 | pinkie-promise@^2.0.0: 2671 | version "2.0.1" 2672 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2673 | dependencies: 2674 | pinkie "^2.0.0" 2675 | 2676 | pinkie@^2.0.0: 2677 | version "2.0.4" 2678 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2679 | 2680 | pixelmatch@^4.0.0: 2681 | version "4.0.2" 2682 | resolved "https://registry.yarnpkg.com/pixelmatch/-/pixelmatch-4.0.2.tgz#8f47dcec5011b477b67db03c243bc1f3085e8854" 2683 | dependencies: 2684 | pngjs "^3.0.0" 2685 | 2686 | plist@^3.0.1: 2687 | version "3.0.1" 2688 | resolved "https://registry.yarnpkg.com/plist/-/plist-3.0.1.tgz#a9b931d17c304e8912ef0ba3bdd6182baf2e1f8c" 2689 | dependencies: 2690 | base64-js "^1.2.3" 2691 | xmlbuilder "^9.0.7" 2692 | xmldom "0.1.x" 2693 | 2694 | pngjs@^3.0.0: 2695 | version "3.3.3" 2696 | resolved "https://registry.yarnpkg.com/pngjs/-/pngjs-3.3.3.tgz#85173703bde3edac8998757b96e5821d0966a21b" 2697 | 2698 | portfinder@^1.0.13, portfinder@^1.0.6: 2699 | version "1.0.13" 2700 | resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.13.tgz#bb32ecd87c27104ae6ee44b5a3ccbf0ebb1aede9" 2701 | dependencies: 2702 | async "^1.5.2" 2703 | debug "^2.2.0" 2704 | mkdirp "0.5.x" 2705 | 2706 | portscanner@2.2.0, portscanner@^2.1.1: 2707 | version "2.2.0" 2708 | resolved "https://registry.yarnpkg.com/portscanner/-/portscanner-2.2.0.tgz#6059189b3efa0965c9d96a56b958eb9508411cf1" 2709 | dependencies: 2710 | async "^2.6.0" 2711 | is-number-like "^1.0.3" 2712 | 2713 | process-exists@^3.1.0: 2714 | version "3.1.0" 2715 | resolved "https://registry.yarnpkg.com/process-exists/-/process-exists-3.1.0.tgz#86cae049e1e7b51382690ec9fd8dfd74ff7a17c8" 2716 | dependencies: 2717 | ps-list "^4.0.0" 2718 | 2719 | process-nextick-args@~1.0.6: 2720 | version "1.0.7" 2721 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2722 | 2723 | process-nextick-args@~2.0.0: 2724 | version "2.0.0" 2725 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 2726 | 2727 | process@^0.11.1: 2728 | version "0.11.10" 2729 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" 2730 | 2731 | process@~0.5.1: 2732 | version "0.5.2" 2733 | resolved "https://registry.yarnpkg.com/process/-/process-0.5.2.tgz#1638d8a8e34c2f440a91db95ab9aeb677fc185cf" 2734 | 2735 | progress@^2.0.0: 2736 | version "2.0.0" 2737 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 2738 | 2739 | proxy-addr@~2.0.3: 2740 | version "2.0.3" 2741 | resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.3.tgz#355f262505a621646b3130a728eb647e22055341" 2742 | dependencies: 2743 | forwarded "~0.1.2" 2744 | ipaddr.js "1.6.0" 2745 | 2746 | ps-list@^4.0.0: 2747 | version "4.1.0" 2748 | resolved "https://registry.yarnpkg.com/ps-list/-/ps-list-4.1.0.tgz#8ffd6434add37f9dd1a9f19ab1beb42c9db60dae" 2749 | dependencies: 2750 | pify "^3.0.0" 2751 | tasklist "^3.1.0" 2752 | 2753 | pseudomap@^1.0.2: 2754 | version "1.0.2" 2755 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2756 | 2757 | psl@^1.1.24: 2758 | version "1.1.28" 2759 | resolved "https://registry.yarnpkg.com/psl/-/psl-1.1.28.tgz#4fb6ceb08a1e2214d4fd4de0ca22dae13740bc7b" 2760 | 2761 | punycode@1.3.2: 2762 | version "1.3.2" 2763 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 2764 | 2765 | punycode@^1.4.1: 2766 | version "1.4.1" 2767 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2768 | 2769 | punycode@^2.0.0: 2770 | version "2.1.1" 2771 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 2772 | 2773 | q@~1.5.0: 2774 | version "1.5.1" 2775 | resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" 2776 | 2777 | qs@6.5.1: 2778 | version "6.5.1" 2779 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" 2780 | 2781 | qs@6.5.2, qs@~6.5.1: 2782 | version "6.5.2" 2783 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" 2784 | 2785 | querystring@0.2.0: 2786 | version "0.2.0" 2787 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 2788 | 2789 | range-parser@~1.2.0: 2790 | version "1.2.0" 2791 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" 2792 | 2793 | raw-body@2.3.2: 2794 | version "2.3.2" 2795 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.3.2.tgz#bcd60c77d3eb93cde0050295c3f379389bc88f89" 2796 | dependencies: 2797 | bytes "3.0.0" 2798 | http-errors "1.6.2" 2799 | iconv-lite "0.4.19" 2800 | unpipe "1.0.0" 2801 | 2802 | raw-body@2.3.3: 2803 | version "2.3.3" 2804 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.3.3.tgz#1b324ece6b5706e153855bc1148c65bb7f6ea0c3" 2805 | dependencies: 2806 | bytes "3.0.0" 2807 | http-errors "1.6.3" 2808 | iconv-lite "0.4.23" 2809 | unpipe "1.0.0" 2810 | 2811 | rc@^1.1.7: 2812 | version "1.2.8" 2813 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 2814 | dependencies: 2815 | deep-extend "^0.6.0" 2816 | ini "~1.3.0" 2817 | minimist "^1.2.0" 2818 | strip-json-comments "~2.0.1" 2819 | 2820 | read-chunk@^1.0.1: 2821 | version "1.0.1" 2822 | resolved "https://registry.yarnpkg.com/read-chunk/-/read-chunk-1.0.1.tgz#5f68cab307e663f19993527d9b589cace4661194" 2823 | 2824 | readable-stream@^1.0.31: 2825 | version "1.1.14" 2826 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" 2827 | dependencies: 2828 | core-util-is "~1.0.0" 2829 | inherits "~2.0.1" 2830 | isarray "0.0.1" 2831 | string_decoder "~0.10.x" 2832 | 2833 | readable-stream@^2.0.0, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.0, readable-stream@^2.3.5: 2834 | version "2.3.6" 2835 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 2836 | dependencies: 2837 | core-util-is "~1.0.0" 2838 | inherits "~2.0.3" 2839 | isarray "~1.0.0" 2840 | process-nextick-args "~2.0.0" 2841 | safe-buffer "~5.1.1" 2842 | string_decoder "~1.1.1" 2843 | util-deprecate "~1.0.1" 2844 | 2845 | readable-stream@~2.0.6: 2846 | version "2.0.6" 2847 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" 2848 | dependencies: 2849 | core-util-is "~1.0.0" 2850 | inherits "~2.0.1" 2851 | isarray "~1.0.0" 2852 | process-nextick-args "~1.0.6" 2853 | string_decoder "~0.10.x" 2854 | util-deprecate "~1.0.1" 2855 | 2856 | rechoir@^0.6.2: 2857 | version "0.6.2" 2858 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 2859 | dependencies: 2860 | resolve "^1.1.6" 2861 | 2862 | regenerator-runtime@^0.11.0: 2863 | version "0.11.1" 2864 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 2865 | 2866 | remove-trailing-separator@^1.0.1: 2867 | version "1.1.0" 2868 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2869 | 2870 | repeat-string@^1.5.2, repeat-string@^1.6.1: 2871 | version "1.6.1" 2872 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2873 | 2874 | request-promise-core@1.1.1: 2875 | version "1.1.1" 2876 | resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6" 2877 | dependencies: 2878 | lodash "^4.13.1" 2879 | 2880 | request-promise@4.x, request-promise@^4.1.1, request-promise@^4.2.1, request-promise@^4.2.2: 2881 | version "4.2.2" 2882 | resolved "https://registry.yarnpkg.com/request-promise/-/request-promise-4.2.2.tgz#d1ea46d654a6ee4f8ee6a4fea1018c22911904b4" 2883 | dependencies: 2884 | bluebird "^3.5.0" 2885 | request-promise-core "1.1.1" 2886 | stealthy-require "^1.1.0" 2887 | tough-cookie ">=2.3.3" 2888 | 2889 | request@^2.57.0, request@^2.65.0, request@^2.79.0, request@^2.81.0, request@^2.83.0: 2890 | version "2.87.0" 2891 | resolved "https://registry.yarnpkg.com/request/-/request-2.87.0.tgz#32f00235cd08d482b4d0d68db93a829c0ed5756e" 2892 | dependencies: 2893 | aws-sign2 "~0.7.0" 2894 | aws4 "^1.6.0" 2895 | caseless "~0.12.0" 2896 | combined-stream "~1.0.5" 2897 | extend "~3.0.1" 2898 | forever-agent "~0.6.1" 2899 | form-data "~2.3.1" 2900 | har-validator "~5.0.3" 2901 | http-signature "~1.2.0" 2902 | is-typedarray "~1.0.0" 2903 | isstream "~0.1.2" 2904 | json-stringify-safe "~5.0.1" 2905 | mime-types "~2.1.17" 2906 | oauth-sign "~0.8.2" 2907 | performance-now "^2.1.0" 2908 | qs "~6.5.1" 2909 | safe-buffer "^5.1.1" 2910 | tough-cookie "~2.3.3" 2911 | tunnel-agent "^0.6.0" 2912 | uuid "^3.1.0" 2913 | 2914 | require-directory@^2.1.1: 2915 | version "2.1.1" 2916 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2917 | 2918 | require-main-filename@^1.0.1: 2919 | version "1.0.1" 2920 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2921 | 2922 | resolve-url@^0.2.1: 2923 | version "0.2.1" 2924 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 2925 | 2926 | resolve@^1.1.6, resolve@^1.3.2, resolve@^1.3.3: 2927 | version "1.8.1" 2928 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.8.1.tgz#82f1ec19a423ac1fbd080b0bab06ba36e84a7a26" 2929 | dependencies: 2930 | path-parse "^1.0.5" 2931 | 2932 | restore-cursor@^2.0.0: 2933 | version "2.0.0" 2934 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 2935 | dependencies: 2936 | onetime "^2.0.0" 2937 | signal-exit "^3.0.2" 2938 | 2939 | rgb2hex@^0.1.9: 2940 | version "0.1.9" 2941 | resolved "https://registry.yarnpkg.com/rgb2hex/-/rgb2hex-0.1.9.tgz#5d3e0e14b0177b568e6f0d5b43e34fbfdb670346" 2942 | integrity sha512-32iuQzhOjyT+cv9aAFRBJ19JgHwzQwbjUhH3Fj2sWW2EEGAW8fpFrDFP5ndoKDxJaLO06x1hE3kyuIFrUQtybQ== 2943 | 2944 | rimraf@^2.5.1, rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.2: 2945 | version "2.6.2" 2946 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2947 | dependencies: 2948 | glob "^7.0.5" 2949 | 2950 | rimraf@~2.2.6: 2951 | version "2.2.8" 2952 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.2.8.tgz#e439be2aaee327321952730f99a8929e4fc50582" 2953 | 2954 | rimraf@~2.4.0: 2955 | version "2.4.5" 2956 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.4.5.tgz#ee710ce5d93a8fdb856fb5ea8ff0e2d75934b2da" 2957 | dependencies: 2958 | glob "^6.0.1" 2959 | 2960 | run-async@^2.2.0: 2961 | version "2.3.0" 2962 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 2963 | dependencies: 2964 | is-promise "^2.1.0" 2965 | 2966 | rx-lite-aggregates@^4.0.8: 2967 | version "4.0.8" 2968 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 2969 | dependencies: 2970 | rx-lite "*" 2971 | 2972 | rx-lite@*, rx-lite@^4.0.8: 2973 | version "4.0.8" 2974 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 2975 | 2976 | safari-launcher@^2.0.5: 2977 | version "2.0.5" 2978 | resolved "https://registry.yarnpkg.com/safari-launcher/-/safari-launcher-2.0.5.tgz#a4effa9ea512d1d541e47b8039d8527015f2aded" 2979 | 2980 | safe-buffer@5.1.1: 2981 | version "5.1.1" 2982 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2983 | 2984 | safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2985 | version "5.1.2" 2986 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 2987 | 2988 | "safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2: 2989 | version "2.1.2" 2990 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 2991 | 2992 | sax@>=0.6.0, sax@^1.2.4: 2993 | version "1.2.4" 2994 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2995 | 2996 | sec@^1.0.0: 2997 | version "1.0.0" 2998 | resolved "https://registry.yarnpkg.com/sec/-/sec-1.0.0.tgz#033d60a3ad20ecf2e00940d14f97823465774335" 2999 | 3000 | seed-random@~2.2.0: 3001 | version "2.2.0" 3002 | resolved "https://registry.yarnpkg.com/seed-random/-/seed-random-2.2.0.tgz#2a9b19e250a817099231a5b99a4daf80b7fbed54" 3003 | integrity sha1-KpsZ4lCoFwmSMaW5mk2vgLf77VQ= 3004 | 3005 | selenium-webdriver@3.x: 3006 | version "3.6.0" 3007 | resolved "https://registry.yarnpkg.com/selenium-webdriver/-/selenium-webdriver-3.6.0.tgz#2ba87a1662c020b8988c981ae62cb2a01298eafc" 3008 | dependencies: 3009 | jszip "^3.1.3" 3010 | rimraf "^2.5.4" 3011 | tmp "0.0.30" 3012 | xml2js "^0.4.17" 3013 | 3014 | semver-compare@^1.0.0: 3015 | version "1.0.0" 3016 | resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" 3017 | 3018 | semver@^5.3.0, semver@^5.5.0: 3019 | version "5.5.0" 3020 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 3021 | 3022 | semver@~5.3.0: 3023 | version "5.3.0" 3024 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 3025 | 3026 | send@0.16.2: 3027 | version "0.16.2" 3028 | resolved "https://registry.yarnpkg.com/send/-/send-0.16.2.tgz#6ecca1e0f8c156d141597559848df64730a6bbc1" 3029 | dependencies: 3030 | debug "2.6.9" 3031 | depd "~1.1.2" 3032 | destroy "~1.0.4" 3033 | encodeurl "~1.0.2" 3034 | escape-html "~1.0.3" 3035 | etag "~1.8.1" 3036 | fresh "0.5.2" 3037 | http-errors "~1.6.2" 3038 | mime "1.4.1" 3039 | ms "2.0.0" 3040 | on-finished "~2.3.0" 3041 | range-parser "~1.2.0" 3042 | statuses "~1.4.0" 3043 | 3044 | serialize-error@^2.1.0: 3045 | version "2.1.0" 3046 | resolved "https://registry.yarnpkg.com/serialize-error/-/serialize-error-2.1.0.tgz#50b679d5635cdf84667bdc8e59af4e5b81d5f60a" 3047 | integrity sha1-ULZ51WNc34Rme9yOWa9OW4HV9go= 3048 | 3049 | serve-favicon@^2.4.5: 3050 | version "2.5.0" 3051 | resolved "https://registry.yarnpkg.com/serve-favicon/-/serve-favicon-2.5.0.tgz#935d240cdfe0f5805307fdfe967d88942a2cbcf0" 3052 | dependencies: 3053 | etag "~1.8.1" 3054 | fresh "0.5.2" 3055 | ms "2.1.1" 3056 | parseurl "~1.3.2" 3057 | safe-buffer "5.1.1" 3058 | 3059 | serve-static@1.13.2: 3060 | version "1.13.2" 3061 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.13.2.tgz#095e8472fd5b46237db50ce486a43f4b86c6cec1" 3062 | dependencies: 3063 | encodeurl "~1.0.2" 3064 | escape-html "~1.0.3" 3065 | parseurl "~1.3.2" 3066 | send "0.16.2" 3067 | 3068 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3069 | version "2.0.0" 3070 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3071 | 3072 | setprototypeof@1.0.3: 3073 | version "1.0.3" 3074 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04" 3075 | 3076 | setprototypeof@1.1.0: 3077 | version "1.1.0" 3078 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" 3079 | 3080 | shared-preferences-builder@^0.0.4: 3081 | version "0.0.4" 3082 | resolved "https://registry.yarnpkg.com/shared-preferences-builder/-/shared-preferences-builder-0.0.4.tgz#842316ed07704f921dc19dad0aaf0c9f5c37eb9c" 3083 | dependencies: 3084 | lodash "^4.17.4" 3085 | xmlbuilder "^9.0.1" 3086 | 3087 | shebang-command@^1.2.0: 3088 | version "1.2.0" 3089 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3090 | dependencies: 3091 | shebang-regex "^1.0.0" 3092 | 3093 | shebang-regex@^1.0.0: 3094 | version "1.0.0" 3095 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3096 | 3097 | shell-quote@^1.4.3, shell-quote@^1.6.1: 3098 | version "1.6.1" 3099 | resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767" 3100 | dependencies: 3101 | array-filter "~0.0.0" 3102 | array-map "~0.0.0" 3103 | array-reduce "~0.0.0" 3104 | jsonify "~0.0.0" 3105 | 3106 | shelljs@0.8.x: 3107 | version "0.8.2" 3108 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.2.tgz#345b7df7763f4c2340d584abb532c5f752ca9e35" 3109 | dependencies: 3110 | glob "^7.0.0" 3111 | interpret "^1.0.0" 3112 | rechoir "^0.6.2" 3113 | 3114 | shimmer@^1.1.0, shimmer@^1.2.0: 3115 | version "1.2.0" 3116 | resolved "https://registry.yarnpkg.com/shimmer/-/shimmer-1.2.0.tgz#f966f7555789763e74d8841193685a5e78736665" 3117 | 3118 | signal-exit@^3.0.0, signal-exit@^3.0.2: 3119 | version "3.0.2" 3120 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3121 | 3122 | source-map-resolve@^0.5.1: 3123 | version "0.5.2" 3124 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" 3125 | dependencies: 3126 | atob "^2.1.1" 3127 | decode-uri-component "^0.2.0" 3128 | resolve-url "^0.2.1" 3129 | source-map-url "^0.4.0" 3130 | urix "^0.1.0" 3131 | 3132 | source-map-support@0.x, source-map-support@^0.5.3, source-map-support@^0.5.5: 3133 | version "0.5.6" 3134 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.6.tgz#4435cee46b1aab62b8e8610ce60f788091c51c13" 3135 | dependencies: 3136 | buffer-from "^1.0.0" 3137 | source-map "^0.6.0" 3138 | 3139 | source-map-support@^0.5.6: 3140 | version "0.5.11" 3141 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.11.tgz#efac2ce0800355d026326a0ca23e162aeac9a4e2" 3142 | integrity sha512-//sajEx/fGL3iw6fltKMdPvy8kL3kJ2O3iuYlRoT3k9Kb4BjOoZ+BZzaNHeuaruSt+Kf3Zk9tnfAQg9/AJqUVQ== 3143 | dependencies: 3144 | buffer-from "^1.0.0" 3145 | source-map "^0.6.0" 3146 | 3147 | source-map-url@^0.4.0: 3148 | version "0.4.0" 3149 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 3150 | 3151 | source-map@0.5.6: 3152 | version "0.5.6" 3153 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 3154 | 3155 | source-map@^0.1.38: 3156 | version "0.1.43" 3157 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.1.43.tgz#c24bc146ca517c1471f5dacbe2571b2b7f9e3346" 3158 | dependencies: 3159 | amdefine ">=0.0.4" 3160 | 3161 | source-map@^0.6.0: 3162 | version "0.6.1" 3163 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 3164 | 3165 | split2@^2.1.0: 3166 | version "2.2.0" 3167 | resolved "https://registry.yarnpkg.com/split2/-/split2-2.2.0.tgz#186b2575bcf83e85b7d18465756238ee4ee42493" 3168 | dependencies: 3169 | through2 "^2.0.2" 3170 | 3171 | split@~0.3.3: 3172 | version "0.3.3" 3173 | resolved "https://registry.yarnpkg.com/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" 3174 | dependencies: 3175 | through "2" 3176 | 3177 | sprintf-js@~1.0.2: 3178 | version "1.0.3" 3179 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3180 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 3181 | 3182 | sshpk@^1.7.0: 3183 | version "1.14.2" 3184 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.14.2.tgz#c6fc61648a3d9c4e764fd3fcdf4ea105e492ba98" 3185 | dependencies: 3186 | asn1 "~0.2.3" 3187 | assert-plus "^1.0.0" 3188 | dashdash "^1.12.0" 3189 | getpass "^0.1.1" 3190 | safer-buffer "^2.0.2" 3191 | optionalDependencies: 3192 | bcrypt-pbkdf "^1.0.0" 3193 | ecc-jsbn "~0.1.1" 3194 | jsbn "~0.1.0" 3195 | tweetnacl "~0.14.0" 3196 | 3197 | stack-chain@^2.0.0: 3198 | version "2.0.0" 3199 | resolved "https://registry.yarnpkg.com/stack-chain/-/stack-chain-2.0.0.tgz#d73d1172af89565f07438b5bcc086831b6689b2d" 3200 | 3201 | stack-generator@^2.0.1: 3202 | version "2.0.3" 3203 | resolved "https://registry.yarnpkg.com/stack-generator/-/stack-generator-2.0.3.tgz#bb74385c67ffc4ccf3c4dee5831832d4e509c8a0" 3204 | dependencies: 3205 | stackframe "^1.0.4" 3206 | 3207 | stack-trace@0.0.x: 3208 | version "0.0.10" 3209 | resolved "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.10.tgz#547c70b347e8d32b4e108ea1a2a159e5fdde19c0" 3210 | 3211 | stackframe@^1.0.4: 3212 | version "1.0.4" 3213 | resolved "https://registry.yarnpkg.com/stackframe/-/stackframe-1.0.4.tgz#357b24a992f9427cba6b545d96a14ed2cbca187b" 3214 | 3215 | stacktrace-gps@^3.0.1: 3216 | version "3.0.2" 3217 | resolved "https://registry.yarnpkg.com/stacktrace-gps/-/stacktrace-gps-3.0.2.tgz#33f8baa4467323ab2bd1816efa279942ba431ccc" 3218 | dependencies: 3219 | source-map "0.5.6" 3220 | stackframe "^1.0.4" 3221 | 3222 | stacktrace-js@^2.0.0: 3223 | version "2.0.0" 3224 | resolved "https://registry.yarnpkg.com/stacktrace-js/-/stacktrace-js-2.0.0.tgz#776ca646a95bc6c6b2b90776536a7fc72c6ddb58" 3225 | dependencies: 3226 | error-stack-parser "^2.0.1" 3227 | stack-generator "^2.0.1" 3228 | stacktrace-gps "^3.0.1" 3229 | 3230 | "statuses@>= 1.3.1 < 2", "statuses@>= 1.4.0 < 2": 3231 | version "1.5.0" 3232 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" 3233 | 3234 | statuses@~1.4.0: 3235 | version "1.4.0" 3236 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.4.0.tgz#bb73d446da2796106efcc1b601a253d6c46bd087" 3237 | 3238 | stealthy-require@^1.1.0: 3239 | version "1.1.1" 3240 | resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" 3241 | 3242 | stream-buffers@~2.2.0: 3243 | version "2.2.0" 3244 | resolved "https://registry.yarnpkg.com/stream-buffers/-/stream-buffers-2.2.0.tgz#91d5f5130d1cef96dcfa7f726945188741d09ee4" 3245 | 3246 | stream-combiner@^0.2.2: 3247 | version "0.2.2" 3248 | resolved "https://registry.yarnpkg.com/stream-combiner/-/stream-combiner-0.2.2.tgz#aec8cbac177b56b6f4fa479ced8c1912cee52858" 3249 | dependencies: 3250 | duplexer "~0.1.1" 3251 | through "~2.3.4" 3252 | 3253 | stream-to-buffer@^0.1.0: 3254 | version "0.1.0" 3255 | resolved "https://registry.yarnpkg.com/stream-to-buffer/-/stream-to-buffer-0.1.0.tgz#26799d903ab2025c9bd550ac47171b00f8dd80a9" 3256 | dependencies: 3257 | stream-to "~0.2.0" 3258 | 3259 | stream-to@~0.2.0: 3260 | version "0.2.2" 3261 | resolved "https://registry.yarnpkg.com/stream-to/-/stream-to-0.2.2.tgz#84306098d85fdb990b9fa300b1b3ccf55e8ef01d" 3262 | 3263 | string-argv@0.0.2: 3264 | version "0.0.2" 3265 | resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.0.2.tgz#dac30408690c21f3c3630a3ff3a05877bdcbd736" 3266 | 3267 | string-width@^1.0.1: 3268 | version "1.0.2" 3269 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3270 | dependencies: 3271 | code-point-at "^1.0.0" 3272 | is-fullwidth-code-point "^1.0.0" 3273 | strip-ansi "^3.0.0" 3274 | 3275 | "string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: 3276 | version "2.1.1" 3277 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3278 | dependencies: 3279 | is-fullwidth-code-point "^2.0.0" 3280 | strip-ansi "^4.0.0" 3281 | 3282 | string_decoder@~0.10.x: 3283 | version "0.10.31" 3284 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 3285 | 3286 | string_decoder@~1.1.1: 3287 | version "1.1.1" 3288 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 3289 | dependencies: 3290 | safe-buffer "~5.1.0" 3291 | 3292 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3293 | version "3.0.1" 3294 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3295 | dependencies: 3296 | ansi-regex "^2.0.0" 3297 | 3298 | strip-ansi@^4.0.0: 3299 | version "4.0.0" 3300 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3301 | dependencies: 3302 | ansi-regex "^3.0.0" 3303 | 3304 | strip-eof@^1.0.0: 3305 | version "1.0.0" 3306 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3307 | 3308 | strip-json-comments@~2.0.1: 3309 | version "2.0.1" 3310 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3311 | 3312 | supports-color@^2.0.0: 3313 | version "2.0.0" 3314 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3315 | 3316 | supports-color@^5.3.0: 3317 | version "5.4.0" 3318 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.4.0.tgz#1c6b337402c2137605efe19f10fec390f6faab54" 3319 | dependencies: 3320 | has-flag "^3.0.0" 3321 | 3322 | supports-color@~5.0.0: 3323 | version "5.0.1" 3324 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.0.1.tgz#1c5331f22250c84202805b2f17adf16699f3a39a" 3325 | dependencies: 3326 | has-flag "^2.0.0" 3327 | 3328 | tar-stream@^1.5.0: 3329 | version "1.6.1" 3330 | resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-1.6.1.tgz#f84ef1696269d6223ca48f6e1eeede3f7e81f395" 3331 | dependencies: 3332 | bl "^1.0.0" 3333 | buffer-alloc "^1.1.0" 3334 | end-of-stream "^1.0.0" 3335 | fs-constants "^1.0.0" 3336 | readable-stream "^2.3.0" 3337 | to-buffer "^1.1.0" 3338 | xtend "^4.0.0" 3339 | 3340 | tar@^4: 3341 | version "4.4.4" 3342 | resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.4.tgz#ec8409fae9f665a4355cc3b4087d0820232bb8cd" 3343 | dependencies: 3344 | chownr "^1.0.1" 3345 | fs-minipass "^1.2.5" 3346 | minipass "^2.3.3" 3347 | minizlib "^1.1.0" 3348 | mkdirp "^0.5.0" 3349 | safe-buffer "^5.1.2" 3350 | yallist "^3.0.2" 3351 | 3352 | taskkill@^2.0.0: 3353 | version "2.0.0" 3354 | resolved "https://registry.yarnpkg.com/taskkill/-/taskkill-2.0.0.tgz#a354305702a964357033027aa949eaed5331b784" 3355 | dependencies: 3356 | arrify "^1.0.0" 3357 | execa "^0.1.1" 3358 | 3359 | tasklist@^3.1.0: 3360 | version "3.1.0" 3361 | resolved "https://registry.yarnpkg.com/tasklist/-/tasklist-3.1.0.tgz#873a98a4e45cbdecfa2c2ee18865353057e63696" 3362 | dependencies: 3363 | neat-csv "^2.1.0" 3364 | pify "^2.2.0" 3365 | sec "^1.0.0" 3366 | 3367 | teen_process@1.x, teen_process@^1.11.0, teen_process@^1.3.0, teen_process@^1.3.1, teen_process@^1.5.1, teen_process@^1.6.0, teen_process@^1.7.0, teen_process@^1.7.1, teen_process@^1.8.2, teen_process@^1.9.0: 3368 | version "1.12.1" 3369 | resolved "https://registry.yarnpkg.com/teen_process/-/teen_process-1.12.1.tgz#e00fc43e93878da337858e31b04a8bcdd2500217" 3370 | dependencies: 3371 | appium-support "^2.0.10" 3372 | babel-runtime "=5.8.24" 3373 | shell-quote "^1.4.3" 3374 | source-map-support "^0.5.3" 3375 | through "^2.3.8" 3376 | 3377 | temp@^0.8.3: 3378 | version "0.8.3" 3379 | resolved "https://registry.yarnpkg.com/temp/-/temp-0.8.3.tgz#e0c6bc4d26b903124410e4fed81103014dfc1f59" 3380 | dependencies: 3381 | os-tmpdir "^1.0.0" 3382 | rimraf "~2.2.6" 3383 | 3384 | thenify-all@^1.0.0: 3385 | version "1.6.0" 3386 | resolved "https://registry.yarnpkg.com/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726" 3387 | dependencies: 3388 | thenify ">= 3.1.0 < 4" 3389 | 3390 | "thenify@>= 3.1.0 < 4": 3391 | version "3.3.0" 3392 | resolved "https://registry.yarnpkg.com/thenify/-/thenify-3.3.0.tgz#e69e38a1babe969b0108207978b9f62b88604839" 3393 | dependencies: 3394 | any-promise "^1.0.0" 3395 | 3396 | through2@^2.0.2, through2@^2.0.3: 3397 | version "2.0.3" 3398 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 3399 | dependencies: 3400 | readable-stream "^2.1.5" 3401 | xtend "~4.0.1" 3402 | 3403 | through@2, through@^2.3.6, through@^2.3.7, through@^2.3.8, through@~2.3.4: 3404 | version "2.3.8" 3405 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3406 | 3407 | tinycolor2@^1.1.2: 3408 | version "1.4.1" 3409 | resolved "https://registry.yarnpkg.com/tinycolor2/-/tinycolor2-1.4.1.tgz#f4fad333447bc0b07d4dc8e9209d8f39a8ac77e8" 3410 | 3411 | title-case@^2.1.1: 3412 | version "2.1.1" 3413 | resolved "https://registry.yarnpkg.com/title-case/-/title-case-2.1.1.tgz#3e127216da58d2bc5becf137ab91dae3a7cd8faa" 3414 | dependencies: 3415 | no-case "^2.2.0" 3416 | upper-case "^1.0.3" 3417 | 3418 | tmp@0.0.30: 3419 | version "0.0.30" 3420 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.30.tgz#72419d4a8be7d6ce75148fd8b324e593a711c2ed" 3421 | dependencies: 3422 | os-tmpdir "~1.0.1" 3423 | 3424 | tmp@^0.0.33: 3425 | version "0.0.33" 3426 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 3427 | dependencies: 3428 | os-tmpdir "~1.0.2" 3429 | 3430 | to-buffer@^1.1.0: 3431 | version "1.1.1" 3432 | resolved "https://registry.yarnpkg.com/to-buffer/-/to-buffer-1.1.1.tgz#493bd48f62d7c43fcded313a03dcadb2e1213a80" 3433 | 3434 | tough-cookie@>=2.3.3: 3435 | version "2.4.2" 3436 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.4.2.tgz#aa9133154518b494efab98a58247bfc38818c00c" 3437 | dependencies: 3438 | psl "^1.1.24" 3439 | punycode "^1.4.1" 3440 | 3441 | tough-cookie@~2.3.3: 3442 | version "2.3.4" 3443 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655" 3444 | dependencies: 3445 | punycode "^1.4.1" 3446 | 3447 | trim@0.0.1: 3448 | version "0.0.1" 3449 | resolved "https://registry.yarnpkg.com/trim/-/trim-0.0.1.tgz#5858547f6b290757ee95cccc666fb50084c460dd" 3450 | 3451 | ts-node@^6.1.1: 3452 | version "6.2.0" 3453 | resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-6.2.0.tgz#65a0ae2acce319ea4fd7ac8d7c9f1f90c5da6baf" 3454 | integrity sha512-ZNT+OEGfUNVMGkpIaDJJ44Zq3Yr0bkU/ugN1PHbU+/01Z7UV1fsELRiTx1KuQNvQ1A3pGh3y25iYF6jXgxV21A== 3455 | dependencies: 3456 | arrify "^1.0.0" 3457 | buffer-from "^1.1.0" 3458 | diff "^3.1.0" 3459 | make-error "^1.1.1" 3460 | minimist "^1.2.0" 3461 | mkdirp "^0.5.1" 3462 | source-map-support "^0.5.6" 3463 | yn "^2.0.0" 3464 | 3465 | tslib@^1.8.0, tslib@^1.8.1: 3466 | version "1.9.2" 3467 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.2.tgz#8be0cc9a1f6dc7727c38deb16c2ebd1a2892988e" 3468 | 3469 | tslint@^5.10.0: 3470 | version "5.14.0" 3471 | resolved "https://registry.yarnpkg.com/tslint/-/tslint-5.14.0.tgz#be62637135ac244fc9b37ed6ea5252c9eba1616e" 3472 | integrity sha512-IUla/ieHVnB8Le7LdQFRGlVJid2T/gaJe5VkjzRVSRR6pA2ODYrnfR1hmxi+5+au9l50jBwpbBL34txgv4NnTQ== 3473 | dependencies: 3474 | babel-code-frame "^6.22.0" 3475 | builtin-modules "^1.1.1" 3476 | chalk "^2.3.0" 3477 | commander "^2.12.1" 3478 | diff "^3.2.0" 3479 | glob "^7.1.1" 3480 | js-yaml "^3.7.0" 3481 | minimatch "^3.0.4" 3482 | mkdirp "^0.5.1" 3483 | resolve "^1.3.2" 3484 | semver "^5.3.0" 3485 | tslib "^1.8.0" 3486 | tsutils "^2.29.0" 3487 | 3488 | tsutils@^2.29.0: 3489 | version "2.29.0" 3490 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-2.29.0.tgz#32b488501467acbedd4b85498673a0812aca0b99" 3491 | integrity sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA== 3492 | dependencies: 3493 | tslib "^1.8.1" 3494 | 3495 | tunnel-agent@^0.6.0: 3496 | version "0.6.0" 3497 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3498 | dependencies: 3499 | safe-buffer "^5.0.1" 3500 | 3501 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3502 | version "0.14.5" 3503 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3504 | 3505 | type-detect@^4.0.0: 3506 | version "4.0.8" 3507 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" 3508 | 3509 | type-is@~1.6.15, type-is@~1.6.16: 3510 | version "1.6.16" 3511 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.16.tgz#f89ce341541c672b25ee7ae3c73dee3b2be50194" 3512 | dependencies: 3513 | media-typer "0.3.0" 3514 | mime-types "~2.1.18" 3515 | 3516 | typedarray@^0.0.6: 3517 | version "0.0.6" 3518 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3519 | 3520 | typescript@^2.9.2: 3521 | version "2.9.2" 3522 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.9.2.tgz#1cbf61d05d6b96269244eb6a3bce4bd914e0f00c" 3523 | integrity sha512-Gr4p6nFNaoufRIY4NMdpQRNmgxVIGMs4Fcu/ujdYk3nAZqk7supzBE9idmvfZIlH/Cuj//dvi+019qEue9lV0w== 3524 | 3525 | universalify@^0.1.0: 3526 | version "0.1.1" 3527 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.1.tgz#fa71badd4437af4c148841e3b3b165f9e9e590b7" 3528 | 3529 | unorm@^1.4.1: 3530 | version "1.4.1" 3531 | resolved "https://registry.yarnpkg.com/unorm/-/unorm-1.4.1.tgz#364200d5f13646ca8bcd44490271335614792300" 3532 | 3533 | unpipe@1.0.0, unpipe@~1.0.0: 3534 | version "1.0.0" 3535 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 3536 | 3537 | upper-case@^1.0.3: 3538 | version "1.1.3" 3539 | resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598" 3540 | 3541 | urix@^0.1.0: 3542 | version "0.1.0" 3543 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 3544 | 3545 | url-regex@^3.0.0: 3546 | version "3.2.0" 3547 | resolved "https://registry.yarnpkg.com/url-regex/-/url-regex-3.2.0.tgz#dbad1e0c9e29e105dd0b1f09f6862f7fdb482724" 3548 | dependencies: 3549 | ip-regex "^1.0.1" 3550 | 3551 | url@^0.11.0, url@~0.11.0: 3552 | version "0.11.0" 3553 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 3554 | dependencies: 3555 | punycode "1.3.2" 3556 | querystring "0.2.0" 3557 | 3558 | utf7@^1.0.0: 3559 | version "1.0.2" 3560 | resolved "https://registry.yarnpkg.com/utf7/-/utf7-1.0.2.tgz#955f490aae653ba220b9456a0a8776c199360991" 3561 | dependencies: 3562 | semver "~5.3.0" 3563 | 3564 | util-arity@^1.0.2: 3565 | version "1.1.0" 3566 | resolved "https://registry.yarnpkg.com/util-arity/-/util-arity-1.1.0.tgz#59d01af1fdb3fede0ac4e632b0ab5f6ce97c9330" 3567 | 3568 | util-deprecate@~1.0.1: 3569 | version "1.0.2" 3570 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3571 | 3572 | util@^0.10.3: 3573 | version "0.10.4" 3574 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.4.tgz#3aa0125bfe668a4672de58857d3ace27ecb76901" 3575 | dependencies: 3576 | inherits "2.0.3" 3577 | 3578 | utils-merge@1.0.1: 3579 | version "1.0.1" 3580 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" 3581 | 3582 | uuid-js@^0.7.5: 3583 | version "0.7.5" 3584 | resolved "https://registry.yarnpkg.com/uuid-js/-/uuid-js-0.7.5.tgz#6c886d02a53d2d40dcf25d91a170b4a7b25b94d0" 3585 | 3586 | uuid@^3.0.0, uuid@^3.0.1, uuid@^3.1.0: 3587 | version "3.2.1" 3588 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14" 3589 | 3590 | validate.js@^0.12.0: 3591 | version "0.12.0" 3592 | resolved "https://registry.yarnpkg.com/validate.js/-/validate.js-0.12.0.tgz#17f989e37c192ea2f826bbf19bf4e97e6e4be68f" 3593 | 3594 | vary@~1.1.2: 3595 | version "1.1.2" 3596 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" 3597 | 3598 | verror@1.10.0, verror@^1.9.0: 3599 | version "1.10.0" 3600 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 3601 | dependencies: 3602 | assert-plus "^1.0.0" 3603 | core-util-is "1.0.2" 3604 | extsprintf "^1.2.0" 3605 | 3606 | walkdir@^0.0.11: 3607 | version "0.0.11" 3608 | resolved "https://registry.yarnpkg.com/walkdir/-/walkdir-0.0.11.tgz#a16d025eb931bd03b52f308caed0f40fcebe9532" 3609 | 3610 | wdio-allure-reporter@^0.6.2: 3611 | version "0.6.3" 3612 | resolved "https://registry.yarnpkg.com/wdio-allure-reporter/-/wdio-allure-reporter-0.6.3.tgz#400abd6858a3bd9b8c6181f6fb0430046d286b09" 3613 | integrity sha512-CNFQsW1v4KSU1INrQHcRH3jaS6kymzTD9vvvBzlwYKXtlrsR6No3Esce2H+1AajUKoxtC5G3MOuo/+tgKqhAFQ== 3614 | dependencies: 3615 | allure-js-commons "^1.3.1" 3616 | babel-runtime "^6.26.0" 3617 | 3618 | wdio-appium-service@^0.2.3: 3619 | version "0.2.3" 3620 | resolved "https://registry.yarnpkg.com/wdio-appium-service/-/wdio-appium-service-0.2.3.tgz#988c5c545b06ba184e6245f49ae8420071fa4009" 3621 | 3622 | wdio-cucumber-framework@^2.1.0: 3623 | version "2.2.8" 3624 | resolved "https://registry.yarnpkg.com/wdio-cucumber-framework/-/wdio-cucumber-framework-2.2.8.tgz#41a1a27ec0d676639c044ca1676b9d30f76debc8" 3625 | integrity sha512-4ZCJ9REiz0Ulj7hjlHq6gm00NSfOSpn2sdclbyVEsmpj5zOeKxWaOonviYikl7J1PDYNKV1VTlLEIk5v/TwZiQ== 3626 | dependencies: 3627 | babel-runtime "^6.26.0" 3628 | cucumber "^4.1.0" 3629 | glob "^7.1.2" 3630 | is-glob "^4.0.0" 3631 | mockery "~2.1.0" 3632 | wdio-sync "0.7.3" 3633 | 3634 | wdio-dot-reporter@~0.0.8: 3635 | version "0.0.9" 3636 | resolved "https://registry.yarnpkg.com/wdio-dot-reporter/-/wdio-dot-reporter-0.0.9.tgz#929b2adafd49d6b0534fda068e87319b47e38fe5" 3637 | 3638 | wdio-spec-reporter@^0.1.4: 3639 | version "0.1.5" 3640 | resolved "https://registry.yarnpkg.com/wdio-spec-reporter/-/wdio-spec-reporter-0.1.5.tgz#6d6f865deac6b36f96988c1204cc81099b75fc7e" 3641 | integrity sha512-MqvgTow8hFwhFT47q67JwyJyeynKodGRQCxF7ijKPGfsaG1NLssbXYc0JhiL7SiAyxnQxII0UxzTCd3I6sEdkg== 3642 | dependencies: 3643 | babel-runtime "~6.26.0" 3644 | chalk "^2.3.0" 3645 | humanize-duration "~3.15.0" 3646 | 3647 | wdio-sync@0.7.3: 3648 | version "0.7.3" 3649 | resolved "https://registry.yarnpkg.com/wdio-sync/-/wdio-sync-0.7.3.tgz#858c7439c18c0dbdcd2e25e29db8a0ea2f34bc04" 3650 | integrity sha512-ukASSHOQmOxaz5HTILR0jykqlHBtAPsBpMtwhpiG0aW9uc7SO7PF+E5LhVvTG4ypAh+UGmY3rTjohOsqDr39jw== 3651 | dependencies: 3652 | babel-runtime "^6.26.0" 3653 | fibers "^3.0.0" 3654 | object.assign "^4.0.3" 3655 | 3656 | webdriverio@^4.12.0: 3657 | version "4.14.4" 3658 | resolved "https://registry.yarnpkg.com/webdriverio/-/webdriverio-4.14.4.tgz#f7a94e9a6530819796088f42b009833d83de0386" 3659 | integrity sha512-Knp2vzuzP5c5ybgLu+zTwy/l1Gh0bRP4zAr8NWcrStbuomm9Krn9oRF0rZucT6AyORpXinETzmeowFwIoo7mNA== 3660 | dependencies: 3661 | archiver "~2.1.0" 3662 | babel-runtime "^6.26.0" 3663 | css-parse "^2.0.0" 3664 | css-value "~0.0.1" 3665 | deepmerge "~2.0.1" 3666 | ejs "~2.5.6" 3667 | gaze "~1.1.2" 3668 | glob "~7.1.1" 3669 | grapheme-splitter "^1.0.2" 3670 | inquirer "~3.3.0" 3671 | json-stringify-safe "~5.0.1" 3672 | mkdirp "~0.5.1" 3673 | npm-install-package "~2.1.0" 3674 | optimist "~0.6.1" 3675 | q "~1.5.0" 3676 | request "^2.83.0" 3677 | rgb2hex "^0.1.9" 3678 | safe-buffer "~5.1.1" 3679 | supports-color "~5.0.0" 3680 | url "~0.11.0" 3681 | wdio-dot-reporter "~0.0.8" 3682 | wgxpath "~1.0.0" 3683 | 3684 | wgxpath@~1.0.0: 3685 | version "1.0.0" 3686 | resolved "https://registry.yarnpkg.com/wgxpath/-/wgxpath-1.0.0.tgz#eef8a4b9d558cc495ad3a9a2b751597ecd9af690" 3687 | 3688 | which-module@^2.0.0: 3689 | version "2.0.0" 3690 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 3691 | 3692 | which@^1.2.4, which@^1.2.8, which@^1.2.9: 3693 | version "1.3.1" 3694 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 3695 | dependencies: 3696 | isexe "^2.0.0" 3697 | 3698 | wide-align@^1.1.0: 3699 | version "1.1.3" 3700 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 3701 | dependencies: 3702 | string-width "^1.0.2 || 2" 3703 | 3704 | winston@2.x: 3705 | version "2.4.3" 3706 | resolved "https://registry.yarnpkg.com/winston/-/winston-2.4.3.tgz#7a9fdab371b6d3d9b63a592947846d856948c517" 3707 | dependencies: 3708 | async "~1.0.0" 3709 | colors "1.0.x" 3710 | cycle "1.0.x" 3711 | eyes "0.1.x" 3712 | isstream "0.1.x" 3713 | stack-trace "0.0.x" 3714 | 3715 | wordwrap@~0.0.2: 3716 | version "0.0.3" 3717 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3718 | 3719 | wrap-ansi@^2.0.0: 3720 | version "2.1.0" 3721 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3722 | dependencies: 3723 | string-width "^1.0.1" 3724 | strip-ansi "^3.0.1" 3725 | 3726 | wrappy@1: 3727 | version "1.0.2" 3728 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3729 | 3730 | ws@^5.0.0, ws@^5.1.1: 3731 | version "5.2.0" 3732 | resolved "https://registry.yarnpkg.com/ws/-/ws-5.2.0.tgz#9fd95e3ac7c76f6ae8bcc868a0e3f11f1290c33e" 3733 | dependencies: 3734 | async-limiter "~1.0.0" 3735 | 3736 | xhr@^2.0.1: 3737 | version "2.5.0" 3738 | resolved "https://registry.yarnpkg.com/xhr/-/xhr-2.5.0.tgz#bed8d1676d5ca36108667692b74b316c496e49dd" 3739 | dependencies: 3740 | global "~4.3.0" 3741 | is-function "^1.0.1" 3742 | parse-headers "^2.0.0" 3743 | xtend "^4.0.0" 3744 | 3745 | xml-parse-from-string@^1.0.0: 3746 | version "1.0.1" 3747 | resolved "https://registry.yarnpkg.com/xml-parse-from-string/-/xml-parse-from-string-1.0.1.tgz#a9029e929d3dbcded169f3c6e28238d95a5d5a28" 3748 | 3749 | xml2js@^0.4.17, xml2js@^0.4.5: 3750 | version "0.4.19" 3751 | resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.19.tgz#686c20f213209e94abf0d1bcf1efaa291c7827a7" 3752 | dependencies: 3753 | sax ">=0.6.0" 3754 | xmlbuilder "~9.0.1" 3755 | 3756 | xmlbuilder@^9.0.1, xmlbuilder@^9.0.7, xmlbuilder@~9.0.1: 3757 | version "9.0.7" 3758 | resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-9.0.7.tgz#132ee63d2ec5565c557e20f4c22df9aca686b10d" 3759 | 3760 | xmlcreate@^1.0.1: 3761 | version "1.0.2" 3762 | resolved "https://registry.yarnpkg.com/xmlcreate/-/xmlcreate-1.0.2.tgz#fa6bf762a60a413fb3dd8f4b03c5b269238d308f" 3763 | 3764 | xmldom@0.1.x, xmldom@^0.1.19, xmldom@^0.1.22, xmldom@^0.1.27: 3765 | version "0.1.27" 3766 | resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.1.27.tgz#d501f97b3bdb403af8ef9ecc20573187aadac0e9" 3767 | 3768 | xpath@0.0.27, xpath@^0.0.27: 3769 | version "0.0.27" 3770 | resolved "https://registry.yarnpkg.com/xpath/-/xpath-0.0.27.tgz#dd3421fbdcc5646ac32c48531b4d7e9d0c2cfa92" 3771 | 3772 | xpath@^0.0.24: 3773 | version "0.0.24" 3774 | resolved "https://registry.yarnpkg.com/xpath/-/xpath-0.0.24.tgz#1ade162e1cc523c8d39fc7d06afc16ea216f29fb" 3775 | 3776 | xtend@^4.0.0, xtend@~4.0.1: 3777 | version "4.0.1" 3778 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3779 | 3780 | y18n@^3.2.1: 3781 | version "3.2.1" 3782 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3783 | 3784 | yallist@^2.1.2: 3785 | version "2.1.2" 3786 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3787 | 3788 | yallist@^3.0.0, yallist@^3.0.2: 3789 | version "3.0.2" 3790 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.2.tgz#8452b4bb7e83c7c188d8041c1a837c773d6d8bb9" 3791 | 3792 | yargs-parser@^9.0.2: 3793 | version "9.0.2" 3794 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-9.0.2.tgz#9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077" 3795 | dependencies: 3796 | camelcase "^4.1.0" 3797 | 3798 | yargs@^11.0.0: 3799 | version "11.0.0" 3800 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-11.0.0.tgz#c052931006c5eee74610e5fc0354bedfd08a201b" 3801 | dependencies: 3802 | cliui "^4.0.0" 3803 | decamelize "^1.1.1" 3804 | find-up "^2.1.0" 3805 | get-caller-file "^1.0.1" 3806 | os-locale "^2.0.0" 3807 | require-directory "^2.1.1" 3808 | require-main-filename "^1.0.1" 3809 | set-blocking "^2.0.0" 3810 | string-width "^2.0.0" 3811 | which-module "^2.0.0" 3812 | y18n "^3.2.1" 3813 | yargs-parser "^9.0.2" 3814 | 3815 | yauzl@2.4.1: 3816 | version "2.4.1" 3817 | resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.4.1.tgz#9528f442dab1b2284e58b4379bb194e22e0c4005" 3818 | dependencies: 3819 | fd-slicer "~1.0.1" 3820 | 3821 | yauzl@^2.7.0: 3822 | version "2.9.2" 3823 | resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.9.2.tgz#4fb1bc7ae1fc2f57037b54af6acc8fe1031c5b77" 3824 | dependencies: 3825 | buffer-crc32 "~0.2.3" 3826 | fd-slicer "~1.1.0" 3827 | 3828 | yn@^2.0.0: 3829 | version "2.0.0" 3830 | resolved "https://registry.yarnpkg.com/yn/-/yn-2.0.0.tgz#e5adabc8acf408f6385fc76495684c88e6af689a" 3831 | 3832 | zip-stream@^1.1.0, zip-stream@^1.2.0: 3833 | version "1.2.0" 3834 | resolved "https://registry.yarnpkg.com/zip-stream/-/zip-stream-1.2.0.tgz#a8bc45f4c1b49699c6b90198baacaacdbcd4ba04" 3835 | dependencies: 3836 | archiver-utils "^1.3.0" 3837 | compress-commons "^1.2.0" 3838 | lodash "^4.8.0" 3839 | readable-stream "^2.0.0" 3840 | --------------------------------------------------------------------------------