├── .gitignore ├── icon └── icon.png ├── images └── commentaligner.gif ├── .vscodeignore ├── .vscode ├── extensions.json └── launch.json ├── jsconfig.json ├── .eslintrc.json ├── CHANGELOG.md ├── test ├── extension.test.js └── index.js ├── README.md ├── package.json ├── vsc-extension-quickstart.md ├── extension.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .vscode-test/ 3 | *.vsix 4 | -------------------------------------------------------------------------------- /icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febaoshan/vscode-extension-comment-aligner/HEAD/icon/icon.png -------------------------------------------------------------------------------- /images/commentaligner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febaoshan/vscode-extension-comment-aligner/HEAD/images/commentaligner.gif -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- 1 | .vscode/** 2 | .vscode-test/** 3 | test/** 4 | .gitignore 5 | vsc-extension-quickstart.md 6 | **/jsconfig.json 7 | **/*.map 8 | **/.eslintrc.json 9 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | // See http://go.microsoft.com/fwlink/?LinkId=827846 3 | // for the documentation about the extensions.json format 4 | "recommendations": [ 5 | "dbaeumer.vscode-eslint" 6 | ] 7 | } -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "module": "commonjs", 4 | "target": "es6", 5 | "checkJs": false, /* Typecheck .js files. */ 6 | "lib": [ 7 | "es6" 8 | ] 9 | }, 10 | "exclude": [ 11 | "node_modules" 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "browser": false, 4 | "commonjs": true, 5 | "es6": true, 6 | "node": true 7 | }, 8 | "parserOptions": { 9 | "ecmaFeatures": { 10 | "jsx": true 11 | }, 12 | "sourceType": "module" 13 | }, 14 | "rules": { 15 | "no-const-assign": "warn", 16 | "no-this-before-super": "warn", 17 | "no-undef": "warn", 18 | "no-unreachable": "warn", 19 | "no-unused-vars": "warn", 20 | "constructor-super": "warn", 21 | "valid-typeof": "warn" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | All notable changes to the "helloworld" extension will be documented in this file. 3 | 4 | Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. 5 | 6 | ### [1.0.1] 7 | - Add notes. 8 | 9 | ### [1.0.0] 10 | - Fix bug: the problem that occurs in line content with comment symbol. 11 | 12 | ### [0.0.2] 13 | - Add detail notes. 14 | - fix bug. 15 | 16 | ## [0.0.1] 17 | - A new extension for aligning the inline trailing comment. -------------------------------------------------------------------------------- /test/extension.test.js: -------------------------------------------------------------------------------- 1 | /* global suite, test */ 2 | 3 | // 4 | // Note: This example test is leveraging the Mocha test framework. 5 | // Please refer to their documentation on https://mochajs.org/ for help. 6 | // 7 | 8 | // The module 'assert' provides assertion methods from node 9 | const assert = require('assert'); 10 | 11 | // You can import and use all API from the 'vscode' module 12 | // as well as import your extension to test it 13 | // const vscode = require('vscode'); 14 | // const myExtension = require('../extension'); 15 | 16 | // Defines a Mocha test suite to group tests of similar kind together 17 | suite("Extension Tests", function() { 18 | 19 | // Defines a Mocha unit test 20 | test("Something 1", function() { 21 | assert.equal(-1, [1, 2, 3].indexOf(5)); 22 | assert.equal(-1, [1, 2, 3].indexOf(0)); 23 | }); 24 | }); 25 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- 1 | // A launch configuration that launches the extension inside a new window 2 | // Use IntelliSense to learn about possible attributes. 3 | // Hover to view descriptions of existing attributes. 4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 5 | { 6 | "version": "0.2.0", 7 | "configurations": [ 8 | { 9 | "name": "Extension", 10 | "type": "extensionHost", 11 | "request": "launch", 12 | "runtimeExecutable": "${execPath}", 13 | "args": [ 14 | "--extensionDevelopmentPath=${workspaceFolder}" 15 | ] 16 | }, 17 | { 18 | "name": "Extension Tests", 19 | "type": "extensionHost", 20 | "request": "launch", 21 | "runtimeExecutable": "${execPath}", 22 | "args": [ 23 | "--extensionDevelopmentPath=${workspaceFolder}", 24 | "--extensionTestsPath=${workspaceFolder}/test" 25 | ] 26 | } 27 | ] 28 | } 29 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # comment-aligner README 2 | 3 | ![visitor badge](https://visitor-badge.glitch.me/badge?page_id=febaoshan.vscode-extension-comment-aligner) 4 | 5 | ## Features 6 | 7 | A new extension for aligning the inline trailing comment. 8 | 9 | It can align your inline trailing comment except the normal code line. 10 | 11 | It will be like this: 12 | 13 | ![feature X](images/commentaligner.gif) 14 | 15 | ## Requirements 16 | 17 | None. 18 | 19 | ## Extension Settings 20 | 21 | TODO. 22 | 23 | ## License 24 | 25 | MIT. 26 | 27 | ## Resource code 28 | 29 | https://github.com/gitshan/vscode-extension-comment-aligner. 30 | 31 | ## Release Notes 32 | 33 | ### 1.0.1 34 | 35 | Add notes. 36 | 37 | ### 1.0.0 38 | 39 | Fix bug: the problem that occurs in line content with comment symbol. 40 | 41 | ### 0.0.2 42 | 43 | Add detail notes and fix bug. 44 | 45 | ### 0.0.1 46 | 47 | A new extension for aligning the inline trailing comment. 48 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "comment-aligner", 3 | "displayName": "comment aligner", 4 | "description": "A tool for aligning the inline trailing comment", 5 | "version": "1.0.1", 6 | "publisher": "huangbaoshan", 7 | "icon": "icon/icon.png", 8 | "repository": { 9 | "type": "git", 10 | "url":"https://github.com/gitshan/vscode-extension-comment-aligner.git" 11 | }, 12 | "engines": { 13 | "vscode": "^1.30.0" 14 | }, 15 | "categories": [ 16 | "Other" 17 | ], 18 | "activationEvents": [ 19 | "onCommand:extension.commentaligner" 20 | ], 21 | "main": "./extension.js", 22 | "contributes": { 23 | "commands": [{ 24 | "command": "extension.commentaligner", 25 | "title": "Comment Aligner" 26 | }] 27 | }, 28 | "scripts": { 29 | "postinstall": "node ./node_modules/vscode/bin/install", 30 | "test": "node ./node_modules/vscode/bin/test" 31 | }, 32 | "devDependencies": { 33 | "typescript": "^3.1.4", 34 | "vscode": "^1.1.25", 35 | "eslint": "^4.11.0", 36 | "@types/node": "^8.10.25", 37 | "@types/mocha": "^2.2.42" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- 1 | // 2 | // PLEASE DO NOT MODIFY / DELETE UNLESS YOU KNOW WHAT YOU ARE DOING 3 | // 4 | // This file is providing the test runner to use when running extension tests. 5 | // By default the test runner in use is Mocha based. 6 | // 7 | // You can provide your own test runner if you want to override it by exporting 8 | // a function run(testRoot: string, clb: (error:Error) => void) that the extension 9 | // host can call to run the tests. The test runner is expected to use console.log 10 | // to report the results back to the caller. When the tests are finished, return 11 | // a possible error to the callback or null if none. 12 | 13 | const testRunner = require('vscode/lib/testrunner'); 14 | 15 | // You can directly control Mocha options by uncommenting the following lines 16 | // See https://github.com/mochajs/mocha/wiki/Using-mocha-programmatically#set-options for more info 17 | testRunner.configure({ 18 | ui: 'tdd', // the TDD UI is being used in extension.test.js (suite, test, etc.) 19 | useColors: true // colored output from test results 20 | }); 21 | 22 | module.exports = testRunner; 23 | -------------------------------------------------------------------------------- /vsc-extension-quickstart.md: -------------------------------------------------------------------------------- 1 | # Welcome to your VS Code Extension 2 | 3 | ## What's in the folder 4 | * This folder contains all of the files necessary for your extension. 5 | * `package.json` - this is the manifest file in which you declare your extension and command. 6 | The sample plugin registers a command and defines its title and command name. With this information 7 | VS Code can show the command in the command palette. It doesn’t yet need to load the plugin. 8 | * `extension.js` - this is the main file where you will provide the implementation of your command. 9 | The file exports one function, `activate`, which is called the very first time your extension is 10 | activated (in this case by executing the command). Inside the `activate` function we call `registerCommand`. 11 | We pass the function containing the implementation of the command as the second parameter to 12 | `registerCommand`. 13 | 14 | ## Get up and running straight away 15 | * Press `F5` to open a new window with your extension loaded. 16 | * Run your command from the command palette by pressing (`Ctrl+Shift+P` or `Cmd+Shift+P` on Mac) and typing `Hello World`. 17 | * Set breakpoints in your code inside `extension.js` to debug your extension. 18 | * Find output from your extension in the debug console. 19 | 20 | ## Make changes 21 | * You can relaunch the extension from the debug toolbar after changing code in `extension.js`. 22 | * You can also reload (`Ctrl+R` or `Cmd+R` on Mac) the VS Code window with your extension to load your changes. 23 | 24 | ## Explore the API 25 | * You can open the full set of our API when you open the file `node_modules/vscode/vscode.d.ts`. 26 | 27 | ## Run tests 28 | * Open the debug viewlet (`Ctrl+Shift+D` or `Cmd+Shift+D` on Mac) and from the launch configuration dropdown pick `Extension Tests`. 29 | * Press `F5` to run the tests in a new window with your extension loaded. 30 | * See the output of the test result in the debug console. 31 | * Make changes to `test/extension.test.js` or create new test files inside the `test` folder. 32 | * By convention, the test runner will only consider files matching the name pattern `**.test.js`. 33 | * You can create folders inside the `test` folder to structure your tests any way you want. 34 | -------------------------------------------------------------------------------- /extension.js: -------------------------------------------------------------------------------- 1 | // The module 'vscode' contains the VS Code extensibility API 2 | // Import the module and reference it with the alias vscode in your code below 3 | const vscode = require('vscode'); 4 | 5 | // this method is called when your extension is activated 6 | // your extension is activated the very first time the command is executed 7 | 8 | /** 9 | * @note: 字符串新增空白字符方法 10 | * @param num: 需要的空白字符个数 11 | */ 12 | function addBlankString(num) { 13 | let blankStr = ''; 14 | for(let i = 0; i < num; i++) { 15 | blankStr += '\xa0'; 16 | } 17 | return blankStr; 18 | } 19 | 20 | /** 21 | * @param {vscode.ExtensionContext} context 22 | */ 23 | function activate(context) { 24 | 25 | // Use the console to output diagnostic information (console.log) and errors (console.error) 26 | // This line of code will only be executed once when your extension is activated 27 | // console.log('Congratulations, your extension "helloworld" is now active!'); 28 | 29 | // The command has been defined in the package.json file 30 | // Now provide the implementation of the command with registerCommand 31 | // The commandId parameter must match the command field in package.json 32 | let disposable = vscode.commands.registerCommand('extension.commentaligner', function () { 33 | // The code you place here will be executed every time your command is executed 34 | 35 | // 步骤分解 36 | // 1. 获取所有选中行信息 37 | // 2. 获取每行的注释信息(位置、内容) 38 | // 3. 获取非注释内容最长行 39 | // 4. 归位其他行注释位置,对齐最长行注释位置 40 | 41 | let activeTextEditor = vscode.window.activeTextEditor; 42 | let activeDocument = activeTextEditor.document; 43 | 44 | // 1. 获取所有选中行信息 45 | let selection = vscode.window.activeTextEditor.selection; 46 | 47 | // 起止行行号 48 | let startLine = selection.start.line; 49 | let endLine = selection.end.line; 50 | 51 | // 2. 获取每行的注释信息(位置、内容) 52 | let commentArr = [];                                                         // 选中行信息缓存数组 53 | let commentIndexArr = [];                                                   // 选中行注释起始脚标数组,用于筛选出非注释文本内容最长行 54 | for(let i = startLine; i <= endLine; i++) { 55 | let curLineText = activeDocument.lineAt(i).text;                           // 当前行文本内容 56 | let curLineCommentIndex = curLineText.lastIndexOf('//');                   // 注释起始脚标,行的最后标记符号;使用时应当避免含有注释符号字符串的非注释行 57 | let curLineComment = curLineText.slice(curLineCommentIndex);               // 注释文本 58 | let curLineTextWithOutComment = curLineText.slice(0, curLineCommentIndex); // 非注释文本 59 | 60 | commentIndexArr.push(curLineCommentIndex); 61 | commentArr.push({ 62 | line: i, 63 | lineLength: curLineText.length, 64 | curLineText: curLineText, 65 | curLineTextWithOutComment: curLineTextWithOutComment, 66 | commentIndex: curLineCommentIndex, 67 | comment: curLineComment 68 | }); 69 | } 70 | 71 | // 3. 获取非注释文本内容最长行 72 | let maxCommentLengthIndex = Math.max.apply(null, commentIndexArr); 73 | 74 | // 4. 归位其他行注释位置,对齐最长行注释位置 75 | let newText = commentArr.map(item => { 76 | if (item.commentIndex === -1) { 77 | return item.lineLength === 0 ? '' : item.curLineText; 78 | } 79 | return item.lineLength === 0 ? '' : item.curLineTextWithOutComment + addBlankString(maxCommentLengthIndex - item.commentIndex) + item.comment; 80 | }); 81 | let replaceRange = new vscode.Range(startLine, 0, endLine, commentArr[commentArr.length - 1].lineLength); 82 | 83 | // 调用编辑接口 84 | activeTextEditor.edit((TextEditorEdit) => { 85 | TextEditorEdit.replace(replaceRange, newText.join('\n')); 86 | }); 87 | 88 | // Display a message box to the user 89 | // vscode.window.showInformationMessage('success!'); 90 | }); 91 | 92 | context.subscriptions.push(disposable); 93 | } 94 | exports.activate = activate; 95 | 96 | // this method is called when your extension is deactivated 97 | function deactivate() {} 98 | 99 | module.exports = { 100 | activate, 101 | deactivate 102 | } 103 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@types/mocha@^2.2.42": 6 | version "2.2.48" 7 | resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-2.2.48.tgz#3523b126a0b049482e1c3c11877460f76622ffab" 8 | 9 | "@types/node@^8.10.25": 10 | version "8.10.39" 11 | resolved "https://registry.yarnpkg.com/@types/node/-/node-8.10.39.tgz#e7e87ad00364dd7bc485c940926345b8ec1a26ca" 12 | 13 | acorn-jsx@^3.0.0: 14 | version "3.0.1" 15 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 16 | dependencies: 17 | acorn "^3.0.4" 18 | 19 | acorn@^3.0.4: 20 | version "3.3.0" 21 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 22 | 23 | acorn@^5.5.0: 24 | version "5.7.3" 25 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279" 26 | 27 | ajv-keywords@^2.1.0: 28 | version "2.1.1" 29 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762" 30 | 31 | ajv@^5.2.3, ajv@^5.3.0: 32 | version "5.5.2" 33 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 34 | dependencies: 35 | co "^4.6.0" 36 | fast-deep-equal "^1.0.0" 37 | fast-json-stable-stringify "^2.0.0" 38 | json-schema-traverse "^0.3.0" 39 | 40 | ajv@^6.5.5: 41 | version "6.7.0" 42 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.7.0.tgz#e3ce7bb372d6577bb1839f1dfdfcbf5ad2948d96" 43 | dependencies: 44 | fast-deep-equal "^2.0.1" 45 | fast-json-stable-stringify "^2.0.0" 46 | json-schema-traverse "^0.4.1" 47 | uri-js "^4.2.2" 48 | 49 | ansi-cyan@^0.1.1: 50 | version "0.1.1" 51 | resolved "https://registry.yarnpkg.com/ansi-cyan/-/ansi-cyan-0.1.1.tgz#538ae528af8982f28ae30d86f2f17456d2609873" 52 | dependencies: 53 | ansi-wrap "0.1.0" 54 | 55 | ansi-escapes@^3.0.0: 56 | version "3.2.0" 57 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" 58 | 59 | ansi-red@^0.1.1: 60 | version "0.1.1" 61 | resolved "https://registry.yarnpkg.com/ansi-red/-/ansi-red-0.1.1.tgz#8c638f9d1080800a353c9c28c8a81ca4705d946c" 62 | dependencies: 63 | ansi-wrap "0.1.0" 64 | 65 | ansi-regex@^2.0.0: 66 | version "2.1.1" 67 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 68 | 69 | ansi-regex@^3.0.0: 70 | version "3.0.0" 71 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 72 | 73 | ansi-styles@^2.2.1: 74 | version "2.2.1" 75 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 76 | 77 | ansi-styles@^3.2.1: 78 | version "3.2.1" 79 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 80 | dependencies: 81 | color-convert "^1.9.0" 82 | 83 | ansi-wrap@0.1.0: 84 | version "0.1.0" 85 | resolved "https://registry.yarnpkg.com/ansi-wrap/-/ansi-wrap-0.1.0.tgz#a82250ddb0015e9a27ca82e82ea603bbfa45efaf" 86 | 87 | append-buffer@^1.0.2: 88 | version "1.0.2" 89 | resolved "https://registry.yarnpkg.com/append-buffer/-/append-buffer-1.0.2.tgz#d8220cf466081525efea50614f3de6514dfa58f1" 90 | dependencies: 91 | buffer-equal "^1.0.0" 92 | 93 | argparse@^1.0.7: 94 | version "1.0.10" 95 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 96 | dependencies: 97 | sprintf-js "~1.0.2" 98 | 99 | arr-diff@^1.0.1: 100 | version "1.1.0" 101 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-1.1.0.tgz#687c32758163588fef7de7b36fabe495eb1a399a" 102 | dependencies: 103 | arr-flatten "^1.0.1" 104 | array-slice "^0.2.3" 105 | 106 | arr-flatten@^1.0.1: 107 | version "1.1.0" 108 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 109 | 110 | arr-union@^2.0.1: 111 | version "2.1.0" 112 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-2.1.0.tgz#20f9eab5ec70f5c7d215b1077b1c39161d292c7d" 113 | 114 | array-differ@^1.0.0: 115 | version "1.0.0" 116 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" 117 | 118 | array-slice@^0.2.3: 119 | version "0.2.3" 120 | resolved "https://registry.yarnpkg.com/array-slice/-/array-slice-0.2.3.tgz#dd3cfb80ed7973a75117cdac69b0b99ec86186f5" 121 | 122 | array-union@^1.0.1: 123 | version "1.0.2" 124 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 125 | dependencies: 126 | array-uniq "^1.0.1" 127 | 128 | array-uniq@^1.0.1: 129 | version "1.0.3" 130 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 131 | 132 | arrify@^1.0.0: 133 | version "1.0.1" 134 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 135 | 136 | asn1@~0.2.3: 137 | version "0.2.4" 138 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" 139 | dependencies: 140 | safer-buffer "~2.1.0" 141 | 142 | assert-plus@1.0.0, assert-plus@^1.0.0: 143 | version "1.0.0" 144 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 145 | 146 | asynckit@^0.4.0: 147 | version "0.4.0" 148 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 149 | 150 | aws-sign2@~0.7.0: 151 | version "0.7.0" 152 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 153 | 154 | aws4@^1.8.0: 155 | version "1.8.0" 156 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.8.0.tgz#f0e003d9ca9e7f59c7a508945d7b2ef9a04a542f" 157 | 158 | babel-code-frame@^6.22.0: 159 | version "6.26.0" 160 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 161 | dependencies: 162 | chalk "^1.1.3" 163 | esutils "^2.0.2" 164 | js-tokens "^3.0.2" 165 | 166 | balanced-match@^1.0.0: 167 | version "1.0.0" 168 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 169 | 170 | bcrypt-pbkdf@^1.0.0: 171 | version "1.0.2" 172 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" 173 | dependencies: 174 | tweetnacl "^0.14.3" 175 | 176 | block-stream@*: 177 | version "0.0.9" 178 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 179 | dependencies: 180 | inherits "~2.0.0" 181 | 182 | brace-expansion@^1.1.7: 183 | version "1.1.11" 184 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 185 | dependencies: 186 | balanced-match "^1.0.0" 187 | concat-map "0.0.1" 188 | 189 | browser-stdout@1.3.0: 190 | version "1.3.0" 191 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" 192 | 193 | buffer-crc32@~0.2.3: 194 | version "0.2.13" 195 | resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" 196 | 197 | buffer-equal@^1.0.0: 198 | version "1.0.0" 199 | resolved "https://registry.yarnpkg.com/buffer-equal/-/buffer-equal-1.0.0.tgz#59616b498304d556abd466966b22eeda3eca5fbe" 200 | 201 | buffer-from@^1.0.0: 202 | version "1.1.1" 203 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 204 | 205 | caller-path@^0.1.0: 206 | version "0.1.0" 207 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 208 | dependencies: 209 | callsites "^0.2.0" 210 | 211 | callsites@^0.2.0: 212 | version "0.2.0" 213 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 214 | 215 | caseless@~0.12.0: 216 | version "0.12.0" 217 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 218 | 219 | chalk@^1.1.3: 220 | version "1.1.3" 221 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 222 | dependencies: 223 | ansi-styles "^2.2.1" 224 | escape-string-regexp "^1.0.2" 225 | has-ansi "^2.0.0" 226 | strip-ansi "^3.0.0" 227 | supports-color "^2.0.0" 228 | 229 | chalk@^2.0.0, chalk@^2.1.0: 230 | version "2.4.2" 231 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 232 | dependencies: 233 | ansi-styles "^3.2.1" 234 | escape-string-regexp "^1.0.5" 235 | supports-color "^5.3.0" 236 | 237 | chardet@^0.4.0: 238 | version "0.4.2" 239 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" 240 | 241 | circular-json@^0.3.1: 242 | version "0.3.3" 243 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" 244 | 245 | cli-cursor@^2.1.0: 246 | version "2.1.0" 247 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 248 | dependencies: 249 | restore-cursor "^2.0.0" 250 | 251 | cli-width@^2.0.0: 252 | version "2.2.0" 253 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 254 | 255 | clone-buffer@^1.0.0: 256 | version "1.0.0" 257 | resolved "https://registry.yarnpkg.com/clone-buffer/-/clone-buffer-1.0.0.tgz#e3e25b207ac4e701af721e2cb5a16792cac3dc58" 258 | 259 | clone-stats@^0.0.1: 260 | version "0.0.1" 261 | resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-0.0.1.tgz#b88f94a82cf38b8791d58046ea4029ad88ca99d1" 262 | 263 | clone-stats@^1.0.0: 264 | version "1.0.0" 265 | resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-1.0.0.tgz#b3782dff8bb5474e18b9b6bf0fdfe782f8777680" 266 | 267 | clone@^0.2.0: 268 | version "0.2.0" 269 | resolved "https://registry.yarnpkg.com/clone/-/clone-0.2.0.tgz#c6126a90ad4f72dbf5acdb243cc37724fe93fc1f" 270 | 271 | clone@^1.0.0: 272 | version "1.0.4" 273 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" 274 | 275 | clone@^2.1.1: 276 | version "2.1.2" 277 | resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.2.tgz#1b7f4b9f591f1e8f83670401600345a02887435f" 278 | 279 | cloneable-readable@^1.0.0: 280 | version "1.1.2" 281 | resolved "https://registry.yarnpkg.com/cloneable-readable/-/cloneable-readable-1.1.2.tgz#d591dee4a8f8bc15da43ce97dceeba13d43e2a65" 282 | dependencies: 283 | inherits "^2.0.1" 284 | process-nextick-args "^2.0.0" 285 | readable-stream "^2.3.5" 286 | 287 | co@^4.6.0: 288 | version "4.6.0" 289 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 290 | 291 | color-convert@^1.9.0: 292 | version "1.9.3" 293 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 294 | dependencies: 295 | color-name "1.1.3" 296 | 297 | color-name@1.1.3: 298 | version "1.1.3" 299 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 300 | 301 | combined-stream@^1.0.6, combined-stream@~1.0.6: 302 | version "1.0.7" 303 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.7.tgz#2d1d24317afb8abe95d6d2c0b07b57813539d828" 304 | dependencies: 305 | delayed-stream "~1.0.0" 306 | 307 | commander@2.11.0: 308 | version "2.11.0" 309 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" 310 | 311 | concat-map@0.0.1: 312 | version "0.0.1" 313 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 314 | 315 | concat-stream@^1.6.0: 316 | version "1.6.2" 317 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" 318 | dependencies: 319 | buffer-from "^1.0.0" 320 | inherits "^2.0.3" 321 | readable-stream "^2.2.2" 322 | typedarray "^0.0.6" 323 | 324 | convert-source-map@^1.5.0: 325 | version "1.6.0" 326 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20" 327 | dependencies: 328 | safe-buffer "~5.1.1" 329 | 330 | core-util-is@1.0.2, core-util-is@~1.0.0: 331 | version "1.0.2" 332 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 333 | 334 | cross-spawn@^5.1.0: 335 | version "5.1.0" 336 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 337 | dependencies: 338 | lru-cache "^4.0.1" 339 | shebang-command "^1.2.0" 340 | which "^1.2.9" 341 | 342 | dashdash@^1.12.0: 343 | version "1.14.1" 344 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 345 | dependencies: 346 | assert-plus "^1.0.0" 347 | 348 | debug@3.1.0: 349 | version "3.1.0" 350 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 351 | dependencies: 352 | ms "2.0.0" 353 | 354 | debug@^3.1.0: 355 | version "3.2.6" 356 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" 357 | dependencies: 358 | ms "^2.1.1" 359 | 360 | deep-assign@^1.0.0: 361 | version "1.0.0" 362 | resolved "https://registry.yarnpkg.com/deep-assign/-/deep-assign-1.0.0.tgz#b092743be8427dc621ea0067cdec7e70dd19f37b" 363 | dependencies: 364 | is-obj "^1.0.0" 365 | 366 | deep-is@~0.1.3: 367 | version "0.1.3" 368 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 369 | 370 | define-properties@^1.1.2: 371 | version "1.1.3" 372 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 373 | dependencies: 374 | object-keys "^1.0.12" 375 | 376 | delayed-stream@~1.0.0: 377 | version "1.0.0" 378 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 379 | 380 | diff@3.3.1: 381 | version "3.3.1" 382 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.3.1.tgz#aa8567a6eed03c531fc89d3f711cd0e5259dec75" 383 | 384 | doctrine@^2.1.0: 385 | version "2.1.0" 386 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 387 | dependencies: 388 | esutils "^2.0.2" 389 | 390 | duplexer@^0.1.1, duplexer@~0.1.1: 391 | version "0.1.1" 392 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" 393 | 394 | duplexify@^3.6.0: 395 | version "3.6.1" 396 | resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.6.1.tgz#b1a7a29c4abfd639585efaecce80d666b1e34125" 397 | dependencies: 398 | end-of-stream "^1.0.0" 399 | inherits "^2.0.1" 400 | readable-stream "^2.0.0" 401 | stream-shift "^1.0.0" 402 | 403 | ecc-jsbn@~0.1.1: 404 | version "0.1.2" 405 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" 406 | dependencies: 407 | jsbn "~0.1.0" 408 | safer-buffer "^2.1.0" 409 | 410 | end-of-stream@^1.0.0, end-of-stream@^1.1.0: 411 | version "1.4.1" 412 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.1.tgz#ed29634d19baba463b6ce6b80a37213eab71ec43" 413 | dependencies: 414 | once "^1.4.0" 415 | 416 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 417 | version "1.0.5" 418 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 419 | 420 | eslint-scope@^3.7.1: 421 | version "3.7.3" 422 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.3.tgz#bb507200d3d17f60247636160b4826284b108535" 423 | dependencies: 424 | esrecurse "^4.1.0" 425 | estraverse "^4.1.1" 426 | 427 | eslint-visitor-keys@^1.0.0: 428 | version "1.0.0" 429 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d" 430 | 431 | eslint@^4.11.0: 432 | version "4.19.1" 433 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.19.1.tgz#32d1d653e1d90408854bfb296f076ec7e186a300" 434 | dependencies: 435 | ajv "^5.3.0" 436 | babel-code-frame "^6.22.0" 437 | chalk "^2.1.0" 438 | concat-stream "^1.6.0" 439 | cross-spawn "^5.1.0" 440 | debug "^3.1.0" 441 | doctrine "^2.1.0" 442 | eslint-scope "^3.7.1" 443 | eslint-visitor-keys "^1.0.0" 444 | espree "^3.5.4" 445 | esquery "^1.0.0" 446 | esutils "^2.0.2" 447 | file-entry-cache "^2.0.0" 448 | functional-red-black-tree "^1.0.1" 449 | glob "^7.1.2" 450 | globals "^11.0.1" 451 | ignore "^3.3.3" 452 | imurmurhash "^0.1.4" 453 | inquirer "^3.0.6" 454 | is-resolvable "^1.0.0" 455 | js-yaml "^3.9.1" 456 | json-stable-stringify-without-jsonify "^1.0.1" 457 | levn "^0.3.0" 458 | lodash "^4.17.4" 459 | minimatch "^3.0.2" 460 | mkdirp "^0.5.1" 461 | natural-compare "^1.4.0" 462 | optionator "^0.8.2" 463 | path-is-inside "^1.0.2" 464 | pluralize "^7.0.0" 465 | progress "^2.0.0" 466 | regexpp "^1.0.1" 467 | require-uncached "^1.0.3" 468 | semver "^5.3.0" 469 | strip-ansi "^4.0.0" 470 | strip-json-comments "~2.0.1" 471 | table "4.0.2" 472 | text-table "~0.2.0" 473 | 474 | espree@^3.5.4: 475 | version "3.5.4" 476 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.4.tgz#b0f447187c8a8bed944b815a660bddf5deb5d1a7" 477 | dependencies: 478 | acorn "^5.5.0" 479 | acorn-jsx "^3.0.0" 480 | 481 | esprima@^4.0.0: 482 | version "4.0.1" 483 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 484 | 485 | esquery@^1.0.0: 486 | version "1.0.1" 487 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708" 488 | dependencies: 489 | estraverse "^4.0.0" 490 | 491 | esrecurse@^4.1.0: 492 | version "4.2.1" 493 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" 494 | dependencies: 495 | estraverse "^4.1.0" 496 | 497 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1: 498 | version "4.2.0" 499 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 500 | 501 | esutils@^2.0.2: 502 | version "2.0.2" 503 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 504 | 505 | event-stream@3.3.4: 506 | version "3.3.4" 507 | resolved "https://registry.yarnpkg.com/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" 508 | dependencies: 509 | duplexer "~0.1.1" 510 | from "~0" 511 | map-stream "~0.1.0" 512 | pause-stream "0.0.11" 513 | split "0.3" 514 | stream-combiner "~0.0.4" 515 | through "~2.3.1" 516 | 517 | event-stream@~3.3.4: 518 | version "3.3.5" 519 | resolved "https://registry.yarnpkg.com/event-stream/-/event-stream-3.3.5.tgz#e5dd8989543630d94c6cf4d657120341fa31636b" 520 | dependencies: 521 | duplexer "^0.1.1" 522 | from "^0.1.7" 523 | map-stream "0.0.7" 524 | pause-stream "^0.0.11" 525 | split "^1.0.1" 526 | stream-combiner "^0.2.2" 527 | through "^2.3.8" 528 | 529 | extend-shallow@^1.1.2: 530 | version "1.1.4" 531 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-1.1.4.tgz#19d6bf94dfc09d76ba711f39b872d21ff4dd9071" 532 | dependencies: 533 | kind-of "^1.1.0" 534 | 535 | extend@^3.0.0, extend@~3.0.2: 536 | version "3.0.2" 537 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 538 | 539 | external-editor@^2.0.4: 540 | version "2.2.0" 541 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5" 542 | dependencies: 543 | chardet "^0.4.0" 544 | iconv-lite "^0.4.17" 545 | tmp "^0.0.33" 546 | 547 | extsprintf@1.3.0: 548 | version "1.3.0" 549 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 550 | 551 | extsprintf@^1.2.0: 552 | version "1.4.0" 553 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 554 | 555 | fast-deep-equal@^1.0.0: 556 | version "1.1.0" 557 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" 558 | 559 | fast-deep-equal@^2.0.1: 560 | version "2.0.1" 561 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" 562 | 563 | fast-json-stable-stringify@^2.0.0: 564 | version "2.0.0" 565 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 566 | 567 | fast-levenshtein@~2.0.4: 568 | version "2.0.6" 569 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 570 | 571 | fd-slicer@~1.1.0: 572 | version "1.1.0" 573 | resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz#25c7c89cb1f9077f8891bbe61d8f390eae256f1e" 574 | dependencies: 575 | pend "~1.2.0" 576 | 577 | figures@^2.0.0: 578 | version "2.0.0" 579 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 580 | dependencies: 581 | escape-string-regexp "^1.0.5" 582 | 583 | file-entry-cache@^2.0.0: 584 | version "2.0.0" 585 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 586 | dependencies: 587 | flat-cache "^1.2.1" 588 | object-assign "^4.0.1" 589 | 590 | flat-cache@^1.2.1: 591 | version "1.3.4" 592 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.4.tgz#2c2ef77525cc2929007dfffa1dd314aa9c9dee6f" 593 | dependencies: 594 | circular-json "^0.3.1" 595 | graceful-fs "^4.1.2" 596 | rimraf "~2.6.2" 597 | write "^0.2.1" 598 | 599 | flush-write-stream@^1.0.2: 600 | version "1.0.3" 601 | resolved "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.0.3.tgz#c5d586ef38af6097650b49bc41b55fabb19f35bd" 602 | dependencies: 603 | inherits "^2.0.1" 604 | readable-stream "^2.0.4" 605 | 606 | forever-agent@~0.6.1: 607 | version "0.6.1" 608 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 609 | 610 | form-data@~2.3.2: 611 | version "2.3.3" 612 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" 613 | dependencies: 614 | asynckit "^0.4.0" 615 | combined-stream "^1.0.6" 616 | mime-types "^2.1.12" 617 | 618 | from@^0.1.7, from@~0: 619 | version "0.1.7" 620 | resolved "https://registry.yarnpkg.com/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe" 621 | 622 | fs-mkdirp-stream@^1.0.0: 623 | version "1.0.0" 624 | resolved "https://registry.yarnpkg.com/fs-mkdirp-stream/-/fs-mkdirp-stream-1.0.0.tgz#0b7815fc3201c6a69e14db98ce098c16935259eb" 625 | dependencies: 626 | graceful-fs "^4.1.11" 627 | through2 "^2.0.3" 628 | 629 | fs.realpath@^1.0.0: 630 | version "1.0.0" 631 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 632 | 633 | fstream@^1.0.2: 634 | version "1.0.11" 635 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 636 | dependencies: 637 | graceful-fs "^4.1.2" 638 | inherits "~2.0.0" 639 | mkdirp ">=0.5 0" 640 | rimraf "2" 641 | 642 | function-bind@^1.1.1: 643 | version "1.1.1" 644 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 645 | 646 | functional-red-black-tree@^1.0.1: 647 | version "1.0.1" 648 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 649 | 650 | getpass@^0.1.1: 651 | version "0.1.7" 652 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 653 | dependencies: 654 | assert-plus "^1.0.0" 655 | 656 | glob-parent@^3.1.0: 657 | version "3.1.0" 658 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" 659 | dependencies: 660 | is-glob "^3.1.0" 661 | path-dirname "^1.0.0" 662 | 663 | glob-stream@^6.1.0: 664 | version "6.1.0" 665 | resolved "https://registry.yarnpkg.com/glob-stream/-/glob-stream-6.1.0.tgz#7045c99413b3eb94888d83ab46d0b404cc7bdde4" 666 | dependencies: 667 | extend "^3.0.0" 668 | glob "^7.1.1" 669 | glob-parent "^3.1.0" 670 | is-negated-glob "^1.0.0" 671 | ordered-read-streams "^1.0.0" 672 | pumpify "^1.3.5" 673 | readable-stream "^2.1.5" 674 | remove-trailing-separator "^1.0.1" 675 | to-absolute-glob "^2.0.0" 676 | unique-stream "^2.0.2" 677 | 678 | glob@7.1.2: 679 | version "7.1.2" 680 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 681 | dependencies: 682 | fs.realpath "^1.0.0" 683 | inflight "^1.0.4" 684 | inherits "2" 685 | minimatch "^3.0.4" 686 | once "^1.3.0" 687 | path-is-absolute "^1.0.0" 688 | 689 | glob@^7.1.1, glob@^7.1.2, glob@^7.1.3: 690 | version "7.1.3" 691 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1" 692 | dependencies: 693 | fs.realpath "^1.0.0" 694 | inflight "^1.0.4" 695 | inherits "2" 696 | minimatch "^3.0.4" 697 | once "^1.3.0" 698 | path-is-absolute "^1.0.0" 699 | 700 | globals@^11.0.1: 701 | version "11.10.0" 702 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.10.0.tgz#1e09776dffda5e01816b3bb4077c8b59c24eaa50" 703 | 704 | graceful-fs@^4.0.0, graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6: 705 | version "4.1.15" 706 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00" 707 | 708 | growl@1.10.3: 709 | version "1.10.3" 710 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.10.3.tgz#1926ba90cf3edfe2adb4927f5880bc22c66c790f" 711 | 712 | gulp-chmod@^2.0.0: 713 | version "2.0.0" 714 | resolved "https://registry.yarnpkg.com/gulp-chmod/-/gulp-chmod-2.0.0.tgz#00c390b928a0799b251accf631aa09e01cc6299c" 715 | dependencies: 716 | deep-assign "^1.0.0" 717 | stat-mode "^0.2.0" 718 | through2 "^2.0.0" 719 | 720 | gulp-filter@^5.0.1: 721 | version "5.1.0" 722 | resolved "https://registry.yarnpkg.com/gulp-filter/-/gulp-filter-5.1.0.tgz#a05e11affb07cf7dcf41a7de1cb7b63ac3783e73" 723 | dependencies: 724 | multimatch "^2.0.0" 725 | plugin-error "^0.1.2" 726 | streamfilter "^1.0.5" 727 | 728 | gulp-gunzip@1.0.0: 729 | version "1.0.0" 730 | resolved "https://registry.yarnpkg.com/gulp-gunzip/-/gulp-gunzip-1.0.0.tgz#15b741145e83a9c6f50886241b57cc5871f151a9" 731 | dependencies: 732 | through2 "~0.6.5" 733 | vinyl "~0.4.6" 734 | 735 | gulp-remote-src-vscode@^0.5.1: 736 | version "0.5.1" 737 | resolved "https://registry.yarnpkg.com/gulp-remote-src-vscode/-/gulp-remote-src-vscode-0.5.1.tgz#a528509457affff3ff30cc73a4a97afe31c41c1d" 738 | dependencies: 739 | event-stream "3.3.4" 740 | node.extend "^1.1.2" 741 | request "^2.79.0" 742 | through2 "^2.0.3" 743 | vinyl "^2.0.1" 744 | 745 | gulp-untar@^0.0.7: 746 | version "0.0.7" 747 | resolved "https://registry.yarnpkg.com/gulp-untar/-/gulp-untar-0.0.7.tgz#92067d79e0fa1e92d60562a100233a44a5aa08b4" 748 | dependencies: 749 | event-stream "~3.3.4" 750 | streamifier "~0.1.1" 751 | tar "^2.2.1" 752 | through2 "~2.0.3" 753 | vinyl "^1.2.0" 754 | 755 | gulp-vinyl-zip@^2.1.2: 756 | version "2.1.2" 757 | resolved "https://registry.yarnpkg.com/gulp-vinyl-zip/-/gulp-vinyl-zip-2.1.2.tgz#b79cc1a0e2c3b158ffee294590ade1e9caaf5e7b" 758 | dependencies: 759 | event-stream "3.3.4" 760 | queue "^4.2.1" 761 | through2 "^2.0.3" 762 | vinyl "^2.0.2" 763 | vinyl-fs "^3.0.3" 764 | yauzl "^2.2.1" 765 | yazl "^2.2.1" 766 | 767 | har-schema@^2.0.0: 768 | version "2.0.0" 769 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 770 | 771 | har-validator@~5.1.0: 772 | version "5.1.3" 773 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080" 774 | dependencies: 775 | ajv "^6.5.5" 776 | har-schema "^2.0.0" 777 | 778 | has-ansi@^2.0.0: 779 | version "2.0.0" 780 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 781 | dependencies: 782 | ansi-regex "^2.0.0" 783 | 784 | has-flag@^2.0.0: 785 | version "2.0.0" 786 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 787 | 788 | has-flag@^3.0.0: 789 | version "3.0.0" 790 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 791 | 792 | has-symbols@^1.0.0: 793 | version "1.0.0" 794 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" 795 | 796 | has@^1.0.3: 797 | version "1.0.3" 798 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 799 | dependencies: 800 | function-bind "^1.1.1" 801 | 802 | he@1.1.1: 803 | version "1.1.1" 804 | resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" 805 | 806 | http-signature@~1.2.0: 807 | version "1.2.0" 808 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 809 | dependencies: 810 | assert-plus "^1.0.0" 811 | jsprim "^1.2.2" 812 | sshpk "^1.7.0" 813 | 814 | iconv-lite@^0.4.17: 815 | version "0.4.24" 816 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 817 | dependencies: 818 | safer-buffer ">= 2.1.2 < 3" 819 | 820 | ignore@^3.3.3: 821 | version "3.3.10" 822 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043" 823 | 824 | imurmurhash@^0.1.4: 825 | version "0.1.4" 826 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 827 | 828 | inflight@^1.0.4: 829 | version "1.0.6" 830 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 831 | dependencies: 832 | once "^1.3.0" 833 | wrappy "1" 834 | 835 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 836 | version "2.0.3" 837 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 838 | 839 | inquirer@^3.0.6: 840 | version "3.3.0" 841 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" 842 | dependencies: 843 | ansi-escapes "^3.0.0" 844 | chalk "^2.0.0" 845 | cli-cursor "^2.1.0" 846 | cli-width "^2.0.0" 847 | external-editor "^2.0.4" 848 | figures "^2.0.0" 849 | lodash "^4.3.0" 850 | mute-stream "0.0.7" 851 | run-async "^2.2.0" 852 | rx-lite "^4.0.8" 853 | rx-lite-aggregates "^4.0.8" 854 | string-width "^2.1.0" 855 | strip-ansi "^4.0.0" 856 | through "^2.3.6" 857 | 858 | is-absolute@^1.0.0: 859 | version "1.0.0" 860 | resolved "https://registry.yarnpkg.com/is-absolute/-/is-absolute-1.0.0.tgz#395e1ae84b11f26ad1795e73c17378e48a301576" 861 | dependencies: 862 | is-relative "^1.0.0" 863 | is-windows "^1.0.1" 864 | 865 | is-buffer@^1.1.5: 866 | version "1.1.6" 867 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 868 | 869 | is-extglob@^2.1.0: 870 | version "2.1.1" 871 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 872 | 873 | is-fullwidth-code-point@^2.0.0: 874 | version "2.0.0" 875 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 876 | 877 | is-glob@^3.1.0: 878 | version "3.1.0" 879 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 880 | dependencies: 881 | is-extglob "^2.1.0" 882 | 883 | is-negated-glob@^1.0.0: 884 | version "1.0.0" 885 | resolved "https://registry.yarnpkg.com/is-negated-glob/-/is-negated-glob-1.0.0.tgz#6910bca5da8c95e784b5751b976cf5a10fee36d2" 886 | 887 | is-obj@^1.0.0: 888 | version "1.0.1" 889 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 890 | 891 | is-promise@^2.1.0: 892 | version "2.1.0" 893 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 894 | 895 | is-relative@^1.0.0: 896 | version "1.0.0" 897 | resolved "https://registry.yarnpkg.com/is-relative/-/is-relative-1.0.0.tgz#a1bb6935ce8c5dba1e8b9754b9b2dcc020e2260d" 898 | dependencies: 899 | is-unc-path "^1.0.0" 900 | 901 | is-resolvable@^1.0.0: 902 | version "1.1.0" 903 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" 904 | 905 | is-typedarray@~1.0.0: 906 | version "1.0.0" 907 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 908 | 909 | is-unc-path@^1.0.0: 910 | version "1.0.0" 911 | resolved "https://registry.yarnpkg.com/is-unc-path/-/is-unc-path-1.0.0.tgz#d731e8898ed090a12c352ad2eaed5095ad322c9d" 912 | dependencies: 913 | unc-path-regex "^0.1.2" 914 | 915 | is-utf8@^0.2.1: 916 | version "0.2.1" 917 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 918 | 919 | is-valid-glob@^1.0.0: 920 | version "1.0.0" 921 | resolved "https://registry.yarnpkg.com/is-valid-glob/-/is-valid-glob-1.0.0.tgz#29bf3eff701be2d4d315dbacc39bc39fe8f601aa" 922 | 923 | is-windows@^1.0.1: 924 | version "1.0.2" 925 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 926 | 927 | is@^3.2.1: 928 | version "3.3.0" 929 | resolved "https://registry.yarnpkg.com/is/-/is-3.3.0.tgz#61cff6dd3c4193db94a3d62582072b44e5645d79" 930 | 931 | isarray@0.0.1: 932 | version "0.0.1" 933 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 934 | 935 | isarray@~1.0.0: 936 | version "1.0.0" 937 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 938 | 939 | isexe@^2.0.0: 940 | version "2.0.0" 941 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 942 | 943 | isstream@~0.1.2: 944 | version "0.1.2" 945 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 946 | 947 | js-tokens@^3.0.2: 948 | version "3.0.2" 949 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 950 | 951 | js-yaml@^3.9.1: 952 | version "3.12.1" 953 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.1.tgz#295c8632a18a23e054cf5c9d3cecafe678167600" 954 | dependencies: 955 | argparse "^1.0.7" 956 | esprima "^4.0.0" 957 | 958 | jsbn@~0.1.0: 959 | version "0.1.1" 960 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 961 | 962 | json-schema-traverse@^0.3.0: 963 | version "0.3.1" 964 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 965 | 966 | json-schema-traverse@^0.4.1: 967 | version "0.4.1" 968 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 969 | 970 | json-schema@0.2.3: 971 | version "0.2.3" 972 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 973 | 974 | json-stable-stringify-without-jsonify@^1.0.1: 975 | version "1.0.1" 976 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 977 | 978 | json-stringify-safe@~5.0.1: 979 | version "5.0.1" 980 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 981 | 982 | jsprim@^1.2.2: 983 | version "1.4.1" 984 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 985 | dependencies: 986 | assert-plus "1.0.0" 987 | extsprintf "1.3.0" 988 | json-schema "0.2.3" 989 | verror "1.10.0" 990 | 991 | kind-of@^1.1.0: 992 | version "1.1.0" 993 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-1.1.0.tgz#140a3d2d41a36d2efcfa9377b62c24f8495a5c44" 994 | 995 | lazystream@^1.0.0: 996 | version "1.0.0" 997 | resolved "https://registry.yarnpkg.com/lazystream/-/lazystream-1.0.0.tgz#f6995fe0f820392f61396be89462407bb77168e4" 998 | dependencies: 999 | readable-stream "^2.0.5" 1000 | 1001 | lead@^1.0.0: 1002 | version "1.0.0" 1003 | resolved "https://registry.yarnpkg.com/lead/-/lead-1.0.0.tgz#6f14f99a37be3a9dd784f5495690e5903466ee42" 1004 | dependencies: 1005 | flush-write-stream "^1.0.2" 1006 | 1007 | levn@^0.3.0, levn@~0.3.0: 1008 | version "0.3.0" 1009 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1010 | dependencies: 1011 | prelude-ls "~1.1.2" 1012 | type-check "~0.3.2" 1013 | 1014 | lodash@^4.17.4, lodash@^4.3.0: 1015 | version "4.17.11" 1016 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d" 1017 | 1018 | lru-cache@^4.0.1: 1019 | version "4.1.5" 1020 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" 1021 | dependencies: 1022 | pseudomap "^1.0.2" 1023 | yallist "^2.1.2" 1024 | 1025 | map-stream@0.0.7: 1026 | version "0.0.7" 1027 | resolved "https://registry.yarnpkg.com/map-stream/-/map-stream-0.0.7.tgz#8a1f07896d82b10926bd3744a2420009f88974a8" 1028 | 1029 | map-stream@~0.1.0: 1030 | version "0.1.0" 1031 | resolved "https://registry.yarnpkg.com/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" 1032 | 1033 | mime-db@~1.37.0: 1034 | version "1.37.0" 1035 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.37.0.tgz#0b6a0ce6fdbe9576e25f1f2d2fde8830dc0ad0d8" 1036 | 1037 | mime-types@^2.1.12, mime-types@~2.1.19: 1038 | version "2.1.21" 1039 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.21.tgz#28995aa1ecb770742fe6ae7e58f9181c744b3f96" 1040 | dependencies: 1041 | mime-db "~1.37.0" 1042 | 1043 | mimic-fn@^1.0.0: 1044 | version "1.2.0" 1045 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 1046 | 1047 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 1048 | version "3.0.4" 1049 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1050 | dependencies: 1051 | brace-expansion "^1.1.7" 1052 | 1053 | minimist@0.0.8: 1054 | version "0.0.8" 1055 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1056 | 1057 | mkdirp@0.5.1, "mkdirp@>=0.5 0", mkdirp@^0.5.1: 1058 | version "0.5.1" 1059 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1060 | dependencies: 1061 | minimist "0.0.8" 1062 | 1063 | mocha@^4.0.1: 1064 | version "4.1.0" 1065 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-4.1.0.tgz#7d86cfbcf35cb829e2754c32e17355ec05338794" 1066 | dependencies: 1067 | browser-stdout "1.3.0" 1068 | commander "2.11.0" 1069 | debug "3.1.0" 1070 | diff "3.3.1" 1071 | escape-string-regexp "1.0.5" 1072 | glob "7.1.2" 1073 | growl "1.10.3" 1074 | he "1.1.1" 1075 | mkdirp "0.5.1" 1076 | supports-color "4.4.0" 1077 | 1078 | ms@2.0.0: 1079 | version "2.0.0" 1080 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1081 | 1082 | ms@^2.1.1: 1083 | version "2.1.1" 1084 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" 1085 | 1086 | multimatch@^2.0.0: 1087 | version "2.1.0" 1088 | resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b" 1089 | dependencies: 1090 | array-differ "^1.0.0" 1091 | array-union "^1.0.1" 1092 | arrify "^1.0.0" 1093 | minimatch "^3.0.0" 1094 | 1095 | mute-stream@0.0.7: 1096 | version "0.0.7" 1097 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 1098 | 1099 | natural-compare@^1.4.0: 1100 | version "1.4.0" 1101 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1102 | 1103 | node.extend@^1.1.2: 1104 | version "1.1.8" 1105 | resolved "https://registry.yarnpkg.com/node.extend/-/node.extend-1.1.8.tgz#0aab3e63789f4e6d68b42bc00073ad1881243cf0" 1106 | dependencies: 1107 | has "^1.0.3" 1108 | is "^3.2.1" 1109 | 1110 | normalize-path@^2.1.1: 1111 | version "2.1.1" 1112 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1113 | dependencies: 1114 | remove-trailing-separator "^1.0.1" 1115 | 1116 | now-and-later@^2.0.0: 1117 | version "2.0.0" 1118 | resolved "https://registry.yarnpkg.com/now-and-later/-/now-and-later-2.0.0.tgz#bc61cbb456d79cb32207ce47ca05136ff2e7d6ee" 1119 | dependencies: 1120 | once "^1.3.2" 1121 | 1122 | oauth-sign@~0.9.0: 1123 | version "0.9.0" 1124 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" 1125 | 1126 | object-assign@^4.0.1: 1127 | version "4.1.1" 1128 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1129 | 1130 | object-keys@^1.0.11, object-keys@^1.0.12: 1131 | version "1.0.12" 1132 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.12.tgz#09c53855377575310cca62f55bb334abff7b3ed2" 1133 | 1134 | object.assign@^4.0.4: 1135 | version "4.1.0" 1136 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" 1137 | dependencies: 1138 | define-properties "^1.1.2" 1139 | function-bind "^1.1.1" 1140 | has-symbols "^1.0.0" 1141 | object-keys "^1.0.11" 1142 | 1143 | once@^1.3.0, once@^1.3.1, once@^1.3.2, once@^1.4.0: 1144 | version "1.4.0" 1145 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1146 | dependencies: 1147 | wrappy "1" 1148 | 1149 | onetime@^2.0.0: 1150 | version "2.0.1" 1151 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 1152 | dependencies: 1153 | mimic-fn "^1.0.0" 1154 | 1155 | optionator@^0.8.2: 1156 | version "0.8.2" 1157 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 1158 | dependencies: 1159 | deep-is "~0.1.3" 1160 | fast-levenshtein "~2.0.4" 1161 | levn "~0.3.0" 1162 | prelude-ls "~1.1.2" 1163 | type-check "~0.3.2" 1164 | wordwrap "~1.0.0" 1165 | 1166 | ordered-read-streams@^1.0.0: 1167 | version "1.0.1" 1168 | resolved "https://registry.yarnpkg.com/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz#77c0cb37c41525d64166d990ffad7ec6a0e1363e" 1169 | dependencies: 1170 | readable-stream "^2.0.1" 1171 | 1172 | os-tmpdir@~1.0.2: 1173 | version "1.0.2" 1174 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1175 | 1176 | path-dirname@^1.0.0: 1177 | version "1.0.2" 1178 | resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" 1179 | 1180 | path-is-absolute@^1.0.0: 1181 | version "1.0.1" 1182 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1183 | 1184 | path-is-inside@^1.0.2: 1185 | version "1.0.2" 1186 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 1187 | 1188 | pause-stream@0.0.11, pause-stream@^0.0.11: 1189 | version "0.0.11" 1190 | resolved "https://registry.yarnpkg.com/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" 1191 | dependencies: 1192 | through "~2.3" 1193 | 1194 | pend@~1.2.0: 1195 | version "1.2.0" 1196 | resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" 1197 | 1198 | performance-now@^2.1.0: 1199 | version "2.1.0" 1200 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 1201 | 1202 | plugin-error@^0.1.2: 1203 | version "0.1.2" 1204 | resolved "https://registry.yarnpkg.com/plugin-error/-/plugin-error-0.1.2.tgz#3b9bb3335ccf00f425e07437e19276967da47ace" 1205 | dependencies: 1206 | ansi-cyan "^0.1.1" 1207 | ansi-red "^0.1.1" 1208 | arr-diff "^1.0.1" 1209 | arr-union "^2.0.1" 1210 | extend-shallow "^1.1.2" 1211 | 1212 | pluralize@^7.0.0: 1213 | version "7.0.0" 1214 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" 1215 | 1216 | prelude-ls@~1.1.2: 1217 | version "1.1.2" 1218 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 1219 | 1220 | process-nextick-args@^2.0.0, process-nextick-args@~2.0.0: 1221 | version "2.0.0" 1222 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 1223 | 1224 | progress@^2.0.0: 1225 | version "2.0.3" 1226 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" 1227 | 1228 | pseudomap@^1.0.2: 1229 | version "1.0.2" 1230 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 1231 | 1232 | psl@^1.1.24: 1233 | version "1.1.31" 1234 | resolved "https://registry.yarnpkg.com/psl/-/psl-1.1.31.tgz#e9aa86d0101b5b105cbe93ac6b784cd547276184" 1235 | 1236 | pump@^2.0.0: 1237 | version "2.0.1" 1238 | resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909" 1239 | dependencies: 1240 | end-of-stream "^1.1.0" 1241 | once "^1.3.1" 1242 | 1243 | pumpify@^1.3.5: 1244 | version "1.5.1" 1245 | resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce" 1246 | dependencies: 1247 | duplexify "^3.6.0" 1248 | inherits "^2.0.3" 1249 | pump "^2.0.0" 1250 | 1251 | punycode@^1.4.1: 1252 | version "1.4.1" 1253 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1254 | 1255 | punycode@^2.1.0: 1256 | version "2.1.1" 1257 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 1258 | 1259 | qs@~6.5.2: 1260 | version "6.5.2" 1261 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" 1262 | 1263 | querystringify@^2.0.0: 1264 | version "2.1.0" 1265 | resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.1.0.tgz#7ded8dfbf7879dcc60d0a644ac6754b283ad17ef" 1266 | 1267 | queue@^4.2.1: 1268 | version "4.5.1" 1269 | resolved "https://registry.yarnpkg.com/queue/-/queue-4.5.1.tgz#6e4290a2d7e99dc75b34494431633fe5437b0dac" 1270 | dependencies: 1271 | inherits "~2.0.0" 1272 | 1273 | "readable-stream@>=1.0.33-1 <1.1.0-0": 1274 | version "1.0.34" 1275 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" 1276 | dependencies: 1277 | core-util-is "~1.0.0" 1278 | inherits "~2.0.1" 1279 | isarray "0.0.1" 1280 | string_decoder "~0.10.x" 1281 | 1282 | readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.4, readable-stream@^2.0.5, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.5, readable-stream@~2.3.6: 1283 | version "2.3.6" 1284 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 1285 | dependencies: 1286 | core-util-is "~1.0.0" 1287 | inherits "~2.0.3" 1288 | isarray "~1.0.0" 1289 | process-nextick-args "~2.0.0" 1290 | safe-buffer "~5.1.1" 1291 | string_decoder "~1.1.1" 1292 | util-deprecate "~1.0.1" 1293 | 1294 | regexpp@^1.0.1: 1295 | version "1.1.0" 1296 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-1.1.0.tgz#0e3516dd0b7904f413d2d4193dce4618c3a689ab" 1297 | 1298 | remove-bom-buffer@^3.0.0: 1299 | version "3.0.0" 1300 | resolved "https://registry.yarnpkg.com/remove-bom-buffer/-/remove-bom-buffer-3.0.0.tgz#c2bf1e377520d324f623892e33c10cac2c252b53" 1301 | dependencies: 1302 | is-buffer "^1.1.5" 1303 | is-utf8 "^0.2.1" 1304 | 1305 | remove-bom-stream@^1.2.0: 1306 | version "1.2.0" 1307 | resolved "https://registry.yarnpkg.com/remove-bom-stream/-/remove-bom-stream-1.2.0.tgz#05f1a593f16e42e1fb90ebf59de8e569525f9523" 1308 | dependencies: 1309 | remove-bom-buffer "^3.0.0" 1310 | safe-buffer "^5.1.0" 1311 | through2 "^2.0.3" 1312 | 1313 | remove-trailing-separator@^1.0.1: 1314 | version "1.1.0" 1315 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 1316 | 1317 | replace-ext@0.0.1: 1318 | version "0.0.1" 1319 | resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-0.0.1.tgz#29bbd92078a739f0bcce2b4ee41e837953522924" 1320 | 1321 | replace-ext@^1.0.0: 1322 | version "1.0.0" 1323 | resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb" 1324 | 1325 | request@^2.79.0, request@^2.88.0: 1326 | version "2.88.0" 1327 | resolved "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef" 1328 | dependencies: 1329 | aws-sign2 "~0.7.0" 1330 | aws4 "^1.8.0" 1331 | caseless "~0.12.0" 1332 | combined-stream "~1.0.6" 1333 | extend "~3.0.2" 1334 | forever-agent "~0.6.1" 1335 | form-data "~2.3.2" 1336 | har-validator "~5.1.0" 1337 | http-signature "~1.2.0" 1338 | is-typedarray "~1.0.0" 1339 | isstream "~0.1.2" 1340 | json-stringify-safe "~5.0.1" 1341 | mime-types "~2.1.19" 1342 | oauth-sign "~0.9.0" 1343 | performance-now "^2.1.0" 1344 | qs "~6.5.2" 1345 | safe-buffer "^5.1.2" 1346 | tough-cookie "~2.4.3" 1347 | tunnel-agent "^0.6.0" 1348 | uuid "^3.3.2" 1349 | 1350 | require-uncached@^1.0.3: 1351 | version "1.0.3" 1352 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 1353 | dependencies: 1354 | caller-path "^0.1.0" 1355 | resolve-from "^1.0.0" 1356 | 1357 | requires-port@^1.0.0: 1358 | version "1.0.0" 1359 | resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" 1360 | 1361 | resolve-from@^1.0.0: 1362 | version "1.0.1" 1363 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 1364 | 1365 | resolve-options@^1.1.0: 1366 | version "1.1.0" 1367 | resolved "https://registry.yarnpkg.com/resolve-options/-/resolve-options-1.1.0.tgz#32bb9e39c06d67338dc9378c0d6d6074566ad131" 1368 | dependencies: 1369 | value-or-function "^3.0.0" 1370 | 1371 | restore-cursor@^2.0.0: 1372 | version "2.0.0" 1373 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 1374 | dependencies: 1375 | onetime "^2.0.0" 1376 | signal-exit "^3.0.2" 1377 | 1378 | rimraf@2, rimraf@~2.6.2: 1379 | version "2.6.3" 1380 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" 1381 | dependencies: 1382 | glob "^7.1.3" 1383 | 1384 | run-async@^2.2.0: 1385 | version "2.3.0" 1386 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 1387 | dependencies: 1388 | is-promise "^2.1.0" 1389 | 1390 | rx-lite-aggregates@^4.0.8: 1391 | version "4.0.8" 1392 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 1393 | dependencies: 1394 | rx-lite "*" 1395 | 1396 | rx-lite@*, rx-lite@^4.0.8: 1397 | version "4.0.8" 1398 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 1399 | 1400 | safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1401 | version "5.1.2" 1402 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 1403 | 1404 | "safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: 1405 | version "2.1.2" 1406 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 1407 | 1408 | semver@^5.3.0, semver@^5.4.1: 1409 | version "5.6.0" 1410 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.6.0.tgz#7e74256fbaa49c75aa7c7a205cc22799cac80004" 1411 | 1412 | shebang-command@^1.2.0: 1413 | version "1.2.0" 1414 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 1415 | dependencies: 1416 | shebang-regex "^1.0.0" 1417 | 1418 | shebang-regex@^1.0.0: 1419 | version "1.0.0" 1420 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 1421 | 1422 | signal-exit@^3.0.2: 1423 | version "3.0.2" 1424 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1425 | 1426 | slice-ansi@1.0.0: 1427 | version "1.0.0" 1428 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" 1429 | dependencies: 1430 | is-fullwidth-code-point "^2.0.0" 1431 | 1432 | source-map-support@^0.5.0: 1433 | version "0.5.10" 1434 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.10.tgz#2214080bc9d51832511ee2bab96e3c2f9353120c" 1435 | dependencies: 1436 | buffer-from "^1.0.0" 1437 | source-map "^0.6.0" 1438 | 1439 | source-map@^0.6.0: 1440 | version "0.6.1" 1441 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 1442 | 1443 | split@0.3: 1444 | version "0.3.3" 1445 | resolved "https://registry.yarnpkg.com/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" 1446 | dependencies: 1447 | through "2" 1448 | 1449 | split@^1.0.1: 1450 | version "1.0.1" 1451 | resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9" 1452 | dependencies: 1453 | through "2" 1454 | 1455 | sprintf-js@~1.0.2: 1456 | version "1.0.3" 1457 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 1458 | 1459 | sshpk@^1.7.0: 1460 | version "1.16.1" 1461 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" 1462 | dependencies: 1463 | asn1 "~0.2.3" 1464 | assert-plus "^1.0.0" 1465 | bcrypt-pbkdf "^1.0.0" 1466 | dashdash "^1.12.0" 1467 | ecc-jsbn "~0.1.1" 1468 | getpass "^0.1.1" 1469 | jsbn "~0.1.0" 1470 | safer-buffer "^2.0.2" 1471 | tweetnacl "~0.14.0" 1472 | 1473 | stat-mode@^0.2.0: 1474 | version "0.2.2" 1475 | resolved "https://registry.yarnpkg.com/stat-mode/-/stat-mode-0.2.2.tgz#e6c80b623123d7d80cf132ce538f346289072502" 1476 | 1477 | stream-combiner@^0.2.2: 1478 | version "0.2.2" 1479 | resolved "https://registry.yarnpkg.com/stream-combiner/-/stream-combiner-0.2.2.tgz#aec8cbac177b56b6f4fa479ced8c1912cee52858" 1480 | dependencies: 1481 | duplexer "~0.1.1" 1482 | through "~2.3.4" 1483 | 1484 | stream-combiner@~0.0.4: 1485 | version "0.0.4" 1486 | resolved "https://registry.yarnpkg.com/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" 1487 | dependencies: 1488 | duplexer "~0.1.1" 1489 | 1490 | stream-shift@^1.0.0: 1491 | version "1.0.0" 1492 | resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" 1493 | 1494 | streamfilter@^1.0.5: 1495 | version "1.0.7" 1496 | resolved "https://registry.yarnpkg.com/streamfilter/-/streamfilter-1.0.7.tgz#ae3e64522aa5a35c061fd17f67620c7653c643c9" 1497 | dependencies: 1498 | readable-stream "^2.0.2" 1499 | 1500 | streamifier@~0.1.1: 1501 | version "0.1.1" 1502 | resolved "https://registry.yarnpkg.com/streamifier/-/streamifier-0.1.1.tgz#97e98d8fa4d105d62a2691d1dc07e820db8dfc4f" 1503 | 1504 | string-width@^2.1.0, string-width@^2.1.1: 1505 | version "2.1.1" 1506 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 1507 | dependencies: 1508 | is-fullwidth-code-point "^2.0.0" 1509 | strip-ansi "^4.0.0" 1510 | 1511 | string_decoder@~0.10.x: 1512 | version "0.10.31" 1513 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 1514 | 1515 | string_decoder@~1.1.1: 1516 | version "1.1.1" 1517 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 1518 | dependencies: 1519 | safe-buffer "~5.1.0" 1520 | 1521 | strip-ansi@^3.0.0: 1522 | version "3.0.1" 1523 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1524 | dependencies: 1525 | ansi-regex "^2.0.0" 1526 | 1527 | strip-ansi@^4.0.0: 1528 | version "4.0.0" 1529 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 1530 | dependencies: 1531 | ansi-regex "^3.0.0" 1532 | 1533 | strip-json-comments@~2.0.1: 1534 | version "2.0.1" 1535 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1536 | 1537 | supports-color@4.4.0: 1538 | version "4.4.0" 1539 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.4.0.tgz#883f7ddabc165142b2a61427f3352ded195d1a3e" 1540 | dependencies: 1541 | has-flag "^2.0.0" 1542 | 1543 | supports-color@^2.0.0: 1544 | version "2.0.0" 1545 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1546 | 1547 | supports-color@^5.3.0: 1548 | version "5.5.0" 1549 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 1550 | dependencies: 1551 | has-flag "^3.0.0" 1552 | 1553 | table@4.0.2: 1554 | version "4.0.2" 1555 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36" 1556 | dependencies: 1557 | ajv "^5.2.3" 1558 | ajv-keywords "^2.1.0" 1559 | chalk "^2.1.0" 1560 | lodash "^4.17.4" 1561 | slice-ansi "1.0.0" 1562 | string-width "^2.1.1" 1563 | 1564 | tar@^2.2.1: 1565 | version "2.2.1" 1566 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 1567 | dependencies: 1568 | block-stream "*" 1569 | fstream "^1.0.2" 1570 | inherits "2" 1571 | 1572 | text-table@~0.2.0: 1573 | version "0.2.0" 1574 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 1575 | 1576 | through2-filter@^3.0.0: 1577 | version "3.0.0" 1578 | resolved "https://registry.yarnpkg.com/through2-filter/-/through2-filter-3.0.0.tgz#700e786df2367c2c88cd8aa5be4cf9c1e7831254" 1579 | dependencies: 1580 | through2 "~2.0.0" 1581 | xtend "~4.0.0" 1582 | 1583 | through2@^2.0.0, through2@^2.0.3, through2@~2.0.0, through2@~2.0.3: 1584 | version "2.0.5" 1585 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" 1586 | dependencies: 1587 | readable-stream "~2.3.6" 1588 | xtend "~4.0.1" 1589 | 1590 | through2@~0.6.5: 1591 | version "0.6.5" 1592 | resolved "https://registry.yarnpkg.com/through2/-/through2-0.6.5.tgz#41ab9c67b29d57209071410e1d7a7a968cd3ad48" 1593 | dependencies: 1594 | readable-stream ">=1.0.33-1 <1.1.0-0" 1595 | xtend ">=4.0.0 <4.1.0-0" 1596 | 1597 | through@2, through@^2.3.6, through@^2.3.8, through@~2.3, through@~2.3.1, through@~2.3.4: 1598 | version "2.3.8" 1599 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 1600 | 1601 | tmp@^0.0.33: 1602 | version "0.0.33" 1603 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 1604 | dependencies: 1605 | os-tmpdir "~1.0.2" 1606 | 1607 | to-absolute-glob@^2.0.0: 1608 | version "2.0.2" 1609 | resolved "https://registry.yarnpkg.com/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz#1865f43d9e74b0822db9f145b78cff7d0f7c849b" 1610 | dependencies: 1611 | is-absolute "^1.0.0" 1612 | is-negated-glob "^1.0.0" 1613 | 1614 | to-through@^2.0.0: 1615 | version "2.0.0" 1616 | resolved "https://registry.yarnpkg.com/to-through/-/to-through-2.0.0.tgz#fc92adaba072647bc0b67d6b03664aa195093af6" 1617 | dependencies: 1618 | through2 "^2.0.3" 1619 | 1620 | tough-cookie@~2.4.3: 1621 | version "2.4.3" 1622 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781" 1623 | dependencies: 1624 | psl "^1.1.24" 1625 | punycode "^1.4.1" 1626 | 1627 | tunnel-agent@^0.6.0: 1628 | version "0.6.0" 1629 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 1630 | dependencies: 1631 | safe-buffer "^5.0.1" 1632 | 1633 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 1634 | version "0.14.5" 1635 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 1636 | 1637 | type-check@~0.3.2: 1638 | version "0.3.2" 1639 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 1640 | dependencies: 1641 | prelude-ls "~1.1.2" 1642 | 1643 | typedarray@^0.0.6: 1644 | version "0.0.6" 1645 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 1646 | 1647 | typescript@^3.1.4: 1648 | version "3.2.4" 1649 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.2.4.tgz#c585cb952912263d915b462726ce244ba510ef3d" 1650 | 1651 | unc-path-regex@^0.1.2: 1652 | version "0.1.2" 1653 | resolved "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa" 1654 | 1655 | unique-stream@^2.0.2: 1656 | version "2.3.1" 1657 | resolved "https://registry.yarnpkg.com/unique-stream/-/unique-stream-2.3.1.tgz#c65d110e9a4adf9a6c5948b28053d9a8d04cbeac" 1658 | dependencies: 1659 | json-stable-stringify-without-jsonify "^1.0.1" 1660 | through2-filter "^3.0.0" 1661 | 1662 | uri-js@^4.2.2: 1663 | version "4.2.2" 1664 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" 1665 | dependencies: 1666 | punycode "^2.1.0" 1667 | 1668 | url-parse@^1.4.3: 1669 | version "1.4.4" 1670 | resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.4.4.tgz#cac1556e95faa0303691fec5cf9d5a1bc34648f8" 1671 | dependencies: 1672 | querystringify "^2.0.0" 1673 | requires-port "^1.0.0" 1674 | 1675 | util-deprecate@~1.0.1: 1676 | version "1.0.2" 1677 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1678 | 1679 | uuid@^3.3.2: 1680 | version "3.3.2" 1681 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131" 1682 | 1683 | value-or-function@^3.0.0: 1684 | version "3.0.0" 1685 | resolved "https://registry.yarnpkg.com/value-or-function/-/value-or-function-3.0.0.tgz#1c243a50b595c1be54a754bfece8563b9ff8d813" 1686 | 1687 | verror@1.10.0: 1688 | version "1.10.0" 1689 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 1690 | dependencies: 1691 | assert-plus "^1.0.0" 1692 | core-util-is "1.0.2" 1693 | extsprintf "^1.2.0" 1694 | 1695 | vinyl-fs@^3.0.3: 1696 | version "3.0.3" 1697 | resolved "https://registry.yarnpkg.com/vinyl-fs/-/vinyl-fs-3.0.3.tgz#c85849405f67428feabbbd5c5dbdd64f47d31bc7" 1698 | dependencies: 1699 | fs-mkdirp-stream "^1.0.0" 1700 | glob-stream "^6.1.0" 1701 | graceful-fs "^4.0.0" 1702 | is-valid-glob "^1.0.0" 1703 | lazystream "^1.0.0" 1704 | lead "^1.0.0" 1705 | object.assign "^4.0.4" 1706 | pumpify "^1.3.5" 1707 | readable-stream "^2.3.3" 1708 | remove-bom-buffer "^3.0.0" 1709 | remove-bom-stream "^1.2.0" 1710 | resolve-options "^1.1.0" 1711 | through2 "^2.0.0" 1712 | to-through "^2.0.0" 1713 | value-or-function "^3.0.0" 1714 | vinyl "^2.0.0" 1715 | vinyl-sourcemap "^1.1.0" 1716 | 1717 | vinyl-source-stream@^1.1.0: 1718 | version "1.1.2" 1719 | resolved "https://registry.yarnpkg.com/vinyl-source-stream/-/vinyl-source-stream-1.1.2.tgz#62b53a135610a896e98ca96bee3a87f008a8e780" 1720 | dependencies: 1721 | through2 "^2.0.3" 1722 | vinyl "^0.4.3" 1723 | 1724 | vinyl-sourcemap@^1.1.0: 1725 | version "1.1.0" 1726 | resolved "https://registry.yarnpkg.com/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz#92a800593a38703a8cdb11d8b300ad4be63b3e16" 1727 | dependencies: 1728 | append-buffer "^1.0.2" 1729 | convert-source-map "^1.5.0" 1730 | graceful-fs "^4.1.6" 1731 | normalize-path "^2.1.1" 1732 | now-and-later "^2.0.0" 1733 | remove-bom-buffer "^3.0.0" 1734 | vinyl "^2.0.0" 1735 | 1736 | vinyl@^0.4.3, vinyl@~0.4.6: 1737 | version "0.4.6" 1738 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-0.4.6.tgz#2f356c87a550a255461f36bbeb2a5ba8bf784847" 1739 | dependencies: 1740 | clone "^0.2.0" 1741 | clone-stats "^0.0.1" 1742 | 1743 | vinyl@^1.2.0: 1744 | version "1.2.0" 1745 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-1.2.0.tgz#5c88036cf565e5df05558bfc911f8656df218884" 1746 | dependencies: 1747 | clone "^1.0.0" 1748 | clone-stats "^0.0.1" 1749 | replace-ext "0.0.1" 1750 | 1751 | vinyl@^2.0.0, vinyl@^2.0.1, vinyl@^2.0.2: 1752 | version "2.2.0" 1753 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-2.2.0.tgz#d85b07da96e458d25b2ffe19fece9f2caa13ed86" 1754 | dependencies: 1755 | clone "^2.1.1" 1756 | clone-buffer "^1.0.0" 1757 | clone-stats "^1.0.0" 1758 | cloneable-readable "^1.0.0" 1759 | remove-trailing-separator "^1.0.1" 1760 | replace-ext "^1.0.0" 1761 | 1762 | vscode@^1.1.25: 1763 | version "1.1.28" 1764 | resolved "https://registry.yarnpkg.com/vscode/-/vscode-1.1.28.tgz#642acc4a84de5ea0764e7419ae84a383b0c74062" 1765 | dependencies: 1766 | glob "^7.1.2" 1767 | gulp-chmod "^2.0.0" 1768 | gulp-filter "^5.0.1" 1769 | gulp-gunzip "1.0.0" 1770 | gulp-remote-src-vscode "^0.5.1" 1771 | gulp-untar "^0.0.7" 1772 | gulp-vinyl-zip "^2.1.2" 1773 | mocha "^4.0.1" 1774 | request "^2.88.0" 1775 | semver "^5.4.1" 1776 | source-map-support "^0.5.0" 1777 | url-parse "^1.4.3" 1778 | vinyl-fs "^3.0.3" 1779 | vinyl-source-stream "^1.1.0" 1780 | 1781 | which@^1.2.9: 1782 | version "1.3.1" 1783 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 1784 | dependencies: 1785 | isexe "^2.0.0" 1786 | 1787 | wordwrap@~1.0.0: 1788 | version "1.0.0" 1789 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 1790 | 1791 | wrappy@1: 1792 | version "1.0.2" 1793 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1794 | 1795 | write@^0.2.1: 1796 | version "0.2.1" 1797 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 1798 | dependencies: 1799 | mkdirp "^0.5.1" 1800 | 1801 | "xtend@>=4.0.0 <4.1.0-0", xtend@~4.0.0, xtend@~4.0.1: 1802 | version "4.0.1" 1803 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 1804 | 1805 | yallist@^2.1.2: 1806 | version "2.1.2" 1807 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 1808 | 1809 | yauzl@^2.2.1: 1810 | version "2.10.0" 1811 | resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz#c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9" 1812 | dependencies: 1813 | buffer-crc32 "~0.2.3" 1814 | fd-slicer "~1.1.0" 1815 | 1816 | yazl@^2.2.1: 1817 | version "2.5.1" 1818 | resolved "https://registry.yarnpkg.com/yazl/-/yazl-2.5.1.tgz#a3d65d3dd659a5b0937850e8609f22fffa2b5c35" 1819 | dependencies: 1820 | buffer-crc32 "~0.2.3" 1821 | --------------------------------------------------------------------------------