├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── images ├── example.gif └── icon.png ├── package.json ├── src ├── TypescriptImport.ts ├── extension.ts ├── isSupportedLanguage.ts ├── options.ts ├── parseImportNodes.ts ├── processImports.ts ├── sortImports.ts ├── sortInsideEditor.ts ├── sortOnSave.ts └── writeImports.ts ├── test ├── extension.test.ts └── index.ts ├── tsconfig.json ├── vsc-extension-quickstart.md └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | out 3 | node_modules 4 | npm-debug.log -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- 1 | // A launch configuration that compiles the extension and then opens it inside a new window 2 | { 3 | "version": "0.1.0", 4 | "configurations": [ 5 | { 6 | "name": "Launch Extension", 7 | "type": "extensionHost", 8 | "request": "launch", 9 | "runtimeExecutable": "${execPath}", 10 | "args": ["--extensionDevelopmentPath=${workspaceRoot}" ], 11 | "stopOnEntry": false, 12 | "sourceMaps": true, 13 | "outFiles": [ "${workspaceRoot}/out/src/**/*.js" ], 14 | "preLaunchTask": "npm" 15 | }, 16 | { 17 | "name": "Launch Tests", 18 | "type": "extensionHost", 19 | "request": "launch", 20 | "runtimeExecutable": "${execPath}", 21 | "args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/out/test" ], 22 | "stopOnEntry": false, 23 | "sourceMaps": true, 24 | "outFiles": [ "${workspaceRoot}/out/test/**/*.js" ], 25 | "preLaunchTask": "npm" 26 | } 27 | ] 28 | } 29 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | // Place your settings in this file to overwrite default and user settings. 2 | { 3 | "files.exclude": { 4 | "out": false // set this to true to hide the "out" folder with the compiled JS files 5 | }, 6 | "search.exclude": { 7 | "out": true // set this to false to include "out" folder in search results 8 | } 9 | } -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- 1 | // Available variables which can be used inside of strings. 2 | // ${workspaceRoot}: the root folder of the team 3 | // ${file}: the current opened file 4 | // ${fileBasename}: the current opened file's basename 5 | // ${fileDirname}: the current opened file's dirname 6 | // ${fileExtname}: the current opened file's extension 7 | // ${cwd}: the current working directory of the spawned process 8 | 9 | // A task runner that calls a custom npm script that compiles the extension. 10 | { 11 | "version": "0.1.0", 12 | 13 | // we want to run npm 14 | "command": "npm", 15 | 16 | // the command is a shell script 17 | "isShellCommand": true, 18 | 19 | // show the output window only if unrecognized errors occur. 20 | "showOutput": "silent", 21 | 22 | // we run the custom script "compile" as defined in package.json 23 | "args": ["run", "compile", "--loglevel", "silent"], 24 | 25 | // The tsc compiler is started in watching mode 26 | "isWatching": true, 27 | 28 | // use the standard tsc in watch mode problem matcher to find compile problems in the output. 29 | "problemMatcher": "$tsc-watch" 30 | } -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- 1 | .vscode/** 2 | .vscode-test/** 3 | out/test/** 4 | test/** 5 | src/** 6 | **/*.map 7 | .gitignore 8 | tsconfig.json 9 | vsc-extension-quickstart.md 10 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | ## [1.4.1] 4 | - Fix previous change by adding contribution points to package.json 5 | 6 | ## [1.4.0] 7 | - Added the ability to sort ES6-style imports in JavaScript [rickyp-uber] 8 | 9 | ## [1.3.0] 10 | - Added configuration option to omit the semicolon at the end of the import clause. 11 | 12 | ## [1.2.1] 13 | - Fix bug with package paths that contained an `@` symbol 14 | - Fix bug that would add a newline to the beginning of any file without import statements 15 | 16 | ## [1.2.0] 17 | - Added the ability to configure how sorting by import path is done. 18 | - Fixed a bug where the extension would process non-Typescript files when saving 19 | 20 | ## [1.1.0] 21 | - Added the option to sort imports whenever you save, controlled by the `typescript.extension.sortImports.sortOnSave` setting (`false` by default). 22 | 23 | ## [1.0.0] 24 | - Initial release -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2017 Michael Loughry 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## ⚠ This package is no longer maintained ⚠ 2 | With the release of [Typescript 2.8](https://devblogs.microsoft.com/typescript/announcing-typescript-2-8-2/#organize-imports) over a year ago, the ability to organize imports comes bundled with Typescript, in a better implementation than this one made for a hack week. As such, I have no further plans to maintain this project. 3 | 4 | If for whatever reason you would like to take ownership of this repository, please let me know. 5 | 6 | # Sort Typescript imports 7 | 8 | Sort import statements in Typescript code 9 | 10 | ## Features 11 | 12 | This configurable extension allows you to sort all the imports in a *.ts or *.tsx file. 13 | 14 | ![Sorting imports](images/example.gif) 15 | 16 | > Tip: You can access this functionality either from the context menu, or simply pressing 'F10' 17 | 18 | ## Extension Settings 19 | 20 | * `typescript.extension.sortImports.sortMethod`: The method to use for sorting the imports. 21 | * `'importName'`(default) sorts by the type and name of the import. Namespace imports are first, followed by default imports, named imports, and unnamed imports. 22 | * `'path'` sorts by the import path, sorting relative-path imports above package imports 23 | * `typescript.extension.sortImports.pathSortOrder`: An array describing the order in which imports should be sorted by paths. Only applicable if `sortMethod` is set to `path`. 24 | * Default: `["relativeDownLevel", "relativeUpLevel", "package"]` 25 | * `package` - Any import path that does not begin with `.` 26 | * `relativeUpLevel` - Any import path that begins with `../` 27 | * `relativeDownLevel` - Any import path that begins with `./` 28 | * `typescript.extension.sortImports.maxNamedImportsInSingleLine`: The number of named imports to allow on a single line. If a single import has more than this number, they will be broken up onto separate lines. 29 | * `typescript.extension.sortImports.quoteStyle`: The type of quotation mark to use. `single`(default) or `double`. 30 | * `typescript.extension.sortImports.sortOnSave`: If set to `true`, imports will be sorted whenever you save a file. Default: `false` 31 | * `typescript.extension.sortImports.omitSemicolon`: If set to `true`, the trailing semicolon will be omitted. Default: `false` 32 | * `typescript.extension.sortImports.enableJavascript`: If set to `true`, the extension will attempt to sort ES6-style imports in Javascript files. Default: `false` 33 | 34 | ## Known Issues 35 | 36 | * This extension does not currently sort comments within the import block along with the import statements 37 | 38 | ## Future roadmap 39 | - Handle distinct blocks of imports separated by a blank line. 40 | - Handle comments within import blocks 41 | - Read settings from existing tslint configuration. 42 | 43 | ## Release Notes 44 | 45 | ## 1.3.0 46 | - Added configuration option to omit the semicolon at the end of the import clause. 47 | 48 | ### 1.2.0 49 | - Added the ability to configure how sorting by import path is done. 50 | 51 | ### 1.1.0 52 | - Added the option to sort imports whenever you save, controlled by the `typescript.extension.sortImports.sortOnSave` setting (`false` by default). 53 | 54 | ### 1.0.0 55 | 56 | Initial release 57 | -------------------------------------------------------------------------------- /images/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLoughry/sort-typescript-imports/0bc1919f3b05d3a11d4200b85158e142c307c26e/images/example.gif -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLoughry/sort-typescript-imports/0bc1919f3b05d3a11d4200b85158e142c307c26e/images/icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "sort-typescript-imports", 3 | "displayName": "Sort Typescript Imports", 4 | "description": "Sorts import statements in Typescript code", 5 | "version": "1.4.1", 6 | "publisher": "miclo", 7 | "license": "MIT", 8 | "icon": "images/icon.png", 9 | "bugs": { 10 | "url": "https://github.com/MLoughry/sort-typescript-imports/issues" 11 | }, 12 | "homepage": "https://github.com/MLoughry/sort-typescript-imports/blob/master/README.md", 13 | "repository": { 14 | "type": "git", 15 | "url": "https://github.com/MLoughry/sort-typescript-imports.git" 16 | }, 17 | "engines": { 18 | "vscode": "^1.10.0" 19 | }, 20 | "categories": [ 21 | "Formatters" 22 | ], 23 | "galleryBanner": { 24 | "color": "#f0efe7", 25 | "theme": "light" 26 | }, 27 | "keywords": [ 28 | "Typescript", 29 | "imports", 30 | "sort", 31 | "import statements", 32 | "import clauses" 33 | ], 34 | "activationEvents": [ 35 | "onLanguage:typescript", 36 | "onLanguage:typescriptreact", 37 | "onCommand:extension.sortTypescriptImports" 38 | ], 39 | "main": "./out/src/extension", 40 | "contributes": { 41 | "commands": [ 42 | { 43 | "command": "extension.sortTypescriptImports", 44 | "title": "Sort imports" 45 | } 46 | ], 47 | "configuration": { 48 | "type": "object", 49 | "title": "Sort imports configuration", 50 | "properties": { 51 | "typescript.extension.sortImports.sortMethod": { 52 | "type": "string", 53 | "enum": [ 54 | "path", 55 | "importName" 56 | ], 57 | "description": "Whether to sort by the name of the import or the source path of the import", 58 | "default": "importName" 59 | }, 60 | "typescript.extension.sortImports.pathSortOrder": { 61 | "type": "array", 62 | "items": { 63 | "type": "string", 64 | "enum": [ 65 | "package", 66 | "relativeUpLevel", 67 | "relativeDownLevel" 68 | ] 69 | }, 70 | "uniqueItems": true, 71 | "minItems": 3, 72 | "maxItems": 3, 73 | "description": "When `sortMethod` is set to `path`, this controls the order to sort imports between package-level and path-relative imports. 'relativeUpLevel' describes relative paths that begin with '../', while ;relativeDownLevel' describes relative paths that begin with './'", 74 | "default": [ 75 | "relativeDownLevel", 76 | "relativeUpLevel", 77 | "package" 78 | ] 79 | }, 80 | "typescript.extension.sortImports.maxNamedImportsInSingleLine": { 81 | "type": "number", 82 | "description": "The maximum number of named imports to include in a single line", 83 | "default": 3 84 | }, 85 | "typescript.extension.sortImports.quoteStyle": { 86 | "type": "string", 87 | "description": "The type of quote to use for the file or package paths", 88 | "enum": [ 89 | "single", 90 | "double" 91 | ], 92 | "default": "single" 93 | }, 94 | "typescript.extension.sortImports.sortOnSave": { 95 | "type": "boolean", 96 | "description": "Whether to sort all imports whenever saving a Typescript file", 97 | "default": false 98 | }, 99 | "typescript.extension.sortImports.omitSemicolon": { 100 | "type": "boolean", 101 | "description": "Whether to omit the semicolon at the end of the line", 102 | "default": false 103 | }, 104 | "typescript.extension.sortImports.enableJavascript": { 105 | "type": "boolean", 106 | "description": "Whether to attempt to sort ES6-style imports in Javascript", 107 | "default": false 108 | } 109 | } 110 | }, 111 | "menus": { 112 | "editor/context": [ 113 | { 114 | "when": "resourceLangId == typescript && !inDebugMode", 115 | "command": "extension.sortTypescriptImports", 116 | "group": "1_modification" 117 | }, 118 | { 119 | "when": "resourceLangId == typescriptreact && !inDebugMode", 120 | "command": "extension.sortTypescriptImports", 121 | "group": "1_modification" 122 | } 123 | ], 124 | "editor/title/context": [ 125 | { 126 | "when": "resourceLangId == typescript && !inDebugMode", 127 | "command": "extension.sortTypescriptImports", 128 | "group": "1_modification" 129 | }, 130 | { 131 | "when": "resourceLangId == typescriptreact && !inDebugMode", 132 | "command": "extension.sortTypescriptImports", 133 | "group": "1_modification" 134 | } 135 | ] 136 | }, 137 | "keybindings": [ 138 | { 139 | "when": "resourceLangId == typescript && editorTextFocus && !inDebugMode", 140 | "command": "extension.sortTypescriptImports", 141 | "key": "f10" 142 | }, 143 | { 144 | "when": "resourceLangId == typescriptreact && editorTextFocus && !inDebugMode", 145 | "command": "extension.sortTypescriptImports", 146 | "key": "f10" 147 | } 148 | ] 149 | }, 150 | "scripts": { 151 | "vscode:prepublish": "tsc -p ./", 152 | "compile": "tsc -watch -p ./", 153 | "postinstall": "node ./node_modules/vscode/bin/install", 154 | "test": "node ./node_modules/vscode/bin/test" 155 | }, 156 | "devDependencies": { 157 | "typescript": "^2.0.3", 158 | "vscode": "^1.0.0", 159 | "mocha": "^2.3.3", 160 | "@types/node": "^6.0.40", 161 | "@types/mocha": "^2.2.32" 162 | } 163 | } 164 | -------------------------------------------------------------------------------- /src/TypescriptImport.ts: -------------------------------------------------------------------------------- 1 | import * as vscode from 'vscode'; 2 | 3 | export interface NamedImport { 4 | importName: string; 5 | alias?: string; 6 | } 7 | 8 | export type DestructedImport = NamedImport; 9 | 10 | export interface TypescriptImport { 11 | path: string; 12 | range: vscode.Range; 13 | default?: string; 14 | namedImports?: DestructedImport[]; 15 | namespace?: string; 16 | } -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | // The module 'vscode' contains the VS Code extensibility API 3 | // Import the module and reference it with the alias vscode in your code below 4 | import * as vscode from 'vscode'; 5 | import sortInsideEditor from './sortInsideEditor'; 6 | import sortOnSave from './sortOnSave'; 7 | import { shouldSortOnSave, shouldEnableJavascript } from './options'; 8 | 9 | let sortOnSaveDisposer: vscode.Disposable; 10 | 11 | // this method is called when your extension is activated 12 | // your extension is activated the very first time the command is executed 13 | export function activate(context: vscode.ExtensionContext) { 14 | 15 | // The command has been defined in the package.json file 16 | // Now provide the implementation of the command with registerCommand 17 | // The commandId parameter must match the command field in package.json 18 | let sortOnCommandDisposer = vscode.commands.registerCommand('extension.sortTypescriptImports', () => { 19 | // The code you place here will be executed every time your command is executed 20 | 21 | if (shouldEnableJavascript() && isFileJavascript() || 22 | isFileTypescript()) { 23 | sortInsideEditor(); 24 | } 25 | }); 26 | 27 | let configurationWatcher = vscode.workspace.onDidChangeConfiguration(configure); 28 | configure(); 29 | 30 | context.subscriptions.push( 31 | sortOnCommandDisposer, 32 | configurationWatcher); 33 | } 34 | 35 | function isFileJavascript() { 36 | return ( 37 | vscode.window.activeTextEditor.document.languageId === 'javascript' || 38 | vscode.window.activeTextEditor.document.languageId === 'javascriptreact' 39 | ); 40 | } 41 | 42 | function isFileTypescript() { 43 | return ( 44 | vscode.window.activeTextEditor.document.languageId === 'typescript' || 45 | vscode.window.activeTextEditor.document.languageId === 'typescriptreact' 46 | ); 47 | } 48 | 49 | function configure() { 50 | if (shouldSortOnSave()) { 51 | enableFileWatcher(); 52 | } else if (!shouldSortOnSave()) { 53 | disableFileWatcher(); 54 | } 55 | } 56 | 57 | function enableFileWatcher() { 58 | if (!sortOnSaveDisposer) { 59 | sortOnSaveDisposer = vscode.workspace.onWillSaveTextDocument(sortOnSave); 60 | } 61 | } 62 | 63 | function disableFileWatcher() { 64 | if (sortOnSaveDisposer) { 65 | sortOnSaveDisposer.dispose(); 66 | sortOnSaveDisposer = undefined; 67 | } 68 | } 69 | 70 | // this method is called when your extension is deactivated 71 | export function deactivate() { 72 | disableFileWatcher(); 73 | } 74 | -------------------------------------------------------------------------------- /src/isSupportedLanguage.ts: -------------------------------------------------------------------------------- 1 | 2 | export default function isSupportedLanguage(languageId: string) { 3 | return languageId === 'typescript' 4 | || languageId === 'typescriptreact'; 5 | } -------------------------------------------------------------------------------- /src/options.ts: -------------------------------------------------------------------------------- 1 | import * as vscode from 'vscode'; 2 | 3 | export function getTabString(editor: vscode.TextEditor = vscode.window.activeTextEditor) { 4 | if (editor.options.insertSpaces) { 5 | return new Array(editor.options.tabSize as number + 1).join(' '); 6 | } else { 7 | return '\t'; 8 | } 9 | } 10 | 11 | export function getMaxNamedImportsPerSingleLine() { 12 | return getExtensionConfig().get('maxNamedImportsInSingleLine'); 13 | } 14 | 15 | export function getSortOption() { 16 | return getExtensionConfig().get('sortMethod'); 17 | } 18 | 19 | export function getQuoteToken() { 20 | switch (getExtensionConfig().get('quoteStyle')) { 21 | case 'double': 22 | return '"'; 23 | case 'single': 24 | default: 25 | return '\''; 26 | } 27 | } 28 | 29 | export function shouldEnableJavascript(): boolean { 30 | return getExtensionConfig().get('enableJavascript') as boolean; 31 | } 32 | 33 | export function shouldSortOnSave(): boolean { 34 | return getExtensionConfig().get('sortOnSave') as boolean; 35 | } 36 | 37 | export function getPathSortOrdering(): string[] { 38 | return getExtensionConfig().get('pathSortOrder') as string[]; 39 | } 40 | 41 | export function getOmitSemicolon(): boolean { 42 | return getExtensionConfig().get('omitSemicolon') as boolean; 43 | } 44 | 45 | function getExtensionConfig() { 46 | return vscode.workspace.getConfiguration('typescript.extension.sortImports'); 47 | } 48 | -------------------------------------------------------------------------------- /src/parseImportNodes.ts: -------------------------------------------------------------------------------- 1 | import { DestructedImport, TypescriptImport } from './TypescriptImport'; 2 | import * as vscode from 'vscode'; 3 | 4 | const name = `((?!\\d)(?:(?!\\s)[$\\w\\u0080-\\uFFFF]|\\\\u[\\da-fA-F]{4}|\\\\u\\{[\\da-fA-F]+\\})+)`; 5 | const ws = `[\\s\\n\\r]`; 6 | 7 | const namespaceToken = `\\*\\s+as\\s+(${name})`; 8 | const defaultImportToken = name; 9 | const destructingImportToken = `(${name})(\\s+as\\s+(${name}))?`; 10 | const destructingImport = `{(${ws}*${destructingImportToken}(,${ws}*${destructingImportToken})*${ws}*)}`; 11 | const defaultAndDestructingImport = `${defaultImportToken}${ws}*,${ws}*${destructingImport}`; 12 | const combinedImportTypes = `(${namespaceToken}|${defaultImportToken}|${destructingImport}|${defaultAndDestructingImport})`; 13 | const importRegexString = `^import\\s+(${combinedImportTypes}\\s+from\\s+)?['"]([@\\w\\\\/\.-]+)['"];?\\r?\\n?`; 14 | 15 | // Group 5 || Group 18 - default import 16 | // Group 3 - namespace import 17 | // Group 6 || Group 19 - destructing import group; requires further tokenizing 18 | // Group 31 - file path or package 19 | const importRegex = new RegExp(importRegexString, 'gm'); 20 | 21 | // Group 1 - importName 22 | // Group 4 - alias 23 | const destructingImportTokenRegex = new RegExp(destructingImportToken); 24 | 25 | export default function parseImportNodes(document: vscode.TextDocument) { 26 | let source = document.getText(); 27 | importRegex.lastIndex = 0; 28 | let imports: TypescriptImport[] = []; 29 | 30 | let match; 31 | while (match = importRegex.exec(source)) { 32 | imports.push({ 33 | path: match[31], 34 | default: match[5] || match[18], 35 | namedImports: parseDestructiveImports(match[6] || match[19]), 36 | namespace: match[3], 37 | range: new vscode.Range( 38 | document.positionAt(match.index), 39 | document.positionAt(importRegex.lastIndex) 40 | ), 41 | }); 42 | } 43 | 44 | return imports; 45 | } 46 | 47 | function parseDestructiveImports(destructiveImports: string): DestructedImport[] { 48 | if (!destructiveImports) { 49 | return null; 50 | } 51 | 52 | return destructiveImports 53 | .split(',') 54 | .map(destructiveImport => { 55 | let match = destructingImportTokenRegex.exec(destructiveImport); 56 | return { 57 | importName: match[1], 58 | alias: match[4], 59 | }; 60 | }); 61 | } -------------------------------------------------------------------------------- /src/processImports.ts: -------------------------------------------------------------------------------- 1 | import * as options from './options'; 2 | import { TypescriptImport } from './TypescriptImport'; 3 | 4 | export default function processImports(importClauses: TypescriptImport[]): TypescriptImport[] { 5 | return importClauses 6 | .map(importClause => { 7 | if (importClause.namedImports) { 8 | importClause.namedImports.sort((a, b) => a.importName.localeCompare(b.importName, 'en', { sensitivity: 'base' })); 9 | } 10 | return importClause; 11 | }) 12 | .sort(compareImportClauses); 13 | } 14 | 15 | function compareImportClauses(a: TypescriptImport, b: TypescriptImport) { 16 | if (options.getSortOption() === 'path') { 17 | return comparePath(a, b) 18 | || compareCaseInsensitive(a.path, b.path); 19 | } else { 20 | return compareImportType(a, b) 21 | || (a.namespace && compareCaseInsensitive(a.namespace, b.namespace)) 22 | || (a.default && compareCaseInsensitive(a.default, b.default)) 23 | || (a.namedImports && compareCaseInsensitive(a.namedImports[0].importName, b.namedImports[0].importName)) 24 | || comparePath(a, b); 25 | } 26 | } 27 | 28 | function compareCaseInsensitive(a: string, b: string) { 29 | return a.localeCompare(b, 'en', { sensitivity: 'base' }); 30 | } 31 | 32 | function comparePath(a: TypescriptImport, b: TypescriptImport) { 33 | return getPathPriority(a.path) - getPathPriority(b.path); 34 | } 35 | 36 | function getPathPriority(path: string) { 37 | let sortOrder = options.getPathSortOrdering(); 38 | if (/^\.\//.test(path)) { 39 | return sortOrder.indexOf('relativeDownLevel'); 40 | } else if (/^\.\.\//.test(path)) { 41 | return sortOrder.indexOf('relativeUpLevel'); 42 | } else { 43 | return sortOrder.indexOf('package'); 44 | } 45 | } 46 | 47 | function compareImportType(a: TypescriptImport, b: TypescriptImport) { 48 | return getImportTypePriority(a) - getImportTypePriority(b); 49 | } 50 | 51 | function getImportTypePriority(importClause: TypescriptImport) { 52 | if (importClause.namespace) { 53 | return 0; 54 | } else if (importClause.default) { 55 | return 1; 56 | } else if (importClause.namedImports) { 57 | return 2; 58 | } else { 59 | return 3; 60 | } 61 | } -------------------------------------------------------------------------------- /src/sortImports.ts: -------------------------------------------------------------------------------- 1 | import * as vscode from 'vscode'; 2 | import parseImports from './parseImportNodes'; 3 | import processImports from './processImports'; 4 | import writeImports from './writeImports'; 5 | 6 | export default function sortImports(document: vscode.TextDocument) { 7 | let imports = parseImports(document); 8 | imports = processImports(imports); 9 | let sortedImportText = writeImports(imports); 10 | 11 | let edits: vscode.TextEdit[] = imports.map(importClause => vscode.TextEdit.delete(importClause.range)); 12 | edits.push(vscode.TextEdit.insert(new vscode.Position(0, 0), sortedImportText)); 13 | 14 | return edits; 15 | } -------------------------------------------------------------------------------- /src/sortInsideEditor.ts: -------------------------------------------------------------------------------- 1 | import * as vscode from 'vscode'; 2 | import sortImports from './sortImports'; 3 | import processImports from './processImports'; 4 | import writeImports from './writeImports'; 5 | 6 | export default function sortInsideEditor() { 7 | let editor = vscode.window.activeTextEditor; 8 | 9 | let edits: vscode.TextEdit[] = sortImports(editor.document); 10 | 11 | editor.edit( 12 | editBuilder => { 13 | edits.forEach(edit => { 14 | editBuilder.replace(edit.range, edit.newText); 15 | }); 16 | } 17 | ); 18 | } -------------------------------------------------------------------------------- /src/sortOnSave.ts: -------------------------------------------------------------------------------- 1 | import * as vscode from 'vscode'; 2 | import isSupportedLanguage from './isSupportedLanguage'; 3 | import sortImports from './sortImports'; 4 | 5 | export default function sortOnSave(event: vscode.TextDocumentWillSaveEvent) { 6 | if (isSupportedLanguage(event.document.languageId)) { 7 | event.waitUntil(new Promise((resolve, reject) => { 8 | resolve(sortImports(event.document)); 9 | })); 10 | } 11 | } -------------------------------------------------------------------------------- /src/writeImports.ts: -------------------------------------------------------------------------------- 1 | import * as vscode from 'vscode'; 2 | import * as options from './options'; 3 | import { NamedImport, TypescriptImport } from './TypescriptImport'; 4 | 5 | export default function getSortedImportStatements(importClauses: TypescriptImport[]): string { 6 | if (importClauses && importClauses.length) { 7 | return importClauses 8 | .map(getImportClauseString) 9 | .join('\n') + '\n'; 10 | } 11 | } 12 | 13 | function getImportClauseString(importClause: TypescriptImport): string { 14 | let path = getPath(importClause); 15 | let semicolon = ''; 16 | if (!options.getOmitSemicolon()) { 17 | semicolon = ';'; 18 | } 19 | if (importClause.namespace) { 20 | return `import * as ${importClause.namespace} from ${path}${semicolon}`; 21 | } else if (importClause.default) { 22 | if (importClause.namedImports) { 23 | return `import ${importClause.default}, ${generatedNamedImportGroup(importClause.namedImports)} from ${path}${semicolon}`; 24 | } else { 25 | return `import ${importClause.default} from ${path}${semicolon}`; 26 | } 27 | } else if (importClause.namedImports) { 28 | return `import ${generatedNamedImportGroup(importClause.namedImports)} from ${path}${semicolon}`; 29 | } else { 30 | return `import ${path}${semicolon}`; 31 | } 32 | } 33 | 34 | function getPath(importClause: TypescriptImport): string { 35 | let quote = options.getQuoteToken(); 36 | return `${quote}${importClause.path}${quote}`; 37 | } 38 | 39 | function generatedNamedImportGroup(namedImports: NamedImport[]): string { 40 | let generatedNamedImports = namedImports.map(generateNamedImport); 41 | let maxImportsPerSingleLine = options.getMaxNamedImportsPerSingleLine(); 42 | if (generatedNamedImports.length > maxImportsPerSingleLine) { 43 | let newline = `\n${options.getTabString()}`; 44 | return `{${newline}${generatedNamedImports.join(`,${newline}`)}${newline}}`; 45 | } else { 46 | return `{ ${generatedNamedImports.join(', ')} }`; 47 | } 48 | } 49 | 50 | function generateNamedImport(namedImport: NamedImport): string { 51 | if (namedImport.alias) { 52 | return `${namedImport.importName} as ${namedImport.alias}`; 53 | } else { 54 | return namedImport.importName; 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /test/extension.test.ts: -------------------------------------------------------------------------------- 1 | // 2 | // Note: This example test is leveraging the Mocha test framework. 3 | // Please refer to their documentation on https://mochajs.org/ for help. 4 | // 5 | 6 | // The module 'assert' provides assertion methods from node 7 | import * as assert from 'assert'; 8 | 9 | // You can import and use all API from the 'vscode' module 10 | // as well as import your extension to test it 11 | import * as vscode from 'vscode'; 12 | import * as myExtension from '../src/extension'; 13 | 14 | // Defines a Mocha test suite to group tests of similar kind together 15 | suite("Extension Tests", () => { 16 | 17 | // Defines a Mocha unit test 18 | test("Something 1", () => { 19 | assert.equal(-1, [1, 2, 3].indexOf(5)); 20 | assert.equal(-1, [1, 2, 3].indexOf(0)); 21 | }); 22 | }); -------------------------------------------------------------------------------- /test/index.ts: -------------------------------------------------------------------------------- 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 | var 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.ts (suite, test, etc.) 19 | useColors: true // colored output from test results 20 | }); 21 | 22 | module.exports = testRunner; -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "module": "commonjs", 4 | "target": "es6", 5 | "outDir": "out", 6 | "lib": [ 7 | "es6" 8 | ], 9 | "sourceMap": true, 10 | "rootDir": "." 11 | }, 12 | "exclude": [ 13 | "node_modules", 14 | ".vscode-test" 15 | ] 16 | } -------------------------------------------------------------------------------- /vsc-extension-quickstart.md: -------------------------------------------------------------------------------- 1 | # Welcome to your first 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 | * `src/extension.ts` - 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 `src/extension.ts` 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 `src/extension.ts` 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 `Launch 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.ts` or create new test files inside the `test` folder 32 | * by convention, the test runner will only consider files matching the name pattern `**.test.ts` 33 | * you can create folders inside the `test` folder to structure your tests any way you want -------------------------------------------------------------------------------- /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.32": 6 | version "2.2.44" 7 | resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-2.2.44.tgz#1d4a798e53f35212fd5ad4d04050620171cd5b5e" 8 | 9 | "@types/node@^6.0.40": 10 | version "6.0.92" 11 | resolved "https://registry.yarnpkg.com/@types/node/-/node-6.0.92.tgz#e7f721ae282772e12ba2579968c00d9cce422c5d" 12 | 13 | ajv@^5.1.0: 14 | version "5.5.1" 15 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.1.tgz#b38bb8876d9e86bee994956a04e721e88b248eb2" 16 | dependencies: 17 | co "^4.6.0" 18 | fast-deep-equal "^1.0.0" 19 | fast-json-stable-stringify "^2.0.0" 20 | json-schema-traverse "^0.3.0" 21 | 22 | ansi-regex@^2.0.0: 23 | version "2.1.1" 24 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 25 | 26 | ansi-styles@^2.2.1: 27 | version "2.2.1" 28 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 29 | 30 | arr-diff@^2.0.0: 31 | version "2.0.0" 32 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 33 | dependencies: 34 | arr-flatten "^1.0.1" 35 | 36 | arr-flatten@^1.0.1: 37 | version "1.1.0" 38 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 39 | 40 | array-differ@^1.0.0: 41 | version "1.0.0" 42 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" 43 | 44 | array-union@^1.0.1: 45 | version "1.0.2" 46 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 47 | dependencies: 48 | array-uniq "^1.0.1" 49 | 50 | array-uniq@^1.0.1, array-uniq@^1.0.2: 51 | version "1.0.3" 52 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 53 | 54 | array-unique@^0.2.1: 55 | version "0.2.1" 56 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 57 | 58 | arrify@^1.0.0: 59 | version "1.0.1" 60 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 61 | 62 | asn1@~0.2.3: 63 | version "0.2.3" 64 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 65 | 66 | assert-plus@1.0.0, assert-plus@^1.0.0: 67 | version "1.0.0" 68 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 69 | 70 | assert-plus@^0.2.0: 71 | version "0.2.0" 72 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 73 | 74 | asynckit@^0.4.0: 75 | version "0.4.0" 76 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 77 | 78 | aws-sign2@~0.6.0: 79 | version "0.6.0" 80 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 81 | 82 | aws-sign2@~0.7.0: 83 | version "0.7.0" 84 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 85 | 86 | aws4@^1.2.1, aws4@^1.6.0: 87 | version "1.6.0" 88 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 89 | 90 | balanced-match@^1.0.0: 91 | version "1.0.0" 92 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 93 | 94 | bcrypt-pbkdf@^1.0.0: 95 | version "1.0.1" 96 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 97 | dependencies: 98 | tweetnacl "^0.14.3" 99 | 100 | beeper@^1.0.0: 101 | version "1.1.1" 102 | resolved "https://registry.yarnpkg.com/beeper/-/beeper-1.1.1.tgz#e6d5ea8c5dad001304a70b22638447f69cb2f809" 103 | 104 | block-stream@*: 105 | version "0.0.9" 106 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 107 | dependencies: 108 | inherits "~2.0.0" 109 | 110 | boom@2.x.x: 111 | version "2.10.1" 112 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 113 | dependencies: 114 | hoek "2.x.x" 115 | 116 | boom@4.x.x: 117 | version "4.3.1" 118 | resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31" 119 | dependencies: 120 | hoek "4.x.x" 121 | 122 | boom@5.x.x: 123 | version "5.2.0" 124 | resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02" 125 | dependencies: 126 | hoek "4.x.x" 127 | 128 | brace-expansion@^1.1.7: 129 | version "1.1.8" 130 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 131 | dependencies: 132 | balanced-match "^1.0.0" 133 | concat-map "0.0.1" 134 | 135 | braces@^1.8.2: 136 | version "1.8.5" 137 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 138 | dependencies: 139 | expand-range "^1.8.1" 140 | preserve "^0.2.0" 141 | repeat-element "^1.1.2" 142 | 143 | browser-stdout@1.3.0: 144 | version "1.3.0" 145 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" 146 | 147 | buffer-crc32@~0.2.3: 148 | version "0.2.13" 149 | resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" 150 | 151 | caseless@~0.11.0: 152 | version "0.11.0" 153 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 154 | 155 | caseless@~0.12.0: 156 | version "0.12.0" 157 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 158 | 159 | chalk@^1.0.0, chalk@^1.1.1: 160 | version "1.1.3" 161 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 162 | dependencies: 163 | ansi-styles "^2.2.1" 164 | escape-string-regexp "^1.0.2" 165 | has-ansi "^2.0.0" 166 | strip-ansi "^3.0.0" 167 | supports-color "^2.0.0" 168 | 169 | clone-buffer@^1.0.0: 170 | version "1.0.0" 171 | resolved "https://registry.yarnpkg.com/clone-buffer/-/clone-buffer-1.0.0.tgz#e3e25b207ac4e701af721e2cb5a16792cac3dc58" 172 | 173 | clone-stats@^0.0.1: 174 | version "0.0.1" 175 | resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-0.0.1.tgz#b88f94a82cf38b8791d58046ea4029ad88ca99d1" 176 | 177 | clone-stats@^1.0.0: 178 | version "1.0.0" 179 | resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-1.0.0.tgz#b3782dff8bb5474e18b9b6bf0fdfe782f8777680" 180 | 181 | clone@^0.2.0: 182 | version "0.2.0" 183 | resolved "https://registry.yarnpkg.com/clone/-/clone-0.2.0.tgz#c6126a90ad4f72dbf5acdb243cc37724fe93fc1f" 184 | 185 | clone@^1.0.0: 186 | version "1.0.3" 187 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.3.tgz#298d7e2231660f40c003c2ed3140decf3f53085f" 188 | 189 | clone@^2.1.1: 190 | version "2.1.1" 191 | resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.1.tgz#d217d1e961118e3ac9a4b8bba3285553bf647cdb" 192 | 193 | cloneable-readable@^1.0.0: 194 | version "1.0.0" 195 | resolved "https://registry.yarnpkg.com/cloneable-readable/-/cloneable-readable-1.0.0.tgz#a6290d413f217a61232f95e458ff38418cfb0117" 196 | dependencies: 197 | inherits "^2.0.1" 198 | process-nextick-args "^1.0.6" 199 | through2 "^2.0.1" 200 | 201 | co@^4.6.0: 202 | version "4.6.0" 203 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 204 | 205 | combined-stream@^1.0.5, combined-stream@~1.0.5: 206 | version "1.0.5" 207 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 208 | dependencies: 209 | delayed-stream "~1.0.0" 210 | 211 | commander@0.6.1: 212 | version "0.6.1" 213 | resolved "https://registry.yarnpkg.com/commander/-/commander-0.6.1.tgz#fa68a14f6a945d54dbbe50d8cdb3320e9e3b1a06" 214 | 215 | commander@2.11.0: 216 | version "2.11.0" 217 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" 218 | 219 | commander@2.3.0: 220 | version "2.3.0" 221 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.3.0.tgz#fd430e889832ec353b9acd1de217c11cb3eef873" 222 | 223 | commander@^2.9.0: 224 | version "2.12.2" 225 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.12.2.tgz#0f5946c427ed9ec0d91a46bb9def53e54650e555" 226 | 227 | concat-map@0.0.1: 228 | version "0.0.1" 229 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 230 | 231 | convert-source-map@^1.1.1: 232 | version "1.5.1" 233 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 234 | 235 | core-util-is@1.0.2, core-util-is@~1.0.0: 236 | version "1.0.2" 237 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 238 | 239 | cryptiles@2.x.x: 240 | version "2.0.5" 241 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 242 | dependencies: 243 | boom "2.x.x" 244 | 245 | cryptiles@3.x.x: 246 | version "3.1.2" 247 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe" 248 | dependencies: 249 | boom "5.x.x" 250 | 251 | dashdash@^1.12.0: 252 | version "1.14.1" 253 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 254 | dependencies: 255 | assert-plus "^1.0.0" 256 | 257 | dateformat@^2.0.0: 258 | version "2.2.0" 259 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-2.2.0.tgz#4065e2013cf9fb916ddfd82efb506ad4c6769062" 260 | 261 | debug@2.2.0: 262 | version "2.2.0" 263 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 264 | dependencies: 265 | ms "0.7.1" 266 | 267 | debug@3.1.0: 268 | version "3.1.0" 269 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 270 | dependencies: 271 | ms "2.0.0" 272 | 273 | deep-assign@^1.0.0: 274 | version "1.0.0" 275 | resolved "https://registry.yarnpkg.com/deep-assign/-/deep-assign-1.0.0.tgz#b092743be8427dc621ea0067cdec7e70dd19f37b" 276 | dependencies: 277 | is-obj "^1.0.0" 278 | 279 | delayed-stream@~1.0.0: 280 | version "1.0.0" 281 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 282 | 283 | diff@1.4.0: 284 | version "1.4.0" 285 | resolved "https://registry.yarnpkg.com/diff/-/diff-1.4.0.tgz#7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf" 286 | 287 | diff@3.3.1: 288 | version "3.3.1" 289 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.3.1.tgz#aa8567a6eed03c531fc89d3f711cd0e5259dec75" 290 | 291 | duplexer2@0.0.2: 292 | version "0.0.2" 293 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.0.2.tgz#c614dcf67e2fb14995a91711e5a617e8a60a31db" 294 | dependencies: 295 | readable-stream "~1.1.9" 296 | 297 | duplexer@~0.1.1: 298 | version "0.1.1" 299 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" 300 | 301 | duplexify@^3.2.0: 302 | version "3.5.1" 303 | resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.5.1.tgz#4e1516be68838bc90a49994f0b39a6e5960befcd" 304 | dependencies: 305 | end-of-stream "^1.0.0" 306 | inherits "^2.0.1" 307 | readable-stream "^2.0.0" 308 | stream-shift "^1.0.0" 309 | 310 | ecc-jsbn@~0.1.1: 311 | version "0.1.1" 312 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 313 | dependencies: 314 | jsbn "~0.1.0" 315 | 316 | end-of-stream@^1.0.0: 317 | version "1.4.0" 318 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.0.tgz#7a90d833efda6cfa6eac0f4949dbb0fad3a63206" 319 | dependencies: 320 | once "^1.4.0" 321 | 322 | escape-string-regexp@1.0.2: 323 | version "1.0.2" 324 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.2.tgz#4dbc2fe674e71949caf3fb2695ce7f2dc1d9a8d1" 325 | 326 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2: 327 | version "1.0.5" 328 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 329 | 330 | event-stream@^3.3.1, event-stream@~3.3.4: 331 | version "3.3.4" 332 | resolved "https://registry.yarnpkg.com/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" 333 | dependencies: 334 | duplexer "~0.1.1" 335 | from "~0" 336 | map-stream "~0.1.0" 337 | pause-stream "0.0.11" 338 | split "0.3" 339 | stream-combiner "~0.0.4" 340 | through "~2.3.1" 341 | 342 | expand-brackets@^0.1.4: 343 | version "0.1.5" 344 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 345 | dependencies: 346 | is-posix-bracket "^0.1.0" 347 | 348 | expand-range@^1.8.1: 349 | version "1.8.2" 350 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 351 | dependencies: 352 | fill-range "^2.1.0" 353 | 354 | extend-shallow@^2.0.1: 355 | version "2.0.1" 356 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 357 | dependencies: 358 | is-extendable "^0.1.0" 359 | 360 | extend@^3.0.0, extend@~3.0.0, extend@~3.0.1: 361 | version "3.0.1" 362 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 363 | 364 | extglob@^0.3.1: 365 | version "0.3.2" 366 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 367 | dependencies: 368 | is-extglob "^1.0.0" 369 | 370 | extsprintf@1.3.0: 371 | version "1.3.0" 372 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 373 | 374 | extsprintf@^1.2.0: 375 | version "1.4.0" 376 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 377 | 378 | fancy-log@^1.1.0: 379 | version "1.3.0" 380 | resolved "https://registry.yarnpkg.com/fancy-log/-/fancy-log-1.3.0.tgz#45be17d02bb9917d60ccffd4995c999e6c8c9948" 381 | dependencies: 382 | chalk "^1.1.1" 383 | time-stamp "^1.0.0" 384 | 385 | fast-deep-equal@^1.0.0: 386 | version "1.0.0" 387 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 388 | 389 | fast-json-stable-stringify@^2.0.0: 390 | version "2.0.0" 391 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 392 | 393 | fd-slicer@~1.0.1: 394 | version "1.0.1" 395 | resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.0.1.tgz#8b5bcbd9ec327c5041bf9ab023fd6750f1177e65" 396 | dependencies: 397 | pend "~1.2.0" 398 | 399 | filename-regex@^2.0.0: 400 | version "2.0.1" 401 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 402 | 403 | fill-range@^2.1.0: 404 | version "2.2.3" 405 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 406 | dependencies: 407 | is-number "^2.1.0" 408 | isobject "^2.0.0" 409 | randomatic "^1.1.3" 410 | repeat-element "^1.1.2" 411 | repeat-string "^1.5.2" 412 | 413 | first-chunk-stream@^1.0.0: 414 | version "1.0.0" 415 | resolved "https://registry.yarnpkg.com/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz#59bfb50cd905f60d7c394cd3d9acaab4e6ad934e" 416 | 417 | for-in@^1.0.1: 418 | version "1.0.2" 419 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 420 | 421 | for-own@^0.1.4: 422 | version "0.1.5" 423 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 424 | dependencies: 425 | for-in "^1.0.1" 426 | 427 | forever-agent@~0.6.1: 428 | version "0.6.1" 429 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 430 | 431 | form-data@~2.1.1: 432 | version "2.1.4" 433 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 434 | dependencies: 435 | asynckit "^0.4.0" 436 | combined-stream "^1.0.5" 437 | mime-types "^2.1.12" 438 | 439 | form-data@~2.3.1: 440 | version "2.3.1" 441 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.1.tgz#6fb94fbd71885306d73d15cc497fe4cc4ecd44bf" 442 | dependencies: 443 | asynckit "^0.4.0" 444 | combined-stream "^1.0.5" 445 | mime-types "^2.1.12" 446 | 447 | from@~0: 448 | version "0.1.7" 449 | resolved "https://registry.yarnpkg.com/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe" 450 | 451 | fs.realpath@^1.0.0: 452 | version "1.0.0" 453 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 454 | 455 | fstream@^1.0.2: 456 | version "1.0.11" 457 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 458 | dependencies: 459 | graceful-fs "^4.1.2" 460 | inherits "~2.0.0" 461 | mkdirp ">=0.5 0" 462 | rimraf "2" 463 | 464 | generate-function@^2.0.0: 465 | version "2.0.0" 466 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 467 | 468 | generate-object-property@^1.1.0: 469 | version "1.2.0" 470 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 471 | dependencies: 472 | is-property "^1.0.0" 473 | 474 | getpass@^0.1.1: 475 | version "0.1.7" 476 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 477 | dependencies: 478 | assert-plus "^1.0.0" 479 | 480 | glob-base@^0.3.0: 481 | version "0.3.0" 482 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 483 | dependencies: 484 | glob-parent "^2.0.0" 485 | is-glob "^2.0.0" 486 | 487 | glob-parent@^2.0.0: 488 | version "2.0.0" 489 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 490 | dependencies: 491 | is-glob "^2.0.0" 492 | 493 | glob-parent@^3.0.0: 494 | version "3.1.0" 495 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" 496 | dependencies: 497 | is-glob "^3.1.0" 498 | path-dirname "^1.0.0" 499 | 500 | glob-stream@^5.3.2: 501 | version "5.3.5" 502 | resolved "https://registry.yarnpkg.com/glob-stream/-/glob-stream-5.3.5.tgz#a55665a9a8ccdc41915a87c701e32d4e016fad22" 503 | dependencies: 504 | extend "^3.0.0" 505 | glob "^5.0.3" 506 | glob-parent "^3.0.0" 507 | micromatch "^2.3.7" 508 | ordered-read-streams "^0.3.0" 509 | through2 "^0.6.0" 510 | to-absolute-glob "^0.1.1" 511 | unique-stream "^2.0.2" 512 | 513 | glob@3.2.11: 514 | version "3.2.11" 515 | resolved "https://registry.yarnpkg.com/glob/-/glob-3.2.11.tgz#4a973f635b9190f715d10987d5c00fd2815ebe3d" 516 | dependencies: 517 | inherits "2" 518 | minimatch "0.3" 519 | 520 | glob@7.1.2, glob@^7.0.5, glob@^7.1.2: 521 | version "7.1.2" 522 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 523 | dependencies: 524 | fs.realpath "^1.0.0" 525 | inflight "^1.0.4" 526 | inherits "2" 527 | minimatch "^3.0.4" 528 | once "^1.3.0" 529 | path-is-absolute "^1.0.0" 530 | 531 | glob@^5.0.3: 532 | version "5.0.15" 533 | resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" 534 | dependencies: 535 | inflight "^1.0.4" 536 | inherits "2" 537 | minimatch "2 || 3" 538 | once "^1.3.0" 539 | path-is-absolute "^1.0.0" 540 | 541 | glogg@^1.0.0: 542 | version "1.0.0" 543 | resolved "https://registry.yarnpkg.com/glogg/-/glogg-1.0.0.tgz#7fe0f199f57ac906cf512feead8f90ee4a284fc5" 544 | dependencies: 545 | sparkles "^1.0.0" 546 | 547 | graceful-fs@^4.0.0, graceful-fs@^4.1.2: 548 | version "4.1.11" 549 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 550 | 551 | growl@1.10.3: 552 | version "1.10.3" 553 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.10.3.tgz#1926ba90cf3edfe2adb4927f5880bc22c66c790f" 554 | 555 | growl@1.9.2: 556 | version "1.9.2" 557 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f" 558 | 559 | gulp-chmod@^2.0.0: 560 | version "2.0.0" 561 | resolved "https://registry.yarnpkg.com/gulp-chmod/-/gulp-chmod-2.0.0.tgz#00c390b928a0799b251accf631aa09e01cc6299c" 562 | dependencies: 563 | deep-assign "^1.0.0" 564 | stat-mode "^0.2.0" 565 | through2 "^2.0.0" 566 | 567 | gulp-filter@^5.0.1: 568 | version "5.0.1" 569 | resolved "https://registry.yarnpkg.com/gulp-filter/-/gulp-filter-5.0.1.tgz#5d87f662e317e5839ef7650e620e6c9008ff92d0" 570 | dependencies: 571 | gulp-util "^3.0.6" 572 | multimatch "^2.0.0" 573 | streamfilter "^1.0.5" 574 | 575 | gulp-gunzip@1.0.0: 576 | version "1.0.0" 577 | resolved "https://registry.yarnpkg.com/gulp-gunzip/-/gulp-gunzip-1.0.0.tgz#15b741145e83a9c6f50886241b57cc5871f151a9" 578 | dependencies: 579 | through2 "~0.6.5" 580 | vinyl "~0.4.6" 581 | 582 | gulp-remote-src@^0.4.3: 583 | version "0.4.3" 584 | resolved "https://registry.yarnpkg.com/gulp-remote-src/-/gulp-remote-src-0.4.3.tgz#5728cfd643433dd4845ddef0969f0f971a2ab4a1" 585 | dependencies: 586 | event-stream "~3.3.4" 587 | node.extend "~1.1.2" 588 | request "~2.79.0" 589 | through2 "~2.0.3" 590 | vinyl "~2.0.1" 591 | 592 | gulp-sourcemaps@1.6.0: 593 | version "1.6.0" 594 | resolved "https://registry.yarnpkg.com/gulp-sourcemaps/-/gulp-sourcemaps-1.6.0.tgz#b86ff349d801ceb56e1d9e7dc7bbcb4b7dee600c" 595 | dependencies: 596 | convert-source-map "^1.1.1" 597 | graceful-fs "^4.1.2" 598 | strip-bom "^2.0.0" 599 | through2 "^2.0.0" 600 | vinyl "^1.0.0" 601 | 602 | gulp-symdest@^1.1.0: 603 | version "1.1.0" 604 | resolved "https://registry.yarnpkg.com/gulp-symdest/-/gulp-symdest-1.1.0.tgz#c165320732d192ce56fd94271ffa123234bf2ae0" 605 | dependencies: 606 | event-stream "^3.3.1" 607 | mkdirp "^0.5.1" 608 | queue "^3.1.0" 609 | vinyl-fs "^2.4.3" 610 | 611 | gulp-untar@^0.0.6: 612 | version "0.0.6" 613 | resolved "https://registry.yarnpkg.com/gulp-untar/-/gulp-untar-0.0.6.tgz#d6bdefde7e9a8e054c9f162385a0782c4be74000" 614 | dependencies: 615 | event-stream "~3.3.4" 616 | gulp-util "~3.0.8" 617 | streamifier "~0.1.1" 618 | tar "^2.2.1" 619 | through2 "~2.0.3" 620 | 621 | gulp-util@^3.0.6, gulp-util@~3.0.8: 622 | version "3.0.8" 623 | resolved "https://registry.yarnpkg.com/gulp-util/-/gulp-util-3.0.8.tgz#0054e1e744502e27c04c187c3ecc505dd54bbb4f" 624 | dependencies: 625 | array-differ "^1.0.0" 626 | array-uniq "^1.0.2" 627 | beeper "^1.0.0" 628 | chalk "^1.0.0" 629 | dateformat "^2.0.0" 630 | fancy-log "^1.1.0" 631 | gulplog "^1.0.0" 632 | has-gulplog "^0.1.0" 633 | lodash._reescape "^3.0.0" 634 | lodash._reevaluate "^3.0.0" 635 | lodash._reinterpolate "^3.0.0" 636 | lodash.template "^3.0.0" 637 | minimist "^1.1.0" 638 | multipipe "^0.1.2" 639 | object-assign "^3.0.0" 640 | replace-ext "0.0.1" 641 | through2 "^2.0.0" 642 | vinyl "^0.5.0" 643 | 644 | gulp-vinyl-zip@^2.1.0: 645 | version "2.1.0" 646 | resolved "https://registry.yarnpkg.com/gulp-vinyl-zip/-/gulp-vinyl-zip-2.1.0.tgz#24e40685dc05b7149995245099e0590263be8dad" 647 | dependencies: 648 | event-stream "^3.3.1" 649 | queue "^4.2.1" 650 | through2 "^2.0.3" 651 | vinyl "^2.0.2" 652 | vinyl-fs "^2.0.0" 653 | yauzl "^2.2.1" 654 | yazl "^2.2.1" 655 | 656 | gulplog@^1.0.0: 657 | version "1.0.0" 658 | resolved "https://registry.yarnpkg.com/gulplog/-/gulplog-1.0.0.tgz#e28c4d45d05ecbbed818363ce8f9c5926229ffe5" 659 | dependencies: 660 | glogg "^1.0.0" 661 | 662 | har-schema@^2.0.0: 663 | version "2.0.0" 664 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 665 | 666 | har-validator@~2.0.6: 667 | version "2.0.6" 668 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 669 | dependencies: 670 | chalk "^1.1.1" 671 | commander "^2.9.0" 672 | is-my-json-valid "^2.12.4" 673 | pinkie-promise "^2.0.0" 674 | 675 | har-validator@~5.0.3: 676 | version "5.0.3" 677 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" 678 | dependencies: 679 | ajv "^5.1.0" 680 | har-schema "^2.0.0" 681 | 682 | has-ansi@^2.0.0: 683 | version "2.0.0" 684 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 685 | dependencies: 686 | ansi-regex "^2.0.0" 687 | 688 | has-flag@^2.0.0: 689 | version "2.0.0" 690 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 691 | 692 | has-gulplog@^0.1.0: 693 | version "0.1.0" 694 | resolved "https://registry.yarnpkg.com/has-gulplog/-/has-gulplog-0.1.0.tgz#6414c82913697da51590397dafb12f22967811ce" 695 | dependencies: 696 | sparkles "^1.0.0" 697 | 698 | hawk@~3.1.3: 699 | version "3.1.3" 700 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 701 | dependencies: 702 | boom "2.x.x" 703 | cryptiles "2.x.x" 704 | hoek "2.x.x" 705 | sntp "1.x.x" 706 | 707 | hawk@~6.0.2: 708 | version "6.0.2" 709 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038" 710 | dependencies: 711 | boom "4.x.x" 712 | cryptiles "3.x.x" 713 | hoek "4.x.x" 714 | sntp "2.x.x" 715 | 716 | he@1.1.1: 717 | version "1.1.1" 718 | resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" 719 | 720 | hoek@2.x.x: 721 | version "2.16.3" 722 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 723 | 724 | hoek@4.x.x: 725 | version "4.2.0" 726 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.0.tgz#72d9d0754f7fe25ca2d01ad8f8f9a9449a89526d" 727 | 728 | http-signature@~1.1.0: 729 | version "1.1.1" 730 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 731 | dependencies: 732 | assert-plus "^0.2.0" 733 | jsprim "^1.2.2" 734 | sshpk "^1.7.0" 735 | 736 | http-signature@~1.2.0: 737 | version "1.2.0" 738 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 739 | dependencies: 740 | assert-plus "^1.0.0" 741 | jsprim "^1.2.2" 742 | sshpk "^1.7.0" 743 | 744 | inflight@^1.0.4: 745 | version "1.0.6" 746 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 747 | dependencies: 748 | once "^1.3.0" 749 | wrappy "1" 750 | 751 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 752 | version "2.0.3" 753 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 754 | 755 | is-buffer@^1.1.5: 756 | version "1.1.6" 757 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 758 | 759 | is-dotfile@^1.0.0: 760 | version "1.0.3" 761 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 762 | 763 | is-equal-shallow@^0.1.3: 764 | version "0.1.3" 765 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 766 | dependencies: 767 | is-primitive "^2.0.0" 768 | 769 | is-extendable@^0.1.0, is-extendable@^0.1.1: 770 | version "0.1.1" 771 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 772 | 773 | is-extglob@^1.0.0: 774 | version "1.0.0" 775 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 776 | 777 | is-extglob@^2.1.0: 778 | version "2.1.1" 779 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 780 | 781 | is-glob@^2.0.0, is-glob@^2.0.1: 782 | version "2.0.1" 783 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 784 | dependencies: 785 | is-extglob "^1.0.0" 786 | 787 | is-glob@^3.1.0: 788 | version "3.1.0" 789 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 790 | dependencies: 791 | is-extglob "^2.1.0" 792 | 793 | is-my-json-valid@^2.12.4: 794 | version "2.16.1" 795 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.1.tgz#5a846777e2c2620d1e69104e5d3a03b1f6088f11" 796 | dependencies: 797 | generate-function "^2.0.0" 798 | generate-object-property "^1.1.0" 799 | jsonpointer "^4.0.0" 800 | xtend "^4.0.0" 801 | 802 | is-number@^2.1.0: 803 | version "2.1.0" 804 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 805 | dependencies: 806 | kind-of "^3.0.2" 807 | 808 | is-number@^3.0.0: 809 | version "3.0.0" 810 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 811 | dependencies: 812 | kind-of "^3.0.2" 813 | 814 | is-obj@^1.0.0: 815 | version "1.0.1" 816 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 817 | 818 | is-posix-bracket@^0.1.0: 819 | version "0.1.1" 820 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 821 | 822 | is-primitive@^2.0.0: 823 | version "2.0.0" 824 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 825 | 826 | is-property@^1.0.0: 827 | version "1.0.2" 828 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 829 | 830 | is-stream@^1.0.1, is-stream@^1.1.0: 831 | version "1.1.0" 832 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 833 | 834 | is-typedarray@~1.0.0: 835 | version "1.0.0" 836 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 837 | 838 | is-utf8@^0.2.0: 839 | version "0.2.1" 840 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 841 | 842 | is-valid-glob@^0.3.0: 843 | version "0.3.0" 844 | resolved "https://registry.yarnpkg.com/is-valid-glob/-/is-valid-glob-0.3.0.tgz#d4b55c69f51886f9b65c70d6c2622d37e29f48fe" 845 | 846 | is@^3.1.0: 847 | version "3.2.1" 848 | resolved "https://registry.yarnpkg.com/is/-/is-3.2.1.tgz#d0ac2ad55eb7b0bec926a5266f6c662aaa83dca5" 849 | 850 | isarray@0.0.1: 851 | version "0.0.1" 852 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 853 | 854 | isarray@1.0.0, isarray@~1.0.0: 855 | version "1.0.0" 856 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 857 | 858 | isobject@^2.0.0: 859 | version "2.1.0" 860 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 861 | dependencies: 862 | isarray "1.0.0" 863 | 864 | isstream@~0.1.2: 865 | version "0.1.2" 866 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 867 | 868 | jade@0.26.3: 869 | version "0.26.3" 870 | resolved "https://registry.yarnpkg.com/jade/-/jade-0.26.3.tgz#8f10d7977d8d79f2f6ff862a81b0513ccb25686c" 871 | dependencies: 872 | commander "0.6.1" 873 | mkdirp "0.3.0" 874 | 875 | jsbn@~0.1.0: 876 | version "0.1.1" 877 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 878 | 879 | json-schema-traverse@^0.3.0: 880 | version "0.3.1" 881 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 882 | 883 | json-schema@0.2.3: 884 | version "0.2.3" 885 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 886 | 887 | json-stable-stringify@^1.0.0: 888 | version "1.0.1" 889 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 890 | dependencies: 891 | jsonify "~0.0.0" 892 | 893 | json-stringify-safe@~5.0.1: 894 | version "5.0.1" 895 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 896 | 897 | jsonify@~0.0.0: 898 | version "0.0.0" 899 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 900 | 901 | jsonpointer@^4.0.0: 902 | version "4.0.1" 903 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 904 | 905 | jsprim@^1.2.2: 906 | version "1.4.1" 907 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 908 | dependencies: 909 | assert-plus "1.0.0" 910 | extsprintf "1.3.0" 911 | json-schema "0.2.3" 912 | verror "1.10.0" 913 | 914 | kind-of@^3.0.2: 915 | version "3.2.2" 916 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 917 | dependencies: 918 | is-buffer "^1.1.5" 919 | 920 | kind-of@^4.0.0: 921 | version "4.0.0" 922 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 923 | dependencies: 924 | is-buffer "^1.1.5" 925 | 926 | lazystream@^1.0.0: 927 | version "1.0.0" 928 | resolved "https://registry.yarnpkg.com/lazystream/-/lazystream-1.0.0.tgz#f6995fe0f820392f61396be89462407bb77168e4" 929 | dependencies: 930 | readable-stream "^2.0.5" 931 | 932 | lodash._basecopy@^3.0.0: 933 | version "3.0.1" 934 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 935 | 936 | lodash._basetostring@^3.0.0: 937 | version "3.0.1" 938 | resolved "https://registry.yarnpkg.com/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz#d1861d877f824a52f669832dcaf3ee15566a07d5" 939 | 940 | lodash._basevalues@^3.0.0: 941 | version "3.0.0" 942 | resolved "https://registry.yarnpkg.com/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz#5b775762802bde3d3297503e26300820fdf661b7" 943 | 944 | lodash._getnative@^3.0.0: 945 | version "3.9.1" 946 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 947 | 948 | lodash._isiterateecall@^3.0.0: 949 | version "3.0.9" 950 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 951 | 952 | lodash._reescape@^3.0.0: 953 | version "3.0.0" 954 | resolved "https://registry.yarnpkg.com/lodash._reescape/-/lodash._reescape-3.0.0.tgz#2b1d6f5dfe07c8a355753e5f27fac7f1cde1616a" 955 | 956 | lodash._reevaluate@^3.0.0: 957 | version "3.0.0" 958 | resolved "https://registry.yarnpkg.com/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz#58bc74c40664953ae0b124d806996daca431e2ed" 959 | 960 | lodash._reinterpolate@^3.0.0: 961 | version "3.0.0" 962 | resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" 963 | 964 | lodash._root@^3.0.0: 965 | version "3.0.1" 966 | resolved "https://registry.yarnpkg.com/lodash._root/-/lodash._root-3.0.1.tgz#fba1c4524c19ee9a5f8136b4609f017cf4ded692" 967 | 968 | lodash.escape@^3.0.0: 969 | version "3.2.0" 970 | resolved "https://registry.yarnpkg.com/lodash.escape/-/lodash.escape-3.2.0.tgz#995ee0dc18c1b48cc92effae71a10aab5b487698" 971 | dependencies: 972 | lodash._root "^3.0.0" 973 | 974 | lodash.isarguments@^3.0.0: 975 | version "3.1.0" 976 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 977 | 978 | lodash.isarray@^3.0.0: 979 | version "3.0.4" 980 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 981 | 982 | lodash.isequal@^4.0.0: 983 | version "4.5.0" 984 | resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" 985 | 986 | lodash.keys@^3.0.0: 987 | version "3.1.2" 988 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 989 | dependencies: 990 | lodash._getnative "^3.0.0" 991 | lodash.isarguments "^3.0.0" 992 | lodash.isarray "^3.0.0" 993 | 994 | lodash.restparam@^3.0.0: 995 | version "3.6.1" 996 | resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" 997 | 998 | lodash.template@^3.0.0: 999 | version "3.6.2" 1000 | resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-3.6.2.tgz#f8cdecc6169a255be9098ae8b0c53d378931d14f" 1001 | dependencies: 1002 | lodash._basecopy "^3.0.0" 1003 | lodash._basetostring "^3.0.0" 1004 | lodash._basevalues "^3.0.0" 1005 | lodash._isiterateecall "^3.0.0" 1006 | lodash._reinterpolate "^3.0.0" 1007 | lodash.escape "^3.0.0" 1008 | lodash.keys "^3.0.0" 1009 | lodash.restparam "^3.0.0" 1010 | lodash.templatesettings "^3.0.0" 1011 | 1012 | lodash.templatesettings@^3.0.0: 1013 | version "3.1.1" 1014 | resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz#fb307844753b66b9f1afa54e262c745307dba8e5" 1015 | dependencies: 1016 | lodash._reinterpolate "^3.0.0" 1017 | lodash.escape "^3.0.0" 1018 | 1019 | lru-cache@2: 1020 | version "2.7.3" 1021 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-2.7.3.tgz#6d4524e8b955f95d4f5b58851ce21dd72fb4e952" 1022 | 1023 | map-stream@~0.1.0: 1024 | version "0.1.0" 1025 | resolved "https://registry.yarnpkg.com/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" 1026 | 1027 | merge-stream@^1.0.0: 1028 | version "1.0.1" 1029 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1" 1030 | dependencies: 1031 | readable-stream "^2.0.1" 1032 | 1033 | micromatch@^2.3.7: 1034 | version "2.3.11" 1035 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1036 | dependencies: 1037 | arr-diff "^2.0.0" 1038 | array-unique "^0.2.1" 1039 | braces "^1.8.2" 1040 | expand-brackets "^0.1.4" 1041 | extglob "^0.3.1" 1042 | filename-regex "^2.0.0" 1043 | is-extglob "^1.0.0" 1044 | is-glob "^2.0.1" 1045 | kind-of "^3.0.2" 1046 | normalize-path "^2.0.1" 1047 | object.omit "^2.0.0" 1048 | parse-glob "^3.0.4" 1049 | regex-cache "^0.4.2" 1050 | 1051 | mime-db@~1.30.0: 1052 | version "1.30.0" 1053 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 1054 | 1055 | mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.7: 1056 | version "2.1.17" 1057 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 1058 | dependencies: 1059 | mime-db "~1.30.0" 1060 | 1061 | minimatch@0.3: 1062 | version "0.3.0" 1063 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-0.3.0.tgz#275d8edaac4f1bb3326472089e7949c8394699dd" 1064 | dependencies: 1065 | lru-cache "2" 1066 | sigmund "~1.0.0" 1067 | 1068 | "minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.4: 1069 | version "3.0.4" 1070 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1071 | dependencies: 1072 | brace-expansion "^1.1.7" 1073 | 1074 | minimist@0.0.8: 1075 | version "0.0.8" 1076 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1077 | 1078 | minimist@^1.1.0: 1079 | version "1.2.0" 1080 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1081 | 1082 | mkdirp@0.3.0: 1083 | version "0.3.0" 1084 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.3.0.tgz#1bbf5ab1ba827af23575143490426455f481fe1e" 1085 | 1086 | mkdirp@0.5.1, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1: 1087 | version "0.5.1" 1088 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1089 | dependencies: 1090 | minimist "0.0.8" 1091 | 1092 | mocha@^2.3.3: 1093 | version "2.5.3" 1094 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-2.5.3.tgz#161be5bdeb496771eb9b35745050b622b5aefc58" 1095 | dependencies: 1096 | commander "2.3.0" 1097 | debug "2.2.0" 1098 | diff "1.4.0" 1099 | escape-string-regexp "1.0.2" 1100 | glob "3.2.11" 1101 | growl "1.9.2" 1102 | jade "0.26.3" 1103 | mkdirp "0.5.1" 1104 | supports-color "1.2.0" 1105 | to-iso-string "0.0.2" 1106 | 1107 | mocha@^4.0.1: 1108 | version "4.0.1" 1109 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-4.0.1.tgz#0aee5a95cf69a4618820f5e51fa31717117daf1b" 1110 | dependencies: 1111 | browser-stdout "1.3.0" 1112 | commander "2.11.0" 1113 | debug "3.1.0" 1114 | diff "3.3.1" 1115 | escape-string-regexp "1.0.5" 1116 | glob "7.1.2" 1117 | growl "1.10.3" 1118 | he "1.1.1" 1119 | mkdirp "0.5.1" 1120 | supports-color "4.4.0" 1121 | 1122 | ms@0.7.1: 1123 | version "0.7.1" 1124 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 1125 | 1126 | ms@2.0.0: 1127 | version "2.0.0" 1128 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1129 | 1130 | multimatch@^2.0.0: 1131 | version "2.1.0" 1132 | resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b" 1133 | dependencies: 1134 | array-differ "^1.0.0" 1135 | array-union "^1.0.1" 1136 | arrify "^1.0.0" 1137 | minimatch "^3.0.0" 1138 | 1139 | multipipe@^0.1.2: 1140 | version "0.1.2" 1141 | resolved "https://registry.yarnpkg.com/multipipe/-/multipipe-0.1.2.tgz#2a8f2ddf70eed564dff2d57f1e1a137d9f05078b" 1142 | dependencies: 1143 | duplexer2 "0.0.2" 1144 | 1145 | node.extend@~1.1.2: 1146 | version "1.1.6" 1147 | resolved "https://registry.yarnpkg.com/node.extend/-/node.extend-1.1.6.tgz#a7b882c82d6c93a4863a5504bd5de8ec86258b96" 1148 | dependencies: 1149 | is "^3.1.0" 1150 | 1151 | normalize-path@^2.0.1: 1152 | version "2.1.1" 1153 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1154 | dependencies: 1155 | remove-trailing-separator "^1.0.1" 1156 | 1157 | oauth-sign@~0.8.1, oauth-sign@~0.8.2: 1158 | version "0.8.2" 1159 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1160 | 1161 | object-assign@^3.0.0: 1162 | version "3.0.0" 1163 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-3.0.0.tgz#9bedd5ca0897949bca47e7ff408062d549f587f2" 1164 | 1165 | object-assign@^4.0.0: 1166 | version "4.1.1" 1167 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1168 | 1169 | object.omit@^2.0.0: 1170 | version "2.0.1" 1171 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1172 | dependencies: 1173 | for-own "^0.1.4" 1174 | is-extendable "^0.1.1" 1175 | 1176 | once@^1.3.0, once@^1.4.0: 1177 | version "1.4.0" 1178 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1179 | dependencies: 1180 | wrappy "1" 1181 | 1182 | ordered-read-streams@^0.3.0: 1183 | version "0.3.0" 1184 | resolved "https://registry.yarnpkg.com/ordered-read-streams/-/ordered-read-streams-0.3.0.tgz#7137e69b3298bb342247a1bbee3881c80e2fd78b" 1185 | dependencies: 1186 | is-stream "^1.0.1" 1187 | readable-stream "^2.0.1" 1188 | 1189 | parse-glob@^3.0.4: 1190 | version "3.0.4" 1191 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1192 | dependencies: 1193 | glob-base "^0.3.0" 1194 | is-dotfile "^1.0.0" 1195 | is-extglob "^1.0.0" 1196 | is-glob "^2.0.0" 1197 | 1198 | path-dirname@^1.0.0: 1199 | version "1.0.2" 1200 | resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" 1201 | 1202 | path-is-absolute@^1.0.0: 1203 | version "1.0.1" 1204 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1205 | 1206 | pause-stream@0.0.11: 1207 | version "0.0.11" 1208 | resolved "https://registry.yarnpkg.com/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" 1209 | dependencies: 1210 | through "~2.3" 1211 | 1212 | pend@~1.2.0: 1213 | version "1.2.0" 1214 | resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" 1215 | 1216 | performance-now@^2.1.0: 1217 | version "2.1.0" 1218 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 1219 | 1220 | pinkie-promise@^2.0.0: 1221 | version "2.0.1" 1222 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1223 | dependencies: 1224 | pinkie "^2.0.0" 1225 | 1226 | pinkie@^2.0.0: 1227 | version "2.0.4" 1228 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1229 | 1230 | preserve@^0.2.0: 1231 | version "0.2.0" 1232 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1233 | 1234 | process-nextick-args@^1.0.6, process-nextick-args@~1.0.6: 1235 | version "1.0.7" 1236 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1237 | 1238 | punycode@^1.4.1: 1239 | version "1.4.1" 1240 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1241 | 1242 | qs@~6.3.0: 1243 | version "6.3.2" 1244 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.2.tgz#e75bd5f6e268122a2a0e0bda630b2550c166502c" 1245 | 1246 | qs@~6.5.1: 1247 | version "6.5.1" 1248 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" 1249 | 1250 | querystringify@~1.0.0: 1251 | version "1.0.0" 1252 | resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-1.0.0.tgz#6286242112c5b712fa654e526652bf6a13ff05cb" 1253 | 1254 | queue@^3.1.0: 1255 | version "3.1.0" 1256 | resolved "https://registry.yarnpkg.com/queue/-/queue-3.1.0.tgz#6c49d01f009e2256788789f2bffac6b8b9990585" 1257 | dependencies: 1258 | inherits "~2.0.0" 1259 | 1260 | queue@^4.2.1: 1261 | version "4.4.2" 1262 | resolved "https://registry.yarnpkg.com/queue/-/queue-4.4.2.tgz#5a9733d9a8b8bd1b36e934bc9c55ab89b28e29c7" 1263 | dependencies: 1264 | inherits "~2.0.0" 1265 | 1266 | randomatic@^1.1.3: 1267 | version "1.1.7" 1268 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 1269 | dependencies: 1270 | is-number "^3.0.0" 1271 | kind-of "^4.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: 1283 | version "2.3.3" 1284 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 1285 | dependencies: 1286 | core-util-is "~1.0.0" 1287 | inherits "~2.0.3" 1288 | isarray "~1.0.0" 1289 | process-nextick-args "~1.0.6" 1290 | safe-buffer "~5.1.1" 1291 | string_decoder "~1.0.3" 1292 | util-deprecate "~1.0.1" 1293 | 1294 | readable-stream@~1.1.9: 1295 | version "1.1.14" 1296 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" 1297 | dependencies: 1298 | core-util-is "~1.0.0" 1299 | inherits "~2.0.1" 1300 | isarray "0.0.1" 1301 | string_decoder "~0.10.x" 1302 | 1303 | regex-cache@^0.4.2: 1304 | version "0.4.4" 1305 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 1306 | dependencies: 1307 | is-equal-shallow "^0.1.3" 1308 | 1309 | remove-trailing-separator@^1.0.1: 1310 | version "1.1.0" 1311 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 1312 | 1313 | repeat-element@^1.1.2: 1314 | version "1.1.2" 1315 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1316 | 1317 | repeat-string@^1.5.2: 1318 | version "1.6.1" 1319 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1320 | 1321 | replace-ext@0.0.1: 1322 | version "0.0.1" 1323 | resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-0.0.1.tgz#29bbd92078a739f0bcce2b4ee41e837953522924" 1324 | 1325 | replace-ext@^1.0.0: 1326 | version "1.0.0" 1327 | resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb" 1328 | 1329 | request@^2.83.0: 1330 | version "2.83.0" 1331 | resolved "https://registry.yarnpkg.com/request/-/request-2.83.0.tgz#ca0b65da02ed62935887808e6f510381034e3356" 1332 | dependencies: 1333 | aws-sign2 "~0.7.0" 1334 | aws4 "^1.6.0" 1335 | caseless "~0.12.0" 1336 | combined-stream "~1.0.5" 1337 | extend "~3.0.1" 1338 | forever-agent "~0.6.1" 1339 | form-data "~2.3.1" 1340 | har-validator "~5.0.3" 1341 | hawk "~6.0.2" 1342 | http-signature "~1.2.0" 1343 | is-typedarray "~1.0.0" 1344 | isstream "~0.1.2" 1345 | json-stringify-safe "~5.0.1" 1346 | mime-types "~2.1.17" 1347 | oauth-sign "~0.8.2" 1348 | performance-now "^2.1.0" 1349 | qs "~6.5.1" 1350 | safe-buffer "^5.1.1" 1351 | stringstream "~0.0.5" 1352 | tough-cookie "~2.3.3" 1353 | tunnel-agent "^0.6.0" 1354 | uuid "^3.1.0" 1355 | 1356 | request@~2.79.0: 1357 | version "2.79.0" 1358 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" 1359 | dependencies: 1360 | aws-sign2 "~0.6.0" 1361 | aws4 "^1.2.1" 1362 | caseless "~0.11.0" 1363 | combined-stream "~1.0.5" 1364 | extend "~3.0.0" 1365 | forever-agent "~0.6.1" 1366 | form-data "~2.1.1" 1367 | har-validator "~2.0.6" 1368 | hawk "~3.1.3" 1369 | http-signature "~1.1.0" 1370 | is-typedarray "~1.0.0" 1371 | isstream "~0.1.2" 1372 | json-stringify-safe "~5.0.1" 1373 | mime-types "~2.1.7" 1374 | oauth-sign "~0.8.1" 1375 | qs "~6.3.0" 1376 | stringstream "~0.0.4" 1377 | tough-cookie "~2.3.0" 1378 | tunnel-agent "~0.4.1" 1379 | uuid "^3.0.0" 1380 | 1381 | requires-port@~1.0.0: 1382 | version "1.0.0" 1383 | resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" 1384 | 1385 | rimraf@2: 1386 | version "2.6.2" 1387 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 1388 | dependencies: 1389 | glob "^7.0.5" 1390 | 1391 | safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1392 | version "5.1.1" 1393 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 1394 | 1395 | semver@^5.4.1: 1396 | version "5.4.1" 1397 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 1398 | 1399 | sigmund@~1.0.0: 1400 | version "1.0.1" 1401 | resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590" 1402 | 1403 | sntp@1.x.x: 1404 | version "1.0.9" 1405 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 1406 | dependencies: 1407 | hoek "2.x.x" 1408 | 1409 | sntp@2.x.x: 1410 | version "2.1.0" 1411 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8" 1412 | dependencies: 1413 | hoek "4.x.x" 1414 | 1415 | source-map-support@^0.5.0: 1416 | version "0.5.0" 1417 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.0.tgz#2018a7ad2bdf8faf2691e5fddab26bed5a2bacab" 1418 | dependencies: 1419 | source-map "^0.6.0" 1420 | 1421 | source-map@^0.6.0: 1422 | version "0.6.1" 1423 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 1424 | 1425 | sparkles@^1.0.0: 1426 | version "1.0.0" 1427 | resolved "https://registry.yarnpkg.com/sparkles/-/sparkles-1.0.0.tgz#1acbbfb592436d10bbe8f785b7cc6f82815012c3" 1428 | 1429 | split@0.3: 1430 | version "0.3.3" 1431 | resolved "https://registry.yarnpkg.com/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" 1432 | dependencies: 1433 | through "2" 1434 | 1435 | sshpk@^1.7.0: 1436 | version "1.13.1" 1437 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 1438 | dependencies: 1439 | asn1 "~0.2.3" 1440 | assert-plus "^1.0.0" 1441 | dashdash "^1.12.0" 1442 | getpass "^0.1.1" 1443 | optionalDependencies: 1444 | bcrypt-pbkdf "^1.0.0" 1445 | ecc-jsbn "~0.1.1" 1446 | jsbn "~0.1.0" 1447 | tweetnacl "~0.14.0" 1448 | 1449 | stat-mode@^0.2.0: 1450 | version "0.2.2" 1451 | resolved "https://registry.yarnpkg.com/stat-mode/-/stat-mode-0.2.2.tgz#e6c80b623123d7d80cf132ce538f346289072502" 1452 | 1453 | stream-combiner@~0.0.4: 1454 | version "0.0.4" 1455 | resolved "https://registry.yarnpkg.com/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" 1456 | dependencies: 1457 | duplexer "~0.1.1" 1458 | 1459 | stream-shift@^1.0.0: 1460 | version "1.0.0" 1461 | resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" 1462 | 1463 | streamfilter@^1.0.5: 1464 | version "1.0.7" 1465 | resolved "https://registry.yarnpkg.com/streamfilter/-/streamfilter-1.0.7.tgz#ae3e64522aa5a35c061fd17f67620c7653c643c9" 1466 | dependencies: 1467 | readable-stream "^2.0.2" 1468 | 1469 | streamifier@~0.1.1: 1470 | version "0.1.1" 1471 | resolved "https://registry.yarnpkg.com/streamifier/-/streamifier-0.1.1.tgz#97e98d8fa4d105d62a2691d1dc07e820db8dfc4f" 1472 | 1473 | string_decoder@~0.10.x: 1474 | version "0.10.31" 1475 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 1476 | 1477 | string_decoder@~1.0.3: 1478 | version "1.0.3" 1479 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 1480 | dependencies: 1481 | safe-buffer "~5.1.0" 1482 | 1483 | stringstream@~0.0.4, stringstream@~0.0.5: 1484 | version "0.0.5" 1485 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 1486 | 1487 | strip-ansi@^3.0.0: 1488 | version "3.0.1" 1489 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1490 | dependencies: 1491 | ansi-regex "^2.0.0" 1492 | 1493 | strip-bom-stream@^1.0.0: 1494 | version "1.0.0" 1495 | resolved "https://registry.yarnpkg.com/strip-bom-stream/-/strip-bom-stream-1.0.0.tgz#e7144398577d51a6bed0fa1994fa05f43fd988ee" 1496 | dependencies: 1497 | first-chunk-stream "^1.0.0" 1498 | strip-bom "^2.0.0" 1499 | 1500 | strip-bom@^2.0.0: 1501 | version "2.0.0" 1502 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 1503 | dependencies: 1504 | is-utf8 "^0.2.0" 1505 | 1506 | supports-color@1.2.0: 1507 | version "1.2.0" 1508 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-1.2.0.tgz#ff1ed1e61169d06b3cf2d588e188b18d8847e17e" 1509 | 1510 | supports-color@4.4.0: 1511 | version "4.4.0" 1512 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.4.0.tgz#883f7ddabc165142b2a61427f3352ded195d1a3e" 1513 | dependencies: 1514 | has-flag "^2.0.0" 1515 | 1516 | supports-color@^2.0.0: 1517 | version "2.0.0" 1518 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1519 | 1520 | tar@^2.2.1: 1521 | version "2.2.1" 1522 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 1523 | dependencies: 1524 | block-stream "*" 1525 | fstream "^1.0.2" 1526 | inherits "2" 1527 | 1528 | through2-filter@^2.0.0: 1529 | version "2.0.0" 1530 | resolved "https://registry.yarnpkg.com/through2-filter/-/through2-filter-2.0.0.tgz#60bc55a0dacb76085db1f9dae99ab43f83d622ec" 1531 | dependencies: 1532 | through2 "~2.0.0" 1533 | xtend "~4.0.0" 1534 | 1535 | through2@^0.6.0, through2@^0.6.1, through2@~0.6.5: 1536 | version "0.6.5" 1537 | resolved "https://registry.yarnpkg.com/through2/-/through2-0.6.5.tgz#41ab9c67b29d57209071410e1d7a7a968cd3ad48" 1538 | dependencies: 1539 | readable-stream ">=1.0.33-1 <1.1.0-0" 1540 | xtend ">=4.0.0 <4.1.0-0" 1541 | 1542 | through2@^2.0.0, through2@^2.0.1, through2@^2.0.3, through2@~2.0.0, through2@~2.0.3: 1543 | version "2.0.3" 1544 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 1545 | dependencies: 1546 | readable-stream "^2.1.5" 1547 | xtend "~4.0.1" 1548 | 1549 | through@2, through@~2.3, through@~2.3.1: 1550 | version "2.3.8" 1551 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 1552 | 1553 | time-stamp@^1.0.0: 1554 | version "1.1.0" 1555 | resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-1.1.0.tgz#764a5a11af50561921b133f3b44e618687e0f5c3" 1556 | 1557 | to-absolute-glob@^0.1.1: 1558 | version "0.1.1" 1559 | resolved "https://registry.yarnpkg.com/to-absolute-glob/-/to-absolute-glob-0.1.1.tgz#1cdfa472a9ef50c239ee66999b662ca0eb39937f" 1560 | dependencies: 1561 | extend-shallow "^2.0.1" 1562 | 1563 | to-iso-string@0.0.2: 1564 | version "0.0.2" 1565 | resolved "https://registry.yarnpkg.com/to-iso-string/-/to-iso-string-0.0.2.tgz#4dc19e664dfccbe25bd8db508b00c6da158255d1" 1566 | 1567 | tough-cookie@~2.3.0, tough-cookie@~2.3.3: 1568 | version "2.3.3" 1569 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 1570 | dependencies: 1571 | punycode "^1.4.1" 1572 | 1573 | tunnel-agent@^0.6.0: 1574 | version "0.6.0" 1575 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 1576 | dependencies: 1577 | safe-buffer "^5.0.1" 1578 | 1579 | tunnel-agent@~0.4.1: 1580 | version "0.4.3" 1581 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 1582 | 1583 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 1584 | version "0.14.5" 1585 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 1586 | 1587 | typescript@^2.0.3: 1588 | version "2.6.2" 1589 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.6.2.tgz#3c5b6fd7f6de0914269027f03c0946758f7673a4" 1590 | 1591 | unique-stream@^2.0.2: 1592 | version "2.2.1" 1593 | resolved "https://registry.yarnpkg.com/unique-stream/-/unique-stream-2.2.1.tgz#5aa003cfbe94c5ff866c4e7d668bb1c4dbadb369" 1594 | dependencies: 1595 | json-stable-stringify "^1.0.0" 1596 | through2-filter "^2.0.0" 1597 | 1598 | url-parse@^1.1.9: 1599 | version "1.2.0" 1600 | resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.2.0.tgz#3a19e8aaa6d023ddd27dcc44cb4fc8f7fec23986" 1601 | dependencies: 1602 | querystringify "~1.0.0" 1603 | requires-port "~1.0.0" 1604 | 1605 | util-deprecate@~1.0.1: 1606 | version "1.0.2" 1607 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1608 | 1609 | uuid@^3.0.0, uuid@^3.1.0: 1610 | version "3.1.0" 1611 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 1612 | 1613 | vali-date@^1.0.0: 1614 | version "1.0.0" 1615 | resolved "https://registry.yarnpkg.com/vali-date/-/vali-date-1.0.0.tgz#1b904a59609fb328ef078138420934f6b86709a6" 1616 | 1617 | verror@1.10.0: 1618 | version "1.10.0" 1619 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 1620 | dependencies: 1621 | assert-plus "^1.0.0" 1622 | core-util-is "1.0.2" 1623 | extsprintf "^1.2.0" 1624 | 1625 | vinyl-fs@^2.0.0, vinyl-fs@^2.4.3: 1626 | version "2.4.4" 1627 | resolved "https://registry.yarnpkg.com/vinyl-fs/-/vinyl-fs-2.4.4.tgz#be6ff3270cb55dfd7d3063640de81f25d7532239" 1628 | dependencies: 1629 | duplexify "^3.2.0" 1630 | glob-stream "^5.3.2" 1631 | graceful-fs "^4.0.0" 1632 | gulp-sourcemaps "1.6.0" 1633 | is-valid-glob "^0.3.0" 1634 | lazystream "^1.0.0" 1635 | lodash.isequal "^4.0.0" 1636 | merge-stream "^1.0.0" 1637 | mkdirp "^0.5.0" 1638 | object-assign "^4.0.0" 1639 | readable-stream "^2.0.4" 1640 | strip-bom "^2.0.0" 1641 | strip-bom-stream "^1.0.0" 1642 | through2 "^2.0.0" 1643 | through2-filter "^2.0.0" 1644 | vali-date "^1.0.0" 1645 | vinyl "^1.0.0" 1646 | 1647 | vinyl-source-stream@^1.1.0: 1648 | version "1.1.0" 1649 | resolved "https://registry.yarnpkg.com/vinyl-source-stream/-/vinyl-source-stream-1.1.0.tgz#44cbe5108205279deb0c5653c094a2887938b1ab" 1650 | dependencies: 1651 | through2 "^0.6.1" 1652 | vinyl "^0.4.3" 1653 | 1654 | vinyl@^0.4.3, vinyl@~0.4.6: 1655 | version "0.4.6" 1656 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-0.4.6.tgz#2f356c87a550a255461f36bbeb2a5ba8bf784847" 1657 | dependencies: 1658 | clone "^0.2.0" 1659 | clone-stats "^0.0.1" 1660 | 1661 | vinyl@^0.5.0: 1662 | version "0.5.3" 1663 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-0.5.3.tgz#b0455b38fc5e0cf30d4325132e461970c2091cde" 1664 | dependencies: 1665 | clone "^1.0.0" 1666 | clone-stats "^0.0.1" 1667 | replace-ext "0.0.1" 1668 | 1669 | vinyl@^1.0.0: 1670 | version "1.2.0" 1671 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-1.2.0.tgz#5c88036cf565e5df05558bfc911f8656df218884" 1672 | dependencies: 1673 | clone "^1.0.0" 1674 | clone-stats "^0.0.1" 1675 | replace-ext "0.0.1" 1676 | 1677 | vinyl@^2.0.2: 1678 | version "2.1.0" 1679 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-2.1.0.tgz#021f9c2cf951d6b939943c89eb5ee5add4fd924c" 1680 | dependencies: 1681 | clone "^2.1.1" 1682 | clone-buffer "^1.0.0" 1683 | clone-stats "^1.0.0" 1684 | cloneable-readable "^1.0.0" 1685 | remove-trailing-separator "^1.0.1" 1686 | replace-ext "^1.0.0" 1687 | 1688 | vinyl@~2.0.1: 1689 | version "2.0.2" 1690 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-2.0.2.tgz#0a3713d8d4e9221c58f10ca16c0116c9e25eda7c" 1691 | dependencies: 1692 | clone "^1.0.0" 1693 | clone-buffer "^1.0.0" 1694 | clone-stats "^1.0.0" 1695 | cloneable-readable "^1.0.0" 1696 | is-stream "^1.1.0" 1697 | remove-trailing-separator "^1.0.1" 1698 | replace-ext "^1.0.0" 1699 | 1700 | vscode@^1.0.0: 1701 | version "1.1.10" 1702 | resolved "https://registry.yarnpkg.com/vscode/-/vscode-1.1.10.tgz#d1cba378ab24f1d3ddf9cd470d242ee1472dd35b" 1703 | dependencies: 1704 | glob "^7.1.2" 1705 | gulp-chmod "^2.0.0" 1706 | gulp-filter "^5.0.1" 1707 | gulp-gunzip "1.0.0" 1708 | gulp-remote-src "^0.4.3" 1709 | gulp-symdest "^1.1.0" 1710 | gulp-untar "^0.0.6" 1711 | gulp-vinyl-zip "^2.1.0" 1712 | mocha "^4.0.1" 1713 | request "^2.83.0" 1714 | semver "^5.4.1" 1715 | source-map-support "^0.5.0" 1716 | url-parse "^1.1.9" 1717 | vinyl-source-stream "^1.1.0" 1718 | 1719 | wrappy@1: 1720 | version "1.0.2" 1721 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1722 | 1723 | "xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0, xtend@~4.0.0, xtend@~4.0.1: 1724 | version "4.0.1" 1725 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 1726 | 1727 | yauzl@^2.2.1: 1728 | version "2.9.1" 1729 | resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.9.1.tgz#a81981ea70a57946133883f029c5821a89359a7f" 1730 | dependencies: 1731 | buffer-crc32 "~0.2.3" 1732 | fd-slicer "~1.0.1" 1733 | 1734 | yazl@^2.2.1: 1735 | version "2.4.3" 1736 | resolved "https://registry.yarnpkg.com/yazl/-/yazl-2.4.3.tgz#ec26e5cc87d5601b9df8432dbdd3cd2e5173a071" 1737 | dependencies: 1738 | buffer-crc32 "~0.2.3" 1739 | --------------------------------------------------------------------------------