Initial
This commit is contained in:
		
							
								
								
									
										24
									
								
								.devcontainer/Dockerfile
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										24
									
								
								.devcontainer/Dockerfile
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,24 @@
 | 
				
			|||||||
 | 
					#-----------------------------------------------------------------------------------------
 | 
				
			||||||
 | 
					# Copyright (c) Microsoft Corporation. All rights reserved.
 | 
				
			||||||
 | 
					# Licensed under the MIT License. See LICENSE in the project root for license information.
 | 
				
			||||||
 | 
					#-----------------------------------------------------------------------------------------
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					FROM node:8
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# Install git, process tools
 | 
				
			||||||
 | 
					RUN apt-get update && apt-get -y install git procps
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# Install yarn 
 | 
				
			||||||
 | 
					RUN apt-get install -y curl apt-transport-https lsb-release \
 | 
				
			||||||
 | 
					    && curl -sS https://dl.yarnpkg.com/$(lsb_release -is | tr '[:upper:]' '[:lower:]')/pubkey.gpg | apt-key add - \
 | 
				
			||||||
 | 
					    && echo "deb https://dl.yarnpkg.com/$(lsb_release -is | tr '[:upper:]' '[:lower:]')/ stable main" | tee /etc/apt/sources.list.d/yarn.list \
 | 
				
			||||||
 | 
					    && apt-get update \
 | 
				
			||||||
 | 
					    && apt-get install -y yarn
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# Install tslint and typescript
 | 
				
			||||||
 | 
					RUN npm install -g tslint typescript
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# Clean up
 | 
				
			||||||
 | 
					RUN apt-get autoremove -y \
 | 
				
			||||||
 | 
					    && apt-get clean -y \
 | 
				
			||||||
 | 
					    && rm -rf /var/lib/apt/lists/*
 | 
				
			||||||
							
								
								
									
										8
									
								
								.devcontainer/devcontainer.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										8
									
								
								.devcontainer/devcontainer.json
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,8 @@
 | 
				
			|||||||
 | 
					{
 | 
				
			||||||
 | 
						"name": "Node.js Sample",
 | 
				
			||||||
 | 
						"dockerFile": "Dockerfile",
 | 
				
			||||||
 | 
						"appPort": 3000,
 | 
				
			||||||
 | 
						"extensions": [
 | 
				
			||||||
 | 
							"ms-vscode.vscode-typescript-tslint-plugin"
 | 
				
			||||||
 | 
						]
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										4
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										4
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							@@ -328,3 +328,7 @@ ASALocalRun/
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
# MFractors (Xamarin productivity tool) working folder 
 | 
					# MFractors (Xamarin productivity tool) working folder 
 | 
				
			||||||
.mfractor/
 | 
					.mfractor/
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					*.DS_Store
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					out
 | 
				
			||||||
							
								
								
									
										16
									
								
								.vscode/launch.json
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										16
									
								
								.vscode/launch.json
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,16 @@
 | 
				
			|||||||
 | 
					{
 | 
				
			||||||
 | 
					    // Use IntelliSense to learn about possible attributes.
 | 
				
			||||||
 | 
					    // Hover to view descriptions of existing attributes.
 | 
				
			||||||
 | 
					    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
 | 
				
			||||||
 | 
					    "version": "0.2.0",
 | 
				
			||||||
 | 
					    "configurations": [
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					            "type": "node",
 | 
				
			||||||
 | 
					            "request": "launch",
 | 
				
			||||||
 | 
					            "name": "Launch Program",
 | 
				
			||||||
 | 
					            "program": "${workspaceFolder}/out/server.js",
 | 
				
			||||||
 | 
					            "cwd": "${workspaceFolder}",
 | 
				
			||||||
 | 
					            "preLaunchTask": "compile"
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					    ]
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										14
									
								
								.vscode/tasks.json
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										14
									
								
								.vscode/tasks.json
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,14 @@
 | 
				
			|||||||
 | 
					{
 | 
				
			||||||
 | 
					    // See https://go.microsoft.com/fwlink/?LinkId=733558 
 | 
				
			||||||
 | 
					    // for the documentation about the tasks.json format
 | 
				
			||||||
 | 
					    "version": "2.0.0",
 | 
				
			||||||
 | 
					    "tasks": [
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					            "label": "compile",
 | 
				
			||||||
 | 
					            "type": "shell",
 | 
				
			||||||
 | 
					            "command": "npm run compile",
 | 
				
			||||||
 | 
					            "problemMatcher": "$tsc"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					    ]
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										23
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										23
									
								
								README.md
									
									
									
									
									
								
							@@ -1,5 +1,21 @@
 | 
				
			|||||||
 | 
					# Node.js Sample Project for Visual Studio Remote - Containers
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Contributing
 | 
					This is a sample project to go along with the "try" quick start for the VS Code Remote - Containers extension.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Using the sample:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					1. **[Windows]** Disable automatic line ending conversion for Git on the *Windows side* (given Linux and Windows use different line endings). Run: `git config --global core.autocrlf false`
 | 
				
			||||||
 | 
					2. Follow the steps at [https://aka.ms/vsocde-remote/containers/getting-started](https://aka.ms/vsocde-remote/containers/getting-started).
 | 
				
			||||||
 | 
					3. Run `yarn install`
 | 
				
			||||||
 | 
					4. Launch the application, edit, and try things out!
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Other samples and dev container definitions:
 | 
				
			||||||
 | 
					- [Node.js](https://github.com/Microsoft/vscode-dev-containers/tree/master/containers/javascript-node-lts)
 | 
				
			||||||
 | 
					- [Node.js & Mongo DB](https://github.com/Microsoft/vscode-dev-containers/tree/master/containers/javascript-node-lts-mongo)
 | 
				
			||||||
 | 
					- [Node.js & TypeScript](https://github.com/Microsoft/vscode-dev-containers/tree/master/containers/typescript-node-lts)
 | 
				
			||||||
 | 
					- [Azure Functions & Node.js](https://github.com/Microsoft/vscode-dev-containers/tree/master/containers/azure-functions-node-lts)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					## Contributing
 | 
				
			||||||
 | 
					
 | 
				
			||||||
This project welcomes contributions and suggestions.  Most contributions require you to agree to a
 | 
					This project welcomes contributions and suggestions.  Most contributions require you to agree to a
 | 
				
			||||||
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
 | 
					Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
 | 
				
			||||||
@@ -12,3 +28,8 @@ provided by the bot. You will only need to do this once across all repos using o
 | 
				
			|||||||
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
 | 
					This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
 | 
				
			||||||
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or
 | 
					For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or
 | 
				
			||||||
contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
 | 
					contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					## License
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Copyright © Microsoft Corporation All rights reserved.<br />
 | 
				
			||||||
 | 
					Licensed under the MIT License. See LICENSE in the project root for license information.
 | 
				
			||||||
							
								
								
									
										19
									
								
								package.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										19
									
								
								package.json
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,19 @@
 | 
				
			|||||||
 | 
					{
 | 
				
			||||||
 | 
					  "name": "docker_web_app",
 | 
				
			||||||
 | 
					  "private": true,
 | 
				
			||||||
 | 
					  "version": "1.0.0",
 | 
				
			||||||
 | 
					  "description": "Node.js on Docker",
 | 
				
			||||||
 | 
					  "author": "First Last <first.last@example.com>",
 | 
				
			||||||
 | 
					  "main": "out/server.js",
 | 
				
			||||||
 | 
					  "scripts": {
 | 
				
			||||||
 | 
					    "compile": "node_modules/.bin/tsc -p tsconfig.json",
 | 
				
			||||||
 | 
					    "start": "node out/server.js"
 | 
				
			||||||
 | 
					  },
 | 
				
			||||||
 | 
					  "dependencies": {
 | 
				
			||||||
 | 
					    "express": "^4.16.1"
 | 
				
			||||||
 | 
					  },
 | 
				
			||||||
 | 
					  "devDependencies": {
 | 
				
			||||||
 | 
					    "@types/express": "^4.16.0",
 | 
				
			||||||
 | 
					    "tslint": "^5.11.0"
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										19
									
								
								src/server.ts
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										19
									
								
								src/server.ts
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,19 @@
 | 
				
			|||||||
 | 
					/*-----------------------------------------------------------------------------------------
 | 
				
			||||||
 | 
					 * Copyright (c) Microsoft Corporation. All rights reserved.
 | 
				
			||||||
 | 
					 * Licensed under the MIT License. See LICENSE in the project root for license information.
 | 
				
			||||||
 | 
					 *---------------------------------------------------------------------------------------*/
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					 import * as express from 'express';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// Constants
 | 
				
			||||||
 | 
					const PORT = 3000;
 | 
				
			||||||
 | 
					const HOST = '0.0.0.0';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// App
 | 
				
			||||||
 | 
					const app = express();
 | 
				
			||||||
 | 
					app.get('/', (req, res) => {
 | 
				
			||||||
 | 
						res.send('Hello world\n');
 | 
				
			||||||
 | 
					});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					app.listen(PORT, HOST);
 | 
				
			||||||
 | 
					console.log(`Running on http://${HOST}:${PORT}`);
 | 
				
			||||||
							
								
								
									
										13
									
								
								tsconfig.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										13
									
								
								tsconfig.json
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,13 @@
 | 
				
			|||||||
 | 
					{
 | 
				
			||||||
 | 
						"compilerOptions": {
 | 
				
			||||||
 | 
							"target": "es6",
 | 
				
			||||||
 | 
							"module": "commonjs",
 | 
				
			||||||
 | 
							"strict": true,
 | 
				
			||||||
 | 
							"outDir": "out",
 | 
				
			||||||
 | 
							"sourceMap": true
 | 
				
			||||||
 | 
						},
 | 
				
			||||||
 | 
						"exclude": [
 | 
				
			||||||
 | 
							"out",
 | 
				
			||||||
 | 
							"node_modules"
 | 
				
			||||||
 | 
						]
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										16
									
								
								tslint.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										16
									
								
								tslint.json
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,16 @@
 | 
				
			|||||||
 | 
					{
 | 
				
			||||||
 | 
						"defaultSeverity": "error",
 | 
				
			||||||
 | 
						"extends": [
 | 
				
			||||||
 | 
							"tslint:recommended"
 | 
				
			||||||
 | 
						],
 | 
				
			||||||
 | 
						"jsRules": {},
 | 
				
			||||||
 | 
						"rules": {
 | 
				
			||||||
 | 
							"quotemark": false,
 | 
				
			||||||
 | 
							"no-console": false,
 | 
				
			||||||
 | 
							"indent": [
 | 
				
			||||||
 | 
								true,
 | 
				
			||||||
 | 
								"tabs"
 | 
				
			||||||
 | 
							]
 | 
				
			||||||
 | 
						},
 | 
				
			||||||
 | 
						"rulesDirectory": []
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										637
									
								
								yarn.lock
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										637
									
								
								yarn.lock
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,637 @@
 | 
				
			|||||||
 | 
					# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
 | 
				
			||||||
 | 
					# yarn lockfile v1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"@babel/code-frame@^7.0.0":
 | 
				
			||||||
 | 
					  version "7.0.0"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0.tgz#06e2ab19bdb535385559aabb5ba59729482800f8"
 | 
				
			||||||
 | 
					  integrity sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    "@babel/highlight" "^7.0.0"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"@babel/highlight@^7.0.0":
 | 
				
			||||||
 | 
					  version "7.0.0"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0.tgz#f710c38c8d458e6dd9a201afb637fcb781ce99e4"
 | 
				
			||||||
 | 
					  integrity sha512-UFMC4ZeFC48Tpvj7C8UgLvtkaUuovQX+5xNWrsIoMG8o2z+XFKjKaN9iVmS84dPwVN00W4wPmqvYoZF3EGAsfw==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    chalk "^2.0.0"
 | 
				
			||||||
 | 
					    esutils "^2.0.2"
 | 
				
			||||||
 | 
					    js-tokens "^4.0.0"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"@types/body-parser@*":
 | 
				
			||||||
 | 
					  version "1.17.0"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.17.0.tgz#9f5c9d9bd04bb54be32d5eb9fc0d8c974e6cf58c"
 | 
				
			||||||
 | 
					  integrity sha512-a2+YeUjPkztKJu5aIF2yArYFQQp8d51wZ7DavSHjFuY1mqVgidGyzEQ41JIVNy82fXj8yPgy2vJmfIywgESW6w==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    "@types/connect" "*"
 | 
				
			||||||
 | 
					    "@types/node" "*"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"@types/connect@*":
 | 
				
			||||||
 | 
					  version "3.4.32"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.32.tgz#aa0e9616b9435ccad02bc52b5b454ffc2c70ba28"
 | 
				
			||||||
 | 
					  integrity sha512-4r8qa0quOvh7lGD0pre62CAb1oni1OO6ecJLGCezTmhQ8Fz50Arx9RUszryR8KlgK6avuSXvviL6yWyViQABOg==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    "@types/node" "*"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"@types/express-serve-static-core@*":
 | 
				
			||||||
 | 
					  version "4.16.2"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.16.2.tgz#5ee8a22e602005be6767df6b2cba9879df3f75aa"
 | 
				
			||||||
 | 
					  integrity sha512-qgc8tjnDrc789rAQed8NoiFLV5VGcItA4yWNFphqGU0RcuuQngD00g3LHhWIK3HQ2XeDgVCmlNPDlqi3fWBHnQ==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    "@types/node" "*"
 | 
				
			||||||
 | 
					    "@types/range-parser" "*"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"@types/express@^4.16.0":
 | 
				
			||||||
 | 
					  version "4.16.1"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/@types/express/-/express-4.16.1.tgz#d756bd1a85c34d87eaf44c888bad27ba8a4b7cf0"
 | 
				
			||||||
 | 
					  integrity sha512-V0clmJow23WeyblmACoxbHBu2JKlE5TiIme6Lem14FnPW9gsttyHtk6wq7njcdIWH1njAaFgR8gW09lgY98gQg==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    "@types/body-parser" "*"
 | 
				
			||||||
 | 
					    "@types/express-serve-static-core" "*"
 | 
				
			||||||
 | 
					    "@types/serve-static" "*"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"@types/mime@*":
 | 
				
			||||||
 | 
					  version "2.0.1"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/@types/mime/-/mime-2.0.1.tgz#dc488842312a7f075149312905b5e3c0b054c79d"
 | 
				
			||||||
 | 
					  integrity sha512-FwI9gX75FgVBJ7ywgnq/P7tw+/o1GUbtP0KzbtusLigAOgIgNISRK0ZPl4qertvXSIE8YbsVJueQ90cDt9YYyw==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"@types/node@*":
 | 
				
			||||||
 | 
					  version "11.13.4"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/@types/node/-/node-11.13.4.tgz#f83ec3c3e05b174b7241fadeb6688267fe5b22ca"
 | 
				
			||||||
 | 
					  integrity sha512-+rabAZZ3Yn7tF/XPGHupKIL5EcAbrLxnTr/hgQICxbeuAfWtT0UZSfULE+ndusckBItcv4o6ZeOJplQikVcLvQ==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"@types/range-parser@*":
 | 
				
			||||||
 | 
					  version "1.2.3"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.3.tgz#7ee330ba7caafb98090bece86a5ee44115904c2c"
 | 
				
			||||||
 | 
					  integrity sha512-ewFXqrQHlFsgc09MK5jP5iR7vumV/BYayNC6PgJO2LPe8vrnNFyjQjSppfEngITi0qvfKtzFvgKymGheFM9UOA==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"@types/serve-static@*":
 | 
				
			||||||
 | 
					  version "1.13.2"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.13.2.tgz#f5ac4d7a6420a99a6a45af4719f4dcd8cd907a48"
 | 
				
			||||||
 | 
					  integrity sha512-/BZ4QRLpH/bNYgZgwhKEh+5AsboDBcUdlBYgzoLX0fpj3Y2gp6EApyOlM3bK53wQS/OE1SrdSYBAbux2D1528Q==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    "@types/express-serve-static-core" "*"
 | 
				
			||||||
 | 
					    "@types/mime" "*"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					accepts@~1.3.5:
 | 
				
			||||||
 | 
					  version "1.3.5"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.5.tgz#eb777df6011723a3b14e8a72c0805c8e86746bd2"
 | 
				
			||||||
 | 
					  integrity sha1-63d99gEXI6OxTopywIBcjoZ0a9I=
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    mime-types "~2.1.18"
 | 
				
			||||||
 | 
					    negotiator "0.6.1"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					ansi-styles@^3.2.1:
 | 
				
			||||||
 | 
					  version "3.2.1"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
 | 
				
			||||||
 | 
					  integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    color-convert "^1.9.0"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					argparse@^1.0.7:
 | 
				
			||||||
 | 
					  version "1.0.10"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
 | 
				
			||||||
 | 
					  integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    sprintf-js "~1.0.2"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					array-flatten@1.1.1:
 | 
				
			||||||
 | 
					  version "1.1.1"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2"
 | 
				
			||||||
 | 
					  integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					balanced-match@^1.0.0:
 | 
				
			||||||
 | 
					  version "1.0.0"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
 | 
				
			||||||
 | 
					  integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					body-parser@1.18.3:
 | 
				
			||||||
 | 
					  version "1.18.3"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.18.3.tgz#5b292198ffdd553b3a0f20ded0592b956955c8b4"
 | 
				
			||||||
 | 
					  integrity sha1-WykhmP/dVTs6DyDe0FkrlWlVyLQ=
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    bytes "3.0.0"
 | 
				
			||||||
 | 
					    content-type "~1.0.4"
 | 
				
			||||||
 | 
					    debug "2.6.9"
 | 
				
			||||||
 | 
					    depd "~1.1.2"
 | 
				
			||||||
 | 
					    http-errors "~1.6.3"
 | 
				
			||||||
 | 
					    iconv-lite "0.4.23"
 | 
				
			||||||
 | 
					    on-finished "~2.3.0"
 | 
				
			||||||
 | 
					    qs "6.5.2"
 | 
				
			||||||
 | 
					    raw-body "2.3.3"
 | 
				
			||||||
 | 
					    type-is "~1.6.16"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					brace-expansion@^1.1.7:
 | 
				
			||||||
 | 
					  version "1.1.11"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
 | 
				
			||||||
 | 
					  integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    balanced-match "^1.0.0"
 | 
				
			||||||
 | 
					    concat-map "0.0.1"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					builtin-modules@^1.1.1:
 | 
				
			||||||
 | 
					  version "1.1.1"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
 | 
				
			||||||
 | 
					  integrity sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					bytes@3.0.0:
 | 
				
			||||||
 | 
					  version "3.0.0"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048"
 | 
				
			||||||
 | 
					  integrity sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					chalk@^2.0.0, chalk@^2.3.0:
 | 
				
			||||||
 | 
					  version "2.4.2"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
 | 
				
			||||||
 | 
					  integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    ansi-styles "^3.2.1"
 | 
				
			||||||
 | 
					    escape-string-regexp "^1.0.5"
 | 
				
			||||||
 | 
					    supports-color "^5.3.0"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					color-convert@^1.9.0:
 | 
				
			||||||
 | 
					  version "1.9.3"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
 | 
				
			||||||
 | 
					  integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    color-name "1.1.3"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					color-name@1.1.3:
 | 
				
			||||||
 | 
					  version "1.1.3"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
 | 
				
			||||||
 | 
					  integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					commander@^2.12.1:
 | 
				
			||||||
 | 
					  version "2.20.0"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.0.tgz#d58bb2b5c1ee8f87b0d340027e9e94e222c5a422"
 | 
				
			||||||
 | 
					  integrity sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					concat-map@0.0.1:
 | 
				
			||||||
 | 
					  version "0.0.1"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
 | 
				
			||||||
 | 
					  integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					content-disposition@0.5.2:
 | 
				
			||||||
 | 
					  version "0.5.2"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4"
 | 
				
			||||||
 | 
					  integrity sha1-DPaLud318r55YcOoUXjLhdunjLQ=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					content-type@~1.0.4:
 | 
				
			||||||
 | 
					  version "1.0.4"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b"
 | 
				
			||||||
 | 
					  integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					cookie-signature@1.0.6:
 | 
				
			||||||
 | 
					  version "1.0.6"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c"
 | 
				
			||||||
 | 
					  integrity sha1-4wOogrNCzD7oylE6eZmXNNqzriw=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					cookie@0.3.1:
 | 
				
			||||||
 | 
					  version "0.3.1"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb"
 | 
				
			||||||
 | 
					  integrity sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					debug@2.6.9:
 | 
				
			||||||
 | 
					  version "2.6.9"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
 | 
				
			||||||
 | 
					  integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    ms "2.0.0"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					depd@~1.1.2:
 | 
				
			||||||
 | 
					  version "1.1.2"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9"
 | 
				
			||||||
 | 
					  integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					destroy@~1.0.4:
 | 
				
			||||||
 | 
					  version "1.0.4"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80"
 | 
				
			||||||
 | 
					  integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					diff@^3.2.0:
 | 
				
			||||||
 | 
					  version "3.5.0"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12"
 | 
				
			||||||
 | 
					  integrity sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					ee-first@1.1.1:
 | 
				
			||||||
 | 
					  version "1.1.1"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
 | 
				
			||||||
 | 
					  integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					encodeurl@~1.0.2:
 | 
				
			||||||
 | 
					  version "1.0.2"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"
 | 
				
			||||||
 | 
					  integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					escape-html@~1.0.3:
 | 
				
			||||||
 | 
					  version "1.0.3"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
 | 
				
			||||||
 | 
					  integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					escape-string-regexp@^1.0.5:
 | 
				
			||||||
 | 
					  version "1.0.5"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
 | 
				
			||||||
 | 
					  integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					esprima@^4.0.0:
 | 
				
			||||||
 | 
					  version "4.0.1"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
 | 
				
			||||||
 | 
					  integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					esutils@^2.0.2:
 | 
				
			||||||
 | 
					  version "2.0.2"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
 | 
				
			||||||
 | 
					  integrity sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					etag@~1.8.1:
 | 
				
			||||||
 | 
					  version "1.8.1"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887"
 | 
				
			||||||
 | 
					  integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					express@^4.16.1:
 | 
				
			||||||
 | 
					  version "4.16.4"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/express/-/express-4.16.4.tgz#fddef61926109e24c515ea97fd2f1bdbf62df12e"
 | 
				
			||||||
 | 
					  integrity sha512-j12Uuyb4FMrd/qQAm6uCHAkPtO8FDTRJZBDd5D2KOL2eLaz1yUNdUB/NOIyq0iU4q4cFarsUCrnFDPBcnksuOg==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    accepts "~1.3.5"
 | 
				
			||||||
 | 
					    array-flatten "1.1.1"
 | 
				
			||||||
 | 
					    body-parser "1.18.3"
 | 
				
			||||||
 | 
					    content-disposition "0.5.2"
 | 
				
			||||||
 | 
					    content-type "~1.0.4"
 | 
				
			||||||
 | 
					    cookie "0.3.1"
 | 
				
			||||||
 | 
					    cookie-signature "1.0.6"
 | 
				
			||||||
 | 
					    debug "2.6.9"
 | 
				
			||||||
 | 
					    depd "~1.1.2"
 | 
				
			||||||
 | 
					    encodeurl "~1.0.2"
 | 
				
			||||||
 | 
					    escape-html "~1.0.3"
 | 
				
			||||||
 | 
					    etag "~1.8.1"
 | 
				
			||||||
 | 
					    finalhandler "1.1.1"
 | 
				
			||||||
 | 
					    fresh "0.5.2"
 | 
				
			||||||
 | 
					    merge-descriptors "1.0.1"
 | 
				
			||||||
 | 
					    methods "~1.1.2"
 | 
				
			||||||
 | 
					    on-finished "~2.3.0"
 | 
				
			||||||
 | 
					    parseurl "~1.3.2"
 | 
				
			||||||
 | 
					    path-to-regexp "0.1.7"
 | 
				
			||||||
 | 
					    proxy-addr "~2.0.4"
 | 
				
			||||||
 | 
					    qs "6.5.2"
 | 
				
			||||||
 | 
					    range-parser "~1.2.0"
 | 
				
			||||||
 | 
					    safe-buffer "5.1.2"
 | 
				
			||||||
 | 
					    send "0.16.2"
 | 
				
			||||||
 | 
					    serve-static "1.13.2"
 | 
				
			||||||
 | 
					    setprototypeof "1.1.0"
 | 
				
			||||||
 | 
					    statuses "~1.4.0"
 | 
				
			||||||
 | 
					    type-is "~1.6.16"
 | 
				
			||||||
 | 
					    utils-merge "1.0.1"
 | 
				
			||||||
 | 
					    vary "~1.1.2"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					finalhandler@1.1.1:
 | 
				
			||||||
 | 
					  version "1.1.1"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.1.tgz#eebf4ed840079c83f4249038c9d703008301b105"
 | 
				
			||||||
 | 
					  integrity sha512-Y1GUDo39ez4aHAw7MysnUD5JzYX+WaIj8I57kO3aEPT1fFRL4sr7mjei97FgnwhAyyzRYmQZaTHb2+9uZ1dPtg==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    debug "2.6.9"
 | 
				
			||||||
 | 
					    encodeurl "~1.0.2"
 | 
				
			||||||
 | 
					    escape-html "~1.0.3"
 | 
				
			||||||
 | 
					    on-finished "~2.3.0"
 | 
				
			||||||
 | 
					    parseurl "~1.3.2"
 | 
				
			||||||
 | 
					    statuses "~1.4.0"
 | 
				
			||||||
 | 
					    unpipe "~1.0.0"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					forwarded@~0.1.2:
 | 
				
			||||||
 | 
					  version "0.1.2"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84"
 | 
				
			||||||
 | 
					  integrity sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fresh@0.5.2:
 | 
				
			||||||
 | 
					  version "0.5.2"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7"
 | 
				
			||||||
 | 
					  integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					fs.realpath@^1.0.0:
 | 
				
			||||||
 | 
					  version "1.0.0"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
 | 
				
			||||||
 | 
					  integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					glob@^7.1.1:
 | 
				
			||||||
 | 
					  version "7.1.3"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1"
 | 
				
			||||||
 | 
					  integrity sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    fs.realpath "^1.0.0"
 | 
				
			||||||
 | 
					    inflight "^1.0.4"
 | 
				
			||||||
 | 
					    inherits "2"
 | 
				
			||||||
 | 
					    minimatch "^3.0.4"
 | 
				
			||||||
 | 
					    once "^1.3.0"
 | 
				
			||||||
 | 
					    path-is-absolute "^1.0.0"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					has-flag@^3.0.0:
 | 
				
			||||||
 | 
					  version "3.0.0"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
 | 
				
			||||||
 | 
					  integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					http-errors@1.6.3, http-errors@~1.6.2, http-errors@~1.6.3:
 | 
				
			||||||
 | 
					  version "1.6.3"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d"
 | 
				
			||||||
 | 
					  integrity sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    depd "~1.1.2"
 | 
				
			||||||
 | 
					    inherits "2.0.3"
 | 
				
			||||||
 | 
					    setprototypeof "1.1.0"
 | 
				
			||||||
 | 
					    statuses ">= 1.4.0 < 2"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					iconv-lite@0.4.23:
 | 
				
			||||||
 | 
					  version "0.4.23"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.23.tgz#297871f63be507adcfbfca715d0cd0eed84e9a63"
 | 
				
			||||||
 | 
					  integrity sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    safer-buffer ">= 2.1.2 < 3"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					inflight@^1.0.4:
 | 
				
			||||||
 | 
					  version "1.0.6"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
 | 
				
			||||||
 | 
					  integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    once "^1.3.0"
 | 
				
			||||||
 | 
					    wrappy "1"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					inherits@2, inherits@2.0.3:
 | 
				
			||||||
 | 
					  version "2.0.3"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
 | 
				
			||||||
 | 
					  integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					ipaddr.js@1.9.0:
 | 
				
			||||||
 | 
					  version "1.9.0"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.0.tgz#37df74e430a0e47550fe54a2defe30d8acd95f65"
 | 
				
			||||||
 | 
					  integrity sha512-M4Sjn6N/+O6/IXSJseKqHoFc+5FdGJ22sXqnjTpdZweHK64MzEPAyQZyEU3R/KRv2GLoa7nNtg/C2Ev6m7z+eA==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					js-tokens@^4.0.0:
 | 
				
			||||||
 | 
					  version "4.0.0"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
 | 
				
			||||||
 | 
					  integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					js-yaml@^3.13.0:
 | 
				
			||||||
 | 
					  version "3.13.1"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847"
 | 
				
			||||||
 | 
					  integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    argparse "^1.0.7"
 | 
				
			||||||
 | 
					    esprima "^4.0.0"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					media-typer@0.3.0:
 | 
				
			||||||
 | 
					  version "0.3.0"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748"
 | 
				
			||||||
 | 
					  integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					merge-descriptors@1.0.1:
 | 
				
			||||||
 | 
					  version "1.0.1"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61"
 | 
				
			||||||
 | 
					  integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					methods@~1.1.2:
 | 
				
			||||||
 | 
					  version "1.1.2"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee"
 | 
				
			||||||
 | 
					  integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					mime-db@~1.38.0:
 | 
				
			||||||
 | 
					  version "1.38.0"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.38.0.tgz#1a2aab16da9eb167b49c6e4df2d9c68d63d8e2ad"
 | 
				
			||||||
 | 
					  integrity sha512-bqVioMFFzc2awcdJZIzR3HjZFX20QhilVS7hytkKrv7xFAn8bM1gzc/FOX2awLISvWe0PV8ptFKcon+wZ5qYkg==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					mime-types@~2.1.18:
 | 
				
			||||||
 | 
					  version "2.1.22"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.22.tgz#fe6b355a190926ab7698c9a0556a11199b2199bd"
 | 
				
			||||||
 | 
					  integrity sha512-aGl6TZGnhm/li6F7yx82bJiBZwgiEa4Hf6CNr8YO+r5UHr53tSTYZb102zyU50DOWWKeOv0uQLRL0/9EiKWCog==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    mime-db "~1.38.0"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					mime@1.4.1:
 | 
				
			||||||
 | 
					  version "1.4.1"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/mime/-/mime-1.4.1.tgz#121f9ebc49e3766f311a76e1fa1c8003c4b03aa6"
 | 
				
			||||||
 | 
					  integrity sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					minimatch@^3.0.4:
 | 
				
			||||||
 | 
					  version "3.0.4"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
 | 
				
			||||||
 | 
					  integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    brace-expansion "^1.1.7"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					minimist@0.0.8:
 | 
				
			||||||
 | 
					  version "0.0.8"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
 | 
				
			||||||
 | 
					  integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					mkdirp@^0.5.1:
 | 
				
			||||||
 | 
					  version "0.5.1"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
 | 
				
			||||||
 | 
					  integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    minimist "0.0.8"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					ms@2.0.0:
 | 
				
			||||||
 | 
					  version "2.0.0"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
 | 
				
			||||||
 | 
					  integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					negotiator@0.6.1:
 | 
				
			||||||
 | 
					  version "0.6.1"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9"
 | 
				
			||||||
 | 
					  integrity sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					on-finished@~2.3.0:
 | 
				
			||||||
 | 
					  version "2.3.0"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947"
 | 
				
			||||||
 | 
					  integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    ee-first "1.1.1"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					once@^1.3.0:
 | 
				
			||||||
 | 
					  version "1.4.0"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
 | 
				
			||||||
 | 
					  integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    wrappy "1"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					parseurl@~1.3.2:
 | 
				
			||||||
 | 
					  version "1.3.3"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4"
 | 
				
			||||||
 | 
					  integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					path-is-absolute@^1.0.0:
 | 
				
			||||||
 | 
					  version "1.0.1"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
 | 
				
			||||||
 | 
					  integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					path-parse@^1.0.6:
 | 
				
			||||||
 | 
					  version "1.0.6"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c"
 | 
				
			||||||
 | 
					  integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					path-to-regexp@0.1.7:
 | 
				
			||||||
 | 
					  version "0.1.7"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c"
 | 
				
			||||||
 | 
					  integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					proxy-addr@~2.0.4:
 | 
				
			||||||
 | 
					  version "2.0.5"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.5.tgz#34cbd64a2d81f4b1fd21e76f9f06c8a45299ee34"
 | 
				
			||||||
 | 
					  integrity sha512-t/7RxHXPH6cJtP0pRG6smSr9QJidhB+3kXu0KgXnbGYMgzEnUxRQ4/LDdfOwZEMyIh3/xHb8PX3t+lfL9z+YVQ==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    forwarded "~0.1.2"
 | 
				
			||||||
 | 
					    ipaddr.js "1.9.0"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					qs@6.5.2:
 | 
				
			||||||
 | 
					  version "6.5.2"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36"
 | 
				
			||||||
 | 
					  integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					range-parser@~1.2.0:
 | 
				
			||||||
 | 
					  version "1.2.0"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e"
 | 
				
			||||||
 | 
					  integrity sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					raw-body@2.3.3:
 | 
				
			||||||
 | 
					  version "2.3.3"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.3.3.tgz#1b324ece6b5706e153855bc1148c65bb7f6ea0c3"
 | 
				
			||||||
 | 
					  integrity sha512-9esiElv1BrZoI3rCDuOuKCBRbuApGGaDPQfjSflGxdy4oyzqghxu6klEkkVIvBje+FF0BX9coEv8KqW6X/7njw==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    bytes "3.0.0"
 | 
				
			||||||
 | 
					    http-errors "1.6.3"
 | 
				
			||||||
 | 
					    iconv-lite "0.4.23"
 | 
				
			||||||
 | 
					    unpipe "1.0.0"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					resolve@^1.3.2:
 | 
				
			||||||
 | 
					  version "1.10.0"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.10.0.tgz#3bdaaeaf45cc07f375656dfd2e54ed0810b101ba"
 | 
				
			||||||
 | 
					  integrity sha512-3sUr9aq5OfSg2S9pNtPA9hL1FVEAjvfOC4leW0SNf/mpnaakz2a9femSd6LqAww2RaFctwyf1lCqnTHuF1rxDg==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    path-parse "^1.0.6"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					safe-buffer@5.1.2:
 | 
				
			||||||
 | 
					  version "5.1.2"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
 | 
				
			||||||
 | 
					  integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"safer-buffer@>= 2.1.2 < 3":
 | 
				
			||||||
 | 
					  version "2.1.2"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
 | 
				
			||||||
 | 
					  integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					semver@^5.3.0:
 | 
				
			||||||
 | 
					  version "5.7.0"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.0.tgz#790a7cf6fea5459bac96110b29b60412dc8ff96b"
 | 
				
			||||||
 | 
					  integrity sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					send@0.16.2:
 | 
				
			||||||
 | 
					  version "0.16.2"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/send/-/send-0.16.2.tgz#6ecca1e0f8c156d141597559848df64730a6bbc1"
 | 
				
			||||||
 | 
					  integrity sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    debug "2.6.9"
 | 
				
			||||||
 | 
					    depd "~1.1.2"
 | 
				
			||||||
 | 
					    destroy "~1.0.4"
 | 
				
			||||||
 | 
					    encodeurl "~1.0.2"
 | 
				
			||||||
 | 
					    escape-html "~1.0.3"
 | 
				
			||||||
 | 
					    etag "~1.8.1"
 | 
				
			||||||
 | 
					    fresh "0.5.2"
 | 
				
			||||||
 | 
					    http-errors "~1.6.2"
 | 
				
			||||||
 | 
					    mime "1.4.1"
 | 
				
			||||||
 | 
					    ms "2.0.0"
 | 
				
			||||||
 | 
					    on-finished "~2.3.0"
 | 
				
			||||||
 | 
					    range-parser "~1.2.0"
 | 
				
			||||||
 | 
					    statuses "~1.4.0"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					serve-static@1.13.2:
 | 
				
			||||||
 | 
					  version "1.13.2"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.13.2.tgz#095e8472fd5b46237db50ce486a43f4b86c6cec1"
 | 
				
			||||||
 | 
					  integrity sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    encodeurl "~1.0.2"
 | 
				
			||||||
 | 
					    escape-html "~1.0.3"
 | 
				
			||||||
 | 
					    parseurl "~1.3.2"
 | 
				
			||||||
 | 
					    send "0.16.2"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					setprototypeof@1.1.0:
 | 
				
			||||||
 | 
					  version "1.1.0"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656"
 | 
				
			||||||
 | 
					  integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					sprintf-js@~1.0.2:
 | 
				
			||||||
 | 
					  version "1.0.3"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
 | 
				
			||||||
 | 
					  integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"statuses@>= 1.4.0 < 2":
 | 
				
			||||||
 | 
					  version "1.5.0"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c"
 | 
				
			||||||
 | 
					  integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					statuses@~1.4.0:
 | 
				
			||||||
 | 
					  version "1.4.0"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.4.0.tgz#bb73d446da2796106efcc1b601a253d6c46bd087"
 | 
				
			||||||
 | 
					  integrity sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					supports-color@^5.3.0:
 | 
				
			||||||
 | 
					  version "5.5.0"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
 | 
				
			||||||
 | 
					  integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    has-flag "^3.0.0"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					tslib@^1.8.0, tslib@^1.8.1:
 | 
				
			||||||
 | 
					  version "1.9.3"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.3.tgz#d7e4dd79245d85428c4d7e4822a79917954ca286"
 | 
				
			||||||
 | 
					  integrity sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					tslint@^5.11.0:
 | 
				
			||||||
 | 
					  version "5.16.0"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/tslint/-/tslint-5.16.0.tgz#ae61f9c5a98d295b9a4f4553b1b1e831c1984d67"
 | 
				
			||||||
 | 
					  integrity sha512-UxG2yNxJ5pgGwmMzPMYh/CCnCnh0HfPgtlVRDs1ykZklufFBL1ZoTlWFRz2NQjcoEiDoRp+JyT0lhBbbH/obyA==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    "@babel/code-frame" "^7.0.0"
 | 
				
			||||||
 | 
					    builtin-modules "^1.1.1"
 | 
				
			||||||
 | 
					    chalk "^2.3.0"
 | 
				
			||||||
 | 
					    commander "^2.12.1"
 | 
				
			||||||
 | 
					    diff "^3.2.0"
 | 
				
			||||||
 | 
					    glob "^7.1.1"
 | 
				
			||||||
 | 
					    js-yaml "^3.13.0"
 | 
				
			||||||
 | 
					    minimatch "^3.0.4"
 | 
				
			||||||
 | 
					    mkdirp "^0.5.1"
 | 
				
			||||||
 | 
					    resolve "^1.3.2"
 | 
				
			||||||
 | 
					    semver "^5.3.0"
 | 
				
			||||||
 | 
					    tslib "^1.8.0"
 | 
				
			||||||
 | 
					    tsutils "^2.29.0"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					tsutils@^2.29.0:
 | 
				
			||||||
 | 
					  version "2.29.0"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-2.29.0.tgz#32b488501467acbedd4b85498673a0812aca0b99"
 | 
				
			||||||
 | 
					  integrity sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    tslib "^1.8.1"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					type-is@~1.6.16:
 | 
				
			||||||
 | 
					  version "1.6.16"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.16.tgz#f89ce341541c672b25ee7ae3c73dee3b2be50194"
 | 
				
			||||||
 | 
					  integrity sha512-HRkVv/5qY2G6I8iab9cI7v1bOIdhm94dVjQCPFElW9W+3GeDOSHmy2EBYe4VTApuzolPcmgFTN3ftVJRKR2J9Q==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    media-typer "0.3.0"
 | 
				
			||||||
 | 
					    mime-types "~2.1.18"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					unpipe@1.0.0, unpipe@~1.0.0:
 | 
				
			||||||
 | 
					  version "1.0.0"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
 | 
				
			||||||
 | 
					  integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					utils-merge@1.0.1:
 | 
				
			||||||
 | 
					  version "1.0.1"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"
 | 
				
			||||||
 | 
					  integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					vary@~1.1.2:
 | 
				
			||||||
 | 
					  version "1.1.2"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"
 | 
				
			||||||
 | 
					  integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					wrappy@1:
 | 
				
			||||||
 | 
					  version "1.0.2"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
 | 
				
			||||||
 | 
					  integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
 | 
				
			||||||
		Reference in New Issue
	
	Block a user