├── test.html ├── .gitignore ├── tslint.json ├── test ├── MyPopout.css ├── test.css ├── MyPopout.tsx └── test.tsx ├── .npmignore ├── src ├── popouts.ts ├── index.ts ├── WindowFeaturesOptions.ts ├── globalContext.ts ├── PopoutProps.ts ├── crossBrowserCloneNode.ts ├── insertPopoutStylesheetRule.ts ├── childWindowMonitor.ts ├── generateWindowFeaturesString.ts └── Popout.tsx ├── .vscode └── settings.json ├── public └── test.css ├── tsconfig.json ├── tsconfig.build.json ├── index.html ├── .travis.yml ├── webpack.config.js ├── package.json ├── LICENSE ├── README.md └── yarn.lock /test.html: -------------------------------------------------------------------------------- 1 | Test child -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | *.js 3 | *.d.ts -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "rules": { 3 | "quotemark": [true, "single"] 4 | } 5 | } -------------------------------------------------------------------------------- /test/MyPopout.css: -------------------------------------------------------------------------------- 1 | h1.new { 2 | color: red; 3 | } 4 | 5 | body.popout { 6 | min-width: 300px; 7 | } 8 | -------------------------------------------------------------------------------- /test/test.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | font-family: 'Comic Sans MS'; 3 | } 4 | 5 | body { 6 | min-width: 1000px; 7 | } 8 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | tsconfig.json 3 | tsconfig.build.json 4 | webpack.config.js 5 | tslint.json 6 | yarn.lock 7 | test/ 8 | *.tsx -------------------------------------------------------------------------------- /src/popouts.ts: -------------------------------------------------------------------------------- 1 | import { Popout } from './Popout'; 2 | 3 | const popouts: { [id: string]: Popout } = {}; 4 | 5 | export { popouts }; 6 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": true, 3 | "typescript.tsdk": "node_modules\\typescript\\lib", 4 | "prettier.tabWidth": 4 5 | } -------------------------------------------------------------------------------- /public/test.css: -------------------------------------------------------------------------------- 1 | html, 2 | body { 3 | width: 100vh; 4 | height: 100vh; 5 | } 6 | 7 | #test { 8 | margin: 0 auto; 9 | width: 600px; 10 | } 11 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export { Popout } from './Popout'; 2 | export { PopoutProps } from './PopoutProps'; 3 | export { insertPopoutStylesheetRule } from './insertPopoutStylesheetRule'; 4 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es5", 4 | "module": "commonjs", 5 | "jsx": "react", 6 | "strict": true, 7 | "noUnusedLocals": true 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "outDir": "lib", 4 | "rootDir": "src", 5 | "declaration": true 6 | }, 7 | "extends": "./tsconfig.json", 8 | "include": ["src"] 9 | } 10 | -------------------------------------------------------------------------------- /src/WindowFeaturesOptions.ts: -------------------------------------------------------------------------------- 1 | export interface WindowFeaturesOptions { 2 | left: number; 3 | top: number; 4 | height: number; 5 | width: number; 6 | menubar: boolean; 7 | toolbar: boolean; 8 | location: boolean; 9 | status: boolean; 10 | resizable: boolean; 11 | scrollbars: boolean; 12 | } 13 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /src/globalContext.ts: -------------------------------------------------------------------------------- 1 | const id = '__$$REACT_POPOUT_COMPONENT$$__'; 2 | 3 | export function set(key: string, value: any) { 4 | (window as any)[id] = (window as any)[id] || {}; 5 | (window as any)[id][key] = value; 6 | } 7 | 8 | export function get(key: string) { 9 | return (window as any)[id] && (window as any)[id][key]; 10 | } 11 | 12 | export { id }; 13 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "node" 4 | cache: yarn 5 | before_install: 6 | - yarn global add makeshift && makeshift -r https://registry.npmjs.org 7 | install: 8 | - yarn install 9 | script: 10 | - yarn build 11 | deploy: 12 | - provider: npm 13 | skip_cleanup: true 14 | email: kchau@microsoft.com 15 | api_key: $NPM_TOKEN 16 | tag: latest 17 | on: 18 | tags: true -------------------------------------------------------------------------------- /src/PopoutProps.ts: -------------------------------------------------------------------------------- 1 | import { WindowFeaturesOptions } from './WindowFeaturesOptions'; 2 | 3 | export interface PopoutProps { 4 | hidden?: boolean; 5 | name?: string; 6 | onClose?: () => void; 7 | onBeforeUnload?: (evt: BeforeUnloadEvent) => string | null | undefined; 8 | onBlocked?: () => void; 9 | children?: any; 10 | options?: Partial; 11 | html?: string; 12 | url?: string; 13 | } 14 | -------------------------------------------------------------------------------- /src/crossBrowserCloneNode.ts: -------------------------------------------------------------------------------- 1 | export function crossBrowserCloneNode( 2 | element: HTMLElement, 3 | targetDocument: HTMLDocument 4 | ) { 5 | const cloned = targetDocument.createElement(element.tagName) as HTMLElement; 6 | cloned.innerHTML = element.innerHTML; 7 | 8 | if (element.hasAttributes()) { 9 | let attribute: Attr; 10 | for (let i = 0; i < element.attributes.length; i++) { 11 | attribute = element.attributes[i]; 12 | cloned.setAttribute(attribute.name, attribute.value); 13 | } 14 | } 15 | 16 | return cloned; 17 | } 18 | -------------------------------------------------------------------------------- /src/insertPopoutStylesheetRule.ts: -------------------------------------------------------------------------------- 1 | import { popouts } from './popouts'; 2 | 3 | export function insertPopoutStylesheetRule(rule: string) { 4 | Object.keys(popouts).forEach(popoutKey => { 5 | const popout = popouts[popoutKey]; 6 | if (popout.child && popout.styleElement) { 7 | try { 8 | // tslint:disable-next-line:no-any 9 | const { sheet }: any = popout.styleElement; 10 | sheet.insertRule(rule, sheet.cssRules.length); 11 | } catch (e) { 12 | /* no-op on errors */ 13 | } 14 | } 15 | }); 16 | } 17 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- 1 | const path = require('path'); 2 | 3 | module.exports = { 4 | entry: './test/test.tsx', 5 | module: { 6 | rules: [ 7 | { 8 | test: /\.tsx?$/, 9 | use: 'ts-loader', 10 | exclude: /node_modules/, 11 | }, 12 | { 13 | test: /\.css$/, 14 | use: ['style-loader', 'css-loader'], 15 | }, 16 | ], 17 | }, 18 | resolve: { 19 | extensions: ['.tsx', '.ts', '.js'], 20 | }, 21 | output: { 22 | filename: 'bundle.js', 23 | path: path.resolve(__dirname, 'test'), 24 | publicPath: 'test', 25 | devtoolModuleFilenameTemplate: 'http://localhost:8080/[resource-path]', 26 | }, 27 | }; 28 | -------------------------------------------------------------------------------- /src/childWindowMonitor.ts: -------------------------------------------------------------------------------- 1 | import { popouts } from './popouts'; 2 | import * as globalContext from './globalContext'; 3 | 4 | const monitors: { 5 | [id: string]: any; 6 | } = {}; 7 | 8 | const delay = 250; 9 | 10 | function start(id: string) { 11 | const monitor = () => { 12 | if (popouts[id] && popouts[id].props.onClose) { 13 | if (!popouts[id].child || popouts[id].child!.closed) { 14 | stop(id); 15 | popouts[id].props.onClose!(); 16 | popouts[id].child = null; 17 | } else { 18 | monitors[id] = setTimeout(monitor, delay); 19 | } 20 | } 21 | }; 22 | 23 | monitors[id] = setTimeout(monitor, delay); 24 | } 25 | 26 | function stop(id: string) { 27 | if (monitors[id]) { 28 | clearTimeout(monitors[id]); 29 | delete monitors[id]; 30 | } 31 | } 32 | 33 | globalContext.set('startMonitor', start); 34 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-popout-component", 3 | "version": "1.8.5", 4 | "description": "", 5 | "main": "lib/index.js", 6 | "types": "lib/index.d.ts", 7 | "scripts": { 8 | "start": "webpack-dev-server", 9 | "build": "tsc -p tsconfig.build.json", 10 | "watch": "tsc -w -p tsconfig.build.json" 11 | }, 12 | "keywords": [], 13 | "author": "", 14 | "license": "MIT", 15 | "devDependencies": { 16 | "@types/node": "^8.0.48", 17 | "@types/react": "^16.0.21", 18 | "@types/react-dom": "^16.0.2", 19 | "css-loader": "^0.28.7", 20 | "react": "^16.0.0", 21 | "react-dom": "^16.0.0", 22 | "style-loader": "^0.19.0", 23 | "ts-loader": "^2.3.7", 24 | "typescript": "^2.5.2", 25 | "webpack": "^3.8.1", 26 | "webpack-dev-server": "^2.8.2" 27 | }, 28 | "peerDependencies": { 29 | "react": ">=16.0.0", 30 | "react-dom": ">=16.0.0" 31 | }, 32 | "repository": { 33 | "type": "git", 34 | "url": "https://github.com/microsoft/react-popout-component" 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/generateWindowFeaturesString.ts: -------------------------------------------------------------------------------- 1 | import { WindowFeaturesOptions } from "./WindowFeaturesOptions"; 2 | 3 | export function generateWindowFeaturesString( 4 | optionsProp: Partial 5 | ) { 6 | function valueOf(value: number | boolean | undefined): string | undefined { 7 | if (typeof value === 'boolean') { 8 | return value ? '1' : '0'; 9 | } else if (value) { 10 | return String(value); 11 | } 12 | } 13 | 14 | let options: WindowFeaturesOptions = { 15 | left: 0, 16 | top: 0, 17 | height: 600, 18 | width: 800, 19 | location: false, 20 | menubar: false, 21 | resizable: false, 22 | scrollbars: false, 23 | status: false, 24 | toolbar: false, 25 | }; 26 | 27 | options = { ...options, ...optionsProp }; 28 | 29 | return (Object.getOwnPropertyNames( 30 | options 31 | ) as (keyof WindowFeaturesOptions)[]) 32 | .map( 33 | (key: keyof WindowFeaturesOptions) => 34 | `${key}=${valueOf(options[key])}` 35 | ) 36 | .join(','); 37 | } 38 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) Microsoft Corporation. All rights reserved. 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 | -------------------------------------------------------------------------------- /test/MyPopout.tsx: -------------------------------------------------------------------------------- 1 | import * as React from 'react'; 2 | import { Popout } from '../src/Popout'; 3 | import { PopoutProps } from '../src/PopoutProps'; 4 | 5 | const styles = require('./MyPopout.css'); 6 | 7 | interface MyPopoutProps extends PopoutProps { 8 | message: string; 9 | } 10 | 11 | export default class MyPopout extends React.Component { 12 | constructor(props: any) { 13 | super(props); 14 | this.state = { newStyle: false }; 15 | } 16 | 17 | render() { 18 | const className = this.state.newStyle ? 'new' : 'old'; 19 | 20 | return ( 21 | 40 | ); 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /test/test.tsx: -------------------------------------------------------------------------------- 1 | import * as React from 'react'; 2 | import * as ReactDOM from 'react-dom'; 3 | import MyPopout from './MyPopout'; 4 | import { Popout } from '../src/Popout'; 5 | import { insertPopoutStylesheetRule } from '../src/insertPopoutStylesheetRule'; 6 | 7 | import './test.css'; 8 | 9 | class App extends React.Component { 10 | constructor(props: any) { 11 | super(props); 12 | this.state = { 13 | open: { 14 | '0': false, 15 | '1': false, 16 | '2': false, 17 | '3': false, 18 | }, 19 | message: 'Hello World!', 20 | }; 21 | } 22 | 23 | openWindow(id: string) { 24 | let open = this.state.open; 25 | open[id] = true; 26 | 27 | this.setState({ open }); 28 | } 29 | 30 | closeWindow(id: string) { 31 | let open = this.state.open; 32 | open[id] = false; 33 | 34 | this.setState({ open }); 35 | } 36 | 37 | onClose(id: string) { 38 | let open = this.state.open; 39 | open[id] = false; 40 | 41 | this.setState({ open: open }); 42 | } 43 | 44 | onUrlClose() { 45 | let open = this.state.open; 46 | open['3'] = false; 47 | 48 | this.setState({ 49 | open: open, 50 | message: 'closed the url one', 51 | }); 52 | } 53 | 54 | changeText() { 55 | this.setState({ 56 | message: 57 | 'Hello ' + 58 | Math.random() 59 | .toString(12) 60 | .slice(2), 61 | }); 62 | } 63 | 64 | componentDidCatch(error: Error, errorInfo: any) { 65 | console.log(error, errorInfo); 66 | } 67 | 68 | render() { 69 | return ( 70 |
71 |

Popout

72 | {['0', '1', '2'].map(name => ( 73 |
74 | {this.state.open[name] && ( 75 | this.onClose(name)} 79 | onBeforeUnload={evt => { 80 | if (name == '0') { 81 | return 'Are you sure?!'; 82 | } 83 | }} 84 | /> 85 | )} 86 | 87 | 88 | 89 |
90 | ))} 91 | 92 |
93 | {this.state.open['3'] && ( 94 | this.onUrlClose()} 98 | onBlocked={() => console.log("you can't block me!")} 99 | /> 100 | )} 101 | 102 | 103 | 104 |
105 | 106 | 107 |
108 | ); 109 | } 110 | } 111 | 112 | const style = document.createElement('style'); 113 | 114 | style.setAttribute('data-merge-styles', 'true'); 115 | style.type = 'text/css'; 116 | 117 | document.head.appendChild(style); 118 | 119 | (window as any).insertRule = (rule: string) => { 120 | (style.sheet as any).insertRule(rule, (style.sheet as any).cssRules.length); 121 | insertPopoutStylesheetRule(rule); 122 | }; 123 | 124 | ReactDOM.render(, document.getElementById('test')); 125 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # React Popout Component 2 | 3 | [![Build Status](https://travis-ci.org/Microsoft/react-popout-component.svg?branch=v1.0.0)](https://travis-ci.org/Microsoft/react-popout-component) [![npm](https://img.shields.io/npm/v/react-popout-component.svg)](https://www.npmjs.com/package/react-popout-component) 4 | 5 | This is a React component designed for React 16 with complete Typescript support. 6 | 7 | ## Features 8 | 9 | 1. This is developed along side with the React 16 fix to allow mounting across frames *even for Edge and IE* browsers 10 | 2. Typescript support for all the options (especially hard to remember window features) 11 | 3. Reflects style-loader injected styles from the main window to the children window 12 | 13 | ## Installation 14 | 15 | ```sh 16 | npm install react-popout-component 17 | ``` 18 | 19 | or 20 | 21 | ```sh 22 | yarn add react-popout-component 23 | ``` 24 | 25 | ## Usage 26 | 27 | ```tsx 28 | import * as React from 'react'; 29 | import {Popout} from 'react-popout-component'; 30 | 31 | export default class App extends React.Component { 32 | constructor(props: any) { 33 | super(props); 34 | this.state = {showPopout: false}; 35 | } 36 | 37 | onClick = () => { 38 | this.setState({showPopout: true}); 39 | } 40 | 41 | render() { 42 | return ( 43 |
44 |

Now you too have the power to POP OUT

45 | 46 | {this.state.showPopout && ( 47 | 48 |
You can put anything here!
49 |
50 | )} 51 |
52 | ); 53 | } 54 | } 55 | 56 | ``` 57 | 58 | ## API 59 | 60 | PopOut Component has the following props: 61 | 62 | ```ts 63 | export interface PopoutProps { 64 | hidden?: boolean; 65 | name?: string; 66 | onClose?: () => void; 67 | onBeforeUnload?: (evt: BeforeUnloadEvent) => string | null | undefined; 68 | children?: any; 69 | options?: Partial; 70 | html?: string; 71 | } 72 | ``` 73 | 74 | The `options` prop is of the following type: 75 | 76 | ```ts 77 | export interface WindowFeaturesOptions { 78 | left: number; 79 | top: number; 80 | height: number; 81 | width: number; 82 | menubar: boolean; 83 | toolbar: boolean; 84 | location: boolean; 85 | status: boolean; 86 | resizable: boolean; 87 | scrollbars: boolean; 88 | } 89 | ``` 90 | 91 | ## Injection Mode 92 | 93 | This component works well for both modes of style loading: 94 | 1. Appending Style blocks (e.g. style-loader) 95 | 2. Manual insertRule() into a CSSStyleSheet 96 | 97 | For the second case with insertRule(), since there is nothing that can observe the insert event, a callback must be registered when a 98 | rule is inserted. For an example usage with the Microsoft [Office Fabric](https://github.com/officedev/office-ui-fabric-react), 99 | set it up as a global like so: 100 | 101 | ```js 102 | import {insertPopoutStylesheetRule} from 'react-popout-component'; 103 | 104 | window.FabricConfig = { 105 | mergeStyles: { 106 | onInsertRule: insertPopoutStylesheetRule 107 | } 108 | } 109 | ``` 110 | 111 | ## Contributing 112 | 113 | This project welcomes contributions and suggestions. Most contributions require you to agree to a 114 | Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us 115 | the rights to use your contribution. For details, visit https://cla.microsoft.com. 116 | 117 | When you submit a pull request, a CLA-bot will automatically determine whether you need to provide 118 | a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions 119 | provided by the bot. You will only need to do this once across all repos using our CLA. 120 | 121 | This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). 122 | For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or 123 | contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments. 124 | -------------------------------------------------------------------------------- /src/Popout.tsx: -------------------------------------------------------------------------------- 1 | import * as React from 'react'; 2 | import * as ReactDOM from 'react-dom'; 3 | import { PopoutProps } from './PopoutProps'; 4 | import { generateWindowFeaturesString } from './generateWindowFeaturesString'; 5 | import { popouts } from './popouts'; 6 | import { crossBrowserCloneNode } from './crossBrowserCloneNode'; 7 | import * as globalContext from './globalContext'; 8 | import './childWindowMonitor'; 9 | 10 | export class Popout extends React.Component { 11 | private id: string; 12 | 13 | private container: HTMLElement | null; 14 | 15 | private setupAttempts = 0; 16 | 17 | public styleElement: HTMLStyleElement | null; 18 | 19 | public child: Window | null; 20 | 21 | private setupOnCloseHandler(id: string, child: Window) { 22 | // For Edge, IE browsers, the document.head might not exist here yet. We will just simply attempt again when RAF is called 23 | // For Firefox, on the setTimeout, the child window might actually be set to null after the first attempt if there is a popup blocker 24 | if (this.setupAttempts >= 5) { 25 | return; 26 | } 27 | 28 | if (child && child.document && child.document.head) { 29 | const unloadScriptContainer = child.document.createElement('script'); 30 | const onBeforeUnloadLogic = ` 31 | window.onbeforeunload = function(e) { 32 | var result = window.opener.${ 33 | globalContext.id 34 | }.onBeforeUnload.call(window, '${id}', e); 35 | 36 | if (result) { 37 | window.opener.${globalContext.id}.startMonitor.call(window.opener, '${id}'); 38 | 39 | e.returnValue = result; 40 | return result; 41 | } else { 42 | window.opener.${globalContext.id}.onChildClose.call(window.opener, '${id}'); 43 | } 44 | }`; 45 | 46 | // Use onload for most URL scenarios to allow time for the page to load first 47 | // Safari 11.1 is aggressive, so it will call onbeforeunload prior to the page being created. 48 | unloadScriptContainer.innerHTML = ` 49 | window.onload = function(e) { 50 | ${onBeforeUnloadLogic} 51 | }; 52 | `; 53 | 54 | // For edge and IE, they don't actually execute the onload logic, so we just want the onBeforeUnload logic. 55 | // If this isn't a URL scenario, we have to bind onBeforeUnload directly too. 56 | if (isBrowserIEOrEdge() || !this.props.url) { 57 | unloadScriptContainer.innerHTML = onBeforeUnloadLogic; 58 | } 59 | 60 | child.document.head.appendChild(unloadScriptContainer); 61 | 62 | this.setupCleanupCallbacks(); 63 | } else { 64 | this.setupAttempts++; 65 | setTimeout(() => this.setupOnCloseHandler(id, child), 50); 66 | } 67 | } 68 | 69 | private setupCleanupCallbacks() { 70 | // Close the popout if main window is closed. 71 | window.addEventListener('unload', e => this.closeChildWindowIfOpened()); 72 | 73 | globalContext.set('onChildClose', (id: string) => { 74 | if (popouts[id].props.onClose) { 75 | popouts[id].props.onClose!(); 76 | } 77 | }); 78 | 79 | globalContext.set('onBeforeUnload', (id: string, evt: BeforeUnloadEvent) => { 80 | if (popouts[id].props.onBeforeUnload) { 81 | return popouts[id].props.onBeforeUnload!(evt); 82 | } 83 | }); 84 | } 85 | 86 | private setupStyleElement(child: Window) { 87 | this.styleElement = child.document.createElement('style'); 88 | this.styleElement.setAttribute('data-this-styles', 'true'); 89 | this.styleElement.type = 'text/css'; 90 | 91 | child.document.head.appendChild(this.styleElement); 92 | } 93 | 94 | private injectHtml(id: string, child: Window) { 95 | let container: HTMLDivElement; 96 | 97 | if (this.props.html) { 98 | child.document.write(this.props.html); 99 | const head = child.document.head; 100 | 101 | let cssText = ''; 102 | let rules = null; 103 | 104 | for (let i = window.document.styleSheets.length - 1; i >= 0; i--) { 105 | let styleSheet = window.document.styleSheets[i] as CSSStyleSheet; 106 | try { 107 | rules = styleSheet.cssRules; 108 | } catch { 109 | // We're primarily looking for a security exception here. 110 | // See https://bugs.chromium.org/p/chromium/issues/detail?id=775525 111 | // Try to just embed the style element instead. 112 | let styleElement = child.document.createElement('link'); 113 | styleElement.type = styleSheet.type; 114 | styleElement.rel = 'stylesheet'; 115 | styleElement.href = styleSheet.href; 116 | head.appendChild(styleElement); 117 | } finally { 118 | if (rules) { 119 | for (let j = 0; j < rules.length; j++) { 120 | try { 121 | cssText += rules[j].cssText; 122 | } catch { 123 | // IE11 will throw a security exception sometimes when accessing cssText. 124 | // There's no good way to detect this, so we capture the exception instead. 125 | } 126 | } 127 | } 128 | } 129 | 130 | rules = null; 131 | } 132 | 133 | const style = child.document.createElement('style'); 134 | style.innerHTML = cssText; 135 | 136 | head.appendChild(style); 137 | container = child.document.createElement('div'); 138 | container.id = id; 139 | child.document.body.appendChild(container); 140 | } else { 141 | let childHtml = ''; 142 | for (let i = window.document.styleSheets.length - 1; i >= 0; i--) { 143 | let styleSheet = window.document.styleSheets[i] as CSSStyleSheet; 144 | try { 145 | const cssText = styleSheet.cssText; 146 | childHtml += ``; 147 | } catch { 148 | // IE11 will throw a security exception sometimes when accessing cssText. 149 | // There's no good way to detect this, so we capture the exception instead. 150 | } 151 | } 152 | childHtml += `
`; 153 | child.document.write(childHtml); 154 | container = child.document.getElementById(id)! as HTMLDivElement; 155 | } 156 | 157 | // Create a document with the styles of the parent window first 158 | this.setupStyleElement(child); 159 | 160 | return container; 161 | } 162 | 163 | private setupStyleObserver(child: Window) { 164 | // Add style observer for legacy style node additions 165 | const observer = new MutationObserver(mutations => { 166 | mutations.forEach(mutation => { 167 | if (mutation.type == 'childList') { 168 | forEachStyleElement(mutation.addedNodes, element => { 169 | child.document.head.appendChild( 170 | crossBrowserCloneNode(element, child.document) 171 | ); 172 | }); 173 | } 174 | }); 175 | }); 176 | 177 | const config = { childList: true }; 178 | 179 | observer.observe(document.head, config); 180 | } 181 | 182 | private initializeChildWindow(id: string, child: Window) { 183 | popouts[id] = this; 184 | 185 | if (!this.props.url) { 186 | const container: HTMLDivElement = this.injectHtml(id, child); 187 | this.setupStyleObserver(child); 188 | this.setupOnCloseHandler(id, child); 189 | return container; 190 | } else { 191 | this.setupOnCloseHandler(id, child); 192 | 193 | return null; 194 | } 195 | } 196 | 197 | private openChildWindow = () => { 198 | const options = generateWindowFeaturesString(this.props.options || {}); 199 | 200 | const name = getWindowName(this.props.name!); 201 | 202 | this.child = validatePopupBlocker( 203 | window.open(this.props.url || 'about:blank', name, options) 204 | ); 205 | 206 | if (!this.child) { 207 | if (this.props.onBlocked) { 208 | this.props.onBlocked(); 209 | } 210 | this.container = null; 211 | } else { 212 | this.id = `__${name}_container__`; 213 | this.container = this.initializeChildWindow(this.id, this.child!); 214 | } 215 | }; 216 | 217 | private closeChildWindowIfOpened = () => { 218 | if (isChildWindowOpened(this.child)) { 219 | this.child!.close(); 220 | 221 | this.child = null; 222 | if (this.props.onClose) { 223 | this.props.onClose(); 224 | } 225 | } 226 | }; 227 | 228 | private renderChildWindow() { 229 | validateUrl(this.props.url!); 230 | 231 | if (!this.props.hidden) { 232 | if (!isChildWindowOpened(this.child)) { 233 | this.openChildWindow(); 234 | } 235 | 236 | if (!this.props.url && this.container) { 237 | ReactDOM.render(this.props.children, this.container); 238 | } 239 | } else { 240 | this.closeChildWindowIfOpened(); 241 | } 242 | } 243 | 244 | componentDidUpdate() { 245 | this.renderChildWindow(); 246 | } 247 | 248 | componentDidMount() { 249 | this.renderChildWindow(); 250 | } 251 | 252 | componentWillUnmount() { 253 | this.closeChildWindowIfOpened(); 254 | } 255 | 256 | render() { 257 | return null; 258 | } 259 | } 260 | 261 | function validateUrl(url: string) { 262 | if (!url) { 263 | return; 264 | } 265 | 266 | const parser = document.createElement('a'); 267 | parser.href = url; 268 | 269 | const current = window.location; 270 | 271 | if ( 272 | (parser.hostname && current.hostname != parser.hostname) || 273 | (parser.protocol && current.protocol != parser.protocol) 274 | ) { 275 | throw new Error( 276 | `react-popup-component error: cross origin URLs are not supported (window=${ 277 | current.protocol 278 | }//${current.hostname}; popout=${parser.protocol}//${parser.hostname})` 279 | ); 280 | } 281 | } 282 | 283 | function validatePopupBlocker(child: Window) { 284 | if ( 285 | !child || 286 | child.closed || 287 | typeof child == 'undefined' || 288 | typeof child.closed == 'undefined' 289 | ) { 290 | return null; 291 | } 292 | 293 | return child; 294 | } 295 | 296 | function isChildWindowOpened(child: Window | null) { 297 | return child && !child.closed; 298 | } 299 | 300 | function getWindowName(name: string) { 301 | return ( 302 | name || 303 | Math.random() 304 | .toString(12) 305 | .slice(2) 306 | ); 307 | } 308 | 309 | function forEachStyleElement( 310 | nodeList: NodeList, 311 | callback: (element: HTMLElement, index?: number) => void, 312 | scope?: any 313 | ) { 314 | let element: HTMLElement; 315 | 316 | for (let i = 0; i < nodeList.length; i++) { 317 | element = nodeList[i] as HTMLElement; 318 | if (element.tagName == 'STYLE') { 319 | callback.call(scope, element, i); 320 | } 321 | } 322 | } 323 | 324 | function isBrowserIEOrEdge() { 325 | const userAgent = 326 | typeof navigator != 'undefined' && navigator.userAgent ? navigator.userAgent : ''; 327 | return /Edge/.test(userAgent) || /Trident/.test(userAgent); 328 | } 329 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@types/node@*": 6 | version "8.0.50" 7 | resolved "https://registry.yarnpkg.com/@types/node/-/node-8.0.50.tgz#dc545448e128c88c4eec7cd64025fcc3b7604541" 8 | 9 | "@types/node@^8.0.48": 10 | version "8.0.48" 11 | resolved "https://registry.yarnpkg.com/@types/node/-/node-8.0.48.tgz#4e7da6e849d9e50be5865effaa55b1870ae4eede" 12 | 13 | "@types/react-dom@^16.0.2": 14 | version "16.0.2" 15 | resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-16.0.2.tgz#2da9de21fd83f0140b64794ad9c47930230aedae" 16 | dependencies: 17 | "@types/node" "*" 18 | "@types/react" "*" 19 | 20 | "@types/react@*", "@types/react@^16.0.21": 21 | version "16.0.21" 22 | resolved "https://registry.yarnpkg.com/@types/react/-/react-16.0.21.tgz#1f4313594f784a477521a0795c46e7b832051ef3" 23 | 24 | abbrev@1: 25 | version "1.1.0" 26 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 27 | 28 | accepts@~1.3.3: 29 | version "1.3.4" 30 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.4.tgz#86246758c7dd6d21a6474ff084a4740ec05eb21f" 31 | dependencies: 32 | mime-types "~2.1.16" 33 | negotiator "0.6.1" 34 | 35 | acorn-dynamic-import@^2.0.0: 36 | version "2.0.2" 37 | resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz#c752bd210bef679501b6c6cb7fc84f8f47158cc4" 38 | dependencies: 39 | acorn "^4.0.3" 40 | 41 | acorn@^4.0.3: 42 | version "4.0.13" 43 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 44 | 45 | acorn@^5.0.0: 46 | version "5.1.2" 47 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.1.2.tgz#911cb53e036807cf0fa778dc5d370fbd864246d7" 48 | 49 | ajv-keywords@^2.0.0: 50 | version "2.1.0" 51 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.0.tgz#a296e17f7bfae7c1ce4f7e0de53d29cb32162df0" 52 | 53 | ajv@^4.9.1: 54 | version "4.11.8" 55 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 56 | dependencies: 57 | co "^4.6.0" 58 | json-stable-stringify "^1.0.1" 59 | 60 | ajv@^5.0.0: 61 | version "5.2.3" 62 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.2.3.tgz#c06f598778c44c6b161abafe3466b81ad1814ed2" 63 | dependencies: 64 | co "^4.6.0" 65 | fast-deep-equal "^1.0.0" 66 | json-schema-traverse "^0.3.0" 67 | json-stable-stringify "^1.0.1" 68 | 69 | ajv@^5.1.5: 70 | version "5.2.2" 71 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.2.2.tgz#47c68d69e86f5d953103b0074a9430dc63da5e39" 72 | dependencies: 73 | co "^4.6.0" 74 | fast-deep-equal "^1.0.0" 75 | json-schema-traverse "^0.3.0" 76 | json-stable-stringify "^1.0.1" 77 | 78 | align-text@^0.1.1, align-text@^0.1.3: 79 | version "0.1.4" 80 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 81 | dependencies: 82 | kind-of "^3.0.2" 83 | longest "^1.0.1" 84 | repeat-string "^1.5.2" 85 | 86 | alphanum-sort@^1.0.1, alphanum-sort@^1.0.2: 87 | version "1.0.2" 88 | resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3" 89 | 90 | ansi-html@0.0.7: 91 | version "0.0.7" 92 | resolved "https://registry.yarnpkg.com/ansi-html/-/ansi-html-0.0.7.tgz#813584021962a9e9e6fd039f940d12f56ca7859e" 93 | 94 | ansi-regex@^2.0.0: 95 | version "2.1.1" 96 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 97 | 98 | ansi-regex@^3.0.0: 99 | version "3.0.0" 100 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 101 | 102 | ansi-styles@^2.2.1: 103 | version "2.2.1" 104 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 105 | 106 | ansi-styles@^3.1.0: 107 | version "3.2.0" 108 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 109 | dependencies: 110 | color-convert "^1.9.0" 111 | 112 | anymatch@^1.3.0: 113 | version "1.3.2" 114 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 115 | dependencies: 116 | micromatch "^2.1.5" 117 | normalize-path "^2.0.0" 118 | 119 | aproba@^1.0.3: 120 | version "1.1.2" 121 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.2.tgz#45c6629094de4e96f693ef7eab74ae079c240fc1" 122 | 123 | are-we-there-yet@~1.1.2: 124 | version "1.1.4" 125 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 126 | dependencies: 127 | delegates "^1.0.0" 128 | readable-stream "^2.0.6" 129 | 130 | argparse@^1.0.7: 131 | version "1.0.9" 132 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 133 | dependencies: 134 | sprintf-js "~1.0.2" 135 | 136 | arr-diff@^2.0.0: 137 | version "2.0.0" 138 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 139 | dependencies: 140 | arr-flatten "^1.0.1" 141 | 142 | arr-flatten@^1.0.1: 143 | version "1.1.0" 144 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 145 | 146 | array-flatten@1.1.1: 147 | version "1.1.1" 148 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" 149 | 150 | array-flatten@^2.1.0: 151 | version "2.1.1" 152 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-2.1.1.tgz#426bb9da84090c1838d812c8150af20a8331e296" 153 | 154 | array-includes@^3.0.3: 155 | version "3.0.3" 156 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.0.3.tgz#184b48f62d92d7452bb31b323165c7f8bd02266d" 157 | dependencies: 158 | define-properties "^1.1.2" 159 | es-abstract "^1.7.0" 160 | 161 | array-union@^1.0.1: 162 | version "1.0.2" 163 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 164 | dependencies: 165 | array-uniq "^1.0.1" 166 | 167 | array-uniq@^1.0.1: 168 | version "1.0.3" 169 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 170 | 171 | array-unique@^0.2.1: 172 | version "0.2.1" 173 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 174 | 175 | asap@~2.0.3: 176 | version "2.0.6" 177 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" 178 | 179 | asn1.js@^4.0.0: 180 | version "4.9.1" 181 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.1.tgz#48ba240b45a9280e94748990ba597d216617fd40" 182 | dependencies: 183 | bn.js "^4.0.0" 184 | inherits "^2.0.1" 185 | minimalistic-assert "^1.0.0" 186 | 187 | asn1@~0.2.3: 188 | version "0.2.3" 189 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 190 | 191 | assert-plus@1.0.0, assert-plus@^1.0.0: 192 | version "1.0.0" 193 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 194 | 195 | assert-plus@^0.2.0: 196 | version "0.2.0" 197 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 198 | 199 | assert@^1.1.1: 200 | version "1.4.1" 201 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 202 | dependencies: 203 | util "0.10.3" 204 | 205 | async-each@^1.0.0: 206 | version "1.0.1" 207 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 208 | 209 | async@^1.5.2: 210 | version "1.5.2" 211 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 212 | 213 | async@^2.1.2: 214 | version "2.5.0" 215 | resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d" 216 | dependencies: 217 | lodash "^4.14.0" 218 | 219 | asynckit@^0.4.0: 220 | version "0.4.0" 221 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 222 | 223 | autoprefixer@^6.3.1: 224 | version "6.7.7" 225 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-6.7.7.tgz#1dbd1c835658e35ce3f9984099db00585c782014" 226 | dependencies: 227 | browserslist "^1.7.6" 228 | caniuse-db "^1.0.30000634" 229 | normalize-range "^0.1.2" 230 | num2fraction "^1.2.2" 231 | postcss "^5.2.16" 232 | postcss-value-parser "^3.2.3" 233 | 234 | aws-sign2@~0.6.0: 235 | version "0.6.0" 236 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 237 | 238 | aws4@^1.2.1: 239 | version "1.6.0" 240 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 241 | 242 | babel-code-frame@^6.11.0: 243 | version "6.26.0" 244 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 245 | dependencies: 246 | chalk "^1.1.3" 247 | esutils "^2.0.2" 248 | js-tokens "^3.0.2" 249 | 250 | balanced-match@^0.4.2: 251 | version "0.4.2" 252 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 253 | 254 | balanced-match@^1.0.0: 255 | version "1.0.0" 256 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 257 | 258 | base64-js@^1.0.2: 259 | version "1.2.1" 260 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.1.tgz#a91947da1f4a516ea38e5b4ec0ec3773675e0886" 261 | 262 | batch@0.6.1: 263 | version "0.6.1" 264 | resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16" 265 | 266 | bcrypt-pbkdf@^1.0.0: 267 | version "1.0.1" 268 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 269 | dependencies: 270 | tweetnacl "^0.14.3" 271 | 272 | big.js@^3.1.3: 273 | version "3.2.0" 274 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.2.0.tgz#a5fc298b81b9e0dca2e458824784b65c52ba588e" 275 | 276 | binary-extensions@^1.0.0: 277 | version "1.10.0" 278 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.10.0.tgz#9aeb9a6c5e88638aad171e167f5900abe24835d0" 279 | 280 | block-stream@*: 281 | version "0.0.9" 282 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 283 | dependencies: 284 | inherits "~2.0.0" 285 | 286 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: 287 | version "4.11.8" 288 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" 289 | 290 | bonjour@^3.5.0: 291 | version "3.5.0" 292 | resolved "https://registry.yarnpkg.com/bonjour/-/bonjour-3.5.0.tgz#8e890a183d8ee9a2393b3844c691a42bcf7bc9f5" 293 | dependencies: 294 | array-flatten "^2.1.0" 295 | deep-equal "^1.0.1" 296 | dns-equal "^1.0.0" 297 | dns-txt "^2.0.2" 298 | multicast-dns "^6.0.1" 299 | multicast-dns-service-types "^1.1.0" 300 | 301 | boom@2.x.x: 302 | version "2.10.1" 303 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 304 | dependencies: 305 | hoek "2.x.x" 306 | 307 | brace-expansion@^1.1.7: 308 | version "1.1.8" 309 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 310 | dependencies: 311 | balanced-match "^1.0.0" 312 | concat-map "0.0.1" 313 | 314 | braces@^1.8.2: 315 | version "1.8.5" 316 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 317 | dependencies: 318 | expand-range "^1.8.1" 319 | preserve "^0.2.0" 320 | repeat-element "^1.1.2" 321 | 322 | brorand@^1.0.1: 323 | version "1.1.0" 324 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 325 | 326 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 327 | version "1.0.8" 328 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.0.8.tgz#c8fa3b1b7585bb7ba77c5560b60996ddec6d5309" 329 | dependencies: 330 | buffer-xor "^1.0.3" 331 | cipher-base "^1.0.0" 332 | create-hash "^1.1.0" 333 | evp_bytestokey "^1.0.3" 334 | inherits "^2.0.1" 335 | safe-buffer "^5.0.1" 336 | 337 | browserify-cipher@^1.0.0: 338 | version "1.0.0" 339 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" 340 | dependencies: 341 | browserify-aes "^1.0.4" 342 | browserify-des "^1.0.0" 343 | evp_bytestokey "^1.0.0" 344 | 345 | browserify-des@^1.0.0: 346 | version "1.0.0" 347 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" 348 | dependencies: 349 | cipher-base "^1.0.1" 350 | des.js "^1.0.0" 351 | inherits "^2.0.1" 352 | 353 | browserify-rsa@^4.0.0: 354 | version "4.0.1" 355 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 356 | dependencies: 357 | bn.js "^4.1.0" 358 | randombytes "^2.0.1" 359 | 360 | browserify-sign@^4.0.0: 361 | version "4.0.4" 362 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" 363 | dependencies: 364 | bn.js "^4.1.1" 365 | browserify-rsa "^4.0.0" 366 | create-hash "^1.1.0" 367 | create-hmac "^1.1.2" 368 | elliptic "^6.0.0" 369 | inherits "^2.0.1" 370 | parse-asn1 "^5.0.0" 371 | 372 | browserify-zlib@^0.1.4: 373 | version "0.1.4" 374 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d" 375 | dependencies: 376 | pako "~0.2.0" 377 | 378 | browserslist@^1.3.6, browserslist@^1.5.2, browserslist@^1.7.6: 379 | version "1.7.7" 380 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-1.7.7.tgz#0bd76704258be829b2398bb50e4b62d1a166b0b9" 381 | dependencies: 382 | caniuse-db "^1.0.30000639" 383 | electron-to-chromium "^1.2.7" 384 | 385 | buffer-indexof@^1.0.0: 386 | version "1.1.1" 387 | resolved "https://registry.yarnpkg.com/buffer-indexof/-/buffer-indexof-1.1.1.tgz#52fabcc6a606d1a00302802648ef68f639da268c" 388 | 389 | buffer-xor@^1.0.3: 390 | version "1.0.3" 391 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 392 | 393 | buffer@^4.3.0: 394 | version "4.9.1" 395 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 396 | dependencies: 397 | base64-js "^1.0.2" 398 | ieee754 "^1.1.4" 399 | isarray "^1.0.0" 400 | 401 | builtin-modules@^1.0.0: 402 | version "1.1.1" 403 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 404 | 405 | builtin-status-codes@^3.0.0: 406 | version "3.0.0" 407 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 408 | 409 | bytes@2.5.0: 410 | version "2.5.0" 411 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.5.0.tgz#4c9423ea2d252c270c41b2bdefeff9bb6b62c06a" 412 | 413 | camelcase@^1.0.2: 414 | version "1.2.1" 415 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 416 | 417 | camelcase@^3.0.0: 418 | version "3.0.0" 419 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 420 | 421 | camelcase@^4.1.0: 422 | version "4.1.0" 423 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 424 | 425 | caniuse-api@^1.5.2: 426 | version "1.6.1" 427 | resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-1.6.1.tgz#b534e7c734c4f81ec5fbe8aca2ad24354b962c6c" 428 | dependencies: 429 | browserslist "^1.3.6" 430 | caniuse-db "^1.0.30000529" 431 | lodash.memoize "^4.1.2" 432 | lodash.uniq "^4.5.0" 433 | 434 | caniuse-db@^1.0.30000529, caniuse-db@^1.0.30000634, caniuse-db@^1.0.30000639: 435 | version "1.0.30000744" 436 | resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000744.tgz#00758ff7dd5f7138d34a15608dccf71a59656ffe" 437 | 438 | caseless@~0.12.0: 439 | version "0.12.0" 440 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 441 | 442 | center-align@^0.1.1: 443 | version "0.1.3" 444 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 445 | dependencies: 446 | align-text "^0.1.3" 447 | lazy-cache "^1.0.3" 448 | 449 | chalk@^1.1.3: 450 | version "1.1.3" 451 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 452 | dependencies: 453 | ansi-styles "^2.2.1" 454 | escape-string-regexp "^1.0.2" 455 | has-ansi "^2.0.0" 456 | strip-ansi "^3.0.0" 457 | supports-color "^2.0.0" 458 | 459 | chalk@^2.0.1, chalk@^2.1.0: 460 | version "2.1.0" 461 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.1.0.tgz#ac5becf14fa21b99c6c92ca7a7d7cfd5b17e743e" 462 | dependencies: 463 | ansi-styles "^3.1.0" 464 | escape-string-regexp "^1.0.5" 465 | supports-color "^4.0.0" 466 | 467 | chokidar@^1.6.0, chokidar@^1.7.0: 468 | version "1.7.0" 469 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 470 | dependencies: 471 | anymatch "^1.3.0" 472 | async-each "^1.0.0" 473 | glob-parent "^2.0.0" 474 | inherits "^2.0.1" 475 | is-binary-path "^1.0.0" 476 | is-glob "^2.0.0" 477 | path-is-absolute "^1.0.0" 478 | readdirp "^2.0.0" 479 | optionalDependencies: 480 | fsevents "^1.0.0" 481 | 482 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: 483 | version "1.0.4" 484 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" 485 | dependencies: 486 | inherits "^2.0.1" 487 | safe-buffer "^5.0.1" 488 | 489 | clap@^1.0.9: 490 | version "1.2.3" 491 | resolved "https://registry.yarnpkg.com/clap/-/clap-1.2.3.tgz#4f36745b32008492557f46412d66d50cb99bce51" 492 | dependencies: 493 | chalk "^1.1.3" 494 | 495 | cliui@^2.1.0: 496 | version "2.1.0" 497 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 498 | dependencies: 499 | center-align "^0.1.1" 500 | right-align "^0.1.1" 501 | wordwrap "0.0.2" 502 | 503 | cliui@^3.2.0: 504 | version "3.2.0" 505 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 506 | dependencies: 507 | string-width "^1.0.1" 508 | strip-ansi "^3.0.1" 509 | wrap-ansi "^2.0.0" 510 | 511 | clone@^1.0.2: 512 | version "1.0.2" 513 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" 514 | 515 | co@^4.6.0: 516 | version "4.6.0" 517 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 518 | 519 | coa@~1.0.1: 520 | version "1.0.4" 521 | resolved "https://registry.yarnpkg.com/coa/-/coa-1.0.4.tgz#a9ef153660d6a86a8bdec0289a5c684d217432fd" 522 | dependencies: 523 | q "^1.1.2" 524 | 525 | code-point-at@^1.0.0: 526 | version "1.1.0" 527 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 528 | 529 | color-convert@^1.3.0, color-convert@^1.9.0: 530 | version "1.9.0" 531 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 532 | dependencies: 533 | color-name "^1.1.1" 534 | 535 | color-name@^1.0.0, color-name@^1.1.1: 536 | version "1.1.3" 537 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 538 | 539 | color-string@^0.3.0: 540 | version "0.3.0" 541 | resolved "https://registry.yarnpkg.com/color-string/-/color-string-0.3.0.tgz#27d46fb67025c5c2fa25993bfbf579e47841b991" 542 | dependencies: 543 | color-name "^1.0.0" 544 | 545 | color@^0.11.0: 546 | version "0.11.4" 547 | resolved "https://registry.yarnpkg.com/color/-/color-0.11.4.tgz#6d7b5c74fb65e841cd48792ad1ed5e07b904d764" 548 | dependencies: 549 | clone "^1.0.2" 550 | color-convert "^1.3.0" 551 | color-string "^0.3.0" 552 | 553 | colormin@^1.0.5: 554 | version "1.1.2" 555 | resolved "https://registry.yarnpkg.com/colormin/-/colormin-1.1.2.tgz#ea2f7420a72b96881a38aae59ec124a6f7298133" 556 | dependencies: 557 | color "^0.11.0" 558 | css-color-names "0.0.4" 559 | has "^1.0.1" 560 | 561 | colors@~1.1.2: 562 | version "1.1.2" 563 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" 564 | 565 | combined-stream@^1.0.5, combined-stream@~1.0.5: 566 | version "1.0.5" 567 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 568 | dependencies: 569 | delayed-stream "~1.0.0" 570 | 571 | compressible@~2.0.10: 572 | version "2.0.11" 573 | resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.11.tgz#16718a75de283ed8e604041625a2064586797d8a" 574 | dependencies: 575 | mime-db ">= 1.29.0 < 2" 576 | 577 | compression@^1.5.2: 578 | version "1.7.0" 579 | resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.0.tgz#030c9f198f1643a057d776a738e922da4373012d" 580 | dependencies: 581 | accepts "~1.3.3" 582 | bytes "2.5.0" 583 | compressible "~2.0.10" 584 | debug "2.6.8" 585 | on-headers "~1.0.1" 586 | safe-buffer "5.1.1" 587 | vary "~1.1.1" 588 | 589 | concat-map@0.0.1: 590 | version "0.0.1" 591 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 592 | 593 | connect-history-api-fallback@^1.3.0: 594 | version "1.3.0" 595 | resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.3.0.tgz#e51d17f8f0ef0db90a64fdb47de3051556e9f169" 596 | 597 | console-browserify@^1.1.0: 598 | version "1.1.0" 599 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 600 | dependencies: 601 | date-now "^0.1.4" 602 | 603 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 604 | version "1.1.0" 605 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 606 | 607 | constants-browserify@^1.0.0: 608 | version "1.0.0" 609 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 610 | 611 | content-disposition@0.5.2: 612 | version "0.5.2" 613 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" 614 | 615 | content-type@~1.0.2: 616 | version "1.0.4" 617 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" 618 | 619 | cookie-signature@1.0.6: 620 | version "1.0.6" 621 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" 622 | 623 | cookie@0.3.1: 624 | version "0.3.1" 625 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" 626 | 627 | core-js@^1.0.0: 628 | version "1.2.7" 629 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 630 | 631 | core-util-is@1.0.2, core-util-is@~1.0.0: 632 | version "1.0.2" 633 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 634 | 635 | create-ecdh@^4.0.0: 636 | version "4.0.0" 637 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" 638 | dependencies: 639 | bn.js "^4.1.0" 640 | elliptic "^6.0.0" 641 | 642 | create-hash@^1.1.0, create-hash@^1.1.2: 643 | version "1.1.3" 644 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.3.tgz#606042ac8b9262750f483caddab0f5819172d8fd" 645 | dependencies: 646 | cipher-base "^1.0.1" 647 | inherits "^2.0.1" 648 | ripemd160 "^2.0.0" 649 | sha.js "^2.4.0" 650 | 651 | create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: 652 | version "1.1.6" 653 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.6.tgz#acb9e221a4e17bdb076e90657c42b93e3726cf06" 654 | dependencies: 655 | cipher-base "^1.0.3" 656 | create-hash "^1.1.0" 657 | inherits "^2.0.1" 658 | ripemd160 "^2.0.0" 659 | safe-buffer "^5.0.1" 660 | sha.js "^2.4.8" 661 | 662 | cross-spawn@^5.0.1: 663 | version "5.1.0" 664 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 665 | dependencies: 666 | lru-cache "^4.0.1" 667 | shebang-command "^1.2.0" 668 | which "^1.2.9" 669 | 670 | cryptiles@2.x.x: 671 | version "2.0.5" 672 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 673 | dependencies: 674 | boom "2.x.x" 675 | 676 | crypto-browserify@^3.11.0: 677 | version "3.11.1" 678 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.1.tgz#948945efc6757a400d6e5e5af47194d10064279f" 679 | dependencies: 680 | browserify-cipher "^1.0.0" 681 | browserify-sign "^4.0.0" 682 | create-ecdh "^4.0.0" 683 | create-hash "^1.1.0" 684 | create-hmac "^1.1.0" 685 | diffie-hellman "^5.0.0" 686 | inherits "^2.0.1" 687 | pbkdf2 "^3.0.3" 688 | public-encrypt "^4.0.0" 689 | randombytes "^2.0.0" 690 | 691 | css-color-names@0.0.4: 692 | version "0.0.4" 693 | resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0" 694 | 695 | css-loader@^0.28.7: 696 | version "0.28.7" 697 | resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-0.28.7.tgz#5f2ee989dd32edd907717f953317656160999c1b" 698 | dependencies: 699 | babel-code-frame "^6.11.0" 700 | css-selector-tokenizer "^0.7.0" 701 | cssnano ">=2.6.1 <4" 702 | icss-utils "^2.1.0" 703 | loader-utils "^1.0.2" 704 | lodash.camelcase "^4.3.0" 705 | object-assign "^4.0.1" 706 | postcss "^5.0.6" 707 | postcss-modules-extract-imports "^1.0.0" 708 | postcss-modules-local-by-default "^1.0.1" 709 | postcss-modules-scope "^1.0.0" 710 | postcss-modules-values "^1.1.0" 711 | postcss-value-parser "^3.3.0" 712 | source-list-map "^2.0.0" 713 | 714 | css-selector-tokenizer@^0.7.0: 715 | version "0.7.0" 716 | resolved "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.7.0.tgz#e6988474ae8c953477bf5e7efecfceccd9cf4c86" 717 | dependencies: 718 | cssesc "^0.1.0" 719 | fastparse "^1.1.1" 720 | regexpu-core "^1.0.0" 721 | 722 | cssesc@^0.1.0: 723 | version "0.1.0" 724 | resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-0.1.0.tgz#c814903e45623371a0477b40109aaafbeeaddbb4" 725 | 726 | "cssnano@>=2.6.1 <4": 727 | version "3.10.0" 728 | resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-3.10.0.tgz#4f38f6cea2b9b17fa01490f23f1dc68ea65c1c38" 729 | dependencies: 730 | autoprefixer "^6.3.1" 731 | decamelize "^1.1.2" 732 | defined "^1.0.0" 733 | has "^1.0.1" 734 | object-assign "^4.0.1" 735 | postcss "^5.0.14" 736 | postcss-calc "^5.2.0" 737 | postcss-colormin "^2.1.8" 738 | postcss-convert-values "^2.3.4" 739 | postcss-discard-comments "^2.0.4" 740 | postcss-discard-duplicates "^2.0.1" 741 | postcss-discard-empty "^2.0.1" 742 | postcss-discard-overridden "^0.1.1" 743 | postcss-discard-unused "^2.2.1" 744 | postcss-filter-plugins "^2.0.0" 745 | postcss-merge-idents "^2.1.5" 746 | postcss-merge-longhand "^2.0.1" 747 | postcss-merge-rules "^2.0.3" 748 | postcss-minify-font-values "^1.0.2" 749 | postcss-minify-gradients "^1.0.1" 750 | postcss-minify-params "^1.0.4" 751 | postcss-minify-selectors "^2.0.4" 752 | postcss-normalize-charset "^1.1.0" 753 | postcss-normalize-url "^3.0.7" 754 | postcss-ordered-values "^2.1.0" 755 | postcss-reduce-idents "^2.2.2" 756 | postcss-reduce-initial "^1.0.0" 757 | postcss-reduce-transforms "^1.0.3" 758 | postcss-svgo "^2.1.1" 759 | postcss-unique-selectors "^2.0.2" 760 | postcss-value-parser "^3.2.3" 761 | postcss-zindex "^2.0.1" 762 | 763 | csso@~2.3.1: 764 | version "2.3.2" 765 | resolved "https://registry.yarnpkg.com/csso/-/csso-2.3.2.tgz#ddd52c587033f49e94b71fc55569f252e8ff5f85" 766 | dependencies: 767 | clap "^1.0.9" 768 | source-map "^0.5.3" 769 | 770 | d@1: 771 | version "1.0.0" 772 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 773 | dependencies: 774 | es5-ext "^0.10.9" 775 | 776 | dashdash@^1.12.0: 777 | version "1.14.1" 778 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 779 | dependencies: 780 | assert-plus "^1.0.0" 781 | 782 | date-now@^0.1.4: 783 | version "0.1.4" 784 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 785 | 786 | debug@2.6.8, debug@^2.2.0, debug@^2.6.6, debug@^2.6.8: 787 | version "2.6.8" 788 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 789 | dependencies: 790 | ms "2.0.0" 791 | 792 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: 793 | version "1.2.0" 794 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 795 | 796 | deep-equal@^1.0.1, deep-equal@~1.0.1: 797 | version "1.0.1" 798 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" 799 | 800 | deep-extend@~0.4.0: 801 | version "0.4.2" 802 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 803 | 804 | default-gateway@^2.2.2: 805 | version "2.5.0" 806 | resolved "https://registry.yarnpkg.com/default-gateway/-/default-gateway-2.5.0.tgz#78e24dbd2e1df7490c2b8050515b8e816bfa7da5" 807 | dependencies: 808 | execa "^0.7.0" 809 | ip-regex "^2.1.0" 810 | 811 | define-properties@^1.1.2: 812 | version "1.1.2" 813 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 814 | dependencies: 815 | foreach "^2.0.5" 816 | object-keys "^1.0.8" 817 | 818 | defined@^1.0.0, defined@~1.0.0: 819 | version "1.0.0" 820 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 821 | 822 | del@^3.0.0: 823 | version "3.0.0" 824 | resolved "https://registry.yarnpkg.com/del/-/del-3.0.0.tgz#53ecf699ffcbcb39637691ab13baf160819766e5" 825 | dependencies: 826 | globby "^6.1.0" 827 | is-path-cwd "^1.0.0" 828 | is-path-in-cwd "^1.0.0" 829 | p-map "^1.1.1" 830 | pify "^3.0.0" 831 | rimraf "^2.2.8" 832 | 833 | delayed-stream@~1.0.0: 834 | version "1.0.0" 835 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 836 | 837 | delegates@^1.0.0: 838 | version "1.0.0" 839 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 840 | 841 | depd@1.1.1, depd@~1.1.1: 842 | version "1.1.1" 843 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.1.tgz#5783b4e1c459f06fa5ca27f991f3d06e7a310359" 844 | 845 | des.js@^1.0.0: 846 | version "1.0.0" 847 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" 848 | dependencies: 849 | inherits "^2.0.1" 850 | minimalistic-assert "^1.0.0" 851 | 852 | destroy@~1.0.4: 853 | version "1.0.4" 854 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 855 | 856 | detect-node@^2.0.3: 857 | version "2.0.3" 858 | resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.0.3.tgz#a2033c09cc8e158d37748fbde7507832bd6ce127" 859 | 860 | diffie-hellman@^5.0.0: 861 | version "5.0.2" 862 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" 863 | dependencies: 864 | bn.js "^4.1.0" 865 | miller-rabin "^4.0.0" 866 | randombytes "^2.0.0" 867 | 868 | dns-equal@^1.0.0: 869 | version "1.0.0" 870 | resolved "https://registry.yarnpkg.com/dns-equal/-/dns-equal-1.0.0.tgz#b39e7f1da6eb0a75ba9c17324b34753c47e0654d" 871 | 872 | dns-packet@^1.0.1: 873 | version "1.2.2" 874 | resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-1.2.2.tgz#a8a26bec7646438963fc86e06f8f8b16d6c8bf7a" 875 | dependencies: 876 | ip "^1.1.0" 877 | safe-buffer "^5.0.1" 878 | 879 | dns-txt@^2.0.2: 880 | version "2.0.2" 881 | resolved "https://registry.yarnpkg.com/dns-txt/-/dns-txt-2.0.2.tgz#b91d806f5d27188e4ab3e7d107d881a1cc4642b6" 882 | dependencies: 883 | buffer-indexof "^1.0.0" 884 | 885 | domain-browser@^1.1.1: 886 | version "1.1.7" 887 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" 888 | 889 | ecc-jsbn@~0.1.1: 890 | version "0.1.1" 891 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 892 | dependencies: 893 | jsbn "~0.1.0" 894 | 895 | ee-first@1.1.1: 896 | version "1.1.1" 897 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 898 | 899 | electron-to-chromium@^1.2.7: 900 | version "1.3.24" 901 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.24.tgz#9b7b88bb05ceb9fa016a177833cc2dde388f21b6" 902 | 903 | elliptic@^6.0.0: 904 | version "6.4.0" 905 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df" 906 | dependencies: 907 | bn.js "^4.4.0" 908 | brorand "^1.0.1" 909 | hash.js "^1.0.0" 910 | hmac-drbg "^1.0.0" 911 | inherits "^2.0.1" 912 | minimalistic-assert "^1.0.0" 913 | minimalistic-crypto-utils "^1.0.0" 914 | 915 | emojis-list@^2.0.0: 916 | version "2.1.0" 917 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" 918 | 919 | encodeurl@~1.0.1: 920 | version "1.0.1" 921 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20" 922 | 923 | encoding@^0.1.11: 924 | version "0.1.12" 925 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 926 | dependencies: 927 | iconv-lite "~0.4.13" 928 | 929 | enhanced-resolve@^3.0.0, enhanced-resolve@^3.4.0: 930 | version "3.4.1" 931 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz#0421e339fd71419b3da13d129b3979040230476e" 932 | dependencies: 933 | graceful-fs "^4.1.2" 934 | memory-fs "^0.4.0" 935 | object-assign "^4.0.1" 936 | tapable "^0.2.7" 937 | 938 | errno@^0.1.3: 939 | version "0.1.4" 940 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 941 | dependencies: 942 | prr "~0.0.0" 943 | 944 | error-ex@^1.2.0: 945 | version "1.3.1" 946 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 947 | dependencies: 948 | is-arrayish "^0.2.1" 949 | 950 | es-abstract@^1.5.0, es-abstract@^1.7.0: 951 | version "1.8.2" 952 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.8.2.tgz#25103263dc4decbda60e0c737ca32313518027ee" 953 | dependencies: 954 | es-to-primitive "^1.1.1" 955 | function-bind "^1.1.1" 956 | has "^1.0.1" 957 | is-callable "^1.1.3" 958 | is-regex "^1.0.4" 959 | 960 | es-to-primitive@^1.1.1: 961 | version "1.1.1" 962 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 963 | dependencies: 964 | is-callable "^1.1.1" 965 | is-date-object "^1.0.1" 966 | is-symbol "^1.0.1" 967 | 968 | es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14: 969 | version "0.10.30" 970 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.30.tgz#7141a16836697dbabfaaaeee41495ce29f52c939" 971 | dependencies: 972 | es6-iterator "2" 973 | es6-symbol "~3.1" 974 | 975 | es6-iterator@2, es6-iterator@^2.0.1, es6-iterator@~2.0.1: 976 | version "2.0.1" 977 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512" 978 | dependencies: 979 | d "1" 980 | es5-ext "^0.10.14" 981 | es6-symbol "^3.1" 982 | 983 | es6-map@^0.1.3: 984 | version "0.1.5" 985 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" 986 | dependencies: 987 | d "1" 988 | es5-ext "~0.10.14" 989 | es6-iterator "~2.0.1" 990 | es6-set "~0.1.5" 991 | es6-symbol "~3.1.1" 992 | event-emitter "~0.3.5" 993 | 994 | es6-set@~0.1.5: 995 | version "0.1.5" 996 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" 997 | dependencies: 998 | d "1" 999 | es5-ext "~0.10.14" 1000 | es6-iterator "~2.0.1" 1001 | es6-symbol "3.1.1" 1002 | event-emitter "~0.3.5" 1003 | 1004 | es6-symbol@3.1.1, es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1, es6-symbol@~3.1.1: 1005 | version "3.1.1" 1006 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 1007 | dependencies: 1008 | d "1" 1009 | es5-ext "~0.10.14" 1010 | 1011 | es6-weak-map@^2.0.1: 1012 | version "2.0.2" 1013 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 1014 | dependencies: 1015 | d "1" 1016 | es5-ext "^0.10.14" 1017 | es6-iterator "^2.0.1" 1018 | es6-symbol "^3.1.1" 1019 | 1020 | escape-html@~1.0.3: 1021 | version "1.0.3" 1022 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 1023 | 1024 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1025 | version "1.0.5" 1026 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1027 | 1028 | escope@^3.6.0: 1029 | version "3.6.0" 1030 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 1031 | dependencies: 1032 | es6-map "^0.1.3" 1033 | es6-weak-map "^2.0.1" 1034 | esrecurse "^4.1.0" 1035 | estraverse "^4.1.1" 1036 | 1037 | esprima@^2.6.0: 1038 | version "2.7.3" 1039 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1040 | 1041 | esrecurse@^4.1.0: 1042 | version "4.2.0" 1043 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" 1044 | dependencies: 1045 | estraverse "^4.1.0" 1046 | object-assign "^4.0.1" 1047 | 1048 | estraverse@^4.1.0, estraverse@^4.1.1: 1049 | version "4.2.0" 1050 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1051 | 1052 | esutils@^2.0.2: 1053 | version "2.0.2" 1054 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1055 | 1056 | etag@~1.8.0: 1057 | version "1.8.1" 1058 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" 1059 | 1060 | event-emitter@~0.3.5: 1061 | version "0.3.5" 1062 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 1063 | dependencies: 1064 | d "1" 1065 | es5-ext "~0.10.14" 1066 | 1067 | eventemitter3@1.x.x: 1068 | version "1.2.0" 1069 | resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-1.2.0.tgz#1c86991d816ad1e504750e73874224ecf3bec508" 1070 | 1071 | events@^1.0.0: 1072 | version "1.1.1" 1073 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 1074 | 1075 | eventsource@0.1.6: 1076 | version "0.1.6" 1077 | resolved "https://registry.yarnpkg.com/eventsource/-/eventsource-0.1.6.tgz#0acede849ed7dd1ccc32c811bb11b944d4f29232" 1078 | dependencies: 1079 | original ">=0.0.5" 1080 | 1081 | evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: 1082 | version "1.0.3" 1083 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" 1084 | dependencies: 1085 | md5.js "^1.3.4" 1086 | safe-buffer "^5.1.1" 1087 | 1088 | execa@^0.7.0: 1089 | version "0.7.0" 1090 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1091 | dependencies: 1092 | cross-spawn "^5.0.1" 1093 | get-stream "^3.0.0" 1094 | is-stream "^1.1.0" 1095 | npm-run-path "^2.0.0" 1096 | p-finally "^1.0.0" 1097 | signal-exit "^3.0.0" 1098 | strip-eof "^1.0.0" 1099 | 1100 | expand-brackets@^0.1.4: 1101 | version "0.1.5" 1102 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1103 | dependencies: 1104 | is-posix-bracket "^0.1.0" 1105 | 1106 | expand-range@^1.8.1: 1107 | version "1.8.2" 1108 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1109 | dependencies: 1110 | fill-range "^2.1.0" 1111 | 1112 | express@^4.13.3: 1113 | version "4.15.4" 1114 | resolved "https://registry.yarnpkg.com/express/-/express-4.15.4.tgz#032e2253489cf8fce02666beca3d11ed7a2daed1" 1115 | dependencies: 1116 | accepts "~1.3.3" 1117 | array-flatten "1.1.1" 1118 | content-disposition "0.5.2" 1119 | content-type "~1.0.2" 1120 | cookie "0.3.1" 1121 | cookie-signature "1.0.6" 1122 | debug "2.6.8" 1123 | depd "~1.1.1" 1124 | encodeurl "~1.0.1" 1125 | escape-html "~1.0.3" 1126 | etag "~1.8.0" 1127 | finalhandler "~1.0.4" 1128 | fresh "0.5.0" 1129 | merge-descriptors "1.0.1" 1130 | methods "~1.1.2" 1131 | on-finished "~2.3.0" 1132 | parseurl "~1.3.1" 1133 | path-to-regexp "0.1.7" 1134 | proxy-addr "~1.1.5" 1135 | qs "6.5.0" 1136 | range-parser "~1.2.0" 1137 | send "0.15.4" 1138 | serve-static "1.12.4" 1139 | setprototypeof "1.0.3" 1140 | statuses "~1.3.1" 1141 | type-is "~1.6.15" 1142 | utils-merge "1.0.0" 1143 | vary "~1.1.1" 1144 | 1145 | extend@~3.0.0: 1146 | version "3.0.1" 1147 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1148 | 1149 | extglob@^0.3.1: 1150 | version "0.3.2" 1151 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1152 | dependencies: 1153 | is-extglob "^1.0.0" 1154 | 1155 | extsprintf@1.3.0, extsprintf@^1.2.0: 1156 | version "1.3.0" 1157 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1158 | 1159 | fast-deep-equal@^1.0.0: 1160 | version "1.0.0" 1161 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 1162 | 1163 | fastparse@^1.1.1: 1164 | version "1.1.1" 1165 | resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.1.tgz#d1e2643b38a94d7583b479060e6c4affc94071f8" 1166 | 1167 | faye-websocket@^0.10.0: 1168 | version "0.10.0" 1169 | resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.10.0.tgz#4e492f8d04dfb6f89003507f6edbf2d501e7c6f4" 1170 | dependencies: 1171 | websocket-driver ">=0.5.1" 1172 | 1173 | faye-websocket@~0.11.0: 1174 | version "0.11.1" 1175 | resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.1.tgz#f0efe18c4f56e4f40afc7e06c719fd5ee6188f38" 1176 | dependencies: 1177 | websocket-driver ">=0.5.1" 1178 | 1179 | fbjs@^0.8.16: 1180 | version "0.8.16" 1181 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.16.tgz#5e67432f550dc41b572bf55847b8aca64e5337db" 1182 | dependencies: 1183 | core-js "^1.0.0" 1184 | isomorphic-fetch "^2.1.1" 1185 | loose-envify "^1.0.0" 1186 | object-assign "^4.1.0" 1187 | promise "^7.1.1" 1188 | setimmediate "^1.0.5" 1189 | ua-parser-js "^0.7.9" 1190 | 1191 | filename-regex@^2.0.0: 1192 | version "2.0.1" 1193 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1194 | 1195 | fill-range@^2.1.0: 1196 | version "2.2.3" 1197 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1198 | dependencies: 1199 | is-number "^2.1.0" 1200 | isobject "^2.0.0" 1201 | randomatic "^1.1.3" 1202 | repeat-element "^1.1.2" 1203 | repeat-string "^1.5.2" 1204 | 1205 | finalhandler@~1.0.4: 1206 | version "1.0.5" 1207 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.0.5.tgz#a701303d257a1bc82fea547a33e5ae89531723df" 1208 | dependencies: 1209 | debug "2.6.8" 1210 | encodeurl "~1.0.1" 1211 | escape-html "~1.0.3" 1212 | on-finished "~2.3.0" 1213 | parseurl "~1.3.2" 1214 | statuses "~1.3.1" 1215 | unpipe "~1.0.0" 1216 | 1217 | find-up@^1.0.0: 1218 | version "1.1.2" 1219 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1220 | dependencies: 1221 | path-exists "^2.0.0" 1222 | pinkie-promise "^2.0.0" 1223 | 1224 | find-up@^2.0.0: 1225 | version "2.1.0" 1226 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1227 | dependencies: 1228 | locate-path "^2.0.0" 1229 | 1230 | flatten@^1.0.2: 1231 | version "1.0.2" 1232 | resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.2.tgz#dae46a9d78fbe25292258cc1e780a41d95c03782" 1233 | 1234 | for-each@~0.3.2: 1235 | version "0.3.2" 1236 | resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.2.tgz#2c40450b9348e97f281322593ba96704b9abd4d4" 1237 | dependencies: 1238 | is-function "~1.0.0" 1239 | 1240 | for-in@^1.0.1: 1241 | version "1.0.2" 1242 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1243 | 1244 | for-own@^0.1.4: 1245 | version "0.1.5" 1246 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1247 | dependencies: 1248 | for-in "^1.0.1" 1249 | 1250 | foreach@^2.0.5: 1251 | version "2.0.5" 1252 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1253 | 1254 | forever-agent@~0.6.1: 1255 | version "0.6.1" 1256 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1257 | 1258 | form-data@~2.1.1: 1259 | version "2.1.4" 1260 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1261 | dependencies: 1262 | asynckit "^0.4.0" 1263 | combined-stream "^1.0.5" 1264 | mime-types "^2.1.12" 1265 | 1266 | forwarded@~0.1.0: 1267 | version "0.1.2" 1268 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84" 1269 | 1270 | fresh@0.5.0: 1271 | version "0.5.0" 1272 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.0.tgz#f474ca5e6a9246d6fd8e0953cfa9b9c805afa78e" 1273 | 1274 | fs.realpath@^1.0.0: 1275 | version "1.0.0" 1276 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1277 | 1278 | fsevents@^1.0.0: 1279 | version "1.1.2" 1280 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4" 1281 | dependencies: 1282 | nan "^2.3.0" 1283 | node-pre-gyp "^0.6.36" 1284 | 1285 | fstream-ignore@^1.0.5: 1286 | version "1.0.5" 1287 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1288 | dependencies: 1289 | fstream "^1.0.0" 1290 | inherits "2" 1291 | minimatch "^3.0.0" 1292 | 1293 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1294 | version "1.0.11" 1295 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1296 | dependencies: 1297 | graceful-fs "^4.1.2" 1298 | inherits "~2.0.0" 1299 | mkdirp ">=0.5 0" 1300 | rimraf "2" 1301 | 1302 | function-bind@^1.0.2, function-bind@^1.1.1, function-bind@~1.1.0: 1303 | version "1.1.1" 1304 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1305 | 1306 | gauge@~2.7.3: 1307 | version "2.7.4" 1308 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1309 | dependencies: 1310 | aproba "^1.0.3" 1311 | console-control-strings "^1.0.0" 1312 | has-unicode "^2.0.0" 1313 | object-assign "^4.1.0" 1314 | signal-exit "^3.0.0" 1315 | string-width "^1.0.1" 1316 | strip-ansi "^3.0.1" 1317 | wide-align "^1.1.0" 1318 | 1319 | get-caller-file@^1.0.1: 1320 | version "1.0.2" 1321 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1322 | 1323 | get-stream@^3.0.0: 1324 | version "3.0.0" 1325 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1326 | 1327 | getpass@^0.1.1: 1328 | version "0.1.7" 1329 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1330 | dependencies: 1331 | assert-plus "^1.0.0" 1332 | 1333 | glob-base@^0.3.0: 1334 | version "0.3.0" 1335 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1336 | dependencies: 1337 | glob-parent "^2.0.0" 1338 | is-glob "^2.0.0" 1339 | 1340 | glob-parent@^2.0.0: 1341 | version "2.0.0" 1342 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1343 | dependencies: 1344 | is-glob "^2.0.0" 1345 | 1346 | glob@^7.0.3, glob@^7.0.5, glob@~7.1.2: 1347 | version "7.1.2" 1348 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1349 | dependencies: 1350 | fs.realpath "^1.0.0" 1351 | inflight "^1.0.4" 1352 | inherits "2" 1353 | minimatch "^3.0.4" 1354 | once "^1.3.0" 1355 | path-is-absolute "^1.0.0" 1356 | 1357 | globby@^6.1.0: 1358 | version "6.1.0" 1359 | resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" 1360 | dependencies: 1361 | array-union "^1.0.1" 1362 | glob "^7.0.3" 1363 | object-assign "^4.0.1" 1364 | pify "^2.0.0" 1365 | pinkie-promise "^2.0.0" 1366 | 1367 | graceful-fs@^4.1.2: 1368 | version "4.1.11" 1369 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1370 | 1371 | handle-thing@^1.2.5: 1372 | version "1.2.5" 1373 | resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-1.2.5.tgz#fd7aad726bf1a5fd16dfc29b2f7a6601d27139c4" 1374 | 1375 | har-schema@^1.0.5: 1376 | version "1.0.5" 1377 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1378 | 1379 | har-validator@~4.2.1: 1380 | version "4.2.1" 1381 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1382 | dependencies: 1383 | ajv "^4.9.1" 1384 | har-schema "^1.0.5" 1385 | 1386 | has-ansi@^2.0.0: 1387 | version "2.0.0" 1388 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1389 | dependencies: 1390 | ansi-regex "^2.0.0" 1391 | 1392 | has-flag@^1.0.0: 1393 | version "1.0.0" 1394 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1395 | 1396 | has-flag@^2.0.0: 1397 | version "2.0.0" 1398 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1399 | 1400 | has-unicode@^2.0.0: 1401 | version "2.0.1" 1402 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1403 | 1404 | has@^1.0.1, has@~1.0.1: 1405 | version "1.0.1" 1406 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1407 | dependencies: 1408 | function-bind "^1.0.2" 1409 | 1410 | hash-base@^2.0.0: 1411 | version "2.0.2" 1412 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-2.0.2.tgz#66ea1d856db4e8a5470cadf6fce23ae5244ef2e1" 1413 | dependencies: 1414 | inherits "^2.0.1" 1415 | 1416 | hash-base@^3.0.0: 1417 | version "3.0.4" 1418 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" 1419 | dependencies: 1420 | inherits "^2.0.1" 1421 | safe-buffer "^5.0.1" 1422 | 1423 | hash.js@^1.0.0, hash.js@^1.0.3: 1424 | version "1.1.3" 1425 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.3.tgz#340dedbe6290187151c1ea1d777a3448935df846" 1426 | dependencies: 1427 | inherits "^2.0.3" 1428 | minimalistic-assert "^1.0.0" 1429 | 1430 | hawk@~3.1.3: 1431 | version "3.1.3" 1432 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1433 | dependencies: 1434 | boom "2.x.x" 1435 | cryptiles "2.x.x" 1436 | hoek "2.x.x" 1437 | sntp "1.x.x" 1438 | 1439 | hmac-drbg@^1.0.0: 1440 | version "1.0.1" 1441 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 1442 | dependencies: 1443 | hash.js "^1.0.3" 1444 | minimalistic-assert "^1.0.0" 1445 | minimalistic-crypto-utils "^1.0.1" 1446 | 1447 | hoek@2.x.x: 1448 | version "2.16.3" 1449 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1450 | 1451 | hosted-git-info@^2.1.4: 1452 | version "2.5.0" 1453 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 1454 | 1455 | hpack.js@^2.1.6: 1456 | version "2.1.6" 1457 | resolved "https://registry.yarnpkg.com/hpack.js/-/hpack.js-2.1.6.tgz#87774c0949e513f42e84575b3c45681fade2a0b2" 1458 | dependencies: 1459 | inherits "^2.0.1" 1460 | obuf "^1.0.0" 1461 | readable-stream "^2.0.1" 1462 | wbuf "^1.1.0" 1463 | 1464 | html-comment-regex@^1.1.0: 1465 | version "1.1.1" 1466 | resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.1.tgz#668b93776eaae55ebde8f3ad464b307a4963625e" 1467 | 1468 | html-entities@^1.2.0: 1469 | version "1.2.1" 1470 | resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-1.2.1.tgz#0df29351f0721163515dfb9e5543e5f6eed5162f" 1471 | 1472 | http-deceiver@^1.2.7: 1473 | version "1.2.7" 1474 | resolved "https://registry.yarnpkg.com/http-deceiver/-/http-deceiver-1.2.7.tgz#fa7168944ab9a519d337cb0bec7284dc3e723d87" 1475 | 1476 | http-errors@~1.6.1, http-errors@~1.6.2: 1477 | version "1.6.2" 1478 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.2.tgz#0a002cc85707192a7e7946ceedc11155f60ec736" 1479 | dependencies: 1480 | depd "1.1.1" 1481 | inherits "2.0.3" 1482 | setprototypeof "1.0.3" 1483 | statuses ">= 1.3.1 < 2" 1484 | 1485 | http-parser-js@>=0.4.0: 1486 | version "0.4.6" 1487 | resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.4.6.tgz#195273f58704c452d671076be201329dd341dc55" 1488 | 1489 | http-proxy-middleware@~0.17.4: 1490 | version "0.17.4" 1491 | resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-0.17.4.tgz#642e8848851d66f09d4f124912846dbaeb41b833" 1492 | dependencies: 1493 | http-proxy "^1.16.2" 1494 | is-glob "^3.1.0" 1495 | lodash "^4.17.2" 1496 | micromatch "^2.3.11" 1497 | 1498 | http-proxy@^1.16.2: 1499 | version "1.16.2" 1500 | resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.16.2.tgz#06dff292952bf64dbe8471fa9df73066d4f37742" 1501 | dependencies: 1502 | eventemitter3 "1.x.x" 1503 | requires-port "1.x.x" 1504 | 1505 | http-signature@~1.1.0: 1506 | version "1.1.1" 1507 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1508 | dependencies: 1509 | assert-plus "^0.2.0" 1510 | jsprim "^1.2.2" 1511 | sshpk "^1.7.0" 1512 | 1513 | https-browserify@0.0.1: 1514 | version "0.0.1" 1515 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82" 1516 | 1517 | iconv-lite@~0.4.13: 1518 | version "0.4.19" 1519 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 1520 | 1521 | icss-replace-symbols@^1.1.0: 1522 | version "1.1.0" 1523 | resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded" 1524 | 1525 | icss-utils@^2.1.0: 1526 | version "2.1.0" 1527 | resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-2.1.0.tgz#83f0a0ec378bf3246178b6c2ad9136f135b1c962" 1528 | dependencies: 1529 | postcss "^6.0.1" 1530 | 1531 | ieee754@^1.1.4: 1532 | version "1.1.8" 1533 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 1534 | 1535 | indexes-of@^1.0.1: 1536 | version "1.0.1" 1537 | resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" 1538 | 1539 | indexof@0.0.1: 1540 | version "0.0.1" 1541 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 1542 | 1543 | inflight@^1.0.4: 1544 | version "1.0.6" 1545 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1546 | dependencies: 1547 | once "^1.3.0" 1548 | wrappy "1" 1549 | 1550 | inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 1551 | version "2.0.3" 1552 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1553 | 1554 | inherits@2.0.1: 1555 | version "2.0.1" 1556 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 1557 | 1558 | ini@~1.3.0: 1559 | version "1.3.4" 1560 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1561 | 1562 | internal-ip@^2.0.2: 1563 | version "2.0.3" 1564 | resolved "https://registry.yarnpkg.com/internal-ip/-/internal-ip-2.0.3.tgz#ed3cf9b671ac7ff23037bfacad42eb439cd9546c" 1565 | dependencies: 1566 | default-gateway "^2.2.2" 1567 | ipaddr.js "^1.5.2" 1568 | 1569 | interpret@^1.0.0: 1570 | version "1.0.4" 1571 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.4.tgz#820cdd588b868ffb191a809506d6c9c8f212b1b0" 1572 | 1573 | invert-kv@^1.0.0: 1574 | version "1.0.0" 1575 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1576 | 1577 | ip-regex@^2.1.0: 1578 | version "2.1.0" 1579 | resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9" 1580 | 1581 | ip@^1.1.0, ip@^1.1.5: 1582 | version "1.1.5" 1583 | resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" 1584 | 1585 | ipaddr.js@1.4.0: 1586 | version "1.4.0" 1587 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.4.0.tgz#296aca878a821816e5b85d0a285a99bcff4582f0" 1588 | 1589 | ipaddr.js@^1.5.2: 1590 | version "1.5.2" 1591 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.5.2.tgz#d4b505bde9946987ccf0fc58d9010ff9607e3fa0" 1592 | 1593 | is-absolute-url@^2.0.0: 1594 | version "2.1.0" 1595 | resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6" 1596 | 1597 | is-arrayish@^0.2.1: 1598 | version "0.2.1" 1599 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1600 | 1601 | is-binary-path@^1.0.0: 1602 | version "1.0.1" 1603 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1604 | dependencies: 1605 | binary-extensions "^1.0.0" 1606 | 1607 | is-buffer@^1.1.5: 1608 | version "1.1.5" 1609 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1610 | 1611 | is-builtin-module@^1.0.0: 1612 | version "1.0.0" 1613 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1614 | dependencies: 1615 | builtin-modules "^1.0.0" 1616 | 1617 | is-callable@^1.1.1, is-callable@^1.1.3: 1618 | version "1.1.3" 1619 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 1620 | 1621 | is-date-object@^1.0.1: 1622 | version "1.0.1" 1623 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1624 | 1625 | is-dotfile@^1.0.0: 1626 | version "1.0.3" 1627 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1628 | 1629 | is-equal-shallow@^0.1.3: 1630 | version "0.1.3" 1631 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1632 | dependencies: 1633 | is-primitive "^2.0.0" 1634 | 1635 | is-extendable@^0.1.1: 1636 | version "0.1.1" 1637 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1638 | 1639 | is-extglob@^1.0.0: 1640 | version "1.0.0" 1641 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1642 | 1643 | is-extglob@^2.1.0: 1644 | version "2.1.1" 1645 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1646 | 1647 | is-fullwidth-code-point@^1.0.0: 1648 | version "1.0.0" 1649 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1650 | dependencies: 1651 | number-is-nan "^1.0.0" 1652 | 1653 | is-fullwidth-code-point@^2.0.0: 1654 | version "2.0.0" 1655 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1656 | 1657 | is-function@~1.0.0: 1658 | version "1.0.1" 1659 | resolved "https://registry.yarnpkg.com/is-function/-/is-function-1.0.1.tgz#12cfb98b65b57dd3d193a3121f5f6e2f437602b5" 1660 | 1661 | is-glob@^2.0.0, is-glob@^2.0.1: 1662 | version "2.0.1" 1663 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1664 | dependencies: 1665 | is-extglob "^1.0.0" 1666 | 1667 | is-glob@^3.1.0: 1668 | version "3.1.0" 1669 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 1670 | dependencies: 1671 | is-extglob "^2.1.0" 1672 | 1673 | is-number@^2.1.0: 1674 | version "2.1.0" 1675 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1676 | dependencies: 1677 | kind-of "^3.0.2" 1678 | 1679 | is-number@^3.0.0: 1680 | version "3.0.0" 1681 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1682 | dependencies: 1683 | kind-of "^3.0.2" 1684 | 1685 | is-path-cwd@^1.0.0: 1686 | version "1.0.0" 1687 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1688 | 1689 | is-path-in-cwd@^1.0.0: 1690 | version "1.0.0" 1691 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1692 | dependencies: 1693 | is-path-inside "^1.0.0" 1694 | 1695 | is-path-inside@^1.0.0: 1696 | version "1.0.0" 1697 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 1698 | dependencies: 1699 | path-is-inside "^1.0.1" 1700 | 1701 | is-plain-obj@^1.0.0: 1702 | version "1.1.0" 1703 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 1704 | 1705 | is-posix-bracket@^0.1.0: 1706 | version "0.1.1" 1707 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1708 | 1709 | is-primitive@^2.0.0: 1710 | version "2.0.0" 1711 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1712 | 1713 | is-regex@^1.0.4: 1714 | version "1.0.4" 1715 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 1716 | dependencies: 1717 | has "^1.0.1" 1718 | 1719 | is-stream@^1.0.1, is-stream@^1.1.0: 1720 | version "1.1.0" 1721 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1722 | 1723 | is-svg@^2.0.0: 1724 | version "2.1.0" 1725 | resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-2.1.0.tgz#cf61090da0d9efbcab8722deba6f032208dbb0e9" 1726 | dependencies: 1727 | html-comment-regex "^1.1.0" 1728 | 1729 | is-symbol@^1.0.1: 1730 | version "1.0.1" 1731 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 1732 | 1733 | is-typedarray@~1.0.0: 1734 | version "1.0.0" 1735 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1736 | 1737 | is-utf8@^0.2.0: 1738 | version "0.2.1" 1739 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1740 | 1741 | is-wsl@^1.1.0: 1742 | version "1.1.0" 1743 | resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" 1744 | 1745 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1746 | version "1.0.0" 1747 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1748 | 1749 | isexe@^2.0.0: 1750 | version "2.0.0" 1751 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1752 | 1753 | isobject@^2.0.0: 1754 | version "2.1.0" 1755 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1756 | dependencies: 1757 | isarray "1.0.0" 1758 | 1759 | isomorphic-fetch@^2.1.1: 1760 | version "2.2.1" 1761 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" 1762 | dependencies: 1763 | node-fetch "^1.0.1" 1764 | whatwg-fetch ">=0.10.0" 1765 | 1766 | isstream@~0.1.2: 1767 | version "0.1.2" 1768 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1769 | 1770 | js-base64@^2.1.9: 1771 | version "2.3.2" 1772 | resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.3.2.tgz#a79a923666372b580f8e27f51845c6f7e8fbfbaf" 1773 | 1774 | js-tokens@^3.0.0, js-tokens@^3.0.2: 1775 | version "3.0.2" 1776 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1777 | 1778 | js-yaml@~3.7.0: 1779 | version "3.7.0" 1780 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80" 1781 | dependencies: 1782 | argparse "^1.0.7" 1783 | esprima "^2.6.0" 1784 | 1785 | jsbn@~0.1.0: 1786 | version "0.1.1" 1787 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1788 | 1789 | jsesc@~0.5.0: 1790 | version "0.5.0" 1791 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1792 | 1793 | json-loader@^0.5.4: 1794 | version "0.5.7" 1795 | resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.7.tgz#dca14a70235ff82f0ac9a3abeb60d337a365185d" 1796 | 1797 | json-schema-traverse@^0.3.0: 1798 | version "0.3.1" 1799 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 1800 | 1801 | json-schema@0.2.3: 1802 | version "0.2.3" 1803 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1804 | 1805 | json-stable-stringify@^1.0.1: 1806 | version "1.0.1" 1807 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1808 | dependencies: 1809 | jsonify "~0.0.0" 1810 | 1811 | json-stringify-safe@~5.0.1: 1812 | version "5.0.1" 1813 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1814 | 1815 | json3@^3.3.2: 1816 | version "3.3.2" 1817 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 1818 | 1819 | json5@^0.5.0, json5@^0.5.1: 1820 | version "0.5.1" 1821 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1822 | 1823 | jsonify@~0.0.0: 1824 | version "0.0.0" 1825 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1826 | 1827 | jsprim@^1.2.2: 1828 | version "1.4.1" 1829 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1830 | dependencies: 1831 | assert-plus "1.0.0" 1832 | extsprintf "1.3.0" 1833 | json-schema "0.2.3" 1834 | verror "1.10.0" 1835 | 1836 | kind-of@^3.0.2: 1837 | version "3.2.2" 1838 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1839 | dependencies: 1840 | is-buffer "^1.1.5" 1841 | 1842 | kind-of@^4.0.0: 1843 | version "4.0.0" 1844 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1845 | dependencies: 1846 | is-buffer "^1.1.5" 1847 | 1848 | lazy-cache@^1.0.3: 1849 | version "1.0.4" 1850 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1851 | 1852 | lcid@^1.0.0: 1853 | version "1.0.0" 1854 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1855 | dependencies: 1856 | invert-kv "^1.0.0" 1857 | 1858 | load-json-file@^1.0.0: 1859 | version "1.1.0" 1860 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1861 | dependencies: 1862 | graceful-fs "^4.1.2" 1863 | parse-json "^2.2.0" 1864 | pify "^2.0.0" 1865 | pinkie-promise "^2.0.0" 1866 | strip-bom "^2.0.0" 1867 | 1868 | load-json-file@^2.0.0: 1869 | version "2.0.0" 1870 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 1871 | dependencies: 1872 | graceful-fs "^4.1.2" 1873 | parse-json "^2.2.0" 1874 | pify "^2.0.0" 1875 | strip-bom "^3.0.0" 1876 | 1877 | loader-runner@^2.3.0: 1878 | version "2.3.0" 1879 | resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2" 1880 | 1881 | loader-utils@^1.0.2, loader-utils@^1.1.0: 1882 | version "1.1.0" 1883 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd" 1884 | dependencies: 1885 | big.js "^3.1.3" 1886 | emojis-list "^2.0.0" 1887 | json5 "^0.5.0" 1888 | 1889 | locate-path@^2.0.0: 1890 | version "2.0.0" 1891 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1892 | dependencies: 1893 | p-locate "^2.0.0" 1894 | path-exists "^3.0.0" 1895 | 1896 | lodash.camelcase@^4.3.0: 1897 | version "4.3.0" 1898 | resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" 1899 | 1900 | lodash.memoize@^4.1.2: 1901 | version "4.1.2" 1902 | resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" 1903 | 1904 | lodash.uniq@^4.5.0: 1905 | version "4.5.0" 1906 | resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" 1907 | 1908 | lodash@^4.14.0, lodash@^4.17.2: 1909 | version "4.17.4" 1910 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1911 | 1912 | loglevel@^1.4.1: 1913 | version "1.5.0" 1914 | resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.5.0.tgz#3863984a2c326b986fbb965f378758a6dc8a4324" 1915 | 1916 | longest@^1.0.1: 1917 | version "1.0.1" 1918 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1919 | 1920 | loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.3.1: 1921 | version "1.3.1" 1922 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1923 | dependencies: 1924 | js-tokens "^3.0.0" 1925 | 1926 | lru-cache@^4.0.1: 1927 | version "4.1.1" 1928 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 1929 | dependencies: 1930 | pseudomap "^1.0.2" 1931 | yallist "^2.1.2" 1932 | 1933 | macaddress@^0.2.8: 1934 | version "0.2.8" 1935 | resolved "https://registry.yarnpkg.com/macaddress/-/macaddress-0.2.8.tgz#5904dc537c39ec6dbefeae902327135fa8511f12" 1936 | 1937 | math-expression-evaluator@^1.2.14: 1938 | version "1.2.17" 1939 | resolved "https://registry.yarnpkg.com/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz#de819fdbcd84dccd8fae59c6aeb79615b9d266ac" 1940 | 1941 | md5.js@^1.3.4: 1942 | version "1.3.4" 1943 | resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.4.tgz#e9bdbde94a20a5ac18b04340fc5764d5b09d901d" 1944 | dependencies: 1945 | hash-base "^3.0.0" 1946 | inherits "^2.0.1" 1947 | 1948 | media-typer@0.3.0: 1949 | version "0.3.0" 1950 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 1951 | 1952 | mem@^1.1.0: 1953 | version "1.1.0" 1954 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 1955 | dependencies: 1956 | mimic-fn "^1.0.0" 1957 | 1958 | memory-fs@^0.4.0, memory-fs@~0.4.1: 1959 | version "0.4.1" 1960 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" 1961 | dependencies: 1962 | errno "^0.1.3" 1963 | readable-stream "^2.0.1" 1964 | 1965 | merge-descriptors@1.0.1: 1966 | version "1.0.1" 1967 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" 1968 | 1969 | methods@~1.1.2: 1970 | version "1.1.2" 1971 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 1972 | 1973 | micromatch@^2.1.5, micromatch@^2.3.11: 1974 | version "2.3.11" 1975 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1976 | dependencies: 1977 | arr-diff "^2.0.0" 1978 | array-unique "^0.2.1" 1979 | braces "^1.8.2" 1980 | expand-brackets "^0.1.4" 1981 | extglob "^0.3.1" 1982 | filename-regex "^2.0.0" 1983 | is-extglob "^1.0.0" 1984 | is-glob "^2.0.1" 1985 | kind-of "^3.0.2" 1986 | normalize-path "^2.0.1" 1987 | object.omit "^2.0.0" 1988 | parse-glob "^3.0.4" 1989 | regex-cache "^0.4.2" 1990 | 1991 | miller-rabin@^4.0.0: 1992 | version "4.0.0" 1993 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.0.tgz#4a62fb1d42933c05583982f4c716f6fb9e6c6d3d" 1994 | dependencies: 1995 | bn.js "^4.0.0" 1996 | brorand "^1.0.1" 1997 | 1998 | "mime-db@>= 1.29.0 < 2", mime-db@~1.30.0: 1999 | version "1.30.0" 2000 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 2001 | 2002 | mime-types@^2.1.12, mime-types@~2.1.15, mime-types@~2.1.16, mime-types@~2.1.7: 2003 | version "2.1.17" 2004 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 2005 | dependencies: 2006 | mime-db "~1.30.0" 2007 | 2008 | mime@1.3.4: 2009 | version "1.3.4" 2010 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53" 2011 | 2012 | mime@^1.3.4: 2013 | version "1.4.0" 2014 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.4.0.tgz#69e9e0db51d44f2a3b56e48b7817d7d137f1a343" 2015 | 2016 | mimic-fn@^1.0.0: 2017 | version "1.1.0" 2018 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 2019 | 2020 | minimalistic-assert@^1.0.0: 2021 | version "1.0.0" 2022 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" 2023 | 2024 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: 2025 | version "1.0.1" 2026 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 2027 | 2028 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 2029 | version "3.0.4" 2030 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2031 | dependencies: 2032 | brace-expansion "^1.1.7" 2033 | 2034 | minimist@0.0.8: 2035 | version "0.0.8" 2036 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2037 | 2038 | minimist@^1.2.0, minimist@~1.2.0: 2039 | version "1.2.0" 2040 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2041 | 2042 | mkdirp@0.5.x, "mkdirp@>=0.5 0", mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1: 2043 | version "0.5.1" 2044 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2045 | dependencies: 2046 | minimist "0.0.8" 2047 | 2048 | ms@2.0.0: 2049 | version "2.0.0" 2050 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2051 | 2052 | multicast-dns-service-types@^1.1.0: 2053 | version "1.1.0" 2054 | resolved "https://registry.yarnpkg.com/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz#899f11d9686e5e05cb91b35d5f0e63b773cfc901" 2055 | 2056 | multicast-dns@^6.0.1: 2057 | version "6.1.1" 2058 | resolved "https://registry.yarnpkg.com/multicast-dns/-/multicast-dns-6.1.1.tgz#6e7de86a570872ab17058adea7160bbeca814dde" 2059 | dependencies: 2060 | dns-packet "^1.0.1" 2061 | thunky "^0.1.0" 2062 | 2063 | nan@^2.3.0: 2064 | version "2.7.0" 2065 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.7.0.tgz#d95bf721ec877e08db276ed3fc6eb78f9083ad46" 2066 | 2067 | negotiator@0.6.1: 2068 | version "0.6.1" 2069 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" 2070 | 2071 | node-fetch@^1.0.1: 2072 | version "1.7.3" 2073 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" 2074 | dependencies: 2075 | encoding "^0.1.11" 2076 | is-stream "^1.0.1" 2077 | 2078 | node-forge@0.6.33: 2079 | version "0.6.33" 2080 | resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.6.33.tgz#463811879f573d45155ad6a9f43dc296e8e85ebc" 2081 | 2082 | node-libs-browser@^2.0.0: 2083 | version "2.0.0" 2084 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.0.0.tgz#a3a59ec97024985b46e958379646f96c4b616646" 2085 | dependencies: 2086 | assert "^1.1.1" 2087 | browserify-zlib "^0.1.4" 2088 | buffer "^4.3.0" 2089 | console-browserify "^1.1.0" 2090 | constants-browserify "^1.0.0" 2091 | crypto-browserify "^3.11.0" 2092 | domain-browser "^1.1.1" 2093 | events "^1.0.0" 2094 | https-browserify "0.0.1" 2095 | os-browserify "^0.2.0" 2096 | path-browserify "0.0.0" 2097 | process "^0.11.0" 2098 | punycode "^1.2.4" 2099 | querystring-es3 "^0.2.0" 2100 | readable-stream "^2.0.5" 2101 | stream-browserify "^2.0.1" 2102 | stream-http "^2.3.1" 2103 | string_decoder "^0.10.25" 2104 | timers-browserify "^2.0.2" 2105 | tty-browserify "0.0.0" 2106 | url "^0.11.0" 2107 | util "^0.10.3" 2108 | vm-browserify "0.0.4" 2109 | 2110 | node-pre-gyp@^0.6.36: 2111 | version "0.6.37" 2112 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.37.tgz#3c872b236b2e266e4140578fe1ee88f693323a05" 2113 | dependencies: 2114 | mkdirp "^0.5.1" 2115 | nopt "^4.0.1" 2116 | npmlog "^4.0.2" 2117 | rc "^1.1.7" 2118 | request "^2.81.0" 2119 | rimraf "^2.6.1" 2120 | semver "^5.3.0" 2121 | tape "^4.6.3" 2122 | tar "^2.2.1" 2123 | tar-pack "^3.4.0" 2124 | 2125 | nopt@^4.0.1: 2126 | version "4.0.1" 2127 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2128 | dependencies: 2129 | abbrev "1" 2130 | osenv "^0.1.4" 2131 | 2132 | normalize-package-data@^2.3.2: 2133 | version "2.4.0" 2134 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2135 | dependencies: 2136 | hosted-git-info "^2.1.4" 2137 | is-builtin-module "^1.0.0" 2138 | semver "2 || 3 || 4 || 5" 2139 | validate-npm-package-license "^3.0.1" 2140 | 2141 | normalize-path@^2.0.0, normalize-path@^2.0.1: 2142 | version "2.1.1" 2143 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2144 | dependencies: 2145 | remove-trailing-separator "^1.0.1" 2146 | 2147 | normalize-range@^0.1.2: 2148 | version "0.1.2" 2149 | resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" 2150 | 2151 | normalize-url@^1.4.0: 2152 | version "1.9.1" 2153 | resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-1.9.1.tgz#2cc0d66b31ea23036458436e3620d85954c66c3c" 2154 | dependencies: 2155 | object-assign "^4.0.1" 2156 | prepend-http "^1.0.0" 2157 | query-string "^4.1.0" 2158 | sort-keys "^1.0.0" 2159 | 2160 | npm-run-path@^2.0.0: 2161 | version "2.0.2" 2162 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2163 | dependencies: 2164 | path-key "^2.0.0" 2165 | 2166 | npmlog@^4.0.2: 2167 | version "4.1.2" 2168 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2169 | dependencies: 2170 | are-we-there-yet "~1.1.2" 2171 | console-control-strings "~1.1.0" 2172 | gauge "~2.7.3" 2173 | set-blocking "~2.0.0" 2174 | 2175 | num2fraction@^1.2.2: 2176 | version "1.2.2" 2177 | resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" 2178 | 2179 | number-is-nan@^1.0.0: 2180 | version "1.0.1" 2181 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2182 | 2183 | oauth-sign@~0.8.1: 2184 | version "0.8.2" 2185 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2186 | 2187 | object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: 2188 | version "4.1.1" 2189 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2190 | 2191 | object-inspect@~1.3.0: 2192 | version "1.3.0" 2193 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.3.0.tgz#5b1eb8e6742e2ee83342a637034d844928ba2f6d" 2194 | 2195 | object-keys@^1.0.8: 2196 | version "1.0.11" 2197 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 2198 | 2199 | object.omit@^2.0.0: 2200 | version "2.0.1" 2201 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2202 | dependencies: 2203 | for-own "^0.1.4" 2204 | is-extendable "^0.1.1" 2205 | 2206 | obuf@^1.0.0, obuf@^1.1.1: 2207 | version "1.1.1" 2208 | resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.1.tgz#104124b6c602c6796881a042541d36db43a5264e" 2209 | 2210 | on-finished@~2.3.0: 2211 | version "2.3.0" 2212 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 2213 | dependencies: 2214 | ee-first "1.1.1" 2215 | 2216 | on-headers@~1.0.1: 2217 | version "1.0.1" 2218 | resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.1.tgz#928f5d0f470d49342651ea6794b0857c100693f7" 2219 | 2220 | once@^1.3.0, once@^1.3.3: 2221 | version "1.4.0" 2222 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2223 | dependencies: 2224 | wrappy "1" 2225 | 2226 | opn@^5.1.0: 2227 | version "5.1.0" 2228 | resolved "https://registry.yarnpkg.com/opn/-/opn-5.1.0.tgz#72ce2306a17dbea58ff1041853352b4a8fc77519" 2229 | dependencies: 2230 | is-wsl "^1.1.0" 2231 | 2232 | original@>=0.0.5: 2233 | version "1.0.0" 2234 | resolved "https://registry.yarnpkg.com/original/-/original-1.0.0.tgz#9147f93fa1696d04be61e01bd50baeaca656bd3b" 2235 | dependencies: 2236 | url-parse "1.0.x" 2237 | 2238 | os-browserify@^0.2.0: 2239 | version "0.2.1" 2240 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.2.1.tgz#63fc4ccee5d2d7763d26bbf8601078e6c2e0044f" 2241 | 2242 | os-homedir@^1.0.0: 2243 | version "1.0.2" 2244 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2245 | 2246 | os-locale@^1.4.0: 2247 | version "1.4.0" 2248 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2249 | dependencies: 2250 | lcid "^1.0.0" 2251 | 2252 | os-locale@^2.0.0: 2253 | version "2.1.0" 2254 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 2255 | dependencies: 2256 | execa "^0.7.0" 2257 | lcid "^1.0.0" 2258 | mem "^1.1.0" 2259 | 2260 | os-tmpdir@^1.0.0: 2261 | version "1.0.2" 2262 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2263 | 2264 | osenv@^0.1.4: 2265 | version "0.1.4" 2266 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2267 | dependencies: 2268 | os-homedir "^1.0.0" 2269 | os-tmpdir "^1.0.0" 2270 | 2271 | p-finally@^1.0.0: 2272 | version "1.0.0" 2273 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2274 | 2275 | p-limit@^1.1.0: 2276 | version "1.1.0" 2277 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2278 | 2279 | p-locate@^2.0.0: 2280 | version "2.0.0" 2281 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2282 | dependencies: 2283 | p-limit "^1.1.0" 2284 | 2285 | p-map@^1.1.1: 2286 | version "1.2.0" 2287 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.2.0.tgz#e4e94f311eabbc8633a1e79908165fca26241b6b" 2288 | 2289 | pako@~0.2.0: 2290 | version "0.2.9" 2291 | resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" 2292 | 2293 | parse-asn1@^5.0.0: 2294 | version "5.1.0" 2295 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712" 2296 | dependencies: 2297 | asn1.js "^4.0.0" 2298 | browserify-aes "^1.0.0" 2299 | create-hash "^1.1.0" 2300 | evp_bytestokey "^1.0.0" 2301 | pbkdf2 "^3.0.3" 2302 | 2303 | parse-glob@^3.0.4: 2304 | version "3.0.4" 2305 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2306 | dependencies: 2307 | glob-base "^0.3.0" 2308 | is-dotfile "^1.0.0" 2309 | is-extglob "^1.0.0" 2310 | is-glob "^2.0.0" 2311 | 2312 | parse-json@^2.2.0: 2313 | version "2.2.0" 2314 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2315 | dependencies: 2316 | error-ex "^1.2.0" 2317 | 2318 | parseurl@~1.3.1, parseurl@~1.3.2: 2319 | version "1.3.2" 2320 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.2.tgz#fc289d4ed8993119460c156253262cdc8de65bf3" 2321 | 2322 | path-browserify@0.0.0: 2323 | version "0.0.0" 2324 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 2325 | 2326 | path-exists@^2.0.0: 2327 | version "2.1.0" 2328 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2329 | dependencies: 2330 | pinkie-promise "^2.0.0" 2331 | 2332 | path-exists@^3.0.0: 2333 | version "3.0.0" 2334 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2335 | 2336 | path-is-absolute@^1.0.0: 2337 | version "1.0.1" 2338 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2339 | 2340 | path-is-inside@^1.0.1: 2341 | version "1.0.2" 2342 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2343 | 2344 | path-key@^2.0.0: 2345 | version "2.0.1" 2346 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2347 | 2348 | path-parse@^1.0.5: 2349 | version "1.0.5" 2350 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2351 | 2352 | path-to-regexp@0.1.7: 2353 | version "0.1.7" 2354 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" 2355 | 2356 | path-type@^1.0.0: 2357 | version "1.1.0" 2358 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2359 | dependencies: 2360 | graceful-fs "^4.1.2" 2361 | pify "^2.0.0" 2362 | pinkie-promise "^2.0.0" 2363 | 2364 | path-type@^2.0.0: 2365 | version "2.0.0" 2366 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 2367 | dependencies: 2368 | pify "^2.0.0" 2369 | 2370 | pbkdf2@^3.0.3: 2371 | version "3.0.14" 2372 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.14.tgz#a35e13c64799b06ce15320f459c230e68e73bade" 2373 | dependencies: 2374 | create-hash "^1.1.2" 2375 | create-hmac "^1.1.4" 2376 | ripemd160 "^2.0.1" 2377 | safe-buffer "^5.0.1" 2378 | sha.js "^2.4.8" 2379 | 2380 | performance-now@^0.2.0: 2381 | version "0.2.0" 2382 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2383 | 2384 | pify@^2.0.0: 2385 | version "2.3.0" 2386 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2387 | 2388 | pify@^3.0.0: 2389 | version "3.0.0" 2390 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 2391 | 2392 | pinkie-promise@^2.0.0: 2393 | version "2.0.1" 2394 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2395 | dependencies: 2396 | pinkie "^2.0.0" 2397 | 2398 | pinkie@^2.0.0: 2399 | version "2.0.4" 2400 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2401 | 2402 | portfinder@^1.0.9: 2403 | version "1.0.13" 2404 | resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.13.tgz#bb32ecd87c27104ae6ee44b5a3ccbf0ebb1aede9" 2405 | dependencies: 2406 | async "^1.5.2" 2407 | debug "^2.2.0" 2408 | mkdirp "0.5.x" 2409 | 2410 | postcss-calc@^5.2.0: 2411 | version "5.3.1" 2412 | resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-5.3.1.tgz#77bae7ca928ad85716e2fda42f261bf7c1d65b5e" 2413 | dependencies: 2414 | postcss "^5.0.2" 2415 | postcss-message-helpers "^2.0.0" 2416 | reduce-css-calc "^1.2.6" 2417 | 2418 | postcss-colormin@^2.1.8: 2419 | version "2.2.2" 2420 | resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-2.2.2.tgz#6631417d5f0e909a3d7ec26b24c8a8d1e4f96e4b" 2421 | dependencies: 2422 | colormin "^1.0.5" 2423 | postcss "^5.0.13" 2424 | postcss-value-parser "^3.2.3" 2425 | 2426 | postcss-convert-values@^2.3.4: 2427 | version "2.6.1" 2428 | resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz#bbd8593c5c1fd2e3d1c322bb925dcae8dae4d62d" 2429 | dependencies: 2430 | postcss "^5.0.11" 2431 | postcss-value-parser "^3.1.2" 2432 | 2433 | postcss-discard-comments@^2.0.4: 2434 | version "2.0.4" 2435 | resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz#befe89fafd5b3dace5ccce51b76b81514be00e3d" 2436 | dependencies: 2437 | postcss "^5.0.14" 2438 | 2439 | postcss-discard-duplicates@^2.0.1: 2440 | version "2.1.0" 2441 | resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-2.1.0.tgz#b9abf27b88ac188158a5eb12abcae20263b91932" 2442 | dependencies: 2443 | postcss "^5.0.4" 2444 | 2445 | postcss-discard-empty@^2.0.1: 2446 | version "2.1.0" 2447 | resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz#d2b4bd9d5ced5ebd8dcade7640c7d7cd7f4f92b5" 2448 | dependencies: 2449 | postcss "^5.0.14" 2450 | 2451 | postcss-discard-overridden@^0.1.1: 2452 | version "0.1.1" 2453 | resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz#8b1eaf554f686fb288cd874c55667b0aa3668d58" 2454 | dependencies: 2455 | postcss "^5.0.16" 2456 | 2457 | postcss-discard-unused@^2.2.1: 2458 | version "2.2.3" 2459 | resolved "https://registry.yarnpkg.com/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz#bce30b2cc591ffc634322b5fb3464b6d934f4433" 2460 | dependencies: 2461 | postcss "^5.0.14" 2462 | uniqs "^2.0.0" 2463 | 2464 | postcss-filter-plugins@^2.0.0: 2465 | version "2.0.2" 2466 | resolved "https://registry.yarnpkg.com/postcss-filter-plugins/-/postcss-filter-plugins-2.0.2.tgz#6d85862534d735ac420e4a85806e1f5d4286d84c" 2467 | dependencies: 2468 | postcss "^5.0.4" 2469 | uniqid "^4.0.0" 2470 | 2471 | postcss-merge-idents@^2.1.5: 2472 | version "2.1.7" 2473 | resolved "https://registry.yarnpkg.com/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz#4c5530313c08e1d5b3bbf3d2bbc747e278eea270" 2474 | dependencies: 2475 | has "^1.0.1" 2476 | postcss "^5.0.10" 2477 | postcss-value-parser "^3.1.1" 2478 | 2479 | postcss-merge-longhand@^2.0.1: 2480 | version "2.0.2" 2481 | resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz#23d90cd127b0a77994915332739034a1a4f3d658" 2482 | dependencies: 2483 | postcss "^5.0.4" 2484 | 2485 | postcss-merge-rules@^2.0.3: 2486 | version "2.1.2" 2487 | resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-2.1.2.tgz#d1df5dfaa7b1acc3be553f0e9e10e87c61b5f721" 2488 | dependencies: 2489 | browserslist "^1.5.2" 2490 | caniuse-api "^1.5.2" 2491 | postcss "^5.0.4" 2492 | postcss-selector-parser "^2.2.2" 2493 | vendors "^1.0.0" 2494 | 2495 | postcss-message-helpers@^2.0.0: 2496 | version "2.0.0" 2497 | resolved "https://registry.yarnpkg.com/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz#a4f2f4fab6e4fe002f0aed000478cdf52f9ba60e" 2498 | 2499 | postcss-minify-font-values@^1.0.2: 2500 | version "1.0.5" 2501 | resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz#4b58edb56641eba7c8474ab3526cafd7bbdecb69" 2502 | dependencies: 2503 | object-assign "^4.0.1" 2504 | postcss "^5.0.4" 2505 | postcss-value-parser "^3.0.2" 2506 | 2507 | postcss-minify-gradients@^1.0.1: 2508 | version "1.0.5" 2509 | resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz#5dbda11373703f83cfb4a3ea3881d8d75ff5e6e1" 2510 | dependencies: 2511 | postcss "^5.0.12" 2512 | postcss-value-parser "^3.3.0" 2513 | 2514 | postcss-minify-params@^1.0.4: 2515 | version "1.2.2" 2516 | resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz#ad2ce071373b943b3d930a3fa59a358c28d6f1f3" 2517 | dependencies: 2518 | alphanum-sort "^1.0.1" 2519 | postcss "^5.0.2" 2520 | postcss-value-parser "^3.0.2" 2521 | uniqs "^2.0.0" 2522 | 2523 | postcss-minify-selectors@^2.0.4: 2524 | version "2.1.1" 2525 | resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz#b2c6a98c0072cf91b932d1a496508114311735bf" 2526 | dependencies: 2527 | alphanum-sort "^1.0.2" 2528 | has "^1.0.1" 2529 | postcss "^5.0.14" 2530 | postcss-selector-parser "^2.0.0" 2531 | 2532 | postcss-modules-extract-imports@^1.0.0: 2533 | version "1.2.0" 2534 | resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.2.0.tgz#66140ecece38ef06bf0d3e355d69bf59d141ea85" 2535 | dependencies: 2536 | postcss "^6.0.1" 2537 | 2538 | postcss-modules-local-by-default@^1.0.1: 2539 | version "1.2.0" 2540 | resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz#f7d80c398c5a393fa7964466bd19500a7d61c069" 2541 | dependencies: 2542 | css-selector-tokenizer "^0.7.0" 2543 | postcss "^6.0.1" 2544 | 2545 | postcss-modules-scope@^1.0.0: 2546 | version "1.1.0" 2547 | resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz#d6ea64994c79f97b62a72b426fbe6056a194bb90" 2548 | dependencies: 2549 | css-selector-tokenizer "^0.7.0" 2550 | postcss "^6.0.1" 2551 | 2552 | postcss-modules-values@^1.1.0: 2553 | version "1.3.0" 2554 | resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz#ecffa9d7e192518389f42ad0e83f72aec456ea20" 2555 | dependencies: 2556 | icss-replace-symbols "^1.1.0" 2557 | postcss "^6.0.1" 2558 | 2559 | postcss-normalize-charset@^1.1.0: 2560 | version "1.1.1" 2561 | resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz#ef9ee71212d7fe759c78ed162f61ed62b5cb93f1" 2562 | dependencies: 2563 | postcss "^5.0.5" 2564 | 2565 | postcss-normalize-url@^3.0.7: 2566 | version "3.0.8" 2567 | resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz#108f74b3f2fcdaf891a2ffa3ea4592279fc78222" 2568 | dependencies: 2569 | is-absolute-url "^2.0.0" 2570 | normalize-url "^1.4.0" 2571 | postcss "^5.0.14" 2572 | postcss-value-parser "^3.2.3" 2573 | 2574 | postcss-ordered-values@^2.1.0: 2575 | version "2.2.3" 2576 | resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz#eec6c2a67b6c412a8db2042e77fe8da43f95c11d" 2577 | dependencies: 2578 | postcss "^5.0.4" 2579 | postcss-value-parser "^3.0.1" 2580 | 2581 | postcss-reduce-idents@^2.2.2: 2582 | version "2.4.0" 2583 | resolved "https://registry.yarnpkg.com/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz#c2c6d20cc958284f6abfbe63f7609bf409059ad3" 2584 | dependencies: 2585 | postcss "^5.0.4" 2586 | postcss-value-parser "^3.0.2" 2587 | 2588 | postcss-reduce-initial@^1.0.0: 2589 | version "1.0.1" 2590 | resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz#68f80695f045d08263a879ad240df8dd64f644ea" 2591 | dependencies: 2592 | postcss "^5.0.4" 2593 | 2594 | postcss-reduce-transforms@^1.0.3: 2595 | version "1.0.4" 2596 | resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz#ff76f4d8212437b31c298a42d2e1444025771ae1" 2597 | dependencies: 2598 | has "^1.0.1" 2599 | postcss "^5.0.8" 2600 | postcss-value-parser "^3.0.1" 2601 | 2602 | postcss-selector-parser@^2.0.0, postcss-selector-parser@^2.2.2: 2603 | version "2.2.3" 2604 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz#f9437788606c3c9acee16ffe8d8b16297f27bb90" 2605 | dependencies: 2606 | flatten "^1.0.2" 2607 | indexes-of "^1.0.1" 2608 | uniq "^1.0.1" 2609 | 2610 | postcss-svgo@^2.1.1: 2611 | version "2.1.6" 2612 | resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-2.1.6.tgz#b6df18aa613b666e133f08adb5219c2684ac108d" 2613 | dependencies: 2614 | is-svg "^2.0.0" 2615 | postcss "^5.0.14" 2616 | postcss-value-parser "^3.2.3" 2617 | svgo "^0.7.0" 2618 | 2619 | postcss-unique-selectors@^2.0.2: 2620 | version "2.0.2" 2621 | resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz#981d57d29ddcb33e7b1dfe1fd43b8649f933ca1d" 2622 | dependencies: 2623 | alphanum-sort "^1.0.1" 2624 | postcss "^5.0.4" 2625 | uniqs "^2.0.0" 2626 | 2627 | postcss-value-parser@^3.0.1, postcss-value-parser@^3.0.2, postcss-value-parser@^3.1.1, postcss-value-parser@^3.1.2, postcss-value-parser@^3.2.3, postcss-value-parser@^3.3.0: 2628 | version "3.3.0" 2629 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15" 2630 | 2631 | postcss-zindex@^2.0.1: 2632 | version "2.2.0" 2633 | resolved "https://registry.yarnpkg.com/postcss-zindex/-/postcss-zindex-2.2.0.tgz#d2109ddc055b91af67fc4cb3b025946639d2af22" 2634 | dependencies: 2635 | has "^1.0.1" 2636 | postcss "^5.0.4" 2637 | uniqs "^2.0.0" 2638 | 2639 | postcss@^5.0.10, postcss@^5.0.11, postcss@^5.0.12, postcss@^5.0.13, postcss@^5.0.14, postcss@^5.0.16, postcss@^5.0.2, postcss@^5.0.4, postcss@^5.0.5, postcss@^5.0.6, postcss@^5.0.8, postcss@^5.2.16: 2640 | version "5.2.18" 2641 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.2.18.tgz#badfa1497d46244f6390f58b319830d9107853c5" 2642 | dependencies: 2643 | chalk "^1.1.3" 2644 | js-base64 "^2.1.9" 2645 | source-map "^0.5.6" 2646 | supports-color "^3.2.3" 2647 | 2648 | postcss@^6.0.1: 2649 | version "6.0.13" 2650 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.13.tgz#b9ecab4ee00c89db3ec931145bd9590bbf3f125f" 2651 | dependencies: 2652 | chalk "^2.1.0" 2653 | source-map "^0.6.1" 2654 | supports-color "^4.4.0" 2655 | 2656 | prepend-http@^1.0.0: 2657 | version "1.0.4" 2658 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 2659 | 2660 | preserve@^0.2.0: 2661 | version "0.2.0" 2662 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2663 | 2664 | process-nextick-args@~1.0.6: 2665 | version "1.0.7" 2666 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2667 | 2668 | process@^0.11.0: 2669 | version "0.11.10" 2670 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" 2671 | 2672 | promise@^7.1.1: 2673 | version "7.3.1" 2674 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" 2675 | dependencies: 2676 | asap "~2.0.3" 2677 | 2678 | prop-types@^15.6.0: 2679 | version "15.6.0" 2680 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.6.0.tgz#ceaf083022fc46b4a35f69e13ef75aed0d639856" 2681 | dependencies: 2682 | fbjs "^0.8.16" 2683 | loose-envify "^1.3.1" 2684 | object-assign "^4.1.1" 2685 | 2686 | proxy-addr@~1.1.5: 2687 | version "1.1.5" 2688 | resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-1.1.5.tgz#71c0ee3b102de3f202f3b64f608d173fcba1a918" 2689 | dependencies: 2690 | forwarded "~0.1.0" 2691 | ipaddr.js "1.4.0" 2692 | 2693 | prr@~0.0.0: 2694 | version "0.0.0" 2695 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 2696 | 2697 | pseudomap@^1.0.2: 2698 | version "1.0.2" 2699 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2700 | 2701 | public-encrypt@^4.0.0: 2702 | version "4.0.0" 2703 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" 2704 | dependencies: 2705 | bn.js "^4.1.0" 2706 | browserify-rsa "^4.0.0" 2707 | create-hash "^1.1.0" 2708 | parse-asn1 "^5.0.0" 2709 | randombytes "^2.0.1" 2710 | 2711 | punycode@1.3.2: 2712 | version "1.3.2" 2713 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 2714 | 2715 | punycode@^1.2.4, punycode@^1.4.1: 2716 | version "1.4.1" 2717 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2718 | 2719 | q@^1.1.2: 2720 | version "1.5.0" 2721 | resolved "https://registry.yarnpkg.com/q/-/q-1.5.0.tgz#dd01bac9d06d30e6f219aecb8253ee9ebdc308f1" 2722 | 2723 | qs@6.5.0: 2724 | version "6.5.0" 2725 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.0.tgz#8d04954d364def3efc55b5a0793e1e2c8b1e6e49" 2726 | 2727 | qs@~6.4.0: 2728 | version "6.4.0" 2729 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2730 | 2731 | query-string@^4.1.0: 2732 | version "4.3.4" 2733 | resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb" 2734 | dependencies: 2735 | object-assign "^4.1.0" 2736 | strict-uri-encode "^1.0.0" 2737 | 2738 | querystring-es3@^0.2.0: 2739 | version "0.2.1" 2740 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 2741 | 2742 | querystring@0.2.0: 2743 | version "0.2.0" 2744 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 2745 | 2746 | querystringify@0.0.x: 2747 | version "0.0.4" 2748 | resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-0.0.4.tgz#0cf7f84f9463ff0ae51c4c4b142d95be37724d9c" 2749 | 2750 | querystringify@~1.0.0: 2751 | version "1.0.0" 2752 | resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-1.0.0.tgz#6286242112c5b712fa654e526652bf6a13ff05cb" 2753 | 2754 | randomatic@^1.1.3: 2755 | version "1.1.7" 2756 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 2757 | dependencies: 2758 | is-number "^3.0.0" 2759 | kind-of "^4.0.0" 2760 | 2761 | randombytes@^2.0.0, randombytes@^2.0.1: 2762 | version "2.0.5" 2763 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.5.tgz#dc009a246b8d09a177b4b7a0ae77bc570f4b1b79" 2764 | dependencies: 2765 | safe-buffer "^5.1.0" 2766 | 2767 | range-parser@^1.0.3, range-parser@~1.2.0: 2768 | version "1.2.0" 2769 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" 2770 | 2771 | rc@^1.1.7: 2772 | version "1.2.1" 2773 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 2774 | dependencies: 2775 | deep-extend "~0.4.0" 2776 | ini "~1.3.0" 2777 | minimist "^1.2.0" 2778 | strip-json-comments "~2.0.1" 2779 | 2780 | react-dom@^16.0.0: 2781 | version "16.0.0" 2782 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.0.0.tgz#9cc3079c3dcd70d4c6e01b84aab2a7e34c303f58" 2783 | dependencies: 2784 | fbjs "^0.8.16" 2785 | loose-envify "^1.1.0" 2786 | object-assign "^4.1.1" 2787 | prop-types "^15.6.0" 2788 | 2789 | react@^16.0.0: 2790 | version "16.0.0" 2791 | resolved "https://registry.yarnpkg.com/react/-/react-16.0.0.tgz#ce7df8f1941b036f02b2cca9dbd0cb1f0e855e2d" 2792 | dependencies: 2793 | fbjs "^0.8.16" 2794 | loose-envify "^1.1.0" 2795 | object-assign "^4.1.1" 2796 | prop-types "^15.6.0" 2797 | 2798 | read-pkg-up@^1.0.1: 2799 | version "1.0.1" 2800 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2801 | dependencies: 2802 | find-up "^1.0.0" 2803 | read-pkg "^1.0.0" 2804 | 2805 | read-pkg-up@^2.0.0: 2806 | version "2.0.0" 2807 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 2808 | dependencies: 2809 | find-up "^2.0.0" 2810 | read-pkg "^2.0.0" 2811 | 2812 | read-pkg@^1.0.0: 2813 | version "1.1.0" 2814 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2815 | dependencies: 2816 | load-json-file "^1.0.0" 2817 | normalize-package-data "^2.3.2" 2818 | path-type "^1.0.0" 2819 | 2820 | read-pkg@^2.0.0: 2821 | version "2.0.0" 2822 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 2823 | dependencies: 2824 | load-json-file "^2.0.0" 2825 | normalize-package-data "^2.3.2" 2826 | path-type "^2.0.0" 2827 | 2828 | readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.6, readable-stream@^2.2.9: 2829 | version "2.3.3" 2830 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 2831 | dependencies: 2832 | core-util-is "~1.0.0" 2833 | inherits "~2.0.3" 2834 | isarray "~1.0.0" 2835 | process-nextick-args "~1.0.6" 2836 | safe-buffer "~5.1.1" 2837 | string_decoder "~1.0.3" 2838 | util-deprecate "~1.0.1" 2839 | 2840 | readdirp@^2.0.0: 2841 | version "2.1.0" 2842 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2843 | dependencies: 2844 | graceful-fs "^4.1.2" 2845 | minimatch "^3.0.2" 2846 | readable-stream "^2.0.2" 2847 | set-immediate-shim "^1.0.1" 2848 | 2849 | reduce-css-calc@^1.2.6: 2850 | version "1.3.0" 2851 | resolved "https://registry.yarnpkg.com/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz#747c914e049614a4c9cfbba629871ad1d2927716" 2852 | dependencies: 2853 | balanced-match "^0.4.2" 2854 | math-expression-evaluator "^1.2.14" 2855 | reduce-function-call "^1.0.1" 2856 | 2857 | reduce-function-call@^1.0.1: 2858 | version "1.0.2" 2859 | resolved "https://registry.yarnpkg.com/reduce-function-call/-/reduce-function-call-1.0.2.tgz#5a200bf92e0e37751752fe45b0ab330fd4b6be99" 2860 | dependencies: 2861 | balanced-match "^0.4.2" 2862 | 2863 | regenerate@^1.2.1: 2864 | version "1.3.3" 2865 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f" 2866 | 2867 | regex-cache@^0.4.2: 2868 | version "0.4.4" 2869 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2870 | dependencies: 2871 | is-equal-shallow "^0.1.3" 2872 | 2873 | regexpu-core@^1.0.0: 2874 | version "1.0.0" 2875 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-1.0.0.tgz#86a763f58ee4d7c2f6b102e4764050de7ed90c6b" 2876 | dependencies: 2877 | regenerate "^1.2.1" 2878 | regjsgen "^0.2.0" 2879 | regjsparser "^0.1.4" 2880 | 2881 | regjsgen@^0.2.0: 2882 | version "0.2.0" 2883 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2884 | 2885 | regjsparser@^0.1.4: 2886 | version "0.1.5" 2887 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2888 | dependencies: 2889 | jsesc "~0.5.0" 2890 | 2891 | remove-trailing-separator@^1.0.1: 2892 | version "1.1.0" 2893 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2894 | 2895 | repeat-element@^1.1.2: 2896 | version "1.1.2" 2897 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2898 | 2899 | repeat-string@^1.5.2: 2900 | version "1.6.1" 2901 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2902 | 2903 | request@^2.81.0: 2904 | version "2.81.0" 2905 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2906 | dependencies: 2907 | aws-sign2 "~0.6.0" 2908 | aws4 "^1.2.1" 2909 | caseless "~0.12.0" 2910 | combined-stream "~1.0.5" 2911 | extend "~3.0.0" 2912 | forever-agent "~0.6.1" 2913 | form-data "~2.1.1" 2914 | har-validator "~4.2.1" 2915 | hawk "~3.1.3" 2916 | http-signature "~1.1.0" 2917 | is-typedarray "~1.0.0" 2918 | isstream "~0.1.2" 2919 | json-stringify-safe "~5.0.1" 2920 | mime-types "~2.1.7" 2921 | oauth-sign "~0.8.1" 2922 | performance-now "^0.2.0" 2923 | qs "~6.4.0" 2924 | safe-buffer "^5.0.1" 2925 | stringstream "~0.0.4" 2926 | tough-cookie "~2.3.0" 2927 | tunnel-agent "^0.6.0" 2928 | uuid "^3.0.0" 2929 | 2930 | require-directory@^2.1.1: 2931 | version "2.1.1" 2932 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2933 | 2934 | require-main-filename@^1.0.1: 2935 | version "1.0.1" 2936 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2937 | 2938 | requires-port@1.0.x, requires-port@1.x.x: 2939 | version "1.0.0" 2940 | resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" 2941 | 2942 | resolve@~1.4.0: 2943 | version "1.4.0" 2944 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.4.0.tgz#a75be01c53da25d934a98ebd0e4c4a7312f92a86" 2945 | dependencies: 2946 | path-parse "^1.0.5" 2947 | 2948 | resumer@~0.0.0: 2949 | version "0.0.0" 2950 | resolved "https://registry.yarnpkg.com/resumer/-/resumer-0.0.0.tgz#f1e8f461e4064ba39e82af3cdc2a8c893d076759" 2951 | dependencies: 2952 | through "~2.3.4" 2953 | 2954 | right-align@^0.1.1: 2955 | version "0.1.3" 2956 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2957 | dependencies: 2958 | align-text "^0.1.1" 2959 | 2960 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1: 2961 | version "2.6.2" 2962 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2963 | dependencies: 2964 | glob "^7.0.5" 2965 | 2966 | ripemd160@^2.0.0, ripemd160@^2.0.1: 2967 | version "2.0.1" 2968 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.1.tgz#0f4584295c53a3628af7e6d79aca21ce57d1c6e7" 2969 | dependencies: 2970 | hash-base "^2.0.0" 2971 | inherits "^2.0.1" 2972 | 2973 | safe-buffer@5.1.1, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2974 | version "5.1.1" 2975 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2976 | 2977 | sax@~1.2.1: 2978 | version "1.2.4" 2979 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2980 | 2981 | schema-utils@^0.3.0: 2982 | version "0.3.0" 2983 | resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-0.3.0.tgz#f5877222ce3e931edae039f17eb3716e7137f8cf" 2984 | dependencies: 2985 | ajv "^5.0.0" 2986 | 2987 | select-hose@^2.0.0: 2988 | version "2.0.0" 2989 | resolved "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca" 2990 | 2991 | selfsigned@^1.9.1: 2992 | version "1.10.1" 2993 | resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-1.10.1.tgz#bf8cb7b83256c4551e31347c6311778db99eec52" 2994 | dependencies: 2995 | node-forge "0.6.33" 2996 | 2997 | "semver@2 || 3 || 4 || 5", semver@^5.0.1, semver@^5.3.0: 2998 | version "5.4.1" 2999 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 3000 | 3001 | send@0.15.4: 3002 | version "0.15.4" 3003 | resolved "https://registry.yarnpkg.com/send/-/send-0.15.4.tgz#985faa3e284b0273c793364a35c6737bd93905b9" 3004 | dependencies: 3005 | debug "2.6.8" 3006 | depd "~1.1.1" 3007 | destroy "~1.0.4" 3008 | encodeurl "~1.0.1" 3009 | escape-html "~1.0.3" 3010 | etag "~1.8.0" 3011 | fresh "0.5.0" 3012 | http-errors "~1.6.2" 3013 | mime "1.3.4" 3014 | ms "2.0.0" 3015 | on-finished "~2.3.0" 3016 | range-parser "~1.2.0" 3017 | statuses "~1.3.1" 3018 | 3019 | serve-index@^1.7.2: 3020 | version "1.9.0" 3021 | resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.0.tgz#d2b280fc560d616ee81b48bf0fa82abed2485ce7" 3022 | dependencies: 3023 | accepts "~1.3.3" 3024 | batch "0.6.1" 3025 | debug "2.6.8" 3026 | escape-html "~1.0.3" 3027 | http-errors "~1.6.1" 3028 | mime-types "~2.1.15" 3029 | parseurl "~1.3.1" 3030 | 3031 | serve-static@1.12.4: 3032 | version "1.12.4" 3033 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.12.4.tgz#9b6aa98eeb7253c4eedc4c1f6fdbca609901a961" 3034 | dependencies: 3035 | encodeurl "~1.0.1" 3036 | escape-html "~1.0.3" 3037 | parseurl "~1.3.1" 3038 | send "0.15.4" 3039 | 3040 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3041 | version "2.0.0" 3042 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3043 | 3044 | set-immediate-shim@^1.0.1: 3045 | version "1.0.1" 3046 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3047 | 3048 | setimmediate@^1.0.4, setimmediate@^1.0.5: 3049 | version "1.0.5" 3050 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 3051 | 3052 | setprototypeof@1.0.3: 3053 | version "1.0.3" 3054 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04" 3055 | 3056 | sha.js@^2.4.0, sha.js@^2.4.8: 3057 | version "2.4.8" 3058 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.8.tgz#37068c2c476b6baf402d14a49c67f597921f634f" 3059 | dependencies: 3060 | inherits "^2.0.1" 3061 | 3062 | shebang-command@^1.2.0: 3063 | version "1.2.0" 3064 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3065 | dependencies: 3066 | shebang-regex "^1.0.0" 3067 | 3068 | shebang-regex@^1.0.0: 3069 | version "1.0.0" 3070 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3071 | 3072 | signal-exit@^3.0.0: 3073 | version "3.0.2" 3074 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3075 | 3076 | sntp@1.x.x: 3077 | version "1.0.9" 3078 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3079 | dependencies: 3080 | hoek "2.x.x" 3081 | 3082 | sockjs-client@1.1.4: 3083 | version "1.1.4" 3084 | resolved "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.1.4.tgz#5babe386b775e4cf14e7520911452654016c8b12" 3085 | dependencies: 3086 | debug "^2.6.6" 3087 | eventsource "0.1.6" 3088 | faye-websocket "~0.11.0" 3089 | inherits "^2.0.1" 3090 | json3 "^3.3.2" 3091 | url-parse "^1.1.8" 3092 | 3093 | sockjs@0.3.18: 3094 | version "0.3.18" 3095 | resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.18.tgz#d9b289316ca7df77595ef299e075f0f937eb4207" 3096 | dependencies: 3097 | faye-websocket "^0.10.0" 3098 | uuid "^2.0.2" 3099 | 3100 | sort-keys@^1.0.0: 3101 | version "1.1.2" 3102 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" 3103 | dependencies: 3104 | is-plain-obj "^1.0.0" 3105 | 3106 | source-list-map@^2.0.0: 3107 | version "2.0.0" 3108 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.0.tgz#aaa47403f7b245a92fbc97ea08f250d6087ed085" 3109 | 3110 | source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1, source-map@~0.5.3: 3111 | version "0.5.7" 3112 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3113 | 3114 | source-map@^0.6.1: 3115 | version "0.6.1" 3116 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 3117 | 3118 | spdx-correct@~1.0.0: 3119 | version "1.0.2" 3120 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3121 | dependencies: 3122 | spdx-license-ids "^1.0.2" 3123 | 3124 | spdx-expression-parse@~1.0.0: 3125 | version "1.0.4" 3126 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3127 | 3128 | spdx-license-ids@^1.0.2: 3129 | version "1.2.2" 3130 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3131 | 3132 | spdy-transport@^2.0.18: 3133 | version "2.0.20" 3134 | resolved "https://registry.yarnpkg.com/spdy-transport/-/spdy-transport-2.0.20.tgz#735e72054c486b2354fe89e702256004a39ace4d" 3135 | dependencies: 3136 | debug "^2.6.8" 3137 | detect-node "^2.0.3" 3138 | hpack.js "^2.1.6" 3139 | obuf "^1.1.1" 3140 | readable-stream "^2.2.9" 3141 | safe-buffer "^5.0.1" 3142 | wbuf "^1.7.2" 3143 | 3144 | spdy@^3.4.1: 3145 | version "3.4.7" 3146 | resolved "https://registry.yarnpkg.com/spdy/-/spdy-3.4.7.tgz#42ff41ece5cc0f99a3a6c28aabb73f5c3b03acbc" 3147 | dependencies: 3148 | debug "^2.6.8" 3149 | handle-thing "^1.2.5" 3150 | http-deceiver "^1.2.7" 3151 | safe-buffer "^5.0.1" 3152 | select-hose "^2.0.0" 3153 | spdy-transport "^2.0.18" 3154 | 3155 | sprintf-js@~1.0.2: 3156 | version "1.0.3" 3157 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3158 | 3159 | sshpk@^1.7.0: 3160 | version "1.13.1" 3161 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 3162 | dependencies: 3163 | asn1 "~0.2.3" 3164 | assert-plus "^1.0.0" 3165 | dashdash "^1.12.0" 3166 | getpass "^0.1.1" 3167 | optionalDependencies: 3168 | bcrypt-pbkdf "^1.0.0" 3169 | ecc-jsbn "~0.1.1" 3170 | jsbn "~0.1.0" 3171 | tweetnacl "~0.14.0" 3172 | 3173 | "statuses@>= 1.3.1 < 2", statuses@~1.3.1: 3174 | version "1.3.1" 3175 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" 3176 | 3177 | stream-browserify@^2.0.1: 3178 | version "2.0.1" 3179 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" 3180 | dependencies: 3181 | inherits "~2.0.1" 3182 | readable-stream "^2.0.2" 3183 | 3184 | stream-http@^2.3.1: 3185 | version "2.7.2" 3186 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.7.2.tgz#40a050ec8dc3b53b33d9909415c02c0bf1abfbad" 3187 | dependencies: 3188 | builtin-status-codes "^3.0.0" 3189 | inherits "^2.0.1" 3190 | readable-stream "^2.2.6" 3191 | to-arraybuffer "^1.0.0" 3192 | xtend "^4.0.0" 3193 | 3194 | strict-uri-encode@^1.0.0: 3195 | version "1.1.0" 3196 | resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" 3197 | 3198 | string-width@^1.0.1, string-width@^1.0.2: 3199 | version "1.0.2" 3200 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3201 | dependencies: 3202 | code-point-at "^1.0.0" 3203 | is-fullwidth-code-point "^1.0.0" 3204 | strip-ansi "^3.0.0" 3205 | 3206 | string-width@^2.0.0: 3207 | version "2.1.1" 3208 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3209 | dependencies: 3210 | is-fullwidth-code-point "^2.0.0" 3211 | strip-ansi "^4.0.0" 3212 | 3213 | string.prototype.trim@~1.1.2: 3214 | version "1.1.2" 3215 | resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.1.2.tgz#d04de2c89e137f4d7d206f086b5ed2fae6be8cea" 3216 | dependencies: 3217 | define-properties "^1.1.2" 3218 | es-abstract "^1.5.0" 3219 | function-bind "^1.0.2" 3220 | 3221 | string_decoder@^0.10.25: 3222 | version "0.10.31" 3223 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 3224 | 3225 | string_decoder@~1.0.3: 3226 | version "1.0.3" 3227 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 3228 | dependencies: 3229 | safe-buffer "~5.1.0" 3230 | 3231 | stringstream@~0.0.4: 3232 | version "0.0.5" 3233 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3234 | 3235 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3236 | version "3.0.1" 3237 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3238 | dependencies: 3239 | ansi-regex "^2.0.0" 3240 | 3241 | strip-ansi@^4.0.0: 3242 | version "4.0.0" 3243 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3244 | dependencies: 3245 | ansi-regex "^3.0.0" 3246 | 3247 | strip-bom@^2.0.0: 3248 | version "2.0.0" 3249 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3250 | dependencies: 3251 | is-utf8 "^0.2.0" 3252 | 3253 | strip-bom@^3.0.0: 3254 | version "3.0.0" 3255 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3256 | 3257 | strip-eof@^1.0.0: 3258 | version "1.0.0" 3259 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3260 | 3261 | strip-json-comments@~2.0.1: 3262 | version "2.0.1" 3263 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3264 | 3265 | style-loader@^0.19.0: 3266 | version "0.19.0" 3267 | resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-0.19.0.tgz#7258e788f0fee6a42d710eaf7d6c2412a4c50759" 3268 | dependencies: 3269 | loader-utils "^1.0.2" 3270 | schema-utils "^0.3.0" 3271 | 3272 | supports-color@^2.0.0: 3273 | version "2.0.0" 3274 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3275 | 3276 | supports-color@^3.2.3: 3277 | version "3.2.3" 3278 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3279 | dependencies: 3280 | has-flag "^1.0.0" 3281 | 3282 | supports-color@^4.0.0, supports-color@^4.2.1, supports-color@^4.4.0: 3283 | version "4.4.0" 3284 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.4.0.tgz#883f7ddabc165142b2a61427f3352ded195d1a3e" 3285 | dependencies: 3286 | has-flag "^2.0.0" 3287 | 3288 | svgo@^0.7.0: 3289 | version "0.7.2" 3290 | resolved "https://registry.yarnpkg.com/svgo/-/svgo-0.7.2.tgz#9f5772413952135c6fefbf40afe6a4faa88b4bb5" 3291 | dependencies: 3292 | coa "~1.0.1" 3293 | colors "~1.1.2" 3294 | csso "~2.3.1" 3295 | js-yaml "~3.7.0" 3296 | mkdirp "~0.5.1" 3297 | sax "~1.2.1" 3298 | whet.extend "~0.9.9" 3299 | 3300 | tapable@^0.2.7: 3301 | version "0.2.8" 3302 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.8.tgz#99372a5c999bf2df160afc0d74bed4f47948cd22" 3303 | 3304 | tape@^4.6.3: 3305 | version "4.8.0" 3306 | resolved "https://registry.yarnpkg.com/tape/-/tape-4.8.0.tgz#f6a9fec41cc50a1de50fa33603ab580991f6068e" 3307 | dependencies: 3308 | deep-equal "~1.0.1" 3309 | defined "~1.0.0" 3310 | for-each "~0.3.2" 3311 | function-bind "~1.1.0" 3312 | glob "~7.1.2" 3313 | has "~1.0.1" 3314 | inherits "~2.0.3" 3315 | minimist "~1.2.0" 3316 | object-inspect "~1.3.0" 3317 | resolve "~1.4.0" 3318 | resumer "~0.0.0" 3319 | string.prototype.trim "~1.1.2" 3320 | through "~2.3.8" 3321 | 3322 | tar-pack@^3.4.0: 3323 | version "3.4.0" 3324 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 3325 | dependencies: 3326 | debug "^2.2.0" 3327 | fstream "^1.0.10" 3328 | fstream-ignore "^1.0.5" 3329 | once "^1.3.3" 3330 | readable-stream "^2.1.4" 3331 | rimraf "^2.5.1" 3332 | tar "^2.2.1" 3333 | uid-number "^0.0.6" 3334 | 3335 | tar@^2.2.1: 3336 | version "2.2.1" 3337 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3338 | dependencies: 3339 | block-stream "*" 3340 | fstream "^1.0.2" 3341 | inherits "2" 3342 | 3343 | through@~2.3.4, through@~2.3.8: 3344 | version "2.3.8" 3345 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3346 | 3347 | thunky@^0.1.0: 3348 | version "0.1.0" 3349 | resolved "https://registry.yarnpkg.com/thunky/-/thunky-0.1.0.tgz#bf30146824e2b6e67b0f2d7a4ac8beb26908684e" 3350 | 3351 | time-stamp@^2.0.0: 3352 | version "2.0.0" 3353 | resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-2.0.0.tgz#95c6a44530e15ba8d6f4a3ecb8c3a3fac46da357" 3354 | 3355 | timers-browserify@^2.0.2: 3356 | version "2.0.4" 3357 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.4.tgz#96ca53f4b794a5e7c0e1bd7cc88a372298fa01e6" 3358 | dependencies: 3359 | setimmediate "^1.0.4" 3360 | 3361 | to-arraybuffer@^1.0.0: 3362 | version "1.0.1" 3363 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 3364 | 3365 | tough-cookie@~2.3.0: 3366 | version "2.3.2" 3367 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3368 | dependencies: 3369 | punycode "^1.4.1" 3370 | 3371 | ts-loader@^2.3.7: 3372 | version "2.3.7" 3373 | resolved "https://registry.yarnpkg.com/ts-loader/-/ts-loader-2.3.7.tgz#a9028ced473bee12f28a75f9c5b139979d33f2fc" 3374 | dependencies: 3375 | chalk "^2.0.1" 3376 | enhanced-resolve "^3.0.0" 3377 | loader-utils "^1.0.2" 3378 | semver "^5.0.1" 3379 | 3380 | tty-browserify@0.0.0: 3381 | version "0.0.0" 3382 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 3383 | 3384 | tunnel-agent@^0.6.0: 3385 | version "0.6.0" 3386 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3387 | dependencies: 3388 | safe-buffer "^5.0.1" 3389 | 3390 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3391 | version "0.14.5" 3392 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3393 | 3394 | type-is@~1.6.15: 3395 | version "1.6.15" 3396 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.15.tgz#cab10fb4909e441c82842eafe1ad646c81804410" 3397 | dependencies: 3398 | media-typer "0.3.0" 3399 | mime-types "~2.1.15" 3400 | 3401 | typescript@^2.5.2: 3402 | version "2.5.2" 3403 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.5.2.tgz#038a95f7d9bbb420b1bf35ba31d4c5c1dd3ffe34" 3404 | 3405 | ua-parser-js@^0.7.9: 3406 | version "0.7.14" 3407 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.14.tgz#110d53fa4c3f326c121292bbeac904d2e03387ca" 3408 | 3409 | uglify-js@^2.8.29: 3410 | version "2.8.29" 3411 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 3412 | dependencies: 3413 | source-map "~0.5.1" 3414 | yargs "~3.10.0" 3415 | optionalDependencies: 3416 | uglify-to-browserify "~1.0.0" 3417 | 3418 | uglify-to-browserify@~1.0.0: 3419 | version "1.0.2" 3420 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3421 | 3422 | uglifyjs-webpack-plugin@^0.4.6: 3423 | version "0.4.6" 3424 | resolved "https://registry.yarnpkg.com/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.6.tgz#b951f4abb6bd617e66f63eb891498e391763e309" 3425 | dependencies: 3426 | source-map "^0.5.6" 3427 | uglify-js "^2.8.29" 3428 | webpack-sources "^1.0.1" 3429 | 3430 | uid-number@^0.0.6: 3431 | version "0.0.6" 3432 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3433 | 3434 | uniq@^1.0.1: 3435 | version "1.0.1" 3436 | resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" 3437 | 3438 | uniqid@^4.0.0: 3439 | version "4.1.1" 3440 | resolved "https://registry.yarnpkg.com/uniqid/-/uniqid-4.1.1.tgz#89220ddf6b751ae52b5f72484863528596bb84c1" 3441 | dependencies: 3442 | macaddress "^0.2.8" 3443 | 3444 | uniqs@^2.0.0: 3445 | version "2.0.0" 3446 | resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02" 3447 | 3448 | unpipe@~1.0.0: 3449 | version "1.0.0" 3450 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 3451 | 3452 | url-parse@1.0.x: 3453 | version "1.0.5" 3454 | resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.0.5.tgz#0854860422afdcfefeb6c965c662d4800169927b" 3455 | dependencies: 3456 | querystringify "0.0.x" 3457 | requires-port "1.0.x" 3458 | 3459 | url-parse@^1.1.8: 3460 | version "1.1.9" 3461 | resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.1.9.tgz#c67f1d775d51f0a18911dd7b3ffad27bb9e5bd19" 3462 | dependencies: 3463 | querystringify "~1.0.0" 3464 | requires-port "1.0.x" 3465 | 3466 | url@^0.11.0: 3467 | version "0.11.0" 3468 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 3469 | dependencies: 3470 | punycode "1.3.2" 3471 | querystring "0.2.0" 3472 | 3473 | util-deprecate@~1.0.1: 3474 | version "1.0.2" 3475 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3476 | 3477 | util@0.10.3, util@^0.10.3: 3478 | version "0.10.3" 3479 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 3480 | dependencies: 3481 | inherits "2.0.1" 3482 | 3483 | utils-merge@1.0.0: 3484 | version "1.0.0" 3485 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8" 3486 | 3487 | uuid@^2.0.2: 3488 | version "2.0.3" 3489 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" 3490 | 3491 | uuid@^3.0.0: 3492 | version "3.1.0" 3493 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 3494 | 3495 | validate-npm-package-license@^3.0.1: 3496 | version "3.0.1" 3497 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3498 | dependencies: 3499 | spdx-correct "~1.0.0" 3500 | spdx-expression-parse "~1.0.0" 3501 | 3502 | vary@~1.1.1: 3503 | version "1.1.1" 3504 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.1.tgz#67535ebb694c1d52257457984665323f587e8d37" 3505 | 3506 | vendors@^1.0.0: 3507 | version "1.0.1" 3508 | resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.1.tgz#37ad73c8ee417fb3d580e785312307d274847f22" 3509 | 3510 | verror@1.10.0: 3511 | version "1.10.0" 3512 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 3513 | dependencies: 3514 | assert-plus "^1.0.0" 3515 | core-util-is "1.0.2" 3516 | extsprintf "^1.2.0" 3517 | 3518 | vm-browserify@0.0.4: 3519 | version "0.0.4" 3520 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 3521 | dependencies: 3522 | indexof "0.0.1" 3523 | 3524 | watchpack@^1.4.0: 3525 | version "1.4.0" 3526 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.4.0.tgz#4a1472bcbb952bd0a9bb4036801f954dfb39faac" 3527 | dependencies: 3528 | async "^2.1.2" 3529 | chokidar "^1.7.0" 3530 | graceful-fs "^4.1.2" 3531 | 3532 | wbuf@^1.1.0, wbuf@^1.7.2: 3533 | version "1.7.2" 3534 | resolved "https://registry.yarnpkg.com/wbuf/-/wbuf-1.7.2.tgz#d697b99f1f59512df2751be42769c1580b5801fe" 3535 | dependencies: 3536 | minimalistic-assert "^1.0.0" 3537 | 3538 | webpack-dev-middleware@^1.11.0: 3539 | version "1.12.0" 3540 | resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-1.12.0.tgz#d34efefb2edda7e1d3b5dbe07289513219651709" 3541 | dependencies: 3542 | memory-fs "~0.4.1" 3543 | mime "^1.3.4" 3544 | path-is-absolute "^1.0.0" 3545 | range-parser "^1.0.3" 3546 | time-stamp "^2.0.0" 3547 | 3548 | webpack-dev-server@^2.8.2: 3549 | version "2.8.2" 3550 | resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-2.8.2.tgz#abd61f410778cc4c843d7cebbf41465b1ab7734c" 3551 | dependencies: 3552 | ansi-html "0.0.7" 3553 | array-includes "^3.0.3" 3554 | bonjour "^3.5.0" 3555 | chokidar "^1.6.0" 3556 | compression "^1.5.2" 3557 | connect-history-api-fallback "^1.3.0" 3558 | del "^3.0.0" 3559 | express "^4.13.3" 3560 | html-entities "^1.2.0" 3561 | http-proxy-middleware "~0.17.4" 3562 | internal-ip "^2.0.2" 3563 | ip "^1.1.5" 3564 | loglevel "^1.4.1" 3565 | opn "^5.1.0" 3566 | portfinder "^1.0.9" 3567 | selfsigned "^1.9.1" 3568 | serve-index "^1.7.2" 3569 | sockjs "0.3.18" 3570 | sockjs-client "1.1.4" 3571 | spdy "^3.4.1" 3572 | strip-ansi "^3.0.1" 3573 | supports-color "^4.2.1" 3574 | webpack-dev-middleware "^1.11.0" 3575 | yargs "^6.6.0" 3576 | 3577 | webpack-sources@^1.0.1: 3578 | version "1.0.1" 3579 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.0.1.tgz#c7356436a4d13123be2e2426a05d1dad9cbe65cf" 3580 | dependencies: 3581 | source-list-map "^2.0.0" 3582 | source-map "~0.5.3" 3583 | 3584 | webpack@^3.8.1: 3585 | version "3.9.1" 3586 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-3.9.1.tgz#9a60aa544ed5d4d454c069e3f521aa007e02643c" 3587 | dependencies: 3588 | acorn "^5.0.0" 3589 | acorn-dynamic-import "^2.0.0" 3590 | ajv "^5.1.5" 3591 | ajv-keywords "^2.0.0" 3592 | async "^2.1.2" 3593 | enhanced-resolve "^3.4.0" 3594 | escope "^3.6.0" 3595 | interpret "^1.0.0" 3596 | json-loader "^0.5.4" 3597 | json5 "^0.5.1" 3598 | loader-runner "^2.3.0" 3599 | loader-utils "^1.1.0" 3600 | memory-fs "~0.4.1" 3601 | mkdirp "~0.5.0" 3602 | node-libs-browser "^2.0.0" 3603 | source-map "^0.5.3" 3604 | supports-color "^4.2.1" 3605 | tapable "^0.2.7" 3606 | uglifyjs-webpack-plugin "^0.4.6" 3607 | watchpack "^1.4.0" 3608 | webpack-sources "^1.0.1" 3609 | yargs "^8.0.2" 3610 | 3611 | websocket-driver@>=0.5.1: 3612 | version "0.7.0" 3613 | resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.0.tgz#0caf9d2d755d93aee049d4bdd0d3fe2cca2a24eb" 3614 | dependencies: 3615 | http-parser-js ">=0.4.0" 3616 | websocket-extensions ">=0.1.1" 3617 | 3618 | websocket-extensions@>=0.1.1: 3619 | version "0.1.2" 3620 | resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.2.tgz#0e18781de629a18308ce1481650f67ffa2693a5d" 3621 | 3622 | whatwg-fetch@>=0.10.0: 3623 | version "2.0.3" 3624 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84" 3625 | 3626 | whet.extend@~0.9.9: 3627 | version "0.9.9" 3628 | resolved "https://registry.yarnpkg.com/whet.extend/-/whet.extend-0.9.9.tgz#f877d5bf648c97e5aa542fadc16d6a259b9c11a1" 3629 | 3630 | which-module@^1.0.0: 3631 | version "1.0.0" 3632 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 3633 | 3634 | which-module@^2.0.0: 3635 | version "2.0.0" 3636 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 3637 | 3638 | which@^1.2.9: 3639 | version "1.3.0" 3640 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 3641 | dependencies: 3642 | isexe "^2.0.0" 3643 | 3644 | wide-align@^1.1.0: 3645 | version "1.1.2" 3646 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3647 | dependencies: 3648 | string-width "^1.0.2" 3649 | 3650 | window-size@0.1.0: 3651 | version "0.1.0" 3652 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3653 | 3654 | wordwrap@0.0.2: 3655 | version "0.0.2" 3656 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3657 | 3658 | wrap-ansi@^2.0.0: 3659 | version "2.1.0" 3660 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3661 | dependencies: 3662 | string-width "^1.0.1" 3663 | strip-ansi "^3.0.1" 3664 | 3665 | wrappy@1: 3666 | version "1.0.2" 3667 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3668 | 3669 | xtend@^4.0.0: 3670 | version "4.0.1" 3671 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3672 | 3673 | y18n@^3.2.1: 3674 | version "3.2.1" 3675 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3676 | 3677 | yallist@^2.1.2: 3678 | version "2.1.2" 3679 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3680 | 3681 | yargs-parser@^4.2.0: 3682 | version "4.2.1" 3683 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" 3684 | dependencies: 3685 | camelcase "^3.0.0" 3686 | 3687 | yargs-parser@^7.0.0: 3688 | version "7.0.0" 3689 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" 3690 | dependencies: 3691 | camelcase "^4.1.0" 3692 | 3693 | yargs@^6.6.0: 3694 | version "6.6.0" 3695 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" 3696 | dependencies: 3697 | camelcase "^3.0.0" 3698 | cliui "^3.2.0" 3699 | decamelize "^1.1.1" 3700 | get-caller-file "^1.0.1" 3701 | os-locale "^1.4.0" 3702 | read-pkg-up "^1.0.1" 3703 | require-directory "^2.1.1" 3704 | require-main-filename "^1.0.1" 3705 | set-blocking "^2.0.0" 3706 | string-width "^1.0.2" 3707 | which-module "^1.0.0" 3708 | y18n "^3.2.1" 3709 | yargs-parser "^4.2.0" 3710 | 3711 | yargs@^8.0.2: 3712 | version "8.0.2" 3713 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360" 3714 | dependencies: 3715 | camelcase "^4.1.0" 3716 | cliui "^3.2.0" 3717 | decamelize "^1.1.1" 3718 | get-caller-file "^1.0.1" 3719 | os-locale "^2.0.0" 3720 | read-pkg-up "^2.0.0" 3721 | require-directory "^2.1.1" 3722 | require-main-filename "^1.0.1" 3723 | set-blocking "^2.0.0" 3724 | string-width "^2.0.0" 3725 | which-module "^2.0.0" 3726 | y18n "^3.2.1" 3727 | yargs-parser "^7.0.0" 3728 | 3729 | yargs@~3.10.0: 3730 | version "3.10.0" 3731 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3732 | dependencies: 3733 | camelcase "^1.0.2" 3734 | cliui "^2.1.0" 3735 | decamelize "^1.0.0" 3736 | window-size "0.1.0" 3737 | --------------------------------------------------------------------------------