├── .circleci └── config.yml ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── avatar.png ├── main.css └── photo.jpg ├── capture.js ├── docs ├── ci_flow.png ├── circleci_aws.png ├── component_sample.png ├── prcomment.png └── report_example.png ├── index.html ├── package.json ├── regconfig.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | jobs: 3 | build: 4 | docker: 5 | - image: regviz/node-xcb 6 | 7 | working_directory: ~/repo 8 | 9 | steps: 10 | - checkout 11 | 12 | # Download and cache dependencies 13 | - restore_cache: 14 | keys: 15 | - v1-dependencies-{{ checksum "package.json" }} 16 | # fallback to using the latest cache if no exact match is found 17 | - v1-dependencies- 18 | 19 | - run: yarn install 20 | 21 | - save_cache: 22 | paths: 23 | - node_modules 24 | key: v1-dependencies-{{ checksum "package.json" }} 25 | 26 | # run tests! 27 | - run: yarn test 28 | - run: yarn run reg-suit 29 | 30 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | *.pid.lock 13 | 14 | # Directory for instrumented libs generated by jscoverage/JSCover 15 | lib-cov 16 | 17 | # Coverage directory used by tools like istanbul 18 | coverage 19 | 20 | # nyc test coverage 21 | .nyc_output 22 | 23 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 24 | .grunt 25 | 26 | # Bower dependency directory (https://bower.io/) 27 | bower_components 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # Compiled binary addons (http://nodejs.org/api/addons.html) 33 | build/Release 34 | 35 | # Dependency directories 36 | node_modules/ 37 | jspm_packages/ 38 | 39 | # Typescript v1 declaration files 40 | typings/ 41 | 42 | # Optional npm cache directory 43 | .npm 44 | 45 | # Optional eslint cache 46 | .eslintcache 47 | 48 | # Optional REPL history 49 | .node_repl_history 50 | 51 | # Output of 'npm pack' 52 | *.tgz 53 | 54 | # Yarn Integrity file 55 | .yarn-integrity 56 | 57 | # dotenv environment variables file 58 | .env 59 | 60 | /screenshot/ 61 | .reg/ 62 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Yosuke Kurami 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 | # reg-puppeteer-demo [![CircleCI](https://circleci.com/gh/reg-viz/reg-puppeteer-demo.svg?style=svg)](https://circleci.com/gh/reg-viz/reg-puppeteer-demo) 2 | 3 | This is a demonstration repository to explain how to introduce visual regression testing into your project. 4 | 5 | ## Table of contents 6 | * [Table of contents](#table-of-contents) 7 | * [TL;DR Why visual regression testing?](#tltr-why-visual-regression-testing) 8 | * [Technology](#technology) 9 | * [How to introduce automated visual snapshot testing](#how-to-introduce-automated-visual-snapshot-testing) 10 | + [Requirements](#requirements) 11 | + [Create project](#create-project) 12 | + [Create HTML and CSS](#create-html-and-css) 13 | + [Create script for capturing screenshot](#create-script-for-capturing-screenshot) 14 | + [Prepare AWS credentials](#prepare-aws-credentials) 15 | + [Configure reg-suit](#configure-reg-suit) 16 | + [Create build script for CircleCI](#create-build-script-for-circleci) 17 | + [Configure notification](#configure-notification) 18 | + [Preview report](#preview-report) 19 | * [More information](#more-information) 20 | * [License](#license) 21 | 22 | ## TL;DR Why visual regression testing? 23 | I'm working on a huge SPA(Single Page Application) project as a front-end developer. Day and day we've created a number of components and wrote test codes for them, and we were tired out from writing assertions for DOM to be rendered. 24 | 25 | We considered to introduce snapshot testing. Using this method, the actual snapshot(rendered result) will be used as the expected data in the next test. For example Jest or Ava has API for snapshot testing, however the DOM based snapshot testing can not alert breaking CSS style. 26 | 27 | If the snapshot testing tool detects differences, it does not mean the test is failure. It only means **we need to review the differences**. 28 | 29 | So we need a tool which: 30 | 31 | - tests using visual snapshots 32 | - reports difference 33 | 34 | So we've developed this tool, [reg-suit](https://reg-viz.github.io/reg-suit). The following figure show a example of the report output by reg-suit(and you can see [the actual report](https://github.com/reg-viz/reg-puppeteer-demo/pull/1#issuecomment-346730340)): 35 | 36 | ![report_example](docs/report_example.png) 37 | 38 | Once reg-suit detects visual difference, it creates a report like above so we can review whether the difference is intended or not using this. 39 | 40 | ## Technology 41 | reg-suit is designed to be integrated into various tools or services. 42 | 43 | This sample repository is developed using the following tool stack: 44 | 45 | - [reg-suit](https://github.com/reg-viz/reg-suit): Command line interface to visual regression testing. It only compares pictures, so we should prepare the pictures to test. 46 | - [Puppeteer](https://github.com/GoogleChrome/puppeteer): Node.js library which provides a high-level API to control headless Chrome over the DevTools Protocol. We capture screenshot picture from out HTML using this. 47 | - [AWS S3](https://aws.amazon.com/s3/?nc2=h_m1): We use a S3 bucket to put snapshot images and HTML reports. 48 | - [CircleCI](https://circleci.com/gh/reg-viz/reg-puppeteer-demo): Continuous integration service. We use CircleCI2.0, which provides us Docker integration. 49 | 50 | ![ci_flow](docs/ci_flow.png) 51 | 52 | ## How to introduce automated visual snapshot testing 53 | ### Requirements 54 | Create this sample, you need the followings: 55 | 56 | - Node.js 57 | - GitHub account 58 | - AWS account 59 | - CircleCI account 60 | 61 | ### Create project 62 | First, create a project directory. 63 | 64 | ```sh 65 | mkdir reg-puppeteer-demo 66 | cd reg-puppeteer-demo 67 | git init 68 | npm init 69 | ``` 70 | 71 | ### Create HTML and CSS 72 | And put sample HTML and styles. We'll test this HTML using reg-suit. 73 | 74 | ![component_sample](docs/component_sample.png) 75 | 76 | You can see [the full HTML here(index.html)](index.html). 77 | 78 | ### Create script for capturing screenshot 79 | We need to give a screenshot image of the `index.html` to reg-suit for visual regression testing. So we install Puppeteer, which is a Node.js programmable interface for headless Chrome and gives us [screenshot API](https://github.com/GoogleChrome/puppeteer/blob/master/docs/api.md#pagescreenshotoptions). 80 | 81 | ```sh 82 | npm install -D puppeteer mkdirp 83 | ``` 84 | 85 | The following script enables us to capture the HTML file. 86 | 87 | ```js 88 | /* capture.js */ 89 | 90 | const puppeteer = require('puppeteer'); 91 | const mkdirp = require('mkdirp'); 92 | 93 | async function main() { 94 | const browser = await puppeteer.launch({ args: ['--no-sandbox', '--disable-setuid-sandbox'] }); 95 | let page = await browser.newPage(); 96 | 97 | await page.setViewport({ width: 640, height: 680 }); 98 | await page.goto(`file://${__dirname}/index.html`); 99 | await new Promise(res => setTimeout(() => res(), 300)); 100 | await page.screenshot({ path: 'screenshot/index.png' }); 101 | 102 | await page.close(); 103 | await browser.close(); 104 | } 105 | 106 | mkdirp.sync('screenshot'); 107 | main(); 108 | ``` 109 | 110 | Run this script via `node capture.js` then `index.png` are captured under a `screenshot` directory. 111 | 112 | ### Prepare AWS credentials 113 | We need an AWS account to access S3 at the later step. Get AWS access key and configure it(See also [Managing Access Keys for IAM Users](http://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_access-keys.html#Using_CreateAccessKey)). 114 | 115 | ```sh 116 | export AWS_ACCESS_KEY_ID= 117 | export AWS_SECRET_ACCESS_KEY= 118 | ``` 119 | 120 | Or create a file at `~/.aws/credentials`: 121 | 122 | ``` 123 | [default] 124 | aws_access_key_id = 125 | aws_secret_access_key = 126 | ``` 127 | 128 | ### Configure reg-suit 129 | Next let us configure reg-suit. 130 | 131 | ``` 132 | npm install -D reg-suit 133 | ``` 134 | 135 | After installation, execute reg-suit's initialization sub-command via: 136 | 137 | ``` 138 | npx reg-suit init 139 | ``` 140 | 141 | The first question asks us which plugins to install. For now, we select `reg-keygen-git-hash-plugin` and `reg-publish-s3-plugin`. 142 | 143 | ``` 144 | [reg-suit] info version: 0.6.1 145 | ? Plugin(s) to install (bold: recommended) 146 | ◉ reg-keygen-git-hash-plugin : Detect the snapshot key to be compare with using Git hash. 147 | ◯ reg-notify-github-plugin : Notify reg-suit result to GitHub repository 148 | ❯◉ reg-publish-s3-plugin : Fetch and publish snapshot images to AWS S3. 149 | ◯ reg-notify-slack-plugin : Notify reg-suit result to Slack channel. 150 | ◯ reg-simple-keygen-plugin : Determine snapshot key with given values 151 | ``` 152 | 153 | Questions goes on. At "Working directory" and "Threshold" we pass "Yes". At the "Directory contains actual images" question, we need to tell the `screenshot` directory prepared above step. 154 | 155 | ``` 156 | ? Working directory of reg-suit. .reg 157 | ? Directory contains actual images. screenshot 158 | ? Threshold, ranges from 0 to 1. Smaller value makes the comparison more sensitive. 0 159 | ``` 160 | 161 | Next tell where our S3 bucket is(reg-suit uses the S3 bucket to store snapshot image files). If answer yes to the "Create a new S3 bucket Yes" question, the init command creates a new bucket. 162 | 163 | If you are not ready AWS account, you can re-configure it via `npx reg-suit prepare --plugin publish-s3`. 164 | 165 | ``` 166 | [reg-suit] info Set up reg-publish-s3-plugin: 167 | ? Create a new S3 bucket Yes 168 | [reg-publish-s3-plugin] info Create new S3 bucket: reg-publish-bucket-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx 169 | ``` 170 | 171 | Finally, confirm the settings. So the settings file is created into `regconfig.json`. 172 | 173 | ``` 174 | [reg-suit] info Configuration: 175 | [reg-suit] info {...} 176 | ? Update configuration file Yes 177 | ? Copy sample images to working dir No 178 | [reg-suit] info Initialization ended successfully ✨ 179 | [reg-suit] info Put your images files into /Users/yosuke/workspaces/javascript/reg-puppeteer-demo/screenshot. 180 | ``` 181 | 182 | Configuration is done. Let's commit the changes so far: 183 | 184 | ``` 185 | # .gitignore 186 | 187 | node_modules/ 188 | /screenshot/ 189 | .reg/ 190 | ``` 191 | 192 | ```sh 193 | git add . 194 | git commit -m "first commit" 195 | ``` 196 | 197 | Execute visual regression test via `npx reg-suit run` ! 198 | 199 | ``` 200 | [reg-suit] info version: 0.6.1 201 | [reg-suit] info Comparison Complete 202 | [reg-suit] info Changed items: 0 203 | [reg-suit] info New items: 1 204 | [reg-suit] info Deleted items: 0 205 | [reg-suit] info Passed items: 0 206 | [reg-suit] info The current snapshot key: 'd870bf06068cb801fda9c6d676ac025822910df7' 207 | [reg-suit] info Published snapshot 'd870bf06068cb801fda9c6d676ac025822910df7' successfully. 208 | [reg-suit] info Report URL: https://reg-publish-bucket-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx.s3.amazonaws.com/d870bf06068cb801fda9c6d676ac025822910df7/index.html 209 | ``` 210 | 211 | After running successfully, we can see our first report visiting the URL. This execution is the first and there is no snapshot images to be compared. So all images are recognized as "New items". In the next run reg-suit will use the published snapshots in this execution as "expected images". 212 | 213 | ### Create build script for CircleCI 214 | From here, let's set up automated testing using CircleCI. 215 | 216 | CircleCI 2.x allows us to Docker based testing so we can customize environment for our regression testing. 217 | 218 | To execute Puppeteer on Docker container, we need some libraries except Node.js. We can build this image via the following Dockerfile: 219 | 220 | ```dockerfile 221 | # Dockerfile 222 | FROM node:8 223 | 224 | RUN apt-get update -y 225 | RUN apt-get install -yq gconf-service libasound2 libatk1.0-0 libc6 libcairo2 libcups2 libdbus-1-3 \ 226 | libexpat1 libfontconfig1 libgcc1 libgconf-2-4 libgdk-pixbuf2.0-0 libglib2.0-0 libgtk-3-0 libnspr4 \ 227 | libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 libx11-xcb1 libxcb1 libxcomposite1 \ 228 | libxcursor1 libxdamage1 libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 libxtst6 \ 229 | ca-certificates fonts-liberation libappindicator1 libnss3 lsb-release xdg-utils wget 230 | ``` 231 | 232 | And also we've published image from the above Dockerfile to [regviz/node-xcb](https://hub.docker.com/r/regviz/node-xcb/). 233 | 234 | ```yaml 235 | # .circleci/config.yml 236 | 237 | version: 2 238 | jobs: 239 | build: 240 | docker: 241 | - image: regviz/node-xcb # use custom images to execute Puppeteer 242 | 243 | working_directory: ~/repo 244 | 245 | steps: 246 | - checkout 247 | - run: npm install 248 | - run: node capture.js 249 | - run: npx reg-suit run 250 | ``` 251 | 252 | Push the above YAML file, add repository to CircleCI projects and tell AWS credentials to CircleCI. 253 | 254 | ![circleci_aws](docs/circleci_aws.png) 255 | 256 | Good job, automated visual testing is completed! 257 | 258 | ### Configure notification 259 | reg-suit can notify the comparison result as GitHub pull request's comment. 260 | 261 | ![prcomment](docs/prcomment.png) 262 | 263 | To turn this feature on, install `reg-notify-github-plugin`. 264 | 265 | ```sh 266 | npm install -D reg-notify-github-plugin 267 | ``` 268 | 269 | Ant configure this plugin via the following command: 270 | 271 | ```sh 272 | npx reg-suit prepare --plugin notify-github 273 | ``` 274 | 275 | This procedure asks some questions. Complete the installation following this wizard. 276 | 277 | ### Preview report 278 | We might as well preview the difference report. 279 | 280 | Create a new branch: 281 | 282 | ``` 283 | git checkout -b add-avatar 284 | ``` 285 | 286 | And change `index.html` file: 287 | 288 | ```diff 289 | diff --git a/index.html b/index.html 290 | index f6b31a8..21fbc3f 100644 291 | --- a/index.html 292 | +++ b/index.html 293 | @@ -12,16 +12,22 @@ 294 |
295 |
It's a real "Robot Guitar"
296 |
297 | +
298 | +
299 | +
14h
300 | + Quramy 301 | +
302 | +
303 |
304 | 305 |
306 |
307 | 308 | 309 | - 25 likes 310 | + 30 likes 311 | 312 | 313 | - 3 comments 314 | + 8 comments 315 |
316 |
317 |
318 | ``` 319 | 320 | Commit, push and open a pull request on the GitHub repository. Do you receive comment like [this](https://github.com/reg-viz/reg-puppeteer-demo/pull/2#issuecomment-346731087)? 321 | 322 | ## More information 323 | Please check [docs of reg-suit](https://github.com/reg-viz/reg-suit) out :smile: 324 | 325 | ## License 326 | MIT. See LICENSE file under this repository. 327 | -------------------------------------------------------------------------------- /assets/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reg-viz/reg-puppeteer-demo/98716ede95eb84bdc8283583f1e1fae611f56987/assets/avatar.png -------------------------------------------------------------------------------- /assets/main.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: #D7D8D9; 3 | margin: 0 auto; 4 | } 5 | 6 | .cards { 7 | margin: 0 auto; 8 | padding: 60px 0; 9 | width: 480px; 10 | } 11 | 12 | .ui.card.large { 13 | width: 100%; 14 | } 15 | -------------------------------------------------------------------------------- /assets/photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reg-viz/reg-puppeteer-demo/98716ede95eb84bdc8283583f1e1fae611f56987/assets/photo.jpg -------------------------------------------------------------------------------- /capture.js: -------------------------------------------------------------------------------- 1 | const puppeteer = require('puppeteer'); 2 | const mkdirp = require('mkdirp'); 3 | 4 | async function main() { 5 | const browser = await puppeteer.launch({ args: ['--no-sandbox', '--disable-setuid-sandbox'] }); 6 | let page = await browser.newPage(); 7 | 8 | await page.setViewport({ width: 640, height: 680 }); 9 | await page.goto(`file://${__dirname}/index.html`); 10 | await new Promise(res => setTimeout(() => res(), 300)); 11 | await page.screenshot({ path: 'screenshot/index.png' }); 12 | 13 | await page.close(); 14 | await browser.close(); 15 | } 16 | 17 | mkdirp.sync('screenshot'); 18 | main(); 19 | -------------------------------------------------------------------------------- /docs/ci_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reg-viz/reg-puppeteer-demo/98716ede95eb84bdc8283583f1e1fae611f56987/docs/ci_flow.png -------------------------------------------------------------------------------- /docs/circleci_aws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reg-viz/reg-puppeteer-demo/98716ede95eb84bdc8283583f1e1fae611f56987/docs/circleci_aws.png -------------------------------------------------------------------------------- /docs/component_sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reg-viz/reg-puppeteer-demo/98716ede95eb84bdc8283583f1e1fae611f56987/docs/component_sample.png -------------------------------------------------------------------------------- /docs/prcomment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reg-viz/reg-puppeteer-demo/98716ede95eb84bdc8283583f1e1fae611f56987/docs/prcomment.png -------------------------------------------------------------------------------- /docs/report_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reg-viz/reg-puppeteer-demo/98716ede95eb84bdc8283583f1e1fae611f56987/docs/report_example.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
12 |
13 |
It's a real "Robot Guitar"
14 |
15 |
16 | 17 |
18 |
19 | 20 | 21 | 25 likes 22 | 23 | 24 | 3 comments 25 |
26 |
27 |
28 | 29 | 30 |
31 |
32 |
33 |
34 | 35 | 36 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "scripts": { 4 | "test": "node capture.js", 5 | "reg-suit": "reg-suit run" 6 | }, 7 | "devDependencies": { 8 | "mkdirp": "^0.5.1", 9 | "puppeteer": "^2.0.0", 10 | "reg-keygen-git-hash-plugin": "^0.7.25", 11 | "reg-notify-github-plugin": "^0.7.26", 12 | "reg-publish-s3-plugin": "^0.7.25", 13 | "reg-suit": "^0.8.4" 14 | }, 15 | "dependencies": { 16 | "semantic-ui-css": "^2.4.1" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /regconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "core": { 3 | "workingDir": ".reg", 4 | "actualDir": "screenshot", 5 | "threshold": 0, 6 | "ximgdiff": { 7 | "invocationType": "client" 8 | } 9 | }, 10 | "plugins": { 11 | "reg-keygen-git-hash-plugin": true, 12 | "reg-notify-github-plugin": { 13 | "clientId": "MzQ0tDAzNzIz0S9KTdctKC0oSC1JTS3STUnNzdc3MTA0gkiUZVYBAA==" 14 | }, 15 | "reg-publish-s3-plugin": { 16 | "bucketName": "reg-publish-bucket-2c260973-434b-4cc9-8e17-a14e72fd062c" 17 | } 18 | } 19 | } -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1: 6 | version "1.1.1" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 8 | 9 | agent-base@^4.3.0: 10 | version "4.3.0" 11 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-4.3.0.tgz#8165f01c436009bccad0b1d122f05ed770efc6ee" 12 | dependencies: 13 | es6-promisify "^5.0.0" 14 | 15 | ajv@^4.9.1: 16 | version "4.11.8" 17 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 18 | dependencies: 19 | co "^4.6.0" 20 | json-stable-stringify "^1.0.1" 21 | 22 | ajv@^5.1.0: 23 | version "5.5.1" 24 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.1.tgz#b38bb8876d9e86bee994956a04e721e88b248eb2" 25 | dependencies: 26 | co "^4.6.0" 27 | fast-deep-equal "^1.0.0" 28 | fast-json-stable-stringify "^2.0.0" 29 | json-schema-traverse "^0.3.0" 30 | 31 | ansi-escapes@^3.0.0: 32 | version "3.0.0" 33 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92" 34 | 35 | ansi-regex@^2.0.0: 36 | version "2.1.1" 37 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 38 | 39 | ansi-regex@^3.0.0: 40 | version "3.0.0" 41 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 42 | 43 | ansi-styles@^3.1.0: 44 | version "3.2.0" 45 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 46 | dependencies: 47 | color-convert "^1.9.0" 48 | 49 | ansi-styles@^3.2.1: 50 | version "3.2.1" 51 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 52 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 53 | dependencies: 54 | color-convert "^1.9.0" 55 | 56 | anymatch@^1.3.0: 57 | version "1.3.2" 58 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 59 | dependencies: 60 | micromatch "^2.1.5" 61 | normalize-path "^2.0.0" 62 | 63 | aproba@^1.0.3: 64 | version "1.2.0" 65 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 66 | 67 | are-we-there-yet@~1.1.2: 68 | version "1.1.4" 69 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 70 | dependencies: 71 | delegates "^1.0.0" 72 | readable-stream "^2.0.6" 73 | 74 | arr-diff@^2.0.0: 75 | version "2.0.0" 76 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 77 | dependencies: 78 | arr-flatten "^1.0.1" 79 | 80 | arr-flatten@^1.0.1: 81 | version "1.1.0" 82 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 83 | 84 | array-filter@~0.0.0: 85 | version "0.0.1" 86 | resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" 87 | 88 | array-find-index@^1.0.1: 89 | version "1.0.2" 90 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 91 | 92 | array-map@~0.0.0: 93 | version "0.0.0" 94 | resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" 95 | 96 | array-reduce@~0.0.0: 97 | version "0.0.0" 98 | resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b" 99 | 100 | array-union@^1.0.1: 101 | version "1.0.2" 102 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 103 | integrity sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk= 104 | dependencies: 105 | array-uniq "^1.0.1" 106 | 107 | array-uniq@^1.0.1: 108 | version "1.0.3" 109 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 110 | integrity sha1-r2rId6Jcx/dOBYiUdThY39sk/bY= 111 | 112 | array-unique@^0.2.1: 113 | version "0.2.1" 114 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 115 | 116 | asn1@~0.2.3: 117 | version "0.2.4" 118 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" 119 | dependencies: 120 | safer-buffer "~2.1.0" 121 | 122 | assert-plus@1.0.0, assert-plus@^1.0.0: 123 | version "1.0.0" 124 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 125 | 126 | assert-plus@^0.2.0: 127 | version "0.2.0" 128 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 129 | 130 | async-each@^1.0.0: 131 | version "1.0.1" 132 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 133 | 134 | async-limiter@~1.0.0: 135 | version "1.0.0" 136 | resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8" 137 | 138 | asynckit@^0.4.0: 139 | version "0.4.0" 140 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 141 | 142 | aws-sdk@^2.432.0: 143 | version "2.567.0" 144 | resolved "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.567.0.tgz#f5b96a2e461b3c6e760040cb5609b36cd0a36cb3" 145 | integrity sha512-JGtO9QvOzOWmpgm/ErS82v6qHw2a4ObNa68eU1ivT+QtiqXPJOAFEBMj4dAu2KwLDr+XsljTRZd7b/7pZhXXNA== 146 | dependencies: 147 | buffer "^4.9.1" 148 | events "^1.1.1" 149 | ieee754 "^1.1.13" 150 | jmespath "^0.15.0" 151 | querystring "^0.2.0" 152 | sax "^1.2.1" 153 | url "^0.10.3" 154 | uuid "^3.3.2" 155 | xml2js "^0.4.19" 156 | 157 | aws-sign2@~0.6.0: 158 | version "0.6.0" 159 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 160 | 161 | aws-sign2@~0.7.0: 162 | version "0.7.0" 163 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 164 | 165 | aws4@^1.2.1, aws4@^1.6.0: 166 | version "1.6.0" 167 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 168 | 169 | babel-runtime@^6.9.2: 170 | version "6.26.0" 171 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 172 | dependencies: 173 | core-js "^2.4.0" 174 | regenerator-runtime "^0.11.0" 175 | 176 | balanced-match@^1.0.0: 177 | version "1.0.0" 178 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 179 | 180 | base64-js@^1.0.2: 181 | version "1.2.1" 182 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.1.tgz#a91947da1f4a516ea38e5b4ec0ec3773675e0886" 183 | 184 | bcrypt-pbkdf@^1.0.0: 185 | version "1.0.2" 186 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" 187 | dependencies: 188 | tweetnacl "^0.14.3" 189 | 190 | binary-extensions@^1.0.0: 191 | version "1.11.0" 192 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 193 | 194 | block-stream@*: 195 | version "0.0.9" 196 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 197 | dependencies: 198 | inherits "~2.0.0" 199 | 200 | bluebird@3.5.5: 201 | version "3.5.5" 202 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.5.tgz#a8d0afd73251effbbd5fe384a77d73003c17a71f" 203 | integrity sha512-5am6HnnfN+urzt4yfg7IgTbotDjIT/u8AJpEt0sIU9FtXfVeezXAPKswrG+xKUCOYAINpSdgZVDU6QFh+cuH3w== 204 | 205 | bluebird@^3.5.0: 206 | version "3.5.1" 207 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.1.tgz#d9551f9de98f1fcda1e683d17ee91a0602ee2eb9" 208 | 209 | boom@2.x.x: 210 | version "2.10.1" 211 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 212 | dependencies: 213 | hoek "2.x.x" 214 | 215 | boom@4.x.x: 216 | version "4.3.1" 217 | resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31" 218 | dependencies: 219 | hoek "4.x.x" 220 | 221 | boom@5.x.x: 222 | version "5.2.0" 223 | resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02" 224 | dependencies: 225 | hoek "4.x.x" 226 | 227 | brace-expansion@^1.1.7: 228 | version "1.1.11" 229 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 230 | dependencies: 231 | balanced-match "^1.0.0" 232 | concat-map "0.0.1" 233 | 234 | braces@^1.8.2: 235 | version "1.8.5" 236 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 237 | dependencies: 238 | expand-range "^1.8.1" 239 | preserve "^0.2.0" 240 | repeat-element "^1.1.2" 241 | 242 | buffer-from@^1.0.0: 243 | version "1.1.1" 244 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 245 | integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== 246 | 247 | buffer@^4.9.1: 248 | version "4.9.1" 249 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 250 | integrity sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg= 251 | dependencies: 252 | base64-js "^1.0.2" 253 | ieee754 "^1.1.4" 254 | isarray "^1.0.0" 255 | 256 | builtin-modules@^1.0.0: 257 | version "1.1.1" 258 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 259 | 260 | camelcase-keys@^2.0.0: 261 | version "2.1.0" 262 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 263 | dependencies: 264 | camelcase "^2.0.0" 265 | map-obj "^1.0.0" 266 | 267 | camelcase@^2.0.0: 268 | version "2.1.1" 269 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 270 | 271 | camelcase@^4.1.0: 272 | version "4.1.0" 273 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 274 | 275 | caseless@~0.12.0: 276 | version "0.12.0" 277 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 278 | 279 | chalk@2.4.2: 280 | version "2.4.2" 281 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 282 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 283 | dependencies: 284 | ansi-styles "^3.2.1" 285 | escape-string-regexp "^1.0.5" 286 | supports-color "^5.3.0" 287 | 288 | chalk@^2.0.0, chalk@^2.0.1: 289 | version "2.3.0" 290 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba" 291 | dependencies: 292 | ansi-styles "^3.1.0" 293 | escape-string-regexp "^1.0.5" 294 | supports-color "^4.0.0" 295 | 296 | chardet@^0.4.0: 297 | version "0.4.2" 298 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" 299 | 300 | chokidar@^1.6.0: 301 | version "1.7.0" 302 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 303 | dependencies: 304 | anymatch "^1.3.0" 305 | async-each "^1.0.0" 306 | glob-parent "^2.0.0" 307 | inherits "^2.0.1" 308 | is-binary-path "^1.0.0" 309 | is-glob "^2.0.0" 310 | path-is-absolute "^1.0.0" 311 | readdirp "^2.0.0" 312 | optionalDependencies: 313 | fsevents "^1.0.0" 314 | 315 | cli-cursor@^2.1.0: 316 | version "2.1.0" 317 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 318 | dependencies: 319 | restore-cursor "^2.0.0" 320 | 321 | cli-progress@^1.4.1: 322 | version "1.6.1" 323 | resolved "https://registry.yarnpkg.com/cli-progress/-/cli-progress-1.6.1.tgz#e5a4ceb61bdf94c8c7a934dffa432785a35ab679" 324 | dependencies: 325 | colors "^1.1.2" 326 | 327 | cli-spinner@0.2.10: 328 | version "0.2.10" 329 | resolved "https://registry.yarnpkg.com/cli-spinner/-/cli-spinner-0.2.10.tgz#f7d617a36f5c47a7bc6353c697fc9338ff782a47" 330 | integrity sha512-U0sSQ+JJvSLi1pAYuJykwiA8Dsr15uHEy85iCJ6A+0DjVxivr3d+N2Wjvodeg89uP5K6TswFkKBfAD7B3YSn/Q== 331 | 332 | cli-spinner@^0.2.6: 333 | version "0.2.7" 334 | resolved "https://registry.yarnpkg.com/cli-spinner/-/cli-spinner-0.2.7.tgz#7f7868a6f52ed5a621d5169ced428b61847a97c7" 335 | 336 | cli-width@^2.0.0: 337 | version "2.2.0" 338 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 339 | 340 | cliui@^3.2.0: 341 | version "3.2.0" 342 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 343 | dependencies: 344 | string-width "^1.0.1" 345 | strip-ansi "^3.0.1" 346 | wrap-ansi "^2.0.0" 347 | 348 | co@^4.6.0: 349 | version "4.6.0" 350 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 351 | 352 | code-point-at@^1.0.0: 353 | version "1.1.0" 354 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 355 | 356 | color-convert@^1.9.0: 357 | version "1.9.1" 358 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 359 | dependencies: 360 | color-name "^1.1.1" 361 | 362 | color-name@^1.1.1: 363 | version "1.1.3" 364 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 365 | 366 | colors@^1.1.2: 367 | version "1.1.2" 368 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" 369 | 370 | combined-stream@^1.0.5, combined-stream@~1.0.5: 371 | version "1.0.5" 372 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 373 | dependencies: 374 | delayed-stream "~1.0.0" 375 | 376 | concat-map@0.0.1: 377 | version "0.0.1" 378 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 379 | 380 | concat-stream@1.6.2: 381 | version "1.6.2" 382 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" 383 | integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== 384 | dependencies: 385 | buffer-from "^1.0.0" 386 | inherits "^2.0.3" 387 | readable-stream "^2.2.2" 388 | typedarray "^0.0.6" 389 | 390 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 391 | version "1.1.0" 392 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 393 | 394 | core-js@^2.4.0: 395 | version "2.5.3" 396 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e" 397 | 398 | core-util-is@1.0.2, core-util-is@~1.0.0: 399 | version "1.0.2" 400 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 401 | 402 | cp-file@^4.2.0: 403 | version "4.2.0" 404 | resolved "https://registry.yarnpkg.com/cp-file/-/cp-file-4.2.0.tgz#715361663b71ede0b6dddbc3c80e2ba02e725ec3" 405 | dependencies: 406 | graceful-fs "^4.1.2" 407 | make-dir "^1.0.0" 408 | nested-error-stacks "^2.0.0" 409 | pify "^2.3.0" 410 | safe-buffer "^5.0.1" 411 | 412 | cpx@^1.5.0: 413 | version "1.5.0" 414 | resolved "https://registry.yarnpkg.com/cpx/-/cpx-1.5.0.tgz#185be018511d87270dedccc293171e37655ab88f" 415 | dependencies: 416 | babel-runtime "^6.9.2" 417 | chokidar "^1.6.0" 418 | duplexer "^0.1.1" 419 | glob "^7.0.5" 420 | glob2base "^0.0.12" 421 | minimatch "^3.0.2" 422 | mkdirp "^0.5.1" 423 | resolve "^1.1.7" 424 | safe-buffer "^5.0.1" 425 | shell-quote "^1.6.1" 426 | subarg "^1.0.0" 427 | 428 | cross-spawn@7.0.0: 429 | version "7.0.0" 430 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.0.tgz#21ef9470443262f33dba80b2705a91db959b2e03" 431 | integrity sha512-6U/8SMK2FBNnB21oQ4+6Nsodxanw1gTkntYA2zBdkFYFu3ZDx65P2ONEXGSvob/QS6REjVHQ9zxzdOafwFdstw== 432 | dependencies: 433 | path-key "^3.1.0" 434 | shebang-command "^1.2.0" 435 | which "^1.2.9" 436 | 437 | cross-spawn@^5.0.1: 438 | version "5.1.0" 439 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 440 | dependencies: 441 | lru-cache "^4.0.1" 442 | shebang-command "^1.2.0" 443 | which "^1.2.9" 444 | 445 | cryptiles@2.x.x: 446 | version "2.0.5" 447 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 448 | dependencies: 449 | boom "2.x.x" 450 | 451 | cryptiles@3.x.x: 452 | version "3.1.2" 453 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe" 454 | dependencies: 455 | boom "5.x.x" 456 | 457 | currently-unhandled@^0.4.1: 458 | version "0.4.1" 459 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 460 | dependencies: 461 | array-find-index "^1.0.1" 462 | 463 | dashdash@^1.12.0: 464 | version "1.14.1" 465 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 466 | dependencies: 467 | assert-plus "^1.0.0" 468 | 469 | debug@2.6.9, debug@^2.2.0: 470 | version "2.6.9" 471 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 472 | dependencies: 473 | ms "2.0.0" 474 | 475 | debug@^3.1.0: 476 | version "3.2.6" 477 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" 478 | dependencies: 479 | ms "^2.1.1" 480 | 481 | debug@^4.1.0: 482 | version "4.1.1" 483 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" 484 | integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== 485 | dependencies: 486 | ms "^2.1.1" 487 | 488 | decamelize@^1.1.1, decamelize@^1.1.2: 489 | version "1.2.0" 490 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 491 | 492 | decode-tiff@^0.2.0: 493 | version "0.2.1" 494 | resolved "https://registry.yarnpkg.com/decode-tiff/-/decode-tiff-0.2.1.tgz#c18ca071b8decf5d49b0c732ead4f6bb061142cb" 495 | 496 | deep-extend@~0.4.0: 497 | version "0.4.2" 498 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 499 | 500 | define-properties@^1.1.2: 501 | version "1.1.2" 502 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 503 | dependencies: 504 | foreach "^2.0.5" 505 | object-keys "^1.0.8" 506 | 507 | del@3.0.0: 508 | version "3.0.0" 509 | resolved "https://registry.yarnpkg.com/del/-/del-3.0.0.tgz#53ecf699ffcbcb39637691ab13baf160819766e5" 510 | integrity sha1-U+z2mf/LyzljdpGrE7rxYIGXZuU= 511 | dependencies: 512 | globby "^6.1.0" 513 | is-path-cwd "^1.0.0" 514 | is-path-in-cwd "^1.0.0" 515 | p-map "^1.1.1" 516 | pify "^3.0.0" 517 | rimraf "^2.2.8" 518 | 519 | delayed-stream@~1.0.0: 520 | version "1.0.0" 521 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 522 | 523 | delegates@^1.0.0: 524 | version "1.0.0" 525 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 526 | 527 | detect-libc@^1.0.2: 528 | version "1.0.3" 529 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 530 | 531 | duplexer@^0.1.1: 532 | version "0.1.1" 533 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" 534 | 535 | ecc-jsbn@~0.1.1: 536 | version "0.1.2" 537 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" 538 | dependencies: 539 | jsbn "~0.1.0" 540 | safer-buffer "^2.1.0" 541 | 542 | error-ex@^1.2.0: 543 | version "1.3.1" 544 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 545 | dependencies: 546 | is-arrayish "^0.2.1" 547 | 548 | es-abstract@^1.5.1: 549 | version "1.10.0" 550 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.10.0.tgz#1ecb36c197842a00d8ee4c2dfd8646bb97d60864" 551 | dependencies: 552 | es-to-primitive "^1.1.1" 553 | function-bind "^1.1.1" 554 | has "^1.0.1" 555 | is-callable "^1.1.3" 556 | is-regex "^1.0.4" 557 | 558 | es-to-primitive@^1.1.1: 559 | version "1.1.1" 560 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 561 | dependencies: 562 | is-callable "^1.1.1" 563 | is-date-object "^1.0.1" 564 | is-symbol "^1.0.1" 565 | 566 | es6-promise@^4.0.3: 567 | version "4.2.8" 568 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.8.tgz#4eb21594c972bc40553d276e510539143db53e0a" 569 | 570 | es6-promisify@^5.0.0: 571 | version "5.0.0" 572 | resolved "https://registry.yarnpkg.com/es6-promisify/-/es6-promisify-5.0.0.tgz#5109d62f3e56ea967c4b63505aef08291c8a5203" 573 | dependencies: 574 | es6-promise "^4.0.3" 575 | 576 | escape-string-regexp@^1.0.5: 577 | version "1.0.5" 578 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 579 | 580 | events@^1.1.1: 581 | version "1.1.1" 582 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 583 | 584 | execa@^0.7.0: 585 | version "0.7.0" 586 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 587 | dependencies: 588 | cross-spawn "^5.0.1" 589 | get-stream "^3.0.0" 590 | is-stream "^1.1.0" 591 | npm-run-path "^2.0.0" 592 | p-finally "^1.0.0" 593 | signal-exit "^3.0.0" 594 | strip-eof "^1.0.0" 595 | 596 | expand-brackets@^0.1.4: 597 | version "0.1.5" 598 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 599 | dependencies: 600 | is-posix-bracket "^0.1.0" 601 | 602 | expand-range@^1.8.1: 603 | version "1.8.2" 604 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 605 | dependencies: 606 | fill-range "^2.1.0" 607 | 608 | extend@~3.0.0, extend@~3.0.1: 609 | version "3.0.2" 610 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 611 | 612 | external-editor@^2.0.4: 613 | version "2.1.0" 614 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.1.0.tgz#3d026a21b7f95b5726387d4200ac160d372c3b48" 615 | dependencies: 616 | chardet "^0.4.0" 617 | iconv-lite "^0.4.17" 618 | tmp "^0.0.33" 619 | 620 | extglob@^0.3.1: 621 | version "0.3.2" 622 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 623 | dependencies: 624 | is-extglob "^1.0.0" 625 | 626 | extract-zip@^1.6.6: 627 | version "1.6.7" 628 | resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-1.6.7.tgz#a840b4b8af6403264c8db57f4f1a74333ef81fe9" 629 | integrity sha1-qEC0uK9kAyZMjbV/Txp0Mz74H+k= 630 | dependencies: 631 | concat-stream "1.6.2" 632 | debug "2.6.9" 633 | mkdirp "0.5.1" 634 | yauzl "2.4.1" 635 | 636 | extsprintf@1.3.0: 637 | version "1.3.0" 638 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 639 | 640 | extsprintf@^1.2.0: 641 | version "1.4.0" 642 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 643 | 644 | fast-deep-equal@^1.0.0: 645 | version "1.0.0" 646 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 647 | 648 | fast-json-stable-stringify@^2.0.0: 649 | version "2.0.0" 650 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 651 | 652 | fd-slicer@~1.0.1: 653 | version "1.0.1" 654 | resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.0.1.tgz#8b5bcbd9ec327c5041bf9ab023fd6750f1177e65" 655 | dependencies: 656 | pend "~1.2.0" 657 | 658 | figures@^2.0.0: 659 | version "2.0.0" 660 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 661 | dependencies: 662 | escape-string-regexp "^1.0.5" 663 | 664 | filename-regex@^2.0.0: 665 | version "2.0.1" 666 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 667 | 668 | fill-range@^2.1.0: 669 | version "2.2.3" 670 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 671 | dependencies: 672 | is-number "^2.1.0" 673 | isobject "^2.0.0" 674 | randomatic "^1.1.3" 675 | repeat-element "^1.1.2" 676 | repeat-string "^1.5.2" 677 | 678 | find-index@^0.1.1: 679 | version "0.1.1" 680 | resolved "https://registry.yarnpkg.com/find-index/-/find-index-0.1.1.tgz#675d358b2ca3892d795a1ab47232f8b6e2e0dde4" 681 | 682 | find-up@^1.0.0: 683 | version "1.1.2" 684 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 685 | dependencies: 686 | path-exists "^2.0.0" 687 | pinkie-promise "^2.0.0" 688 | 689 | find-up@^2.0.0: 690 | version "2.1.0" 691 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 692 | dependencies: 693 | locate-path "^2.0.0" 694 | 695 | for-in@^1.0.1: 696 | version "1.0.2" 697 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 698 | 699 | for-own@^0.1.4: 700 | version "0.1.5" 701 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 702 | dependencies: 703 | for-in "^1.0.1" 704 | 705 | foreach@^2.0.5: 706 | version "2.0.5" 707 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 708 | 709 | forever-agent@~0.6.1: 710 | version "0.6.1" 711 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 712 | 713 | form-data@~2.1.1: 714 | version "2.1.4" 715 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 716 | dependencies: 717 | asynckit "^0.4.0" 718 | combined-stream "^1.0.5" 719 | mime-types "^2.1.12" 720 | 721 | form-data@~2.3.1: 722 | version "2.3.1" 723 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.1.tgz#6fb94fbd71885306d73d15cc497fe4cc4ecd44bf" 724 | dependencies: 725 | asynckit "^0.4.0" 726 | combined-stream "^1.0.5" 727 | mime-types "^2.1.12" 728 | 729 | fs.realpath@^1.0.0: 730 | version "1.0.0" 731 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 732 | 733 | fsevents@^1.0.0: 734 | version "1.1.3" 735 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8" 736 | dependencies: 737 | nan "^2.3.0" 738 | node-pre-gyp "^0.6.39" 739 | 740 | fstream-ignore@^1.0.5: 741 | version "1.0.5" 742 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 743 | dependencies: 744 | fstream "^1.0.0" 745 | inherits "2" 746 | minimatch "^3.0.0" 747 | 748 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.12: 749 | version "1.0.12" 750 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.12.tgz#4e8ba8ee2d48be4f7d0de505455548eae5932045" 751 | dependencies: 752 | graceful-fs "^4.1.2" 753 | inherits "~2.0.0" 754 | mkdirp ">=0.5 0" 755 | rimraf "2" 756 | 757 | function-bind@^1.0.2, function-bind@^1.1.1: 758 | version "1.1.1" 759 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 760 | 761 | gauge@~2.7.3: 762 | version "2.7.4" 763 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 764 | dependencies: 765 | aproba "^1.0.3" 766 | console-control-strings "^1.0.0" 767 | has-unicode "^2.0.0" 768 | object-assign "^4.1.0" 769 | signal-exit "^3.0.0" 770 | string-width "^1.0.1" 771 | strip-ansi "^3.0.1" 772 | wide-align "^1.1.0" 773 | 774 | get-caller-file@^1.0.1: 775 | version "1.0.2" 776 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 777 | 778 | get-stdin@^4.0.1: 779 | version "4.0.1" 780 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 781 | 782 | get-stream@^3.0.0: 783 | version "3.0.0" 784 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 785 | 786 | getpass@^0.1.1: 787 | version "0.1.7" 788 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 789 | dependencies: 790 | assert-plus "^1.0.0" 791 | 792 | glob-base@^0.3.0: 793 | version "0.3.0" 794 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 795 | dependencies: 796 | glob-parent "^2.0.0" 797 | is-glob "^2.0.0" 798 | 799 | glob-parent@^2.0.0: 800 | version "2.0.0" 801 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 802 | dependencies: 803 | is-glob "^2.0.0" 804 | 805 | glob2base@^0.0.12: 806 | version "0.0.12" 807 | resolved "https://registry.yarnpkg.com/glob2base/-/glob2base-0.0.12.tgz#9d419b3e28f12e83a362164a277055922c9c0d56" 808 | dependencies: 809 | find-index "^0.1.1" 810 | 811 | glob@7.1.4: 812 | version "7.1.4" 813 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255" 814 | integrity sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A== 815 | dependencies: 816 | fs.realpath "^1.0.0" 817 | inflight "^1.0.4" 818 | inherits "2" 819 | minimatch "^3.0.4" 820 | once "^1.3.0" 821 | path-is-absolute "^1.0.0" 822 | 823 | glob@^7.0.3: 824 | version "7.1.6" 825 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 826 | integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== 827 | dependencies: 828 | fs.realpath "^1.0.0" 829 | inflight "^1.0.4" 830 | inherits "2" 831 | minimatch "^3.0.4" 832 | once "^1.3.0" 833 | path-is-absolute "^1.0.0" 834 | 835 | glob@^7.0.5, glob@^7.1.2: 836 | version "7.1.2" 837 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 838 | dependencies: 839 | fs.realpath "^1.0.0" 840 | inflight "^1.0.4" 841 | inherits "2" 842 | minimatch "^3.0.4" 843 | once "^1.3.0" 844 | path-is-absolute "^1.0.0" 845 | 846 | glob@^7.1.3: 847 | version "7.1.5" 848 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.5.tgz#6714c69bee20f3c3e64c4dd905553e532b40cdc0" 849 | dependencies: 850 | fs.realpath "^1.0.0" 851 | inflight "^1.0.4" 852 | inherits "2" 853 | minimatch "^3.0.4" 854 | once "^1.3.0" 855 | path-is-absolute "^1.0.0" 856 | 857 | globby@^6.1.0: 858 | version "6.1.0" 859 | resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" 860 | integrity sha1-9abXDoOV4hyFj7BInWTfAkJNUGw= 861 | dependencies: 862 | array-union "^1.0.1" 863 | glob "^7.0.3" 864 | object-assign "^4.0.1" 865 | pify "^2.0.0" 866 | pinkie-promise "^2.0.0" 867 | 868 | graceful-fs@^4.1.2: 869 | version "4.2.3" 870 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423" 871 | 872 | har-schema@^1.0.5: 873 | version "1.0.5" 874 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 875 | 876 | har-schema@^2.0.0: 877 | version "2.0.0" 878 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 879 | 880 | har-validator@~4.2.1: 881 | version "4.2.1" 882 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 883 | dependencies: 884 | ajv "^4.9.1" 885 | har-schema "^1.0.5" 886 | 887 | har-validator@~5.0.3: 888 | version "5.0.3" 889 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" 890 | dependencies: 891 | ajv "^5.1.0" 892 | har-schema "^2.0.0" 893 | 894 | has-flag@^2.0.0: 895 | version "2.0.0" 896 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 897 | 898 | has-flag@^3.0.0: 899 | version "3.0.0" 900 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 901 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 902 | 903 | has-unicode@^2.0.0: 904 | version "2.0.1" 905 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 906 | 907 | has@^1.0.1: 908 | version "1.0.1" 909 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 910 | dependencies: 911 | function-bind "^1.0.2" 912 | 913 | hawk@3.1.3, hawk@~3.1.3: 914 | version "3.1.3" 915 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 916 | dependencies: 917 | boom "2.x.x" 918 | cryptiles "2.x.x" 919 | hoek "2.x.x" 920 | sntp "1.x.x" 921 | 922 | hawk@~6.0.2: 923 | version "6.0.2" 924 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038" 925 | dependencies: 926 | boom "4.x.x" 927 | cryptiles "3.x.x" 928 | hoek "4.x.x" 929 | sntp "2.x.x" 930 | 931 | hoek@2.x.x: 932 | version "2.16.3" 933 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 934 | 935 | hoek@4.x.x: 936 | version "4.2.0" 937 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.0.tgz#72d9d0754f7fe25ca2d01ad8f8f9a9449a89526d" 938 | 939 | hosted-git-info@^2.1.4: 940 | version "2.5.0" 941 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 942 | 943 | http-signature@~1.1.0: 944 | version "1.1.1" 945 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 946 | dependencies: 947 | assert-plus "^0.2.0" 948 | jsprim "^1.2.2" 949 | sshpk "^1.7.0" 950 | 951 | http-signature@~1.2.0: 952 | version "1.2.0" 953 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 954 | dependencies: 955 | assert-plus "^1.0.0" 956 | jsprim "^1.2.2" 957 | sshpk "^1.7.0" 958 | 959 | https-proxy-agent@^3.0.0: 960 | version "3.0.1" 961 | resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-3.0.1.tgz#b8c286433e87602311b01c8ea34413d856a4af81" 962 | integrity sha512-+ML2Rbh6DAuee7d07tYGEKOEi2voWPUGan+ExdPbPW6Z3svq+JCqr0v8WmKPOkz1vOVykPCBSuobe7G8GJUtVg== 963 | dependencies: 964 | agent-base "^4.3.0" 965 | debug "^3.1.0" 966 | 967 | iconv-lite@^0.4.17: 968 | version "0.4.19" 969 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 970 | 971 | ieee754@^1.1.13: 972 | version "1.1.13" 973 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84" 974 | integrity sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg== 975 | 976 | ieee754@^1.1.4: 977 | version "1.1.8" 978 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 979 | 980 | ignore@^3.3.7: 981 | version "3.3.7" 982 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.7.tgz#612289bfb3c220e186a58118618d5be8c1bab021" 983 | 984 | img-diff-js@0.4.1: 985 | version "0.4.1" 986 | resolved "https://registry.yarnpkg.com/img-diff-js/-/img-diff-js-0.4.1.tgz#d103e246f4fc1380127f85ecfac5068b2942f167" 987 | integrity sha1-0QPiRvT8E4ASf4Xs+sUGiylC8Wc= 988 | dependencies: 989 | decode-tiff "^0.2.0" 990 | jpeg-js "^0.3.3" 991 | mkdirp "^0.5.1" 992 | pixelmatch "^4.0.2" 993 | pngjs "^3.2.0" 994 | 995 | indent-string@^2.1.0: 996 | version "2.1.0" 997 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 998 | dependencies: 999 | repeating "^2.0.0" 1000 | 1001 | inflight@^1.0.4: 1002 | version "1.0.6" 1003 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1004 | dependencies: 1005 | once "^1.3.0" 1006 | wrappy "1" 1007 | 1008 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 1009 | version "2.0.4" 1010 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1011 | 1012 | ini@~1.3.0: 1013 | version "1.3.5" 1014 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1015 | 1016 | inquirer@^3.1.1: 1017 | version "3.3.0" 1018 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" 1019 | dependencies: 1020 | ansi-escapes "^3.0.0" 1021 | chalk "^2.0.0" 1022 | cli-cursor "^2.1.0" 1023 | cli-width "^2.0.0" 1024 | external-editor "^2.0.4" 1025 | figures "^2.0.0" 1026 | lodash "^4.3.0" 1027 | mute-stream "0.0.7" 1028 | run-async "^2.2.0" 1029 | rx-lite "^4.0.8" 1030 | rx-lite-aggregates "^4.0.8" 1031 | string-width "^2.1.0" 1032 | strip-ansi "^4.0.0" 1033 | through "^2.3.6" 1034 | 1035 | invert-kv@^1.0.0: 1036 | version "1.0.0" 1037 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1038 | 1039 | is-arrayish@^0.2.1: 1040 | version "0.2.1" 1041 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1042 | 1043 | is-binary-path@^1.0.0: 1044 | version "1.0.1" 1045 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1046 | dependencies: 1047 | binary-extensions "^1.0.0" 1048 | 1049 | is-buffer@^1.1.5: 1050 | version "1.1.6" 1051 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1052 | 1053 | is-builtin-module@^1.0.0: 1054 | version "1.0.0" 1055 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1056 | dependencies: 1057 | builtin-modules "^1.0.0" 1058 | 1059 | is-callable@^1.1.1, is-callable@^1.1.3: 1060 | version "1.1.3" 1061 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 1062 | 1063 | is-date-object@^1.0.1: 1064 | version "1.0.1" 1065 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1066 | 1067 | is-dotfile@^1.0.0: 1068 | version "1.0.3" 1069 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1070 | 1071 | is-equal-shallow@^0.1.3: 1072 | version "0.1.3" 1073 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1074 | dependencies: 1075 | is-primitive "^2.0.0" 1076 | 1077 | is-extendable@^0.1.1: 1078 | version "0.1.1" 1079 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1080 | 1081 | is-extglob@^1.0.0: 1082 | version "1.0.0" 1083 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1084 | 1085 | is-finite@^1.0.0: 1086 | version "1.0.2" 1087 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1088 | dependencies: 1089 | number-is-nan "^1.0.0" 1090 | 1091 | is-fullwidth-code-point@^1.0.0: 1092 | version "1.0.0" 1093 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1094 | dependencies: 1095 | number-is-nan "^1.0.0" 1096 | 1097 | is-fullwidth-code-point@^2.0.0: 1098 | version "2.0.0" 1099 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1100 | 1101 | is-glob@^2.0.0, is-glob@^2.0.1: 1102 | version "2.0.1" 1103 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1104 | dependencies: 1105 | is-extglob "^1.0.0" 1106 | 1107 | is-number@^2.1.0: 1108 | version "2.1.0" 1109 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1110 | dependencies: 1111 | kind-of "^3.0.2" 1112 | 1113 | is-number@^3.0.0: 1114 | version "3.0.0" 1115 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1116 | dependencies: 1117 | kind-of "^3.0.2" 1118 | 1119 | is-path-cwd@^1.0.0: 1120 | version "1.0.0" 1121 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1122 | integrity sha1-0iXsIxMuie3Tj9p2dHLmLmXxEG0= 1123 | 1124 | is-path-in-cwd@^1.0.0: 1125 | version "1.0.1" 1126 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz#5ac48b345ef675339bd6c7a48a912110b241cf52" 1127 | integrity sha512-FjV1RTW48E7CWM7eE/J2NJvAEEVektecDBVBE5Hh3nM1Jd0kvhHtX68Pr3xsDf857xt3Y4AkwVULK1Vku62aaQ== 1128 | dependencies: 1129 | is-path-inside "^1.0.0" 1130 | 1131 | is-path-inside@^1.0.0: 1132 | version "1.0.1" 1133 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" 1134 | integrity sha1-jvW33lBDej/cprToZe96pVy0gDY= 1135 | dependencies: 1136 | path-is-inside "^1.0.1" 1137 | 1138 | is-posix-bracket@^0.1.0: 1139 | version "0.1.1" 1140 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1141 | 1142 | is-primitive@^2.0.0: 1143 | version "2.0.0" 1144 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1145 | 1146 | is-promise@^2.1.0: 1147 | version "2.1.0" 1148 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1149 | 1150 | is-regex@^1.0.4: 1151 | version "1.0.4" 1152 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 1153 | dependencies: 1154 | has "^1.0.1" 1155 | 1156 | is-stream@^1.1.0: 1157 | version "1.1.0" 1158 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1159 | 1160 | is-symbol@^1.0.1: 1161 | version "1.0.1" 1162 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 1163 | 1164 | is-typedarray@~1.0.0: 1165 | version "1.0.0" 1166 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1167 | 1168 | is-utf8@^0.2.0: 1169 | version "0.2.1" 1170 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1171 | 1172 | is-wsl@^1.1.0: 1173 | version "1.1.0" 1174 | resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" 1175 | integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0= 1176 | 1177 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1178 | version "1.0.0" 1179 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1180 | 1181 | isexe@^2.0.0: 1182 | version "2.0.0" 1183 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1184 | 1185 | isobject@^2.0.0: 1186 | version "2.1.0" 1187 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1188 | dependencies: 1189 | isarray "1.0.0" 1190 | 1191 | isstream@~0.1.2: 1192 | version "0.1.2" 1193 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1194 | 1195 | jmespath@^0.15.0: 1196 | version "0.15.0" 1197 | resolved "https://registry.yarnpkg.com/jmespath/-/jmespath-0.15.0.tgz#a3f222a9aae9f966f5d27c796510e28091764217" 1198 | integrity sha1-o/Iiqarp+Wb10nx5ZRDigJF2Qhc= 1199 | 1200 | jpeg-js@^0.3.3: 1201 | version "0.3.3" 1202 | resolved "https://registry.yarnpkg.com/jpeg-js/-/jpeg-js-0.3.3.tgz#4d60ea7188d1a7598e92f0a8cdcaf5d78286bea6" 1203 | 1204 | jquery@x.*: 1205 | version "3.5.0" 1206 | resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.5.0.tgz#9980b97d9e4194611c36530e7dc46a58d7340fc9" 1207 | integrity sha512-Xb7SVYMvygPxbFMpTFQiHh1J7HClEaThguL15N/Gg37Lri/qKyhRGZYzHRyLH8Stq3Aow0LsHO2O2ci86fCrNQ== 1208 | 1209 | jsbn@~0.1.0: 1210 | version "0.1.1" 1211 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1212 | 1213 | json-schema-traverse@^0.3.0: 1214 | version "0.3.1" 1215 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 1216 | 1217 | json-schema@0.2.3: 1218 | version "0.2.3" 1219 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1220 | 1221 | json-stable-stringify@^1.0.1: 1222 | version "1.0.1" 1223 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1224 | dependencies: 1225 | jsonify "~0.0.0" 1226 | 1227 | json-stringify-safe@~5.0.1: 1228 | version "5.0.1" 1229 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1230 | 1231 | jsonify@~0.0.0: 1232 | version "0.0.0" 1233 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1234 | 1235 | jsprim@^1.2.2: 1236 | version "1.4.1" 1237 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1238 | dependencies: 1239 | assert-plus "1.0.0" 1240 | extsprintf "1.3.0" 1241 | json-schema "0.2.3" 1242 | verror "1.10.0" 1243 | 1244 | kind-of@^3.0.2: 1245 | version "3.2.2" 1246 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1247 | dependencies: 1248 | is-buffer "^1.1.5" 1249 | 1250 | kind-of@^4.0.0: 1251 | version "4.0.0" 1252 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1253 | dependencies: 1254 | is-buffer "^1.1.5" 1255 | 1256 | lcid@^1.0.0: 1257 | version "1.0.0" 1258 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1259 | dependencies: 1260 | invert-kv "^1.0.0" 1261 | 1262 | load-json-file@^1.0.0: 1263 | version "1.1.0" 1264 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1265 | dependencies: 1266 | graceful-fs "^4.1.2" 1267 | parse-json "^2.2.0" 1268 | pify "^2.0.0" 1269 | pinkie-promise "^2.0.0" 1270 | strip-bom "^2.0.0" 1271 | 1272 | load-json-file@^2.0.0: 1273 | version "2.0.0" 1274 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 1275 | dependencies: 1276 | graceful-fs "^4.1.2" 1277 | parse-json "^2.2.0" 1278 | pify "^2.0.0" 1279 | strip-bom "^3.0.0" 1280 | 1281 | locate-path@^2.0.0: 1282 | version "2.0.0" 1283 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1284 | dependencies: 1285 | p-locate "^2.0.0" 1286 | path-exists "^3.0.0" 1287 | 1288 | lodash@4.17.15, lodash@^4.13.1, lodash@^4.17.4, lodash@^4.3.0: 1289 | version "4.17.15" 1290 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" 1291 | 1292 | loud-rejection@^1.0.0: 1293 | version "1.6.0" 1294 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 1295 | dependencies: 1296 | currently-unhandled "^0.4.1" 1297 | signal-exit "^3.0.0" 1298 | 1299 | lru-cache@^4.0.1, lru-cache@^4.1.1: 1300 | version "4.1.1" 1301 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 1302 | dependencies: 1303 | pseudomap "^1.0.2" 1304 | yallist "^2.1.2" 1305 | 1306 | make-dir@3.0.0: 1307 | version "3.0.0" 1308 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.0.0.tgz#1b5f39f6b9270ed33f9f054c5c0f84304989f801" 1309 | integrity sha512-grNJDhb8b1Jm1qeqW5R/O63wUo4UXo2v2HMic6YT9i/HBlF93S8jkMgH7yugvY9ABDShH4VZMn8I+U8+fCNegw== 1310 | dependencies: 1311 | semver "^6.0.0" 1312 | 1313 | make-dir@^1.0.0: 1314 | version "1.1.0" 1315 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.1.0.tgz#19b4369fe48c116f53c2af95ad102c0e39e85d51" 1316 | dependencies: 1317 | pify "^3.0.0" 1318 | 1319 | map-obj@^1.0.0, map-obj@^1.0.1: 1320 | version "1.0.1" 1321 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 1322 | 1323 | md5-file@4.0.0: 1324 | version "4.0.0" 1325 | resolved "https://registry.yarnpkg.com/md5-file/-/md5-file-4.0.0.tgz#f3f7ba1e2dd1144d5bf1de698d0e5f44a4409584" 1326 | integrity sha512-UC0qFwyAjn4YdPpKaDNw6gNxRf7Mcx7jC1UGCY4boCzgvU2Aoc1mOGzTtrjjLKhM5ivsnhoKpQVxKPp+1j1qwg== 1327 | 1328 | mem@^1.1.0: 1329 | version "1.1.0" 1330 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 1331 | dependencies: 1332 | mimic-fn "^1.0.0" 1333 | 1334 | meow@3.7.0: 1335 | version "3.7.0" 1336 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 1337 | integrity sha1-cstmi0JSKCkKu/qFaJJYcwioAfs= 1338 | dependencies: 1339 | camelcase-keys "^2.0.0" 1340 | decamelize "^1.1.2" 1341 | loud-rejection "^1.0.0" 1342 | map-obj "^1.0.1" 1343 | minimist "^1.1.3" 1344 | normalize-package-data "^2.3.4" 1345 | object-assign "^4.0.1" 1346 | read-pkg-up "^1.0.1" 1347 | redent "^1.0.0" 1348 | trim-newlines "^1.0.0" 1349 | 1350 | micromatch@^2.1.5: 1351 | version "2.3.11" 1352 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1353 | dependencies: 1354 | arr-diff "^2.0.0" 1355 | array-unique "^0.2.1" 1356 | braces "^1.8.2" 1357 | expand-brackets "^0.1.4" 1358 | extglob "^0.3.1" 1359 | filename-regex "^2.0.0" 1360 | is-extglob "^1.0.0" 1361 | is-glob "^2.0.1" 1362 | kind-of "^3.0.2" 1363 | normalize-path "^2.0.1" 1364 | object.omit "^2.0.0" 1365 | parse-glob "^3.0.4" 1366 | regex-cache "^0.4.2" 1367 | 1368 | mime-db@~1.30.0: 1369 | version "1.30.0" 1370 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 1371 | 1372 | mime-types@^2.1.12, mime-types@^2.1.15, mime-types@~2.1.17, mime-types@~2.1.7: 1373 | version "2.1.17" 1374 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 1375 | dependencies: 1376 | mime-db "~1.30.0" 1377 | 1378 | mime@^2.0.3: 1379 | version "2.4.4" 1380 | resolved "https://registry.yarnpkg.com/mime/-/mime-2.4.4.tgz#bd7b91135fc6b01cde3e9bae33d659b63d8857e5" 1381 | integrity sha512-LRxmNwziLPT828z+4YkNzloCFC2YM4wrB99k+AV5ZbEyfGNWfG8SO1FUXLmLDBSo89NrJZ4DIWeLjy1CHGhMGA== 1382 | 1383 | mimic-fn@^1.0.0: 1384 | version "1.1.0" 1385 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 1386 | 1387 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 1388 | version "3.0.4" 1389 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1390 | dependencies: 1391 | brace-expansion "^1.1.7" 1392 | 1393 | minimist@0.0.8: 1394 | version "0.0.8" 1395 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1396 | 1397 | minimist@^1.1.0, minimist@^1.1.3, minimist@^1.2.0: 1398 | version "1.2.0" 1399 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1400 | 1401 | mkdirp@0.5.1, "mkdirp@>=0.5 0", mkdirp@^0.5.1: 1402 | version "0.5.1" 1403 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1404 | dependencies: 1405 | minimist "0.0.8" 1406 | 1407 | ms@2.0.0: 1408 | version "2.0.0" 1409 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1410 | 1411 | ms@^2.1.1: 1412 | version "2.1.2" 1413 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1414 | 1415 | mustache@3.1.0: 1416 | version "3.1.0" 1417 | resolved "https://registry.yarnpkg.com/mustache/-/mustache-3.1.0.tgz#9fba26e7aefc5709f07ff585abb7e0abced6c372" 1418 | integrity sha512-3Bxq1R5LBZp7fbFPZzFe5WN4s0q3+gxZaZuZVY+QctYJiCiVgXHOTIC0/HgZuOPFt/6BQcx5u0H2CUOxT/RoGQ== 1419 | 1420 | mute-stream@0.0.7: 1421 | version "0.0.7" 1422 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 1423 | 1424 | nan@^2.3.0: 1425 | version "2.8.0" 1426 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.8.0.tgz#ed715f3fe9de02b57a5e6252d90a96675e1f085a" 1427 | 1428 | nested-error-stacks@^2.0.0: 1429 | version "2.0.0" 1430 | resolved "https://registry.yarnpkg.com/nested-error-stacks/-/nested-error-stacks-2.0.0.tgz#98b2ffaefb4610fa3936f1e71435d30700de2840" 1431 | dependencies: 1432 | inherits "~2.0.1" 1433 | 1434 | node-pre-gyp@^0.6.39: 1435 | version "0.6.39" 1436 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 1437 | dependencies: 1438 | detect-libc "^1.0.2" 1439 | hawk "3.1.3" 1440 | mkdirp "^0.5.1" 1441 | nopt "^4.0.1" 1442 | npmlog "^4.0.2" 1443 | rc "^1.1.7" 1444 | request "2.81.0" 1445 | rimraf "^2.6.1" 1446 | semver "^5.3.0" 1447 | tar "^2.2.1" 1448 | tar-pack "^3.4.0" 1449 | 1450 | nopt@^4.0.1: 1451 | version "4.0.1" 1452 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1453 | dependencies: 1454 | abbrev "1" 1455 | osenv "^0.1.4" 1456 | 1457 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: 1458 | version "2.4.0" 1459 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 1460 | dependencies: 1461 | hosted-git-info "^2.1.4" 1462 | is-builtin-module "^1.0.0" 1463 | semver "2 || 3 || 4 || 5" 1464 | validate-npm-package-license "^3.0.1" 1465 | 1466 | normalize-path@^2.0.0, normalize-path@^2.0.1: 1467 | version "2.1.1" 1468 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1469 | dependencies: 1470 | remove-trailing-separator "^1.0.1" 1471 | 1472 | npm-run-path@^2.0.0: 1473 | version "2.0.2" 1474 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 1475 | dependencies: 1476 | path-key "^2.0.0" 1477 | 1478 | npmlog@^4.0.2: 1479 | version "4.1.2" 1480 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1481 | dependencies: 1482 | are-we-there-yet "~1.1.2" 1483 | console-control-strings "~1.1.0" 1484 | gauge "~2.7.3" 1485 | set-blocking "~2.0.0" 1486 | 1487 | number-is-nan@^1.0.0: 1488 | version "1.0.1" 1489 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1490 | 1491 | oauth-sign@~0.8.1, oauth-sign@~0.8.2: 1492 | version "0.8.2" 1493 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1494 | 1495 | object-assign@^4.0.1, object-assign@^4.1.0: 1496 | version "4.1.1" 1497 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1498 | 1499 | object-keys@^1.0.8: 1500 | version "1.0.11" 1501 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 1502 | 1503 | object.getownpropertydescriptors@^2.0.3: 1504 | version "2.0.3" 1505 | resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" 1506 | dependencies: 1507 | define-properties "^1.1.2" 1508 | es-abstract "^1.5.1" 1509 | 1510 | object.omit@^2.0.0: 1511 | version "2.0.1" 1512 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1513 | dependencies: 1514 | for-own "^0.1.4" 1515 | is-extendable "^0.1.1" 1516 | 1517 | once@^1.3.0, once@^1.3.3: 1518 | version "1.4.0" 1519 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1520 | dependencies: 1521 | wrappy "1" 1522 | 1523 | onetime@^2.0.0: 1524 | version "2.0.1" 1525 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 1526 | dependencies: 1527 | mimic-fn "^1.0.0" 1528 | 1529 | opn@^5.4.0: 1530 | version "5.5.0" 1531 | resolved "https://registry.yarnpkg.com/opn/-/opn-5.5.0.tgz#fc7164fab56d235904c51c3b27da6758ca3b9bfc" 1532 | integrity sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA== 1533 | dependencies: 1534 | is-wsl "^1.1.0" 1535 | 1536 | os-homedir@^1.0.0: 1537 | version "1.0.2" 1538 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1539 | 1540 | os-locale@^2.0.0: 1541 | version "2.1.0" 1542 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 1543 | dependencies: 1544 | execa "^0.7.0" 1545 | lcid "^1.0.0" 1546 | mem "^1.1.0" 1547 | 1548 | os-tmpdir@^1.0.0, os-tmpdir@~1.0.2: 1549 | version "1.0.2" 1550 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1551 | 1552 | osenv@^0.1.4: 1553 | version "0.1.4" 1554 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 1555 | dependencies: 1556 | os-homedir "^1.0.0" 1557 | os-tmpdir "^1.0.0" 1558 | 1559 | p-finally@^1.0.0: 1560 | version "1.0.0" 1561 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 1562 | 1563 | p-limit@^1.1.0: 1564 | version "1.1.0" 1565 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 1566 | 1567 | p-locate@^2.0.0: 1568 | version "2.0.0" 1569 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1570 | dependencies: 1571 | p-limit "^1.1.0" 1572 | 1573 | p-map@^1.1.1: 1574 | version "1.2.0" 1575 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.2.0.tgz#e4e94f311eabbc8633a1e79908165fca26241b6b" 1576 | integrity sha512-r6zKACMNhjPJMTl8KcFH4li//gkrXWfbD6feV8l6doRHlzljFWGJ2AP6iKaCJXyZmAUMOPtvbW7EXkbWO/pLEA== 1577 | 1578 | parse-glob@^3.0.4: 1579 | version "3.0.4" 1580 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1581 | dependencies: 1582 | glob-base "^0.3.0" 1583 | is-dotfile "^1.0.0" 1584 | is-extglob "^1.0.0" 1585 | is-glob "^2.0.0" 1586 | 1587 | parse-json@^2.2.0: 1588 | version "2.2.0" 1589 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1590 | dependencies: 1591 | error-ex "^1.2.0" 1592 | 1593 | path-exists@^2.0.0: 1594 | version "2.1.0" 1595 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1596 | dependencies: 1597 | pinkie-promise "^2.0.0" 1598 | 1599 | path-exists@^3.0.0: 1600 | version "3.0.0" 1601 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1602 | 1603 | path-is-absolute@^1.0.0: 1604 | version "1.0.1" 1605 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1606 | 1607 | path-is-inside@^1.0.1: 1608 | version "1.0.2" 1609 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 1610 | integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM= 1611 | 1612 | path-key@^2.0.0: 1613 | version "2.0.1" 1614 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 1615 | 1616 | path-key@^3.1.0: 1617 | version "3.1.0" 1618 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.0.tgz#99a10d870a803bdd5ee6f0470e58dfcd2f9a54d3" 1619 | integrity sha512-8cChqz0RP6SHJkMt48FW0A7+qUOn+OsnOsVtzI59tZ8m+5bCSk7hzwET0pulwOM2YMn9J1efb07KB9l9f30SGg== 1620 | 1621 | path-parse@^1.0.5: 1622 | version "1.0.5" 1623 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 1624 | 1625 | path-type@^1.0.0: 1626 | version "1.1.0" 1627 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 1628 | dependencies: 1629 | graceful-fs "^4.1.2" 1630 | pify "^2.0.0" 1631 | pinkie-promise "^2.0.0" 1632 | 1633 | path-type@^2.0.0: 1634 | version "2.0.0" 1635 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 1636 | dependencies: 1637 | pify "^2.0.0" 1638 | 1639 | pend@~1.2.0: 1640 | version "1.2.0" 1641 | resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" 1642 | 1643 | performance-now@^0.2.0: 1644 | version "0.2.0" 1645 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 1646 | 1647 | performance-now@^2.1.0: 1648 | version "2.1.0" 1649 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 1650 | 1651 | pify@^2.0.0, pify@^2.3.0: 1652 | version "2.3.0" 1653 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1654 | 1655 | pify@^3.0.0: 1656 | version "3.0.0" 1657 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 1658 | 1659 | pinkie-promise@^2.0.0: 1660 | version "2.0.1" 1661 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1662 | dependencies: 1663 | pinkie "^2.0.0" 1664 | 1665 | pinkie@^2.0.0: 1666 | version "2.0.4" 1667 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1668 | 1669 | pixelmatch@^4.0.2: 1670 | version "4.0.2" 1671 | resolved "https://registry.yarnpkg.com/pixelmatch/-/pixelmatch-4.0.2.tgz#8f47dcec5011b477b67db03c243bc1f3085e8854" 1672 | dependencies: 1673 | pngjs "^3.0.0" 1674 | 1675 | pngjs@^3.0.0, pngjs@^3.2.0: 1676 | version "3.3.1" 1677 | resolved "https://registry.yarnpkg.com/pngjs/-/pngjs-3.3.1.tgz#8e14e6679ee7424b544334c3b2d21cea6d8c209a" 1678 | 1679 | preserve@^0.2.0: 1680 | version "0.2.0" 1681 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1682 | 1683 | process-nextick-args@~1.0.6: 1684 | version "1.0.7" 1685 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1686 | 1687 | progress@^2.0.1: 1688 | version "2.0.3" 1689 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" 1690 | integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== 1691 | 1692 | proxy-from-env@^1.0.0: 1693 | version "1.0.0" 1694 | resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.0.0.tgz#33c50398f70ea7eb96d21f7b817630a55791c7ee" 1695 | 1696 | pseudomap@^1.0.2: 1697 | version "1.0.2" 1698 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 1699 | 1700 | punycode@1.3.2: 1701 | version "1.3.2" 1702 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 1703 | 1704 | punycode@^1.4.1: 1705 | version "1.4.1" 1706 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1707 | 1708 | puppeteer@^2.0.0: 1709 | version "2.0.0" 1710 | resolved "https://registry.yarnpkg.com/puppeteer/-/puppeteer-2.0.0.tgz#0612992e29ec418e0a62c8bebe61af1a64d7ec01" 1711 | integrity sha512-t3MmTWzQxPRP71teU6l0jX47PHXlc4Z52sQv4LJQSZLq1ttkKS2yGM3gaI57uQwZkNaoGd0+HPPMELZkcyhlqA== 1712 | dependencies: 1713 | debug "^4.1.0" 1714 | extract-zip "^1.6.6" 1715 | https-proxy-agent "^3.0.0" 1716 | mime "^2.0.3" 1717 | progress "^2.0.1" 1718 | proxy-from-env "^1.0.0" 1719 | rimraf "^2.6.1" 1720 | ws "^6.1.0" 1721 | 1722 | qs@~6.4.0: 1723 | version "6.4.0" 1724 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 1725 | 1726 | qs@~6.5.1: 1727 | version "6.5.1" 1728 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" 1729 | 1730 | querystring@0.2.0, querystring@^0.2.0: 1731 | version "0.2.0" 1732 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 1733 | 1734 | randomatic@^1.1.3: 1735 | version "1.1.7" 1736 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 1737 | dependencies: 1738 | is-number "^3.0.0" 1739 | kind-of "^4.0.0" 1740 | 1741 | rc@^1.1.7: 1742 | version "1.2.2" 1743 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.2.tgz#d8ce9cb57e8d64d9c7badd9876c7c34cbe3c7077" 1744 | dependencies: 1745 | deep-extend "~0.4.0" 1746 | ini "~1.3.0" 1747 | minimist "^1.2.0" 1748 | strip-json-comments "~2.0.1" 1749 | 1750 | read-pkg-up@^1.0.1: 1751 | version "1.0.1" 1752 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 1753 | dependencies: 1754 | find-up "^1.0.0" 1755 | read-pkg "^1.0.0" 1756 | 1757 | read-pkg-up@^2.0.0: 1758 | version "2.0.0" 1759 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 1760 | dependencies: 1761 | find-up "^2.0.0" 1762 | read-pkg "^2.0.0" 1763 | 1764 | read-pkg@^1.0.0: 1765 | version "1.1.0" 1766 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 1767 | dependencies: 1768 | load-json-file "^1.0.0" 1769 | normalize-package-data "^2.3.2" 1770 | path-type "^1.0.0" 1771 | 1772 | read-pkg@^2.0.0: 1773 | version "2.0.0" 1774 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 1775 | dependencies: 1776 | load-json-file "^2.0.0" 1777 | normalize-package-data "^2.3.2" 1778 | path-type "^2.0.0" 1779 | 1780 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.2: 1781 | version "2.3.3" 1782 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 1783 | dependencies: 1784 | core-util-is "~1.0.0" 1785 | inherits "~2.0.3" 1786 | isarray "~1.0.0" 1787 | process-nextick-args "~1.0.6" 1788 | safe-buffer "~5.1.1" 1789 | string_decoder "~1.0.3" 1790 | util-deprecate "~1.0.1" 1791 | 1792 | readdirp@^2.0.0: 1793 | version "2.1.0" 1794 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 1795 | dependencies: 1796 | graceful-fs "^4.1.2" 1797 | minimatch "^3.0.2" 1798 | readable-stream "^2.0.2" 1799 | set-immediate-shim "^1.0.1" 1800 | 1801 | redent@^1.0.0: 1802 | version "1.0.0" 1803 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 1804 | dependencies: 1805 | indent-string "^2.1.0" 1806 | strip-indent "^1.0.1" 1807 | 1808 | reg-cli@^0.15.12: 1809 | version "0.15.12" 1810 | resolved "https://registry.yarnpkg.com/reg-cli/-/reg-cli-0.15.12.tgz#96e18b86ab081adde721442bd172071ff9fca620" 1811 | integrity sha512-H1JCUdIZ2RT69cdig5WRyz7RpIOkNh1J1QgCYxEDfsOsb3Es6MDMSxvoG/DG7fKEdNW8ZRmrZPvRDnHXSlIFoA== 1812 | dependencies: 1813 | bluebird "3.5.5" 1814 | chalk "2.4.2" 1815 | cli-spinner "0.2.10" 1816 | cross-spawn "7.0.0" 1817 | del "3.0.0" 1818 | glob "7.1.4" 1819 | img-diff-js "0.4.1" 1820 | lodash "4.17.15" 1821 | make-dir "3.0.0" 1822 | md5-file "4.0.0" 1823 | meow "3.7.0" 1824 | mustache "3.1.0" 1825 | x-img-diff-js "0.3.5" 1826 | 1827 | reg-gh-app-interface@^1.0.1: 1828 | version "1.0.6" 1829 | resolved "https://registry.yarnpkg.com/reg-gh-app-interface/-/reg-gh-app-interface-1.0.6.tgz#6e4f78f2e5c60585dac87b21d1cbc586dbb7f71c" 1830 | integrity sha512-aLI9CpVlSyw3pdJkPS4E7P8pMjJG3DQrEN5bO5ANySxhHndXA7/uTGEe6kcK6V+/+xcYOsvoE6UrRphhkCZy3w== 1831 | 1832 | reg-keygen-git-hash-plugin@^0.7.25: 1833 | version "0.7.25" 1834 | resolved "https://registry.yarnpkg.com/reg-keygen-git-hash-plugin/-/reg-keygen-git-hash-plugin-0.7.25.tgz#37c7709e6d7b60a9c259c23ad981350368c56b71" 1835 | integrity sha512-DGZ08Xc5YaKyEuE2ZS2e2Jd9xPUQxS5Th1sMMN28+2jB3GuO5z34bRhaKnPrhYZ7zcGzv3FjS7eLYQaS2m7yWw== 1836 | dependencies: 1837 | reg-suit-util "^0.7.25" 1838 | 1839 | reg-notify-github-plugin@^0.7.26: 1840 | version "0.7.26" 1841 | resolved "https://registry.yarnpkg.com/reg-notify-github-plugin/-/reg-notify-github-plugin-0.7.26.tgz#410fcf48d8c75e6a76bad38676dd569a0e16022f" 1842 | integrity sha512-l3IUjsEoZpVE5Fl6LmHGh4mmNO0Px1Q5+jCn8QgTWt0NTqAasDZnBpL1vdAspvo06M1YmsTkkNQTXRu52lUWMQ== 1843 | dependencies: 1844 | opn "^5.4.0" 1845 | reg-gh-app-interface "^1.0.1" 1846 | reg-suit-util "^0.7.25" 1847 | request "^2.81.0" 1848 | request-promise "^4.2.1" 1849 | tiny-commit-walker "^1.1.2" 1850 | 1851 | reg-publish-s3-plugin@^0.7.25: 1852 | version "0.7.25" 1853 | resolved "https://registry.yarnpkg.com/reg-publish-s3-plugin/-/reg-publish-s3-plugin-0.7.25.tgz#4cd3e95c41713eb3be38a77762b90804d4b49723" 1854 | integrity sha512-ivJ0+HROnrbJr/TIfoEkxTmSGRiKZbmRqBnXobcB0+ErPCG7RSDpW3cEmo9FxSRFodMfWDHrGd82qlzXKm8h2Q== 1855 | dependencies: 1856 | aws-sdk "^2.432.0" 1857 | mkdirp "^0.5.1" 1858 | reg-suit-util "^0.7.25" 1859 | uuid "^3.1.0" 1860 | 1861 | reg-suit-core@^0.8.4: 1862 | version "0.8.4" 1863 | resolved "https://registry.yarnpkg.com/reg-suit-core/-/reg-suit-core-0.8.4.tgz#6ca27f83a948279082c3239c089ce4834955b8d1" 1864 | integrity sha512-ArndCXERn1ijtshmUzMXQxXQWryEzr2V7MGp3FXGH3zRdQSNm6BGVIcCYc9oO4L77ki3VR23HSi5M/5JmKIkLg== 1865 | dependencies: 1866 | cpx "^1.5.0" 1867 | reg-cli "^0.15.12" 1868 | reg-suit-util "^0.7.25" 1869 | rimraf "^2.6.1" 1870 | 1871 | reg-suit-util@^0.7.25: 1872 | version "0.7.25" 1873 | resolved "https://registry.yarnpkg.com/reg-suit-util/-/reg-suit-util-0.7.25.tgz#92c753160cfdcd22f86e31fa1e69cae9637f5a63" 1874 | integrity sha512-ALkvQ78EzIzCujPQpn8cCVBRLpe73EQAyPp5RDclk0PBBFO4M72qIUP2/WCBnJozLYD5PPhWLYHdE9/wssIqqg== 1875 | dependencies: 1876 | chalk "^2.0.1" 1877 | cli-progress "^1.4.1" 1878 | cli-spinner "^0.2.6" 1879 | glob "^7.1.2" 1880 | lodash "^4.17.4" 1881 | mime-types "^2.1.15" 1882 | mkdirp "^0.5.1" 1883 | 1884 | reg-suit@^0.8.4: 1885 | version "0.8.4" 1886 | resolved "https://registry.yarnpkg.com/reg-suit/-/reg-suit-0.8.4.tgz#8cd94a81087632078123e3d3d39d9a127bd43baa" 1887 | integrity sha512-y0KGhr5cAb6H7Aobt4c4nAnDPt/M3H9lqj0TKncf4vgY0Arkp6biyTLait9Uo+DrYkjxVOeIrL08t0K3v4ZBnQ== 1888 | dependencies: 1889 | cp-file "^4.2.0" 1890 | ignore "^3.3.7" 1891 | inquirer "^3.1.1" 1892 | reg-suit-core "^0.8.4" 1893 | reg-suit-util "^0.7.25" 1894 | yargs "^8.0.2" 1895 | 1896 | regenerator-runtime@^0.11.0: 1897 | version "0.11.1" 1898 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 1899 | 1900 | regex-cache@^0.4.2: 1901 | version "0.4.4" 1902 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 1903 | dependencies: 1904 | is-equal-shallow "^0.1.3" 1905 | 1906 | remove-trailing-separator@^1.0.1: 1907 | version "1.1.0" 1908 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 1909 | 1910 | repeat-element@^1.1.2: 1911 | version "1.1.2" 1912 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1913 | 1914 | repeat-string@^1.5.2: 1915 | version "1.6.1" 1916 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1917 | 1918 | repeating@^2.0.0: 1919 | version "2.0.1" 1920 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1921 | dependencies: 1922 | is-finite "^1.0.0" 1923 | 1924 | request-promise-core@1.1.1: 1925 | version "1.1.1" 1926 | resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6" 1927 | dependencies: 1928 | lodash "^4.13.1" 1929 | 1930 | request-promise@^4.2.1: 1931 | version "4.2.2" 1932 | resolved "https://registry.yarnpkg.com/request-promise/-/request-promise-4.2.2.tgz#d1ea46d654a6ee4f8ee6a4fea1018c22911904b4" 1933 | dependencies: 1934 | bluebird "^3.5.0" 1935 | request-promise-core "1.1.1" 1936 | stealthy-require "^1.1.0" 1937 | tough-cookie ">=2.3.3" 1938 | 1939 | request@2.81.0: 1940 | version "2.81.0" 1941 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 1942 | dependencies: 1943 | aws-sign2 "~0.6.0" 1944 | aws4 "^1.2.1" 1945 | caseless "~0.12.0" 1946 | combined-stream "~1.0.5" 1947 | extend "~3.0.0" 1948 | forever-agent "~0.6.1" 1949 | form-data "~2.1.1" 1950 | har-validator "~4.2.1" 1951 | hawk "~3.1.3" 1952 | http-signature "~1.1.0" 1953 | is-typedarray "~1.0.0" 1954 | isstream "~0.1.2" 1955 | json-stringify-safe "~5.0.1" 1956 | mime-types "~2.1.7" 1957 | oauth-sign "~0.8.1" 1958 | performance-now "^0.2.0" 1959 | qs "~6.4.0" 1960 | safe-buffer "^5.0.1" 1961 | stringstream "~0.0.4" 1962 | tough-cookie "~2.3.0" 1963 | tunnel-agent "^0.6.0" 1964 | uuid "^3.0.0" 1965 | 1966 | request@^2.81.0: 1967 | version "2.83.0" 1968 | resolved "https://registry.yarnpkg.com/request/-/request-2.83.0.tgz#ca0b65da02ed62935887808e6f510381034e3356" 1969 | dependencies: 1970 | aws-sign2 "~0.7.0" 1971 | aws4 "^1.6.0" 1972 | caseless "~0.12.0" 1973 | combined-stream "~1.0.5" 1974 | extend "~3.0.1" 1975 | forever-agent "~0.6.1" 1976 | form-data "~2.3.1" 1977 | har-validator "~5.0.3" 1978 | hawk "~6.0.2" 1979 | http-signature "~1.2.0" 1980 | is-typedarray "~1.0.0" 1981 | isstream "~0.1.2" 1982 | json-stringify-safe "~5.0.1" 1983 | mime-types "~2.1.17" 1984 | oauth-sign "~0.8.2" 1985 | performance-now "^2.1.0" 1986 | qs "~6.5.1" 1987 | safe-buffer "^5.1.1" 1988 | stringstream "~0.0.5" 1989 | tough-cookie "~2.3.3" 1990 | tunnel-agent "^0.6.0" 1991 | uuid "^3.1.0" 1992 | 1993 | require-directory@^2.1.1: 1994 | version "2.1.1" 1995 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 1996 | 1997 | require-main-filename@^1.0.1: 1998 | version "1.0.1" 1999 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2000 | 2001 | resolve@^1.1.7: 2002 | version "1.5.0" 2003 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36" 2004 | dependencies: 2005 | path-parse "^1.0.5" 2006 | 2007 | restore-cursor@^2.0.0: 2008 | version "2.0.0" 2009 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 2010 | dependencies: 2011 | onetime "^2.0.0" 2012 | signal-exit "^3.0.2" 2013 | 2014 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1: 2015 | version "2.7.1" 2016 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" 2017 | dependencies: 2018 | glob "^7.1.3" 2019 | 2020 | run-async@^2.2.0: 2021 | version "2.3.0" 2022 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 2023 | dependencies: 2024 | is-promise "^2.1.0" 2025 | 2026 | rx-lite-aggregates@^4.0.8: 2027 | version "4.0.8" 2028 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 2029 | dependencies: 2030 | rx-lite "*" 2031 | 2032 | rx-lite@*, rx-lite@^4.0.8: 2033 | version "4.0.8" 2034 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 2035 | 2036 | safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2037 | version "5.1.1" 2038 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2039 | 2040 | safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: 2041 | version "2.1.2" 2042 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 2043 | 2044 | sax@>=0.6.0, sax@^1.2.1: 2045 | version "1.2.4" 2046 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2047 | 2048 | semantic-ui-css@^2.4.1: 2049 | version "2.4.1" 2050 | resolved "https://registry.yarnpkg.com/semantic-ui-css/-/semantic-ui-css-2.4.1.tgz#f5aea39fafb787cbd905ec724272a3f9cba9004a" 2051 | integrity sha512-Pkp0p9oWOxlH0kODx7qFpIRYpK1T4WJOO4lNnpNPOoWKCrYsfHqYSKgk5fHfQtnWnsAKy7nLJMW02bgDWWFZFg== 2052 | dependencies: 2053 | jquery x.* 2054 | 2055 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 2056 | version "5.4.1" 2057 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 2058 | 2059 | semver@^6.0.0: 2060 | version "6.3.0" 2061 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 2062 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 2063 | 2064 | set-blocking@^2.0.0, set-blocking@~2.0.0: 2065 | version "2.0.0" 2066 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2067 | 2068 | set-immediate-shim@^1.0.1: 2069 | version "1.0.1" 2070 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2071 | 2072 | shebang-command@^1.2.0: 2073 | version "1.2.0" 2074 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2075 | dependencies: 2076 | shebang-regex "^1.0.0" 2077 | 2078 | shebang-regex@^1.0.0: 2079 | version "1.0.0" 2080 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2081 | 2082 | shell-quote@^1.6.1: 2083 | version "1.6.1" 2084 | resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767" 2085 | dependencies: 2086 | array-filter "~0.0.0" 2087 | array-map "~0.0.0" 2088 | array-reduce "~0.0.0" 2089 | jsonify "~0.0.0" 2090 | 2091 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2092 | version "3.0.2" 2093 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2094 | 2095 | sntp@1.x.x: 2096 | version "1.0.9" 2097 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2098 | dependencies: 2099 | hoek "2.x.x" 2100 | 2101 | sntp@2.x.x: 2102 | version "2.1.0" 2103 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8" 2104 | dependencies: 2105 | hoek "4.x.x" 2106 | 2107 | spdx-correct@~1.0.0: 2108 | version "1.0.2" 2109 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2110 | dependencies: 2111 | spdx-license-ids "^1.0.2" 2112 | 2113 | spdx-expression-parse@~1.0.0: 2114 | version "1.0.4" 2115 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2116 | 2117 | spdx-license-ids@^1.0.2: 2118 | version "1.2.2" 2119 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2120 | 2121 | sshpk@^1.7.0: 2122 | version "1.16.1" 2123 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" 2124 | dependencies: 2125 | asn1 "~0.2.3" 2126 | assert-plus "^1.0.0" 2127 | bcrypt-pbkdf "^1.0.0" 2128 | dashdash "^1.12.0" 2129 | ecc-jsbn "~0.1.1" 2130 | getpass "^0.1.1" 2131 | jsbn "~0.1.0" 2132 | safer-buffer "^2.0.2" 2133 | tweetnacl "~0.14.0" 2134 | 2135 | stealthy-require@^1.1.0: 2136 | version "1.1.1" 2137 | resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" 2138 | 2139 | string-width@^1.0.1, string-width@^1.0.2: 2140 | version "1.0.2" 2141 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2142 | dependencies: 2143 | code-point-at "^1.0.0" 2144 | is-fullwidth-code-point "^1.0.0" 2145 | strip-ansi "^3.0.0" 2146 | 2147 | string-width@^2.0.0, string-width@^2.1.0: 2148 | version "2.1.1" 2149 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2150 | dependencies: 2151 | is-fullwidth-code-point "^2.0.0" 2152 | strip-ansi "^4.0.0" 2153 | 2154 | string_decoder@~1.0.3: 2155 | version "1.0.3" 2156 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 2157 | dependencies: 2158 | safe-buffer "~5.1.0" 2159 | 2160 | stringstream@~0.0.4, stringstream@~0.0.5: 2161 | version "0.0.6" 2162 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.6.tgz#7880225b0d4ad10e30927d167a1d6f2fd3b33a72" 2163 | 2164 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2165 | version "3.0.1" 2166 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2167 | dependencies: 2168 | ansi-regex "^2.0.0" 2169 | 2170 | strip-ansi@^4.0.0: 2171 | version "4.0.0" 2172 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2173 | dependencies: 2174 | ansi-regex "^3.0.0" 2175 | 2176 | strip-bom@^2.0.0: 2177 | version "2.0.0" 2178 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2179 | dependencies: 2180 | is-utf8 "^0.2.0" 2181 | 2182 | strip-bom@^3.0.0: 2183 | version "3.0.0" 2184 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2185 | 2186 | strip-eof@^1.0.0: 2187 | version "1.0.0" 2188 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 2189 | 2190 | strip-indent@^1.0.1: 2191 | version "1.0.1" 2192 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 2193 | dependencies: 2194 | get-stdin "^4.0.1" 2195 | 2196 | strip-json-comments@~2.0.1: 2197 | version "2.0.1" 2198 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2199 | 2200 | subarg@^1.0.0: 2201 | version "1.0.0" 2202 | resolved "https://registry.yarnpkg.com/subarg/-/subarg-1.0.0.tgz#f62cf17581e996b48fc965699f54c06ae268b8d2" 2203 | dependencies: 2204 | minimist "^1.1.0" 2205 | 2206 | supports-color@^4.0.0: 2207 | version "4.5.0" 2208 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 2209 | dependencies: 2210 | has-flag "^2.0.0" 2211 | 2212 | supports-color@^5.3.0: 2213 | version "5.5.0" 2214 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 2215 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 2216 | dependencies: 2217 | has-flag "^3.0.0" 2218 | 2219 | tar-pack@^3.4.0: 2220 | version "3.4.1" 2221 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 2222 | dependencies: 2223 | debug "^2.2.0" 2224 | fstream "^1.0.10" 2225 | fstream-ignore "^1.0.5" 2226 | once "^1.3.3" 2227 | readable-stream "^2.1.4" 2228 | rimraf "^2.5.1" 2229 | tar "^2.2.1" 2230 | uid-number "^0.0.6" 2231 | 2232 | tar@^2.2.1: 2233 | version "2.2.2" 2234 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.2.tgz#0ca8848562c7299b8b446ff6a4d60cdbb23edc40" 2235 | dependencies: 2236 | block-stream "*" 2237 | fstream "^1.0.12" 2238 | inherits "2" 2239 | 2240 | through@^2.3.6: 2241 | version "2.3.8" 2242 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2243 | 2244 | tiny-commit-walker@^1.1.2: 2245 | version "1.2.1" 2246 | resolved "https://registry.yarnpkg.com/tiny-commit-walker/-/tiny-commit-walker-1.2.1.tgz#937bfba0abe1d520ae636f4095de62e239ba5498" 2247 | dependencies: 2248 | lru-cache "^4.1.1" 2249 | util.promisify "^1.0.0" 2250 | 2251 | tmp@^0.0.33: 2252 | version "0.0.33" 2253 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 2254 | dependencies: 2255 | os-tmpdir "~1.0.2" 2256 | 2257 | tough-cookie@>=2.3.3, tough-cookie@~2.3.0, tough-cookie@~2.3.3: 2258 | version "2.3.3" 2259 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 2260 | dependencies: 2261 | punycode "^1.4.1" 2262 | 2263 | trim-newlines@^1.0.0: 2264 | version "1.0.0" 2265 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 2266 | 2267 | tunnel-agent@^0.6.0: 2268 | version "0.6.0" 2269 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2270 | dependencies: 2271 | safe-buffer "^5.0.1" 2272 | 2273 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2274 | version "0.14.5" 2275 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2276 | 2277 | typedarray@^0.0.6: 2278 | version "0.0.6" 2279 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 2280 | 2281 | uid-number@^0.0.6: 2282 | version "0.0.6" 2283 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 2284 | 2285 | url@^0.10.3: 2286 | version "0.10.3" 2287 | resolved "https://registry.yarnpkg.com/url/-/url-0.10.3.tgz#021e4d9c7705f21bbf37d03ceb58767402774c64" 2288 | integrity sha1-Ah5NnHcF8hu/N9A861h2dAJ3TGQ= 2289 | dependencies: 2290 | punycode "1.3.2" 2291 | querystring "0.2.0" 2292 | 2293 | util-deprecate@~1.0.1: 2294 | version "1.0.2" 2295 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2296 | 2297 | util.promisify@^1.0.0, util.promisify@~1.0.0: 2298 | version "1.0.0" 2299 | resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" 2300 | dependencies: 2301 | define-properties "^1.1.2" 2302 | object.getownpropertydescriptors "^2.0.3" 2303 | 2304 | uuid@^3.0.0, uuid@^3.1.0: 2305 | version "3.1.0" 2306 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 2307 | 2308 | uuid@^3.3.2: 2309 | version "3.3.3" 2310 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.3.tgz#4568f0216e78760ee1dbf3a4d2cf53e224112866" 2311 | integrity sha512-pW0No1RGHgzlpHJO1nsVrHKpOEIxkGg1xB+v0ZmdNH5OAeAwzAVrCnI2/6Mtx+Uys6iaylxa+D3g4j63IKKjSQ== 2312 | 2313 | validate-npm-package-license@^3.0.1: 2314 | version "3.0.1" 2315 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 2316 | dependencies: 2317 | spdx-correct "~1.0.0" 2318 | spdx-expression-parse "~1.0.0" 2319 | 2320 | verror@1.10.0: 2321 | version "1.10.0" 2322 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 2323 | dependencies: 2324 | assert-plus "^1.0.0" 2325 | core-util-is "1.0.2" 2326 | extsprintf "^1.2.0" 2327 | 2328 | which-module@^2.0.0: 2329 | version "2.0.0" 2330 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 2331 | 2332 | which@^1.2.9: 2333 | version "1.3.0" 2334 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 2335 | dependencies: 2336 | isexe "^2.0.0" 2337 | 2338 | wide-align@^1.1.0: 2339 | version "1.1.2" 2340 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 2341 | dependencies: 2342 | string-width "^1.0.2" 2343 | 2344 | wrap-ansi@^2.0.0: 2345 | version "2.1.0" 2346 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 2347 | dependencies: 2348 | string-width "^1.0.1" 2349 | strip-ansi "^3.0.1" 2350 | 2351 | wrappy@1: 2352 | version "1.0.2" 2353 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2354 | 2355 | ws@^6.1.0: 2356 | version "6.2.1" 2357 | resolved "https://registry.yarnpkg.com/ws/-/ws-6.2.1.tgz#442fdf0a47ed64f59b6a5d8ff130f4748ed524fb" 2358 | integrity sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA== 2359 | dependencies: 2360 | async-limiter "~1.0.0" 2361 | 2362 | x-img-diff-js@0.3.5: 2363 | version "0.3.5" 2364 | resolved "https://registry.yarnpkg.com/x-img-diff-js/-/x-img-diff-js-0.3.5.tgz#d443d5339d94871038fc08eefa4b68789e2af9e7" 2365 | integrity sha512-B97ztoc2JeM+62HH1zFhmTyilsVqL486WMm8X3oQz16lTCGITY1cz+H57mTsNG0QuyVxv1yGq06qC8wy6UPCmQ== 2366 | 2367 | xml2js@^0.4.19: 2368 | version "0.4.22" 2369 | resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.22.tgz#4fa2d846ec803237de86f30aa9b5f70b6600de02" 2370 | integrity sha512-MWTbxAQqclRSTnehWWe5nMKzI3VmJ8ltiJEco8akcC6j3miOhjjfzKum5sId+CWhfxdOs/1xauYr8/ZDBtQiRw== 2371 | dependencies: 2372 | sax ">=0.6.0" 2373 | util.promisify "~1.0.0" 2374 | xmlbuilder "~11.0.0" 2375 | 2376 | xmlbuilder@~11.0.0: 2377 | version "11.0.1" 2378 | resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-11.0.1.tgz#be9bae1c8a046e76b31127726347d0ad7002beb3" 2379 | integrity sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA== 2380 | 2381 | y18n@^3.2.1: 2382 | version "3.2.1" 2383 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 2384 | 2385 | yallist@^2.1.2: 2386 | version "2.1.2" 2387 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 2388 | 2389 | yargs-parser@^7.0.0: 2390 | version "7.0.0" 2391 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" 2392 | dependencies: 2393 | camelcase "^4.1.0" 2394 | 2395 | yargs@^8.0.2: 2396 | version "8.0.2" 2397 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360" 2398 | dependencies: 2399 | camelcase "^4.1.0" 2400 | cliui "^3.2.0" 2401 | decamelize "^1.1.1" 2402 | get-caller-file "^1.0.1" 2403 | os-locale "^2.0.0" 2404 | read-pkg-up "^2.0.0" 2405 | require-directory "^2.1.1" 2406 | require-main-filename "^1.0.1" 2407 | set-blocking "^2.0.0" 2408 | string-width "^2.0.0" 2409 | which-module "^2.0.0" 2410 | y18n "^3.2.1" 2411 | yargs-parser "^7.0.0" 2412 | 2413 | yauzl@2.4.1: 2414 | version "2.4.1" 2415 | resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.4.1.tgz#9528f442dab1b2284e58b4379bb194e22e0c4005" 2416 | dependencies: 2417 | fd-slicer "~1.0.1" 2418 | --------------------------------------------------------------------------------