├── .gitignore ├── media ├── logo.png └── demosocks.gif ├── .vscodeignore ├── src ├── config │ └── Config.ts ├── common │ └── index.ts ├── service │ └── SocketIoCodeService.ts └── extension.ts ├── CHANGELOG.md ├── tsconfig.json ├── .vscode ├── settings.json ├── launch.json └── tasks.json ├── test ├── extension.test.ts └── index.ts ├── LICENSE ├── README.md ├── vsc-extension-quickstart.md ├── package.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | node_modules -------------------------------------------------------------------------------- /media/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sockscode/sockscode-vscode/HEAD/media/logo.png -------------------------------------------------------------------------------- /media/demosocks.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sockscode/sockscode-vscode/HEAD/media/demosocks.gif -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /src/config/Config.ts: -------------------------------------------------------------------------------- 1 | import { workspace } from 'vscode'; 2 | 3 | export function getConfig() { 4 | return workspace.getConfiguration('sockscode'); 5 | } 6 | 7 | export function getSockscodeServerUrl(): string { 8 | return getConfig().get('server'); 9 | } -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | All notable changes to the "sockscode-vscode" extension will be documented in this file. 3 | 4 | Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. 5 | 6 | ## [Unreleased] 7 | - Initial release -------------------------------------------------------------------------------- /src/common/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * FIXME move to 'common' npm package 3 | */ 4 | export interface TreeFile { 5 | filename: string, 6 | isSelected?: boolean, 7 | isDirectory?: boolean, 8 | isExpanded?: boolean, 9 | extension?: string, 10 | content?: string, 11 | children?: TreeFile[] 12 | } 13 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "module": "commonjs", 4 | "target": "es6", 5 | "outDir": "out", 6 | "moduleResolution": "node", 7 | "noImplicitAny": true, 8 | "lib": [ 9 | "es6" 10 | ], 11 | "sourceMap": true, 12 | "rootDir": "." 13 | }, 14 | "exclude": [ 15 | "node_modules", 16 | ".vscode-test" 17 | ] 18 | } -------------------------------------------------------------------------------- /.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 | "typescript.tsdk": "./node_modules/typescript/lib", 10 | "vsicons.presets.angular": false // we want to use the TS server from our node_modules folder to control its version 11 | } -------------------------------------------------------------------------------- /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; -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 shyyko.serhiy 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /.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/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 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # sockscode-vscode 2 | 3 | Enables pair programming. Share your code with your buddies. 4 | ![demo](media/demosocks.gif) 5 | 6 | To start a pair programming session: 7 | 8 | 1. Press F1 9 | 2. Enter 'Sockscode create a new room.'; 10 | 3. You'll receive roomUuid - you'll need to send this uuid to your buddies. 11 | 4. Your buddies'll need to press F1 and enter 'Sockscode connect to a room.' 12 | 5. Want to exit session? F1 and Sockscode disconnect. 13 | 14 | Don't use vscode? You can use https://sockscode.azurewebsites.net/ too. 15 | 16 | This add-in provides you a way to have a pair coding session with any other sockscode compatible plugins: 17 | * sockscode-office 18 | * sockscode-web 19 | 20 | ## Privacy 21 | Anyone with the roomUuid can join your session and see your code. 22 | If you want to use this extension in your corporate environment you should deploy your own sockscode-server 23 | https://github.com/sockscode/sockscode-server and set 'sockscode.server' property for sockscode-vscode extension. 24 | 25 | ## Commands 26 | 27 | List of commands: 28 | ```json 29 | { 30 | "commands": [ 31 | 32 | { 33 | "command": "sockscode.createRoom", 34 | "title": "Sockscode create a new room." 35 | }, 36 | { 37 | "command": "sockscode.connect", 38 | "title": "Sockscode connect to a room." 39 | }, 40 | { 41 | "command": "sockscode.disconnect", 42 | "title": "Sockscode disconect." 43 | } 44 | ] 45 | } 46 | ``` 47 | 48 | woa. This is awesome like a pair of socks 49 | 50 | I know right? 51 | -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "sockscode-vscode", 3 | "displayName": "sockscode-vscode", 4 | "description": "Pair programming", 5 | "version": "1.0.1", 6 | "publisher": "shyykoserhiy", 7 | "engines": { 8 | "vscode": "^1.18.0" 9 | }, 10 | "icon": "media/logo.png", 11 | "galleryBanner": { 12 | "color": "#11B460", 13 | "theme": "light" 14 | }, 15 | "repository": { 16 | "type": "git", 17 | "url": "https://github.com/sockscode/sockscode-vscode.git" 18 | }, 19 | "categories": [ 20 | "Other" 21 | ], 22 | "activationEvents": [ 23 | "onCommand:sockscode.createRoom", 24 | "onCommand:sockscode.connect", 25 | "onCommand:sockscode.disconnect" 26 | ], 27 | "main": "./out/src/extension", 28 | "contributes": { 29 | "commands": [ 30 | { 31 | "command": "sockscode.createRoom", 32 | "title": "Sockscode create a new room." 33 | }, 34 | { 35 | "command": "sockscode.connect", 36 | "title": "Sockscode connect to a room." 37 | }, 38 | { 39 | "command": "sockscode.disconnect", 40 | "title": "Sockscode disconnect." 41 | } 42 | ], 43 | "configuration": { 44 | "type": "object", 45 | "title": "sockscode-vscode configuration", 46 | "properties": { 47 | "sockscode.server": { 48 | "type": "string", 49 | "default": "https://sockscode.azurewebsites.net/", 50 | "description": "Specifies sockscode compatible server url." 51 | } 52 | } 53 | } 54 | }, 55 | "scripts": { 56 | "vscode:prepublish": "npm run compile", 57 | "compile": "tsc -p ./", 58 | "watch": "tsc -watch -p ./", 59 | "postinstall": "node ./node_modules/vscode/bin/install", 60 | "test": "npm run compile && node ./node_modules/vscode/bin/test" 61 | }, 62 | "dependencies": { 63 | "socket.io": "^1.7.2", 64 | "socket.io-client": "^1.7.2" 65 | }, 66 | "devDependencies": { 67 | "@types/mocha": "^2.2.32", 68 | "@types/node": "^6.0.40", 69 | "@types/socket.io": "^1.4.27", 70 | "@types/socket.io-client": "^1.4.29", 71 | "mocha": "^2.3.3", 72 | "typescript": "^2.6.1", 73 | "vscode": "^1.1.6" 74 | } 75 | } 76 | -------------------------------------------------------------------------------- /src/service/SocketIoCodeService.ts: -------------------------------------------------------------------------------- 1 | import * as socketio from 'socket.io-client'; 2 | import { getSockscodeServerUrl } from '../config/Config'; 3 | import { TreeFile } from '../common'; 4 | 5 | export interface CodeChangeSocketData { 6 | username: string, 7 | change: CodeChangePartialSocketData 8 | } 9 | 10 | export interface CodeChangePartialSocketData { code: string, filePath: string[] } 11 | export interface LoadFileSocketData { filePath: string[] } 12 | 13 | export class SocketIoCodeService { 14 | private static _instance: SocketIoCodeService = null; 15 | 16 | public static createInstance(): SocketIoCodeService { 17 | this._instance = new SocketIoCodeService(getSockscodeServerUrl()); 18 | return this._instance; 19 | } 20 | 21 | private _io: typeof socketio.Socket; 22 | 23 | constructor(path: string) { 24 | this._io = socketio.connect(path, { path: '/code' }); 25 | this._io.on('error', () => { 26 | //fixme 27 | console.log(`socket.io error ${JSON.stringify(arguments)}`); 28 | }); 29 | this._io.on('connect_error', () => { 30 | //fixme 31 | console.log(`socket.io error connect_error ${JSON.stringify(arguments)}`); 32 | }); 33 | this._io.on('connect_timeout', () => { 34 | //fixme 35 | console.log(`socket.io error connect_timeout ${JSON.stringify(arguments)}`); 36 | }); 37 | this._io.on('connect', () => { 38 | //fixme 39 | console.log(`socket.io connect ${JSON.stringify(arguments)}`); 40 | }); 41 | } 42 | 43 | close() { 44 | this._io.close(); 45 | } 46 | 47 | changeCode(codeChangePartialSocketData: CodeChangePartialSocketData) { 48 | this._io.emit('code change', codeChangePartialSocketData); 49 | } 50 | 51 | createRoom() { 52 | this._io.emit('create room'); 53 | } 54 | 55 | joinRoom(roomUuid: string) { 56 | this._io.emit('join room', roomUuid); 57 | } 58 | 59 | sendFilesStructure(files: TreeFile[]) { 60 | this._io.emit('files structure', { children: files }); 61 | } 62 | 63 | requestFilesStructure() { 64 | this._io.emit('request files structure'); 65 | } 66 | 67 | loadFile(loadFile: LoadFileSocketData) { 68 | this._io.emit('load file', loadFile); 69 | } 70 | 71 | onJoinedRoom(joinedRoomFunc: (roomUuid: string) => void) { 72 | this._io.on('joined room', (roomUuid: string) => { 73 | joinedRoomFunc(roomUuid); 74 | }) 75 | } 76 | 77 | onCodeChange(codeChangeFunc: (data: CodeChangeSocketData) => void) { 78 | this._io.on('code change', (data: CodeChangeSocketData) => { 79 | codeChangeFunc(data); 80 | }); 81 | } 82 | 83 | onCreateRoom(roomCreatedFunc: (roomUuid: string) => void) { 84 | this._io.on('create room', (roomUuid: string) => { 85 | roomCreatedFunc(roomUuid); 86 | }) 87 | } 88 | 89 | onLoadFile(onLoadFileFunc: (loadFile: LoadFileSocketData) => void) { 90 | this._io.on('load file', (loadFile: LoadFileSocketData) => { 91 | onLoadFileFunc(loadFile); 92 | }) 93 | } 94 | 95 | onFilesStructureRequest(onFilesStructureRequest: () => void) { 96 | this._io.on('request files structure', () => { 97 | onFilesStructureRequest(); 98 | }) 99 | } 100 | 101 | onFilesStructure(onFilesStructureRequest: (files: { children: TreeFile[] }) => void) { 102 | this._io.on('files structure', (files: { children: TreeFile[] }) => { 103 | onFilesStructureRequest(files); 104 | }) 105 | } 106 | 107 | onConnection(onConnectionFunc: () => void, onDisconnectFunc: () => void) { 108 | this._io.on('connect', () => { 109 | onConnectionFunc(); 110 | 111 | }); 112 | this._io.on('disconnect', () => { 113 | onDisconnectFunc(); 114 | }); 115 | } 116 | } 117 | -------------------------------------------------------------------------------- /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 { Disposable, ExtensionContext, window, commands, TextEditor, workspace, TextDocumentChangeEvent, Range, Uri, RelativePattern, TextDocument } from 'vscode'; 5 | import * as socketio from 'socket.io-client'; 6 | import { SocketIoCodeService } from './service/SocketIoCodeService'; 7 | import * as path from 'path'; 8 | import * as fs from 'fs'; 9 | 10 | import { TreeFile } from './common'; 11 | 12 | class SocksCodeController { 13 | private _socketIoCodeService: SocketIoCodeService; 14 | private _roomUuid: string; 15 | private _disposable: Disposable; 16 | /** 17 | * True if this editor is master editor(the editor that has started the session) 18 | */ 19 | private _isMaster: boolean; 20 | /** 21 | * We store this value to ensure to not send a change code socket event 22 | * if the text in change is the same as we've received in socket. 23 | */ 24 | private _prevRemoteText: string; 25 | 26 | private _skipOnDidChangeActiveTextEditor = false; 27 | private _skipOnDidChangeTextDocument = false; 28 | 29 | constructor() { 30 | this._socketIoCodeService = SocketIoCodeService.createInstance(); 31 | this._socketIoCodeService.onCodeChange(async (data) => { 32 | //FIXME cache maybe? 33 | const { filePath, code } = data.change; 34 | const files = await workspace.findFiles(new RelativePattern(workspace.rootPath, path.join.apply(path, filePath))); 35 | if (!files[0]) { 36 | // the file doesn't exist yet, let's create it and all folders in it's path 37 | let rootTreeFile: TreeFile = null; 38 | let currentTreeFile: TreeFile = null; 39 | filePath.forEach((pathPart, i) => { 40 | const treeFile: TreeFile = filePath.length - 1 !== i ? 41 | { 42 | filename: pathPart, 43 | isDirectory: true 44 | } : 45 | { 46 | filename: pathPart, 47 | isDirectory: false 48 | }; 49 | if (rootTreeFile) { 50 | rootTreeFile = treeFile; 51 | } 52 | if (currentTreeFile && currentTreeFile.isDirectory) { 53 | currentTreeFile.children = [treeFile]; 54 | } 55 | currentTreeFile = treeFile; 56 | }); 57 | ensureFilesExist([rootTreeFile]); 58 | } 59 | const document = await workspace.openTextDocument(files[0] || path.join.apply(path, [workspace.rootPath].concat(filePath))); 60 | let editor = window.activeTextEditor; 61 | if (!editor || editor.document !== document) { 62 | editor = await window.showTextDocument(document); 63 | } 64 | 65 | editor.edit((editBuilder) => { 66 | //FIXME change this to actual change tracking 67 | //it will lesser load on server make things faster for big files! 68 | // this uglines is only for POC 69 | this._prevRemoteText = code; 70 | editBuilder.replace(new Range(0, 0, 99999, 0), code); 71 | }); 72 | }); 73 | this._socketIoCodeService.onCreateRoom((_roomUuid) => { 74 | this._roomUuid = _roomUuid; 75 | this._isMaster = true; 76 | window.showInformationMessage(`Room created. Room uuid: ${this._roomUuid}`); 77 | }); 78 | this._socketIoCodeService.onLoadFile(async (loadFile) => { 79 | if (!this._isMaster) { 80 | console.log('onFileOpenRequest not a master', loadFile); 81 | return; 82 | } 83 | const { filePath } = loadFile; 84 | const files = await workspace.findFiles(new RelativePattern(workspace.rootPath, path.join.apply(path, filePath))); 85 | if (files[0]) { 86 | const document = await workspace.openTextDocument(files[0]); 87 | this._socketIoCodeService.changeCode({ filePath, code: document.getText() }); 88 | } 89 | }); 90 | this._socketIoCodeService.onFilesStructureRequest(async () => { 91 | console.log('onFilesStructureRequest'); 92 | if (!this._isMaster) { 93 | console.log('onFilesStructureRequest not a master'); 94 | return; 95 | } 96 | const filesStructure = await getFilesStructure(); 97 | this._socketIoCodeService.sendFilesStructure(filesStructure); 98 | }); 99 | this._socketIoCodeService.onJoinedRoom(async (roomUuid) => { 100 | this._roomUuid = roomUuid; 101 | this._isMaster = false; 102 | window.showInformationMessage(`Joined room. Room uuid: ${this._roomUuid}`); 103 | this._socketIoCodeService.requestFilesStructure(); 104 | }); 105 | this._socketIoCodeService.onFilesStructure(async (files) => { 106 | await ensureFilesExist(files.children); 107 | window.showInformationMessage(`Joined room. Room uuid: ${this._roomUuid}`); 108 | }); 109 | 110 | //vscode event subscriptions 111 | let subscriptions: Disposable[] = []; 112 | window.onDidChangeActiveTextEditor(this._onDidChangeActiveTextEditor, this, subscriptions) 113 | workspace.onDidChangeTextDocument(this._onDidChangeTextDocument, this, subscriptions); 114 | // create a combined disposable from both event subscriptions 115 | this._disposable = Disposable.from(...subscriptions); 116 | } 117 | 118 | public createRoom() { 119 | this._socketIoCodeService.createRoom(); 120 | } 121 | 122 | public joinRoom(roomUuid: string) { 123 | this._socketIoCodeService.joinRoom(roomUuid); 124 | this._isMaster = false; 125 | } 126 | 127 | public dispose() { 128 | this._socketIoCodeService.close(); 129 | this._disposable.dispose(); 130 | } 131 | 132 | private _onDidChangeActiveTextEditor(textEditor: TextEditor) { 133 | // change of active text editor triggers chageTextDocument event, that we don't want to trigger in this case. 134 | this._skipOnDidChangeTextDocument = true; 135 | if (!this._isMaster) { 136 | this._socketIoCodeService.loadFile({ filePath: fullPathToFilePath(textEditor.document.fileName) }); 137 | } 138 | } 139 | 140 | private _onDidChangeTextDocument(textDocumentChangeEvent: TextDocumentChangeEvent) { 141 | //fixme? 142 | if (this._skipOnDidChangeTextDocument) { 143 | this._skipOnDidChangeTextDocument = false; 144 | return; 145 | } 146 | this._onCodeChange(textDocumentChangeEvent.document); 147 | } 148 | 149 | private showRoom() { 150 | window.showInformationMessage(`Your room uuid: ${this._roomUuid}`); 151 | } 152 | 153 | private _onCodeChange(textDocument: TextDocument) { 154 | if (!textDocument) { 155 | const editor = window.activeTextEditor; 156 | if (!editor) { 157 | return; 158 | } 159 | textDocument = editor.document; 160 | } 161 | 162 | const text = textDocument.getText(); 163 | const filePath = textDocument.fileName; 164 | if (text === this._prevRemoteText) { 165 | this._prevRemoteText = null; 166 | return; 167 | } 168 | this._socketIoCodeService.changeCode({ code: text, filePath: fullPathToFilePath(filePath) }); 169 | } 170 | } 171 | 172 | function fullPathToFilePath(filePath: string) { 173 | return filePath.replace(workspace.rootPath, '').split(path.sep).filter(Boolean) 174 | } 175 | // this method is called when your extension is activated 176 | // your extension is activated the very first time the command is executed 177 | export function activate(context: ExtensionContext) { 178 | let socksCodeController: SocksCodeController; 179 | 180 | let disposableComands = [ 181 | commands.registerCommand('sockscode.createRoom', () => { 182 | if (socksCodeController) { 183 | socksCodeController.dispose(); 184 | } 185 | socksCodeController = new SocksCodeController(); 186 | startWatchingFiles(socksCodeController); 187 | socksCodeController.createRoom(); 188 | }), 189 | commands.registerCommand('sockscode.connect', () => { 190 | // The code you place here will be executed every time your command is executed 191 | // Display a message box to the user 192 | window.showInputBox({ prompt: 'Please provide room uuid to connect to' }) 193 | .then(roomUuid => { 194 | if (socksCodeController) { 195 | socksCodeController.dispose(); 196 | } 197 | socksCodeController = new SocksCodeController(); 198 | socksCodeController.joinRoom(roomUuid); 199 | }); 200 | }), 201 | commands.registerCommand('sockscode.disconnect', () => { 202 | // The code you place here will be executed every time your command is executed 203 | // Display a message box to the user 204 | if (socksCodeController) { 205 | socksCodeController.dispose(); 206 | socksCodeController = null; 207 | } 208 | window.showInformationMessage('Disconnected'); 209 | }) 210 | ]; 211 | 212 | context.subscriptions.push(...disposableComands); 213 | } 214 | 215 | //#region filesystem 216 | 217 | async function ensureFilesExist(files: TreeFile[]) { 218 | const promiseMkdir = (path: string) => { 219 | return new Promise((res, rej) => { 220 | fs.mkdir(path, (err) => { 221 | res(); //fixme in case of error 222 | }); 223 | }); 224 | } 225 | 226 | const promiseCreateFile = (path: string) => { 227 | return new Promise((res, rej) => { 228 | fs.writeFile(path, '', (err) => { 229 | res(); //fixme in case of error 230 | }); 231 | }); 232 | } 233 | 234 | const promises: Promise[] = []; 235 | const ensureFileExist = (treeFile: TreeFile, pathPart: string[]) => { 236 | const pathPartC = pathPart.concat(treeFile.filename); 237 | if (treeFile.isDirectory) { 238 | promises.push(promiseMkdir(path.join.apply(path, pathPartC))); 239 | treeFile.children.forEach((treeFile) => { 240 | ensureFileExist(treeFile, pathPartC); 241 | }); 242 | } else { 243 | promises.push(promiseCreateFile(path.join.apply(path, pathPartC))); 244 | } 245 | } 246 | 247 | files.forEach((treeFile) => { 248 | ensureFileExist(treeFile, [workspace.rootPath]); 249 | }); 250 | 251 | return Promise.all(promises); 252 | } 253 | 254 | async function getFilesStructure() { 255 | const rootPath = workspace.rootPath; 256 | const files = await workspace.findFiles(new RelativePattern(workspace.rootPath, '/**/*'), null); 257 | const treeFiles: TreeFile[] = []; 258 | files.forEach((file) => { 259 | const filePath = getPathInWorkspace(file); 260 | const pathList = filePath.split(path.sep); 261 | let currentLevel = treeFiles; 262 | /** 263 | * FIXME ugly and slow 264 | */ 265 | pathList.forEach((pathPart, i, arr) => { 266 | if (arr.length - 1 === i) { 267 | currentLevel.push({ 268 | filename: pathPart, 269 | isDirectory: false, 270 | extension: path.extname(pathPart).substring(1) //'remove . before extesnion name' 271 | }); 272 | return; 273 | } 274 | if (!pathPart) { //skipping empty pathes. 275 | return; 276 | } 277 | let dir = currentLevel.find((treeFile) => { 278 | return treeFile.isDirectory && treeFile.filename === pathPart; 279 | }); 280 | if (!dir) { 281 | dir = { 282 | filename: pathPart, 283 | children: [], 284 | isDirectory: true 285 | } 286 | currentLevel.push(dir); 287 | } 288 | currentLevel = dir.children; 289 | }); 290 | }) 291 | return treeFiles; 292 | } 293 | 294 | function getPathInWorkspace(uri: Uri) { 295 | const rootPath = workspace.rootPath; 296 | const pathInWorkspace = uri.fsPath.replace(rootPath, ''); 297 | return pathInWorkspace; 298 | } 299 | 300 | function startWatchingFiles(socksCodeController: SocksCodeController) { 301 | /** 302 | * FIXME: DISPOSE 303 | */ 304 | //const fileSystemWatcher = workspace.createFileSystemWatcher(new RelativePattern(workspace.rootPath, '/**/*'), false, true, false); 305 | //fileSystemWatcher.onDidDelete((uri) => { 306 | // console.log('deleted', uri); 307 | //}); 308 | } 309 | 310 | //#endregion filesystem 311 | 312 | // this method is called when your extension is deactivated 313 | export function deactivate() { 314 | } 315 | -------------------------------------------------------------------------------- /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.38" 7 | resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-2.2.38.tgz#8c188f6e34c2e7c3f1d0127d908d5a36e5a60dc9" 8 | 9 | "@types/node@*", "@types/node@^6.0.40": 10 | version "6.0.60" 11 | resolved "https://registry.yarnpkg.com/@types/node/-/node-6.0.60.tgz#e7e134ebc674ae6ed93c36c767739b110d2c57fc" 12 | 13 | "@types/socket.io-client@^1.4.29": 14 | version "1.4.29" 15 | resolved "https://registry.yarnpkg.com/@types/socket.io-client/-/socket.io-client-1.4.29.tgz#f8743070cee93175e36e0b6a77a8af73e58ccb32" 16 | 17 | "@types/socket.io@^1.4.27": 18 | version "1.4.27" 19 | resolved "https://registry.yarnpkg.com/@types/socket.io/-/socket.io-1.4.27.tgz#c6a9f3ffad21e3a0999038813a06ad20abdc6e95" 20 | dependencies: 21 | "@types/node" "*" 22 | 23 | accepts@1.3.3: 24 | version "1.3.3" 25 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.3.tgz#c3ca7434938648c3e0d9c1e328dd68b622c284ca" 26 | dependencies: 27 | mime-types "~2.1.11" 28 | negotiator "0.6.1" 29 | 30 | after@0.8.2: 31 | version "0.8.2" 32 | resolved "https://registry.yarnpkg.com/after/-/after-0.8.2.tgz#fedb394f9f0e02aa9768e702bda23b505fae7e1f" 33 | 34 | ajv@^5.1.0: 35 | version "5.3.0" 36 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.3.0.tgz#4414ff74a50879c208ee5fdc826e32c303549eda" 37 | dependencies: 38 | co "^4.6.0" 39 | fast-deep-equal "^1.0.0" 40 | fast-json-stable-stringify "^2.0.0" 41 | json-schema-traverse "^0.3.0" 42 | 43 | ansi-regex@^2.0.0: 44 | version "2.1.1" 45 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 46 | 47 | ansi-styles@^2.2.1: 48 | version "2.2.1" 49 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 50 | 51 | arr-diff@^2.0.0: 52 | version "2.0.0" 53 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 54 | dependencies: 55 | arr-flatten "^1.0.1" 56 | 57 | arr-flatten@^1.0.1: 58 | version "1.0.1" 59 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 60 | 61 | array-differ@^1.0.0: 62 | version "1.0.0" 63 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" 64 | 65 | array-union@^1.0.1: 66 | version "1.0.2" 67 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 68 | dependencies: 69 | array-uniq "^1.0.1" 70 | 71 | array-uniq@^1.0.1, array-uniq@^1.0.2: 72 | version "1.0.3" 73 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 74 | 75 | array-unique@^0.2.1: 76 | version "0.2.1" 77 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 78 | 79 | arraybuffer.slice@0.0.6: 80 | version "0.0.6" 81 | resolved "https://registry.yarnpkg.com/arraybuffer.slice/-/arraybuffer.slice-0.0.6.tgz#f33b2159f0532a3f3107a272c0ccfbd1ad2979ca" 82 | 83 | arrify@^1.0.0: 84 | version "1.0.1" 85 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 86 | 87 | asn1@~0.2.3: 88 | version "0.2.3" 89 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 90 | 91 | assert-plus@^0.2.0: 92 | version "0.2.0" 93 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 94 | 95 | assert-plus@^1.0.0: 96 | version "1.0.0" 97 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 98 | 99 | asynckit@^0.4.0: 100 | version "0.4.0" 101 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 102 | 103 | aws-sign2@~0.6.0: 104 | version "0.6.0" 105 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 106 | 107 | aws-sign2@~0.7.0: 108 | version "0.7.0" 109 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 110 | 111 | aws4@^1.2.1: 112 | version "1.5.0" 113 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.5.0.tgz#0a29ffb79c31c9e712eeb087e8e7a64b4a56d755" 114 | 115 | aws4@^1.6.0: 116 | version "1.6.0" 117 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 118 | 119 | backo2@1.0.2: 120 | version "1.0.2" 121 | resolved "https://registry.yarnpkg.com/backo2/-/backo2-1.0.2.tgz#31ab1ac8b129363463e35b3ebb69f4dfcfba7947" 122 | 123 | balanced-match@^0.4.1: 124 | version "0.4.2" 125 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 126 | 127 | balanced-match@^1.0.0: 128 | version "1.0.0" 129 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 130 | 131 | base64-arraybuffer@0.1.5: 132 | version "0.1.5" 133 | resolved "https://registry.yarnpkg.com/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz#73926771923b5a19747ad666aa5cd4bf9c6e9ce8" 134 | 135 | base64id@1.0.0: 136 | version "1.0.0" 137 | resolved "https://registry.yarnpkg.com/base64id/-/base64id-1.0.0.tgz#47688cb99bb6804f0e06d3e763b1c32e57d8e6b6" 138 | 139 | bcrypt-pbkdf@^1.0.0: 140 | version "1.0.0" 141 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.0.tgz#3ca76b85241c7170bf7d9703e7b9aa74630040d4" 142 | dependencies: 143 | tweetnacl "^0.14.3" 144 | 145 | beeper@^1.0.0: 146 | version "1.1.1" 147 | resolved "https://registry.yarnpkg.com/beeper/-/beeper-1.1.1.tgz#e6d5ea8c5dad001304a70b22638447f69cb2f809" 148 | 149 | better-assert@~1.0.0: 150 | version "1.0.2" 151 | resolved "https://registry.yarnpkg.com/better-assert/-/better-assert-1.0.2.tgz#40866b9e1b9e0b55b481894311e68faffaebc522" 152 | dependencies: 153 | callsite "1.0.0" 154 | 155 | blob@0.0.4: 156 | version "0.0.4" 157 | resolved "https://registry.yarnpkg.com/blob/-/blob-0.0.4.tgz#bcf13052ca54463f30f9fc7e95b9a47630a94921" 158 | 159 | block-stream@*: 160 | version "0.0.9" 161 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 162 | dependencies: 163 | inherits "~2.0.0" 164 | 165 | boom@2.x.x: 166 | version "2.10.1" 167 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 168 | dependencies: 169 | hoek "2.x.x" 170 | 171 | boom@4.x.x: 172 | version "4.3.1" 173 | resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31" 174 | dependencies: 175 | hoek "4.x.x" 176 | 177 | boom@5.x.x: 178 | version "5.2.0" 179 | resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02" 180 | dependencies: 181 | hoek "4.x.x" 182 | 183 | brace-expansion@^1.0.0: 184 | version "1.1.6" 185 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 186 | dependencies: 187 | balanced-match "^0.4.1" 188 | concat-map "0.0.1" 189 | 190 | brace-expansion@^1.1.7: 191 | version "1.1.8" 192 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 193 | dependencies: 194 | balanced-match "^1.0.0" 195 | concat-map "0.0.1" 196 | 197 | braces@^1.8.2: 198 | version "1.8.5" 199 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 200 | dependencies: 201 | expand-range "^1.8.1" 202 | preserve "^0.2.0" 203 | repeat-element "^1.1.2" 204 | 205 | browser-stdout@1.3.0: 206 | version "1.3.0" 207 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" 208 | 209 | buffer-crc32@~0.2.3: 210 | version "0.2.13" 211 | resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" 212 | 213 | buffer-shims@^1.0.0: 214 | version "1.0.0" 215 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 216 | 217 | callsite@1.0.0: 218 | version "1.0.0" 219 | resolved "https://registry.yarnpkg.com/callsite/-/callsite-1.0.0.tgz#280398e5d664bd74038b6f0905153e6e8af1bc20" 220 | 221 | caseless@~0.11.0: 222 | version "0.11.0" 223 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 224 | 225 | caseless@~0.12.0: 226 | version "0.12.0" 227 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 228 | 229 | chalk@^1.0.0, chalk@^1.1.1: 230 | version "1.1.3" 231 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 232 | dependencies: 233 | ansi-styles "^2.2.1" 234 | escape-string-regexp "^1.0.2" 235 | has-ansi "^2.0.0" 236 | strip-ansi "^3.0.0" 237 | supports-color "^2.0.0" 238 | 239 | clone-buffer@^1.0.0: 240 | version "1.0.0" 241 | resolved "https://registry.yarnpkg.com/clone-buffer/-/clone-buffer-1.0.0.tgz#e3e25b207ac4e701af721e2cb5a16792cac3dc58" 242 | 243 | clone-stats@^0.0.1: 244 | version "0.0.1" 245 | resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-0.0.1.tgz#b88f94a82cf38b8791d58046ea4029ad88ca99d1" 246 | 247 | clone-stats@^1.0.0: 248 | version "1.0.0" 249 | resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-1.0.0.tgz#b3782dff8bb5474e18b9b6bf0fdfe782f8777680" 250 | 251 | clone@^0.2.0: 252 | version "0.2.0" 253 | resolved "https://registry.yarnpkg.com/clone/-/clone-0.2.0.tgz#c6126a90ad4f72dbf5acdb243cc37724fe93fc1f" 254 | 255 | clone@^1.0.0: 256 | version "1.0.2" 257 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" 258 | 259 | clone@^2.1.1: 260 | version "2.1.1" 261 | resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.1.tgz#d217d1e961118e3ac9a4b8bba3285553bf647cdb" 262 | 263 | cloneable-readable@^1.0.0: 264 | version "1.0.0" 265 | resolved "https://registry.yarnpkg.com/cloneable-readable/-/cloneable-readable-1.0.0.tgz#a6290d413f217a61232f95e458ff38418cfb0117" 266 | dependencies: 267 | inherits "^2.0.1" 268 | process-nextick-args "^1.0.6" 269 | through2 "^2.0.1" 270 | 271 | co@^4.6.0: 272 | version "4.6.0" 273 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 274 | 275 | combined-stream@^1.0.5, combined-stream@~1.0.5: 276 | version "1.0.5" 277 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 278 | dependencies: 279 | delayed-stream "~1.0.0" 280 | 281 | commander@0.6.1: 282 | version "0.6.1" 283 | resolved "https://registry.yarnpkg.com/commander/-/commander-0.6.1.tgz#fa68a14f6a945d54dbbe50d8cdb3320e9e3b1a06" 284 | 285 | commander@2.11.0: 286 | version "2.11.0" 287 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" 288 | 289 | commander@2.3.0: 290 | version "2.3.0" 291 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.3.0.tgz#fd430e889832ec353b9acd1de217c11cb3eef873" 292 | 293 | commander@^2.9.0: 294 | version "2.9.0" 295 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 296 | dependencies: 297 | graceful-readlink ">= 1.0.0" 298 | 299 | component-bind@1.0.0: 300 | version "1.0.0" 301 | resolved "https://registry.yarnpkg.com/component-bind/-/component-bind-1.0.0.tgz#00c608ab7dcd93897c0009651b1d3a8e1e73bbd1" 302 | 303 | component-emitter@1.1.2: 304 | version "1.1.2" 305 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.1.2.tgz#296594f2753daa63996d2af08d15a95116c9aec3" 306 | 307 | component-emitter@1.2.1: 308 | version "1.2.1" 309 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 310 | 311 | component-inherit@0.0.3: 312 | version "0.0.3" 313 | resolved "https://registry.yarnpkg.com/component-inherit/-/component-inherit-0.0.3.tgz#645fc4adf58b72b649d5cae65135619db26ff143" 314 | 315 | concat-map@0.0.1: 316 | version "0.0.1" 317 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 318 | 319 | convert-source-map@^1.1.1: 320 | version "1.3.0" 321 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.3.0.tgz#e9f3e9c6e2728efc2676696a70eb382f73106a67" 322 | 323 | cookie@0.3.1: 324 | version "0.3.1" 325 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" 326 | 327 | core-util-is@~1.0.0: 328 | version "1.0.2" 329 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 330 | 331 | cryptiles@2.x.x: 332 | version "2.0.5" 333 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 334 | dependencies: 335 | boom "2.x.x" 336 | 337 | cryptiles@3.x.x: 338 | version "3.1.2" 339 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe" 340 | dependencies: 341 | boom "5.x.x" 342 | 343 | dashdash@^1.12.0: 344 | version "1.14.1" 345 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 346 | dependencies: 347 | assert-plus "^1.0.0" 348 | 349 | dateformat@^2.0.0: 350 | version "2.0.0" 351 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-2.0.0.tgz#2743e3abb5c3fc2462e527dca445e04e9f4dee17" 352 | 353 | debug@2.2.0: 354 | version "2.2.0" 355 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 356 | dependencies: 357 | ms "0.7.1" 358 | 359 | debug@2.3.3: 360 | version "2.3.3" 361 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.3.3.tgz#40c453e67e6e13c901ddec317af8986cda9eff8c" 362 | dependencies: 363 | ms "0.7.2" 364 | 365 | debug@3.1.0: 366 | version "3.1.0" 367 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 368 | dependencies: 369 | ms "2.0.0" 370 | 371 | deep-assign@^1.0.0: 372 | version "1.0.0" 373 | resolved "https://registry.yarnpkg.com/deep-assign/-/deep-assign-1.0.0.tgz#b092743be8427dc621ea0067cdec7e70dd19f37b" 374 | dependencies: 375 | is-obj "^1.0.0" 376 | 377 | delayed-stream@~1.0.0: 378 | version "1.0.0" 379 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 380 | 381 | diff@1.4.0: 382 | version "1.4.0" 383 | resolved "https://registry.yarnpkg.com/diff/-/diff-1.4.0.tgz#7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf" 384 | 385 | diff@3.3.1: 386 | version "3.3.1" 387 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.3.1.tgz#aa8567a6eed03c531fc89d3f711cd0e5259dec75" 388 | 389 | duplexer2@0.0.2: 390 | version "0.0.2" 391 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.0.2.tgz#c614dcf67e2fb14995a91711e5a617e8a60a31db" 392 | dependencies: 393 | readable-stream "~1.1.9" 394 | 395 | duplexer@~0.1.1: 396 | version "0.1.1" 397 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" 398 | 399 | duplexify@^3.2.0: 400 | version "3.5.0" 401 | resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.5.0.tgz#1aa773002e1578457e9d9d4a50b0ccaaebcbd604" 402 | dependencies: 403 | end-of-stream "1.0.0" 404 | inherits "^2.0.1" 405 | readable-stream "^2.0.0" 406 | stream-shift "^1.0.0" 407 | 408 | ecc-jsbn@~0.1.1: 409 | version "0.1.1" 410 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 411 | dependencies: 412 | jsbn "~0.1.0" 413 | 414 | end-of-stream@1.0.0: 415 | version "1.0.0" 416 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.0.0.tgz#d4596e702734a93e40e9af864319eabd99ff2f0e" 417 | dependencies: 418 | once "~1.3.0" 419 | 420 | engine.io-client@1.8.2: 421 | version "1.8.2" 422 | resolved "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-1.8.2.tgz#c38767547f2a7d184f5752f6f0ad501006703766" 423 | dependencies: 424 | component-emitter "1.2.1" 425 | component-inherit "0.0.3" 426 | debug "2.3.3" 427 | engine.io-parser "1.3.2" 428 | has-cors "1.1.0" 429 | indexof "0.0.1" 430 | parsejson "0.0.3" 431 | parseqs "0.0.5" 432 | parseuri "0.0.5" 433 | ws "1.1.1" 434 | xmlhttprequest-ssl "1.5.3" 435 | yeast "0.1.2" 436 | 437 | engine.io-parser@1.3.2: 438 | version "1.3.2" 439 | resolved "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-1.3.2.tgz#937b079f0007d0893ec56d46cb220b8cb435220a" 440 | dependencies: 441 | after "0.8.2" 442 | arraybuffer.slice "0.0.6" 443 | base64-arraybuffer "0.1.5" 444 | blob "0.0.4" 445 | has-binary "0.1.7" 446 | wtf-8 "1.0.0" 447 | 448 | engine.io@1.8.2: 449 | version "1.8.2" 450 | resolved "https://registry.yarnpkg.com/engine.io/-/engine.io-1.8.2.tgz#6b59be730b348c0125b0a4589de1c355abcf7a7e" 451 | dependencies: 452 | accepts "1.3.3" 453 | base64id "1.0.0" 454 | cookie "0.3.1" 455 | debug "2.3.3" 456 | engine.io-parser "1.3.2" 457 | ws "1.1.1" 458 | 459 | escape-string-regexp@1.0.2, escape-string-regexp@^1.0.2: 460 | version "1.0.2" 461 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.2.tgz#4dbc2fe674e71949caf3fb2695ce7f2dc1d9a8d1" 462 | 463 | escape-string-regexp@1.0.5: 464 | version "1.0.5" 465 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 466 | 467 | event-stream@^3.3.1, event-stream@~3.3.4: 468 | version "3.3.4" 469 | resolved "https://registry.yarnpkg.com/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" 470 | dependencies: 471 | duplexer "~0.1.1" 472 | from "~0" 473 | map-stream "~0.1.0" 474 | pause-stream "0.0.11" 475 | split "0.3" 476 | stream-combiner "~0.0.4" 477 | through "~2.3.1" 478 | 479 | expand-brackets@^0.1.4: 480 | version "0.1.5" 481 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 482 | dependencies: 483 | is-posix-bracket "^0.1.0" 484 | 485 | expand-range@^1.8.1: 486 | version "1.8.2" 487 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 488 | dependencies: 489 | fill-range "^2.1.0" 490 | 491 | extend-shallow@^2.0.1: 492 | version "2.0.1" 493 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 494 | dependencies: 495 | is-extendable "^0.1.0" 496 | 497 | extend@^3.0.0, extend@~3.0.0: 498 | version "3.0.0" 499 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 500 | 501 | extend@~3.0.1: 502 | version "3.0.1" 503 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 504 | 505 | extglob@^0.3.1: 506 | version "0.3.2" 507 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 508 | dependencies: 509 | is-extglob "^1.0.0" 510 | 511 | extsprintf@1.0.2: 512 | version "1.0.2" 513 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 514 | 515 | fancy-log@^1.1.0: 516 | version "1.3.0" 517 | resolved "https://registry.yarnpkg.com/fancy-log/-/fancy-log-1.3.0.tgz#45be17d02bb9917d60ccffd4995c999e6c8c9948" 518 | dependencies: 519 | chalk "^1.1.1" 520 | time-stamp "^1.0.0" 521 | 522 | fast-deep-equal@^1.0.0: 523 | version "1.0.0" 524 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 525 | 526 | fast-json-stable-stringify@^2.0.0: 527 | version "2.0.0" 528 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 529 | 530 | fd-slicer@~1.0.1: 531 | version "1.0.1" 532 | resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.0.1.tgz#8b5bcbd9ec327c5041bf9ab023fd6750f1177e65" 533 | dependencies: 534 | pend "~1.2.0" 535 | 536 | filename-regex@^2.0.0: 537 | version "2.0.0" 538 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 539 | 540 | fill-range@^2.1.0: 541 | version "2.2.3" 542 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 543 | dependencies: 544 | is-number "^2.1.0" 545 | isobject "^2.0.0" 546 | randomatic "^1.1.3" 547 | repeat-element "^1.1.2" 548 | repeat-string "^1.5.2" 549 | 550 | first-chunk-stream@^1.0.0: 551 | version "1.0.0" 552 | resolved "https://registry.yarnpkg.com/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz#59bfb50cd905f60d7c394cd3d9acaab4e6ad934e" 553 | 554 | for-in@^0.1.5: 555 | version "0.1.6" 556 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.6.tgz#c9f96e89bfad18a545af5ec3ed352a1d9e5b4dc8" 557 | 558 | for-own@^0.1.4: 559 | version "0.1.4" 560 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.4.tgz#0149b41a39088c7515f51ebe1c1386d45f935072" 561 | dependencies: 562 | for-in "^0.1.5" 563 | 564 | forever-agent@~0.6.1: 565 | version "0.6.1" 566 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 567 | 568 | form-data@~2.1.1: 569 | version "2.1.2" 570 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 571 | dependencies: 572 | asynckit "^0.4.0" 573 | combined-stream "^1.0.5" 574 | mime-types "^2.1.12" 575 | 576 | form-data@~2.3.1: 577 | version "2.3.1" 578 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.1.tgz#6fb94fbd71885306d73d15cc497fe4cc4ecd44bf" 579 | dependencies: 580 | asynckit "^0.4.0" 581 | combined-stream "^1.0.5" 582 | mime-types "^2.1.12" 583 | 584 | from@~0: 585 | version "0.1.3" 586 | resolved "https://registry.yarnpkg.com/from/-/from-0.1.3.tgz#ef63ac2062ac32acf7862e0d40b44b896f22f3bc" 587 | 588 | fs.realpath@^1.0.0: 589 | version "1.0.0" 590 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 591 | 592 | fstream@^1.0.2: 593 | version "1.0.10" 594 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.10.tgz#604e8a92fe26ffd9f6fae30399d4984e1ab22822" 595 | dependencies: 596 | graceful-fs "^4.1.2" 597 | inherits "~2.0.0" 598 | mkdirp ">=0.5 0" 599 | rimraf "2" 600 | 601 | generate-function@^2.0.0: 602 | version "2.0.0" 603 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 604 | 605 | generate-object-property@^1.1.0: 606 | version "1.2.0" 607 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 608 | dependencies: 609 | is-property "^1.0.0" 610 | 611 | getpass@^0.1.1: 612 | version "0.1.6" 613 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 614 | dependencies: 615 | assert-plus "^1.0.0" 616 | 617 | glob-base@^0.3.0: 618 | version "0.3.0" 619 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 620 | dependencies: 621 | glob-parent "^2.0.0" 622 | is-glob "^2.0.0" 623 | 624 | glob-parent@^2.0.0: 625 | version "2.0.0" 626 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 627 | dependencies: 628 | is-glob "^2.0.0" 629 | 630 | glob-parent@^3.0.0: 631 | version "3.1.0" 632 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" 633 | dependencies: 634 | is-glob "^3.1.0" 635 | path-dirname "^1.0.0" 636 | 637 | glob-stream@^5.3.2: 638 | version "5.3.5" 639 | resolved "https://registry.yarnpkg.com/glob-stream/-/glob-stream-5.3.5.tgz#a55665a9a8ccdc41915a87c701e32d4e016fad22" 640 | dependencies: 641 | extend "^3.0.0" 642 | glob "^5.0.3" 643 | glob-parent "^3.0.0" 644 | micromatch "^2.3.7" 645 | ordered-read-streams "^0.3.0" 646 | through2 "^0.6.0" 647 | to-absolute-glob "^0.1.1" 648 | unique-stream "^2.0.2" 649 | 650 | glob@3.2.11: 651 | version "3.2.11" 652 | resolved "https://registry.yarnpkg.com/glob/-/glob-3.2.11.tgz#4a973f635b9190f715d10987d5c00fd2815ebe3d" 653 | dependencies: 654 | inherits "2" 655 | minimatch "0.3" 656 | 657 | glob@7.1.2, glob@^7.1.2: 658 | version "7.1.2" 659 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 660 | dependencies: 661 | fs.realpath "^1.0.0" 662 | inflight "^1.0.4" 663 | inherits "2" 664 | minimatch "^3.0.4" 665 | once "^1.3.0" 666 | path-is-absolute "^1.0.0" 667 | 668 | glob@^5.0.3: 669 | version "5.0.15" 670 | resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" 671 | dependencies: 672 | inflight "^1.0.4" 673 | inherits "2" 674 | minimatch "2 || 3" 675 | once "^1.3.0" 676 | path-is-absolute "^1.0.0" 677 | 678 | glob@^7.0.5: 679 | version "7.1.1" 680 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 681 | dependencies: 682 | fs.realpath "^1.0.0" 683 | inflight "^1.0.4" 684 | inherits "2" 685 | minimatch "^3.0.2" 686 | once "^1.3.0" 687 | path-is-absolute "^1.0.0" 688 | 689 | glogg@^1.0.0: 690 | version "1.0.0" 691 | resolved "https://registry.yarnpkg.com/glogg/-/glogg-1.0.0.tgz#7fe0f199f57ac906cf512feead8f90ee4a284fc5" 692 | dependencies: 693 | sparkles "^1.0.0" 694 | 695 | graceful-fs@^4.0.0, graceful-fs@^4.1.2: 696 | version "4.1.11" 697 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 698 | 699 | "graceful-readlink@>= 1.0.0": 700 | version "1.0.1" 701 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 702 | 703 | growl@1.10.3: 704 | version "1.10.3" 705 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.10.3.tgz#1926ba90cf3edfe2adb4927f5880bc22c66c790f" 706 | 707 | growl@1.9.2: 708 | version "1.9.2" 709 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f" 710 | 711 | gulp-chmod@^2.0.0: 712 | version "2.0.0" 713 | resolved "https://registry.yarnpkg.com/gulp-chmod/-/gulp-chmod-2.0.0.tgz#00c390b928a0799b251accf631aa09e01cc6299c" 714 | dependencies: 715 | deep-assign "^1.0.0" 716 | stat-mode "^0.2.0" 717 | through2 "^2.0.0" 718 | 719 | gulp-filter@^5.0.1: 720 | version "5.0.1" 721 | resolved "https://registry.yarnpkg.com/gulp-filter/-/gulp-filter-5.0.1.tgz#5d87f662e317e5839ef7650e620e6c9008ff92d0" 722 | dependencies: 723 | gulp-util "^3.0.6" 724 | multimatch "^2.0.0" 725 | streamfilter "^1.0.5" 726 | 727 | gulp-gunzip@1.0.0: 728 | version "1.0.0" 729 | resolved "https://registry.yarnpkg.com/gulp-gunzip/-/gulp-gunzip-1.0.0.tgz#15b741145e83a9c6f50886241b57cc5871f151a9" 730 | dependencies: 731 | through2 "~0.6.5" 732 | vinyl "~0.4.6" 733 | 734 | gulp-remote-src@^0.4.3: 735 | version "0.4.3" 736 | resolved "https://registry.yarnpkg.com/gulp-remote-src/-/gulp-remote-src-0.4.3.tgz#5728cfd643433dd4845ddef0969f0f971a2ab4a1" 737 | dependencies: 738 | event-stream "~3.3.4" 739 | node.extend "~1.1.2" 740 | request "~2.79.0" 741 | through2 "~2.0.3" 742 | vinyl "~2.0.1" 743 | 744 | gulp-sourcemaps@1.6.0: 745 | version "1.6.0" 746 | resolved "https://registry.yarnpkg.com/gulp-sourcemaps/-/gulp-sourcemaps-1.6.0.tgz#b86ff349d801ceb56e1d9e7dc7bbcb4b7dee600c" 747 | dependencies: 748 | convert-source-map "^1.1.1" 749 | graceful-fs "^4.1.2" 750 | strip-bom "^2.0.0" 751 | through2 "^2.0.0" 752 | vinyl "^1.0.0" 753 | 754 | gulp-symdest@^1.1.0: 755 | version "1.1.0" 756 | resolved "https://registry.yarnpkg.com/gulp-symdest/-/gulp-symdest-1.1.0.tgz#c165320732d192ce56fd94271ffa123234bf2ae0" 757 | dependencies: 758 | event-stream "^3.3.1" 759 | mkdirp "^0.5.1" 760 | queue "^3.1.0" 761 | vinyl-fs "^2.4.3" 762 | 763 | gulp-untar@^0.0.6: 764 | version "0.0.6" 765 | resolved "https://registry.yarnpkg.com/gulp-untar/-/gulp-untar-0.0.6.tgz#d6bdefde7e9a8e054c9f162385a0782c4be74000" 766 | dependencies: 767 | event-stream "~3.3.4" 768 | gulp-util "~3.0.8" 769 | streamifier "~0.1.1" 770 | tar "^2.2.1" 771 | through2 "~2.0.3" 772 | 773 | gulp-util@^3.0.6, gulp-util@~3.0.8: 774 | version "3.0.8" 775 | resolved "https://registry.yarnpkg.com/gulp-util/-/gulp-util-3.0.8.tgz#0054e1e744502e27c04c187c3ecc505dd54bbb4f" 776 | dependencies: 777 | array-differ "^1.0.0" 778 | array-uniq "^1.0.2" 779 | beeper "^1.0.0" 780 | chalk "^1.0.0" 781 | dateformat "^2.0.0" 782 | fancy-log "^1.1.0" 783 | gulplog "^1.0.0" 784 | has-gulplog "^0.1.0" 785 | lodash._reescape "^3.0.0" 786 | lodash._reevaluate "^3.0.0" 787 | lodash._reinterpolate "^3.0.0" 788 | lodash.template "^3.0.0" 789 | minimist "^1.1.0" 790 | multipipe "^0.1.2" 791 | object-assign "^3.0.0" 792 | replace-ext "0.0.1" 793 | through2 "^2.0.0" 794 | vinyl "^0.5.0" 795 | 796 | gulp-vinyl-zip@^2.1.0: 797 | version "2.1.0" 798 | resolved "https://registry.yarnpkg.com/gulp-vinyl-zip/-/gulp-vinyl-zip-2.1.0.tgz#24e40685dc05b7149995245099e0590263be8dad" 799 | dependencies: 800 | event-stream "^3.3.1" 801 | queue "^4.2.1" 802 | through2 "^2.0.3" 803 | vinyl "^2.0.2" 804 | vinyl-fs "^2.0.0" 805 | yauzl "^2.2.1" 806 | yazl "^2.2.1" 807 | 808 | gulplog@^1.0.0: 809 | version "1.0.0" 810 | resolved "https://registry.yarnpkg.com/gulplog/-/gulplog-1.0.0.tgz#e28c4d45d05ecbbed818363ce8f9c5926229ffe5" 811 | dependencies: 812 | glogg "^1.0.0" 813 | 814 | har-schema@^2.0.0: 815 | version "2.0.0" 816 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 817 | 818 | har-validator@~2.0.6: 819 | version "2.0.6" 820 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 821 | dependencies: 822 | chalk "^1.1.1" 823 | commander "^2.9.0" 824 | is-my-json-valid "^2.12.4" 825 | pinkie-promise "^2.0.0" 826 | 827 | har-validator@~5.0.3: 828 | version "5.0.3" 829 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" 830 | dependencies: 831 | ajv "^5.1.0" 832 | har-schema "^2.0.0" 833 | 834 | has-ansi@^2.0.0: 835 | version "2.0.0" 836 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 837 | dependencies: 838 | ansi-regex "^2.0.0" 839 | 840 | has-binary@0.1.7: 841 | version "0.1.7" 842 | resolved "https://registry.yarnpkg.com/has-binary/-/has-binary-0.1.7.tgz#68e61eb16210c9545a0a5cce06a873912fe1e68c" 843 | dependencies: 844 | isarray "0.0.1" 845 | 846 | has-cors@1.1.0: 847 | version "1.1.0" 848 | resolved "https://registry.yarnpkg.com/has-cors/-/has-cors-1.1.0.tgz#5e474793f7ea9843d1bb99c23eef49ff126fff39" 849 | 850 | has-flag@^2.0.0: 851 | version "2.0.0" 852 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 853 | 854 | has-gulplog@^0.1.0: 855 | version "0.1.0" 856 | resolved "https://registry.yarnpkg.com/has-gulplog/-/has-gulplog-0.1.0.tgz#6414c82913697da51590397dafb12f22967811ce" 857 | dependencies: 858 | sparkles "^1.0.0" 859 | 860 | hawk@~3.1.3: 861 | version "3.1.3" 862 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 863 | dependencies: 864 | boom "2.x.x" 865 | cryptiles "2.x.x" 866 | hoek "2.x.x" 867 | sntp "1.x.x" 868 | 869 | hawk@~6.0.2: 870 | version "6.0.2" 871 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038" 872 | dependencies: 873 | boom "4.x.x" 874 | cryptiles "3.x.x" 875 | hoek "4.x.x" 876 | sntp "2.x.x" 877 | 878 | he@1.1.1: 879 | version "1.1.1" 880 | resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" 881 | 882 | hoek@2.x.x: 883 | version "2.16.3" 884 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 885 | 886 | hoek@4.x.x: 887 | version "4.2.0" 888 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.0.tgz#72d9d0754f7fe25ca2d01ad8f8f9a9449a89526d" 889 | 890 | http-signature@~1.1.0: 891 | version "1.1.1" 892 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 893 | dependencies: 894 | assert-plus "^0.2.0" 895 | jsprim "^1.2.2" 896 | sshpk "^1.7.0" 897 | 898 | http-signature@~1.2.0: 899 | version "1.2.0" 900 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 901 | dependencies: 902 | assert-plus "^1.0.0" 903 | jsprim "^1.2.2" 904 | sshpk "^1.7.0" 905 | 906 | indexof@0.0.1: 907 | version "0.0.1" 908 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 909 | 910 | inflight@^1.0.4: 911 | version "1.0.6" 912 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 913 | dependencies: 914 | once "^1.3.0" 915 | wrappy "1" 916 | 917 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1: 918 | version "2.0.3" 919 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 920 | 921 | is-buffer@^1.0.2: 922 | version "1.1.4" 923 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b" 924 | 925 | is-dotfile@^1.0.0: 926 | version "1.0.2" 927 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 928 | 929 | is-equal-shallow@^0.1.3: 930 | version "0.1.3" 931 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 932 | dependencies: 933 | is-primitive "^2.0.0" 934 | 935 | is-extendable@^0.1.0, is-extendable@^0.1.1: 936 | version "0.1.1" 937 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 938 | 939 | is-extglob@^1.0.0: 940 | version "1.0.0" 941 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 942 | 943 | is-extglob@^2.1.0: 944 | version "2.1.1" 945 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 946 | 947 | is-glob@^2.0.0, is-glob@^2.0.1: 948 | version "2.0.1" 949 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 950 | dependencies: 951 | is-extglob "^1.0.0" 952 | 953 | is-glob@^3.1.0: 954 | version "3.1.0" 955 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 956 | dependencies: 957 | is-extglob "^2.1.0" 958 | 959 | is-my-json-valid@^2.12.4: 960 | version "2.15.0" 961 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b" 962 | dependencies: 963 | generate-function "^2.0.0" 964 | generate-object-property "^1.1.0" 965 | jsonpointer "^4.0.0" 966 | xtend "^4.0.0" 967 | 968 | is-number@^2.0.2, is-number@^2.1.0: 969 | version "2.1.0" 970 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 971 | dependencies: 972 | kind-of "^3.0.2" 973 | 974 | is-obj@^1.0.0: 975 | version "1.0.1" 976 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 977 | 978 | is-posix-bracket@^0.1.0: 979 | version "0.1.1" 980 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 981 | 982 | is-primitive@^2.0.0: 983 | version "2.0.0" 984 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 985 | 986 | is-property@^1.0.0: 987 | version "1.0.2" 988 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 989 | 990 | is-stream@^1.0.1, is-stream@^1.1.0: 991 | version "1.1.0" 992 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 993 | 994 | is-typedarray@~1.0.0: 995 | version "1.0.0" 996 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 997 | 998 | is-utf8@^0.2.0: 999 | version "0.2.1" 1000 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1001 | 1002 | is-valid-glob@^0.3.0: 1003 | version "0.3.0" 1004 | resolved "https://registry.yarnpkg.com/is-valid-glob/-/is-valid-glob-0.3.0.tgz#d4b55c69f51886f9b65c70d6c2622d37e29f48fe" 1005 | 1006 | is@^3.1.0: 1007 | version "3.2.0" 1008 | resolved "https://registry.yarnpkg.com/is/-/is-3.2.0.tgz#a362e3daf7df3fd8b7114115d624c5b7e1cb90f7" 1009 | 1010 | isarray@0.0.1: 1011 | version "0.0.1" 1012 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 1013 | 1014 | isarray@1.0.0, isarray@~1.0.0: 1015 | version "1.0.0" 1016 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1017 | 1018 | isobject@^2.0.0: 1019 | version "2.1.0" 1020 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1021 | dependencies: 1022 | isarray "1.0.0" 1023 | 1024 | isstream@~0.1.2: 1025 | version "0.1.2" 1026 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1027 | 1028 | jade@0.26.3: 1029 | version "0.26.3" 1030 | resolved "https://registry.yarnpkg.com/jade/-/jade-0.26.3.tgz#8f10d7977d8d79f2f6ff862a81b0513ccb25686c" 1031 | dependencies: 1032 | commander "0.6.1" 1033 | mkdirp "0.3.0" 1034 | 1035 | jodid25519@^1.0.0: 1036 | version "1.0.2" 1037 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 1038 | dependencies: 1039 | jsbn "~0.1.0" 1040 | 1041 | jsbn@~0.1.0: 1042 | version "0.1.0" 1043 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.0.tgz#650987da0dd74f4ebf5a11377a2aa2d273e97dfd" 1044 | 1045 | json-schema-traverse@^0.3.0: 1046 | version "0.3.1" 1047 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 1048 | 1049 | json-schema@0.2.3: 1050 | version "0.2.3" 1051 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1052 | 1053 | json-stable-stringify@^1.0.0: 1054 | version "1.0.1" 1055 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1056 | dependencies: 1057 | jsonify "~0.0.0" 1058 | 1059 | json-stringify-safe@~5.0.1: 1060 | version "5.0.1" 1061 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1062 | 1063 | json3@3.3.2: 1064 | version "3.3.2" 1065 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 1066 | 1067 | jsonify@~0.0.0: 1068 | version "0.0.0" 1069 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1070 | 1071 | jsonpointer@^4.0.0: 1072 | version "4.0.1" 1073 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 1074 | 1075 | jsprim@^1.2.2: 1076 | version "1.3.1" 1077 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252" 1078 | dependencies: 1079 | extsprintf "1.0.2" 1080 | json-schema "0.2.3" 1081 | verror "1.3.6" 1082 | 1083 | kind-of@^3.0.2: 1084 | version "3.1.0" 1085 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" 1086 | dependencies: 1087 | is-buffer "^1.0.2" 1088 | 1089 | lazystream@^1.0.0: 1090 | version "1.0.0" 1091 | resolved "https://registry.yarnpkg.com/lazystream/-/lazystream-1.0.0.tgz#f6995fe0f820392f61396be89462407bb77168e4" 1092 | dependencies: 1093 | readable-stream "^2.0.5" 1094 | 1095 | lodash._basecopy@^3.0.0: 1096 | version "3.0.1" 1097 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 1098 | 1099 | lodash._basetostring@^3.0.0: 1100 | version "3.0.1" 1101 | resolved "https://registry.yarnpkg.com/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz#d1861d877f824a52f669832dcaf3ee15566a07d5" 1102 | 1103 | lodash._basevalues@^3.0.0: 1104 | version "3.0.0" 1105 | resolved "https://registry.yarnpkg.com/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz#5b775762802bde3d3297503e26300820fdf661b7" 1106 | 1107 | lodash._getnative@^3.0.0: 1108 | version "3.9.1" 1109 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 1110 | 1111 | lodash._isiterateecall@^3.0.0: 1112 | version "3.0.9" 1113 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 1114 | 1115 | lodash._reescape@^3.0.0: 1116 | version "3.0.0" 1117 | resolved "https://registry.yarnpkg.com/lodash._reescape/-/lodash._reescape-3.0.0.tgz#2b1d6f5dfe07c8a355753e5f27fac7f1cde1616a" 1118 | 1119 | lodash._reevaluate@^3.0.0: 1120 | version "3.0.0" 1121 | resolved "https://registry.yarnpkg.com/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz#58bc74c40664953ae0b124d806996daca431e2ed" 1122 | 1123 | lodash._reinterpolate@^3.0.0: 1124 | version "3.0.0" 1125 | resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" 1126 | 1127 | lodash._root@^3.0.0: 1128 | version "3.0.1" 1129 | resolved "https://registry.yarnpkg.com/lodash._root/-/lodash._root-3.0.1.tgz#fba1c4524c19ee9a5f8136b4609f017cf4ded692" 1130 | 1131 | lodash.escape@^3.0.0: 1132 | version "3.2.0" 1133 | resolved "https://registry.yarnpkg.com/lodash.escape/-/lodash.escape-3.2.0.tgz#995ee0dc18c1b48cc92effae71a10aab5b487698" 1134 | dependencies: 1135 | lodash._root "^3.0.0" 1136 | 1137 | lodash.isarguments@^3.0.0: 1138 | version "3.1.0" 1139 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 1140 | 1141 | lodash.isarray@^3.0.0: 1142 | version "3.0.4" 1143 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 1144 | 1145 | lodash.isequal@^4.0.0: 1146 | version "4.5.0" 1147 | resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" 1148 | 1149 | lodash.keys@^3.0.0: 1150 | version "3.1.2" 1151 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 1152 | dependencies: 1153 | lodash._getnative "^3.0.0" 1154 | lodash.isarguments "^3.0.0" 1155 | lodash.isarray "^3.0.0" 1156 | 1157 | lodash.restparam@^3.0.0: 1158 | version "3.6.1" 1159 | resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" 1160 | 1161 | lodash.template@^3.0.0: 1162 | version "3.6.2" 1163 | resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-3.6.2.tgz#f8cdecc6169a255be9098ae8b0c53d378931d14f" 1164 | dependencies: 1165 | lodash._basecopy "^3.0.0" 1166 | lodash._basetostring "^3.0.0" 1167 | lodash._basevalues "^3.0.0" 1168 | lodash._isiterateecall "^3.0.0" 1169 | lodash._reinterpolate "^3.0.0" 1170 | lodash.escape "^3.0.0" 1171 | lodash.keys "^3.0.0" 1172 | lodash.restparam "^3.0.0" 1173 | lodash.templatesettings "^3.0.0" 1174 | 1175 | lodash.templatesettings@^3.0.0: 1176 | version "3.1.1" 1177 | resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz#fb307844753b66b9f1afa54e262c745307dba8e5" 1178 | dependencies: 1179 | lodash._reinterpolate "^3.0.0" 1180 | lodash.escape "^3.0.0" 1181 | 1182 | lru-cache@2: 1183 | version "2.7.3" 1184 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-2.7.3.tgz#6d4524e8b955f95d4f5b58851ce21dd72fb4e952" 1185 | 1186 | map-stream@~0.1.0: 1187 | version "0.1.0" 1188 | resolved "https://registry.yarnpkg.com/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" 1189 | 1190 | merge-stream@^1.0.0: 1191 | version "1.0.1" 1192 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1" 1193 | dependencies: 1194 | readable-stream "^2.0.1" 1195 | 1196 | micromatch@^2.3.7: 1197 | version "2.3.11" 1198 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1199 | dependencies: 1200 | arr-diff "^2.0.0" 1201 | array-unique "^0.2.1" 1202 | braces "^1.8.2" 1203 | expand-brackets "^0.1.4" 1204 | extglob "^0.3.1" 1205 | filename-regex "^2.0.0" 1206 | is-extglob "^1.0.0" 1207 | is-glob "^2.0.1" 1208 | kind-of "^3.0.2" 1209 | normalize-path "^2.0.1" 1210 | object.omit "^2.0.0" 1211 | parse-glob "^3.0.4" 1212 | regex-cache "^0.4.2" 1213 | 1214 | mime-db@~1.26.0: 1215 | version "1.26.0" 1216 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.26.0.tgz#eaffcd0e4fc6935cf8134da246e2e6c35305adff" 1217 | 1218 | mime-db@~1.30.0: 1219 | version "1.30.0" 1220 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 1221 | 1222 | mime-types@^2.1.12, mime-types@~2.1.11, mime-types@~2.1.7: 1223 | version "2.1.14" 1224 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.14.tgz#f7ef7d97583fcaf3b7d282b6f8b5679dab1e94ee" 1225 | dependencies: 1226 | mime-db "~1.26.0" 1227 | 1228 | mime-types@~2.1.17: 1229 | version "2.1.17" 1230 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 1231 | dependencies: 1232 | mime-db "~1.30.0" 1233 | 1234 | minimatch@0.3: 1235 | version "0.3.0" 1236 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-0.3.0.tgz#275d8edaac4f1bb3326472089e7949c8394699dd" 1237 | dependencies: 1238 | lru-cache "2" 1239 | sigmund "~1.0.0" 1240 | 1241 | "minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2: 1242 | version "3.0.3" 1243 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 1244 | dependencies: 1245 | brace-expansion "^1.0.0" 1246 | 1247 | minimatch@^3.0.4: 1248 | version "3.0.4" 1249 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1250 | dependencies: 1251 | brace-expansion "^1.1.7" 1252 | 1253 | minimist@0.0.8: 1254 | version "0.0.8" 1255 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1256 | 1257 | minimist@^1.1.0: 1258 | version "1.2.0" 1259 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1260 | 1261 | mkdirp@0.3.0: 1262 | version "0.3.0" 1263 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.3.0.tgz#1bbf5ab1ba827af23575143490426455f481fe1e" 1264 | 1265 | mkdirp@0.5.1, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1: 1266 | version "0.5.1" 1267 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1268 | dependencies: 1269 | minimist "0.0.8" 1270 | 1271 | mocha@^2.3.3: 1272 | version "2.5.3" 1273 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-2.5.3.tgz#161be5bdeb496771eb9b35745050b622b5aefc58" 1274 | dependencies: 1275 | commander "2.3.0" 1276 | debug "2.2.0" 1277 | diff "1.4.0" 1278 | escape-string-regexp "1.0.2" 1279 | glob "3.2.11" 1280 | growl "1.9.2" 1281 | jade "0.26.3" 1282 | mkdirp "0.5.1" 1283 | supports-color "1.2.0" 1284 | to-iso-string "0.0.2" 1285 | 1286 | mocha@^4.0.1: 1287 | version "4.0.1" 1288 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-4.0.1.tgz#0aee5a95cf69a4618820f5e51fa31717117daf1b" 1289 | dependencies: 1290 | browser-stdout "1.3.0" 1291 | commander "2.11.0" 1292 | debug "3.1.0" 1293 | diff "3.3.1" 1294 | escape-string-regexp "1.0.5" 1295 | glob "7.1.2" 1296 | growl "1.10.3" 1297 | he "1.1.1" 1298 | mkdirp "0.5.1" 1299 | supports-color "4.4.0" 1300 | 1301 | ms@0.7.1: 1302 | version "0.7.1" 1303 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 1304 | 1305 | ms@0.7.2: 1306 | version "0.7.2" 1307 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 1308 | 1309 | ms@2.0.0: 1310 | version "2.0.0" 1311 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1312 | 1313 | multimatch@^2.0.0: 1314 | version "2.1.0" 1315 | resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b" 1316 | dependencies: 1317 | array-differ "^1.0.0" 1318 | array-union "^1.0.1" 1319 | arrify "^1.0.0" 1320 | minimatch "^3.0.0" 1321 | 1322 | multipipe@^0.1.2: 1323 | version "0.1.2" 1324 | resolved "https://registry.yarnpkg.com/multipipe/-/multipipe-0.1.2.tgz#2a8f2ddf70eed564dff2d57f1e1a137d9f05078b" 1325 | dependencies: 1326 | duplexer2 "0.0.2" 1327 | 1328 | negotiator@0.6.1: 1329 | version "0.6.1" 1330 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" 1331 | 1332 | node.extend@~1.1.2: 1333 | version "1.1.6" 1334 | resolved "https://registry.yarnpkg.com/node.extend/-/node.extend-1.1.6.tgz#a7b882c82d6c93a4863a5504bd5de8ec86258b96" 1335 | dependencies: 1336 | is "^3.1.0" 1337 | 1338 | normalize-path@^2.0.1: 1339 | version "2.0.1" 1340 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" 1341 | 1342 | oauth-sign@~0.8.1, oauth-sign@~0.8.2: 1343 | version "0.8.2" 1344 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1345 | 1346 | object-assign@4.1.0, object-assign@^4.0.0: 1347 | version "4.1.0" 1348 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0" 1349 | 1350 | object-assign@^3.0.0: 1351 | version "3.0.0" 1352 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-3.0.0.tgz#9bedd5ca0897949bca47e7ff408062d549f587f2" 1353 | 1354 | object-component@0.0.3: 1355 | version "0.0.3" 1356 | resolved "https://registry.yarnpkg.com/object-component/-/object-component-0.0.3.tgz#f0c69aa50efc95b866c186f400a33769cb2f1291" 1357 | 1358 | object.omit@^2.0.0: 1359 | version "2.0.1" 1360 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1361 | dependencies: 1362 | for-own "^0.1.4" 1363 | is-extendable "^0.1.1" 1364 | 1365 | once@^1.3.0: 1366 | version "1.4.0" 1367 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1368 | dependencies: 1369 | wrappy "1" 1370 | 1371 | once@~1.3.0: 1372 | version "1.3.3" 1373 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 1374 | dependencies: 1375 | wrappy "1" 1376 | 1377 | options@>=0.0.5: 1378 | version "0.0.6" 1379 | resolved "https://registry.yarnpkg.com/options/-/options-0.0.6.tgz#ec22d312806bb53e731773e7cdaefcf1c643128f" 1380 | 1381 | ordered-read-streams@^0.3.0: 1382 | version "0.3.0" 1383 | resolved "https://registry.yarnpkg.com/ordered-read-streams/-/ordered-read-streams-0.3.0.tgz#7137e69b3298bb342247a1bbee3881c80e2fd78b" 1384 | dependencies: 1385 | is-stream "^1.0.1" 1386 | readable-stream "^2.0.1" 1387 | 1388 | parse-glob@^3.0.4: 1389 | version "3.0.4" 1390 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1391 | dependencies: 1392 | glob-base "^0.3.0" 1393 | is-dotfile "^1.0.0" 1394 | is-extglob "^1.0.0" 1395 | is-glob "^2.0.0" 1396 | 1397 | parsejson@0.0.3: 1398 | version "0.0.3" 1399 | resolved "https://registry.yarnpkg.com/parsejson/-/parsejson-0.0.3.tgz#ab7e3759f209ece99437973f7d0f1f64ae0e64ab" 1400 | dependencies: 1401 | better-assert "~1.0.0" 1402 | 1403 | parseqs@0.0.5: 1404 | version "0.0.5" 1405 | resolved "https://registry.yarnpkg.com/parseqs/-/parseqs-0.0.5.tgz#d5208a3738e46766e291ba2ea173684921a8b89d" 1406 | dependencies: 1407 | better-assert "~1.0.0" 1408 | 1409 | parseuri@0.0.5: 1410 | version "0.0.5" 1411 | resolved "https://registry.yarnpkg.com/parseuri/-/parseuri-0.0.5.tgz#80204a50d4dbb779bfdc6ebe2778d90e4bce320a" 1412 | dependencies: 1413 | better-assert "~1.0.0" 1414 | 1415 | path-dirname@^1.0.0: 1416 | version "1.0.2" 1417 | resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" 1418 | 1419 | path-is-absolute@^1.0.0: 1420 | version "1.0.1" 1421 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1422 | 1423 | pause-stream@0.0.11: 1424 | version "0.0.11" 1425 | resolved "https://registry.yarnpkg.com/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" 1426 | dependencies: 1427 | through "~2.3" 1428 | 1429 | pend@~1.2.0: 1430 | version "1.2.0" 1431 | resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" 1432 | 1433 | performance-now@^2.1.0: 1434 | version "2.1.0" 1435 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 1436 | 1437 | pinkie-promise@^2.0.0: 1438 | version "2.0.1" 1439 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1440 | dependencies: 1441 | pinkie "^2.0.0" 1442 | 1443 | pinkie@^2.0.0: 1444 | version "2.0.4" 1445 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1446 | 1447 | preserve@^0.2.0: 1448 | version "0.2.0" 1449 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1450 | 1451 | process-nextick-args@^1.0.6, process-nextick-args@~1.0.6: 1452 | version "1.0.7" 1453 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1454 | 1455 | punycode@^1.4.1: 1456 | version "1.4.1" 1457 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1458 | 1459 | qs@~6.3.0: 1460 | version "6.3.0" 1461 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.0.tgz#f403b264f23bc01228c74131b407f18d5ea5d442" 1462 | 1463 | qs@~6.5.1: 1464 | version "6.5.1" 1465 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" 1466 | 1467 | querystringify@~1.0.0: 1468 | version "1.0.0" 1469 | resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-1.0.0.tgz#6286242112c5b712fa654e526652bf6a13ff05cb" 1470 | 1471 | queue@^3.1.0: 1472 | version "3.1.0" 1473 | resolved "https://registry.yarnpkg.com/queue/-/queue-3.1.0.tgz#6c49d01f009e2256788789f2bffac6b8b9990585" 1474 | dependencies: 1475 | inherits "~2.0.0" 1476 | 1477 | queue@^4.2.1: 1478 | version "4.4.2" 1479 | resolved "https://registry.yarnpkg.com/queue/-/queue-4.4.2.tgz#5a9733d9a8b8bd1b36e934bc9c55ab89b28e29c7" 1480 | dependencies: 1481 | inherits "~2.0.0" 1482 | 1483 | randomatic@^1.1.3: 1484 | version "1.1.6" 1485 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 1486 | dependencies: 1487 | is-number "^2.0.2" 1488 | kind-of "^3.0.2" 1489 | 1490 | "readable-stream@>=1.0.33-1 <1.1.0-0": 1491 | version "1.0.34" 1492 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" 1493 | dependencies: 1494 | core-util-is "~1.0.0" 1495 | inherits "~2.0.1" 1496 | isarray "0.0.1" 1497 | string_decoder "~0.10.x" 1498 | 1499 | 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: 1500 | version "2.2.2" 1501 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.2.tgz#a9e6fec3c7dda85f8bb1b3ba7028604556fc825e" 1502 | dependencies: 1503 | buffer-shims "^1.0.0" 1504 | core-util-is "~1.0.0" 1505 | inherits "~2.0.1" 1506 | isarray "~1.0.0" 1507 | process-nextick-args "~1.0.6" 1508 | string_decoder "~0.10.x" 1509 | util-deprecate "~1.0.1" 1510 | 1511 | readable-stream@~1.1.9: 1512 | version "1.1.14" 1513 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" 1514 | dependencies: 1515 | core-util-is "~1.0.0" 1516 | inherits "~2.0.1" 1517 | isarray "0.0.1" 1518 | string_decoder "~0.10.x" 1519 | 1520 | regex-cache@^0.4.2: 1521 | version "0.4.3" 1522 | resolved "http://registry.npmjs.org/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 1523 | dependencies: 1524 | is-equal-shallow "^0.1.3" 1525 | is-primitive "^2.0.0" 1526 | 1527 | remove-trailing-separator@^1.0.1: 1528 | version "1.1.0" 1529 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 1530 | 1531 | repeat-element@^1.1.2: 1532 | version "1.1.2" 1533 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1534 | 1535 | repeat-string@^1.5.2: 1536 | version "1.6.1" 1537 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1538 | 1539 | replace-ext@0.0.1: 1540 | version "0.0.1" 1541 | resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-0.0.1.tgz#29bbd92078a739f0bcce2b4ee41e837953522924" 1542 | 1543 | replace-ext@^1.0.0: 1544 | version "1.0.0" 1545 | resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb" 1546 | 1547 | request@^2.83.0: 1548 | version "2.83.0" 1549 | resolved "https://registry.yarnpkg.com/request/-/request-2.83.0.tgz#ca0b65da02ed62935887808e6f510381034e3356" 1550 | dependencies: 1551 | aws-sign2 "~0.7.0" 1552 | aws4 "^1.6.0" 1553 | caseless "~0.12.0" 1554 | combined-stream "~1.0.5" 1555 | extend "~3.0.1" 1556 | forever-agent "~0.6.1" 1557 | form-data "~2.3.1" 1558 | har-validator "~5.0.3" 1559 | hawk "~6.0.2" 1560 | http-signature "~1.2.0" 1561 | is-typedarray "~1.0.0" 1562 | isstream "~0.1.2" 1563 | json-stringify-safe "~5.0.1" 1564 | mime-types "~2.1.17" 1565 | oauth-sign "~0.8.2" 1566 | performance-now "^2.1.0" 1567 | qs "~6.5.1" 1568 | safe-buffer "^5.1.1" 1569 | stringstream "~0.0.5" 1570 | tough-cookie "~2.3.3" 1571 | tunnel-agent "^0.6.0" 1572 | uuid "^3.1.0" 1573 | 1574 | request@~2.79.0: 1575 | version "2.79.0" 1576 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" 1577 | dependencies: 1578 | aws-sign2 "~0.6.0" 1579 | aws4 "^1.2.1" 1580 | caseless "~0.11.0" 1581 | combined-stream "~1.0.5" 1582 | extend "~3.0.0" 1583 | forever-agent "~0.6.1" 1584 | form-data "~2.1.1" 1585 | har-validator "~2.0.6" 1586 | hawk "~3.1.3" 1587 | http-signature "~1.1.0" 1588 | is-typedarray "~1.0.0" 1589 | isstream "~0.1.2" 1590 | json-stringify-safe "~5.0.1" 1591 | mime-types "~2.1.7" 1592 | oauth-sign "~0.8.1" 1593 | qs "~6.3.0" 1594 | stringstream "~0.0.4" 1595 | tough-cookie "~2.3.0" 1596 | tunnel-agent "~0.4.1" 1597 | uuid "^3.0.0" 1598 | 1599 | requires-port@~1.0.0: 1600 | version "1.0.0" 1601 | resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" 1602 | 1603 | rimraf@2: 1604 | version "2.5.4" 1605 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" 1606 | dependencies: 1607 | glob "^7.0.5" 1608 | 1609 | safe-buffer@^5.0.1, safe-buffer@^5.1.1: 1610 | version "5.1.1" 1611 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 1612 | 1613 | semver@^5.4.1: 1614 | version "5.4.1" 1615 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 1616 | 1617 | sigmund@~1.0.0: 1618 | version "1.0.1" 1619 | resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590" 1620 | 1621 | sntp@1.x.x: 1622 | version "1.0.9" 1623 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 1624 | dependencies: 1625 | hoek "2.x.x" 1626 | 1627 | sntp@2.x.x: 1628 | version "2.1.0" 1629 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8" 1630 | dependencies: 1631 | hoek "4.x.x" 1632 | 1633 | socket.io-adapter@0.5.0: 1634 | version "0.5.0" 1635 | resolved "https://registry.yarnpkg.com/socket.io-adapter/-/socket.io-adapter-0.5.0.tgz#cb6d4bb8bec81e1078b99677f9ced0046066bb8b" 1636 | dependencies: 1637 | debug "2.3.3" 1638 | socket.io-parser "2.3.1" 1639 | 1640 | socket.io-client@1.7.2, socket.io-client@^1.7.2: 1641 | version "1.7.2" 1642 | resolved "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-1.7.2.tgz#39fdb0c3dd450e321b7e40cfd83612ec533dd644" 1643 | dependencies: 1644 | backo2 "1.0.2" 1645 | component-bind "1.0.0" 1646 | component-emitter "1.2.1" 1647 | debug "2.3.3" 1648 | engine.io-client "1.8.2" 1649 | has-binary "0.1.7" 1650 | indexof "0.0.1" 1651 | object-component "0.0.3" 1652 | parseuri "0.0.5" 1653 | socket.io-parser "2.3.1" 1654 | to-array "0.1.4" 1655 | 1656 | socket.io-parser@2.3.1: 1657 | version "2.3.1" 1658 | resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-2.3.1.tgz#dd532025103ce429697326befd64005fcfe5b4a0" 1659 | dependencies: 1660 | component-emitter "1.1.2" 1661 | debug "2.2.0" 1662 | isarray "0.0.1" 1663 | json3 "3.3.2" 1664 | 1665 | socket.io@^1.7.2: 1666 | version "1.7.2" 1667 | resolved "https://registry.yarnpkg.com/socket.io/-/socket.io-1.7.2.tgz#83bbbdf2e79263b378900da403e7843e05dc3b71" 1668 | dependencies: 1669 | debug "2.3.3" 1670 | engine.io "1.8.2" 1671 | has-binary "0.1.7" 1672 | object-assign "4.1.0" 1673 | socket.io-adapter "0.5.0" 1674 | socket.io-client "1.7.2" 1675 | socket.io-parser "2.3.1" 1676 | 1677 | source-map-support@^0.5.0: 1678 | version "0.5.0" 1679 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.0.tgz#2018a7ad2bdf8faf2691e5fddab26bed5a2bacab" 1680 | dependencies: 1681 | source-map "^0.6.0" 1682 | 1683 | source-map@^0.6.0: 1684 | version "0.6.1" 1685 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 1686 | 1687 | sparkles@^1.0.0: 1688 | version "1.0.0" 1689 | resolved "https://registry.yarnpkg.com/sparkles/-/sparkles-1.0.0.tgz#1acbbfb592436d10bbe8f785b7cc6f82815012c3" 1690 | 1691 | split@0.3: 1692 | version "0.3.3" 1693 | resolved "https://registry.yarnpkg.com/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" 1694 | dependencies: 1695 | through "2" 1696 | 1697 | sshpk@^1.7.0: 1698 | version "1.10.2" 1699 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.10.2.tgz#d5a804ce22695515638e798dbe23273de070a5fa" 1700 | dependencies: 1701 | asn1 "~0.2.3" 1702 | assert-plus "^1.0.0" 1703 | dashdash "^1.12.0" 1704 | getpass "^0.1.1" 1705 | optionalDependencies: 1706 | bcrypt-pbkdf "^1.0.0" 1707 | ecc-jsbn "~0.1.1" 1708 | jodid25519 "^1.0.0" 1709 | jsbn "~0.1.0" 1710 | tweetnacl "~0.14.0" 1711 | 1712 | stat-mode@^0.2.0: 1713 | version "0.2.2" 1714 | resolved "https://registry.yarnpkg.com/stat-mode/-/stat-mode-0.2.2.tgz#e6c80b623123d7d80cf132ce538f346289072502" 1715 | 1716 | stream-combiner@~0.0.4: 1717 | version "0.0.4" 1718 | resolved "https://registry.yarnpkg.com/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" 1719 | dependencies: 1720 | duplexer "~0.1.1" 1721 | 1722 | stream-shift@^1.0.0: 1723 | version "1.0.0" 1724 | resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" 1725 | 1726 | streamfilter@^1.0.5: 1727 | version "1.0.5" 1728 | resolved "https://registry.yarnpkg.com/streamfilter/-/streamfilter-1.0.5.tgz#87507111beb8e298451717b511cfed8f002abf53" 1729 | dependencies: 1730 | readable-stream "^2.0.2" 1731 | 1732 | streamifier@~0.1.1: 1733 | version "0.1.1" 1734 | resolved "https://registry.yarnpkg.com/streamifier/-/streamifier-0.1.1.tgz#97e98d8fa4d105d62a2691d1dc07e820db8dfc4f" 1735 | 1736 | string_decoder@~0.10.x: 1737 | version "0.10.31" 1738 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 1739 | 1740 | stringstream@~0.0.4, stringstream@~0.0.5: 1741 | version "0.0.5" 1742 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 1743 | 1744 | strip-ansi@^3.0.0: 1745 | version "3.0.1" 1746 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1747 | dependencies: 1748 | ansi-regex "^2.0.0" 1749 | 1750 | strip-bom-stream@^1.0.0: 1751 | version "1.0.0" 1752 | resolved "https://registry.yarnpkg.com/strip-bom-stream/-/strip-bom-stream-1.0.0.tgz#e7144398577d51a6bed0fa1994fa05f43fd988ee" 1753 | dependencies: 1754 | first-chunk-stream "^1.0.0" 1755 | strip-bom "^2.0.0" 1756 | 1757 | strip-bom@^2.0.0: 1758 | version "2.0.0" 1759 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 1760 | dependencies: 1761 | is-utf8 "^0.2.0" 1762 | 1763 | supports-color@1.2.0: 1764 | version "1.2.0" 1765 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-1.2.0.tgz#ff1ed1e61169d06b3cf2d588e188b18d8847e17e" 1766 | 1767 | supports-color@4.4.0: 1768 | version "4.4.0" 1769 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.4.0.tgz#883f7ddabc165142b2a61427f3352ded195d1a3e" 1770 | dependencies: 1771 | has-flag "^2.0.0" 1772 | 1773 | supports-color@^2.0.0: 1774 | version "2.0.0" 1775 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1776 | 1777 | tar@^2.2.1: 1778 | version "2.2.1" 1779 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 1780 | dependencies: 1781 | block-stream "*" 1782 | fstream "^1.0.2" 1783 | inherits "2" 1784 | 1785 | through2-filter@^2.0.0: 1786 | version "2.0.0" 1787 | resolved "https://registry.yarnpkg.com/through2-filter/-/through2-filter-2.0.0.tgz#60bc55a0dacb76085db1f9dae99ab43f83d622ec" 1788 | dependencies: 1789 | through2 "~2.0.0" 1790 | xtend "~4.0.0" 1791 | 1792 | through2@^0.6.0, through2@^0.6.1, through2@~0.6.5: 1793 | version "0.6.5" 1794 | resolved "https://registry.yarnpkg.com/through2/-/through2-0.6.5.tgz#41ab9c67b29d57209071410e1d7a7a968cd3ad48" 1795 | dependencies: 1796 | readable-stream ">=1.0.33-1 <1.1.0-0" 1797 | xtend ">=4.0.0 <4.1.0-0" 1798 | 1799 | through2@^2.0.0, through2@^2.0.1, through2@^2.0.3, through2@~2.0.0, through2@~2.0.3: 1800 | version "2.0.3" 1801 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 1802 | dependencies: 1803 | readable-stream "^2.1.5" 1804 | xtend "~4.0.1" 1805 | 1806 | through@2, through@~2.3, through@~2.3.1: 1807 | version "2.3.8" 1808 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 1809 | 1810 | time-stamp@^1.0.0: 1811 | version "1.0.1" 1812 | resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-1.0.1.tgz#9f4bd23559c9365966f3302dbba2b07c6b99b151" 1813 | 1814 | to-absolute-glob@^0.1.1: 1815 | version "0.1.1" 1816 | resolved "https://registry.yarnpkg.com/to-absolute-glob/-/to-absolute-glob-0.1.1.tgz#1cdfa472a9ef50c239ee66999b662ca0eb39937f" 1817 | dependencies: 1818 | extend-shallow "^2.0.1" 1819 | 1820 | to-array@0.1.4: 1821 | version "0.1.4" 1822 | resolved "https://registry.yarnpkg.com/to-array/-/to-array-0.1.4.tgz#17e6c11f73dd4f3d74cda7a4ff3238e9ad9bf890" 1823 | 1824 | to-iso-string@0.0.2: 1825 | version "0.0.2" 1826 | resolved "https://registry.yarnpkg.com/to-iso-string/-/to-iso-string-0.0.2.tgz#4dc19e664dfccbe25bd8db508b00c6da158255d1" 1827 | 1828 | tough-cookie@~2.3.0: 1829 | version "2.3.2" 1830 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 1831 | dependencies: 1832 | punycode "^1.4.1" 1833 | 1834 | tough-cookie@~2.3.3: 1835 | version "2.3.3" 1836 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 1837 | dependencies: 1838 | punycode "^1.4.1" 1839 | 1840 | tunnel-agent@^0.6.0: 1841 | version "0.6.0" 1842 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 1843 | dependencies: 1844 | safe-buffer "^5.0.1" 1845 | 1846 | tunnel-agent@~0.4.1: 1847 | version "0.4.3" 1848 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 1849 | 1850 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 1851 | version "0.14.5" 1852 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 1853 | 1854 | typescript@^2.6.1: 1855 | version "2.6.1" 1856 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.6.1.tgz#ef39cdea27abac0b500242d6726ab90e0c846631" 1857 | 1858 | ultron@1.0.x: 1859 | version "1.0.2" 1860 | resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.0.2.tgz#ace116ab557cd197386a4e88f4685378c8b2e4fa" 1861 | 1862 | unique-stream@^2.0.2: 1863 | version "2.2.1" 1864 | resolved "https://registry.yarnpkg.com/unique-stream/-/unique-stream-2.2.1.tgz#5aa003cfbe94c5ff866c4e7d668bb1c4dbadb369" 1865 | dependencies: 1866 | json-stable-stringify "^1.0.0" 1867 | through2-filter "^2.0.0" 1868 | 1869 | url-parse@^1.1.9: 1870 | version "1.2.0" 1871 | resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.2.0.tgz#3a19e8aaa6d023ddd27dcc44cb4fc8f7fec23986" 1872 | dependencies: 1873 | querystringify "~1.0.0" 1874 | requires-port "~1.0.0" 1875 | 1876 | util-deprecate@~1.0.1: 1877 | version "1.0.2" 1878 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1879 | 1880 | uuid@^3.0.0: 1881 | version "3.0.1" 1882 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 1883 | 1884 | uuid@^3.1.0: 1885 | version "3.1.0" 1886 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 1887 | 1888 | vali-date@^1.0.0: 1889 | version "1.0.0" 1890 | resolved "https://registry.yarnpkg.com/vali-date/-/vali-date-1.0.0.tgz#1b904a59609fb328ef078138420934f6b86709a6" 1891 | 1892 | verror@1.3.6: 1893 | version "1.3.6" 1894 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 1895 | dependencies: 1896 | extsprintf "1.0.2" 1897 | 1898 | vinyl-fs@^2.0.0, vinyl-fs@^2.4.3: 1899 | version "2.4.4" 1900 | resolved "https://registry.yarnpkg.com/vinyl-fs/-/vinyl-fs-2.4.4.tgz#be6ff3270cb55dfd7d3063640de81f25d7532239" 1901 | dependencies: 1902 | duplexify "^3.2.0" 1903 | glob-stream "^5.3.2" 1904 | graceful-fs "^4.0.0" 1905 | gulp-sourcemaps "1.6.0" 1906 | is-valid-glob "^0.3.0" 1907 | lazystream "^1.0.0" 1908 | lodash.isequal "^4.0.0" 1909 | merge-stream "^1.0.0" 1910 | mkdirp "^0.5.0" 1911 | object-assign "^4.0.0" 1912 | readable-stream "^2.0.4" 1913 | strip-bom "^2.0.0" 1914 | strip-bom-stream "^1.0.0" 1915 | through2 "^2.0.0" 1916 | through2-filter "^2.0.0" 1917 | vali-date "^1.0.0" 1918 | vinyl "^1.0.0" 1919 | 1920 | vinyl-source-stream@^1.1.0: 1921 | version "1.1.0" 1922 | resolved "https://registry.yarnpkg.com/vinyl-source-stream/-/vinyl-source-stream-1.1.0.tgz#44cbe5108205279deb0c5653c094a2887938b1ab" 1923 | dependencies: 1924 | through2 "^0.6.1" 1925 | vinyl "^0.4.3" 1926 | 1927 | vinyl@^0.4.3, vinyl@~0.4.6: 1928 | version "0.4.6" 1929 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-0.4.6.tgz#2f356c87a550a255461f36bbeb2a5ba8bf784847" 1930 | dependencies: 1931 | clone "^0.2.0" 1932 | clone-stats "^0.0.1" 1933 | 1934 | vinyl@^0.5.0: 1935 | version "0.5.3" 1936 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-0.5.3.tgz#b0455b38fc5e0cf30d4325132e461970c2091cde" 1937 | dependencies: 1938 | clone "^1.0.0" 1939 | clone-stats "^0.0.1" 1940 | replace-ext "0.0.1" 1941 | 1942 | vinyl@^1.0.0: 1943 | version "1.2.0" 1944 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-1.2.0.tgz#5c88036cf565e5df05558bfc911f8656df218884" 1945 | dependencies: 1946 | clone "^1.0.0" 1947 | clone-stats "^0.0.1" 1948 | replace-ext "0.0.1" 1949 | 1950 | vinyl@^2.0.2: 1951 | version "2.1.0" 1952 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-2.1.0.tgz#021f9c2cf951d6b939943c89eb5ee5add4fd924c" 1953 | dependencies: 1954 | clone "^2.1.1" 1955 | clone-buffer "^1.0.0" 1956 | clone-stats "^1.0.0" 1957 | cloneable-readable "^1.0.0" 1958 | remove-trailing-separator "^1.0.1" 1959 | replace-ext "^1.0.0" 1960 | 1961 | vinyl@~2.0.1: 1962 | version "2.0.2" 1963 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-2.0.2.tgz#0a3713d8d4e9221c58f10ca16c0116c9e25eda7c" 1964 | dependencies: 1965 | clone "^1.0.0" 1966 | clone-buffer "^1.0.0" 1967 | clone-stats "^1.0.0" 1968 | cloneable-readable "^1.0.0" 1969 | is-stream "^1.1.0" 1970 | remove-trailing-separator "^1.0.1" 1971 | replace-ext "^1.0.0" 1972 | 1973 | vscode@^1.1.6: 1974 | version "1.1.7" 1975 | resolved "https://registry.yarnpkg.com/vscode/-/vscode-1.1.7.tgz#a2c361026e099acedaa134ff2a9f03c25b7d30b3" 1976 | dependencies: 1977 | glob "^7.1.2" 1978 | gulp-chmod "^2.0.0" 1979 | gulp-filter "^5.0.1" 1980 | gulp-gunzip "1.0.0" 1981 | gulp-remote-src "^0.4.3" 1982 | gulp-symdest "^1.1.0" 1983 | gulp-untar "^0.0.6" 1984 | gulp-vinyl-zip "^2.1.0" 1985 | mocha "^4.0.1" 1986 | request "^2.83.0" 1987 | semver "^5.4.1" 1988 | source-map-support "^0.5.0" 1989 | url-parse "^1.1.9" 1990 | vinyl-source-stream "^1.1.0" 1991 | 1992 | wrappy@1: 1993 | version "1.0.2" 1994 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1995 | 1996 | ws@1.1.1: 1997 | version "1.1.1" 1998 | resolved "https://registry.yarnpkg.com/ws/-/ws-1.1.1.tgz#082ddb6c641e85d4bb451f03d52f06eabdb1f018" 1999 | dependencies: 2000 | options ">=0.0.5" 2001 | ultron "1.0.x" 2002 | 2003 | wtf-8@1.0.0: 2004 | version "1.0.0" 2005 | resolved "https://registry.yarnpkg.com/wtf-8/-/wtf-8-1.0.0.tgz#392d8ba2d0f1c34d1ee2d630f15d0efb68e1048a" 2006 | 2007 | xmlhttprequest-ssl@1.5.3: 2008 | version "1.5.3" 2009 | resolved "https://registry.yarnpkg.com/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.3.tgz#185a888c04eca46c3e4070d99f7b49de3528992d" 2010 | 2011 | "xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0, xtend@~4.0.0, xtend@~4.0.1: 2012 | version "4.0.1" 2013 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2014 | 2015 | yauzl@^2.2.1: 2016 | version "2.7.0" 2017 | resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.7.0.tgz#e21d847868b496fc29eaec23ee87fdd33e9b2bce" 2018 | dependencies: 2019 | buffer-crc32 "~0.2.3" 2020 | fd-slicer "~1.0.1" 2021 | 2022 | yazl@^2.2.1: 2023 | version "2.4.2" 2024 | resolved "https://registry.yarnpkg.com/yazl/-/yazl-2.4.2.tgz#14cb19083e1e25a70092c1588aabe0f4e4dd4d88" 2025 | dependencies: 2026 | buffer-crc32 "~0.2.3" 2027 | 2028 | yeast@0.1.2: 2029 | version "0.1.2" 2030 | resolved "https://registry.yarnpkg.com/yeast/-/yeast-0.1.2.tgz#008e06d8094320c372dbc2f8ed76a0ca6c8ac419" 2031 | --------------------------------------------------------------------------------