├── .circleci └── config.yml ├── .codeclimate.yml ├── .gitignore ├── CHANGELOG ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── bin └── replicated-studio ├── circle.yml ├── package.json ├── readme_header.jpg ├── src ├── consts.ts ├── handlers │ ├── getAppDefaultRelease.ts │ ├── getAppMetadata.ts │ ├── getAppOneRelease.ts │ └── getAppUpgrades.ts ├── index.ts ├── replicated │ ├── helpers.ts │ └── release.ts ├── routes.ts └── test │ └── release.ts ├── tsconfig.json ├── tslint.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- 1 | # Golang CircleCI 2.0 configuration file 2 | # 3 | # Check https://circleci.com/docs/2.0/language-javascript/ for more details 4 | version: 2 5 | 6 | jobs: 7 | 8 | test: 9 | working_directory: ~/repo 10 | environment: 11 | MOCHA_FILE: test-results/mocha/test-results.xml 12 | docker: 13 | - image: circleci/node:8 14 | steps: 15 | - checkout 16 | - restore_cache: 17 | keys: 18 | - yarn-packages-{{ checksum "yarn.lock" }} 19 | - run: 20 | name: build 21 | command: yarn 22 | - persist_to_workspace: 23 | root: . 24 | paths: 25 | - node_modules 26 | - save_cache: 27 | key: yarn-packages-{{ checksum "yarn.lock" }} 28 | paths: 29 | - ~/.cache/yarn 30 | - run: 31 | name: test + coverage 32 | command: yarn test 33 | - store_test_results: 34 | path: test-results 35 | 36 | deploy: 37 | working_directory: ~/repo 38 | docker: 39 | - image: circleci/node:8 40 | steps: 41 | - run: | 42 | if [ "${CIRCLE_PROJECT_USERNAME}" != "replicatedhq" ]; then 43 | echo nope nope nope 44 | exit 1 45 | fi 46 | - checkout 47 | - setup_remote_docker 48 | - attach_workspace: 49 | at: . 50 | - deploy: 51 | name: publish npm 52 | command: | 53 | npm run login-cli 54 | npm run publish-if-version-changed 55 | - deploy: 56 | name: publish docker 57 | command: | 58 | docker build --rm=false -t replicated/studio:$(node -pe "require('./package.json').version;") . 59 | docker login -u $DOCKER_USER -p $DOCKER_PASS 60 | docker tag replicated/studio:$(node -pe "require('./package.json').version;") replicated/studio:latest 61 | docker push replicated/studio:$(node -pe "require('./package.json').version;") 62 | docker push replicated/studio:latest 63 | 64 | workflows: 65 | version: 2 66 | 67 | build_accept_deploy: 68 | jobs: 69 | - test 70 | - deploy: 71 | requires: 72 | - test 73 | filters: 74 | branches: 75 | only: 76 | - master 77 | -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- 1 | engines: 2 | tslint: 3 | enabled: true 4 | channel: beta 5 | config: tslint.json 6 | ratings: 7 | paths: 8 | - "**.ts" 9 | exclude_paths: 10 | - node_modules 11 | - dist 12 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .vscode 4 | yarn-error.log 5 | replicated/ 6 | .idea/ 7 | 8 | !src/ 9 | -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- 1 | 0.3.0 /2017-11-01 2 | * Add [replicated-lint](https://github.com/replicatedhq/replicated-lint) to release loading, invalid yaml will not be exposed as a release. 3 | * Allow specifying the target YAML directory and upstream url via `STUDIO_YAML_DIR` and `STUDIO_UPSTREAM_BASE_URL` 4 | * Fix a bug where a YAML document with no `components` section would cause a 500 error 5 | 6 | 0.5.0 /2017-12-11 7 | * Now watches a file 'current.yaml' and creates a new latest release when a change is made 8 | * Moved releases to within a 'releases' directory 9 | * Fetch app yaml from the Replicated API if none is present when a request is made using a valid license 10 | 11 | 0.5.1 /2017-12-11 12 | * Fix for fetching app yaml from the Replicated API 13 | 14 | 0.5.2 /2017-12-18 15 | * Update replicated-lint version to include support for `shm_size` container param 16 | 17 | 0.6.0 /2018-03-26 18 | * Added support for multi-doc YAML. 19 | * Upgraded replicated-lint to 0.10.5. 20 | 21 | 0.7.0 /2018-05-22 22 | * Studio will now have a default update policy of `automatic`. Update policy (automatic|manual) can now be set via `STUDIO_UPDATE_POLICY`. 23 | * Fix a bug where invalid YAML would prevent new releases from being applied in the On-Prem browser console. 24 | 25 | 0.7.1 /2018-06-26 26 | * Upgraded replicated-lint to 0.10.13. 27 | 28 | 0.7.2 /2018-08-20 29 | * Upgraded replicated-lint to 0.13.7. 30 | 31 | 0.7.3 /2018-10-25 32 | * Upgraded replicated-lint to 0.13.21. 33 | 34 | 0.7.4 /2018-10-26 35 | * Upgraded replicated-lint to 0.13.22. 36 | 37 | 0.7.5 /2018-12-06 38 | * Upgraded replicated-lint to 0.14.7 39 | 40 | 0.7.6 /2019-05-13 41 | * Upgraded replicated-lint to 0.15.1 42 | 43 | 0.7.8 /2020-04-22 44 | * Upgraded replicated-lint to 0.18.3 45 | 46 | 0.7.9 /2020-05-05 47 | * Upgraded replicated-lint to 0.18.5 48 | 49 | 0.7.10 /2020-09-10 50 | * Upgraded replicated-lint to 0.18.7 51 | 52 | 0.7.11 /2021-01-05 53 | * Upgraded replicated-lint to 0.18.8 54 | 55 | 0.7.12 /2021-05-18 56 | * Upgraded replicated-lint to 0.18.9 57 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:8.7 2 | RUN npm install -g replicated-studio 3 | EXPOSE 8006 4 | CMD ["replicated-studio"] 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright {yyyy} {name of copyright owner} 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | 2 | shell: 3 | docker run -it --rm \ 4 | -p 8006:8006 \ 5 | -e STUDIO_UPSTREAM_BASE_URL=https://api.staging.replicated.com/market \ 6 | -v ${PWD}:/src \ 7 | -v ${HOME}/replicated:/replicated \ 8 | --workdir /src \ 9 | node:8 /bin/bash 10 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![Replicated Studio Header Image](readme_header.jpg) 2 | 3 | # Replicated Developer Studio 4 | 5 | [![Maintainability](https://api.codeclimate.com/v1/badges/42d30525bcdc13534040/maintainability)](https://codeclimate.com/github/replicatedhq/studio) 6 | 7 | The Replicated Developer Studio provides you with an isolated development environment, allowing you and your team to streamline your application development and remove the need to to create releases for every change you may need create along the way. 8 | 9 | ## Getting started 10 | 11 | To get started with Studio, consult the "Development Environment" docs for the scheduler you're using: 12 | 13 | - [Replicated Scheduler](https://help.replicated.com/docs/native/getting-started/developer-environment/) 14 | - [Replicated + Docker Swarm](https://help.replicated.com/docs/swarm/getting-started/development-environment/) 15 | - [Replicated + Kubernetes](https://help.replicated.com/docs/kubernetes/getting-started/development-environment/) 16 | 17 | ## Iterating on your YAML 18 | 19 | Once Studio and Replicated have been installed and a license has been uploaded, two files will be created, `$HOME/replicated/current.yaml` and `$HOME/replicated/releases/[current-sequence-number].yaml`. (For example, if the latest release has a sequence number of 25 then `$HOME/replicated/releases/25.yaml` will be created.) 20 | 21 | ***Please note: The `current.yaml` file owner will be set to root. You may want to change this to the user you are logged in as*** 22 | 23 | After the initial installation, Replicated will no longer use the remote API for any release sequence numbers, so it is ok to generate as many releases as you need locally. 24 | 25 | A new release can be created by simply updating `$HOME/replicated/current.yaml`. Replicated Studio monitors this file for changes and generates a corresponding file in `$HOME/replicated/releases` using the next available sequence number. 26 | 27 | Once you have created a new release, you can go to the Admin Console and click the "Check Now" button in the Updates tile on the Replicated dashboard. 28 | 29 | 30 | ## Some finer details 31 | 32 | - If your application YAML includes GitHub references for config files, these will not be functional. If you are using this feature, you will have to include the GitHub file inline for now. 33 | - The Studio service does respond to requests for custom branding, console logos, and some other metadata. All of these values are static and will not be served from the upstream API. This means that your local developer console will not show your application logo or branding, but this will still work when you promote your build using the primary API service. 34 | 35 | 36 | ## Contributing 37 | 38 | ### Building the project 39 | 40 | ```bash 41 | yarn 42 | ``` 43 | 44 | ### Running the project 45 | 46 | ```bash 47 | ./bin/replicated-studio 48 | ``` 49 | -------------------------------------------------------------------------------- /bin/replicated-studio: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | "use strict"; 3 | const studio = require("../dist/index"); 4 | 5 | process.on('SIGINT', function () { 6 | process.exit(1); 7 | }); 8 | 9 | studio.start(); 10 | -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- 1 | machine: 2 | environment: 3 | MOCHA_FILE: "$CIRCLE_TEST_REPORTS/test-results.xml" 4 | pre: 5 | - mkdir ~/.cache/yarn 6 | node: 7 | version: 8 8 | services: 9 | - docker 10 | 11 | dependencies: 12 | override: 13 | - yarn 14 | cache_directories: 15 | - ~/.cache/yarn 16 | 17 | test: 18 | override: 19 | - yarn test 20 | 21 | deployment: 22 | npm: 23 | branch: master 24 | owner: replicatedhq 25 | commands: 26 | - npm run login-cli 27 | - npm run publish-if-version-changed 28 | - docker build --rm=false -t replicated/studio:$(node -pe "require('./package.json').version;") . 29 | - docker login -e $DOCKER_EMAIL -u $DOCKER_USER -p $DOCKER_PASS 30 | - docker tag replicated/studio:$(node -pe "require('./package.json').version;") replicated/studio:latest 31 | - docker push replicated/studio:$(node -pe "require('./package.json').version;") 32 | - docker push replicated/studio:latest -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "replicated-studio", 3 | "author": "Replicated, Inc.", 4 | "version": "0.7.12", 5 | "license": "Apache-2.0", 6 | "repository": "https://github.com/replicatedhq/replicated-studio.git", 7 | "description": "A tool to enable easier iteration on Replicated projects", 8 | "main": "dist/index.js", 9 | "typings": "dist/index", 10 | "files": [ 11 | "dist/", 12 | "bin/" 13 | ], 14 | "scripts": { 15 | "prepublish": "rm -rf ./dist && yarn run tslint && tsc -p .", 16 | "tslint": "tslint --project ./tsconfig.json", 17 | "test": "yarn run prepublish && mocha ./dist/test/*.js", 18 | "login-cli": "npm-cli-login", 19 | "publish-if-version-changed": "publish" 20 | }, 21 | "bin": "bin/replicated-studio", 22 | "devDependencies": { 23 | "@types/chai": "^3.4.34", 24 | "@types/node": "^8.0.57", 25 | "@types/tv4": "^1.2.28", 26 | "chai": "3.5.0", 27 | "mocha": "^3.2.0", 28 | "publish": "^0.6.0", 29 | "tslint": "^4.5.1", 30 | "typescript": "^2.2.1" 31 | }, 32 | "dependencies": { 33 | "body-parser": "^1.17.0", 34 | "chalk": "^1.1.3", 35 | "cors": "^2.8.1", 36 | "express": "^4.15.0", 37 | "express-http-proxy": "^0.11.0", 38 | "js-yaml": "^3.8.2", 39 | "lodash": "^4.17.4", 40 | "npm-cli-login": "^0.0.10", 41 | "replicated-lint": "^0.18.9", 42 | "source-map-support": "^0.4.11", 43 | "uuid": "^3.0.1" 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /readme_header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/studio/2f30a938d16f58b90851b0fb95d8b2fe111eb315/readme_header.jpg -------------------------------------------------------------------------------- /src/consts.ts: -------------------------------------------------------------------------------- 1 | 2 | export default { 3 | localPath: process.env.STUDIO_YAML_DIR || "./replicated", 4 | upstreamEndpoint: process.env.STUDIO_UPSTREAM_BASE_URL || "https://api.replicated.com/market/", 5 | lintThreshold: process.env.STUDIO_LINT_THRESHOLD || "error", 6 | lintRequired: /^(?:y|yes|true|1)$/i.test(process.env.STUDIO_LINT_REQUIRED || ""), 7 | updatePolicy: process.env.STUDIO_UPDATE_POLICY || "automatic", 8 | }; 9 | -------------------------------------------------------------------------------- /src/handlers/getAppDefaultRelease.ts: -------------------------------------------------------------------------------- 1 | import * as fs from "fs"; 2 | import * as path from "path"; 3 | 4 | import consts from "../consts"; 5 | import { getRelease } from "../replicated/helpers"; 6 | import { listAvailableReleases } from "../replicated/release"; 7 | 8 | export default async function(req) { 9 | const releases = listAvailableReleases(); 10 | if (releases.length === 0) { 11 | try { 12 | const yaml = await getRelease(req, 1); 13 | const date = new Date(); 14 | return { 15 | status: 200, 16 | contentType: "text/yaml", 17 | headers: { 18 | "X-Replicated-ReleaseDate": date.toISOString(), 19 | }, 20 | body: yaml, 21 | }; 22 | } catch (err) { 23 | throw { status: 500, err: new Error("No releases found") }; 24 | } 25 | } 26 | 27 | const defaultReleaseFilename = releases[releases.length - 1]; 28 | const lastModifiedTime = fs.lstatSync(path.join(consts.localPath, "releases", defaultReleaseFilename)).mtime.toISOString(); 29 | const yamlContents = fs.readFileSync(path.join(consts.localPath, "releases", defaultReleaseFilename), "utf8"); 30 | 31 | return { 32 | status: 200, 33 | contentType: "text/yaml", 34 | headers: { 35 | "X-Replicated-ReleaseDate": lastModifiedTime, 36 | }, 37 | body: yamlContents, 38 | }; 39 | } 40 | -------------------------------------------------------------------------------- /src/handlers/getAppMetadata.ts: -------------------------------------------------------------------------------- 1 | 2 | // getAppMetadata must be included here and not proxied because the upstream api 3 | // will throw an error when presented with a sequence that doesn't exist. this 4 | // response is simply a static response, returned to keep replicated happy. 5 | 6 | export default async function(req) { 7 | const metadata = { 8 | logo_data: "", 9 | version: "local", 10 | release_notes: "release notes go here", 11 | custom_branding: "", 12 | }; 13 | 14 | return { 15 | status: 200, 16 | body: JSON.stringify(metadata), 17 | }; 18 | } 19 | -------------------------------------------------------------------------------- /src/handlers/getAppOneRelease.ts: -------------------------------------------------------------------------------- 1 | import * as fs from "fs"; 2 | import * as path from "path"; 3 | import * as chalk from "chalk"; 4 | 5 | import consts from "../consts"; 6 | import {allowMultiDocumentResponse, getRelease} from "../replicated/helpers"; 7 | import { listAvailableReleases } from "../replicated/release"; 8 | 9 | export default async function(req) { 10 | const releases = listAvailableReleases(); 11 | if (releases.length === 0) { 12 | try { 13 | const yaml = await getRelease(req, req.params.sequence); 14 | const date = new Date(); 15 | return { 16 | status: 200, 17 | contentType: "text/yaml", 18 | headers: { 19 | "X-Replicated-ReleaseDate": date.toISOString(), 20 | }, 21 | body: yaml, 22 | }; 23 | } catch (err) { 24 | throw { status: 500, err: new Error("No releases found") }; 25 | } 26 | } 27 | 28 | let releaseFilename; 29 | if (fs.existsSync(path.join(consts.localPath, "releases", `${req.params.sequence}.yaml`))) { 30 | releaseFilename = path.join(consts.localPath, "releases", `${req.params.sequence}.yaml`); 31 | } else if (fs.existsSync(path.join(consts.localPath, "releases", `${req.params.sequence}.yml`))) { 32 | releaseFilename = path.join(consts.localPath, "releases", `${req.params.sequence}.yml`); 33 | } 34 | 35 | if (!releaseFilename) { 36 | try { 37 | const yaml = await getRelease(req, req.params.sequence); 38 | const date = new Date(); 39 | return { 40 | status: 200, 41 | contentType: "text/yaml", 42 | headers: { 43 | "X-Replicated-ReleaseDate": date.toISOString(), 44 | }, 45 | body: yaml, 46 | }; 47 | } catch (err) { 48 | console.log(chalk.red(`Replicated requested release sequence ${req.params.sequence}, but this release yaml was not found in ${path.join(consts.localPath, "releases")}`)); 49 | throw { status: 500, err: new Error("Release not found") }; 50 | } 51 | } 52 | 53 | const lastModifiedTime = fs.lstatSync(releaseFilename).mtime.toISOString(); 54 | const yamlContents = fs.readFileSync(releaseFilename, "utf8"); 55 | 56 | return { 57 | status: 200, 58 | contentType: "text/yaml", 59 | headers: { 60 | "X-Replicated-ReleaseDate": lastModifiedTime, 61 | }, 62 | body: yamlContents, 63 | }; 64 | } 65 | -------------------------------------------------------------------------------- /src/handlers/getAppUpgrades.ts: -------------------------------------------------------------------------------- 1 | import * as fs from "fs"; 2 | import * as _ from "lodash"; 3 | import * as chalk from "chalk"; 4 | import * as path from "path"; 5 | import * as linter from "replicated-lint"; 6 | 7 | import consts from "../consts"; 8 | import {fillOutYaml, listAvailableReleasesAfter} from "../replicated/release"; 9 | import {getRelease} from "../replicated/helpers"; 10 | 11 | const ruleNotifiesAt = threshold => rule => !linter.ruleTypeLT(rule.type, threshold); 12 | 13 | function releaseDetails(release, yamlContents: any, lastModifiedTime: string) { 14 | return { 15 | Sequence: _.parseInt(_.split(release, ".")[0]), 16 | ReleaseYaml: new Buffer(yamlContents).toString("base64"), 17 | ReleaseDate: lastModifiedTime, 18 | Required: false, 19 | }; 20 | } 21 | 22 | export default async function(req) { 23 | const currentVersion = req.body.CurrentVersion; 24 | const releases = listAvailableReleasesAfter(currentVersion); 25 | 26 | const failedPaths = [] as string[]; 27 | const versions = [] as any[]; 28 | if (!releases) { 29 | return []; 30 | } 31 | _.forEach(releases, (release) => { 32 | const releasePath = path.join(consts.localPath, "releases", release); 33 | const lastModifiedTime = fs.lstatSync(releasePath).mtime.toISOString(); 34 | const [replYaml, multiYaml] = fillOutYaml(releasePath); 35 | 36 | const shouldLint = consts.lintThreshold !== "off"; 37 | 38 | if (!shouldLint) { 39 | versions.push(releaseDetails(release, multiYaml, lastModifiedTime)); 40 | return; 41 | } 42 | 43 | const ruleSet = linter.rules.all.filter(ruleNotifiesAt(consts.lintThreshold)); 44 | 45 | const linterErrors = linter.lint( 46 | replYaml, 47 | { 48 | rules: ruleSet, 49 | schema: linter.schemas.parsed, 50 | }, 51 | ); 52 | 53 | if (!_.isEmpty(linterErrors)) { 54 | console.log(); 55 | console.log(chalk.yellow(`${linterErrors.length} errors in ${releasePath}:`)); 56 | linter.cmdutil.reporters.consoleReporter( 57 | replYaml, 58 | ruleSet, 59 | linterErrors, 60 | ); 61 | failedPaths.push(releasePath); 62 | if (consts.lintRequired) { 63 | return; 64 | } 65 | } 66 | 67 | versions.push(releaseDetails(release, multiYaml, lastModifiedTime)); 68 | }); 69 | 70 | if (!_.isEmpty(failedPaths)) { 71 | console.log(); 72 | if (consts.lintRequired) { 73 | console.log(chalk.yellow("One or more releases were not included in the release list because they failed linting.")); 74 | } else { 75 | console.log(chalk.yellow("One or more releases has failed linting.")); 76 | } 77 | console.log(chalk.yellow("Please correct the errors in")); 78 | console.log(chalk.yellow(" * " + failedPaths.join("\n * "))); 79 | } 80 | 81 | return { 82 | status: 200, 83 | body: JSON.stringify({ 84 | Versions: versions, 85 | UpdatePolicy: consts.updatePolicy, 86 | }), 87 | }; 88 | } 89 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | import "source-map-support/register"; 2 | import * as express from "express"; 3 | import * as proxy from "express-http-proxy"; 4 | import * as bodyParser from "body-parser"; 5 | import * as cors from "cors"; 6 | import * as uuid from "uuid"; 7 | import * as chalk from "chalk"; 8 | import * as _ from "lodash"; 9 | import * as util from "util"; 10 | import * as fs from "fs"; 11 | import * as path from "path"; 12 | import * as process from "process"; 13 | 14 | import routes from "./routes"; 15 | import consts from "./consts"; 16 | import { fillOutYaml, listAvailableReleases } from "./replicated/release"; 17 | 18 | // TODO yargs 19 | function validate() { 20 | const validThresholds = ["info", "warn", "error", "off"]; 21 | const thesholdInvalid = _.indexOf(validThresholds, consts.lintThreshold) === -1; 22 | if (thesholdInvalid) { 23 | console.log(chalk.red(`unknown lint threshold ${consts.lintThreshold}. Choices are ${validThresholds.join(", ")}`)); 24 | process.exit(1); 25 | } 26 | } 27 | 28 | export function watch() { 29 | const filePath = path.join(consts.localPath, "current.yaml"); 30 | if (!fs.existsSync(filePath)) { 31 | console.log(chalk.red(`No file detected at ${filePath}. An attempt will be made to create one for you when Replicated first requests it.`)); 32 | return; 33 | } 34 | console.log(chalk.green(`Watching "${filePath}" for changes. Any updates to this file will be sent as an application update.`)); 35 | fs.watchFile(filePath, (curr, prev) => { 36 | try { 37 | // make sure this is valid yaml before creating a release 38 | fillOutYaml(filePath); 39 | } catch (err) { 40 | console.log(chalk.red(`Failure parsing YAML file ${filePath}:`)); 41 | console.log(chalk.red(err)); 42 | return; 43 | } 44 | 45 | const releases = listAvailableReleases(); 46 | if (releases.length === 0) { 47 | fs.copyFileSync(filePath, path.join(consts.localPath, "releases", "1.yaml")); 48 | console.log("Created first release at releases/1.yaml"); 49 | } else { 50 | // next release is at the number of last, plus 1 51 | const last = releases[releases.length - 1]; 52 | const name = last.replace(/\.[^/.]+$/, ""); 53 | const lastNum = Number(name); 54 | if (isNaN(lastNum)) { 55 | console.log(`Unable to parse ${name} as integer`); 56 | } else { 57 | const nextName = String(lastNum + 1); 58 | fs.copyFileSync(filePath, path.join(consts.localPath, "releases", nextName + ".yaml")); 59 | console.log(`created next release at releases/${nextName}.yaml`); 60 | } 61 | } 62 | }); 63 | } 64 | 65 | function serve() { 66 | const app = express(); 67 | app.use(bodyParser.json()); 68 | 69 | app.use(cors()); 70 | 71 | // Add a healthcheck endpoint 72 | app.get("/healthz", (req, res) => { 73 | res.send(""); 74 | }); 75 | 76 | // Define the handling callback for each route. 77 | _.forOwn(routes, (route, handlerName) => { 78 | const routeCallback = (req, res) => { 79 | const reqId = `${handlerName}:${uuid.v4().replace("-", "").substring(0, 8)}`; 80 | console.log(chalk.yellow(`[${reqId}] <- ${req.method} ${req.originalUrl}`)); 81 | if (!_.isEmpty(req.body)) { 82 | let bodyString = JSON.stringify(req.body); 83 | if (bodyString.length > 512) { 84 | bodyString = `${bodyString.substring(0, 512)} (... truncated, total ${bodyString.length} bytes)`; 85 | } 86 | console.log(chalk.yellow(`[${reqId}] <- ${bodyString}`)); 87 | } 88 | 89 | const handlerFunc = route.handler; 90 | 91 | // FIXME: I couldn't get this to work using async/await. Node kept complaining about 92 | // unhandled promise rejections. Something to do with the transpiler? 93 | handlerFunc(req) 94 | .then((result: any) => { 95 | if (result) { 96 | const statusToSend = result.status || 200; 97 | const contentType = result.contentType || "application/json"; 98 | 99 | let bodyToLog = result.body; 100 | if (!bodyToLog) { 101 | bodyToLog = ""; 102 | } else if (bodyToLog.length > 512) { 103 | bodyToLog = `${bodyToLog.substring(0, 512)} (... truncated, total ${bodyToLog.length} bytes)`; 104 | } 105 | console.log(chalk.cyan(`[${reqId}] => ${result.status} ${bodyToLog}`)); 106 | const respObj = res.status(statusToSend).type(contentType).set("X-ReplicatedLocal-RequestId", reqId); 107 | if (result.filename) { 108 | respObj.attachment(result.filename); 109 | } 110 | if (result.headers) { 111 | _.forOwn(result.headers, (value, key) => { 112 | respObj.set(key, value); 113 | }); 114 | } 115 | respObj.send(result.body); 116 | } else { 117 | // Generic response. Shouldn't happen in most cases, but... 118 | console.log(chalk.cyan(`[${reqId}] => 200`)); 119 | res.status(200).set("X-ReplicatedLocal-RequestId", reqId).json(result); 120 | } 121 | }) 122 | .catch((err) => { 123 | if (err.status) { 124 | // Structured error, specific status code. 125 | const errMsg = err.err ? err.err.message : "An unexpected error occurred"; 126 | console.log(chalk.red(`[${reqId}] !! ${err.status} ${errMsg} ${err.stack || util.inspect(err)}`)); 127 | const bodyToSend = { 128 | error: errMsg, 129 | }; 130 | res.status(err.status).set("X-ReplicatedLocal-RequestId", reqId).json(bodyToSend); 131 | } else { 132 | // Generic error, default code (500). 133 | const bodyToSend = { 134 | error: err.message || "An unexpected error occurred", 135 | }; 136 | console.log(chalk.red(`[${reqId}] !! 500 ${err.stack || err.message || util.inspect(err)}`)); 137 | res.status(500).set("X-ReplicatedLocal-RequestId", reqId).json(bodyToSend); 138 | } 139 | }); 140 | }; 141 | 142 | // Register this route and callback with express. 143 | console.log(`[${route.method}] '${route.path}'`); 144 | if (route.method === "get") { 145 | app.get(route.path, routeCallback); 146 | } else if (route.method === "post") { 147 | app.post(route.path, routeCallback); 148 | } else if (route.method === "put") { 149 | app.put(route.path, routeCallback); 150 | } else if (route.method === "delete") { 151 | app.delete(route.path, routeCallback); 152 | } else if (route.method === "proxy") { 153 | app.use(route.path, proxy(consts.upstreamEndpoint, { 154 | forwardPath: (req, res) => { 155 | return path.join(require("url").parse(consts.upstreamEndpoint).path, req.originalUrl); 156 | }, 157 | })); 158 | } else { 159 | console.log(`Unhandled HTTP method: '${route.method}'`); 160 | } 161 | }); 162 | 163 | app.use((req, res, next) => { 164 | const errMsg = `Route not found for ${req.method} ${req.originalUrl}`; 165 | console.log(chalk.red(`[${req.ip}] ${errMsg}`)); 166 | res.status(404).send(errMsg); 167 | }); 168 | 169 | app.listen(8006, "0.0.0.0", () => { 170 | console.log("Replicated Studio listening on port 8006..."); 171 | }); 172 | } 173 | 174 | exports.start = () => { 175 | console.log("Started"); 176 | validate(); 177 | watch(); 178 | serve(); 179 | }; 180 | -------------------------------------------------------------------------------- /src/replicated/helpers.ts: -------------------------------------------------------------------------------- 1 | import {watch} from "../index"; 2 | import * as https from "https"; 3 | import consts from "../consts"; 4 | import * as path from "path"; 5 | import * as fs from "fs"; 6 | import { URL } from "url"; 7 | 8 | export async function allowMultiDocumentResponse(userAgent) { 9 | return false; 10 | } 11 | 12 | export function getRelease(req, sequence) { 13 | return new Promise((resolve, reject) => { 14 | const upstreamURL = new URL(consts.upstreamEndpoint); 15 | const options = { 16 | host: upstreamURL.host, 17 | path: "/market" + req.originalUrl, 18 | headers: req.headers, 19 | }; 20 | options.headers.host = upstreamURL.host; 21 | 22 | let yamldata = ""; 23 | https.get(options, (newRes) => { 24 | newRes.on("data", (chunk) => { 25 | console.log(chunk); 26 | if (chunk) { 27 | yamldata = yamldata + chunk.toString(); 28 | } 29 | }); 30 | 31 | newRes.on("end", () => { 32 | console.log("end"); 33 | fs.writeFileSync(path.join(consts.localPath, "releases", sequence + ".yaml"), yamldata); 34 | if (!fs.existsSync(path.join(consts.localPath, "current.yaml"))) { 35 | fs.copyFileSync(path.join(consts.localPath, "releases", sequence + ".yaml"), path.join(consts.localPath, "current.yaml")); 36 | watch(); 37 | } else { 38 | console.log("Release " + sequence + " was requested and was created using yaml returned by the Replicated API."); 39 | console.log("However, a current.yaml was already present, and was not overwritten."); 40 | } 41 | resolve(yamldata); 42 | }); 43 | 44 | }).on("error", (e) => { 45 | console.error(e); 46 | reject(e); 47 | }); 48 | }); 49 | } 50 | -------------------------------------------------------------------------------- /src/replicated/release.ts: -------------------------------------------------------------------------------- 1 | import * as fs from "fs"; 2 | import * as _ from "lodash"; 3 | import * as path from "path"; 4 | import * as yaml from "js-yaml"; 5 | 6 | import consts from "../consts"; 7 | 8 | function listAvailableReleasesInDir(filePath: string) { 9 | if (!fs.existsSync(filePath)) { 10 | return []; 11 | } 12 | const files = fs.readdirSync(filePath); 13 | const releases: string[] = []; 14 | files.forEach((file) => { 15 | // Valid releases are .y[a]ml 16 | if (_.endsWith(file, ".yaml") || _.endsWith(file, ".yml")) { 17 | const filenameParts = _.split(file, "."); 18 | if (filenameParts.length !== 2) { 19 | return; 20 | } 21 | 22 | const sequence = _.parseInt(filenameParts[0]); 23 | if (_.isNaN(sequence)) { 24 | return; 25 | } 26 | 27 | releases.push(file); 28 | } 29 | }); 30 | 31 | return _.sortBy(releases, (release) => { 32 | return _.parseInt(_.split(release, ".")[0]); 33 | }); 34 | } 35 | 36 | export function listAvailableReleases() { 37 | let files = listAvailableReleasesInDir(path.join(consts.localPath, "releases")); 38 | 39 | if (files.length === 0) { 40 | // create "releases" dir if it does not already exist 41 | if (!fs.existsSync(path.join(consts.localPath, "releases"))) { 42 | fs.mkdirSync(path.join(consts.localPath, "releases")); 43 | } 44 | 45 | // check parent dir for releases as part of migration process 46 | files = listAvailableReleasesInDir(consts.localPath); 47 | // and copy them to the releases dir if they exist 48 | if (files.length !== 0) { 49 | files.forEach((file) => { 50 | fs.copyFileSync(file, path.join(consts.localPath, "releases", path.basename(file))); 51 | }); 52 | files = listAvailableReleasesInDir(path.join(consts.localPath, "releases")); 53 | } 54 | } 55 | return files; 56 | } 57 | 58 | export function listAvailableReleasesAfter(minSequence) { 59 | const availableReleases = listAvailableReleases(); 60 | return _.remove(availableReleases, (release) => { 61 | const sequence = _.parseInt(_.split(release, ".")[0]); 62 | return sequence > minSequence; 63 | }); 64 | } 65 | 66 | export function fillOutDoc(doc: any) { 67 | // Some fields are added by the real api and we need to simulate that here 68 | if (doc.components) { 69 | doc.components.forEach((component) => { 70 | component.containers.forEach((container) => { 71 | if (!container.logs) { 72 | container.logs = { 73 | max_size: "", 74 | max_files: "", 75 | }; 76 | } 77 | if (container.env_vars) { 78 | container.env_vars.forEach((envvar) => { 79 | if (envvar.static_val && !envvar.value) { 80 | envvar.value = envvar.static_val; 81 | } 82 | if (envvar.value && !envvar.static_val) { 83 | envvar.static_val = envvar.value; 84 | } 85 | }); 86 | } 87 | }); 88 | }); 89 | } 90 | return doc; 91 | } 92 | 93 | export function fillOutYaml(filename: string): [string, string] { 94 | const source = fs.readFileSync(filename, "utf8"); 95 | 96 | return fillOutYamlString(source); 97 | } 98 | 99 | /* 100 | * Find the Replicated yaml doc and fill it out. Do not parse and output yaml 101 | * for other schedulers because the {{ }} template delimiters will be 102 | * transformed into [Object object] unless quoted, and the daemon will fail to 103 | * decode templated non-string types if quoted. Returns full Replicated yaml doc 104 | * for linting and full multi-doc for serving. 105 | */ 106 | export function fillOutYamlString(source: string): [string, string] { 107 | let ymls = source.split("---\n"); 108 | let replicated = ""; 109 | 110 | ymls = _.map(ymls, (yml) => { 111 | if (!_.trim(yml)) { 112 | return ""; 113 | } 114 | const meta = metadata(yml); 115 | 116 | if (isKindReplicated(meta)) { 117 | const doc = yaml.safeLoad(yml); 118 | const full = yaml.safeDump(fillOutDoc(doc)); 119 | 120 | replicated = full; 121 | 122 | // restore metadata stripped by load and dump 123 | return meta ? [meta, full].join("\n") : full; 124 | } 125 | 126 | return yml; 127 | }); 128 | 129 | return [replicated, ymls.join("---\n")]; 130 | } 131 | 132 | export function metadata(yaml: string): string { 133 | const lines = yaml.split("\n"); 134 | let i = 0; 135 | let metadata: string[] = []; 136 | 137 | // skip blanks 138 | for (; i < lines.length; i++) { 139 | const line = lines[i]; 140 | if (_.trim(line) === "") { 141 | continue; 142 | } 143 | break; 144 | } 145 | 146 | // first contiguous comment is metadata 147 | for (; i < lines.length; i++) { 148 | const line = lines[i]; 149 | 150 | if (/^\s*#.*$/.test(line)) { 151 | metadata.push(line); 152 | continue; 153 | } 154 | break; 155 | } 156 | 157 | return metadata.join("\n"); 158 | } 159 | 160 | export function kind(metadata: string): string { 161 | const matches = metadata.match(/kind:\s(\w*)/); 162 | 163 | return matches ? matches[1] : ""; 164 | } 165 | 166 | export function isKindReplicated(metadata: string): boolean { 167 | const k = kind(metadata); 168 | if (!k) { 169 | return true; 170 | } 171 | 172 | return k === "replicated"; 173 | } 174 | -------------------------------------------------------------------------------- /src/routes.ts: -------------------------------------------------------------------------------- 1 | import getAppDefaultRelease from "./handlers/getAppDefaultRelease"; 2 | import getAppOneRelease from "./handlers/getAppOneRelease"; 3 | import getAppUpgrades from "./handlers/getAppUpgrades"; 4 | import getAppMetadata from "./handlers/getAppMetadata"; 5 | 6 | export default { 7 | // 8 | // local routes 9 | // 10 | getAppDefaultRelease: { 11 | path: "/v1/app/:appId", 12 | method: "get", 13 | handler: getAppDefaultRelease, 14 | }, 15 | getAppOneRelease: { 16 | path: "/v1/app/:appId/:sequence", 17 | method: "get", 18 | handler: getAppOneRelease, 19 | }, 20 | getAppUpgrades: { 21 | path: "/v1/app/:appId/upgrades", 22 | method: "post", 23 | handler: getAppUpgrades, 24 | }, 25 | getAppMetadata: { 26 | path: "/app/:appId/:sequence/metadata", 27 | method: "get", 28 | handler: getAppMetadata, 29 | }, 30 | 31 | // 32 | // proxied routes 33 | // 34 | echoClientIP: { 35 | path: "*", 36 | method: "proxy", 37 | }, 38 | }; 39 | -------------------------------------------------------------------------------- /src/test/release.ts: -------------------------------------------------------------------------------- 1 | import {describe, it} from "mocha"; 2 | import {expect} from "chai"; 3 | import {fillOutDoc, fillOutYamlString, kind, metadata} from "../replicated/release"; 4 | 5 | describe("fillOutDoc", () => { 6 | it("handles an empty components spec", () => { 7 | fillOutDoc({}); 8 | }); 9 | it("populates value from static_val", () => { 10 | const updated = fillOutDoc({ 11 | components: [ 12 | { 13 | containers: [ 14 | { 15 | env_vars: [ 16 | {name: "PLATE", static_val: "kfbr392"}, 17 | ], 18 | }, 19 | ], 20 | }, 21 | ], 22 | }); 23 | 24 | expect(updated).to.have.deep.property("components.0.containers.0.env_vars.0.value", "kfbr392"); 25 | }); 26 | it("populates static_val from value", () => { 27 | const updated = fillOutDoc({ 28 | components: [ 29 | { 30 | containers: [ 31 | { 32 | env_vars: [ 33 | {name: "PLATE", value: "kfbr392"}, 34 | ], 35 | }, 36 | ], 37 | }, 38 | ], 39 | }); 40 | 41 | expect(updated).to.have.deep.property("components.0.containers.0.env_vars.0.static_val", "kfbr392"); 42 | }); 43 | it("adds logs if absent", () => { 44 | const updated = fillOutDoc({ 45 | components: [ 46 | { 47 | containers: [ 48 | { 49 | name: "some-name", 50 | }, 51 | ], 52 | }, 53 | ], 54 | }); 55 | 56 | expect(updated).to.have.deep.property("components.0.containers.0.logs.max_size", ""); 57 | expect(updated).to.have.deep.property("components.0.containers.0.logs.max_files", ""); 58 | }); 59 | }); 60 | 61 | describe("fillOutYamlString", () => { 62 | it("finds the replicated yaml and preserves metadata", () => { 63 | const yml = `--- 64 | # kind: replicated 65 | replicated_api_version: 2.18.0 66 | 67 | --- 68 | # kind: scheduler-kubernetes 69 | apiVersion: apps/v1 70 | kind: Deployment 71 | `; 72 | const [replYml, multiYml] = fillOutYamlString(yml); 73 | 74 | expect(replYml).to.equal("replicated_api_version: 2.18.0\n"); 75 | expect(multiYml).to.equal(`--- 76 | # kind: replicated 77 | replicated_api_version: 2.18.0 78 | --- 79 | # kind: scheduler-kubernetes 80 | apiVersion: apps/v1 81 | kind: Deployment 82 | `); 83 | }); 84 | }); 85 | 86 | describe("metadata", () => { 87 | it("finds metadata", () => { 88 | const yaml = ` 89 | 90 | # id: abc 91 | # kind: replicated 92 | 93 | replicated_api_version: 2.18.0`; 94 | const answer = `# id: abc 95 | # kind: replicated`; 96 | const output = metadata(yaml); 97 | 98 | expect(output).to.equal(answer); 99 | }); 100 | }); 101 | 102 | describe("kind", () => { 103 | it("finds the kind", () => { 104 | const meta = `# id: abc 105 | # kind: replicated`; 106 | const answer = "replicated"; 107 | const output = kind(meta); 108 | 109 | expect(output).to.equal(answer); 110 | }); 111 | }); 112 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es6", 4 | "module": "commonjs", 5 | "noEmitOnError": true, 6 | "sourceMap": true, 7 | "removeComments": true, 8 | "preserveConstEnums": true, 9 | "strictNullChecks": true, 10 | "outDir": "dist", 11 | "pretty": true, 12 | "noImplicitAny": false, 13 | "allowJs": true 14 | }, 15 | "include": [ 16 | "src/**/*.ts" 17 | ], 18 | "exclude": [ 19 | "node_modules" 20 | ] 21 | } 22 | -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "tslint:recommended", 3 | "jsRules": { 4 | "no-console": [false], 5 | "object-literal-sort-keys": false, 6 | "max-line-length": [false] 7 | }, 8 | "rules": { 9 | "ordered-imports": [false], 10 | "no-console": [false], 11 | "interface-name": [false], 12 | "object-literal-sort-keys": false, 13 | "max-line-length": [false], 14 | "member-ordering": [false], 15 | "arrow-parens": false, 16 | "no-string-literal": false 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@snyk/dep-graph@1.1.2": 6 | version "1.1.2" 7 | resolved "https://registry.yarnpkg.com/@snyk/dep-graph/-/dep-graph-1.1.2.tgz#a0377fbb29dd42bc12d1c2493b51a7b7fe0d334a" 8 | integrity sha512-mCoAFKtmezBL61JOzLMzqqd/sXXxp0iektEwf4zw+sM3zuG4Tnmhf8OqNO6Wscn84bMIfLlI/nvECdxvSS7MTw== 9 | dependencies: 10 | graphlib "^2.1.5" 11 | lodash "^4" 12 | source-map-support "^0.5.9" 13 | tslib "^1.9.3" 14 | 15 | "@snyk/gemfile@1.1.0": 16 | version "1.1.0" 17 | resolved "https://registry.yarnpkg.com/@snyk/gemfile/-/gemfile-1.1.0.tgz#8c254dfc7739b2e8513c44c976fc41872d5f6af0" 18 | integrity sha512-mLwF+ccuvRZMS0SxUAxA3dAp8mB3m2FxIsBIUWFTYvzxl+E4XTZb8uFrUqXHbcxhZH1Z8taHohNTbzXZn3M8ag== 19 | 20 | "@types/chai@^3.4.34": 21 | version "3.5.2" 22 | resolved "https://registry.yarnpkg.com/@types/chai/-/chai-3.5.2.tgz#c11cd2817d3a401b7ba0f5a420f35c56139b1c1e" 23 | 24 | "@types/json-schema@^6.0.1": 25 | version "6.0.1" 26 | resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-6.0.1.tgz#a761975746f1c1b2579c62e3a4b5e88f986f7e2e" 27 | 28 | "@types/node@^8.0.57": 29 | version "8.0.57" 30 | resolved "https://registry.yarnpkg.com/@types/node/-/node-8.0.57.tgz#e5d8b4dc112763e35cfc51988f4f38da3c486d99" 31 | 32 | "@types/tv4@^1.2.28": 33 | version "1.2.28" 34 | resolved "https://registry.yarnpkg.com/@types/tv4/-/tv4-1.2.28.tgz#0bbda35bf4a85d9e5be56a00519981cb9e408cd5" 35 | 36 | "@yarnpkg/lockfile@^1.0.2": 37 | version "1.1.0" 38 | resolved "https://registry.yarnpkg.com/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz#e77a97fbd345b76d83245edcd17d393b1b41fb31" 39 | integrity sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ== 40 | 41 | abbrev@1, abbrev@^1.1.1: 42 | version "1.1.1" 43 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 44 | 45 | abbrev@~1.0.9: 46 | version "1.0.9" 47 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" 48 | 49 | accepts@~1.3.4: 50 | version "1.3.4" 51 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.4.tgz#86246758c7dd6d21a6474ff084a4740ec05eb21f" 52 | dependencies: 53 | mime-types "~2.1.16" 54 | negotiator "0.6.1" 55 | 56 | agent-base@4, agent-base@^4.1.0, agent-base@^4.2.0: 57 | version "4.2.1" 58 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-4.2.1.tgz#d89e5999f797875674c07d87f260fc41e83e8ca9" 59 | integrity sha512-JVwXMr9nHYTUXsBFKUqhJwvlcYU/blreOEUkhNR2eXZIvwd+c+o5V4MgDPKWnMS/56awN3TRzIP+KoPn+roQtg== 60 | dependencies: 61 | es6-promisify "^5.0.0" 62 | 63 | ajv@^5.1.0: 64 | version "5.3.0" 65 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.3.0.tgz#4414ff74a50879c208ee5fdc826e32c303549eda" 66 | dependencies: 67 | co "^4.6.0" 68 | fast-deep-equal "^1.0.0" 69 | fast-json-stable-stringify "^2.0.0" 70 | json-schema-traverse "^0.3.0" 71 | 72 | ansi-align@^2.0.0: 73 | version "2.0.0" 74 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" 75 | dependencies: 76 | string-width "^2.0.0" 77 | 78 | ansi-escapes@^3.0.0, ansi-escapes@^3.1.0: 79 | version "3.1.0" 80 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30" 81 | integrity sha512-UgAb8H9D41AQnu/PbWlCofQVcnV4Gs2bBJi9eZPxfU/hgglFh3SMDMENRIqdr7H6XFnXdoknctFByVsCOotTVw== 82 | 83 | ansi-regex@^2.0.0: 84 | version "2.1.1" 85 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 86 | 87 | ansi-regex@^3.0.0: 88 | version "3.0.0" 89 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 90 | 91 | ansi-styles@^2.2.1: 92 | version "2.2.1" 93 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 94 | 95 | ansi-styles@^3.1.0: 96 | version "3.2.0" 97 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 98 | dependencies: 99 | color-convert "^1.9.0" 100 | 101 | ansi-styles@^3.2.1: 102 | version "3.2.1" 103 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 104 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 105 | dependencies: 106 | color-convert "^1.9.0" 107 | 108 | ansi@^0.3.0, ansi@~0.3.0, ansi@~0.3.1: 109 | version "0.3.1" 110 | resolved "https://registry.yarnpkg.com/ansi/-/ansi-0.3.1.tgz#0c42d4fb17160d5a9af1e484bace1c66922c1b21" 111 | 112 | ansicolors@^0.3.2, ansicolors@~0.3.2: 113 | version "0.3.2" 114 | resolved "https://registry.yarnpkg.com/ansicolors/-/ansicolors-0.3.2.tgz#665597de86a9ffe3aa9bfbe6cae5c6ea426b4979" 115 | 116 | ansistyles@~0.1.3: 117 | version "0.1.3" 118 | resolved "https://registry.yarnpkg.com/ansistyles/-/ansistyles-0.1.3.tgz#5de60415bda071bb37127854c864f41b23254539" 119 | 120 | aproba@^1.0.3: 121 | version "1.2.0" 122 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 123 | 124 | archy@^1.0.0, archy@~1.0.0: 125 | version "1.0.0" 126 | resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" 127 | 128 | are-we-there-yet@~1.0.0: 129 | version "1.0.6" 130 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.0.6.tgz#a2d28c93102aa6cc96245a26cb954de06ec53f0c" 131 | dependencies: 132 | delegates "^1.0.0" 133 | readable-stream "^2.0.0 || ^1.1.13" 134 | 135 | are-we-there-yet@~1.1.2: 136 | version "1.1.4" 137 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 138 | dependencies: 139 | delegates "^1.0.0" 140 | readable-stream "^2.0.6" 141 | 142 | argparse@^1.0.7: 143 | version "1.0.9" 144 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 145 | dependencies: 146 | sprintf-js "~1.0.2" 147 | 148 | array-flatten@1.1.1: 149 | version "1.1.1" 150 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" 151 | 152 | asap@^2.0.0, asap@~2.0.3: 153 | version "2.0.6" 154 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" 155 | 156 | asn1@~0.2.3: 157 | version "0.2.3" 158 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 159 | 160 | assert-plus@1.0.0, assert-plus@^1.0.0: 161 | version "1.0.0" 162 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 163 | 164 | assert-plus@^0.2.0: 165 | version "0.2.0" 166 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 167 | 168 | assertion-error@^1.0.1: 169 | version "1.0.2" 170 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.0.2.tgz#13ca515d86206da0bac66e834dd397d87581094c" 171 | 172 | ast-types@0.x.x: 173 | version "0.11.7" 174 | resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.11.7.tgz#f318bf44e339db6a320be0009ded64ec1471f46c" 175 | integrity sha512-2mP3TwtkY/aTv5X3ZsMpNAbOnyoC/aMJwJSoaELPkHId0nSQgFcnU4dRW3isxiz7+zBexk0ym3WNVjMiQBnJSw== 176 | 177 | async-some@~1.0.2: 178 | version "1.0.2" 179 | resolved "https://registry.yarnpkg.com/async-some/-/async-some-1.0.2.tgz#4d8a81620d5958791b5b98f802d3207776e95509" 180 | dependencies: 181 | dezalgo "^1.0.2" 182 | 183 | async@^1.4.0, async@~1.5: 184 | version "1.5.2" 185 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 186 | integrity sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo= 187 | 188 | async@^2.0.1: 189 | version "2.5.0" 190 | resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d" 191 | dependencies: 192 | lodash "^4.14.0" 193 | 194 | asynckit@^0.4.0: 195 | version "0.4.0" 196 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 197 | 198 | aws-sign2@~0.6.0: 199 | version "0.6.0" 200 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 201 | 202 | aws-sign2@~0.7.0: 203 | version "0.7.0" 204 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 205 | 206 | aws4@^1.2.1, aws4@^1.6.0: 207 | version "1.6.0" 208 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 209 | 210 | babel-code-frame@^6.20.0: 211 | version "6.26.0" 212 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 213 | dependencies: 214 | chalk "^1.1.3" 215 | esutils "^2.0.2" 216 | js-tokens "^3.0.2" 217 | 218 | balanced-match@^1.0.0: 219 | version "1.0.0" 220 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 221 | 222 | bcrypt-pbkdf@^1.0.0: 223 | version "1.0.1" 224 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 225 | dependencies: 226 | tweetnacl "^0.14.3" 227 | 228 | bl@~1.1.2: 229 | version "1.1.2" 230 | resolved "https://registry.yarnpkg.com/bl/-/bl-1.1.2.tgz#fdca871a99713aa00d19e3bbba41c44787a65398" 231 | dependencies: 232 | readable-stream "~2.0.5" 233 | 234 | block-stream@*, block-stream@0.0.9: 235 | version "0.0.9" 236 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 237 | dependencies: 238 | inherits "~2.0.0" 239 | 240 | body-parser@1.18.2, body-parser@^1.17.0: 241 | version "1.18.2" 242 | resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.18.2.tgz#87678a19d84b47d859b83199bd59bce222b10454" 243 | dependencies: 244 | bytes "3.0.0" 245 | content-type "~1.0.4" 246 | debug "2.6.9" 247 | depd "~1.1.1" 248 | http-errors "~1.6.2" 249 | iconv-lite "0.4.19" 250 | on-finished "~2.3.0" 251 | qs "6.5.1" 252 | raw-body "2.3.2" 253 | type-is "~1.6.15" 254 | 255 | boom@2.x.x: 256 | version "2.10.1" 257 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 258 | dependencies: 259 | hoek "2.x.x" 260 | 261 | boom@4.x.x: 262 | version "4.3.1" 263 | resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31" 264 | dependencies: 265 | hoek "4.x.x" 266 | 267 | boom@5.x.x: 268 | version "5.2.0" 269 | resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02" 270 | dependencies: 271 | hoek "4.x.x" 272 | 273 | boxen@^1.2.1: 274 | version "1.2.2" 275 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.2.2.tgz#3f1d4032c30ffea9d4b02c322eaf2ea741dcbce5" 276 | dependencies: 277 | ansi-align "^2.0.0" 278 | camelcase "^4.0.0" 279 | chalk "^2.0.1" 280 | cli-boxes "^1.0.0" 281 | string-width "^2.0.0" 282 | term-size "^1.2.0" 283 | widest-line "^1.0.0" 284 | 285 | brace-expansion@^1.1.7: 286 | version "1.1.8" 287 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 288 | dependencies: 289 | balanced-match "^1.0.0" 290 | concat-map "0.0.1" 291 | 292 | browser-stdout@1.3.0: 293 | version "1.3.0" 294 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" 295 | 296 | buffer-from@^1.0.0: 297 | version "1.1.1" 298 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 299 | integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== 300 | 301 | buffer-shims@^1.0.0: 302 | version "1.0.0" 303 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 304 | 305 | builtin-modules@^1.0.0: 306 | version "1.1.1" 307 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 308 | 309 | builtins@0.0.7: 310 | version "0.0.7" 311 | resolved "https://registry.yarnpkg.com/builtins/-/builtins-0.0.7.tgz#355219cd6cf18dbe7c01cc7fd2dce765cfdc549a" 312 | 313 | builtins@^1.0.3: 314 | version "1.0.3" 315 | resolved "https://registry.yarnpkg.com/builtins/-/builtins-1.0.3.tgz#cb94faeb61c8696451db36534e1422f94f0aee88" 316 | 317 | bytes@3.0.0: 318 | version "3.0.0" 319 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" 320 | 321 | camelcase@^2.0.1: 322 | version "2.1.1" 323 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 324 | integrity sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8= 325 | 326 | camelcase@^4.0.0, camelcase@^4.1.0: 327 | version "4.1.0" 328 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 329 | 330 | capture-stack-trace@^1.0.0: 331 | version "1.0.0" 332 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" 333 | 334 | caseless@~0.11.0: 335 | version "0.11.0" 336 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 337 | 338 | caseless@~0.12.0: 339 | version "0.12.0" 340 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 341 | 342 | chai@3.5.0: 343 | version "3.5.0" 344 | resolved "https://registry.yarnpkg.com/chai/-/chai-3.5.0.tgz#4d02637b067fe958bdbfdd3a40ec56fef7373247" 345 | dependencies: 346 | assertion-error "^1.0.1" 347 | deep-eql "^0.1.3" 348 | type-detect "^1.0.0" 349 | 350 | chalk@^1.1.1, chalk@^1.1.3: 351 | version "1.1.3" 352 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 353 | dependencies: 354 | ansi-styles "^2.2.1" 355 | escape-string-regexp "^1.0.2" 356 | has-ansi "^2.0.0" 357 | strip-ansi "^3.0.0" 358 | supports-color "^2.0.0" 359 | 360 | chalk@^2.0.0, chalk@^2.4.1: 361 | version "2.4.1" 362 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e" 363 | integrity sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ== 364 | dependencies: 365 | ansi-styles "^3.2.1" 366 | escape-string-regexp "^1.0.5" 367 | supports-color "^5.3.0" 368 | 369 | chalk@^2.0.1: 370 | version "2.3.0" 371 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba" 372 | dependencies: 373 | ansi-styles "^3.1.0" 374 | escape-string-regexp "^1.0.5" 375 | supports-color "^4.0.0" 376 | 377 | char-spinner@~1.0.1: 378 | version "1.0.1" 379 | resolved "https://registry.yarnpkg.com/char-spinner/-/char-spinner-1.0.1.tgz#e6ea67bd247e107112983b7ab0479ed362800081" 380 | 381 | chardet@^0.4.0: 382 | version "0.4.2" 383 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" 384 | integrity sha1-tUc7M9yXxCTl2Y3IfVXU2KKci/I= 385 | 386 | chmodr@~1.0.2: 387 | version "1.0.2" 388 | resolved "https://registry.yarnpkg.com/chmodr/-/chmodr-1.0.2.tgz#04662b932d0f02ec66deaa2b0ea42811968e3eb9" 389 | 390 | chownr@^1.0.1, chownr@~1.0.1: 391 | version "1.0.1" 392 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.0.1.tgz#e2a75042a9551908bebd25b8523d5f9769d79181" 393 | 394 | cli-boxes@^1.0.0: 395 | version "1.0.0" 396 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 397 | 398 | cli-cursor@^2.1.0: 399 | version "2.1.0" 400 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 401 | integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU= 402 | dependencies: 403 | restore-cursor "^2.0.0" 404 | 405 | cli-width@^2.0.0: 406 | version "2.2.0" 407 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 408 | integrity sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk= 409 | 410 | cliui@^3.0.3, cliui@^3.2.0: 411 | version "3.2.0" 412 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 413 | dependencies: 414 | string-width "^1.0.1" 415 | strip-ansi "^3.0.1" 416 | wrap-ansi "^2.0.0" 417 | 418 | clone-deep@^0.3.0: 419 | version "0.3.0" 420 | resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-0.3.0.tgz#348c61ae9cdbe0edfe053d91ff4cc521d790ede8" 421 | integrity sha1-NIxhrpzb4O3+BT2R/0zFIdeQ7eg= 422 | dependencies: 423 | for-own "^1.0.0" 424 | is-plain-object "^2.0.1" 425 | kind-of "^3.2.2" 426 | shallow-clone "^0.1.2" 427 | 428 | clone@^1.0.2: 429 | version "1.0.2" 430 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" 431 | 432 | cmd-shim@~2.0.2: 433 | version "2.0.2" 434 | resolved "https://registry.yarnpkg.com/cmd-shim/-/cmd-shim-2.0.2.tgz#6fcbda99483a8fd15d7d30a196ca69d688a2efdb" 435 | dependencies: 436 | graceful-fs "^4.1.2" 437 | mkdirp "~0.5.0" 438 | 439 | co@^4.6.0: 440 | version "4.6.0" 441 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 442 | 443 | code-point-at@^1.0.0: 444 | version "1.1.0" 445 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 446 | 447 | coffee-script@^1.12.7: 448 | version "1.12.7" 449 | resolved "https://registry.yarnpkg.com/coffee-script/-/coffee-script-1.12.7.tgz#c05dae0cb79591d05b3070a8433a98c9a89ccc53" 450 | 451 | color-convert@^1.9.0: 452 | version "1.9.0" 453 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 454 | dependencies: 455 | color-name "^1.1.1" 456 | 457 | color-name@^1.1.1: 458 | version "1.1.3" 459 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 460 | 461 | colors@^1.1.2: 462 | version "1.1.2" 463 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" 464 | 465 | columnify@~1.5.4: 466 | version "1.5.4" 467 | resolved "https://registry.yarnpkg.com/columnify/-/columnify-1.5.4.tgz#4737ddf1c7b69a8a7c340570782e947eec8e78bb" 468 | dependencies: 469 | strip-ansi "^3.0.0" 470 | wcwidth "^1.0.0" 471 | 472 | combined-stream@^1.0.5, combined-stream@~1.0.5: 473 | version "1.0.5" 474 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 475 | dependencies: 476 | delayed-stream "~1.0.0" 477 | 478 | commander@2.9.0: 479 | version "2.9.0" 480 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 481 | dependencies: 482 | graceful-readlink ">= 1.0.0" 483 | 484 | commander@^2.9.0: 485 | version "2.11.0" 486 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" 487 | 488 | concat-map@0.0.1: 489 | version "0.0.1" 490 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 491 | 492 | concat-stream@^1.4.6, concat-stream@^1.5.2: 493 | version "1.6.0" 494 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 495 | dependencies: 496 | inherits "^2.0.3" 497 | readable-stream "^2.2.2" 498 | typedarray "^0.0.6" 499 | 500 | config-chain@~1.1.10: 501 | version "1.1.11" 502 | resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.11.tgz#aba09747dfbe4c3e70e766a6e41586e1859fc6f2" 503 | dependencies: 504 | ini "^1.3.4" 505 | proto-list "~1.2.1" 506 | 507 | configstore@^3.0.0: 508 | version "3.1.1" 509 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.1.tgz#094ee662ab83fad9917678de114faaea8fcdca90" 510 | dependencies: 511 | dot-prop "^4.1.0" 512 | graceful-fs "^4.1.2" 513 | make-dir "^1.0.0" 514 | unique-string "^1.0.0" 515 | write-file-atomic "^2.0.0" 516 | xdg-basedir "^3.0.0" 517 | 518 | configstore@^3.1.2: 519 | version "3.1.2" 520 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.2.tgz#c6f25defaeef26df12dd33414b001fe81a543f8f" 521 | integrity sha512-vtv5HtGjcYUgFrXc6Kx747B83MRRVS5R1VTEQoXvuP+kMI+if6uywV0nDGoiydJRy4yk7h9od5Og0kxx4zUXmw== 522 | dependencies: 523 | dot-prop "^4.1.0" 524 | graceful-fs "^4.1.2" 525 | make-dir "^1.0.0" 526 | unique-string "^1.0.0" 527 | write-file-atomic "^2.0.0" 528 | xdg-basedir "^3.0.0" 529 | 530 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 531 | version "1.1.0" 532 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 533 | 534 | content-disposition@0.5.2: 535 | version "0.5.2" 536 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" 537 | 538 | content-type@~1.0.4: 539 | version "1.0.4" 540 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" 541 | 542 | cookie-signature@1.0.6: 543 | version "1.0.6" 544 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" 545 | 546 | cookie@0.3.1: 547 | version "0.3.1" 548 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" 549 | 550 | core-js@~2.3.0: 551 | version "2.3.0" 552 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.3.0.tgz#fab83fbb0b2d8dc85fa636c4b9d34c75420c6d65" 553 | integrity sha1-+rg/uwstjchfpjbEudNMdUIMbWU= 554 | 555 | core-util-is@1.0.2, core-util-is@~1.0.0: 556 | version "1.0.2" 557 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 558 | 559 | cors@^2.8.1: 560 | version "2.8.4" 561 | resolved "https://registry.yarnpkg.com/cors/-/cors-2.8.4.tgz#2bd381f2eb201020105cd50ea59da63090694686" 562 | dependencies: 563 | object-assign "^4" 564 | vary "^1" 565 | 566 | create-error-class@^3.0.0: 567 | version "3.0.2" 568 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" 569 | dependencies: 570 | capture-stack-trace "^1.0.0" 571 | 572 | cross-spawn@^5.0.1: 573 | version "5.1.0" 574 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 575 | dependencies: 576 | lru-cache "^4.0.1" 577 | shebang-command "^1.2.0" 578 | which "^1.2.9" 579 | 580 | cryptiles@2.x.x: 581 | version "2.0.5" 582 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 583 | dependencies: 584 | boom "2.x.x" 585 | 586 | cryptiles@3.x.x: 587 | version "3.1.2" 588 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe" 589 | dependencies: 590 | boom "5.x.x" 591 | 592 | crypto-random-string@^1.0.0: 593 | version "1.0.0" 594 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" 595 | 596 | dashdash@^1.12.0: 597 | version "1.14.1" 598 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 599 | dependencies: 600 | assert-plus "^1.0.0" 601 | 602 | data-uri-to-buffer@1: 603 | version "1.2.0" 604 | resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-1.2.0.tgz#77163ea9c20d8641b4707e8f18abdf9a78f34835" 605 | integrity sha512-vKQ9DTQPN1FLYiiEEOQ6IBGFqvjCa5rSK3cWMy/Nespm5d/x3dGFT9UBZnkLxCwua/IXBi2TYnwTEpsOvhC4UQ== 606 | 607 | date-format@0.0.2: 608 | version "0.0.2" 609 | resolved "https://registry.yarnpkg.com/date-format/-/date-format-0.0.2.tgz#fafd448f72115ef1e2b739155ae92f2be6c28dd1" 610 | 611 | debug@2, debug@2.6.9, debug@^2.1.2, debug@^2.2.0: 612 | version "2.6.9" 613 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 614 | dependencies: 615 | ms "2.0.0" 616 | 617 | debug@2.6.8: 618 | version "2.6.8" 619 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 620 | dependencies: 621 | ms "2.0.0" 622 | 623 | debug@3.1.0: 624 | version "3.1.0" 625 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 626 | integrity sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g== 627 | dependencies: 628 | ms "2.0.0" 629 | 630 | debug@^3, debug@^3.1.0, debug@^3.2.5: 631 | version "3.2.6" 632 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" 633 | integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== 634 | dependencies: 635 | ms "^2.1.1" 636 | 637 | debuglog@^1.0.1: 638 | version "1.0.1" 639 | resolved "https://registry.yarnpkg.com/debuglog/-/debuglog-1.0.1.tgz#aa24ffb9ac3df9a2351837cfb2d279360cd78492" 640 | 641 | decamelize@^1.1.1: 642 | version "1.2.0" 643 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 644 | 645 | deep-eql@^0.1.3: 646 | version "0.1.3" 647 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-0.1.3.tgz#ef558acab8de25206cd713906d74e56930eb69f2" 648 | dependencies: 649 | type-detect "0.1.1" 650 | 651 | deep-extend@~0.4.0: 652 | version "0.4.2" 653 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 654 | 655 | deep-is@~0.1.3: 656 | version "0.1.3" 657 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 658 | integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= 659 | 660 | defaults@^1.0.3: 661 | version "1.0.3" 662 | resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" 663 | dependencies: 664 | clone "^1.0.2" 665 | 666 | degenerator@^1.0.4: 667 | version "1.0.4" 668 | resolved "https://registry.yarnpkg.com/degenerator/-/degenerator-1.0.4.tgz#fcf490a37ece266464d9cc431ab98c5819ced095" 669 | integrity sha1-/PSQo37OJmRk2cxDGrmMWBnO0JU= 670 | dependencies: 671 | ast-types "0.x.x" 672 | escodegen "1.x.x" 673 | esprima "3.x.x" 674 | 675 | delayed-stream@~1.0.0: 676 | version "1.0.0" 677 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 678 | 679 | delegates@^1.0.0: 680 | version "1.0.0" 681 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 682 | 683 | depd@1.1.1, depd@~1.1.1: 684 | version "1.1.1" 685 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.1.tgz#5783b4e1c459f06fa5ca27f991f3d06e7a310359" 686 | 687 | depd@~1.1.2: 688 | version "1.1.2" 689 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" 690 | integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= 691 | 692 | destroy@~1.0.4: 693 | version "1.0.4" 694 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 695 | 696 | dezalgo@^1.0.0, dezalgo@^1.0.1, dezalgo@^1.0.2, dezalgo@~1.0.3: 697 | version "1.0.3" 698 | resolved "https://registry.yarnpkg.com/dezalgo/-/dezalgo-1.0.3.tgz#7f742de066fc748bc8db820569dddce49bf0d456" 699 | dependencies: 700 | asap "^2.0.0" 701 | wrappy "1" 702 | 703 | diff@3.2.0: 704 | version "3.2.0" 705 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 706 | 707 | diff@^3.0.1: 708 | version "3.4.0" 709 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.4.0.tgz#b1d85507daf3964828de54b37d0d73ba67dda56c" 710 | 711 | dockerfile-ast@0.0.12: 712 | version "0.0.12" 713 | resolved "https://registry.yarnpkg.com/dockerfile-ast/-/dockerfile-ast-0.0.12.tgz#6f25f6ad55eeecdd297ab68b08be1b32e64b5aeb" 714 | integrity sha512-cIV8oXkAxpIuN5XgG0TGg07nLDgrj4olkfrdT77OTA3VypscsYHBUg/FjHxW9K3oA+CyH4Th/qtoMgTVpzSobw== 715 | dependencies: 716 | vscode-languageserver-types "^3.5.0" 717 | 718 | dot-prop@^4.1.0: 719 | version "4.2.0" 720 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57" 721 | dependencies: 722 | is-obj "^1.0.0" 723 | 724 | duplexer3@^0.1.4: 725 | version "0.1.4" 726 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" 727 | 728 | ecc-jsbn@~0.1.1: 729 | version "0.1.1" 730 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 731 | dependencies: 732 | jsbn "~0.1.0" 733 | 734 | editor@~1.0.0: 735 | version "1.0.0" 736 | resolved "https://registry.yarnpkg.com/editor/-/editor-1.0.0.tgz#60c7f87bd62bcc6a894fa8ccd6afb7823a24f742" 737 | 738 | ee-first@1.1.1: 739 | version "1.1.1" 740 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 741 | 742 | email-validator@^2.0.4: 743 | version "2.0.4" 744 | resolved "https://registry.yarnpkg.com/email-validator/-/email-validator-2.0.4.tgz#b8dfaa5d0dae28f1b03c95881d904d4e40bfe7ed" 745 | integrity sha512-gYCwo7kh5S3IDyZPLZf6hSS0MnZT8QmJFqYvbqlDZSbwdZlY6QZWxJ4i/6UhITOJ4XzyI647Bm2MXKCLqnJ4nQ== 746 | 747 | encodeurl@~1.0.1: 748 | version "1.0.1" 749 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20" 750 | 751 | error-ex@^1.2.0: 752 | version "1.3.1" 753 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 754 | dependencies: 755 | is-arrayish "^0.2.1" 756 | 757 | es6-promise@^3.2.1: 758 | version "3.3.1" 759 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-3.3.1.tgz#a08cdde84ccdbf34d027a1451bc91d4bcd28a613" 760 | 761 | es6-promise@^4.0.3: 762 | version "4.2.5" 763 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.5.tgz#da6d0d5692efb461e082c14817fe2427d8f5d054" 764 | integrity sha512-n6wvpdE43VFtJq+lUDYDBFUwV8TZbuGXLV4D6wKafg13ldznKsyEvatubnmUe31zcvelSzOHF+XbaT+Bl9ObDg== 765 | 766 | es6-promise@~3.0.2: 767 | version "3.0.2" 768 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-3.0.2.tgz#010d5858423a5f118979665f46486a95c6ee2bb6" 769 | integrity sha1-AQ1YWEI6XxGJeWZfRkhqlcbuK7Y= 770 | 771 | es6-promisify@^5.0.0: 772 | version "5.0.0" 773 | resolved "https://registry.yarnpkg.com/es6-promisify/-/es6-promisify-5.0.0.tgz#5109d62f3e56ea967c4b63505aef08291c8a5203" 774 | integrity sha1-UQnWLz5W6pZ8S2NQWu8IKRyKUgM= 775 | dependencies: 776 | es6-promise "^4.0.3" 777 | 778 | escape-html@~1.0.3: 779 | version "1.0.3" 780 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 781 | 782 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 783 | version "1.0.5" 784 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 785 | 786 | escodegen@1.x.x: 787 | version "1.11.0" 788 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.11.0.tgz#b27a9389481d5bfd5bec76f7bb1eb3f8f4556589" 789 | integrity sha512-IeMV45ReixHS53K/OmfKAIztN/igDHzTJUhZM3k1jMhIZWjk45SMwAtBsEXiJp3vSPmTcu6CXn7mDvFHRN66fw== 790 | dependencies: 791 | esprima "^3.1.3" 792 | estraverse "^4.2.0" 793 | esutils "^2.0.2" 794 | optionator "^0.8.1" 795 | optionalDependencies: 796 | source-map "~0.6.1" 797 | 798 | esprima@3.x.x, esprima@^3.1.3: 799 | version "3.1.3" 800 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 801 | integrity sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM= 802 | 803 | esprima@^4.0.0: 804 | version "4.0.0" 805 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 806 | 807 | estraverse@^4.2.0: 808 | version "4.2.0" 809 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 810 | integrity sha1-De4/7TH81GlhjOc0IJn8GvoL2xM= 811 | 812 | esutils@^2.0.2: 813 | version "2.0.2" 814 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 815 | 816 | etag@~1.8.1: 817 | version "1.8.1" 818 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" 819 | 820 | execa@^0.7.0: 821 | version "0.7.0" 822 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 823 | dependencies: 824 | cross-spawn "^5.0.1" 825 | get-stream "^3.0.0" 826 | is-stream "^1.1.0" 827 | npm-run-path "^2.0.0" 828 | p-finally "^1.0.0" 829 | signal-exit "^3.0.0" 830 | strip-eof "^1.0.0" 831 | 832 | express-http-proxy@^0.11.0: 833 | version "0.11.0" 834 | resolved "https://registry.yarnpkg.com/express-http-proxy/-/express-http-proxy-0.11.0.tgz#f2e6ba2e9e8677b1ba335375c3cae670d5a1bb0a" 835 | dependencies: 836 | es6-promise "^3.2.1" 837 | raw-body "^2.1.7" 838 | 839 | express@^4.15.0: 840 | version "4.16.2" 841 | resolved "https://registry.yarnpkg.com/express/-/express-4.16.2.tgz#e35c6dfe2d64b7dca0a5cd4f21781be3299e076c" 842 | dependencies: 843 | accepts "~1.3.4" 844 | array-flatten "1.1.1" 845 | body-parser "1.18.2" 846 | content-disposition "0.5.2" 847 | content-type "~1.0.4" 848 | cookie "0.3.1" 849 | cookie-signature "1.0.6" 850 | debug "2.6.9" 851 | depd "~1.1.1" 852 | encodeurl "~1.0.1" 853 | escape-html "~1.0.3" 854 | etag "~1.8.1" 855 | finalhandler "1.1.0" 856 | fresh "0.5.2" 857 | merge-descriptors "1.0.1" 858 | methods "~1.1.2" 859 | on-finished "~2.3.0" 860 | parseurl "~1.3.2" 861 | path-to-regexp "0.1.7" 862 | proxy-addr "~2.0.2" 863 | qs "6.5.1" 864 | range-parser "~1.2.0" 865 | safe-buffer "5.1.1" 866 | send "0.16.1" 867 | serve-static "1.13.1" 868 | setprototypeof "1.1.0" 869 | statuses "~1.3.1" 870 | type-is "~1.6.15" 871 | utils-merge "1.0.1" 872 | vary "~1.1.2" 873 | 874 | extend@3: 875 | version "3.0.2" 876 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 877 | integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== 878 | 879 | extend@~3.0.0, extend@~3.0.1: 880 | version "3.0.1" 881 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 882 | 883 | external-editor@^2.0.4: 884 | version "2.2.0" 885 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5" 886 | integrity sha512-bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A== 887 | dependencies: 888 | chardet "^0.4.0" 889 | iconv-lite "^0.4.17" 890 | tmp "^0.0.33" 891 | 892 | extsprintf@1.3.0, extsprintf@^1.2.0: 893 | version "1.3.0" 894 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 895 | 896 | fast-deep-equal@^1.0.0: 897 | version "1.0.0" 898 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 899 | 900 | fast-json-stable-stringify@^2.0.0: 901 | version "2.0.0" 902 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 903 | 904 | fast-levenshtein@~2.0.4: 905 | version "2.0.6" 906 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 907 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= 908 | 909 | figures@^2.0.0: 910 | version "2.0.0" 911 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 912 | integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI= 913 | dependencies: 914 | escape-string-regexp "^1.0.5" 915 | 916 | file-uri-to-path@1: 917 | version "1.0.0" 918 | resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" 919 | integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== 920 | 921 | finalhandler@1.1.0: 922 | version "1.1.0" 923 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.0.tgz#ce0b6855b45853e791b2fcc680046d88253dd7f5" 924 | dependencies: 925 | debug "2.6.9" 926 | encodeurl "~1.0.1" 927 | escape-html "~1.0.3" 928 | on-finished "~2.3.0" 929 | parseurl "~1.3.2" 930 | statuses "~1.3.1" 931 | unpipe "~1.0.0" 932 | 933 | find-up@^2.0.0: 934 | version "2.1.0" 935 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 936 | dependencies: 937 | locate-path "^2.0.0" 938 | 939 | findup-sync@~0.3.0: 940 | version "0.3.0" 941 | resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-0.3.0.tgz#37930aa5d816b777c03445e1966cc6790a4c0b16" 942 | dependencies: 943 | glob "~5.0.0" 944 | 945 | for-in@^0.1.3: 946 | version "0.1.8" 947 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.8.tgz#d8773908e31256109952b1fdb9b3fa867d2775e1" 948 | integrity sha1-2Hc5COMSVhCZUrH9ubP6hn0ndeE= 949 | 950 | for-in@^1.0.1: 951 | version "1.0.2" 952 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 953 | integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= 954 | 955 | for-own@^1.0.0: 956 | version "1.0.0" 957 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-1.0.0.tgz#c63332f415cedc4b04dbfe70cf836494c53cb44b" 958 | integrity sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs= 959 | dependencies: 960 | for-in "^1.0.1" 961 | 962 | forever-agent@~0.6.1: 963 | version "0.6.1" 964 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 965 | 966 | form-data@~1.0.0-rc4: 967 | version "1.0.1" 968 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-1.0.1.tgz#ae315db9a4907fa065502304a66d7733475ee37c" 969 | dependencies: 970 | async "^2.0.1" 971 | combined-stream "^1.0.5" 972 | mime-types "^2.1.11" 973 | 974 | form-data@~2.3.1: 975 | version "2.3.1" 976 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.1.tgz#6fb94fbd71885306d73d15cc497fe4cc4ecd44bf" 977 | dependencies: 978 | asynckit "^0.4.0" 979 | combined-stream "^1.0.5" 980 | mime-types "^2.1.12" 981 | 982 | forwarded@~0.1.2: 983 | version "0.1.2" 984 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84" 985 | 986 | fresh@0.5.2: 987 | version "0.5.2" 988 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" 989 | 990 | fs-vacuum@~1.2.9: 991 | version "1.2.10" 992 | resolved "https://registry.yarnpkg.com/fs-vacuum/-/fs-vacuum-1.2.10.tgz#b7629bec07a4031a2548fdf99f5ecf1cc8b31e36" 993 | dependencies: 994 | graceful-fs "^4.1.2" 995 | path-is-inside "^1.0.1" 996 | rimraf "^2.5.2" 997 | 998 | fs-write-stream-atomic@~1.0.8: 999 | version "1.0.10" 1000 | resolved "https://registry.yarnpkg.com/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9" 1001 | dependencies: 1002 | graceful-fs "^4.1.2" 1003 | iferr "^0.1.5" 1004 | imurmurhash "^0.1.4" 1005 | readable-stream "1 || 2" 1006 | 1007 | fs.realpath@^1.0.0: 1008 | version "1.0.0" 1009 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1010 | 1011 | fstream-ignore@^1.0.0: 1012 | version "1.0.5" 1013 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1014 | dependencies: 1015 | fstream "^1.0.0" 1016 | inherits "2" 1017 | minimatch "^3.0.0" 1018 | 1019 | fstream-npm@~1.1.1: 1020 | version "1.1.1" 1021 | resolved "https://registry.yarnpkg.com/fstream-npm/-/fstream-npm-1.1.1.tgz#6b9175db6239a83d8209e232426c494dbb29690c" 1022 | dependencies: 1023 | fstream-ignore "^1.0.0" 1024 | inherits "2" 1025 | 1026 | fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.10: 1027 | version "1.0.11" 1028 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1029 | dependencies: 1030 | graceful-fs "^4.1.2" 1031 | inherits "~2.0.0" 1032 | mkdirp ">=0.5 0" 1033 | rimraf "2" 1034 | 1035 | ftp@~0.3.10: 1036 | version "0.3.10" 1037 | resolved "https://registry.yarnpkg.com/ftp/-/ftp-0.3.10.tgz#9197d861ad8142f3e63d5a83bfe4c59f7330885d" 1038 | integrity sha1-kZfYYa2BQvPmPVqDv+TFn3MwiF0= 1039 | dependencies: 1040 | readable-stream "1.1.x" 1041 | xregexp "2.0.0" 1042 | 1043 | gauge@~1.2.0, gauge@~1.2.5: 1044 | version "1.2.7" 1045 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-1.2.7.tgz#e9cec5483d3d4ee0ef44b60a7d99e4935e136d93" 1046 | dependencies: 1047 | ansi "^0.3.0" 1048 | has-unicode "^2.0.0" 1049 | lodash.pad "^4.1.0" 1050 | lodash.padend "^4.1.0" 1051 | lodash.padstart "^4.1.0" 1052 | 1053 | gauge@~2.6.0: 1054 | version "2.6.0" 1055 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.6.0.tgz#d35301ad18e96902b4751dcbbe40f4218b942a46" 1056 | dependencies: 1057 | aproba "^1.0.3" 1058 | console-control-strings "^1.0.0" 1059 | has-color "^0.1.7" 1060 | has-unicode "^2.0.0" 1061 | object-assign "^4.1.0" 1062 | signal-exit "^3.0.0" 1063 | string-width "^1.0.1" 1064 | strip-ansi "^3.0.1" 1065 | wide-align "^1.1.0" 1066 | 1067 | gauge@~2.7.3: 1068 | version "2.7.4" 1069 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1070 | dependencies: 1071 | aproba "^1.0.3" 1072 | console-control-strings "^1.0.0" 1073 | has-unicode "^2.0.0" 1074 | object-assign "^4.1.0" 1075 | signal-exit "^3.0.0" 1076 | string-width "^1.0.1" 1077 | strip-ansi "^3.0.1" 1078 | wide-align "^1.1.0" 1079 | 1080 | generate-function@^2.0.0: 1081 | version "2.0.0" 1082 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1083 | 1084 | generate-object-property@^1.1.0: 1085 | version "1.2.0" 1086 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1087 | dependencies: 1088 | is-property "^1.0.0" 1089 | 1090 | get-caller-file@^1.0.1: 1091 | version "1.0.2" 1092 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1093 | 1094 | get-stream@^3.0.0: 1095 | version "3.0.0" 1096 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1097 | 1098 | get-uri@^2.0.0: 1099 | version "2.0.2" 1100 | resolved "https://registry.yarnpkg.com/get-uri/-/get-uri-2.0.2.tgz#5c795e71326f6ca1286f2fc82575cd2bab2af578" 1101 | integrity sha512-ZD325dMZOgerGqF/rF6vZXyFGTAay62svjQIT+X/oU2PtxYpFxvSkbsdi+oxIrsNxlZVd4y8wUDqkaExWTI/Cw== 1102 | dependencies: 1103 | data-uri-to-buffer "1" 1104 | debug "2" 1105 | extend "3" 1106 | file-uri-to-path "1" 1107 | ftp "~0.3.10" 1108 | readable-stream "2" 1109 | 1110 | getpass@^0.1.1: 1111 | version "0.1.7" 1112 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1113 | dependencies: 1114 | assert-plus "^1.0.0" 1115 | 1116 | github-url-from-git@~1.4.0: 1117 | version "1.4.0" 1118 | resolved "https://registry.yarnpkg.com/github-url-from-git/-/github-url-from-git-1.4.0.tgz#285e6b520819001bde128674704379e4ff03e0de" 1119 | 1120 | github-url-from-username-repo@~1.0.2: 1121 | version "1.0.2" 1122 | resolved "https://registry.yarnpkg.com/github-url-from-username-repo/-/github-url-from-username-repo-1.0.2.tgz#7dd79330d2abe69c10c2cef79714c97215791dfa" 1123 | 1124 | glob@7.1.1: 1125 | version "7.1.1" 1126 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1127 | dependencies: 1128 | fs.realpath "^1.0.0" 1129 | inflight "^1.0.4" 1130 | inherits "2" 1131 | minimatch "^3.0.2" 1132 | once "^1.3.0" 1133 | path-is-absolute "^1.0.0" 1134 | 1135 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.1: 1136 | version "7.1.2" 1137 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1138 | dependencies: 1139 | fs.realpath "^1.0.0" 1140 | inflight "^1.0.4" 1141 | inherits "2" 1142 | minimatch "^3.0.4" 1143 | once "^1.3.0" 1144 | path-is-absolute "^1.0.0" 1145 | 1146 | glob@~5.0.0: 1147 | version "5.0.15" 1148 | resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" 1149 | dependencies: 1150 | inflight "^1.0.4" 1151 | inherits "2" 1152 | minimatch "2 || 3" 1153 | once "^1.3.0" 1154 | path-is-absolute "^1.0.0" 1155 | 1156 | glob@~7.0.6: 1157 | version "7.0.6" 1158 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.0.6.tgz#211bafaf49e525b8cd93260d14ab136152b3f57a" 1159 | dependencies: 1160 | fs.realpath "^1.0.0" 1161 | inflight "^1.0.4" 1162 | inherits "2" 1163 | minimatch "^3.0.2" 1164 | once "^1.3.0" 1165 | path-is-absolute "^1.0.0" 1166 | 1167 | global-dirs@^0.1.0: 1168 | version "0.1.0" 1169 | resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.0.tgz#10d34039e0df04272e262cf24224f7209434df4f" 1170 | dependencies: 1171 | ini "^1.3.4" 1172 | 1173 | got@^6.7.1: 1174 | version "6.7.1" 1175 | resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" 1176 | dependencies: 1177 | create-error-class "^3.0.0" 1178 | duplexer3 "^0.1.4" 1179 | get-stream "^3.0.0" 1180 | is-redirect "^1.0.0" 1181 | is-retry-allowed "^1.0.0" 1182 | is-stream "^1.0.0" 1183 | lowercase-keys "^1.0.0" 1184 | safe-buffer "^5.0.1" 1185 | timed-out "^4.0.0" 1186 | unzip-response "^2.0.1" 1187 | url-parse-lax "^1.0.0" 1188 | 1189 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@~4.1.6: 1190 | version "4.1.11" 1191 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1192 | 1193 | "graceful-readlink@>= 1.0.0": 1194 | version "1.0.1" 1195 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1196 | 1197 | graphlib@^2.1.1, graphlib@^2.1.5: 1198 | version "2.1.5" 1199 | resolved "https://registry.yarnpkg.com/graphlib/-/graphlib-2.1.5.tgz#6afe1afcc5148555ec799e499056795bd6938c87" 1200 | integrity sha512-XvtbqCcw+EM5SqQrIetIKKD+uZVNQtDPD1goIg7K73RuRZtVI5rYMdcCVSHm/AS1sCBZ7vt0p5WgXouucHQaOA== 1201 | dependencies: 1202 | lodash "^4.11.1" 1203 | 1204 | growl@1.9.2: 1205 | version "1.9.2" 1206 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f" 1207 | 1208 | har-schema@^2.0.0: 1209 | version "2.0.0" 1210 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 1211 | 1212 | har-validator@~2.0.6: 1213 | version "2.0.6" 1214 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 1215 | dependencies: 1216 | chalk "^1.1.1" 1217 | commander "^2.9.0" 1218 | is-my-json-valid "^2.12.4" 1219 | pinkie-promise "^2.0.0" 1220 | 1221 | har-validator@~5.0.3: 1222 | version "5.0.3" 1223 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" 1224 | dependencies: 1225 | ajv "^5.1.0" 1226 | har-schema "^2.0.0" 1227 | 1228 | has-ansi@^2.0.0: 1229 | version "2.0.0" 1230 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1231 | dependencies: 1232 | ansi-regex "^2.0.0" 1233 | 1234 | has-color@^0.1.7: 1235 | version "0.1.7" 1236 | resolved "https://registry.yarnpkg.com/has-color/-/has-color-0.1.7.tgz#67144a5260c34fc3cca677d041daf52fe7b78b2f" 1237 | 1238 | has-flag@^1.0.0: 1239 | version "1.0.0" 1240 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1241 | 1242 | has-flag@^2.0.0: 1243 | version "2.0.0" 1244 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1245 | 1246 | has-flag@^3.0.0: 1247 | version "3.0.0" 1248 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1249 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1250 | 1251 | has-unicode@^2.0.0: 1252 | version "2.0.1" 1253 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1254 | 1255 | hasbin@^1.2.3: 1256 | version "1.2.3" 1257 | resolved "https://registry.yarnpkg.com/hasbin/-/hasbin-1.2.3.tgz#78c5926893c80215c2b568ae1fd3fcab7a2696b0" 1258 | integrity sha1-eMWSaJPIAhXCtWiuH9P8q3omlrA= 1259 | dependencies: 1260 | async "~1.5" 1261 | 1262 | hawk@~3.1.3: 1263 | version "3.1.3" 1264 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1265 | dependencies: 1266 | boom "2.x.x" 1267 | cryptiles "2.x.x" 1268 | hoek "2.x.x" 1269 | sntp "1.x.x" 1270 | 1271 | hawk@~6.0.2: 1272 | version "6.0.2" 1273 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038" 1274 | dependencies: 1275 | boom "4.x.x" 1276 | cryptiles "3.x.x" 1277 | hoek "4.x.x" 1278 | sntp "2.x.x" 1279 | 1280 | he@1.1.1: 1281 | version "1.1.1" 1282 | resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" 1283 | 1284 | hoek@2.x.x: 1285 | version "2.16.3" 1286 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1287 | 1288 | hoek@4.x.x: 1289 | version "4.2.0" 1290 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.0.tgz#72d9d0754f7fe25ca2d01ad8f8f9a9449a89526d" 1291 | 1292 | hosted-git-info@^2.1.4, hosted-git-info@^2.1.5, hosted-git-info@^2.4.2: 1293 | version "2.5.0" 1294 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 1295 | 1296 | hosted-git-info@^2.7.1: 1297 | version "2.7.1" 1298 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.7.1.tgz#97f236977bd6e125408930ff6de3eec6281ec047" 1299 | integrity sha512-7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w== 1300 | 1301 | hosted-git-info@~2.1.5: 1302 | version "2.1.5" 1303 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.1.5.tgz#0ba81d90da2e25ab34a332e6ec77936e1598118b" 1304 | 1305 | http-errors@1.6.2, http-errors@~1.6.2: 1306 | version "1.6.2" 1307 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.2.tgz#0a002cc85707192a7e7946ceedc11155f60ec736" 1308 | dependencies: 1309 | depd "1.1.1" 1310 | inherits "2.0.3" 1311 | setprototypeof "1.0.3" 1312 | statuses ">= 1.3.1 < 2" 1313 | 1314 | http-errors@1.6.3: 1315 | version "1.6.3" 1316 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d" 1317 | integrity sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0= 1318 | dependencies: 1319 | depd "~1.1.2" 1320 | inherits "2.0.3" 1321 | setprototypeof "1.1.0" 1322 | statuses ">= 1.4.0 < 2" 1323 | 1324 | http-proxy-agent@^2.1.0: 1325 | version "2.1.0" 1326 | resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-2.1.0.tgz#e4821beef5b2142a2026bd73926fe537631c5405" 1327 | integrity sha512-qwHbBLV7WviBl0rQsOzH6o5lwyOIvwp/BdFnvVxXORldu5TmjFfjzBcWUWS5kWAZhmv+JtiDhSuQCp4sBfbIgg== 1328 | dependencies: 1329 | agent-base "4" 1330 | debug "3.1.0" 1331 | 1332 | http-signature@~1.1.0: 1333 | version "1.1.1" 1334 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1335 | dependencies: 1336 | assert-plus "^0.2.0" 1337 | jsprim "^1.2.2" 1338 | sshpk "^1.7.0" 1339 | 1340 | http-signature@~1.2.0: 1341 | version "1.2.0" 1342 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 1343 | dependencies: 1344 | assert-plus "^1.0.0" 1345 | jsprim "^1.2.2" 1346 | sshpk "^1.7.0" 1347 | 1348 | https-proxy-agent@^2.2.1: 1349 | version "2.2.1" 1350 | resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-2.2.1.tgz#51552970fa04d723e04c56d04178c3f92592bbc0" 1351 | integrity sha512-HPCTS1LW51bcyMYbxUIOO4HEOlQ1/1qRaFWcyxvwaqUS9TY88aoEuHUY33kuAh1YhVVaDQhLZsnPd+XNARWZlQ== 1352 | dependencies: 1353 | agent-base "^4.1.0" 1354 | debug "^3.1.0" 1355 | 1356 | iconv-lite@0.4.19: 1357 | version "0.4.19" 1358 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 1359 | 1360 | iconv-lite@0.4.23: 1361 | version "0.4.23" 1362 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.23.tgz#297871f63be507adcfbfca715d0cd0eed84e9a63" 1363 | integrity sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA== 1364 | dependencies: 1365 | safer-buffer ">= 2.1.2 < 3" 1366 | 1367 | iconv-lite@^0.4.17, iconv-lite@^0.4.4: 1368 | version "0.4.24" 1369 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 1370 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== 1371 | dependencies: 1372 | safer-buffer ">= 2.1.2 < 3" 1373 | 1374 | iferr@^0.1.5: 1375 | version "0.1.5" 1376 | resolved "https://registry.yarnpkg.com/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501" 1377 | 1378 | immediate@~3.0.5: 1379 | version "3.0.6" 1380 | resolved "https://registry.yarnpkg.com/immediate/-/immediate-3.0.6.tgz#9db1dbd0faf8de6fbe0f5dd5e56bb606280de69b" 1381 | integrity sha1-nbHb0Pr43m++D13V5Wu2BigN5ps= 1382 | 1383 | import-lazy@^2.1.0: 1384 | version "2.1.0" 1385 | resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" 1386 | 1387 | imurmurhash@^0.1.4: 1388 | version "0.1.4" 1389 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1390 | 1391 | inflight@^1.0.4, inflight@~1.0.4: 1392 | version "1.0.6" 1393 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1394 | dependencies: 1395 | once "^1.3.0" 1396 | wrappy "1" 1397 | 1398 | inherits@2, inherits@2.0.3, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 1399 | version "2.0.3" 1400 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1401 | 1402 | ini@^1.3.0: 1403 | version "1.3.5" 1404 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1405 | integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== 1406 | 1407 | ini@^1.3.4, ini@~1.3.0, ini@~1.3.4: 1408 | version "1.3.4" 1409 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1410 | 1411 | init-package-json@~1.9.4: 1412 | version "1.9.6" 1413 | resolved "https://registry.yarnpkg.com/init-package-json/-/init-package-json-1.9.6.tgz#789fc2b74466a4952b9ea77c0575bc78ebd60a61" 1414 | dependencies: 1415 | glob "^7.1.1" 1416 | npm-package-arg "^4.0.0 || ^5.0.0" 1417 | promzard "^0.3.0" 1418 | read "~1.0.1" 1419 | read-package-json "1 || 2" 1420 | semver "2.x || 3.x || 4 || 5" 1421 | validate-npm-package-license "^3.0.1" 1422 | validate-npm-package-name "^3.0.0" 1423 | 1424 | inquirer@^3.0.0: 1425 | version "3.3.0" 1426 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" 1427 | integrity sha512-h+xtnyk4EwKvFWHrUYsWErEVR+igKtLdchu+o0Z1RL7VU/jVMFbYir2bp6bAj8efFNxWqHX0dIss6fJQ+/+qeQ== 1428 | dependencies: 1429 | ansi-escapes "^3.0.0" 1430 | chalk "^2.0.0" 1431 | cli-cursor "^2.1.0" 1432 | cli-width "^2.0.0" 1433 | external-editor "^2.0.4" 1434 | figures "^2.0.0" 1435 | lodash "^4.3.0" 1436 | mute-stream "0.0.7" 1437 | run-async "^2.2.0" 1438 | rx-lite "^4.0.8" 1439 | rx-lite-aggregates "^4.0.8" 1440 | string-width "^2.1.0" 1441 | strip-ansi "^4.0.0" 1442 | through "^2.3.6" 1443 | 1444 | invert-kv@^1.0.0: 1445 | version "1.0.0" 1446 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1447 | 1448 | ip@^1.1.4, ip@^1.1.5: 1449 | version "1.1.5" 1450 | resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" 1451 | integrity sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo= 1452 | 1453 | ipaddr.js@1.5.2: 1454 | version "1.5.2" 1455 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.5.2.tgz#d4b505bde9946987ccf0fc58d9010ff9607e3fa0" 1456 | 1457 | is-arrayish@^0.2.1: 1458 | version "0.2.1" 1459 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1460 | 1461 | is-buffer@^1.0.2, is-buffer@^1.1.5: 1462 | version "1.1.6" 1463 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1464 | integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== 1465 | 1466 | is-builtin-module@^1.0.0: 1467 | version "1.0.0" 1468 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1469 | dependencies: 1470 | builtin-modules "^1.0.0" 1471 | 1472 | is-extendable@^0.1.1: 1473 | version "0.1.1" 1474 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1475 | integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= 1476 | 1477 | is-fullwidth-code-point@^1.0.0: 1478 | version "1.0.0" 1479 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1480 | dependencies: 1481 | number-is-nan "^1.0.0" 1482 | 1483 | is-fullwidth-code-point@^2.0.0: 1484 | version "2.0.0" 1485 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1486 | 1487 | is-installed-globally@^0.1.0: 1488 | version "0.1.0" 1489 | resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.1.0.tgz#0dfd98f5a9111716dd535dda6492f67bf3d25a80" 1490 | dependencies: 1491 | global-dirs "^0.1.0" 1492 | is-path-inside "^1.0.0" 1493 | 1494 | is-my-json-valid@^2.12.4: 1495 | version "2.16.1" 1496 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.1.tgz#5a846777e2c2620d1e69104e5d3a03b1f6088f11" 1497 | dependencies: 1498 | generate-function "^2.0.0" 1499 | generate-object-property "^1.1.0" 1500 | jsonpointer "^4.0.0" 1501 | xtend "^4.0.0" 1502 | 1503 | is-npm@^1.0.0: 1504 | version "1.0.0" 1505 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 1506 | 1507 | is-obj@^1.0.0: 1508 | version "1.0.1" 1509 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 1510 | 1511 | is-path-inside@^1.0.0: 1512 | version "1.0.0" 1513 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 1514 | dependencies: 1515 | path-is-inside "^1.0.1" 1516 | 1517 | is-plain-object@^2.0.1: 1518 | version "2.0.4" 1519 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 1520 | integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== 1521 | dependencies: 1522 | isobject "^3.0.1" 1523 | 1524 | is-promise@^2.1.0: 1525 | version "2.1.0" 1526 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1527 | integrity sha1-eaKp7OfwlugPNtKy87wWwf9L8/o= 1528 | 1529 | is-property@^1.0.0: 1530 | version "1.0.2" 1531 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1532 | 1533 | is-redirect@^1.0.0: 1534 | version "1.0.0" 1535 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 1536 | 1537 | is-retry-allowed@^1.0.0: 1538 | version "1.1.0" 1539 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" 1540 | 1541 | is-stream@^1.0.0, is-stream@^1.1.0: 1542 | version "1.1.0" 1543 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1544 | 1545 | is-typedarray@~1.0.0: 1546 | version "1.0.0" 1547 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1548 | 1549 | is-wsl@^1.1.0: 1550 | version "1.1.0" 1551 | resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" 1552 | integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0= 1553 | 1554 | isarray@0.0.1: 1555 | version "0.0.1" 1556 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 1557 | integrity sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8= 1558 | 1559 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1560 | version "1.0.0" 1561 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1562 | 1563 | isexe@^2.0.0: 1564 | version "2.0.0" 1565 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1566 | 1567 | isobject@^2.0.0: 1568 | version "2.1.0" 1569 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1570 | dependencies: 1571 | isarray "1.0.0" 1572 | 1573 | isobject@^3.0.1: 1574 | version "3.0.1" 1575 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 1576 | integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= 1577 | 1578 | isstream@~0.1.2: 1579 | version "0.1.2" 1580 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1581 | 1582 | js-tokens@^3.0.2: 1583 | version "3.0.2" 1584 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1585 | 1586 | js-yaml@^3.12.0: 1587 | version "3.12.0" 1588 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.0.tgz#eaed656ec8344f10f527c6bfa1b6e2244de167d1" 1589 | integrity sha512-PIt2cnwmPfL4hKNwqeiuz4bKfnzHTBv6HyVgjahA6mPLwPDzjDWrplJBMjHUFxku/N3FlmrbyPclad+I+4mJ3A== 1590 | dependencies: 1591 | argparse "^1.0.7" 1592 | esprima "^4.0.0" 1593 | 1594 | js-yaml@^3.8.2, js-yaml@^3.8.4: 1595 | version "3.10.0" 1596 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 1597 | dependencies: 1598 | argparse "^1.0.7" 1599 | esprima "^4.0.0" 1600 | 1601 | jsbn@~0.1.0: 1602 | version "0.1.1" 1603 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1604 | 1605 | json-parse-better-errors@^1.0.0: 1606 | version "1.0.1" 1607 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.1.tgz#50183cd1b2d25275de069e9e71b467ac9eab973a" 1608 | 1609 | json-schema-traverse@^0.3.0: 1610 | version "0.3.1" 1611 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 1612 | 1613 | json-schema@0.2.3: 1614 | version "0.2.3" 1615 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1616 | 1617 | json-stringify-safe@~5.0.1: 1618 | version "5.0.1" 1619 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1620 | 1621 | json3@3.3.2: 1622 | version "3.3.2" 1623 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 1624 | 1625 | jsonpointer@^4.0.0: 1626 | version "4.0.1" 1627 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 1628 | 1629 | jsprim@^1.2.2: 1630 | version "1.4.1" 1631 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1632 | dependencies: 1633 | assert-plus "1.0.0" 1634 | extsprintf "1.3.0" 1635 | json-schema "0.2.3" 1636 | verror "1.10.0" 1637 | 1638 | jszip@^3.1.5: 1639 | version "3.1.5" 1640 | resolved "https://registry.yarnpkg.com/jszip/-/jszip-3.1.5.tgz#e3c2a6c6d706ac6e603314036d43cd40beefdf37" 1641 | integrity sha512-5W8NUaFRFRqTOL7ZDDrx5qWHJyBXy6velVudIzQUSoqAAYqzSh2Z7/m0Rf1QbmQJccegD0r+YZxBjzqoBiEeJQ== 1642 | dependencies: 1643 | core-js "~2.3.0" 1644 | es6-promise "~3.0.2" 1645 | lie "~3.1.0" 1646 | pako "~1.0.2" 1647 | readable-stream "~2.0.6" 1648 | 1649 | junit-report-builder@^1.3.1: 1650 | version "1.3.1" 1651 | resolved "https://registry.yarnpkg.com/junit-report-builder/-/junit-report-builder-1.3.1.tgz#65923e2587a54762e8fb91505ea5604dba519d55" 1652 | integrity sha512-KTueBpPsmjfiyrAxxhKlEMwXb3aRmDHG5tRYwtRF3ujLQ7/e/5MH3b2p9ND2P84rU8z5dQq40vWJv6TtEdS16Q== 1653 | dependencies: 1654 | date-format "0.0.2" 1655 | lodash "^4.17.10" 1656 | mkdirp "^0.5.0" 1657 | xmlbuilder "^10.0.0" 1658 | 1659 | kind-of@^2.0.1: 1660 | version "2.0.1" 1661 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-2.0.1.tgz#018ec7a4ce7e3a86cb9141be519d24c8faa981b5" 1662 | integrity sha1-AY7HpM5+OobLkUG+UZ0kyPqpgbU= 1663 | dependencies: 1664 | is-buffer "^1.0.2" 1665 | 1666 | kind-of@^3.2.2: 1667 | version "3.2.2" 1668 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1669 | integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= 1670 | dependencies: 1671 | is-buffer "^1.1.5" 1672 | 1673 | latest-version@^3.0.0: 1674 | version "3.1.0" 1675 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15" 1676 | dependencies: 1677 | package-json "^4.0.0" 1678 | 1679 | lazy-cache@^0.2.3: 1680 | version "0.2.7" 1681 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-0.2.7.tgz#7feddf2dcb6edb77d11ef1d117ab5ffdf0ab1b65" 1682 | integrity sha1-f+3fLctu23fRHvHRF6tf/fCrG2U= 1683 | 1684 | lcid@^1.0.0: 1685 | version "1.0.0" 1686 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1687 | dependencies: 1688 | invert-kv "^1.0.0" 1689 | 1690 | levn@~0.3.0: 1691 | version "0.3.0" 1692 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1693 | integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= 1694 | dependencies: 1695 | prelude-ls "~1.1.2" 1696 | type-check "~0.3.2" 1697 | 1698 | lie@~3.1.0: 1699 | version "3.1.1" 1700 | resolved "https://registry.yarnpkg.com/lie/-/lie-3.1.1.tgz#9a436b2cc7746ca59de7a41fa469b3efb76bd87e" 1701 | integrity sha1-mkNrLMd0bKWd56QfpGmz77dr2H4= 1702 | dependencies: 1703 | immediate "~3.0.5" 1704 | 1705 | line-column@^1.0.2: 1706 | version "1.0.2" 1707 | resolved "https://registry.yarnpkg.com/line-column/-/line-column-1.0.2.tgz#d25af2936b6f4849172b312e4792d1d987bc34a2" 1708 | dependencies: 1709 | isarray "^1.0.0" 1710 | isobject "^2.0.0" 1711 | 1712 | load-json-file@^2.0.0: 1713 | version "2.0.0" 1714 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 1715 | dependencies: 1716 | graceful-fs "^4.1.2" 1717 | parse-json "^2.2.0" 1718 | pify "^2.0.0" 1719 | strip-bom "^3.0.0" 1720 | 1721 | locate-path@^2.0.0: 1722 | version "2.0.0" 1723 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1724 | dependencies: 1725 | p-locate "^2.0.0" 1726 | path-exists "^3.0.0" 1727 | 1728 | lockfile@~1.0.1: 1729 | version "1.0.3" 1730 | resolved "https://registry.yarnpkg.com/lockfile/-/lockfile-1.0.3.tgz#2638fc39a0331e9cac1a04b71799931c9c50df79" 1731 | 1732 | lodash._baseassign@^3.0.0: 1733 | version "3.2.0" 1734 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 1735 | dependencies: 1736 | lodash._basecopy "^3.0.0" 1737 | lodash.keys "^3.0.0" 1738 | 1739 | lodash._basecopy@^3.0.0: 1740 | version "3.0.1" 1741 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 1742 | 1743 | lodash._basecreate@^3.0.0: 1744 | version "3.0.3" 1745 | resolved "https://registry.yarnpkg.com/lodash._basecreate/-/lodash._basecreate-3.0.3.tgz#1bc661614daa7fc311b7d03bf16806a0213cf821" 1746 | 1747 | lodash._getnative@^3.0.0: 1748 | version "3.9.1" 1749 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 1750 | 1751 | lodash._isiterateecall@^3.0.0: 1752 | version "3.0.9" 1753 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 1754 | 1755 | lodash.assign@^4.2.0: 1756 | version "4.2.0" 1757 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" 1758 | integrity sha1-DZnzzNem0mHRm9rrkkUAXShYCOc= 1759 | 1760 | lodash.assignin@^4.2.0: 1761 | version "4.2.0" 1762 | resolved "https://registry.yarnpkg.com/lodash.assignin/-/lodash.assignin-4.2.0.tgz#ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2" 1763 | integrity sha1-uo31+4QesKPoBEIysOJjqNxqKKI= 1764 | 1765 | lodash.clone@^4.5.0: 1766 | version "4.5.0" 1767 | resolved "https://registry.yarnpkg.com/lodash.clone/-/lodash.clone-4.5.0.tgz#195870450f5a13192478df4bc3d23d2dea1907b6" 1768 | integrity sha1-GVhwRQ9aExkkeN9Lw9I9LeoZB7Y= 1769 | 1770 | lodash.clonedeep@^4.3.0, lodash.clonedeep@^4.5.0: 1771 | version "4.5.0" 1772 | resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" 1773 | integrity sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8= 1774 | 1775 | lodash.create@3.1.1: 1776 | version "3.1.1" 1777 | resolved "https://registry.yarnpkg.com/lodash.create/-/lodash.create-3.1.1.tgz#d7f2849f0dbda7e04682bb8cd72ab022461debe7" 1778 | dependencies: 1779 | lodash._baseassign "^3.0.0" 1780 | lodash._basecreate "^3.0.0" 1781 | lodash._isiterateecall "^3.0.0" 1782 | 1783 | lodash.flatten@^4.4.0: 1784 | version "4.4.0" 1785 | resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f" 1786 | integrity sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8= 1787 | 1788 | lodash.get@^4.4.2: 1789 | version "4.4.2" 1790 | resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99" 1791 | integrity sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk= 1792 | 1793 | lodash.isarguments@^3.0.0: 1794 | version "3.1.0" 1795 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 1796 | 1797 | lodash.isarray@^3.0.0: 1798 | version "3.0.4" 1799 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 1800 | 1801 | lodash.keys@^3.0.0: 1802 | version "3.1.2" 1803 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 1804 | dependencies: 1805 | lodash._getnative "^3.0.0" 1806 | lodash.isarguments "^3.0.0" 1807 | lodash.isarray "^3.0.0" 1808 | 1809 | lodash.pad@^4.1.0: 1810 | version "4.5.1" 1811 | resolved "https://registry.yarnpkg.com/lodash.pad/-/lodash.pad-4.5.1.tgz#4330949a833a7c8da22cc20f6a26c4d59debba70" 1812 | 1813 | lodash.padend@^4.1.0: 1814 | version "4.6.1" 1815 | resolved "https://registry.yarnpkg.com/lodash.padend/-/lodash.padend-4.6.1.tgz#53ccba047d06e158d311f45da625f4e49e6f166e" 1816 | 1817 | lodash.padstart@^4.1.0: 1818 | version "4.6.1" 1819 | resolved "https://registry.yarnpkg.com/lodash.padstart/-/lodash.padstart-4.6.1.tgz#d2e3eebff0d9d39ad50f5cbd1b52a7bce6bb611b" 1820 | 1821 | lodash.set@^4.3.2: 1822 | version "4.3.2" 1823 | resolved "https://registry.yarnpkg.com/lodash.set/-/lodash.set-4.3.2.tgz#d8757b1da807dde24816b0d6a84bea1a76230b23" 1824 | integrity sha1-2HV7HagH3eJIFrDWqEvqGnYjCyM= 1825 | 1826 | lodash@4.17.10: 1827 | version "4.17.10" 1828 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7" 1829 | integrity sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg== 1830 | 1831 | lodash@^4, lodash@^4.11.1, lodash@^4.17.10, lodash@^4.17.5, lodash@^4.3.0: 1832 | version "4.17.11" 1833 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d" 1834 | integrity sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg== 1835 | 1836 | lodash@^4.14.0, lodash@^4.17.4: 1837 | version "4.17.4" 1838 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1839 | 1840 | lowercase-keys@^1.0.0: 1841 | version "1.0.0" 1842 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 1843 | 1844 | lru-cache@^4.0.0, lru-cache@^4.1.2: 1845 | version "4.1.5" 1846 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" 1847 | integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== 1848 | dependencies: 1849 | pseudomap "^1.0.2" 1850 | yallist "^2.1.2" 1851 | 1852 | lru-cache@^4.0.1: 1853 | version "4.1.1" 1854 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 1855 | dependencies: 1856 | pseudomap "^1.0.2" 1857 | yallist "^2.1.2" 1858 | 1859 | lru-cache@~4.0.1: 1860 | version "4.0.2" 1861 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.2.tgz#1d17679c069cda5d040991a09dbc2c0db377e55e" 1862 | dependencies: 1863 | pseudomap "^1.0.1" 1864 | yallist "^2.0.0" 1865 | 1866 | macos-release@^1.0.0: 1867 | version "1.1.0" 1868 | resolved "https://registry.yarnpkg.com/macos-release/-/macos-release-1.1.0.tgz#831945e29365b470aa8724b0ab36c8f8959d10fb" 1869 | integrity sha512-mmLbumEYMi5nXReB9js3WGsB8UE6cDBWyIO62Z4DNx6GbRhDxHNjA1MlzSpJ2S2KM1wyiPRA0d19uHWYYvMHjA== 1870 | 1871 | make-dir@^1.0.0: 1872 | version "1.1.0" 1873 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.1.0.tgz#19b4369fe48c116f53c2af95ad102c0e39e85d51" 1874 | dependencies: 1875 | pify "^3.0.0" 1876 | 1877 | media-typer@0.3.0: 1878 | version "0.3.0" 1879 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 1880 | 1881 | mem@^1.1.0: 1882 | version "1.1.0" 1883 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 1884 | dependencies: 1885 | mimic-fn "^1.0.0" 1886 | 1887 | merge-descriptors@1.0.1: 1888 | version "1.0.1" 1889 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" 1890 | 1891 | methods@~1.1.2: 1892 | version "1.1.2" 1893 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 1894 | 1895 | mime-db@~1.30.0: 1896 | version "1.30.0" 1897 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 1898 | 1899 | mime-types@^2.1.11, mime-types@^2.1.12, mime-types@~2.1.15, mime-types@~2.1.16, mime-types@~2.1.17, mime-types@~2.1.7: 1900 | version "2.1.17" 1901 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 1902 | dependencies: 1903 | mime-db "~1.30.0" 1904 | 1905 | mime@1.4.1: 1906 | version "1.4.1" 1907 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.4.1.tgz#121f9ebc49e3766f311a76e1fa1c8003c4b03aa6" 1908 | 1909 | mimic-fn@^1.0.0: 1910 | version "1.1.0" 1911 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 1912 | 1913 | "minimatch@2 || 3", minimatch@3.0.4, minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4, minimatch@~3.0.3: 1914 | version "3.0.4" 1915 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1916 | dependencies: 1917 | brace-expansion "^1.1.7" 1918 | 1919 | minimist@0.0.8: 1920 | version "0.0.8" 1921 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1922 | 1923 | minimist@^1.2.0: 1924 | version "1.2.0" 1925 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1926 | 1927 | minimist@~0.0.1: 1928 | version "0.0.10" 1929 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 1930 | 1931 | mixin-object@^2.0.1: 1932 | version "2.0.1" 1933 | resolved "https://registry.yarnpkg.com/mixin-object/-/mixin-object-2.0.1.tgz#4fb949441dab182540f1fe035ba60e1947a5e57e" 1934 | integrity sha1-T7lJRB2rGCVA8f4DW6YOGUel5X4= 1935 | dependencies: 1936 | for-in "^0.1.3" 1937 | is-extendable "^0.1.1" 1938 | 1939 | mkdirp@0.5.1, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@~0.5.0, mkdirp@~0.5.1: 1940 | version "0.5.1" 1941 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1942 | dependencies: 1943 | minimist "0.0.8" 1944 | 1945 | mocha@^3.2.0: 1946 | version "3.5.3" 1947 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-3.5.3.tgz#1e0480fe36d2da5858d1eb6acc38418b26eaa20d" 1948 | dependencies: 1949 | browser-stdout "1.3.0" 1950 | commander "2.9.0" 1951 | debug "2.6.8" 1952 | diff "3.2.0" 1953 | escape-string-regexp "1.0.5" 1954 | glob "7.1.1" 1955 | growl "1.9.2" 1956 | he "1.1.1" 1957 | json3 "3.3.2" 1958 | lodash.create "3.1.1" 1959 | mkdirp "0.5.1" 1960 | supports-color "3.1.2" 1961 | 1962 | ms@2.0.0: 1963 | version "2.0.0" 1964 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1965 | 1966 | ms@^2.1.1: 1967 | version "2.1.1" 1968 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" 1969 | integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== 1970 | 1971 | mute-stream@0.0.7, mute-stream@~0.0.4: 1972 | version "0.0.7" 1973 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 1974 | 1975 | nconf@^0.10.0: 1976 | version "0.10.0" 1977 | resolved "https://registry.yarnpkg.com/nconf/-/nconf-0.10.0.tgz#da1285ee95d0a922ca6cee75adcf861f48205ad2" 1978 | integrity sha512-fKiXMQrpP7CYWJQzKkPPx9hPgmq+YLDyxcG9N8RpiE9FoCkCbzD0NyW0YhE3xn3Aupe7nnDeIx4PFzYehpHT9Q== 1979 | dependencies: 1980 | async "^1.4.0" 1981 | ini "^1.3.0" 1982 | secure-keys "^1.0.0" 1983 | yargs "^3.19.0" 1984 | 1985 | needle@^2.2.4: 1986 | version "2.2.4" 1987 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.4.tgz#51931bff82533b1928b7d1d69e01f1b00ffd2a4e" 1988 | integrity sha512-HyoqEb4wr/rsoaIDfTH2aVL9nWtQqba2/HvMv+++m8u0dz808MaagKILxtfeSN7QU7nvbQ79zk3vYOJp9zsNEA== 1989 | dependencies: 1990 | debug "^2.1.2" 1991 | iconv-lite "^0.4.4" 1992 | sax "^1.2.4" 1993 | 1994 | negotiator@0.6.1: 1995 | version "0.6.1" 1996 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" 1997 | 1998 | netmask@^1.0.6: 1999 | version "1.0.6" 2000 | resolved "https://registry.yarnpkg.com/netmask/-/netmask-1.0.6.tgz#20297e89d86f6f6400f250d9f4f6b4c1945fcd35" 2001 | integrity sha1-ICl+idhvb2QA8lDZ9Pa0wZRfzTU= 2002 | 2003 | node-gyp@~3.6.0: 2004 | version "3.6.2" 2005 | resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-3.6.2.tgz#9bfbe54562286284838e750eac05295853fa1c60" 2006 | dependencies: 2007 | fstream "^1.0.0" 2008 | glob "^7.0.3" 2009 | graceful-fs "^4.1.2" 2010 | minimatch "^3.0.2" 2011 | mkdirp "^0.5.0" 2012 | nopt "2 || 3" 2013 | npmlog "0 || 1 || 2 || 3 || 4" 2014 | osenv "0" 2015 | request "2" 2016 | rimraf "2" 2017 | semver "~5.3.0" 2018 | tar "^2.0.0" 2019 | which "1" 2020 | 2021 | node-uuid@~1.4.7: 2022 | version "1.4.8" 2023 | resolved "https://registry.yarnpkg.com/node-uuid/-/node-uuid-1.4.8.tgz#b040eb0923968afabf8d32fb1f17f1167fdab907" 2024 | 2025 | "nopt@2 || 3", nopt@3.x.x, nopt@~3.0.6: 2026 | version "3.0.6" 2027 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 2028 | dependencies: 2029 | abbrev "1" 2030 | 2031 | normalize-git-url@~3.0.2: 2032 | version "3.0.2" 2033 | resolved "https://registry.yarnpkg.com/normalize-git-url/-/normalize-git-url-3.0.2.tgz#8e5f14be0bdaedb73e07200310aa416c27350fc4" 2034 | 2035 | normalize-package-data@^2.0.0, normalize-package-data@^2.3.2, "normalize-package-data@~1.0.1 || ^2.0.0": 2036 | version "2.4.0" 2037 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2038 | dependencies: 2039 | hosted-git-info "^2.1.4" 2040 | is-builtin-module "^1.0.0" 2041 | semver "2 || 3 || 4 || 5" 2042 | validate-npm-package-license "^3.0.1" 2043 | 2044 | normalize-package-data@~2.3.5: 2045 | version "2.3.8" 2046 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" 2047 | dependencies: 2048 | hosted-git-info "^2.1.4" 2049 | is-builtin-module "^1.0.0" 2050 | semver "2 || 3 || 4 || 5" 2051 | validate-npm-package-license "^3.0.1" 2052 | 2053 | npm-cache-filename@~1.0.2: 2054 | version "1.0.2" 2055 | resolved "https://registry.yarnpkg.com/npm-cache-filename/-/npm-cache-filename-1.0.2.tgz#ded306c5b0bfc870a9e9faf823bc5f283e05ae11" 2056 | 2057 | npm-cli-login@^0.0.10: 2058 | version "0.0.10" 2059 | resolved "https://registry.yarnpkg.com/npm-cli-login/-/npm-cli-login-0.0.10.tgz#b1e8b5b7405008e0a26ccc170443434a59c5364c" 2060 | dependencies: 2061 | npm-registry-client "7.0.9" 2062 | 2063 | npm-install-checks@~1.0.7: 2064 | version "1.0.7" 2065 | resolved "https://registry.yarnpkg.com/npm-install-checks/-/npm-install-checks-1.0.7.tgz#6d91aeda0ac96801f1ed7aadee116a6c0a086a57" 2066 | dependencies: 2067 | npmlog "0.1 || 1 || 2" 2068 | semver "^2.3.0 || 3.x || 4 || 5" 2069 | 2070 | "npm-package-arg@^3.0.0 || ^4.0.0", npm-package-arg@^4.1.1: 2071 | version "4.2.1" 2072 | resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-4.2.1.tgz#593303fdea85f7c422775f17f9eb7670f680e3ec" 2073 | dependencies: 2074 | hosted-git-info "^2.1.5" 2075 | semver "^5.1.0" 2076 | 2077 | "npm-package-arg@^4.0.0 || ^5.0.0": 2078 | version "5.1.2" 2079 | resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-5.1.2.tgz#fb18d17bb61e60900d6312619919bd753755ab37" 2080 | dependencies: 2081 | hosted-git-info "^2.4.2" 2082 | osenv "^0.1.4" 2083 | semver "^5.1.0" 2084 | validate-npm-package-name "^3.0.0" 2085 | 2086 | npm-package-arg@~4.1.0: 2087 | version "4.1.1" 2088 | resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-4.1.1.tgz#86d9dca985b4c5e5d59772dfd5de6919998a495a" 2089 | dependencies: 2090 | hosted-git-info "^2.1.4" 2091 | semver "4 || 5" 2092 | 2093 | npm-registry-client@7.0.9: 2094 | version "7.0.9" 2095 | resolved "https://registry.yarnpkg.com/npm-registry-client/-/npm-registry-client-7.0.9.tgz#1baf86ee5285c4e6d38d4556208ded56049231bb" 2096 | dependencies: 2097 | chownr "^1.0.1" 2098 | concat-stream "^1.4.6" 2099 | graceful-fs "^4.1.2" 2100 | mkdirp "^0.5.0" 2101 | normalize-package-data "~1.0.1 || ^2.0.0" 2102 | npm-package-arg "^3.0.0 || ^4.0.0" 2103 | once "^1.3.0" 2104 | request "^2.47.0" 2105 | retry "^0.8.0" 2106 | rimraf "2" 2107 | semver "2 >=2.2.1 || 3.x || 4 || 5" 2108 | slide "^1.1.3" 2109 | optionalDependencies: 2110 | npmlog "~2.0.0" 2111 | 2112 | npm-registry-client@~7.2.1: 2113 | version "7.2.1" 2114 | resolved "https://registry.yarnpkg.com/npm-registry-client/-/npm-registry-client-7.2.1.tgz#c792266b088cc313f8525e7e35248626c723db75" 2115 | dependencies: 2116 | concat-stream "^1.5.2" 2117 | graceful-fs "^4.1.6" 2118 | normalize-package-data "~1.0.1 || ^2.0.0" 2119 | npm-package-arg "^3.0.0 || ^4.0.0" 2120 | once "^1.3.3" 2121 | request "^2.74.0" 2122 | retry "^0.10.0" 2123 | semver "2 >=2.2.1 || 3.x || 4 || 5" 2124 | slide "^1.1.3" 2125 | optionalDependencies: 2126 | npmlog "~2.0.0 || ~3.1.0" 2127 | 2128 | npm-run-path@^2.0.0: 2129 | version "2.0.2" 2130 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2131 | dependencies: 2132 | path-key "^2.0.0" 2133 | 2134 | npm-user-validate@~0.1.5: 2135 | version "0.1.5" 2136 | resolved "https://registry.yarnpkg.com/npm-user-validate/-/npm-user-validate-0.1.5.tgz#52465d50c2d20294a57125b996baedbf56c5004b" 2137 | 2138 | npm@2.x.x: 2139 | version "2.15.12" 2140 | resolved "https://registry.yarnpkg.com/npm/-/npm-2.15.12.tgz#df7c3ed5a277c3f9d4b5d819b05311d10a200ae6" 2141 | dependencies: 2142 | abbrev "~1.0.9" 2143 | ansi "~0.3.1" 2144 | ansicolors "~0.3.2" 2145 | ansistyles "~0.1.3" 2146 | archy "~1.0.0" 2147 | async-some "~1.0.2" 2148 | block-stream "0.0.9" 2149 | char-spinner "~1.0.1" 2150 | chmodr "~1.0.2" 2151 | chownr "~1.0.1" 2152 | cmd-shim "~2.0.2" 2153 | columnify "~1.5.4" 2154 | config-chain "~1.1.10" 2155 | dezalgo "~1.0.3" 2156 | editor "~1.0.0" 2157 | fs-vacuum "~1.2.9" 2158 | fs-write-stream-atomic "~1.0.8" 2159 | fstream "~1.0.10" 2160 | fstream-npm "~1.1.1" 2161 | github-url-from-git "~1.4.0" 2162 | github-url-from-username-repo "~1.0.2" 2163 | glob "~7.0.6" 2164 | graceful-fs "~4.1.6" 2165 | hosted-git-info "~2.1.5" 2166 | inflight "~1.0.4" 2167 | inherits "~2.0.3" 2168 | ini "~1.3.4" 2169 | init-package-json "~1.9.4" 2170 | lockfile "~1.0.1" 2171 | lru-cache "~4.0.1" 2172 | minimatch "~3.0.3" 2173 | mkdirp "~0.5.1" 2174 | node-gyp "~3.6.0" 2175 | nopt "~3.0.6" 2176 | normalize-git-url "~3.0.2" 2177 | normalize-package-data "~2.3.5" 2178 | npm-cache-filename "~1.0.2" 2179 | npm-install-checks "~1.0.7" 2180 | npm-package-arg "~4.1.0" 2181 | npm-registry-client "~7.2.1" 2182 | npm-user-validate "~0.1.5" 2183 | npmlog "~2.0.4" 2184 | once "~1.4.0" 2185 | opener "~1.4.1" 2186 | osenv "~0.1.3" 2187 | path-is-inside "~1.0.0" 2188 | read "~1.0.7" 2189 | read-installed "~4.0.3" 2190 | read-package-json "~2.0.4" 2191 | readable-stream "~2.1.5" 2192 | realize-package-specifier "~3.0.1" 2193 | request "~2.74.0" 2194 | retry "~0.10.0" 2195 | rimraf "~2.5.4" 2196 | semver "~5.1.0" 2197 | sha "~2.0.1" 2198 | slide "~1.1.6" 2199 | sorted-object "~2.0.0" 2200 | spdx-license-ids "~1.2.2" 2201 | strip-ansi "~3.0.1" 2202 | tar "~2.2.1" 2203 | text-table "~0.2.0" 2204 | uid-number "0.0.6" 2205 | umask "~1.1.0" 2206 | validate-npm-package-license "~3.0.1" 2207 | validate-npm-package-name "~2.2.2" 2208 | which "~1.2.11" 2209 | wrappy "~1.0.2" 2210 | write-file-atomic "~1.1.4" 2211 | 2212 | "npmlog@0 || 1 || 2 || 3 || 4": 2213 | version "4.1.2" 2214 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2215 | dependencies: 2216 | are-we-there-yet "~1.1.2" 2217 | console-control-strings "~1.1.0" 2218 | gauge "~2.7.3" 2219 | set-blocking "~2.0.0" 2220 | 2221 | "npmlog@0.1 || 1 || 2", npmlog@~2.0.0, npmlog@~2.0.4: 2222 | version "2.0.4" 2223 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-2.0.4.tgz#98b52530f2514ca90d09ec5b22c8846722375692" 2224 | dependencies: 2225 | ansi "~0.3.1" 2226 | are-we-there-yet "~1.1.2" 2227 | gauge "~1.2.5" 2228 | 2229 | npmlog@1.x.x: 2230 | version "1.2.1" 2231 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-1.2.1.tgz#28e7be619609b53f7ad1dd300a10d64d716268b6" 2232 | dependencies: 2233 | ansi "~0.3.0" 2234 | are-we-there-yet "~1.0.0" 2235 | gauge "~1.2.0" 2236 | 2237 | "npmlog@~2.0.0 || ~3.1.0": 2238 | version "3.1.2" 2239 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-3.1.2.tgz#2d46fa874337af9498a2f12bb43d8d0be4a36873" 2240 | dependencies: 2241 | are-we-there-yet "~1.1.2" 2242 | console-control-strings "~1.1.0" 2243 | gauge "~2.6.0" 2244 | set-blocking "~2.0.0" 2245 | 2246 | number-is-nan@^1.0.0: 2247 | version "1.0.1" 2248 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2249 | 2250 | oauth-sign@~0.8.1, oauth-sign@~0.8.2: 2251 | version "0.8.2" 2252 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2253 | 2254 | object-assign@^4, object-assign@^4.1.0: 2255 | version "4.1.1" 2256 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2257 | 2258 | on-finished@~2.3.0: 2259 | version "2.3.0" 2260 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 2261 | dependencies: 2262 | ee-first "1.1.1" 2263 | 2264 | once@^1.3.0, once@^1.3.3, once@~1.4.0: 2265 | version "1.4.0" 2266 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2267 | dependencies: 2268 | wrappy "1" 2269 | 2270 | onetime@^2.0.0: 2271 | version "2.0.1" 2272 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2273 | integrity sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ= 2274 | dependencies: 2275 | mimic-fn "^1.0.0" 2276 | 2277 | opener@~1.4.1: 2278 | version "1.4.3" 2279 | resolved "https://registry.yarnpkg.com/opener/-/opener-1.4.3.tgz#5c6da2c5d7e5831e8ffa3964950f8d6674ac90b8" 2280 | 2281 | opn@^5.2.0: 2282 | version "5.4.0" 2283 | resolved "https://registry.yarnpkg.com/opn/-/opn-5.4.0.tgz#cb545e7aab78562beb11aa3bfabc7042e1761035" 2284 | integrity sha512-YF9MNdVy/0qvJvDtunAOzFw9iasOQHpVthTCvGzxt61Il64AYSGdK+rYwld7NAfk9qJ7dt+hymBNSc9LNYS+Sw== 2285 | dependencies: 2286 | is-wsl "^1.1.0" 2287 | 2288 | optimist@~0.6.0: 2289 | version "0.6.1" 2290 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2291 | dependencies: 2292 | minimist "~0.0.1" 2293 | wordwrap "~0.0.2" 2294 | 2295 | optionator@^0.8.1: 2296 | version "0.8.2" 2297 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2298 | integrity sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q= 2299 | dependencies: 2300 | deep-is "~0.1.3" 2301 | fast-levenshtein "~2.0.4" 2302 | levn "~0.3.0" 2303 | prelude-ls "~1.1.2" 2304 | type-check "~0.3.2" 2305 | wordwrap "~1.0.0" 2306 | 2307 | os-homedir@^1.0.0: 2308 | version "1.0.2" 2309 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2310 | 2311 | os-locale@^1.4.0: 2312 | version "1.4.0" 2313 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2314 | integrity sha1-IPnxeuKe00XoveWDsT0gCYA8FNk= 2315 | dependencies: 2316 | lcid "^1.0.0" 2317 | 2318 | os-locale@^2.0.0: 2319 | version "2.1.0" 2320 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 2321 | dependencies: 2322 | execa "^0.7.0" 2323 | lcid "^1.0.0" 2324 | mem "^1.1.0" 2325 | 2326 | os-name@^2.0.1: 2327 | version "2.0.1" 2328 | resolved "https://registry.yarnpkg.com/os-name/-/os-name-2.0.1.tgz#b9a386361c17ae3a21736ef0599405c9a8c5dc5e" 2329 | integrity sha1-uaOGNhwXrjohc27wWZQFyajF3F4= 2330 | dependencies: 2331 | macos-release "^1.0.0" 2332 | win-release "^1.0.0" 2333 | 2334 | os-tmpdir@^1.0.0, os-tmpdir@~1.0.2: 2335 | version "1.0.2" 2336 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2337 | 2338 | osenv@0, osenv@^0.1.4, osenv@~0.1.3: 2339 | version "0.1.4" 2340 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2341 | dependencies: 2342 | os-homedir "^1.0.0" 2343 | os-tmpdir "^1.0.0" 2344 | 2345 | p-finally@^1.0.0: 2346 | version "1.0.0" 2347 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2348 | 2349 | p-limit@^1.1.0: 2350 | version "1.1.0" 2351 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2352 | 2353 | p-locate@^2.0.0: 2354 | version "2.0.0" 2355 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2356 | dependencies: 2357 | p-limit "^1.1.0" 2358 | 2359 | pac-proxy-agent@^2.0.1: 2360 | version "2.0.2" 2361 | resolved "https://registry.yarnpkg.com/pac-proxy-agent/-/pac-proxy-agent-2.0.2.tgz#90d9f6730ab0f4d2607dcdcd4d3d641aa26c3896" 2362 | integrity sha512-cDNAN1Ehjbf5EHkNY5qnRhGPUCp6SnpyVof5fRzN800QV1Y2OkzbH9rmjZkbBRa8igof903yOnjIl6z0SlAhxA== 2363 | dependencies: 2364 | agent-base "^4.2.0" 2365 | debug "^3.1.0" 2366 | get-uri "^2.0.0" 2367 | http-proxy-agent "^2.1.0" 2368 | https-proxy-agent "^2.2.1" 2369 | pac-resolver "^3.0.0" 2370 | raw-body "^2.2.0" 2371 | socks-proxy-agent "^3.0.0" 2372 | 2373 | pac-resolver@^3.0.0: 2374 | version "3.0.0" 2375 | resolved "https://registry.yarnpkg.com/pac-resolver/-/pac-resolver-3.0.0.tgz#6aea30787db0a891704deb7800a722a7615a6f26" 2376 | integrity sha512-tcc38bsjuE3XZ5+4vP96OfhOugrX+JcnpUbhfuc4LuXBLQhoTthOstZeoQJBDnQUDYzYmdImKsbz0xSl1/9qeA== 2377 | dependencies: 2378 | co "^4.6.0" 2379 | degenerator "^1.0.4" 2380 | ip "^1.1.5" 2381 | netmask "^1.0.6" 2382 | thunkify "^2.1.2" 2383 | 2384 | package-json@^4.0.0: 2385 | version "4.0.1" 2386 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed" 2387 | dependencies: 2388 | got "^6.7.1" 2389 | registry-auth-token "^3.0.1" 2390 | registry-url "^3.0.3" 2391 | semver "^5.1.0" 2392 | 2393 | pad@^1.1.0: 2394 | version "1.2.1" 2395 | resolved "https://registry.yarnpkg.com/pad/-/pad-1.2.1.tgz#c656342f14ab8605e9ed159b9b2f516577dfc872" 2396 | dependencies: 2397 | coffee-script "^1.12.7" 2398 | wcwidth "^1.0.1" 2399 | 2400 | pako@~1.0.2: 2401 | version "1.0.7" 2402 | resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.7.tgz#2473439021b57f1516c82f58be7275ad8ef1bb27" 2403 | integrity sha512-3HNK5tW4x8o5mO8RuHZp3Ydw9icZXx0RANAOMzlMzx7LVXhMJ4mo3MOBpzyd7r/+RUu8BmndP47LXT+vzjtWcQ== 2404 | 2405 | parse-json@^2.2.0: 2406 | version "2.2.0" 2407 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2408 | dependencies: 2409 | error-ex "^1.2.0" 2410 | 2411 | parseurl@~1.3.2: 2412 | version "1.3.2" 2413 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.2.tgz#fc289d4ed8993119460c156253262cdc8de65bf3" 2414 | 2415 | path-exists@^3.0.0: 2416 | version "3.0.0" 2417 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2418 | 2419 | path-is-absolute@^1.0.0: 2420 | version "1.0.1" 2421 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2422 | 2423 | path-is-inside@^1.0.1, path-is-inside@~1.0.0: 2424 | version "1.0.2" 2425 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2426 | 2427 | path-key@^2.0.0: 2428 | version "2.0.1" 2429 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2430 | 2431 | path-parse@^1.0.5: 2432 | version "1.0.5" 2433 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2434 | 2435 | path-to-regexp@0.1.7: 2436 | version "0.1.7" 2437 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" 2438 | 2439 | path-type@^2.0.0: 2440 | version "2.0.0" 2441 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 2442 | dependencies: 2443 | pify "^2.0.0" 2444 | 2445 | path@0.12.7: 2446 | version "0.12.7" 2447 | resolved "https://registry.yarnpkg.com/path/-/path-0.12.7.tgz#d4dc2a506c4ce2197eb481ebfcd5b36c0140b10f" 2448 | integrity sha1-1NwqUGxM4hl+tIHr/NWzbAFAsQ8= 2449 | dependencies: 2450 | process "^0.11.1" 2451 | util "^0.10.3" 2452 | 2453 | performance-now@^2.1.0: 2454 | version "2.1.0" 2455 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 2456 | 2457 | pify@^2.0.0: 2458 | version "2.3.0" 2459 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2460 | 2461 | pify@^3.0.0: 2462 | version "3.0.0" 2463 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 2464 | 2465 | pinkie-promise@^2.0.0: 2466 | version "2.0.1" 2467 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2468 | dependencies: 2469 | pinkie "^2.0.0" 2470 | 2471 | pinkie@^2.0.0: 2472 | version "2.0.4" 2473 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2474 | 2475 | prelude-ls@~1.1.2: 2476 | version "1.1.2" 2477 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2478 | integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= 2479 | 2480 | prepend-http@^1.0.1: 2481 | version "1.0.4" 2482 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 2483 | 2484 | process-nextick-args@~1.0.6: 2485 | version "1.0.7" 2486 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2487 | 2488 | process-nextick-args@~2.0.0: 2489 | version "2.0.0" 2490 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 2491 | integrity sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw== 2492 | 2493 | process@^0.11.1: 2494 | version "0.11.10" 2495 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" 2496 | integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI= 2497 | 2498 | "promise@>=3.2 <8": 2499 | version "7.3.1" 2500 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" 2501 | integrity sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg== 2502 | dependencies: 2503 | asap "~2.0.3" 2504 | 2505 | promzard@^0.3.0: 2506 | version "0.3.0" 2507 | resolved "https://registry.yarnpkg.com/promzard/-/promzard-0.3.0.tgz#26a5d6ee8c7dee4cb12208305acfb93ba382a9ee" 2508 | dependencies: 2509 | read "1" 2510 | 2511 | proto-list@~1.2.1: 2512 | version "1.2.4" 2513 | resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849" 2514 | 2515 | proxy-addr@~2.0.2: 2516 | version "2.0.2" 2517 | resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.2.tgz#6571504f47bb988ec8180253f85dd7e14952bdec" 2518 | dependencies: 2519 | forwarded "~0.1.2" 2520 | ipaddr.js "1.5.2" 2521 | 2522 | proxy-agent@^2.0.0: 2523 | version "2.3.1" 2524 | resolved "https://registry.yarnpkg.com/proxy-agent/-/proxy-agent-2.3.1.tgz#3d49d863d46cf5f37ca8394848346ea02373eac6" 2525 | integrity sha512-CNKuhC1jVtm8KJYFTS2ZRO71VCBx3QSA92So/e6NrY6GoJonkx3Irnk4047EsCcswczwqAekRj3s8qLRGahSKg== 2526 | dependencies: 2527 | agent-base "^4.2.0" 2528 | debug "^3.1.0" 2529 | http-proxy-agent "^2.1.0" 2530 | https-proxy-agent "^2.2.1" 2531 | lru-cache "^4.1.2" 2532 | pac-proxy-agent "^2.0.1" 2533 | proxy-from-env "^1.0.0" 2534 | socks-proxy-agent "^3.0.0" 2535 | 2536 | proxy-from-env@^1.0.0: 2537 | version "1.0.0" 2538 | resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.0.0.tgz#33c50398f70ea7eb96d21f7b817630a55791c7ee" 2539 | integrity sha1-M8UDmPcOp+uW0h97gXYwpVeRx+4= 2540 | 2541 | pseudomap@^1.0.1, pseudomap@^1.0.2: 2542 | version "1.0.2" 2543 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2544 | 2545 | publish@^0.6.0: 2546 | version "0.6.0" 2547 | resolved "https://registry.yarnpkg.com/publish/-/publish-0.6.0.tgz#ca124c8b9603ee1c7f739f35c12fcefbc3776f68" 2548 | dependencies: 2549 | nopt "3.x.x" 2550 | npm "2.x.x" 2551 | npmlog "1.x.x" 2552 | semver "4.x.x" 2553 | 2554 | punycode@^1.4.1: 2555 | version "1.4.1" 2556 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2557 | 2558 | qs@6.5.1, qs@~6.5.1: 2559 | version "6.5.1" 2560 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" 2561 | 2562 | qs@~6.2.0: 2563 | version "6.2.3" 2564 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.2.3.tgz#1cfcb25c10a9b2b483053ff39f5dfc9233908cfe" 2565 | 2566 | querystringify@^2.0.0: 2567 | version "2.1.0" 2568 | resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.1.0.tgz#7ded8dfbf7879dcc60d0a644ac6754b283ad17ef" 2569 | integrity sha512-sluvZZ1YiTLD5jsqZcDmFyV2EwToyXZBfpoVOmktMmW+VEnhgakFHnasVph65fOjGPTWN0Nw3+XQaSeMayr0kg== 2570 | 2571 | range-parser@~1.2.0: 2572 | version "1.2.0" 2573 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" 2574 | 2575 | raw-body@2.3.2, raw-body@^2.1.7: 2576 | version "2.3.2" 2577 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.3.2.tgz#bcd60c77d3eb93cde0050295c3f379389bc88f89" 2578 | dependencies: 2579 | bytes "3.0.0" 2580 | http-errors "1.6.2" 2581 | iconv-lite "0.4.19" 2582 | unpipe "1.0.0" 2583 | 2584 | raw-body@^2.2.0: 2585 | version "2.3.3" 2586 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.3.3.tgz#1b324ece6b5706e153855bc1148c65bb7f6ea0c3" 2587 | integrity sha512-9esiElv1BrZoI3rCDuOuKCBRbuApGGaDPQfjSflGxdy4oyzqghxu6klEkkVIvBje+FF0BX9coEv8KqW6X/7njw== 2588 | dependencies: 2589 | bytes "3.0.0" 2590 | http-errors "1.6.3" 2591 | iconv-lite "0.4.23" 2592 | unpipe "1.0.0" 2593 | 2594 | rc@^1.0.1, rc@^1.1.6: 2595 | version "1.2.2" 2596 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.2.tgz#d8ce9cb57e8d64d9c7badd9876c7c34cbe3c7077" 2597 | dependencies: 2598 | deep-extend "~0.4.0" 2599 | ini "~1.3.0" 2600 | minimist "^1.2.0" 2601 | strip-json-comments "~2.0.1" 2602 | 2603 | read-installed@~4.0.3: 2604 | version "4.0.3" 2605 | resolved "https://registry.yarnpkg.com/read-installed/-/read-installed-4.0.3.tgz#ff9b8b67f187d1e4c29b9feb31f6b223acd19067" 2606 | dependencies: 2607 | debuglog "^1.0.1" 2608 | read-package-json "^2.0.0" 2609 | readdir-scoped-modules "^1.0.0" 2610 | semver "2 || 3 || 4 || 5" 2611 | slide "~1.1.3" 2612 | util-extend "^1.0.1" 2613 | optionalDependencies: 2614 | graceful-fs "^4.1.2" 2615 | 2616 | "read-package-json@1 || 2", read-package-json@^2.0.0, read-package-json@~2.0.4: 2617 | version "2.0.12" 2618 | resolved "https://registry.yarnpkg.com/read-package-json/-/read-package-json-2.0.12.tgz#68ea45f98b3741cb6e10ae3bbd42a605026a6951" 2619 | dependencies: 2620 | glob "^7.1.1" 2621 | json-parse-better-errors "^1.0.0" 2622 | normalize-package-data "^2.0.0" 2623 | slash "^1.0.0" 2624 | optionalDependencies: 2625 | graceful-fs "^4.1.2" 2626 | 2627 | read-pkg-up@^2.0.0: 2628 | version "2.0.0" 2629 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 2630 | dependencies: 2631 | find-up "^2.0.0" 2632 | read-pkg "^2.0.0" 2633 | 2634 | read-pkg@^2.0.0: 2635 | version "2.0.0" 2636 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 2637 | dependencies: 2638 | load-json-file "^2.0.0" 2639 | normalize-package-data "^2.3.2" 2640 | path-type "^2.0.0" 2641 | 2642 | read@1, read@~1.0.1, read@~1.0.7: 2643 | version "1.0.7" 2644 | resolved "https://registry.yarnpkg.com/read/-/read-1.0.7.tgz#b3da19bd052431a97671d44a42634adf710b40c4" 2645 | dependencies: 2646 | mute-stream "~0.0.4" 2647 | 2648 | "readable-stream@1 || 2", "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.2.2: 2649 | version "2.3.3" 2650 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 2651 | dependencies: 2652 | core-util-is "~1.0.0" 2653 | inherits "~2.0.3" 2654 | isarray "~1.0.0" 2655 | process-nextick-args "~1.0.6" 2656 | safe-buffer "~5.1.1" 2657 | string_decoder "~1.0.3" 2658 | util-deprecate "~1.0.1" 2659 | 2660 | readable-stream@1.1.x: 2661 | version "1.1.14" 2662 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" 2663 | integrity sha1-fPTFTvZI44EwhMY23SB54WbAgdk= 2664 | dependencies: 2665 | core-util-is "~1.0.0" 2666 | inherits "~2.0.1" 2667 | isarray "0.0.1" 2668 | string_decoder "~0.10.x" 2669 | 2670 | readable-stream@2: 2671 | version "2.3.6" 2672 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 2673 | integrity sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw== 2674 | dependencies: 2675 | core-util-is "~1.0.0" 2676 | inherits "~2.0.3" 2677 | isarray "~1.0.0" 2678 | process-nextick-args "~2.0.0" 2679 | safe-buffer "~5.1.1" 2680 | string_decoder "~1.1.1" 2681 | util-deprecate "~1.0.1" 2682 | 2683 | readable-stream@~2.0.5, readable-stream@~2.0.6: 2684 | version "2.0.6" 2685 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" 2686 | dependencies: 2687 | core-util-is "~1.0.0" 2688 | inherits "~2.0.1" 2689 | isarray "~1.0.0" 2690 | process-nextick-args "~1.0.6" 2691 | string_decoder "~0.10.x" 2692 | util-deprecate "~1.0.1" 2693 | 2694 | readable-stream@~2.1.5: 2695 | version "2.1.5" 2696 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" 2697 | dependencies: 2698 | buffer-shims "^1.0.0" 2699 | core-util-is "~1.0.0" 2700 | inherits "~2.0.1" 2701 | isarray "~1.0.0" 2702 | process-nextick-args "~1.0.6" 2703 | string_decoder "~0.10.x" 2704 | util-deprecate "~1.0.1" 2705 | 2706 | readdir-scoped-modules@^1.0.0: 2707 | version "1.0.2" 2708 | resolved "https://registry.yarnpkg.com/readdir-scoped-modules/-/readdir-scoped-modules-1.0.2.tgz#9fafa37d286be5d92cbaebdee030dc9b5f406747" 2709 | dependencies: 2710 | debuglog "^1.0.1" 2711 | dezalgo "^1.0.0" 2712 | graceful-fs "^4.1.2" 2713 | once "^1.3.0" 2714 | 2715 | realize-package-specifier@~3.0.1: 2716 | version "3.0.3" 2717 | resolved "https://registry.yarnpkg.com/realize-package-specifier/-/realize-package-specifier-3.0.3.tgz#d0def882952b8de3f67eba5e91199661271f41f4" 2718 | dependencies: 2719 | dezalgo "^1.0.1" 2720 | npm-package-arg "^4.1.1" 2721 | 2722 | recursive-readdir@^2.2.2: 2723 | version "2.2.2" 2724 | resolved "https://registry.yarnpkg.com/recursive-readdir/-/recursive-readdir-2.2.2.tgz#9946fb3274e1628de6e36b2f6714953b4845094f" 2725 | integrity sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg== 2726 | dependencies: 2727 | minimatch "3.0.4" 2728 | 2729 | registry-auth-token@^3.0.1: 2730 | version "3.3.1" 2731 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.1.tgz#fb0d3289ee0d9ada2cbb52af5dfe66cb070d3006" 2732 | dependencies: 2733 | rc "^1.1.6" 2734 | safe-buffer "^5.0.1" 2735 | 2736 | registry-url@^3.0.3: 2737 | version "3.1.0" 2738 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 2739 | dependencies: 2740 | rc "^1.0.1" 2741 | 2742 | replicated-lint@^0.18.9: 2743 | version "0.18.9" 2744 | resolved "https://registry.yarnpkg.com/replicated-lint/-/replicated-lint-0.18.9.tgz#9cd80bfcb34f6f5e9d10a0359a540ed7ba5fdc9c" 2745 | integrity sha512-ifDHlN9+VBgV//cyuQjLu+tR4O29RbsYuCgVY5SXdn0oWwRl26aGdhQsYbJ5LFPzLMxX7+IKqr+tSENYNd6iHQ== 2746 | dependencies: 2747 | "@types/json-schema" "^6.0.1" 2748 | "@types/tv4" "^1.2.28" 2749 | chalk "^1.1.3" 2750 | js-yaml "^3.8.4" 2751 | junit-report-builder "^1.3.1" 2752 | line-column "^1.0.2" 2753 | lodash "^4.17.5" 2754 | pad "^1.1.0" 2755 | semver "^5.3.0" 2756 | snyk "^1.108.0" 2757 | tv4 "^1.3.0" 2758 | url-parse "^1.4.3" 2759 | yaml-ast-parser "^0.0.33" 2760 | yargs "^9.0.1" 2761 | 2762 | request@2, request@^2.47.0, request@^2.74.0: 2763 | version "2.83.0" 2764 | resolved "https://registry.yarnpkg.com/request/-/request-2.83.0.tgz#ca0b65da02ed62935887808e6f510381034e3356" 2765 | dependencies: 2766 | aws-sign2 "~0.7.0" 2767 | aws4 "^1.6.0" 2768 | caseless "~0.12.0" 2769 | combined-stream "~1.0.5" 2770 | extend "~3.0.1" 2771 | forever-agent "~0.6.1" 2772 | form-data "~2.3.1" 2773 | har-validator "~5.0.3" 2774 | hawk "~6.0.2" 2775 | http-signature "~1.2.0" 2776 | is-typedarray "~1.0.0" 2777 | isstream "~0.1.2" 2778 | json-stringify-safe "~5.0.1" 2779 | mime-types "~2.1.17" 2780 | oauth-sign "~0.8.2" 2781 | performance-now "^2.1.0" 2782 | qs "~6.5.1" 2783 | safe-buffer "^5.1.1" 2784 | stringstream "~0.0.5" 2785 | tough-cookie "~2.3.3" 2786 | tunnel-agent "^0.6.0" 2787 | uuid "^3.1.0" 2788 | 2789 | request@~2.74.0: 2790 | version "2.74.0" 2791 | resolved "https://registry.yarnpkg.com/request/-/request-2.74.0.tgz#7693ca768bbb0ea5c8ce08c084a45efa05b892ab" 2792 | dependencies: 2793 | aws-sign2 "~0.6.0" 2794 | aws4 "^1.2.1" 2795 | bl "~1.1.2" 2796 | caseless "~0.11.0" 2797 | combined-stream "~1.0.5" 2798 | extend "~3.0.0" 2799 | forever-agent "~0.6.1" 2800 | form-data "~1.0.0-rc4" 2801 | har-validator "~2.0.6" 2802 | hawk "~3.1.3" 2803 | http-signature "~1.1.0" 2804 | is-typedarray "~1.0.0" 2805 | isstream "~0.1.2" 2806 | json-stringify-safe "~5.0.1" 2807 | mime-types "~2.1.7" 2808 | node-uuid "~1.4.7" 2809 | oauth-sign "~0.8.1" 2810 | qs "~6.2.0" 2811 | stringstream "~0.0.4" 2812 | tough-cookie "~2.3.0" 2813 | tunnel-agent "~0.4.1" 2814 | 2815 | require-directory@^2.1.1: 2816 | version "2.1.1" 2817 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2818 | 2819 | require-main-filename@^1.0.1: 2820 | version "1.0.1" 2821 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2822 | 2823 | requires-port@^1.0.0: 2824 | version "1.0.0" 2825 | resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" 2826 | integrity sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8= 2827 | 2828 | resolve@^1.1.7: 2829 | version "1.5.0" 2830 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36" 2831 | dependencies: 2832 | path-parse "^1.0.5" 2833 | 2834 | restore-cursor@^2.0.0: 2835 | version "2.0.0" 2836 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 2837 | integrity sha1-n37ih/gv0ybU/RYpI9YhKe7g368= 2838 | dependencies: 2839 | onetime "^2.0.0" 2840 | signal-exit "^3.0.2" 2841 | 2842 | retry@^0.10.0, retry@~0.10.0: 2843 | version "0.10.1" 2844 | resolved "https://registry.yarnpkg.com/retry/-/retry-0.10.1.tgz#e76388d217992c252750241d3d3956fed98d8ff4" 2845 | 2846 | retry@^0.8.0: 2847 | version "0.8.0" 2848 | resolved "https://registry.yarnpkg.com/retry/-/retry-0.8.0.tgz#2367628dc0edb247b1eab649dc53ac8628ac2d5f" 2849 | 2850 | rimraf@2, rimraf@^2.5.2: 2851 | version "2.6.2" 2852 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2853 | dependencies: 2854 | glob "^7.0.5" 2855 | 2856 | rimraf@~2.5.4: 2857 | version "2.5.4" 2858 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" 2859 | dependencies: 2860 | glob "^7.0.5" 2861 | 2862 | run-async@^2.2.0: 2863 | version "2.3.0" 2864 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 2865 | integrity sha1-A3GrSuC91yDUFm19/aZP96RFpsA= 2866 | dependencies: 2867 | is-promise "^2.1.0" 2868 | 2869 | rx-lite-aggregates@^4.0.8: 2870 | version "4.0.8" 2871 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 2872 | integrity sha1-dTuHqJoRyVRnxKwWJsTvxOBcZ74= 2873 | dependencies: 2874 | rx-lite "*" 2875 | 2876 | rx-lite@*, rx-lite@^4.0.8: 2877 | version "4.0.8" 2878 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 2879 | integrity sha1-Cx4Rr4vESDbwSmQH6S2kJGe3lEQ= 2880 | 2881 | safe-buffer@5.1.1, safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2882 | version "5.1.1" 2883 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2884 | 2885 | "safer-buffer@>= 2.1.2 < 3": 2886 | version "2.1.2" 2887 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 2888 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 2889 | 2890 | sax@>=0.6.0, sax@^1.2.4: 2891 | version "1.2.4" 2892 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2893 | integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== 2894 | 2895 | secure-keys@^1.0.0: 2896 | version "1.0.0" 2897 | resolved "https://registry.yarnpkg.com/secure-keys/-/secure-keys-1.0.0.tgz#f0c82d98a3b139a8776a8808050b824431087fca" 2898 | integrity sha1-8MgtmKOxOah3aogIBQuCRDEIf8o= 2899 | 2900 | semver-diff@^2.0.0: 2901 | version "2.1.0" 2902 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 2903 | dependencies: 2904 | semver "^5.0.3" 2905 | 2906 | "semver@2 >=2.2.1 || 3.x || 4 || 5", "semver@2 || 3 || 4 || 5", "semver@2.x || 3.x || 4 || 5", "semver@4 || 5", "semver@^2.3.0 || 3.x || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0: 2907 | version "5.4.1" 2908 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 2909 | 2910 | semver@4.x.x: 2911 | version "4.3.6" 2912 | resolved "https://registry.yarnpkg.com/semver/-/semver-4.3.6.tgz#300bc6e0e86374f7ba61068b5b1ecd57fc6532da" 2913 | 2914 | semver@^5.0.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0: 2915 | version "5.6.0" 2916 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.6.0.tgz#7e74256fbaa49c75aa7c7a205cc22799cac80004" 2917 | integrity sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg== 2918 | 2919 | semver@~5.1.0: 2920 | version "5.1.1" 2921 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.1.1.tgz#a3292a373e6f3e0798da0b20641b9a9c5bc47e19" 2922 | 2923 | semver@~5.3.0: 2924 | version "5.3.0" 2925 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 2926 | 2927 | send@0.16.1: 2928 | version "0.16.1" 2929 | resolved "https://registry.yarnpkg.com/send/-/send-0.16.1.tgz#a70e1ca21d1382c11d0d9f6231deb281080d7ab3" 2930 | dependencies: 2931 | debug "2.6.9" 2932 | depd "~1.1.1" 2933 | destroy "~1.0.4" 2934 | encodeurl "~1.0.1" 2935 | escape-html "~1.0.3" 2936 | etag "~1.8.1" 2937 | fresh "0.5.2" 2938 | http-errors "~1.6.2" 2939 | mime "1.4.1" 2940 | ms "2.0.0" 2941 | on-finished "~2.3.0" 2942 | range-parser "~1.2.0" 2943 | statuses "~1.3.1" 2944 | 2945 | serve-static@1.13.1: 2946 | version "1.13.1" 2947 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.13.1.tgz#4c57d53404a761d8f2e7c1e8a18a47dbf278a719" 2948 | dependencies: 2949 | encodeurl "~1.0.1" 2950 | escape-html "~1.0.3" 2951 | parseurl "~1.3.2" 2952 | send "0.16.1" 2953 | 2954 | set-blocking@^2.0.0, set-blocking@~2.0.0: 2955 | version "2.0.0" 2956 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2957 | 2958 | setprototypeof@1.0.3: 2959 | version "1.0.3" 2960 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04" 2961 | 2962 | setprototypeof@1.1.0: 2963 | version "1.1.0" 2964 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" 2965 | 2966 | sha@~2.0.1: 2967 | version "2.0.1" 2968 | resolved "https://registry.yarnpkg.com/sha/-/sha-2.0.1.tgz#6030822fbd2c9823949f8f72ed6411ee5cf25aae" 2969 | dependencies: 2970 | graceful-fs "^4.1.2" 2971 | readable-stream "^2.0.2" 2972 | 2973 | shallow-clone@^0.1.2: 2974 | version "0.1.2" 2975 | resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-0.1.2.tgz#5909e874ba77106d73ac414cfec1ffca87d97060" 2976 | integrity sha1-WQnodLp3EG1zrEFM/sH/yofZcGA= 2977 | dependencies: 2978 | is-extendable "^0.1.1" 2979 | kind-of "^2.0.1" 2980 | lazy-cache "^0.2.3" 2981 | mixin-object "^2.0.1" 2982 | 2983 | shebang-command@^1.2.0: 2984 | version "1.2.0" 2985 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2986 | dependencies: 2987 | shebang-regex "^1.0.0" 2988 | 2989 | shebang-regex@^1.0.0: 2990 | version "1.0.0" 2991 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2992 | 2993 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2994 | version "3.0.2" 2995 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2996 | 2997 | slash@^1.0.0: 2998 | version "1.0.0" 2999 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3000 | 3001 | slide@^1.1.3, slide@^1.1.5, slide@~1.1.3, slide@~1.1.6: 3002 | version "1.1.6" 3003 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 3004 | 3005 | smart-buffer@^1.0.13: 3006 | version "1.1.15" 3007 | resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-1.1.15.tgz#7f114b5b65fab3e2a35aa775bb12f0d1c649bf16" 3008 | integrity sha1-fxFLW2X6s+KjWqd1uxLw0cZJvxY= 3009 | 3010 | sntp@1.x.x: 3011 | version "1.0.9" 3012 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3013 | dependencies: 3014 | hoek "2.x.x" 3015 | 3016 | sntp@2.x.x: 3017 | version "2.1.0" 3018 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8" 3019 | dependencies: 3020 | hoek "4.x.x" 3021 | 3022 | snyk-config@2.2.0: 3023 | version "2.2.0" 3024 | resolved "https://registry.yarnpkg.com/snyk-config/-/snyk-config-2.2.0.tgz#d400ce50e293ce5c3ade4cf46a53bea8205771e6" 3025 | integrity sha512-mq0wbP/AgjcmRq5i5jg2akVVV3iSYUPTowZwKn7DChRLDL8ySOzWAwan+ImXiyNbrWo87FNI/15O6MpOnTxOIg== 3026 | dependencies: 3027 | debug "^3.1.0" 3028 | lodash "^4.17.5" 3029 | nconf "^0.10.0" 3030 | 3031 | snyk-docker-plugin@1.13.1: 3032 | version "1.13.1" 3033 | resolved "https://registry.yarnpkg.com/snyk-docker-plugin/-/snyk-docker-plugin-1.13.1.tgz#4d5ad62fe76b03e36b2c414b9576e67daef21f73" 3034 | integrity sha512-rhVPwMryfGanLXeDoDzjQabGq8VlEPSkvDvraiOhm/F9o5E4zam6vDlVQXsYVRb4ydVKPLgux2ejWyFiG6shFA== 3035 | dependencies: 3036 | debug "^3" 3037 | dockerfile-ast "0.0.12" 3038 | tslib "^1" 3039 | 3040 | snyk-go-plugin@1.6.0: 3041 | version "1.6.0" 3042 | resolved "https://registry.yarnpkg.com/snyk-go-plugin/-/snyk-go-plugin-1.6.0.tgz#4b312db52fdde6d9b2ac75fe1f9712b88563737d" 3043 | integrity sha512-E6aYw7XAXSs2wJR3fU+vGQ1lVyjAw8PHIQYQwBwMkTHByhJIWPcu6Hy/jT5LcjJHlhYXlpOuk53HeLVK+kcXrQ== 3044 | dependencies: 3045 | graphlib "^2.1.1" 3046 | tmp "0.0.33" 3047 | toml "^2.3.2" 3048 | 3049 | snyk-gradle-plugin@2.1.1: 3050 | version "2.1.1" 3051 | resolved "https://registry.yarnpkg.com/snyk-gradle-plugin/-/snyk-gradle-plugin-2.1.1.tgz#661591014508fdd1cbe5b91f4f8e6af50f68a9ac" 3052 | integrity sha512-aFeVC5y3XkJ5BxknHhtYo76as3xJbzSQlXACGZrQZGQ/w/UhNdM8VI1QB6Eq4uEzexleB/hcJwYxNmhI2CNCeA== 3053 | dependencies: 3054 | clone-deep "^0.3.0" 3055 | 3056 | snyk-module@1.9.1, snyk-module@^1.6.0, snyk-module@^1.9.1: 3057 | version "1.9.1" 3058 | resolved "https://registry.yarnpkg.com/snyk-module/-/snyk-module-1.9.1.tgz#b2a78f736600b0ab680f1703466ed7309c980804" 3059 | integrity sha512-A+CCyBSa4IKok5uEhqT+hV/35RO6APFNLqk9DRRHg7xW2/j//nPX8wTSZUPF8QeRNEk/sX+6df7M1y6PBHGSHA== 3060 | dependencies: 3061 | debug "^3.1.0" 3062 | hosted-git-info "^2.7.1" 3063 | 3064 | snyk-mvn-plugin@2.0.0: 3065 | version "2.0.0" 3066 | resolved "https://registry.yarnpkg.com/snyk-mvn-plugin/-/snyk-mvn-plugin-2.0.0.tgz#875dcfe0d77b50396321552f2469ee69ca8d1416" 3067 | integrity sha512-9jAhZhv+7YcqtoQYCYlgMoxK+dWBKlk+wkX27Ebg3vNddNop9q5jZitRXTjsXwfSUZHRt+Ptw1f8vei9kjzZVg== 3068 | 3069 | snyk-nodejs-lockfile-parser@1.9.0: 3070 | version "1.9.0" 3071 | resolved "https://registry.yarnpkg.com/snyk-nodejs-lockfile-parser/-/snyk-nodejs-lockfile-parser-1.9.0.tgz#66e7295774e3854a4cc1a61200f01833adb60d25" 3072 | integrity sha512-GRn70VDe+JISkRbnxc9vxCBV+Ekkdr79krVXbYNDJgQyIjH+FXh6PXVvpregVsvCcNqP1ctbBw/u1w6e9xX1QA== 3073 | dependencies: 3074 | "@yarnpkg/lockfile" "^1.0.2" 3075 | graphlib "^2.1.5" 3076 | lodash "4.17.10" 3077 | source-map-support "^0.5.7" 3078 | tslib "^1.9.3" 3079 | uuid "^3.3.2" 3080 | 3081 | snyk-nuget-plugin@1.6.5: 3082 | version "1.6.5" 3083 | resolved "https://registry.yarnpkg.com/snyk-nuget-plugin/-/snyk-nuget-plugin-1.6.5.tgz#0a5d53ba47a8bbdc82e245171446ec0485cc591b" 3084 | integrity sha512-3qIndzkxCxiaGvAwMkqChbChGdwhNePPyfi0WjhC/nJGwecqU3Fb/NeTW7lgyT+xoq/dFnzW0DgBJ4+AyNA2gA== 3085 | dependencies: 3086 | debug "^3.1.0" 3087 | jszip "^3.1.5" 3088 | lodash "^4.17.10" 3089 | xml2js "^0.4.17" 3090 | 3091 | snyk-php-plugin@1.5.1: 3092 | version "1.5.1" 3093 | resolved "https://registry.yarnpkg.com/snyk-php-plugin/-/snyk-php-plugin-1.5.1.tgz#3785ee45f5e003919abc476a109ad4f34fabe631" 3094 | integrity sha512-g5QSHBsRJ2O4cNxKC4zlWwnQYiSgQ77Y6QgGmo3ihPX3VLZrc1amaZIpPsNe1jwXirnGj2rvR5Xw+jDjbzvHFw== 3095 | dependencies: 3096 | debug "^3.1.0" 3097 | lodash "^4.17.5" 3098 | path "0.12.7" 3099 | 3100 | snyk-policy@1.13.1: 3101 | version "1.13.1" 3102 | resolved "https://registry.yarnpkg.com/snyk-policy/-/snyk-policy-1.13.1.tgz#2366cc485e83a6b43f23f45b36085726e0bf448b" 3103 | integrity sha512-l9evS3Yk70xyvajjg+I6Ij7fr7gxpVRMZl0J1xNpWps/IVu4DSGih3aMmXi47VJozr4A/eFyj7R1lIr2GhqJCA== 3104 | dependencies: 3105 | debug "^3.1.0" 3106 | email-validator "^2.0.4" 3107 | js-yaml "^3.12.0" 3108 | lodash.clonedeep "^4.5.0" 3109 | semver "^5.6.0" 3110 | snyk-module "^1.9.1" 3111 | snyk-resolve "^1.0.1" 3112 | snyk-try-require "^1.3.1" 3113 | then-fs "^2.0.0" 3114 | 3115 | snyk-python-plugin@1.9.0: 3116 | version "1.9.0" 3117 | resolved "https://registry.yarnpkg.com/snyk-python-plugin/-/snyk-python-plugin-1.9.0.tgz#2f444f9377880181c1fdbed6ab2890687fe10c99" 3118 | integrity sha512-zlyOHoCpmyVym9AwkboeepzEGrY3gHsM7eWP/nJ85TgCnQO5H5orKm3RL57PNbWRY+BnDmoQQ+udQgjym2+3sg== 3119 | dependencies: 3120 | tmp "0.0.33" 3121 | 3122 | snyk-resolve-deps@4.0.2: 3123 | version "4.0.2" 3124 | resolved "https://registry.yarnpkg.com/snyk-resolve-deps/-/snyk-resolve-deps-4.0.2.tgz#c3fa08a14fff6667628ec590061360de15f67ae6" 3125 | integrity sha512-nlw62wiWhGOTw3BD3jVIwrUkRR4iNxEkkO4Y/PWs8BsUWseGu1H6QgLesFXJb3qx7ANJ5UbUCJMgV+eL0Lf9cA== 3126 | dependencies: 3127 | ansicolors "^0.3.2" 3128 | debug "^3.2.5" 3129 | lodash.assign "^4.2.0" 3130 | lodash.assignin "^4.2.0" 3131 | lodash.clone "^4.5.0" 3132 | lodash.flatten "^4.4.0" 3133 | lodash.get "^4.4.2" 3134 | lodash.set "^4.3.2" 3135 | lru-cache "^4.0.0" 3136 | semver "^5.5.1" 3137 | snyk-module "^1.6.0" 3138 | snyk-resolve "^1.0.0" 3139 | snyk-tree "^1.0.0" 3140 | snyk-try-require "^1.1.1" 3141 | then-fs "^2.0.0" 3142 | 3143 | snyk-resolve@1.0.1, snyk-resolve@^1.0.0, snyk-resolve@^1.0.1: 3144 | version "1.0.1" 3145 | resolved "https://registry.yarnpkg.com/snyk-resolve/-/snyk-resolve-1.0.1.tgz#eaa4a275cf7e2b579f18da5b188fe601b8eed9ab" 3146 | integrity sha512-7+i+LLhtBo1Pkth01xv+RYJU8a67zmJ8WFFPvSxyCjdlKIcsps4hPQFebhz+0gC5rMemlaeIV6cqwqUf9PEDpw== 3147 | dependencies: 3148 | debug "^3.1.0" 3149 | then-fs "^2.0.0" 3150 | 3151 | snyk-sbt-plugin@2.0.0: 3152 | version "2.0.0" 3153 | resolved "https://registry.yarnpkg.com/snyk-sbt-plugin/-/snyk-sbt-plugin-2.0.0.tgz#d7fa18bee77ecb045ecc7feb8915f83b75186582" 3154 | integrity sha512-bOUqsQ1Lysnwfnvf4QQIBfC0M0ZVuhlshTKd7pNwgAJ41YEPJNrPEpzOePl/HfKtwilEEwHh5YHvjYGegEKx0A== 3155 | 3156 | snyk-tree@^1.0.0: 3157 | version "1.0.0" 3158 | resolved "https://registry.yarnpkg.com/snyk-tree/-/snyk-tree-1.0.0.tgz#0fb73176dbf32e782f19100294160448f9111cc8" 3159 | integrity sha1-D7cxdtvzLngvGRAClBYESPkRHMg= 3160 | dependencies: 3161 | archy "^1.0.0" 3162 | 3163 | snyk-try-require@1.3.1, snyk-try-require@^1.1.1, snyk-try-require@^1.3.1: 3164 | version "1.3.1" 3165 | resolved "https://registry.yarnpkg.com/snyk-try-require/-/snyk-try-require-1.3.1.tgz#6e026f92e64af7fcccea1ee53d524841e418a212" 3166 | integrity sha1-bgJvkuZK9/zM6h7lPVJIQeQYohI= 3167 | dependencies: 3168 | debug "^3.1.0" 3169 | lodash.clonedeep "^4.3.0" 3170 | lru-cache "^4.0.0" 3171 | then-fs "^2.0.0" 3172 | 3173 | snyk@^1.108.0: 3174 | version "1.115.0" 3175 | resolved "https://registry.yarnpkg.com/snyk/-/snyk-1.115.0.tgz#2fd28323abf1d0e26d8fa0650f31b11c0ce493c9" 3176 | integrity sha512-zpjtKX9eJewogBkIwXq5YV3yXZwkNYZMWxSRX8ZQOKrat/bKvY4DdyJIqfWx0iGNErjycMwkBCYXqKiTo+62RQ== 3177 | dependencies: 3178 | "@snyk/dep-graph" "1.1.2" 3179 | "@snyk/gemfile" "1.1.0" 3180 | abbrev "^1.1.1" 3181 | ansi-escapes "^3.1.0" 3182 | chalk "^2.4.1" 3183 | configstore "^3.1.2" 3184 | debug "^3.1.0" 3185 | hasbin "^1.2.3" 3186 | inquirer "^3.0.0" 3187 | lodash "^4.17.5" 3188 | needle "^2.2.4" 3189 | opn "^5.2.0" 3190 | os-name "^2.0.1" 3191 | proxy-agent "^2.0.0" 3192 | proxy-from-env "^1.0.0" 3193 | recursive-readdir "^2.2.2" 3194 | semver "^5.5.0" 3195 | snyk-config "2.2.0" 3196 | snyk-docker-plugin "1.13.1" 3197 | snyk-go-plugin "1.6.0" 3198 | snyk-gradle-plugin "2.1.1" 3199 | snyk-module "1.9.1" 3200 | snyk-mvn-plugin "2.0.0" 3201 | snyk-nodejs-lockfile-parser "1.9.0" 3202 | snyk-nuget-plugin "1.6.5" 3203 | snyk-php-plugin "1.5.1" 3204 | snyk-policy "1.13.1" 3205 | snyk-python-plugin "1.9.0" 3206 | snyk-resolve "1.0.1" 3207 | snyk-resolve-deps "4.0.2" 3208 | snyk-sbt-plugin "2.0.0" 3209 | snyk-tree "^1.0.0" 3210 | snyk-try-require "1.3.1" 3211 | source-map-support "^0.5.9" 3212 | tempfile "^2.0.0" 3213 | then-fs "^2.0.0" 3214 | undefsafe "^2.0.0" 3215 | uuid "^3.2.1" 3216 | 3217 | socks-proxy-agent@^3.0.0: 3218 | version "3.0.1" 3219 | resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-3.0.1.tgz#2eae7cf8e2a82d34565761539a7f9718c5617659" 3220 | integrity sha512-ZwEDymm204mTzvdqyUqOdovVr2YRd2NYskrYrF2LXyZ9qDiMAoFESGK8CRphiO7rtbo2Y757k2Nia3x2hGtalA== 3221 | dependencies: 3222 | agent-base "^4.1.0" 3223 | socks "^1.1.10" 3224 | 3225 | socks@^1.1.10: 3226 | version "1.1.10" 3227 | resolved "https://registry.yarnpkg.com/socks/-/socks-1.1.10.tgz#5b8b7fc7c8f341c53ed056e929b7bf4de8ba7b5a" 3228 | integrity sha1-W4t/x8jzQcU+0FbpKbe/Tei6e1o= 3229 | dependencies: 3230 | ip "^1.1.4" 3231 | smart-buffer "^1.0.13" 3232 | 3233 | sorted-object@~2.0.0: 3234 | version "2.0.1" 3235 | resolved "https://registry.yarnpkg.com/sorted-object/-/sorted-object-2.0.1.tgz#7d631f4bd3a798a24af1dffcfbfe83337a5df5fc" 3236 | 3237 | source-map-support@^0.4.11: 3238 | version "0.4.18" 3239 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 3240 | dependencies: 3241 | source-map "^0.5.6" 3242 | 3243 | source-map-support@^0.5.7, source-map-support@^0.5.9: 3244 | version "0.5.9" 3245 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.9.tgz#41bc953b2534267ea2d605bccfa7bfa3111ced5f" 3246 | integrity sha512-gR6Rw4MvUlYy83vP0vxoVNzM6t8MUXqNuRsuBmBHQDu1Fh6X015FrLdgoDKcNdkwGubozq0P4N0Q37UyFVr1EA== 3247 | dependencies: 3248 | buffer-from "^1.0.0" 3249 | source-map "^0.6.0" 3250 | 3251 | source-map@^0.5.6: 3252 | version "0.5.7" 3253 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3254 | 3255 | source-map@^0.6.0, source-map@~0.6.1: 3256 | version "0.6.1" 3257 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 3258 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 3259 | 3260 | spdx-correct@~1.0.0: 3261 | version "1.0.2" 3262 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3263 | dependencies: 3264 | spdx-license-ids "^1.0.2" 3265 | 3266 | spdx-expression-parse@~1.0.0: 3267 | version "1.0.4" 3268 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3269 | 3270 | spdx-license-ids@^1.0.2, spdx-license-ids@~1.2.2: 3271 | version "1.2.2" 3272 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3273 | 3274 | sprintf-js@~1.0.2: 3275 | version "1.0.3" 3276 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3277 | 3278 | sshpk@^1.7.0: 3279 | version "1.13.1" 3280 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 3281 | dependencies: 3282 | asn1 "~0.2.3" 3283 | assert-plus "^1.0.0" 3284 | dashdash "^1.12.0" 3285 | getpass "^0.1.1" 3286 | optionalDependencies: 3287 | bcrypt-pbkdf "^1.0.0" 3288 | ecc-jsbn "~0.1.1" 3289 | jsbn "~0.1.0" 3290 | tweetnacl "~0.14.0" 3291 | 3292 | "statuses@>= 1.3.1 < 2": 3293 | version "1.4.0" 3294 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.4.0.tgz#bb73d446da2796106efcc1b601a253d6c46bd087" 3295 | 3296 | "statuses@>= 1.4.0 < 2": 3297 | version "1.5.0" 3298 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" 3299 | integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= 3300 | 3301 | statuses@~1.3.1: 3302 | version "1.3.1" 3303 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" 3304 | 3305 | string-width@^1.0.1, string-width@^1.0.2: 3306 | version "1.0.2" 3307 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3308 | dependencies: 3309 | code-point-at "^1.0.0" 3310 | is-fullwidth-code-point "^1.0.0" 3311 | strip-ansi "^3.0.0" 3312 | 3313 | string-width@^2.0.0, string-width@^2.1.0: 3314 | version "2.1.1" 3315 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3316 | dependencies: 3317 | is-fullwidth-code-point "^2.0.0" 3318 | strip-ansi "^4.0.0" 3319 | 3320 | string_decoder@~0.10.x: 3321 | version "0.10.31" 3322 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 3323 | 3324 | string_decoder@~1.0.3: 3325 | version "1.0.3" 3326 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 3327 | dependencies: 3328 | safe-buffer "~5.1.0" 3329 | 3330 | string_decoder@~1.1.1: 3331 | version "1.1.1" 3332 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 3333 | integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== 3334 | dependencies: 3335 | safe-buffer "~5.1.0" 3336 | 3337 | stringstream@~0.0.4, stringstream@~0.0.5: 3338 | version "0.0.5" 3339 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3340 | 3341 | strip-ansi@^3.0.0, strip-ansi@^3.0.1, strip-ansi@~3.0.1: 3342 | version "3.0.1" 3343 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3344 | dependencies: 3345 | ansi-regex "^2.0.0" 3346 | 3347 | strip-ansi@^4.0.0: 3348 | version "4.0.0" 3349 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3350 | dependencies: 3351 | ansi-regex "^3.0.0" 3352 | 3353 | strip-bom@^3.0.0: 3354 | version "3.0.0" 3355 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3356 | 3357 | strip-eof@^1.0.0: 3358 | version "1.0.0" 3359 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3360 | 3361 | strip-json-comments@~2.0.1: 3362 | version "2.0.1" 3363 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3364 | 3365 | supports-color@3.1.2: 3366 | version "3.1.2" 3367 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" 3368 | dependencies: 3369 | has-flag "^1.0.0" 3370 | 3371 | supports-color@^2.0.0: 3372 | version "2.0.0" 3373 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3374 | 3375 | supports-color@^4.0.0: 3376 | version "4.5.0" 3377 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 3378 | dependencies: 3379 | has-flag "^2.0.0" 3380 | 3381 | supports-color@^5.3.0: 3382 | version "5.5.0" 3383 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 3384 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 3385 | dependencies: 3386 | has-flag "^3.0.0" 3387 | 3388 | tar@^2.0.0, tar@~2.2.1: 3389 | version "2.2.1" 3390 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3391 | dependencies: 3392 | block-stream "*" 3393 | fstream "^1.0.2" 3394 | inherits "2" 3395 | 3396 | temp-dir@^1.0.0: 3397 | version "1.0.0" 3398 | resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-1.0.0.tgz#0a7c0ea26d3a39afa7e0ebea9c1fc0bc4daa011d" 3399 | integrity sha1-CnwOom06Oa+n4OvqnB/AvE2qAR0= 3400 | 3401 | tempfile@^2.0.0: 3402 | version "2.0.0" 3403 | resolved "https://registry.yarnpkg.com/tempfile/-/tempfile-2.0.0.tgz#6b0446856a9b1114d1856ffcbe509cccb0977265" 3404 | integrity sha1-awRGhWqbERTRhW/8vlCczLCXcmU= 3405 | dependencies: 3406 | temp-dir "^1.0.0" 3407 | uuid "^3.0.1" 3408 | 3409 | term-size@^1.2.0: 3410 | version "1.2.0" 3411 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69" 3412 | dependencies: 3413 | execa "^0.7.0" 3414 | 3415 | text-table@~0.2.0: 3416 | version "0.2.0" 3417 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3418 | 3419 | then-fs@^2.0.0: 3420 | version "2.0.0" 3421 | resolved "https://registry.yarnpkg.com/then-fs/-/then-fs-2.0.0.tgz#72f792dd9d31705a91ae19ebfcf8b3f968c81da2" 3422 | integrity sha1-cveS3Z0xcFqRrhnr/Piz+WjIHaI= 3423 | dependencies: 3424 | promise ">=3.2 <8" 3425 | 3426 | through@^2.3.6: 3427 | version "2.3.8" 3428 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3429 | integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= 3430 | 3431 | thunkify@^2.1.2: 3432 | version "2.1.2" 3433 | resolved "https://registry.yarnpkg.com/thunkify/-/thunkify-2.1.2.tgz#faa0e9d230c51acc95ca13a361ac05ca7e04553d" 3434 | integrity sha1-+qDp0jDFGsyVyhOjYawFyn4EVT0= 3435 | 3436 | timed-out@^4.0.0: 3437 | version "4.0.1" 3438 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" 3439 | 3440 | tmp@0.0.33, tmp@^0.0.33: 3441 | version "0.0.33" 3442 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 3443 | integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== 3444 | dependencies: 3445 | os-tmpdir "~1.0.2" 3446 | 3447 | toml@^2.3.2: 3448 | version "2.3.3" 3449 | resolved "https://registry.yarnpkg.com/toml/-/toml-2.3.3.tgz#8d683d729577cb286231dfc7a8affe58d31728fb" 3450 | integrity sha512-O7L5hhSQHxuufWUdcTRPfuTh3phKfAZ/dqfxZFoxPCj2RYmpaSGLEIs016FCXItQwNr08yefUB5TSjzRYnajTA== 3451 | 3452 | tough-cookie@~2.3.0, tough-cookie@~2.3.3: 3453 | version "2.3.3" 3454 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 3455 | dependencies: 3456 | punycode "^1.4.1" 3457 | 3458 | tslib@^1, tslib@^1.9.3: 3459 | version "1.9.3" 3460 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.3.tgz#d7e4dd79245d85428c4d7e4822a79917954ca286" 3461 | integrity sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ== 3462 | 3463 | tslint@^4.5.1: 3464 | version "4.5.1" 3465 | resolved "https://registry.yarnpkg.com/tslint/-/tslint-4.5.1.tgz#05356871bef23a434906734006fc188336ba824b" 3466 | dependencies: 3467 | babel-code-frame "^6.20.0" 3468 | colors "^1.1.2" 3469 | diff "^3.0.1" 3470 | findup-sync "~0.3.0" 3471 | glob "^7.1.1" 3472 | optimist "~0.6.0" 3473 | resolve "^1.1.7" 3474 | tsutils "^1.1.0" 3475 | update-notifier "^2.0.0" 3476 | 3477 | tsutils@^1.1.0: 3478 | version "1.9.1" 3479 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-1.9.1.tgz#b9f9ab44e55af9681831d5f28d0aeeaf5c750cb0" 3480 | 3481 | tunnel-agent@^0.6.0: 3482 | version "0.6.0" 3483 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3484 | dependencies: 3485 | safe-buffer "^5.0.1" 3486 | 3487 | tunnel-agent@~0.4.1: 3488 | version "0.4.3" 3489 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 3490 | 3491 | tv4@^1.3.0: 3492 | version "1.3.0" 3493 | resolved "https://registry.yarnpkg.com/tv4/-/tv4-1.3.0.tgz#d020c846fadd50c855abb25ebaecc68fc10f7963" 3494 | 3495 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3496 | version "0.14.5" 3497 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3498 | 3499 | type-check@~0.3.2: 3500 | version "0.3.2" 3501 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3502 | integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= 3503 | dependencies: 3504 | prelude-ls "~1.1.2" 3505 | 3506 | type-detect@0.1.1: 3507 | version "0.1.1" 3508 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-0.1.1.tgz#0ba5ec2a885640e470ea4e8505971900dac58822" 3509 | 3510 | type-detect@^1.0.0: 3511 | version "1.0.0" 3512 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-1.0.0.tgz#762217cc06db258ec48908a1298e8b95121e8ea2" 3513 | 3514 | type-is@~1.6.15: 3515 | version "1.6.15" 3516 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.15.tgz#cab10fb4909e441c82842eafe1ad646c81804410" 3517 | dependencies: 3518 | media-typer "0.3.0" 3519 | mime-types "~2.1.15" 3520 | 3521 | typedarray@^0.0.6: 3522 | version "0.0.6" 3523 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3524 | 3525 | typescript@^2.2.1: 3526 | version "2.5.3" 3527 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.5.3.tgz#df3dcdc38f3beb800d4bc322646b04a3f6ca7f0d" 3528 | 3529 | uid-number@0.0.6: 3530 | version "0.0.6" 3531 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3532 | 3533 | umask@~1.1.0: 3534 | version "1.1.0" 3535 | resolved "https://registry.yarnpkg.com/umask/-/umask-1.1.0.tgz#f29cebf01df517912bb58ff9c4e50fde8e33320d" 3536 | 3537 | undefsafe@^2.0.0: 3538 | version "2.0.2" 3539 | resolved "https://registry.yarnpkg.com/undefsafe/-/undefsafe-2.0.2.tgz#225f6b9e0337663e0d8e7cfd686fc2836ccace76" 3540 | integrity sha1-Il9rngM3Zj4Njnz9aG/Cg2zKznY= 3541 | dependencies: 3542 | debug "^2.2.0" 3543 | 3544 | unique-string@^1.0.0: 3545 | version "1.0.0" 3546 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" 3547 | dependencies: 3548 | crypto-random-string "^1.0.0" 3549 | 3550 | unpipe@1.0.0, unpipe@~1.0.0: 3551 | version "1.0.0" 3552 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 3553 | 3554 | unzip-response@^2.0.1: 3555 | version "2.0.1" 3556 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" 3557 | 3558 | update-notifier@^2.0.0: 3559 | version "2.3.0" 3560 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.3.0.tgz#4e8827a6bb915140ab093559d7014e3ebb837451" 3561 | dependencies: 3562 | boxen "^1.2.1" 3563 | chalk "^2.0.1" 3564 | configstore "^3.0.0" 3565 | import-lazy "^2.1.0" 3566 | is-installed-globally "^0.1.0" 3567 | is-npm "^1.0.0" 3568 | latest-version "^3.0.0" 3569 | semver-diff "^2.0.0" 3570 | xdg-basedir "^3.0.0" 3571 | 3572 | url-parse-lax@^1.0.0: 3573 | version "1.0.0" 3574 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" 3575 | dependencies: 3576 | prepend-http "^1.0.1" 3577 | 3578 | url-parse@^1.4.3: 3579 | version "1.4.4" 3580 | resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.4.4.tgz#cac1556e95faa0303691fec5cf9d5a1bc34648f8" 3581 | integrity sha512-/92DTTorg4JjktLNLe6GPS2/RvAd/RGr6LuktmWSMLEOa6rjnlrFXNgSbSmkNvCoL2T028A0a1JaJLzRMlFoHg== 3582 | dependencies: 3583 | querystringify "^2.0.0" 3584 | requires-port "^1.0.0" 3585 | 3586 | util-deprecate@~1.0.1: 3587 | version "1.0.2" 3588 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3589 | 3590 | util-extend@^1.0.1: 3591 | version "1.0.3" 3592 | resolved "https://registry.yarnpkg.com/util-extend/-/util-extend-1.0.3.tgz#a7c216d267545169637b3b6edc6ca9119e2ff93f" 3593 | 3594 | util@^0.10.3: 3595 | version "0.10.4" 3596 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.4.tgz#3aa0125bfe668a4672de58857d3ace27ecb76901" 3597 | integrity sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A== 3598 | dependencies: 3599 | inherits "2.0.3" 3600 | 3601 | utils-merge@1.0.1: 3602 | version "1.0.1" 3603 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" 3604 | 3605 | uuid@^3.0.1, uuid@^3.1.0: 3606 | version "3.1.0" 3607 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 3608 | 3609 | uuid@^3.2.1, uuid@^3.3.2: 3610 | version "3.3.2" 3611 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131" 3612 | integrity sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA== 3613 | 3614 | validate-npm-package-license@^3.0.1, validate-npm-package-license@~3.0.1: 3615 | version "3.0.1" 3616 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3617 | dependencies: 3618 | spdx-correct "~1.0.0" 3619 | spdx-expression-parse "~1.0.0" 3620 | 3621 | validate-npm-package-name@^3.0.0: 3622 | version "3.0.0" 3623 | resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz#5fa912d81eb7d0c74afc140de7317f0ca7df437e" 3624 | dependencies: 3625 | builtins "^1.0.3" 3626 | 3627 | validate-npm-package-name@~2.2.2: 3628 | version "2.2.2" 3629 | resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-2.2.2.tgz#f65695b22f7324442019a3c7fa39a6e7fd299085" 3630 | dependencies: 3631 | builtins "0.0.7" 3632 | 3633 | vary@^1, vary@~1.1.2: 3634 | version "1.1.2" 3635 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" 3636 | 3637 | verror@1.10.0: 3638 | version "1.10.0" 3639 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 3640 | dependencies: 3641 | assert-plus "^1.0.0" 3642 | core-util-is "1.0.2" 3643 | extsprintf "^1.2.0" 3644 | 3645 | vscode-languageserver-types@^3.5.0: 3646 | version "3.13.0" 3647 | resolved "https://registry.yarnpkg.com/vscode-languageserver-types/-/vscode-languageserver-types-3.13.0.tgz#b704b024cef059f7b326611c99b9c8753c0a18b4" 3648 | integrity sha512-BnJIxS+5+8UWiNKCP7W3g9FlE7fErFw0ofP5BXJe7c2tl0VeWh+nNHFbwAS2vmVC4a5kYxHBjRy0UeOtziemVA== 3649 | 3650 | wcwidth@^1.0.0, wcwidth@^1.0.1: 3651 | version "1.0.1" 3652 | resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" 3653 | dependencies: 3654 | defaults "^1.0.3" 3655 | 3656 | which-module@^2.0.0: 3657 | version "2.0.0" 3658 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 3659 | 3660 | which@1, which@^1.2.9: 3661 | version "1.3.0" 3662 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 3663 | dependencies: 3664 | isexe "^2.0.0" 3665 | 3666 | which@~1.2.11: 3667 | version "1.2.14" 3668 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 3669 | dependencies: 3670 | isexe "^2.0.0" 3671 | 3672 | wide-align@^1.1.0: 3673 | version "1.1.2" 3674 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3675 | dependencies: 3676 | string-width "^1.0.2" 3677 | 3678 | widest-line@^1.0.0: 3679 | version "1.0.0" 3680 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-1.0.0.tgz#0c09c85c2a94683d0d7eaf8ee097d564bf0e105c" 3681 | dependencies: 3682 | string-width "^1.0.1" 3683 | 3684 | win-release@^1.0.0: 3685 | version "1.1.1" 3686 | resolved "https://registry.yarnpkg.com/win-release/-/win-release-1.1.1.tgz#5fa55e02be7ca934edfc12665632e849b72e5209" 3687 | integrity sha1-X6VeAr58qTTt/BJmVjLoSbcuUgk= 3688 | dependencies: 3689 | semver "^5.0.1" 3690 | 3691 | window-size@^0.1.4: 3692 | version "0.1.4" 3693 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.4.tgz#f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876" 3694 | integrity sha1-+OGqHuWlPsW/FR/6CXQqatdpeHY= 3695 | 3696 | wordwrap@~0.0.2: 3697 | version "0.0.3" 3698 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3699 | 3700 | wordwrap@~1.0.0: 3701 | version "1.0.0" 3702 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3703 | integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= 3704 | 3705 | wrap-ansi@^2.0.0: 3706 | version "2.1.0" 3707 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3708 | dependencies: 3709 | string-width "^1.0.1" 3710 | strip-ansi "^3.0.1" 3711 | 3712 | wrappy@1, wrappy@~1.0.2: 3713 | version "1.0.2" 3714 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3715 | 3716 | write-file-atomic@^2.0.0: 3717 | version "2.3.0" 3718 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 3719 | dependencies: 3720 | graceful-fs "^4.1.11" 3721 | imurmurhash "^0.1.4" 3722 | signal-exit "^3.0.2" 3723 | 3724 | write-file-atomic@~1.1.4: 3725 | version "1.1.4" 3726 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.1.4.tgz#b1f52dc2e8dc0e3cb04d187a25f758a38a90ca3b" 3727 | dependencies: 3728 | graceful-fs "^4.1.2" 3729 | imurmurhash "^0.1.4" 3730 | slide "^1.1.5" 3731 | 3732 | xdg-basedir@^3.0.0: 3733 | version "3.0.0" 3734 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" 3735 | 3736 | xml2js@^0.4.17: 3737 | version "0.4.19" 3738 | resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.19.tgz#686c20f213209e94abf0d1bcf1efaa291c7827a7" 3739 | integrity sha512-esZnJZJOiJR9wWKMyuvSE1y6Dq5LCuJanqhxslH2bxM6duahNZ+HMpCLhBQGZkbX6xRf8x1Y2eJlgt2q3qo49Q== 3740 | dependencies: 3741 | sax ">=0.6.0" 3742 | xmlbuilder "~9.0.1" 3743 | 3744 | xmlbuilder@^10.0.0: 3745 | version "10.1.1" 3746 | resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-10.1.1.tgz#8cae6688cc9b38d850b7c8d3c0a4161dcaf475b0" 3747 | integrity sha512-OyzrcFLL/nb6fMGHbiRDuPup9ljBycsdCypwuyg5AAHvyWzGfChJpCXMG88AGTIMFhGZ9RccFN1e6lhg3hkwKg== 3748 | 3749 | xmlbuilder@~9.0.1: 3750 | version "9.0.7" 3751 | resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-9.0.7.tgz#132ee63d2ec5565c557e20f4c22df9aca686b10d" 3752 | integrity sha1-Ey7mPS7FVlxVfiD0wi35rKaGsQ0= 3753 | 3754 | xregexp@2.0.0: 3755 | version "2.0.0" 3756 | resolved "https://registry.yarnpkg.com/xregexp/-/xregexp-2.0.0.tgz#52a63e56ca0b84a7f3a5f3d61872f126ad7a5943" 3757 | integrity sha1-UqY+VsoLhKfzpfPWGHLxJq16WUM= 3758 | 3759 | xtend@^4.0.0: 3760 | version "4.0.1" 3761 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3762 | 3763 | y18n@^3.2.0, y18n@^3.2.1: 3764 | version "3.2.1" 3765 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3766 | 3767 | yallist@^2.0.0, yallist@^2.1.2: 3768 | version "2.1.2" 3769 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3770 | 3771 | yaml-ast-parser@^0.0.33: 3772 | version "0.0.33" 3773 | resolved "https://registry.yarnpkg.com/yaml-ast-parser/-/yaml-ast-parser-0.0.33.tgz#265398d62d3d0ef9000b2e03d0085d06ed424c96" 3774 | 3775 | yargs-parser@^7.0.0: 3776 | version "7.0.0" 3777 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" 3778 | dependencies: 3779 | camelcase "^4.1.0" 3780 | 3781 | yargs@^3.19.0: 3782 | version "3.32.0" 3783 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.32.0.tgz#03088e9ebf9e756b69751611d2a5ef591482c995" 3784 | integrity sha1-AwiOnr+edWtpdRYR0qXvWRSCyZU= 3785 | dependencies: 3786 | camelcase "^2.0.1" 3787 | cliui "^3.0.3" 3788 | decamelize "^1.1.1" 3789 | os-locale "^1.4.0" 3790 | string-width "^1.0.1" 3791 | window-size "^0.1.4" 3792 | y18n "^3.2.0" 3793 | 3794 | yargs@^9.0.1: 3795 | version "9.0.1" 3796 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-9.0.1.tgz#52acc23feecac34042078ee78c0c007f5085db4c" 3797 | dependencies: 3798 | camelcase "^4.1.0" 3799 | cliui "^3.2.0" 3800 | decamelize "^1.1.1" 3801 | get-caller-file "^1.0.1" 3802 | os-locale "^2.0.0" 3803 | read-pkg-up "^2.0.0" 3804 | require-directory "^2.1.1" 3805 | require-main-filename "^1.0.1" 3806 | set-blocking "^2.0.0" 3807 | string-width "^2.0.0" 3808 | which-module "^2.0.0" 3809 | y18n "^3.2.1" 3810 | yargs-parser "^7.0.0" 3811 | --------------------------------------------------------------------------------