├── .babelrc ├── .eslintrc.js ├── .flowconfig ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── examples ├── README.md ├── React-basic │ ├── .gitignore │ ├── README.md │ ├── nwb.config.js │ ├── package.json │ └── src │ │ ├── App.css │ │ ├── App.js │ │ ├── index.html │ │ └── index.js ├── React-dynamic-import │ ├── .gitignore │ ├── README.md │ ├── nwb.config.js │ ├── package.json │ └── src │ │ ├── App.css │ │ ├── App.js │ │ ├── Components │ │ ├── Container.js │ │ └── Post.js │ │ ├── index.html │ │ └── index.js ├── React-p-event │ ├── .gitignore │ ├── README.md │ ├── nwb.config.js │ ├── package.json │ └── src │ │ ├── App.css │ │ ├── App.js │ │ ├── index.html │ │ └── index.js └── React-router │ ├── .gitignore │ ├── README.md │ ├── nwb.config.js │ ├── package.json │ └── src │ ├── Components │ ├── Error.js │ ├── Home.js │ ├── Loader.js │ ├── Navigation.js │ ├── RouteA.js │ └── RouteError.js │ ├── index.css │ ├── index.html │ └── index.js ├── package.json ├── src ├── element.js └── index.js ├── test └── index.test.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets":[ 3 | "es2015", 4 | "react" 5 | ], 6 | "plugins": [ 7 | ["transform-es2015-modules-commonjs",{"loose": true}], 8 | "transform-async-to-generator", 9 | "babel-plugin-transform-object-rest-spread" 10 | ], 11 | "env": { 12 | "production": { 13 | "presets": [["babili", { 14 | "mangle": false 15 | }]] 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | parser: 'babel-eslint', 3 | extends: [ 4 | 'eslint:recommended', 5 | 'plugin:react/recommended', 6 | 'plugin:flowtype/recommended' 7 | ], 8 | plugins: [ 9 | 'react', 10 | 'flowtype', 11 | 'flowtype-errors' 12 | ], 13 | rules: { 14 | 'react/prop-types': 1, 15 | 'flowtype-errors/show-errors': 2, 16 | 'array-bracket-spacing': ['error', 'never'], 17 | 'object-curly-spacing': ['error', 'never'], 18 | 'arrow-parens': ['error', 'always'], 19 | 'arrow-spacing': ['error', {before: true, after: true}], 20 | camelcase: 'off', 21 | 'comma-dangle': 'off', 22 | 'consistent-return': 'off', 23 | curly: 'off', 24 | indent: ['error', 2], 25 | 'linebreak-style': ['error', 'unix'], 26 | 'key-spacing': 'off', 27 | 'keyword-spacing': 'error', 28 | 'max-len': ['error', 110, 2], 29 | 'no-case-declarations': 'off', 30 | 'no-cond-assign': 'off', 31 | 'no-console': 'off', 32 | 'no-constant-condition': 'off', 33 | 'no-empty': 'off', 34 | 'no-fallthrough': 'off', 35 | 'no-inner-declarations': 'off', 36 | 'no-multi-spaces': 'off', 37 | 'no-labels': 'off', 38 | 'no-loop-func': 'off', 39 | 'no-process-exit': 'off', 40 | 'no-return-assign': 'off', 41 | 'no-shadow': 'off', 42 | 'no-trailing-spaces': 'error', 43 | 'no-underscore-dangle': 'off', 44 | 'no-unreachable': 'off', 45 | 'no-use-before-define': 'off', 46 | 'no-var': 'error', 47 | 'prefer-const': 'error', 48 | quotes: ['error', 'single', {allowTemplateLiterals: true}], 49 | 'space-before-blocks': ['error', 'always'], 50 | 'space-infix-ops': 'error', 51 | semi: ['error', 'always'], 52 | strict: 'off' 53 | }, 54 | parserOptions: { 55 | ecmaVersion: 8, 56 | jsx: true 57 | }, 58 | env: { 59 | mocha: true, 60 | node: true, 61 | es6: true, 62 | } 63 | }; 64 | 65 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | 3 | [include] 4 | 5 | [libs] 6 | 7 | [options] 8 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Created by https://www.gitignore.io/api/node 3 | 4 | ### Node ### 5 | # Logs 6 | logs 7 | *.log 8 | npm-debug.log* 9 | yarn-debug.log* 10 | yarn-error.log* 11 | 12 | # Runtime data 13 | pids 14 | *.pid 15 | *.seed 16 | *.pid.lock 17 | 18 | # Directory for instrumented libs generated by jscoverage/JSCover 19 | lib-cov 20 | 21 | # Coverage directory used by tools like istanbul 22 | coverage 23 | 24 | # nyc test coverage 25 | .nyc_output 26 | 27 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 28 | .grunt 29 | 30 | # Bower dependency directory (https://bower.io/) 31 | bower_components 32 | 33 | # node-waf configuration 34 | .lock-wscript 35 | 36 | # Compiled binary addons (http://nodejs.org/api/addons.html) 37 | build/Release 38 | 39 | # Dependency directories 40 | node_modules/ 41 | jspm_packages/ 42 | 43 | # Typescript v1 declaration files 44 | typings/ 45 | 46 | # Optional npm cache directory 47 | .npm 48 | 49 | # Optional eslint cache 50 | .eslintcache 51 | 52 | # Optional REPL history 53 | .node_repl_history 54 | 55 | # Output of 'npm pack' 56 | *.tgz 57 | 58 | # Yarn Integrity file 59 | .yarn-integrity 60 | 61 | # dotenv environment variables file 62 | .env 63 | 64 | 65 | # End of https://www.gitignore.io/api/node 66 | 67 | lib 68 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | test 3 | node_modules 4 | .babelrc 5 | .travis.yml 6 | .eslintrc 7 | examples 8 | .eslintrc.js 9 | .flowconfig 10 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - node 4 | script: 5 | - npm run lint 6 | - npm run test 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Sven SAULEAU 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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # async-reactor 2 | 3 | > Render async Stateless Functional Components 4 | 5 | ## Installation 6 | 7 | ```shell 8 | npm install --save async-reactor 9 | ``` 10 | 11 | ## Usage 12 | 13 | ```js 14 | asyncReactor(component: Function, loader?: Component, error?: Component): Component 15 | ``` 16 | 17 | | name | type | description | 18 | |--------------------|------------------|-------------------------------------------------| 19 | | component | Function (async) | The `async` component you want to render | 20 | | loader (optionnal) | Component | Will be shown until the first component renders | 21 | | error (optionnal) | Component | Will be shown when an error occurred | 22 | 23 | The returned value is a regular `Component`. 24 | 25 | ### Examples 26 | 27 | This examples are exporting a regular React component. 28 | You can integrate it into an existing application or render it on the page. 29 | 30 | See more examples [here](https://github.com/xtuc/async-reactor/tree/master/examples) 31 | 32 | #### Using code splitting 33 | 34 | ```js 35 | import React from 'react' 36 | import {asyncReactor} from 'async-reactor'; 37 | 38 | function Loader() { 39 | return ( 40 | Loading ... 41 | ); 42 | } 43 | 44 | async function Time() { 45 | const moment = await import('moment'); 46 | const time = moment(); 47 | 48 | return ( 49 |
50 | {time.format('MM-DD-YYYY')} 51 |
52 | ); 53 | } 54 | 55 | export default asyncReactor(Time, Loader); 56 | ``` 57 | 58 | #### Using fetch 59 | 60 | ```js 61 | import React from 'react'; 62 | import {asyncReactor} from 'async-reactor'; 63 | 64 | function Loader() { 65 | 66 | return ( 67 |

Loading ...

68 | ); 69 | } 70 | 71 | async function AsyncPosts() { 72 | const data = await fetch('https://jsonplaceholder.typicode.com/posts'); 73 | const posts = await data.json(); 74 | 75 | return ( 76 | 79 | ); 80 | } 81 | 82 | export default asyncReactor(AsyncPosts, Loader); 83 | ``` 84 | -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- 1 | ## React 2 | 3 | - [Basic example](https://github.com/xtuc/async-reactor/tree/master/examples/React-basic) 4 | - [Dynamic import example](https://github.com/xtuc/async-reactor/tree/master/examples/React-dynamic-import) 5 | - [Wait for a DOM event (p-event) example](https://github.com/xtuc/async-reactor/tree/master/examples/React-p-event) 6 | - [React router example](https://github.com/xtuc/async-reactor/tree/master/examples/React-router) 7 | -------------------------------------------------------------------------------- /examples/React-basic/.gitignore: -------------------------------------------------------------------------------- 1 | /coverage 2 | /dist 3 | /node_modules 4 | npm-debug.log* 5 | -------------------------------------------------------------------------------- /examples/React-basic/README.md: -------------------------------------------------------------------------------- 1 | # React 2 | 3 | ## Prerequisites 4 | 5 | [Node.js](http://nodejs.org/) >= v4 must be installed. 6 | 7 | ## Installation 8 | 9 | - Running `npm install` in the app's root directory will install everything you need for development. 10 | 11 | ## Development Server 12 | 13 | - `npm start` will run the app's development server at [http://localhost:3000](http://localhost:3000) with hot module reloading. 14 | 15 | ## Running Tests 16 | 17 | - `npm test` will run the tests once. 18 | 19 | - `npm run test:coverage` will run the tests and produce a coverage report in `coverage/`. 20 | 21 | - `npm run test:watch` will run the tests on every change. 22 | 23 | ## Building 24 | 25 | - `npm run build` creates a production build by default. 26 | 27 | To create a development build, set the `NODE_ENV` environment variable to `development` while running this command. 28 | 29 | - `npm run clean` will delete built resources. 30 | -------------------------------------------------------------------------------- /examples/React-basic/nwb.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | type: 'react-app' 3 | } 4 | -------------------------------------------------------------------------------- /examples/React-basic/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "React", 3 | "version": "1.0.0", 4 | "description": "Async-reactor in React example", 5 | "private": true, 6 | "scripts": { 7 | "build": "nwb build-react-app", 8 | "clean": "nwb clean-app", 9 | "start": "nwb serve-react-app", 10 | "test": "nwb test-react", 11 | "test:coverage": "nwb test-react --coverage", 12 | "test:watch": "nwb test-react --server" 13 | }, 14 | "dependencies": { 15 | "async-reactor": "^1.2.0", 16 | "react": "^15.5.4", 17 | "react-dom": "^15.5.4" 18 | }, 19 | "devDependencies": { 20 | "nwb": "0.15.x" 21 | }, 22 | "author": "Sven SAULEAU", 23 | "license": "MIT", 24 | "repository": { 25 | "type": "git", 26 | "url": "https://github.com/xtuc/async-reactor-examples.git" 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /examples/React-basic/src/App.css: -------------------------------------------------------------------------------- 1 | .container { 2 | width: 500px; 3 | background-color: white; 4 | margin: 20px auto; 5 | } 6 | 7 | .box { 8 | box-shadow: 0 4px 5px 0 rgba(0,0,0,.14), 0 1px 10px 0 rgba(0,0,0,.12), 0 2px 4px -1px rgba(0,0,0,.2); 9 | border-radius: 2px; 10 | padding: 80px 56px; 11 | padding-bottom: 30px; 12 | margin: 30px; 13 | } 14 | 15 | h2 { 16 | font-weight: 500; 17 | color: rgb(255,64,129); 18 | } 19 | 20 | .error { 21 | background-color: #F44336; 22 | color: white; 23 | } 24 | -------------------------------------------------------------------------------- /examples/React-basic/src/App.js: -------------------------------------------------------------------------------- 1 | import './App.css'; 2 | 3 | import React from 'react'; 4 | import {asyncReactor} from 'async-reactor'; 5 | 6 | function Error({postsUrl}) { 7 | 8 | return ( 9 |
10 |

Error: cannot load {postsUrl}

11 |
12 | ); 13 | } 14 | 15 | function Loader() { 16 | 17 | return ( 18 |
19 |
20 |

Loading ...

21 |
22 |
23 | ); 24 | } 25 | 26 | async function AsyncPosts({postsUrl}) { 27 | const data = await fetch(postsUrl); 28 | const posts = await data.json(); 29 | 30 | return ( 31 |
32 | {posts.map((post) => ( 33 | 34 |
35 |

{post.title}

36 | 37 |

{post.body}

38 |
39 | 40 | ))} 41 |
42 | ); 43 | } 44 | 45 | export default asyncReactor(AsyncPosts, Loader, Error); 46 | -------------------------------------------------------------------------------- /examples/React-basic/src/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | React 8 | 9 | 10 | 11 |
12 | 13 | 14 | -------------------------------------------------------------------------------- /examples/React-basic/src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import {render} from 'react-dom' 3 | 4 | import App from './App' 5 | 6 | render( 7 | , 8 | document.querySelector('#app') 9 | ) 10 | -------------------------------------------------------------------------------- /examples/React-dynamic-import/.gitignore: -------------------------------------------------------------------------------- 1 | /coverage 2 | /dist 3 | /node_modules 4 | npm-debug.log* 5 | -------------------------------------------------------------------------------- /examples/React-dynamic-import/README.md: -------------------------------------------------------------------------------- 1 | # React 2 | 3 | ## Prerequisites 4 | 5 | [Node.js](http://nodejs.org/) >= v4 must be installed. 6 | 7 | ## Installation 8 | 9 | - Running `npm install` in the app's root directory will install everything you need for development. 10 | 11 | ## Development Server 12 | 13 | - `npm start` will run the app's development server at [http://localhost:3000](http://localhost:3000) with hot module reloading. 14 | 15 | ## Running Tests 16 | 17 | - `npm test` will run the tests once. 18 | 19 | - `npm run test:coverage` will run the tests and produce a coverage report in `coverage/`. 20 | 21 | - `npm run test:watch` will run the tests on every change. 22 | 23 | ## Building 24 | 25 | - `npm run build` creates a production build by default. 26 | 27 | To create a development build, set the `NODE_ENV` environment variable to `development` while running this command. 28 | 29 | - `npm run clean` will delete built resources. 30 | -------------------------------------------------------------------------------- /examples/React-dynamic-import/nwb.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | type: 'react-app' 3 | } 4 | -------------------------------------------------------------------------------- /examples/React-dynamic-import/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "React", 3 | "version": "1.0.0", 4 | "description": "Async-reactor in React example", 5 | "private": true, 6 | "scripts": { 7 | "build": "nwb build-react-app", 8 | "clean": "nwb clean-app", 9 | "start": "nwb serve-react-app", 10 | "test": "nwb test-react", 11 | "test:coverage": "nwb test-react --coverage", 12 | "test:watch": "nwb test-react --server" 13 | }, 14 | "dependencies": { 15 | "async-reactor": "^1.2.0", 16 | "react": "^15.5.4", 17 | "react-dom": "^15.5.4" 18 | }, 19 | "devDependencies": { 20 | "nwb": "0.15.x" 21 | }, 22 | "author": "Sven SAULEAU", 23 | "license": "MIT", 24 | "repository": { 25 | "type": "git", 26 | "url": "https://github.com/xtuc/async-reactor-examples.git" 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /examples/React-dynamic-import/src/App.css: -------------------------------------------------------------------------------- 1 | .container { 2 | width: 500px; 3 | background-color: white; 4 | margin: 20px auto; 5 | } 6 | 7 | .box { 8 | box-shadow: 0 4px 5px 0 rgba(0,0,0,.14), 0 1px 10px 0 rgba(0,0,0,.12), 0 2px 4px -1px rgba(0,0,0,.2); 9 | border-radius: 2px; 10 | padding: 80px 56px; 11 | padding-bottom: 30px; 12 | margin: 30px; 13 | } 14 | 15 | h2 { 16 | font-weight: 500; 17 | color: rgb(255,64,129); 18 | } 19 | -------------------------------------------------------------------------------- /examples/React-dynamic-import/src/App.js: -------------------------------------------------------------------------------- 1 | import './App.css'; 2 | 3 | import React from 'react' 4 | import {asyncReactor} from 'async-reactor'; 5 | 6 | function Error(props) { 7 | 8 | return ( 9 |
10 |
11 |

An error occurred

12 |
13 |
14 | ); 15 | } 16 | 17 | function Loader() { 18 | 19 | return ( 20 |
21 |
22 |

Loading ...

23 |
24 |
25 | ); 26 | } 27 | 28 | const Post = asyncReactor(import('./Components/Post'), Loader, Error); 29 | 30 | async function AsyncPosts() { 31 | const Container = (await import('./Components/Container')).default; 32 | 33 | const data = await fetch('https://jsonplaceholder.typicode.com/posts'); 34 | const posts = await data.json(); 35 | 36 | return ( 37 | 38 | {posts.map((post) => ( 39 | 40 | ))} 41 | 42 | ); 43 | } 44 | 45 | export default asyncReactor(AsyncPosts, Loader, Error); 46 | -------------------------------------------------------------------------------- /examples/React-dynamic-import/src/Components/Container.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | export default function Container({children}) { 4 | 5 | return ( 6 |
7 | {children} 8 |
9 | ); 10 | } 11 | -------------------------------------------------------------------------------- /examples/React-dynamic-import/src/Components/Post.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | 3 | export default function Post({title, body}) { 4 | return ( 5 |
6 |

{title}

7 | 8 |

{body}

9 |
10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /examples/React-dynamic-import/src/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | React 8 | 9 | 10 | 11 |
12 | 13 | 14 | -------------------------------------------------------------------------------- /examples/React-dynamic-import/src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import {render} from 'react-dom'; 3 | import {asyncReactor} from 'async-reactor'; 4 | 5 | function Loader() { 6 | 7 | return ( 8 |
9 |
10 |

Loading ...

11 |
12 |
13 | ); 14 | } 15 | 16 | const App = asyncReactor(import('./App'), Loader); 17 | 18 | render(, document.querySelector('#app')); 19 | -------------------------------------------------------------------------------- /examples/React-p-event/.gitignore: -------------------------------------------------------------------------------- 1 | /coverage 2 | /dist 3 | /node_modules 4 | npm-debug.log* 5 | -------------------------------------------------------------------------------- /examples/React-p-event/README.md: -------------------------------------------------------------------------------- 1 | # React 2 | 3 | ## Prerequisites 4 | 5 | [Node.js](http://nodejs.org/) >= v4 must be installed. 6 | 7 | ## Installation 8 | 9 | - Running `npm install` in the app's root directory will install everything you need for development. 10 | 11 | ## Development Server 12 | 13 | - `npm start` will run the app's development server at [http://localhost:3000](http://localhost:3000) with hot module reloading. 14 | 15 | ## Running Tests 16 | 17 | - `npm test` will run the tests once. 18 | 19 | - `npm run test:coverage` will run the tests and produce a coverage report in `coverage/`. 20 | 21 | - `npm run test:watch` will run the tests on every change. 22 | 23 | ## Building 24 | 25 | - `npm run build` creates a production build by default. 26 | 27 | To create a development build, set the `NODE_ENV` environment variable to `development` while running this command. 28 | 29 | - `npm run clean` will delete built resources. 30 | -------------------------------------------------------------------------------- /examples/React-p-event/nwb.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | type: 'react-app' 3 | } 4 | -------------------------------------------------------------------------------- /examples/React-p-event/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "React", 3 | "version": "1.0.0", 4 | "description": "Async-reactor in React example", 5 | "private": true, 6 | "scripts": { 7 | "build": "nwb build-react-app", 8 | "clean": "nwb clean-app", 9 | "start": "nwb serve-react-app", 10 | "test": "nwb test-react", 11 | "test:coverage": "nwb test-react --coverage", 12 | "test:watch": "nwb test-react --server" 13 | }, 14 | "dependencies": { 15 | "async-reactor": "^1.2.0", 16 | "p-event": "^1.0.0", 17 | "react": "^15.5.4", 18 | "react-dom": "^15.5.4" 19 | }, 20 | "devDependencies": { 21 | "nwb": "0.15.x" 22 | }, 23 | "author": "Sven SAULEAU", 24 | "license": "MIT", 25 | "repository": { 26 | "type": "git", 27 | "url": "https://github.com/xtuc/async-reactor.git" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /examples/React-p-event/src/App.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: #3FBAC2; 3 | } 4 | 5 | .container { 6 | width: 500px; 7 | margin: 20px auto; 8 | } 9 | 10 | .box { 11 | box-shadow: 0 4px 5px 0 rgba(0,0,0,.14), 0 1px 10px 0 rgba(0,0,0,.12), 0 2px 4px -1px rgba(0,0,0,.2); 12 | border-radius: 2px; 13 | padding: 80px 56px; 14 | padding-bottom: 30px; 15 | margin: 30px; 16 | background-color: #4D606E; 17 | text-align: center; 18 | } 19 | 20 | h1 { 21 | font-weight: 500; 22 | color: white; 23 | } 24 | -------------------------------------------------------------------------------- /examples/React-p-event/src/App.js: -------------------------------------------------------------------------------- 1 | import './App.css'; 2 | 3 | import React from 'react' 4 | import {asyncReactor} from 'async-reactor'; 5 | import pEvent from 'p-event'; 6 | 7 | function Loader() { 8 | 9 | return ( 10 |
11 |
12 |

Waiting for a key

13 |
14 |
15 | ); 16 | } 17 | 18 | async function Component() { 19 | const {key} = await pEvent(document, 'keypress'); 20 | 21 | return ( 22 |
23 |
24 |

Cool!

25 | 26 |

You entered: {key}

27 |
28 |
29 | ); 30 | } 31 | 32 | export default asyncReactor(Component, Loader); 33 | -------------------------------------------------------------------------------- /examples/React-p-event/src/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | React 8 | 9 | 10 | 11 |
12 | 13 | 14 | -------------------------------------------------------------------------------- /examples/React-p-event/src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import {render} from 'react-dom' 3 | 4 | import App from './App' 5 | 6 | render(, document.querySelector('#app')) 7 | -------------------------------------------------------------------------------- /examples/React-router/.gitignore: -------------------------------------------------------------------------------- 1 | /coverage 2 | /dist 3 | /node_modules 4 | npm-debug.log* 5 | -------------------------------------------------------------------------------- /examples/React-router/README.md: -------------------------------------------------------------------------------- 1 | # React 2 | 3 | ## Prerequisites 4 | 5 | [Node.js](http://nodejs.org/) >= v4 must be installed. 6 | 7 | ## Installation 8 | 9 | - Running `npm install` in the app's root directory will install everything you need for development. 10 | 11 | ## Development Server 12 | 13 | - `npm start` will run the app's development server at [http://localhost:3000](http://localhost:3000) with hot module reloading. 14 | 15 | ## Running Tests 16 | 17 | - `npm test` will run the tests once. 18 | 19 | - `npm run test:coverage` will run the tests and produce a coverage report in `coverage/`. 20 | 21 | - `npm run test:watch` will run the tests on every change. 22 | 23 | ## Building 24 | 25 | - `npm run build` creates a production build by default. 26 | 27 | To create a development build, set the `NODE_ENV` environment variable to `development` while running this command. 28 | 29 | - `npm run clean` will delete built resources. 30 | -------------------------------------------------------------------------------- /examples/React-router/nwb.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | type: 'react-app' 3 | } 4 | -------------------------------------------------------------------------------- /examples/React-router/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "React", 3 | "version": "1.0.0", 4 | "description": "Async-reactor in React example", 5 | "private": true, 6 | "scripts": { 7 | "build": "nwb build-react-app", 8 | "clean": "nwb clean-app", 9 | "start": "nwb serve-react-app", 10 | "test": "nwb test-react", 11 | "test:coverage": "nwb test-react --coverage", 12 | "test:watch": "nwb test-react --server" 13 | }, 14 | "dependencies": { 15 | "async-reactor": "^1.2.0", 16 | "react": "^15.5.4", 17 | "react-dom": "^15.5.4" 18 | }, 19 | "devDependencies": { 20 | "nwb": "0.15.x" 21 | }, 22 | "author": "Sven SAULEAU", 23 | "license": "MIT", 24 | "repository": { 25 | "type": "git", 26 | "url": "https://github.com/xtuc/async-reactor-examples.git" 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /examples/React-router/src/Components/Error.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | export function Error() { 4 | 5 | return ( 6 |
7 |
8 |

An error occurred

9 |
10 |
11 | ); 12 | } 13 | -------------------------------------------------------------------------------- /examples/React-router/src/Components/Home.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import {asyncReactor} from 'async-reactor'; 3 | import {Loader} from './Loader'; 4 | import {Error} from './Error'; 5 | import Navigation from './Navigation'; 6 | 7 | const sleep = ms => new Promise(r => setTimeout(r, ms)); 8 | 9 | async function Home() { 10 | await sleep(1000); 11 | 12 | const style = {backgroundColor: '#2196F3'}; 13 | 14 | return ( 15 |
16 |
17 |

Home

18 | 19 | 20 |
21 |
22 | ); 23 | } 24 | 25 | export default asyncReactor(Home, Loader, Error); 26 | -------------------------------------------------------------------------------- /examples/React-router/src/Components/Loader.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | export function Loader() { 4 | 5 | return ( 6 |
7 |
8 |

Loading ...

9 |
10 |
11 | ); 12 | } 13 | -------------------------------------------------------------------------------- /examples/React-router/src/Components/Navigation.js: -------------------------------------------------------------------------------- 1 | import {Link} from 'react-router-dom'; 2 | import React from 'react'; 3 | 4 | export default function Navigation() { 5 | return ( 6 |
    7 |
  • 8 | RouteA 9 |
  • 10 |
  • 11 | Home 12 |
  • 13 |
  • 14 | Error 15 |
  • 16 |
17 | ); 18 | } 19 | -------------------------------------------------------------------------------- /examples/React-router/src/Components/RouteA.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import {asyncReactor} from 'async-reactor'; 3 | import {Loader} from './Loader'; 4 | import {Error} from './Error'; 5 | import Navigation from './Navigation'; 6 | 7 | const sleep = ms => new Promise(r => setTimeout(r, ms)); 8 | 9 | async function RouteA() { 10 | await sleep(1000); 11 | 12 | const style = {backgroundColor: '#4CAF50'}; 13 | 14 | return ( 15 |
16 |
17 |

Route A

18 | 19 | 20 |
21 |
22 | ); 23 | } 24 | 25 | export default asyncReactor(RouteA, Loader, Error); 26 | -------------------------------------------------------------------------------- /examples/React-router/src/Components/RouteError.js: -------------------------------------------------------------------------------- 1 | import {asyncReactor} from 'async-reactor'; 2 | import {Loader} from './Loader'; 3 | import {Error} from './Error'; 4 | 5 | const sleep = ms => new Promise(r => setTimeout(r, ms)); 6 | 7 | async function ErrorComponent() { 8 | await sleep(1000); 9 | 10 | throw new Error('foo'); 11 | } 12 | 13 | export default asyncReactor(ErrorComponent, Loader, Error); 14 | -------------------------------------------------------------------------------- /examples/React-router/src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: #E0E0E0; 3 | } 4 | 5 | .container { 6 | width: 500px; 7 | background-color: white; 8 | margin: 20px auto; 9 | } 10 | 11 | .box { 12 | border-radius: 2px; 13 | padding: 80px 56px; 14 | padding-bottom: 30px; 15 | } 16 | 17 | h2 { 18 | font-weight: 500; 19 | color: rgb(255,64,129); 20 | } 21 | -------------------------------------------------------------------------------- /examples/React-router/src/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | React 8 | 9 | 10 | 11 |
12 | 13 | 14 | -------------------------------------------------------------------------------- /examples/React-router/src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import {render} from 'react-dom'; 3 | import {BrowserRouter as Router, Route} from 'react-router-dom'; 4 | 5 | import Home from './Components/Home'; 6 | import RouteA from './Components/RouteA'; 7 | import RouteError from './Components/RouteError'; 8 | 9 | import './index.css'; 10 | 11 | render( 12 | 13 |
14 | 15 | 16 | 17 | 18 |
19 |
, 20 | document.querySelector('#app') 21 | ); 22 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "async-reactor", 3 | "version": "1.2.2", 4 | "keywords": [ 5 | "react", 6 | "stateless", 7 | "functionnal", 8 | "components", 9 | "async", 10 | "await", 11 | "code-splitting", 12 | "render" 13 | ], 14 | "description": "Render async Stateless Functional Components", 15 | "main": "lib/index.js", 16 | "license": "MIT", 17 | "scripts": { 18 | "lint": "eslint src test", 19 | "test": "npm run build && mocha --compilers js:babel-register --require jsdom-global/register", 20 | "build": "BABEL_ENV=production babel --out-dir lib src/", 21 | "watch": "babel --out-dir lib src/ --watch", 22 | "prepublish": "npm run build" 23 | }, 24 | "repository": { 25 | "type": "git", 26 | "url": "https://github.com/xtuc/async-reactor.git" 27 | }, 28 | "devDependencies": { 29 | "babel": "^6.23.0", 30 | "babel-cli": "^6.24.1", 31 | "babel-core": "^6.24.1", 32 | "babel-eslint": "^7.2.1", 33 | "babel-loader": "^6.4.1", 34 | "babel-plugin-transform-async-to-generator": "^6.24.1", 35 | "babel-plugin-transform-es2015-modules-commonjs": "^6.24.1", 36 | "babel-plugin-transform-object-rest-spread": "^6.23.0", 37 | "babel-polyfill": "^6.23.0", 38 | "babel-preset-babili": "0.0.12", 39 | "babel-preset-es2015": "^6.24.1", 40 | "babel-preset-react": "^6.24.1", 41 | "babel-register": "^6.24.1", 42 | "babel-runtime": "^6.23.0", 43 | "chai": "^3.5.0", 44 | "chai-enzyme": "^0.6.1", 45 | "enzyme": "^2.8.0", 46 | "eslint": "^3.13.1", 47 | "eslint-plugin-flowtype": "^2.30.4", 48 | "eslint-plugin-flowtype-errors": "^3.0.3", 49 | "eslint-plugin-react": "^6.10.3", 50 | "flow-bin": "^0.43.1", 51 | "jsdom": "^9.12.0", 52 | "jsdom-global": "^2.1.1", 53 | "mocha": "^3.2.0", 54 | "react-addons-test-utils": "^15.5.1", 55 | "react-dom": "^15.5.3", 56 | "react-test-renderer": "^15.5.4", 57 | "sinon": "^2.2.0", 58 | "webpack": "^2.3.3", 59 | "webpack-dev-server": "^2.4.2" 60 | }, 61 | "author": "Sven SAULEAU", 62 | "dependencies": { 63 | "react": "^15.5.3" 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /src/element.js: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | 3 | import {Component, createElement} from 'react'; 4 | 5 | export function createReactorElement( 6 | Reactor: any /* Component */, 7 | component: Function, 8 | loaderComponent?: Component | string, 9 | errorComponent?: Component | string, 10 | ) { 11 | 12 | return function renderReactorElement(passthroughProps: Object = {}) { 13 | const props = { 14 | wait: component, 15 | error: errorComponent, 16 | loader: loaderComponent, 17 | passthroughProps: passthroughProps, 18 | }; 19 | 20 | return createElement(Reactor, props); 21 | }; 22 | } 23 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | 3 | import {Component, createElement, isValidElement} from 'react'; 4 | import {createReactorElement} from './element'; 5 | 6 | function interopRequireModule(obj) { 7 | return obj && obj.__esModule ? obj.default : obj; 8 | } 9 | 10 | function isFunction(p) { 11 | return typeof p === 'function'; 12 | } 13 | 14 | function isPromise(p = {}) { 15 | return p && isFunction(p.then); 16 | } 17 | 18 | type ReactorState = { 19 | data?: any 20 | } 21 | 22 | class Reactor extends Component { 23 | _isMounted: boolean; 24 | _passthroughProps: Object; 25 | state: ReactorState; 26 | 27 | constructor(props: any) { 28 | super(props); 29 | 30 | this.state = {}; 31 | this._passthroughProps = props.passthroughProps; 32 | } 33 | 34 | _handleError(error: Error) { 35 | const errorComponent = this.props.error; 36 | 37 | if (errorComponent && this._isMounted) { 38 | this._passthroughProps = {...this._passthroughProps, error}; 39 | this._setResult(errorComponent); 40 | } else { 41 | throw error; 42 | } 43 | } 44 | 45 | _setResult(data) { 46 | if (this._isMounted) { 47 | this.setState({data: interopRequireModule(data)}); 48 | } 49 | } 50 | 51 | componentDidMount() { 52 | this._isMounted = true; 53 | 54 | let promise; 55 | 56 | if (isPromise(this.props.wait)) { 57 | promise = this.props.wait; 58 | } else { 59 | promise = this.props.wait(this._passthroughProps); 60 | } 61 | 62 | if (!isPromise(promise)) { 63 | throw new Error('You must provide an async component'); 64 | } 65 | 66 | promise 67 | .then( 68 | (data) => this._setResult(data), 69 | (err) => this._handleError(err) 70 | ); 71 | } 72 | 73 | componentWillUnmount() { 74 | this._isMounted = false; 75 | } 76 | 77 | render() { 78 | if ('data' in this.state) { 79 | const renderer: any = this.state.data; 80 | 81 | if (isFunction(renderer)) { 82 | return createElement(renderer, this._passthroughProps); 83 | } else { 84 | return renderer; 85 | } 86 | } 87 | 88 | return createElement(this.props.loader, this._passthroughProps); 89 | } 90 | } 91 | 92 | export function asyncReactor( 93 | component: Function, 94 | loaderComponent?: Component | string, 95 | errorComponent?: Component | string, 96 | ) { 97 | if (isValidElement(component)) { 98 | throw new Error( 99 | 'Incompatible React element given, please change' 100 | + ` asyncReactor(<${component.type.name} />) to asyncReactor(${component.type.name}).` 101 | ); 102 | } 103 | 104 | if (!loaderComponent) { 105 | loaderComponent = 'div'; 106 | } 107 | 108 | if (!errorComponent) { 109 | errorComponent = 'div'; 110 | } 111 | 112 | if (!isFunction(component) && !isPromise(component)) { 113 | throw new Error(`You must provide an async component, ${JSON.stringify(component)} given`); 114 | } 115 | 116 | return createReactorElement(Reactor, component, loaderComponent, errorComponent); 117 | } 118 | -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- 1 | import 'babel-polyfill'; 2 | 3 | import chai, {assert} from 'chai'; 4 | import chaiEnzyme from 'chai-enzyme'; 5 | import React from 'react'; 6 | import {mount} from 'enzyme'; 7 | import {asyncReactor} from '../lib'; 8 | import {renderToStaticMarkup} from 'react-dom/server'; 9 | import {spy} from 'sinon'; 10 | 11 | chai.use(chaiEnzyme()); 12 | 13 | function defer(fn) { 14 | setTimeout(fn, 10); 15 | } 16 | 17 | describe('Async reactor', () => { 18 | 19 | describe('Error handling', () => { 20 | 21 | it('should throw if no component', () => { 22 | const fn = () => asyncReactor(null); 23 | 24 | assert.throws(fn, /You must provide an async component, null given/); 25 | }); 26 | 27 | it('should throw if React element is passed', () => { 28 | const Foo = async function() { 29 | return
; 30 | }; 31 | 32 | const fn = () => asyncReactor(); 33 | 34 | assert.throws( 35 | fn, 36 | 'Incompatible React element given, please change asyncReactor() to asyncReactor(Foo).' 37 | ); 38 | }); 39 | 40 | it.skip('should throw if component is not async', () => { 41 | const Component = asyncReactor(function Component() {}); 42 | const fn = () => mount(); 43 | 44 | assert.throws(fn, /you must provide an async component/); 45 | }); 46 | 47 | it.skip('should catch an error in async component', () => { 48 | const Component = asyncReactor(async function Component() { 49 | throw new Error('foo'); 50 | }); 51 | 52 | mount(); 53 | }); 54 | }); 55 | 56 | describe('Render', () => { 57 | 58 | it('should render an async component', (done) => { 59 | const Component = asyncReactor(async function Component() { 60 | return

foo

; 61 | }); 62 | 63 | const wrapper = mount(); 64 | 65 | defer(() => { 66 | assert.equal(wrapper.text(), 'foo'); 67 | done(); 68 | }); 69 | }); 70 | 71 | it('should render an async component in a tree', (done) => { 72 | // eslint-disable-next-line 73 | function Wrapper({children}) { 74 | return
{children}
; 75 | } 76 | 77 | const Component = asyncReactor(async function Component() { 78 | return

foo

; 79 | }); 80 | 81 | const wrapper = mount( 82 | 83 | 84 | 85 | ); 86 | 87 | defer(() => { 88 | assert.equal(wrapper.text(), 'foo'); 89 | done(); 90 | }); 91 | }); 92 | 93 | describe('childs', () => { 94 | 95 | it('should pass props to async component', (done) => { 96 | function Child() { 97 | return a; 98 | } 99 | 100 | const Component = asyncReactor(async function Component({children}) { 101 | return {children}b; 102 | }); 103 | 104 | const wrapper = mount( 105 | 106 | 107 | 108 | ); 109 | 110 | defer(() => { 111 | assert.equal(wrapper.text(), 'ab'); 112 | done(); 113 | }); 114 | }); 115 | }); 116 | 117 | describe('props', () => { 118 | 119 | it('should pass props to async component', (done) => { 120 | 121 | const Component = asyncReactor(async function Component({a}) { 122 | return

{a}

; 123 | }); 124 | 125 | const wrapper = mount(); 126 | 127 | defer(() => { 128 | assert.equal(wrapper.text(), 'bar'); 129 | done(); 130 | }); 131 | }); 132 | 133 | it('should pass multiple props to async component', (done) => { 134 | const Component = asyncReactor(async function Component({a, b, c}) { 135 | return

{a}{b}{c}

; 136 | }); 137 | 138 | const wrapper = mount(); 139 | 140 | defer(() => { 141 | assert.equal(wrapper.text(), '012'); 142 | done(); 143 | }); 144 | }); 145 | }); 146 | 147 | describe('loader component', () => { 148 | 149 | it('should show loader while waiting', (done) => { 150 | 151 | function Loader() { 152 | return

loader

; 153 | } 154 | 155 | const Component = async function() { 156 | return

component

; 157 | }; 158 | 159 | const App = asyncReactor(Component, Loader); 160 | 161 | const wrapper = mount(); 162 | 163 | assert.equal(wrapper.text(), 'loader'); 164 | 165 | defer(() => { 166 | assert.equal(wrapper.text(), 'component'); 167 | done(); 168 | }); 169 | }); 170 | }); 171 | 172 | describe('error component', () => { 173 | 174 | const Component = async function() { 175 | throw new Error('foo'); 176 | }; 177 | 178 | it('should show the component when an error occurred', (done) => { 179 | 180 | function Error() { 181 | return

error

; 182 | } 183 | 184 | const App = asyncReactor(Component, null, Error); 185 | const wrapper = mount(); 186 | 187 | defer(() => { 188 | assert.equal(wrapper.text(), 'error'); 189 | done(); 190 | }); 191 | }); 192 | 193 | // FIXME(sven): currently not possible, error object is not passed to the 194 | // component 195 | it.skip('should pass error object to error component', (done) => { 196 | 197 | function Error(props) { 198 | assert.property(props, 'name'); 199 | assert.property(props, 'message'); 200 | assert.property(props, 'fileName'); 201 | assert.property(props, 'stack'); 202 | 203 | assert.equal(props.message, 'Error: foo'); 204 | 205 | done(); 206 | return
; 207 | } 208 | 209 | const App = asyncReactor(Component, null, Error); 210 | mount(); 211 | }); 212 | 213 | it('should pass initial props to error component', (done) => { 214 | 215 | function Error(props) { 216 | assert.isTrue(props.a); 217 | assert.equal(props.b, 'foo'); 218 | 219 | done(); 220 | return
; 221 | } 222 | 223 | const App = asyncReactor(Component, null, Error); 224 | mount(); 225 | }); 226 | }); 227 | 228 | describe('Server-side', () => { 229 | 230 | it('should render', () => { 231 | const Component = async function() { 232 | return

component

; 233 | }; 234 | 235 | const App = asyncReactor(Component); 236 | 237 | assert.equal( 238 | renderToStaticMarkup(), 239 | '
' // default loader 240 | ); 241 | }); 242 | 243 | it('should render the loader component', () => { 244 | function Loader() { 245 | return

loader

; 246 | } 247 | 248 | const Component = async function() { 249 | return

component

; 250 | }; 251 | 252 | const App = asyncReactor(Component, Loader); 253 | 254 | assert.equal( 255 | renderToStaticMarkup(), 256 | '

loader

' 257 | ); 258 | }); 259 | }); 260 | 261 | describe('Promise', () => { 262 | 263 | it('should render a Promise', (done) => { 264 | const App = asyncReactor( 265 | Promise.resolve(

test

) 266 | ); 267 | 268 | const wrapper = mount(); 269 | 270 | defer(() => { 271 | assert.equal(wrapper.text(), 'test'); 272 | done(); 273 | }); 274 | }); 275 | 276 | it('should render a Promise with ES6 module', (done) => { 277 | const App = asyncReactor( 278 | Promise.resolve({__esModule: true, default:

test

}) 279 | ); 280 | 281 | const wrapper = mount(); 282 | 283 | defer(() => { 284 | assert.equal(wrapper.text(), 'test'); 285 | done(); 286 | }); 287 | }); 288 | 289 | it('should render a Promise with props', (done) => { 290 | const App = asyncReactor( 291 | Promise.resolve(({text}) =>

{text}

) 292 | ); 293 | 294 | const wrapper = mount(); 295 | 296 | defer(() => { 297 | assert.equal(wrapper.text(), 'ok'); 298 | done(); 299 | }); 300 | }); 301 | 302 | it('should show the component when an error occurred', (done) => { 303 | function Error() { 304 | done(); 305 | 306 | return
; 307 | } 308 | 309 | const App = asyncReactor( 310 | Promise.reject(), 311 | null, 312 | Error, 313 | ); 314 | 315 | mount(); 316 | }); 317 | 318 | it('should pass error object and props to error component', (done) => { 319 | function Error({error, a}) { 320 | assert.equal(error, 'foo'); 321 | assert.equal(a, 'a'); 322 | done(); 323 | 324 | return
; 325 | } 326 | 327 | const App = asyncReactor( 328 | Promise.reject('foo'), 329 | null, 330 | Error, 331 | ); 332 | 333 | mount(); 334 | }); 335 | }); 336 | 337 | it('should not set state of unmounted component and warn', (done) => { 338 | spy(console, 'error'); 339 | let callResolve; 340 | 341 | const Component = asyncReactor(new Promise((resolve) => { 342 | callResolve = resolve; 343 | })); 344 | 345 | mount().unmount(); 346 | callResolve(); 347 | 348 | defer(() => { 349 | assert.isFalse(console.error.called); 350 | console.error.restore(); 351 | done(); 352 | }); 353 | }); 354 | }); 355 | }); 356 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1: 6 | version "1.1.0" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 8 | 9 | accepts@~1.3.3: 10 | version "1.3.3" 11 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.3.tgz#c3ca7434938648c3e0d9c1e328dd68b622c284ca" 12 | dependencies: 13 | mime-types "~2.1.11" 14 | negotiator "0.6.1" 15 | 16 | acorn-dynamic-import@^2.0.0: 17 | version "2.0.2" 18 | resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz#c752bd210bef679501b6c6cb7fc84f8f47158cc4" 19 | dependencies: 20 | acorn "^4.0.3" 21 | 22 | acorn@^4.0.3, acorn@^4.0.4: 23 | version "4.0.11" 24 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.11.tgz#edcda3bd937e7556410d42ed5860f67399c794c0" 25 | 26 | ajv-keywords@^1.1.1: 27 | version "1.5.1" 28 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 29 | 30 | ajv@^4.7.0, ajv@^4.9.1: 31 | version "4.11.6" 32 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.6.tgz#947e93049790942b2a2d60a8289b28924d39f987" 33 | dependencies: 34 | co "^4.6.0" 35 | json-stable-stringify "^1.0.1" 36 | 37 | align-text@^0.1.1, align-text@^0.1.3: 38 | version "0.1.4" 39 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 40 | dependencies: 41 | kind-of "^3.0.2" 42 | longest "^1.0.1" 43 | repeat-string "^1.5.2" 44 | 45 | ansi-html@0.0.7: 46 | version "0.0.7" 47 | resolved "https://registry.yarnpkg.com/ansi-html/-/ansi-html-0.0.7.tgz#813584021962a9e9e6fd039f940d12f56ca7859e" 48 | 49 | ansi-regex@^2.0.0: 50 | version "2.1.1" 51 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 52 | 53 | ansi-styles@^2.2.1: 54 | version "2.2.1" 55 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 56 | 57 | anymatch@^1.3.0: 58 | version "1.3.0" 59 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 60 | dependencies: 61 | arrify "^1.0.0" 62 | micromatch "^2.1.5" 63 | 64 | aproba@^1.0.3: 65 | version "1.1.1" 66 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab" 67 | 68 | are-we-there-yet@~1.1.2: 69 | version "1.1.2" 70 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 71 | dependencies: 72 | delegates "^1.0.0" 73 | readable-stream "^2.0.0 || ^1.1.13" 74 | 75 | arr-diff@^2.0.0: 76 | version "2.0.0" 77 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 78 | dependencies: 79 | arr-flatten "^1.0.1" 80 | 81 | arr-flatten@^1.0.1: 82 | version "1.0.1" 83 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 84 | 85 | array-flatten@1.1.1: 86 | version "1.1.1" 87 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" 88 | 89 | array-unique@^0.2.1: 90 | version "0.2.1" 91 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 92 | 93 | arrify@^1.0.0: 94 | version "1.0.1" 95 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 96 | 97 | asap@~2.0.3: 98 | version "2.0.5" 99 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.5.tgz#522765b50c3510490e52d7dcfe085ef9ba96958f" 100 | 101 | asn1.js@^4.0.0: 102 | version "4.9.1" 103 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.1.tgz#48ba240b45a9280e94748990ba597d216617fd40" 104 | dependencies: 105 | bn.js "^4.0.0" 106 | inherits "^2.0.1" 107 | minimalistic-assert "^1.0.0" 108 | 109 | asn1@~0.2.3: 110 | version "0.2.3" 111 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 112 | 113 | assert-plus@1.0.0, assert-plus@^1.0.0: 114 | version "1.0.0" 115 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 116 | 117 | assert-plus@^0.2.0: 118 | version "0.2.0" 119 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 120 | 121 | assert@^1.1.1: 122 | version "1.4.1" 123 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 124 | dependencies: 125 | util "0.10.3" 126 | 127 | async-each@^1.0.0: 128 | version "1.0.1" 129 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 130 | 131 | async@^1.5.2: 132 | version "1.5.2" 133 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 134 | 135 | async@^2.1.2: 136 | version "2.3.0" 137 | resolved "https://registry.yarnpkg.com/async/-/async-2.3.0.tgz#1013d1051047dd320fe24e494d5c66ecaf6147d9" 138 | dependencies: 139 | lodash "^4.14.0" 140 | 141 | asynckit@^0.4.0: 142 | version "0.4.0" 143 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 144 | 145 | aws-sign2@~0.6.0: 146 | version "0.6.0" 147 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 148 | 149 | aws4@^1.2.1: 150 | version "1.6.0" 151 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 152 | 153 | babel-code-frame@^6.22.0: 154 | version "6.22.0" 155 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 156 | dependencies: 157 | chalk "^1.1.0" 158 | esutils "^2.0.2" 159 | js-tokens "^3.0.0" 160 | 161 | babel-core@^6.24.1: 162 | version "6.24.1" 163 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.1.tgz#8c428564dce1e1f41fb337ec34f4c3b022b5ad83" 164 | dependencies: 165 | babel-code-frame "^6.22.0" 166 | babel-generator "^6.24.1" 167 | babel-helpers "^6.24.1" 168 | babel-messages "^6.23.0" 169 | babel-register "^6.24.1" 170 | babel-runtime "^6.22.0" 171 | babel-template "^6.24.1" 172 | babel-traverse "^6.24.1" 173 | babel-types "^6.24.1" 174 | babylon "^6.11.0" 175 | convert-source-map "^1.1.0" 176 | debug "^2.1.1" 177 | json5 "^0.5.0" 178 | lodash "^4.2.0" 179 | minimatch "^3.0.2" 180 | path-is-absolute "^1.0.0" 181 | private "^0.1.6" 182 | slash "^1.0.0" 183 | source-map "^0.5.0" 184 | 185 | babel-generator@^6.24.1: 186 | version "6.24.1" 187 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.1.tgz#e715f486c58ded25649d888944d52aa07c5d9497" 188 | dependencies: 189 | babel-messages "^6.23.0" 190 | babel-runtime "^6.22.0" 191 | babel-types "^6.24.1" 192 | detect-indent "^4.0.0" 193 | jsesc "^1.3.0" 194 | lodash "^4.2.0" 195 | source-map "^0.5.0" 196 | trim-right "^1.0.1" 197 | 198 | babel-helper-builder-react-jsx@^6.24.1: 199 | version "6.24.1" 200 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.24.1.tgz#0ad7917e33c8d751e646daca4e77cc19377d2cbc" 201 | dependencies: 202 | babel-runtime "^6.22.0" 203 | babel-types "^6.24.1" 204 | esutils "^2.0.0" 205 | 206 | babel-helpers@^6.24.1: 207 | version "6.24.1" 208 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 209 | dependencies: 210 | babel-runtime "^6.22.0" 211 | babel-template "^6.24.1" 212 | 213 | babel-loader@^6.4.1: 214 | version "6.4.1" 215 | resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-6.4.1.tgz#0b34112d5b0748a8dcdbf51acf6f9bd42d50b8ca" 216 | dependencies: 217 | find-cache-dir "^0.1.1" 218 | loader-utils "^0.2.16" 219 | mkdirp "^0.5.1" 220 | object-assign "^4.0.1" 221 | 222 | babel-messages@^6.23.0: 223 | version "6.23.0" 224 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 225 | dependencies: 226 | babel-runtime "^6.22.0" 227 | 228 | babel-plugin-syntax-flow@^6.18.0: 229 | version "6.18.0" 230 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 231 | 232 | babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0: 233 | version "6.18.0" 234 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 235 | 236 | babel-plugin-transform-flow-strip-types@^6.22.0: 237 | version "6.22.0" 238 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" 239 | dependencies: 240 | babel-plugin-syntax-flow "^6.18.0" 241 | babel-runtime "^6.22.0" 242 | 243 | babel-plugin-transform-react-display-name@^6.23.0: 244 | version "6.23.0" 245 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.23.0.tgz#4398910c358441dc4cef18787264d0412ed36b37" 246 | dependencies: 247 | babel-runtime "^6.22.0" 248 | 249 | babel-plugin-transform-react-jsx-self@^6.22.0: 250 | version "6.22.0" 251 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e" 252 | dependencies: 253 | babel-plugin-syntax-jsx "^6.8.0" 254 | babel-runtime "^6.22.0" 255 | 256 | babel-plugin-transform-react-jsx-source@^6.22.0: 257 | version "6.22.0" 258 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" 259 | dependencies: 260 | babel-plugin-syntax-jsx "^6.8.0" 261 | babel-runtime "^6.22.0" 262 | 263 | babel-plugin-transform-react-jsx@^6.24.1: 264 | version "6.24.1" 265 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3" 266 | dependencies: 267 | babel-helper-builder-react-jsx "^6.24.1" 268 | babel-plugin-syntax-jsx "^6.8.0" 269 | babel-runtime "^6.22.0" 270 | 271 | babel-preset-flow@^6.23.0: 272 | version "6.23.0" 273 | resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d" 274 | dependencies: 275 | babel-plugin-transform-flow-strip-types "^6.22.0" 276 | 277 | babel-preset-react@^6.24.1: 278 | version "6.24.1" 279 | resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.24.1.tgz#ba69dfaea45fc3ec639b6a4ecea6e17702c91380" 280 | dependencies: 281 | babel-plugin-syntax-jsx "^6.3.13" 282 | babel-plugin-transform-react-display-name "^6.23.0" 283 | babel-plugin-transform-react-jsx "^6.24.1" 284 | babel-plugin-transform-react-jsx-self "^6.22.0" 285 | babel-plugin-transform-react-jsx-source "^6.22.0" 286 | babel-preset-flow "^6.23.0" 287 | 288 | babel-register@^6.24.1: 289 | version "6.24.1" 290 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 291 | dependencies: 292 | babel-core "^6.24.1" 293 | babel-runtime "^6.22.0" 294 | core-js "^2.4.0" 295 | home-or-tmp "^2.0.0" 296 | lodash "^4.2.0" 297 | mkdirp "^0.5.1" 298 | source-map-support "^0.4.2" 299 | 300 | babel-runtime@^6.22.0: 301 | version "6.23.0" 302 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 303 | dependencies: 304 | core-js "^2.4.0" 305 | regenerator-runtime "^0.10.0" 306 | 307 | babel-template@^6.24.1: 308 | version "6.24.1" 309 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333" 310 | dependencies: 311 | babel-runtime "^6.22.0" 312 | babel-traverse "^6.24.1" 313 | babel-types "^6.24.1" 314 | babylon "^6.11.0" 315 | lodash "^4.2.0" 316 | 317 | babel-traverse@^6.24.1: 318 | version "6.24.1" 319 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695" 320 | dependencies: 321 | babel-code-frame "^6.22.0" 322 | babel-messages "^6.23.0" 323 | babel-runtime "^6.22.0" 324 | babel-types "^6.24.1" 325 | babylon "^6.15.0" 326 | debug "^2.2.0" 327 | globals "^9.0.0" 328 | invariant "^2.2.0" 329 | lodash "^4.2.0" 330 | 331 | babel-types@^6.24.1: 332 | version "6.24.1" 333 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975" 334 | dependencies: 335 | babel-runtime "^6.22.0" 336 | esutils "^2.0.2" 337 | lodash "^4.2.0" 338 | to-fast-properties "^1.0.1" 339 | 340 | babel@^6.23.0: 341 | version "6.23.0" 342 | resolved "https://registry.yarnpkg.com/babel/-/babel-6.23.0.tgz#d0d1e7d803e974765beea3232d4e153c0efb90f4" 343 | 344 | babylon@^6.11.0, babylon@^6.15.0: 345 | version "6.16.1" 346 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.16.1.tgz#30c5a22f481978a9e7f8cdfdf496b11d94b404d3" 347 | 348 | balanced-match@^0.4.1: 349 | version "0.4.2" 350 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 351 | 352 | base64-js@^1.0.2: 353 | version "1.2.0" 354 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1" 355 | 356 | batch@0.5.3: 357 | version "0.5.3" 358 | resolved "https://registry.yarnpkg.com/batch/-/batch-0.5.3.tgz#3f3414f380321743bfc1042f9a83ff1d5824d464" 359 | 360 | bcrypt-pbkdf@^1.0.0: 361 | version "1.0.1" 362 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 363 | dependencies: 364 | tweetnacl "^0.14.3" 365 | 366 | big.js@^3.1.3: 367 | version "3.1.3" 368 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.1.3.tgz#4cada2193652eb3ca9ec8e55c9015669c9806978" 369 | 370 | binary-extensions@^1.0.0: 371 | version "1.8.0" 372 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 373 | 374 | block-stream@*: 375 | version "0.0.9" 376 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 377 | dependencies: 378 | inherits "~2.0.0" 379 | 380 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: 381 | version "4.11.6" 382 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.6.tgz#53344adb14617a13f6e8dd2ce28905d1c0ba3215" 383 | 384 | boom@2.x.x: 385 | version "2.10.1" 386 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 387 | dependencies: 388 | hoek "2.x.x" 389 | 390 | brace-expansion@^1.0.0: 391 | version "1.1.7" 392 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.7.tgz#3effc3c50e000531fb720eaff80f0ae8ef23cf59" 393 | dependencies: 394 | balanced-match "^0.4.1" 395 | concat-map "0.0.1" 396 | 397 | braces@^1.8.2: 398 | version "1.8.5" 399 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 400 | dependencies: 401 | expand-range "^1.8.1" 402 | preserve "^0.2.0" 403 | repeat-element "^1.1.2" 404 | 405 | brorand@^1.0.1: 406 | version "1.1.0" 407 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 408 | 409 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 410 | version "1.0.6" 411 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.0.6.tgz#5e7725dbdef1fd5930d4ebab48567ce451c48a0a" 412 | dependencies: 413 | buffer-xor "^1.0.2" 414 | cipher-base "^1.0.0" 415 | create-hash "^1.1.0" 416 | evp_bytestokey "^1.0.0" 417 | inherits "^2.0.1" 418 | 419 | browserify-cipher@^1.0.0: 420 | version "1.0.0" 421 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" 422 | dependencies: 423 | browserify-aes "^1.0.4" 424 | browserify-des "^1.0.0" 425 | evp_bytestokey "^1.0.0" 426 | 427 | browserify-des@^1.0.0: 428 | version "1.0.0" 429 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" 430 | dependencies: 431 | cipher-base "^1.0.1" 432 | des.js "^1.0.0" 433 | inherits "^2.0.1" 434 | 435 | browserify-rsa@^4.0.0: 436 | version "4.0.1" 437 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 438 | dependencies: 439 | bn.js "^4.1.0" 440 | randombytes "^2.0.1" 441 | 442 | browserify-sign@^4.0.0: 443 | version "4.0.4" 444 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" 445 | dependencies: 446 | bn.js "^4.1.1" 447 | browserify-rsa "^4.0.0" 448 | create-hash "^1.1.0" 449 | create-hmac "^1.1.2" 450 | elliptic "^6.0.0" 451 | inherits "^2.0.1" 452 | parse-asn1 "^5.0.0" 453 | 454 | browserify-zlib@^0.1.4: 455 | version "0.1.4" 456 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d" 457 | dependencies: 458 | pako "~0.2.0" 459 | 460 | buffer-shims@~1.0.0: 461 | version "1.0.0" 462 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 463 | 464 | buffer-xor@^1.0.2: 465 | version "1.0.3" 466 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 467 | 468 | buffer@^4.3.0: 469 | version "4.9.1" 470 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 471 | dependencies: 472 | base64-js "^1.0.2" 473 | ieee754 "^1.1.4" 474 | isarray "^1.0.0" 475 | 476 | builtin-modules@^1.0.0: 477 | version "1.1.1" 478 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 479 | 480 | builtin-status-codes@^3.0.0: 481 | version "3.0.0" 482 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 483 | 484 | bytes@2.3.0: 485 | version "2.3.0" 486 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.3.0.tgz#d5b680a165b6201739acb611542aabc2d8ceb070" 487 | 488 | camelcase@^1.0.2: 489 | version "1.2.1" 490 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 491 | 492 | camelcase@^3.0.0: 493 | version "3.0.0" 494 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 495 | 496 | caseless@~0.12.0: 497 | version "0.12.0" 498 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 499 | 500 | center-align@^0.1.1: 501 | version "0.1.3" 502 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 503 | dependencies: 504 | align-text "^0.1.3" 505 | lazy-cache "^1.0.3" 506 | 507 | chalk@^1.1.0: 508 | version "1.1.3" 509 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 510 | dependencies: 511 | ansi-styles "^2.2.1" 512 | escape-string-regexp "^1.0.2" 513 | has-ansi "^2.0.0" 514 | strip-ansi "^3.0.0" 515 | supports-color "^2.0.0" 516 | 517 | chokidar@^1.4.3, chokidar@^1.6.0: 518 | version "1.6.1" 519 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 520 | dependencies: 521 | anymatch "^1.3.0" 522 | async-each "^1.0.0" 523 | glob-parent "^2.0.0" 524 | inherits "^2.0.1" 525 | is-binary-path "^1.0.0" 526 | is-glob "^2.0.0" 527 | path-is-absolute "^1.0.0" 528 | readdirp "^2.0.0" 529 | optionalDependencies: 530 | fsevents "^1.0.0" 531 | 532 | cipher-base@^1.0.0, cipher-base@^1.0.1: 533 | version "1.0.3" 534 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.3.tgz#eeabf194419ce900da3018c207d212f2a6df0a07" 535 | dependencies: 536 | inherits "^2.0.1" 537 | 538 | cliui@^2.1.0: 539 | version "2.1.0" 540 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 541 | dependencies: 542 | center-align "^0.1.1" 543 | right-align "^0.1.1" 544 | wordwrap "0.0.2" 545 | 546 | cliui@^3.2.0: 547 | version "3.2.0" 548 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 549 | dependencies: 550 | string-width "^1.0.1" 551 | strip-ansi "^3.0.1" 552 | wrap-ansi "^2.0.0" 553 | 554 | co@^4.6.0: 555 | version "4.6.0" 556 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 557 | 558 | code-point-at@^1.0.0: 559 | version "1.1.0" 560 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 561 | 562 | combined-stream@^1.0.5, combined-stream@~1.0.5: 563 | version "1.0.5" 564 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 565 | dependencies: 566 | delayed-stream "~1.0.0" 567 | 568 | commondir@^1.0.1: 569 | version "1.0.1" 570 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 571 | 572 | compressible@~2.0.8: 573 | version "2.0.10" 574 | resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.10.tgz#feda1c7f7617912732b29bf8cf26252a20b9eecd" 575 | dependencies: 576 | mime-db ">= 1.27.0 < 2" 577 | 578 | compression@^1.5.2: 579 | version "1.6.2" 580 | resolved "https://registry.yarnpkg.com/compression/-/compression-1.6.2.tgz#cceb121ecc9d09c52d7ad0c3350ea93ddd402bc3" 581 | dependencies: 582 | accepts "~1.3.3" 583 | bytes "2.3.0" 584 | compressible "~2.0.8" 585 | debug "~2.2.0" 586 | on-headers "~1.0.1" 587 | vary "~1.1.0" 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.2" 617 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.2.tgz#b7d113aee7a8dd27bd21133c4dc2529df1721eed" 618 | 619 | convert-source-map@^1.1.0: 620 | version "1.5.0" 621 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 622 | 623 | cookie-signature@1.0.6: 624 | version "1.0.6" 625 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" 626 | 627 | cookie@0.3.1: 628 | version "0.3.1" 629 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" 630 | 631 | core-js@^1.0.0: 632 | version "1.2.7" 633 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 634 | 635 | core-js@^2.4.0: 636 | version "2.4.1" 637 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 638 | 639 | core-util-is@~1.0.0: 640 | version "1.0.2" 641 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 642 | 643 | create-ecdh@^4.0.0: 644 | version "4.0.0" 645 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" 646 | dependencies: 647 | bn.js "^4.1.0" 648 | elliptic "^6.0.0" 649 | 650 | create-hash@^1.1.0, create-hash@^1.1.1: 651 | version "1.1.2" 652 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.2.tgz#51210062d7bb7479f6c65bb41a92208b1d61abad" 653 | dependencies: 654 | cipher-base "^1.0.1" 655 | inherits "^2.0.1" 656 | ripemd160 "^1.0.0" 657 | sha.js "^2.3.6" 658 | 659 | create-hmac@^1.1.0, create-hmac@^1.1.2: 660 | version "1.1.4" 661 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.4.tgz#d3fb4ba253eb8b3f56e39ea2fbcb8af747bd3170" 662 | dependencies: 663 | create-hash "^1.1.0" 664 | inherits "^2.0.1" 665 | 666 | cryptiles@2.x.x: 667 | version "2.0.5" 668 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 669 | dependencies: 670 | boom "2.x.x" 671 | 672 | crypto-browserify@^3.11.0: 673 | version "3.11.0" 674 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.0.tgz#3652a0906ab9b2a7e0c3ce66a408e957a2485522" 675 | dependencies: 676 | browserify-cipher "^1.0.0" 677 | browserify-sign "^4.0.0" 678 | create-ecdh "^4.0.0" 679 | create-hash "^1.1.0" 680 | create-hmac "^1.1.0" 681 | diffie-hellman "^5.0.0" 682 | inherits "^2.0.1" 683 | pbkdf2 "^3.0.3" 684 | public-encrypt "^4.0.0" 685 | randombytes "^2.0.0" 686 | 687 | dashdash@^1.12.0: 688 | version "1.14.1" 689 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 690 | dependencies: 691 | assert-plus "^1.0.0" 692 | 693 | date-now@^0.1.4: 694 | version "0.1.4" 695 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 696 | 697 | debug@2.6.1: 698 | version "2.6.1" 699 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.1.tgz#79855090ba2c4e3115cc7d8769491d58f0491351" 700 | dependencies: 701 | ms "0.7.2" 702 | 703 | debug@2.6.3, debug@^2.1.1, debug@^2.2.0: 704 | version "2.6.3" 705 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.3.tgz#0f7eb8c30965ec08c72accfa0130c8b79984141d" 706 | dependencies: 707 | ms "0.7.2" 708 | 709 | debug@~2.2.0: 710 | version "2.2.0" 711 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 712 | dependencies: 713 | ms "0.7.1" 714 | 715 | decamelize@^1.0.0, decamelize@^1.1.1: 716 | version "1.2.0" 717 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 718 | 719 | deep-extend@~0.4.0: 720 | version "0.4.1" 721 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 722 | 723 | delayed-stream@~1.0.0: 724 | version "1.0.0" 725 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 726 | 727 | delegates@^1.0.0: 728 | version "1.0.0" 729 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 730 | 731 | depd@1.1.0, depd@~1.1.0: 732 | version "1.1.0" 733 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.0.tgz#e1bd82c6aab6ced965b97b88b17ed3e528ca18c3" 734 | 735 | des.js@^1.0.0: 736 | version "1.0.0" 737 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" 738 | dependencies: 739 | inherits "^2.0.1" 740 | minimalistic-assert "^1.0.0" 741 | 742 | destroy@~1.0.4: 743 | version "1.0.4" 744 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 745 | 746 | detect-indent@^4.0.0: 747 | version "4.0.0" 748 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 749 | dependencies: 750 | repeating "^2.0.0" 751 | 752 | diffie-hellman@^5.0.0: 753 | version "5.0.2" 754 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" 755 | dependencies: 756 | bn.js "^4.1.0" 757 | miller-rabin "^4.0.0" 758 | randombytes "^2.0.0" 759 | 760 | domain-browser@^1.1.1: 761 | version "1.1.7" 762 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" 763 | 764 | ecc-jsbn@~0.1.1: 765 | version "0.1.1" 766 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 767 | dependencies: 768 | jsbn "~0.1.0" 769 | 770 | ee-first@1.1.1: 771 | version "1.1.1" 772 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 773 | 774 | elliptic@^6.0.0: 775 | version "6.4.0" 776 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df" 777 | dependencies: 778 | bn.js "^4.4.0" 779 | brorand "^1.0.1" 780 | hash.js "^1.0.0" 781 | hmac-drbg "^1.0.0" 782 | inherits "^2.0.1" 783 | minimalistic-assert "^1.0.0" 784 | minimalistic-crypto-utils "^1.0.0" 785 | 786 | emojis-list@^2.0.0: 787 | version "2.1.0" 788 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" 789 | 790 | encodeurl@~1.0.1: 791 | version "1.0.1" 792 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20" 793 | 794 | encoding@^0.1.11: 795 | version "0.1.12" 796 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 797 | dependencies: 798 | iconv-lite "~0.4.13" 799 | 800 | enhanced-resolve@^3.0.0: 801 | version "3.1.0" 802 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.1.0.tgz#9f4b626f577245edcf4b2ad83d86e17f4f421dec" 803 | dependencies: 804 | graceful-fs "^4.1.2" 805 | memory-fs "^0.4.0" 806 | object-assign "^4.0.1" 807 | tapable "^0.2.5" 808 | 809 | errno@^0.1.3: 810 | version "0.1.4" 811 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 812 | dependencies: 813 | prr "~0.0.0" 814 | 815 | error-ex@^1.2.0: 816 | version "1.3.1" 817 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 818 | dependencies: 819 | is-arrayish "^0.2.1" 820 | 821 | escape-html@~1.0.3: 822 | version "1.0.3" 823 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 824 | 825 | escape-string-regexp@^1.0.2: 826 | version "1.0.5" 827 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 828 | 829 | esutils@^2.0.0, esutils@^2.0.2: 830 | version "2.0.2" 831 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 832 | 833 | etag@~1.8.0: 834 | version "1.8.0" 835 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.0.tgz#6f631aef336d6c46362b51764044ce216be3c051" 836 | 837 | eventemitter3@1.x.x: 838 | version "1.2.0" 839 | resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-1.2.0.tgz#1c86991d816ad1e504750e73874224ecf3bec508" 840 | 841 | events@^1.0.0: 842 | version "1.1.1" 843 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 844 | 845 | eventsource@0.1.6: 846 | version "0.1.6" 847 | resolved "https://registry.yarnpkg.com/eventsource/-/eventsource-0.1.6.tgz#0acede849ed7dd1ccc32c811bb11b944d4f29232" 848 | dependencies: 849 | original ">=0.0.5" 850 | 851 | evp_bytestokey@^1.0.0: 852 | version "1.0.0" 853 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.0.tgz#497b66ad9fef65cd7c08a6180824ba1476b66e53" 854 | dependencies: 855 | create-hash "^1.1.1" 856 | 857 | expand-brackets@^0.1.4: 858 | version "0.1.5" 859 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 860 | dependencies: 861 | is-posix-bracket "^0.1.0" 862 | 863 | expand-range@^1.8.1: 864 | version "1.8.2" 865 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 866 | dependencies: 867 | fill-range "^2.1.0" 868 | 869 | express@^4.13.3: 870 | version "4.15.2" 871 | resolved "https://registry.yarnpkg.com/express/-/express-4.15.2.tgz#af107fc148504457f2dca9a6f2571d7129b97b35" 872 | dependencies: 873 | accepts "~1.3.3" 874 | array-flatten "1.1.1" 875 | content-disposition "0.5.2" 876 | content-type "~1.0.2" 877 | cookie "0.3.1" 878 | cookie-signature "1.0.6" 879 | debug "2.6.1" 880 | depd "~1.1.0" 881 | encodeurl "~1.0.1" 882 | escape-html "~1.0.3" 883 | etag "~1.8.0" 884 | finalhandler "~1.0.0" 885 | fresh "0.5.0" 886 | merge-descriptors "1.0.1" 887 | methods "~1.1.2" 888 | on-finished "~2.3.0" 889 | parseurl "~1.3.1" 890 | path-to-regexp "0.1.7" 891 | proxy-addr "~1.1.3" 892 | qs "6.4.0" 893 | range-parser "~1.2.0" 894 | send "0.15.1" 895 | serve-static "1.12.1" 896 | setprototypeof "1.0.3" 897 | statuses "~1.3.1" 898 | type-is "~1.6.14" 899 | utils-merge "1.0.0" 900 | vary "~1.1.0" 901 | 902 | extend@~3.0.0: 903 | version "3.0.0" 904 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 905 | 906 | extglob@^0.3.1: 907 | version "0.3.2" 908 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 909 | dependencies: 910 | is-extglob "^1.0.0" 911 | 912 | extsprintf@1.0.2: 913 | version "1.0.2" 914 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 915 | 916 | faye-websocket@^0.10.0: 917 | version "0.10.0" 918 | resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.10.0.tgz#4e492f8d04dfb6f89003507f6edbf2d501e7c6f4" 919 | dependencies: 920 | websocket-driver ">=0.5.1" 921 | 922 | faye-websocket@~0.11.0: 923 | version "0.11.1" 924 | resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.1.tgz#f0efe18c4f56e4f40afc7e06c719fd5ee6188f38" 925 | dependencies: 926 | websocket-driver ">=0.5.1" 927 | 928 | fbjs@^0.8.9: 929 | version "0.8.12" 930 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.12.tgz#10b5d92f76d45575fd63a217d4ea02bea2f8ed04" 931 | dependencies: 932 | core-js "^1.0.0" 933 | isomorphic-fetch "^2.1.1" 934 | loose-envify "^1.0.0" 935 | object-assign "^4.1.0" 936 | promise "^7.1.1" 937 | setimmediate "^1.0.5" 938 | ua-parser-js "^0.7.9" 939 | 940 | filename-regex@^2.0.0: 941 | version "2.0.0" 942 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 943 | 944 | fill-range@^2.1.0: 945 | version "2.2.3" 946 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 947 | dependencies: 948 | is-number "^2.1.0" 949 | isobject "^2.0.0" 950 | randomatic "^1.1.3" 951 | repeat-element "^1.1.2" 952 | repeat-string "^1.5.2" 953 | 954 | finalhandler@~1.0.0: 955 | version "1.0.1" 956 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.0.1.tgz#bcd15d1689c0e5ed729b6f7f541a6df984117db8" 957 | dependencies: 958 | debug "2.6.3" 959 | encodeurl "~1.0.1" 960 | escape-html "~1.0.3" 961 | on-finished "~2.3.0" 962 | parseurl "~1.3.1" 963 | statuses "~1.3.1" 964 | unpipe "~1.0.0" 965 | 966 | find-cache-dir@^0.1.1: 967 | version "0.1.1" 968 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" 969 | dependencies: 970 | commondir "^1.0.1" 971 | mkdirp "^0.5.1" 972 | pkg-dir "^1.0.0" 973 | 974 | find-up@^1.0.0: 975 | version "1.1.2" 976 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 977 | dependencies: 978 | path-exists "^2.0.0" 979 | pinkie-promise "^2.0.0" 980 | 981 | for-in@^1.0.1: 982 | version "1.0.2" 983 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 984 | 985 | for-own@^0.1.4: 986 | version "0.1.5" 987 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 988 | dependencies: 989 | for-in "^1.0.1" 990 | 991 | forever-agent@~0.6.1: 992 | version "0.6.1" 993 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 994 | 995 | form-data@~2.1.1: 996 | version "2.1.4" 997 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 998 | dependencies: 999 | asynckit "^0.4.0" 1000 | combined-stream "^1.0.5" 1001 | mime-types "^2.1.12" 1002 | 1003 | forwarded@~0.1.0: 1004 | version "0.1.0" 1005 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.0.tgz#19ef9874c4ae1c297bcf078fde63a09b66a84363" 1006 | 1007 | fresh@0.5.0: 1008 | version "0.5.0" 1009 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.0.tgz#f474ca5e6a9246d6fd8e0953cfa9b9c805afa78e" 1010 | 1011 | fs.realpath@^1.0.0: 1012 | version "1.0.0" 1013 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1014 | 1015 | fsevents@^1.0.0: 1016 | version "1.1.1" 1017 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff" 1018 | dependencies: 1019 | nan "^2.3.0" 1020 | node-pre-gyp "^0.6.29" 1021 | 1022 | fstream-ignore@^1.0.5: 1023 | version "1.0.5" 1024 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1025 | dependencies: 1026 | fstream "^1.0.0" 1027 | inherits "2" 1028 | minimatch "^3.0.0" 1029 | 1030 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1031 | version "1.0.11" 1032 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1033 | dependencies: 1034 | graceful-fs "^4.1.2" 1035 | inherits "~2.0.0" 1036 | mkdirp ">=0.5 0" 1037 | rimraf "2" 1038 | 1039 | gauge@~2.7.1: 1040 | version "2.7.3" 1041 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.3.tgz#1c23855f962f17b3ad3d0dc7443f304542edfe09" 1042 | dependencies: 1043 | aproba "^1.0.3" 1044 | console-control-strings "^1.0.0" 1045 | has-unicode "^2.0.0" 1046 | object-assign "^4.1.0" 1047 | signal-exit "^3.0.0" 1048 | string-width "^1.0.1" 1049 | strip-ansi "^3.0.1" 1050 | wide-align "^1.1.0" 1051 | 1052 | get-caller-file@^1.0.1: 1053 | version "1.0.2" 1054 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1055 | 1056 | getpass@^0.1.1: 1057 | version "0.1.6" 1058 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 1059 | dependencies: 1060 | assert-plus "^1.0.0" 1061 | 1062 | glob-base@^0.3.0: 1063 | version "0.3.0" 1064 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1065 | dependencies: 1066 | glob-parent "^2.0.0" 1067 | is-glob "^2.0.0" 1068 | 1069 | glob-parent@^2.0.0: 1070 | version "2.0.0" 1071 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1072 | dependencies: 1073 | is-glob "^2.0.0" 1074 | 1075 | glob@^7.0.5: 1076 | version "7.1.1" 1077 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1078 | dependencies: 1079 | fs.realpath "^1.0.0" 1080 | inflight "^1.0.4" 1081 | inherits "2" 1082 | minimatch "^3.0.2" 1083 | once "^1.3.0" 1084 | path-is-absolute "^1.0.0" 1085 | 1086 | globals@^9.0.0: 1087 | version "9.17.0" 1088 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 1089 | 1090 | graceful-fs@^4.1.2: 1091 | version "4.1.11" 1092 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1093 | 1094 | handle-thing@^1.2.4: 1095 | version "1.2.5" 1096 | resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-1.2.5.tgz#fd7aad726bf1a5fd16dfc29b2f7a6601d27139c4" 1097 | 1098 | har-schema@^1.0.5: 1099 | version "1.0.5" 1100 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1101 | 1102 | har-validator@~4.2.1: 1103 | version "4.2.1" 1104 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1105 | dependencies: 1106 | ajv "^4.9.1" 1107 | har-schema "^1.0.5" 1108 | 1109 | has-ansi@^2.0.0: 1110 | version "2.0.0" 1111 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1112 | dependencies: 1113 | ansi-regex "^2.0.0" 1114 | 1115 | has-flag@^1.0.0: 1116 | version "1.0.0" 1117 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1118 | 1119 | has-unicode@^2.0.0: 1120 | version "2.0.1" 1121 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1122 | 1123 | hash.js@^1.0.0, hash.js@^1.0.3: 1124 | version "1.0.3" 1125 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.0.3.tgz#1332ff00156c0a0ffdd8236013d07b77a0451573" 1126 | dependencies: 1127 | inherits "^2.0.1" 1128 | 1129 | hawk@~3.1.3: 1130 | version "3.1.3" 1131 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1132 | dependencies: 1133 | boom "2.x.x" 1134 | cryptiles "2.x.x" 1135 | hoek "2.x.x" 1136 | sntp "1.x.x" 1137 | 1138 | hmac-drbg@^1.0.0: 1139 | version "1.0.1" 1140 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 1141 | dependencies: 1142 | hash.js "^1.0.3" 1143 | minimalistic-assert "^1.0.0" 1144 | minimalistic-crypto-utils "^1.0.1" 1145 | 1146 | hoek@2.x.x: 1147 | version "2.16.3" 1148 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1149 | 1150 | home-or-tmp@^2.0.0: 1151 | version "2.0.0" 1152 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1153 | dependencies: 1154 | os-homedir "^1.0.0" 1155 | os-tmpdir "^1.0.1" 1156 | 1157 | hosted-git-info@^2.1.4: 1158 | version "2.4.1" 1159 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.1.tgz#4b0445e41c004a8bd1337773a4ff790ca40318c8" 1160 | 1161 | hpack.js@^2.1.6: 1162 | version "2.1.6" 1163 | resolved "https://registry.yarnpkg.com/hpack.js/-/hpack.js-2.1.6.tgz#87774c0949e513f42e84575b3c45681fade2a0b2" 1164 | dependencies: 1165 | inherits "^2.0.1" 1166 | obuf "^1.0.0" 1167 | readable-stream "^2.0.1" 1168 | wbuf "^1.1.0" 1169 | 1170 | html-entities@^1.2.0: 1171 | version "1.2.0" 1172 | resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-1.2.0.tgz#41948caf85ce82fed36e4e6a0ed371a6664379e2" 1173 | 1174 | http-deceiver@^1.2.4: 1175 | version "1.2.7" 1176 | resolved "https://registry.yarnpkg.com/http-deceiver/-/http-deceiver-1.2.7.tgz#fa7168944ab9a519d337cb0bec7284dc3e723d87" 1177 | 1178 | http-errors@~1.5.0: 1179 | version "1.5.1" 1180 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.5.1.tgz#788c0d2c1de2c81b9e6e8c01843b6b97eb920750" 1181 | dependencies: 1182 | inherits "2.0.3" 1183 | setprototypeof "1.0.2" 1184 | statuses ">= 1.3.1 < 2" 1185 | 1186 | http-errors@~1.6.1: 1187 | version "1.6.1" 1188 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.1.tgz#5f8b8ed98aca545656bf572997387f904a722257" 1189 | dependencies: 1190 | depd "1.1.0" 1191 | inherits "2.0.3" 1192 | setprototypeof "1.0.3" 1193 | statuses ">= 1.3.1 < 2" 1194 | 1195 | http-proxy-middleware@~0.17.4: 1196 | version "0.17.4" 1197 | resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-0.17.4.tgz#642e8848851d66f09d4f124912846dbaeb41b833" 1198 | dependencies: 1199 | http-proxy "^1.16.2" 1200 | is-glob "^3.1.0" 1201 | lodash "^4.17.2" 1202 | micromatch "^2.3.11" 1203 | 1204 | http-proxy@^1.16.2: 1205 | version "1.16.2" 1206 | resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.16.2.tgz#06dff292952bf64dbe8471fa9df73066d4f37742" 1207 | dependencies: 1208 | eventemitter3 "1.x.x" 1209 | requires-port "1.x.x" 1210 | 1211 | http-signature@~1.1.0: 1212 | version "1.1.1" 1213 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1214 | dependencies: 1215 | assert-plus "^0.2.0" 1216 | jsprim "^1.2.2" 1217 | sshpk "^1.7.0" 1218 | 1219 | https-browserify@0.0.1: 1220 | version "0.0.1" 1221 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82" 1222 | 1223 | iconv-lite@~0.4.13: 1224 | version "0.4.15" 1225 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.15.tgz#fe265a218ac6a57cfe854927e9d04c19825eddeb" 1226 | 1227 | ieee754@^1.1.4: 1228 | version "1.1.8" 1229 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 1230 | 1231 | indexof@0.0.1: 1232 | version "0.0.1" 1233 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 1234 | 1235 | inflight@^1.0.4: 1236 | version "1.0.6" 1237 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1238 | dependencies: 1239 | once "^1.3.0" 1240 | wrappy "1" 1241 | 1242 | inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1: 1243 | version "2.0.3" 1244 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1245 | 1246 | inherits@2.0.1: 1247 | version "2.0.1" 1248 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 1249 | 1250 | ini@~1.3.0: 1251 | version "1.3.4" 1252 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1253 | 1254 | interpret@^1.0.0: 1255 | version "1.0.2" 1256 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.2.tgz#f4f623f0bb7122f15f5717c8e254b8161b5c5b2d" 1257 | 1258 | invariant@^2.2.0: 1259 | version "2.2.2" 1260 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1261 | dependencies: 1262 | loose-envify "^1.0.0" 1263 | 1264 | invert-kv@^1.0.0: 1265 | version "1.0.0" 1266 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1267 | 1268 | ipaddr.js@1.3.0: 1269 | version "1.3.0" 1270 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.3.0.tgz#1e03a52fdad83a8bbb2b25cbf4998b4cffcd3dec" 1271 | 1272 | is-arrayish@^0.2.1: 1273 | version "0.2.1" 1274 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1275 | 1276 | is-binary-path@^1.0.0: 1277 | version "1.0.1" 1278 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1279 | dependencies: 1280 | binary-extensions "^1.0.0" 1281 | 1282 | is-buffer@^1.0.2: 1283 | version "1.1.5" 1284 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1285 | 1286 | is-builtin-module@^1.0.0: 1287 | version "1.0.0" 1288 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1289 | dependencies: 1290 | builtin-modules "^1.0.0" 1291 | 1292 | is-dotfile@^1.0.0: 1293 | version "1.0.2" 1294 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1295 | 1296 | is-equal-shallow@^0.1.3: 1297 | version "0.1.3" 1298 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1299 | dependencies: 1300 | is-primitive "^2.0.0" 1301 | 1302 | is-extendable@^0.1.1: 1303 | version "0.1.1" 1304 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1305 | 1306 | is-extglob@^1.0.0: 1307 | version "1.0.0" 1308 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1309 | 1310 | is-extglob@^2.1.0: 1311 | version "2.1.1" 1312 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1313 | 1314 | is-finite@^1.0.0: 1315 | version "1.0.2" 1316 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1317 | dependencies: 1318 | number-is-nan "^1.0.0" 1319 | 1320 | is-fullwidth-code-point@^1.0.0: 1321 | version "1.0.0" 1322 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1323 | dependencies: 1324 | number-is-nan "^1.0.0" 1325 | 1326 | is-glob@^2.0.0, is-glob@^2.0.1: 1327 | version "2.0.1" 1328 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1329 | dependencies: 1330 | is-extglob "^1.0.0" 1331 | 1332 | is-glob@^3.1.0: 1333 | version "3.1.0" 1334 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 1335 | dependencies: 1336 | is-extglob "^2.1.0" 1337 | 1338 | is-number@^2.0.2, is-number@^2.1.0: 1339 | version "2.1.0" 1340 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1341 | dependencies: 1342 | kind-of "^3.0.2" 1343 | 1344 | is-posix-bracket@^0.1.0: 1345 | version "0.1.1" 1346 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1347 | 1348 | is-primitive@^2.0.0: 1349 | version "2.0.0" 1350 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1351 | 1352 | is-stream@^1.0.1: 1353 | version "1.1.0" 1354 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1355 | 1356 | is-typedarray@~1.0.0: 1357 | version "1.0.0" 1358 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1359 | 1360 | is-utf8@^0.2.0: 1361 | version "0.2.1" 1362 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1363 | 1364 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1365 | version "1.0.0" 1366 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1367 | 1368 | isobject@^2.0.0: 1369 | version "2.1.0" 1370 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1371 | dependencies: 1372 | isarray "1.0.0" 1373 | 1374 | isomorphic-fetch@^2.1.1: 1375 | version "2.2.1" 1376 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" 1377 | dependencies: 1378 | node-fetch "^1.0.1" 1379 | whatwg-fetch ">=0.10.0" 1380 | 1381 | isstream@~0.1.2: 1382 | version "0.1.2" 1383 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1384 | 1385 | jodid25519@^1.0.0: 1386 | version "1.0.2" 1387 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 1388 | dependencies: 1389 | jsbn "~0.1.0" 1390 | 1391 | js-tokens@^3.0.0: 1392 | version "3.0.1" 1393 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 1394 | 1395 | jsbn@~0.1.0: 1396 | version "0.1.1" 1397 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1398 | 1399 | jsesc@^1.3.0: 1400 | version "1.3.0" 1401 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1402 | 1403 | json-loader@^0.5.4: 1404 | version "0.5.4" 1405 | resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.4.tgz#8baa1365a632f58a3c46d20175fc6002c96e37de" 1406 | 1407 | json-schema@0.2.3: 1408 | version "0.2.3" 1409 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1410 | 1411 | json-stable-stringify@^1.0.1: 1412 | version "1.0.1" 1413 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1414 | dependencies: 1415 | jsonify "~0.0.0" 1416 | 1417 | json-stringify-safe@~5.0.1: 1418 | version "5.0.1" 1419 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1420 | 1421 | json3@^3.3.2: 1422 | version "3.3.2" 1423 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 1424 | 1425 | json5@^0.5.0: 1426 | version "0.5.1" 1427 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1428 | 1429 | jsonify@~0.0.0: 1430 | version "0.0.0" 1431 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1432 | 1433 | jsprim@^1.2.2: 1434 | version "1.4.0" 1435 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 1436 | dependencies: 1437 | assert-plus "1.0.0" 1438 | extsprintf "1.0.2" 1439 | json-schema "0.2.3" 1440 | verror "1.3.6" 1441 | 1442 | kind-of@^3.0.2: 1443 | version "3.1.0" 1444 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" 1445 | dependencies: 1446 | is-buffer "^1.0.2" 1447 | 1448 | lazy-cache@^1.0.3: 1449 | version "1.0.4" 1450 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1451 | 1452 | lcid@^1.0.0: 1453 | version "1.0.0" 1454 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1455 | dependencies: 1456 | invert-kv "^1.0.0" 1457 | 1458 | load-json-file@^1.0.0: 1459 | version "1.1.0" 1460 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1461 | dependencies: 1462 | graceful-fs "^4.1.2" 1463 | parse-json "^2.2.0" 1464 | pify "^2.0.0" 1465 | pinkie-promise "^2.0.0" 1466 | strip-bom "^2.0.0" 1467 | 1468 | loader-runner@^2.3.0: 1469 | version "2.3.0" 1470 | resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2" 1471 | 1472 | loader-utils@^0.2.16: 1473 | version "0.2.17" 1474 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.17.tgz#f86e6374d43205a6e6c60e9196f17c0299bfb348" 1475 | dependencies: 1476 | big.js "^3.1.3" 1477 | emojis-list "^2.0.0" 1478 | json5 "^0.5.0" 1479 | object-assign "^4.0.1" 1480 | 1481 | lodash@^4.14.0, lodash@^4.17.2, lodash@^4.2.0: 1482 | version "4.17.4" 1483 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1484 | 1485 | longest@^1.0.1: 1486 | version "1.0.1" 1487 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1488 | 1489 | loose-envify@^1.0.0, loose-envify@^1.1.0: 1490 | version "1.3.1" 1491 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1492 | dependencies: 1493 | js-tokens "^3.0.0" 1494 | 1495 | media-typer@0.3.0: 1496 | version "0.3.0" 1497 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 1498 | 1499 | memory-fs@^0.4.0, memory-fs@~0.4.1: 1500 | version "0.4.1" 1501 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" 1502 | dependencies: 1503 | errno "^0.1.3" 1504 | readable-stream "^2.0.1" 1505 | 1506 | merge-descriptors@1.0.1: 1507 | version "1.0.1" 1508 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" 1509 | 1510 | methods@~1.1.2: 1511 | version "1.1.2" 1512 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 1513 | 1514 | micromatch@^2.1.5, micromatch@^2.3.11: 1515 | version "2.3.11" 1516 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1517 | dependencies: 1518 | arr-diff "^2.0.0" 1519 | array-unique "^0.2.1" 1520 | braces "^1.8.2" 1521 | expand-brackets "^0.1.4" 1522 | extglob "^0.3.1" 1523 | filename-regex "^2.0.0" 1524 | is-extglob "^1.0.0" 1525 | is-glob "^2.0.1" 1526 | kind-of "^3.0.2" 1527 | normalize-path "^2.0.1" 1528 | object.omit "^2.0.0" 1529 | parse-glob "^3.0.4" 1530 | regex-cache "^0.4.2" 1531 | 1532 | miller-rabin@^4.0.0: 1533 | version "4.0.0" 1534 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.0.tgz#4a62fb1d42933c05583982f4c716f6fb9e6c6d3d" 1535 | dependencies: 1536 | bn.js "^4.0.0" 1537 | brorand "^1.0.1" 1538 | 1539 | "mime-db@>= 1.27.0 < 2", mime-db@~1.27.0: 1540 | version "1.27.0" 1541 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 1542 | 1543 | mime-types@^2.1.12, mime-types@~2.1.11, mime-types@~2.1.15, mime-types@~2.1.7: 1544 | version "2.1.15" 1545 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 1546 | dependencies: 1547 | mime-db "~1.27.0" 1548 | 1549 | mime@1.3.4, mime@^1.3.4: 1550 | version "1.3.4" 1551 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53" 1552 | 1553 | minimalistic-assert@^1.0.0: 1554 | version "1.0.0" 1555 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" 1556 | 1557 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: 1558 | version "1.0.1" 1559 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 1560 | 1561 | minimatch@^3.0.0, minimatch@^3.0.2: 1562 | version "3.0.3" 1563 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 1564 | dependencies: 1565 | brace-expansion "^1.0.0" 1566 | 1567 | minimist@0.0.8: 1568 | version "0.0.8" 1569 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1570 | 1571 | minimist@^1.2.0: 1572 | version "1.2.0" 1573 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1574 | 1575 | mkdirp@0.5.x, "mkdirp@>=0.5 0", mkdirp@^0.5.1, mkdirp@~0.5.0: 1576 | version "0.5.1" 1577 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1578 | dependencies: 1579 | minimist "0.0.8" 1580 | 1581 | ms@0.7.1: 1582 | version "0.7.1" 1583 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 1584 | 1585 | ms@0.7.2: 1586 | version "0.7.2" 1587 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 1588 | 1589 | nan@^2.3.0: 1590 | version "2.6.1" 1591 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.1.tgz#8c84f7b14c96b89f57fbc838012180ec8ca39a01" 1592 | 1593 | negotiator@0.6.1: 1594 | version "0.6.1" 1595 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" 1596 | 1597 | node-fetch@^1.0.1: 1598 | version "1.6.3" 1599 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.6.3.tgz#dc234edd6489982d58e8f0db4f695029abcd8c04" 1600 | dependencies: 1601 | encoding "^0.1.11" 1602 | is-stream "^1.0.1" 1603 | 1604 | node-libs-browser@^2.0.0: 1605 | version "2.0.0" 1606 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.0.0.tgz#a3a59ec97024985b46e958379646f96c4b616646" 1607 | dependencies: 1608 | assert "^1.1.1" 1609 | browserify-zlib "^0.1.4" 1610 | buffer "^4.3.0" 1611 | console-browserify "^1.1.0" 1612 | constants-browserify "^1.0.0" 1613 | crypto-browserify "^3.11.0" 1614 | domain-browser "^1.1.1" 1615 | events "^1.0.0" 1616 | https-browserify "0.0.1" 1617 | os-browserify "^0.2.0" 1618 | path-browserify "0.0.0" 1619 | process "^0.11.0" 1620 | punycode "^1.2.4" 1621 | querystring-es3 "^0.2.0" 1622 | readable-stream "^2.0.5" 1623 | stream-browserify "^2.0.1" 1624 | stream-http "^2.3.1" 1625 | string_decoder "^0.10.25" 1626 | timers-browserify "^2.0.2" 1627 | tty-browserify "0.0.0" 1628 | url "^0.11.0" 1629 | util "^0.10.3" 1630 | vm-browserify "0.0.4" 1631 | 1632 | node-pre-gyp@^0.6.29: 1633 | version "0.6.34" 1634 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.34.tgz#94ad1c798a11d7fc67381b50d47f8cc18d9799f7" 1635 | dependencies: 1636 | mkdirp "^0.5.1" 1637 | nopt "^4.0.1" 1638 | npmlog "^4.0.2" 1639 | rc "^1.1.7" 1640 | request "^2.81.0" 1641 | rimraf "^2.6.1" 1642 | semver "^5.3.0" 1643 | tar "^2.2.1" 1644 | tar-pack "^3.4.0" 1645 | 1646 | nopt@^4.0.1: 1647 | version "4.0.1" 1648 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1649 | dependencies: 1650 | abbrev "1" 1651 | osenv "^0.1.4" 1652 | 1653 | normalize-package-data@^2.3.2: 1654 | version "2.3.6" 1655 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.6.tgz#498fa420c96401f787402ba21e600def9f981fff" 1656 | dependencies: 1657 | hosted-git-info "^2.1.4" 1658 | is-builtin-module "^1.0.0" 1659 | semver "2 || 3 || 4 || 5" 1660 | validate-npm-package-license "^3.0.1" 1661 | 1662 | normalize-path@^2.0.1: 1663 | version "2.1.1" 1664 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1665 | dependencies: 1666 | remove-trailing-separator "^1.0.1" 1667 | 1668 | npmlog@^4.0.2: 1669 | version "4.0.2" 1670 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f" 1671 | dependencies: 1672 | are-we-there-yet "~1.1.2" 1673 | console-control-strings "~1.1.0" 1674 | gauge "~2.7.1" 1675 | set-blocking "~2.0.0" 1676 | 1677 | number-is-nan@^1.0.0: 1678 | version "1.0.1" 1679 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1680 | 1681 | oauth-sign@~0.8.1: 1682 | version "0.8.2" 1683 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1684 | 1685 | object-assign@^4.0.1, object-assign@^4.1.0: 1686 | version "4.1.1" 1687 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1688 | 1689 | object.omit@^2.0.0: 1690 | version "2.0.1" 1691 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1692 | dependencies: 1693 | for-own "^0.1.4" 1694 | is-extendable "^0.1.1" 1695 | 1696 | obuf@^1.0.0, obuf@^1.1.0: 1697 | version "1.1.1" 1698 | resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.1.tgz#104124b6c602c6796881a042541d36db43a5264e" 1699 | 1700 | on-finished@~2.3.0: 1701 | version "2.3.0" 1702 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 1703 | dependencies: 1704 | ee-first "1.1.1" 1705 | 1706 | on-headers@~1.0.1: 1707 | version "1.0.1" 1708 | resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.1.tgz#928f5d0f470d49342651ea6794b0857c100693f7" 1709 | 1710 | once@^1.3.0, once@^1.3.3: 1711 | version "1.4.0" 1712 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1713 | dependencies: 1714 | wrappy "1" 1715 | 1716 | opn@4.0.2: 1717 | version "4.0.2" 1718 | resolved "https://registry.yarnpkg.com/opn/-/opn-4.0.2.tgz#7abc22e644dff63b0a96d5ab7f2790c0f01abc95" 1719 | dependencies: 1720 | object-assign "^4.0.1" 1721 | pinkie-promise "^2.0.0" 1722 | 1723 | original@>=0.0.5: 1724 | version "1.0.0" 1725 | resolved "https://registry.yarnpkg.com/original/-/original-1.0.0.tgz#9147f93fa1696d04be61e01bd50baeaca656bd3b" 1726 | dependencies: 1727 | url-parse "1.0.x" 1728 | 1729 | os-browserify@^0.2.0: 1730 | version "0.2.1" 1731 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.2.1.tgz#63fc4ccee5d2d7763d26bbf8601078e6c2e0044f" 1732 | 1733 | os-homedir@^1.0.0: 1734 | version "1.0.2" 1735 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1736 | 1737 | os-locale@^1.4.0: 1738 | version "1.4.0" 1739 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 1740 | dependencies: 1741 | lcid "^1.0.0" 1742 | 1743 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 1744 | version "1.0.2" 1745 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1746 | 1747 | osenv@^0.1.4: 1748 | version "0.1.4" 1749 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 1750 | dependencies: 1751 | os-homedir "^1.0.0" 1752 | os-tmpdir "^1.0.0" 1753 | 1754 | pako@~0.2.0: 1755 | version "0.2.9" 1756 | resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" 1757 | 1758 | parse-asn1@^5.0.0: 1759 | version "5.1.0" 1760 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712" 1761 | dependencies: 1762 | asn1.js "^4.0.0" 1763 | browserify-aes "^1.0.0" 1764 | create-hash "^1.1.0" 1765 | evp_bytestokey "^1.0.0" 1766 | pbkdf2 "^3.0.3" 1767 | 1768 | parse-glob@^3.0.4: 1769 | version "3.0.4" 1770 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1771 | dependencies: 1772 | glob-base "^0.3.0" 1773 | is-dotfile "^1.0.0" 1774 | is-extglob "^1.0.0" 1775 | is-glob "^2.0.0" 1776 | 1777 | parse-json@^2.2.0: 1778 | version "2.2.0" 1779 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1780 | dependencies: 1781 | error-ex "^1.2.0" 1782 | 1783 | parseurl@~1.3.1: 1784 | version "1.3.1" 1785 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.1.tgz#c8ab8c9223ba34888aa64a297b28853bec18da56" 1786 | 1787 | path-browserify@0.0.0: 1788 | version "0.0.0" 1789 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 1790 | 1791 | path-exists@^2.0.0: 1792 | version "2.1.0" 1793 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1794 | dependencies: 1795 | pinkie-promise "^2.0.0" 1796 | 1797 | path-is-absolute@^1.0.0: 1798 | version "1.0.1" 1799 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1800 | 1801 | path-to-regexp@0.1.7: 1802 | version "0.1.7" 1803 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" 1804 | 1805 | path-type@^1.0.0: 1806 | version "1.1.0" 1807 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 1808 | dependencies: 1809 | graceful-fs "^4.1.2" 1810 | pify "^2.0.0" 1811 | pinkie-promise "^2.0.0" 1812 | 1813 | pbkdf2@^3.0.3: 1814 | version "3.0.9" 1815 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.9.tgz#f2c4b25a600058b3c3773c086c37dbbee1ffe693" 1816 | dependencies: 1817 | create-hmac "^1.1.2" 1818 | 1819 | performance-now@^0.2.0: 1820 | version "0.2.0" 1821 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 1822 | 1823 | pify@^2.0.0: 1824 | version "2.3.0" 1825 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1826 | 1827 | pinkie-promise@^2.0.0: 1828 | version "2.0.1" 1829 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1830 | dependencies: 1831 | pinkie "^2.0.0" 1832 | 1833 | pinkie@^2.0.0: 1834 | version "2.0.4" 1835 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1836 | 1837 | pkg-dir@^1.0.0: 1838 | version "1.0.0" 1839 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 1840 | dependencies: 1841 | find-up "^1.0.0" 1842 | 1843 | portfinder@^1.0.9: 1844 | version "1.0.13" 1845 | resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.13.tgz#bb32ecd87c27104ae6ee44b5a3ccbf0ebb1aede9" 1846 | dependencies: 1847 | async "^1.5.2" 1848 | debug "^2.2.0" 1849 | mkdirp "0.5.x" 1850 | 1851 | preserve@^0.2.0: 1852 | version "0.2.0" 1853 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1854 | 1855 | private@^0.1.6: 1856 | version "0.1.7" 1857 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 1858 | 1859 | process-nextick-args@~1.0.6: 1860 | version "1.0.7" 1861 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1862 | 1863 | process@^0.11.0: 1864 | version "0.11.9" 1865 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.9.tgz#7bd5ad21aa6253e7da8682264f1e11d11c0318c1" 1866 | 1867 | promise@^7.1.1: 1868 | version "7.1.1" 1869 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.1.1.tgz#489654c692616b8aa55b0724fa809bb7db49c5bf" 1870 | dependencies: 1871 | asap "~2.0.3" 1872 | 1873 | prop-types@^15.5.2, prop-types@~15.5.0: 1874 | version "15.5.6" 1875 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.5.6.tgz#797a915b1714b645ebb7c5d6cc690346205bd2aa" 1876 | dependencies: 1877 | fbjs "^0.8.9" 1878 | 1879 | proxy-addr@~1.1.3: 1880 | version "1.1.4" 1881 | resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-1.1.4.tgz#27e545f6960a44a627d9b44467e35c1b6b4ce2f3" 1882 | dependencies: 1883 | forwarded "~0.1.0" 1884 | ipaddr.js "1.3.0" 1885 | 1886 | prr@~0.0.0: 1887 | version "0.0.0" 1888 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 1889 | 1890 | public-encrypt@^4.0.0: 1891 | version "4.0.0" 1892 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" 1893 | dependencies: 1894 | bn.js "^4.1.0" 1895 | browserify-rsa "^4.0.0" 1896 | create-hash "^1.1.0" 1897 | parse-asn1 "^5.0.0" 1898 | randombytes "^2.0.1" 1899 | 1900 | punycode@1.3.2: 1901 | version "1.3.2" 1902 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 1903 | 1904 | punycode@^1.2.4, punycode@^1.4.1: 1905 | version "1.4.1" 1906 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1907 | 1908 | qs@6.4.0, qs@~6.4.0: 1909 | version "6.4.0" 1910 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 1911 | 1912 | querystring-es3@^0.2.0: 1913 | version "0.2.1" 1914 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 1915 | 1916 | querystring@0.2.0: 1917 | version "0.2.0" 1918 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 1919 | 1920 | querystringify@0.0.x: 1921 | version "0.0.4" 1922 | resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-0.0.4.tgz#0cf7f84f9463ff0ae51c4c4b142d95be37724d9c" 1923 | 1924 | randomatic@^1.1.3: 1925 | version "1.1.6" 1926 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 1927 | dependencies: 1928 | is-number "^2.0.2" 1929 | kind-of "^3.0.2" 1930 | 1931 | randombytes@^2.0.0, randombytes@^2.0.1: 1932 | version "2.0.3" 1933 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.3.tgz#674c99760901c3c4112771a31e521dc349cc09ec" 1934 | 1935 | range-parser@^1.0.3, range-parser@~1.2.0: 1936 | version "1.2.0" 1937 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" 1938 | 1939 | rc@^1.1.7: 1940 | version "1.2.1" 1941 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 1942 | dependencies: 1943 | deep-extend "~0.4.0" 1944 | ini "~1.3.0" 1945 | minimist "^1.2.0" 1946 | strip-json-comments "~2.0.1" 1947 | 1948 | react-dom@^15.5.3: 1949 | version "15.5.3" 1950 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-15.5.3.tgz#2ee127ce942df55da53111ae303316e68072b5c5" 1951 | dependencies: 1952 | fbjs "^0.8.9" 1953 | loose-envify "^1.1.0" 1954 | object-assign "^4.1.0" 1955 | prop-types "~15.5.0" 1956 | 1957 | react@^15.5.3: 1958 | version "15.5.3" 1959 | resolved "https://registry.yarnpkg.com/react/-/react-15.5.3.tgz#84055382c025dec4e3b902bb61a8697cc79c1258" 1960 | dependencies: 1961 | fbjs "^0.8.9" 1962 | loose-envify "^1.1.0" 1963 | object-assign "^4.1.0" 1964 | prop-types "^15.5.2" 1965 | 1966 | read-pkg-up@^1.0.1: 1967 | version "1.0.1" 1968 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 1969 | dependencies: 1970 | find-up "^1.0.0" 1971 | read-pkg "^1.0.0" 1972 | 1973 | read-pkg@^1.0.0: 1974 | version "1.1.0" 1975 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 1976 | dependencies: 1977 | load-json-file "^1.0.0" 1978 | normalize-package-data "^2.3.2" 1979 | path-type "^1.0.0" 1980 | 1981 | "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.1.4, readable-stream@^2.2.6: 1982 | version "2.2.9" 1983 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.9.tgz#cf78ec6f4a6d1eb43d26488cac97f042e74b7fc8" 1984 | dependencies: 1985 | buffer-shims "~1.0.0" 1986 | core-util-is "~1.0.0" 1987 | inherits "~2.0.1" 1988 | isarray "~1.0.0" 1989 | process-nextick-args "~1.0.6" 1990 | string_decoder "~1.0.0" 1991 | util-deprecate "~1.0.1" 1992 | 1993 | readdirp@^2.0.0: 1994 | version "2.1.0" 1995 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 1996 | dependencies: 1997 | graceful-fs "^4.1.2" 1998 | minimatch "^3.0.2" 1999 | readable-stream "^2.0.2" 2000 | set-immediate-shim "^1.0.1" 2001 | 2002 | regenerator-runtime@^0.10.0: 2003 | version "0.10.3" 2004 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.3.tgz#8c4367a904b51ea62a908ac310bf99ff90a82a3e" 2005 | 2006 | regex-cache@^0.4.2: 2007 | version "0.4.3" 2008 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2009 | dependencies: 2010 | is-equal-shallow "^0.1.3" 2011 | is-primitive "^2.0.0" 2012 | 2013 | remove-trailing-separator@^1.0.1: 2014 | version "1.0.1" 2015 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" 2016 | 2017 | repeat-element@^1.1.2: 2018 | version "1.1.2" 2019 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2020 | 2021 | repeat-string@^1.5.2: 2022 | version "1.6.1" 2023 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2024 | 2025 | repeating@^2.0.0: 2026 | version "2.0.1" 2027 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2028 | dependencies: 2029 | is-finite "^1.0.0" 2030 | 2031 | request@^2.81.0: 2032 | version "2.81.0" 2033 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2034 | dependencies: 2035 | aws-sign2 "~0.6.0" 2036 | aws4 "^1.2.1" 2037 | caseless "~0.12.0" 2038 | combined-stream "~1.0.5" 2039 | extend "~3.0.0" 2040 | forever-agent "~0.6.1" 2041 | form-data "~2.1.1" 2042 | har-validator "~4.2.1" 2043 | hawk "~3.1.3" 2044 | http-signature "~1.1.0" 2045 | is-typedarray "~1.0.0" 2046 | isstream "~0.1.2" 2047 | json-stringify-safe "~5.0.1" 2048 | mime-types "~2.1.7" 2049 | oauth-sign "~0.8.1" 2050 | performance-now "^0.2.0" 2051 | qs "~6.4.0" 2052 | safe-buffer "^5.0.1" 2053 | stringstream "~0.0.4" 2054 | tough-cookie "~2.3.0" 2055 | tunnel-agent "^0.6.0" 2056 | uuid "^3.0.0" 2057 | 2058 | require-directory@^2.1.1: 2059 | version "2.1.1" 2060 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2061 | 2062 | require-main-filename@^1.0.1: 2063 | version "1.0.1" 2064 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2065 | 2066 | requires-port@1.0.x, requires-port@1.x.x: 2067 | version "1.0.0" 2068 | resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" 2069 | 2070 | right-align@^0.1.1: 2071 | version "0.1.3" 2072 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2073 | dependencies: 2074 | align-text "^0.1.1" 2075 | 2076 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1: 2077 | version "2.6.1" 2078 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 2079 | dependencies: 2080 | glob "^7.0.5" 2081 | 2082 | ripemd160@^1.0.0: 2083 | version "1.0.1" 2084 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-1.0.1.tgz#93a4bbd4942bc574b69a8fa57c71de10ecca7d6e" 2085 | 2086 | safe-buffer@^5.0.1: 2087 | version "5.0.1" 2088 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 2089 | 2090 | select-hose@^2.0.0: 2091 | version "2.0.0" 2092 | resolved "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca" 2093 | 2094 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 2095 | version "5.3.0" 2096 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 2097 | 2098 | send@0.15.1: 2099 | version "0.15.1" 2100 | resolved "https://registry.yarnpkg.com/send/-/send-0.15.1.tgz#8a02354c26e6f5cca700065f5f0cdeba90ec7b5f" 2101 | dependencies: 2102 | debug "2.6.1" 2103 | depd "~1.1.0" 2104 | destroy "~1.0.4" 2105 | encodeurl "~1.0.1" 2106 | escape-html "~1.0.3" 2107 | etag "~1.8.0" 2108 | fresh "0.5.0" 2109 | http-errors "~1.6.1" 2110 | mime "1.3.4" 2111 | ms "0.7.2" 2112 | on-finished "~2.3.0" 2113 | range-parser "~1.2.0" 2114 | statuses "~1.3.1" 2115 | 2116 | serve-index@^1.7.2: 2117 | version "1.8.0" 2118 | resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.8.0.tgz#7c5d96c13fb131101f93c1c5774f8516a1e78d3b" 2119 | dependencies: 2120 | accepts "~1.3.3" 2121 | batch "0.5.3" 2122 | debug "~2.2.0" 2123 | escape-html "~1.0.3" 2124 | http-errors "~1.5.0" 2125 | mime-types "~2.1.11" 2126 | parseurl "~1.3.1" 2127 | 2128 | serve-static@1.12.1: 2129 | version "1.12.1" 2130 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.12.1.tgz#7443a965e3ced647aceb5639fa06bf4d1bbe0039" 2131 | dependencies: 2132 | encodeurl "~1.0.1" 2133 | escape-html "~1.0.3" 2134 | parseurl "~1.3.1" 2135 | send "0.15.1" 2136 | 2137 | set-blocking@^2.0.0, set-blocking@~2.0.0: 2138 | version "2.0.0" 2139 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2140 | 2141 | set-immediate-shim@^1.0.1: 2142 | version "1.0.1" 2143 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2144 | 2145 | setimmediate@^1.0.4, setimmediate@^1.0.5: 2146 | version "1.0.5" 2147 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 2148 | 2149 | setprototypeof@1.0.2: 2150 | version "1.0.2" 2151 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.2.tgz#81a552141ec104b88e89ce383103ad5c66564d08" 2152 | 2153 | setprototypeof@1.0.3: 2154 | version "1.0.3" 2155 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04" 2156 | 2157 | sha.js@^2.3.6: 2158 | version "2.4.8" 2159 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.8.tgz#37068c2c476b6baf402d14a49c67f597921f634f" 2160 | dependencies: 2161 | inherits "^2.0.1" 2162 | 2163 | signal-exit@^3.0.0: 2164 | version "3.0.2" 2165 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2166 | 2167 | slash@^1.0.0: 2168 | version "1.0.0" 2169 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2170 | 2171 | sntp@1.x.x: 2172 | version "1.0.9" 2173 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2174 | dependencies: 2175 | hoek "2.x.x" 2176 | 2177 | sockjs-client@1.1.2: 2178 | version "1.1.2" 2179 | resolved "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.1.2.tgz#f0212a8550e4c9468c8cceaeefd2e3493c033ad5" 2180 | dependencies: 2181 | debug "^2.2.0" 2182 | eventsource "0.1.6" 2183 | faye-websocket "~0.11.0" 2184 | inherits "^2.0.1" 2185 | json3 "^3.3.2" 2186 | url-parse "^1.1.1" 2187 | 2188 | sockjs@0.3.18: 2189 | version "0.3.18" 2190 | resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.18.tgz#d9b289316ca7df77595ef299e075f0f937eb4207" 2191 | dependencies: 2192 | faye-websocket "^0.10.0" 2193 | uuid "^2.0.2" 2194 | 2195 | source-list-map@^1.1.1: 2196 | version "1.1.1" 2197 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-1.1.1.tgz#1a33ac210ca144d1e561f906ebccab5669ff4cb4" 2198 | 2199 | source-map-support@^0.4.2: 2200 | version "0.4.14" 2201 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.14.tgz#9d4463772598b86271b4f523f6c1f4e02a7d6aef" 2202 | dependencies: 2203 | source-map "^0.5.6" 2204 | 2205 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1, source-map@~0.5.3: 2206 | version "0.5.6" 2207 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 2208 | 2209 | spdx-correct@~1.0.0: 2210 | version "1.0.2" 2211 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2212 | dependencies: 2213 | spdx-license-ids "^1.0.2" 2214 | 2215 | spdx-expression-parse@~1.0.0: 2216 | version "1.0.4" 2217 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2218 | 2219 | spdx-license-ids@^1.0.2: 2220 | version "1.2.2" 2221 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2222 | 2223 | spdy-transport@^2.0.15: 2224 | version "2.0.18" 2225 | resolved "https://registry.yarnpkg.com/spdy-transport/-/spdy-transport-2.0.18.tgz#43fc9c56be2cccc12bb3e2754aa971154e836ea6" 2226 | dependencies: 2227 | debug "^2.2.0" 2228 | hpack.js "^2.1.6" 2229 | obuf "^1.1.0" 2230 | readable-stream "^2.0.1" 2231 | wbuf "^1.4.0" 2232 | 2233 | spdy@^3.4.1: 2234 | version "3.4.4" 2235 | resolved "https://registry.yarnpkg.com/spdy/-/spdy-3.4.4.tgz#e0406407ca90ff01b553eb013505442649f5a819" 2236 | dependencies: 2237 | debug "^2.2.0" 2238 | handle-thing "^1.2.4" 2239 | http-deceiver "^1.2.4" 2240 | select-hose "^2.0.0" 2241 | spdy-transport "^2.0.15" 2242 | 2243 | sshpk@^1.7.0: 2244 | version "1.11.0" 2245 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.11.0.tgz#2d8d5ebb4a6fab28ffba37fa62a90f4a3ea59d77" 2246 | dependencies: 2247 | asn1 "~0.2.3" 2248 | assert-plus "^1.0.0" 2249 | dashdash "^1.12.0" 2250 | getpass "^0.1.1" 2251 | optionalDependencies: 2252 | bcrypt-pbkdf "^1.0.0" 2253 | ecc-jsbn "~0.1.1" 2254 | jodid25519 "^1.0.0" 2255 | jsbn "~0.1.0" 2256 | tweetnacl "~0.14.0" 2257 | 2258 | "statuses@>= 1.3.1 < 2", statuses@~1.3.1: 2259 | version "1.3.1" 2260 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" 2261 | 2262 | stream-browserify@^2.0.1: 2263 | version "2.0.1" 2264 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" 2265 | dependencies: 2266 | inherits "~2.0.1" 2267 | readable-stream "^2.0.2" 2268 | 2269 | stream-http@^2.3.1: 2270 | version "2.7.0" 2271 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.7.0.tgz#cec1f4e3b494bc4a81b451808970f8b20b4ed5f6" 2272 | dependencies: 2273 | builtin-status-codes "^3.0.0" 2274 | inherits "^2.0.1" 2275 | readable-stream "^2.2.6" 2276 | to-arraybuffer "^1.0.0" 2277 | xtend "^4.0.0" 2278 | 2279 | string-width@^1.0.1, string-width@^1.0.2: 2280 | version "1.0.2" 2281 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2282 | dependencies: 2283 | code-point-at "^1.0.0" 2284 | is-fullwidth-code-point "^1.0.0" 2285 | strip-ansi "^3.0.0" 2286 | 2287 | string_decoder@^0.10.25: 2288 | version "0.10.31" 2289 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 2290 | 2291 | string_decoder@~1.0.0: 2292 | version "1.0.0" 2293 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.0.tgz#f06f41157b664d86069f84bdbdc9b0d8ab281667" 2294 | dependencies: 2295 | buffer-shims "~1.0.0" 2296 | 2297 | stringstream@~0.0.4: 2298 | version "0.0.5" 2299 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2300 | 2301 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2302 | version "3.0.1" 2303 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2304 | dependencies: 2305 | ansi-regex "^2.0.0" 2306 | 2307 | strip-bom@^2.0.0: 2308 | version "2.0.0" 2309 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2310 | dependencies: 2311 | is-utf8 "^0.2.0" 2312 | 2313 | strip-json-comments@~2.0.1: 2314 | version "2.0.1" 2315 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2316 | 2317 | supports-color@^2.0.0: 2318 | version "2.0.0" 2319 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2320 | 2321 | supports-color@^3.1.0, supports-color@^3.1.1: 2322 | version "3.2.3" 2323 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 2324 | dependencies: 2325 | has-flag "^1.0.0" 2326 | 2327 | tapable@^0.2.5, tapable@~0.2.5: 2328 | version "0.2.6" 2329 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.6.tgz#206be8e188860b514425375e6f1ae89bfb01fd8d" 2330 | 2331 | tar-pack@^3.4.0: 2332 | version "3.4.0" 2333 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 2334 | dependencies: 2335 | debug "^2.2.0" 2336 | fstream "^1.0.10" 2337 | fstream-ignore "^1.0.5" 2338 | once "^1.3.3" 2339 | readable-stream "^2.1.4" 2340 | rimraf "^2.5.1" 2341 | tar "^2.2.1" 2342 | uid-number "^0.0.6" 2343 | 2344 | tar@^2.2.1: 2345 | version "2.2.1" 2346 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 2347 | dependencies: 2348 | block-stream "*" 2349 | fstream "^1.0.2" 2350 | inherits "2" 2351 | 2352 | timers-browserify@^2.0.2: 2353 | version "2.0.2" 2354 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.2.tgz#ab4883cf597dcd50af211349a00fbca56ac86b86" 2355 | dependencies: 2356 | setimmediate "^1.0.4" 2357 | 2358 | to-arraybuffer@^1.0.0: 2359 | version "1.0.1" 2360 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 2361 | 2362 | to-fast-properties@^1.0.1: 2363 | version "1.0.2" 2364 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 2365 | 2366 | tough-cookie@~2.3.0: 2367 | version "2.3.2" 2368 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 2369 | dependencies: 2370 | punycode "^1.4.1" 2371 | 2372 | trim-right@^1.0.1: 2373 | version "1.0.1" 2374 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2375 | 2376 | tty-browserify@0.0.0: 2377 | version "0.0.0" 2378 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 2379 | 2380 | tunnel-agent@^0.6.0: 2381 | version "0.6.0" 2382 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2383 | dependencies: 2384 | safe-buffer "^5.0.1" 2385 | 2386 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2387 | version "0.14.5" 2388 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2389 | 2390 | type-is@~1.6.14: 2391 | version "1.6.15" 2392 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.15.tgz#cab10fb4909e441c82842eafe1ad646c81804410" 2393 | dependencies: 2394 | media-typer "0.3.0" 2395 | mime-types "~2.1.15" 2396 | 2397 | ua-parser-js@^0.7.9: 2398 | version "0.7.12" 2399 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.12.tgz#04c81a99bdd5dc52263ea29d24c6bf8d4818a4bb" 2400 | 2401 | uglify-js@^2.8.5: 2402 | version "2.8.22" 2403 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.22.tgz#d54934778a8da14903fa29a326fb24c0ab51a1a0" 2404 | dependencies: 2405 | source-map "~0.5.1" 2406 | yargs "~3.10.0" 2407 | optionalDependencies: 2408 | uglify-to-browserify "~1.0.0" 2409 | 2410 | uglify-to-browserify@~1.0.0: 2411 | version "1.0.2" 2412 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 2413 | 2414 | uid-number@^0.0.6: 2415 | version "0.0.6" 2416 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 2417 | 2418 | unpipe@~1.0.0: 2419 | version "1.0.0" 2420 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 2421 | 2422 | url-parse@1.0.x: 2423 | version "1.0.5" 2424 | resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.0.5.tgz#0854860422afdcfefeb6c965c662d4800169927b" 2425 | dependencies: 2426 | querystringify "0.0.x" 2427 | requires-port "1.0.x" 2428 | 2429 | url-parse@^1.1.1: 2430 | version "1.1.8" 2431 | resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.1.8.tgz#7a65b3a8d57a1e86af6b4e2276e34774167c0156" 2432 | dependencies: 2433 | querystringify "0.0.x" 2434 | requires-port "1.0.x" 2435 | 2436 | url@^0.11.0: 2437 | version "0.11.0" 2438 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 2439 | dependencies: 2440 | punycode "1.3.2" 2441 | querystring "0.2.0" 2442 | 2443 | util-deprecate@~1.0.1: 2444 | version "1.0.2" 2445 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2446 | 2447 | util@0.10.3, util@^0.10.3: 2448 | version "0.10.3" 2449 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 2450 | dependencies: 2451 | inherits "2.0.1" 2452 | 2453 | utils-merge@1.0.0: 2454 | version "1.0.0" 2455 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8" 2456 | 2457 | uuid@^2.0.2: 2458 | version "2.0.3" 2459 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" 2460 | 2461 | uuid@^3.0.0: 2462 | version "3.0.1" 2463 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 2464 | 2465 | validate-npm-package-license@^3.0.1: 2466 | version "3.0.1" 2467 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 2468 | dependencies: 2469 | spdx-correct "~1.0.0" 2470 | spdx-expression-parse "~1.0.0" 2471 | 2472 | vary@~1.1.0: 2473 | version "1.1.1" 2474 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.1.tgz#67535ebb694c1d52257457984665323f587e8d37" 2475 | 2476 | verror@1.3.6: 2477 | version "1.3.6" 2478 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 2479 | dependencies: 2480 | extsprintf "1.0.2" 2481 | 2482 | vm-browserify@0.0.4: 2483 | version "0.0.4" 2484 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 2485 | dependencies: 2486 | indexof "0.0.1" 2487 | 2488 | watchpack@^1.3.1: 2489 | version "1.3.1" 2490 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.3.1.tgz#7d8693907b28ce6013e7f3610aa2a1acf07dad87" 2491 | dependencies: 2492 | async "^2.1.2" 2493 | chokidar "^1.4.3" 2494 | graceful-fs "^4.1.2" 2495 | 2496 | wbuf@^1.1.0, wbuf@^1.4.0: 2497 | version "1.7.2" 2498 | resolved "https://registry.yarnpkg.com/wbuf/-/wbuf-1.7.2.tgz#d697b99f1f59512df2751be42769c1580b5801fe" 2499 | dependencies: 2500 | minimalistic-assert "^1.0.0" 2501 | 2502 | webpack-dev-middleware@^1.9.0: 2503 | version "1.10.1" 2504 | resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-1.10.1.tgz#c6b4cf428139cf1aefbe06a0c00fdb4f8da2f893" 2505 | dependencies: 2506 | memory-fs "~0.4.1" 2507 | mime "^1.3.4" 2508 | path-is-absolute "^1.0.0" 2509 | range-parser "^1.0.3" 2510 | 2511 | webpack-dev-server@^2.4.2: 2512 | version "2.4.2" 2513 | resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-2.4.2.tgz#cf595d6b40878452b6d2ad7229056b686f8a16be" 2514 | dependencies: 2515 | ansi-html "0.0.7" 2516 | chokidar "^1.6.0" 2517 | compression "^1.5.2" 2518 | connect-history-api-fallback "^1.3.0" 2519 | express "^4.13.3" 2520 | html-entities "^1.2.0" 2521 | http-proxy-middleware "~0.17.4" 2522 | opn "4.0.2" 2523 | portfinder "^1.0.9" 2524 | serve-index "^1.7.2" 2525 | sockjs "0.3.18" 2526 | sockjs-client "1.1.2" 2527 | spdy "^3.4.1" 2528 | strip-ansi "^3.0.0" 2529 | supports-color "^3.1.1" 2530 | webpack-dev-middleware "^1.9.0" 2531 | yargs "^6.0.0" 2532 | 2533 | webpack-sources@^0.2.3: 2534 | version "0.2.3" 2535 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-0.2.3.tgz#17c62bfaf13c707f9d02c479e0dcdde8380697fb" 2536 | dependencies: 2537 | source-list-map "^1.1.1" 2538 | source-map "~0.5.3" 2539 | 2540 | webpack@^2.3.3: 2541 | version "2.3.3" 2542 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-2.3.3.tgz#eecc083c18fb7bf958ea4f40b57a6640c5a0cc78" 2543 | dependencies: 2544 | acorn "^4.0.4" 2545 | acorn-dynamic-import "^2.0.0" 2546 | ajv "^4.7.0" 2547 | ajv-keywords "^1.1.1" 2548 | async "^2.1.2" 2549 | enhanced-resolve "^3.0.0" 2550 | interpret "^1.0.0" 2551 | json-loader "^0.5.4" 2552 | loader-runner "^2.3.0" 2553 | loader-utils "^0.2.16" 2554 | memory-fs "~0.4.1" 2555 | mkdirp "~0.5.0" 2556 | node-libs-browser "^2.0.0" 2557 | source-map "^0.5.3" 2558 | supports-color "^3.1.0" 2559 | tapable "~0.2.5" 2560 | uglify-js "^2.8.5" 2561 | watchpack "^1.3.1" 2562 | webpack-sources "^0.2.3" 2563 | yargs "^6.0.0" 2564 | 2565 | websocket-driver@>=0.5.1: 2566 | version "0.6.5" 2567 | resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.6.5.tgz#5cb2556ceb85f4373c6d8238aa691c8454e13a36" 2568 | dependencies: 2569 | websocket-extensions ">=0.1.1" 2570 | 2571 | websocket-extensions@>=0.1.1: 2572 | version "0.1.1" 2573 | resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.1.tgz#76899499c184b6ef754377c2dbb0cd6cb55d29e7" 2574 | 2575 | whatwg-fetch@>=0.10.0: 2576 | version "2.0.3" 2577 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84" 2578 | 2579 | which-module@^1.0.0: 2580 | version "1.0.0" 2581 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 2582 | 2583 | wide-align@^1.1.0: 2584 | version "1.1.0" 2585 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 2586 | dependencies: 2587 | string-width "^1.0.1" 2588 | 2589 | window-size@0.1.0: 2590 | version "0.1.0" 2591 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 2592 | 2593 | wordwrap@0.0.2: 2594 | version "0.0.2" 2595 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 2596 | 2597 | wrap-ansi@^2.0.0: 2598 | version "2.1.0" 2599 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 2600 | dependencies: 2601 | string-width "^1.0.1" 2602 | strip-ansi "^3.0.1" 2603 | 2604 | wrappy@1: 2605 | version "1.0.2" 2606 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2607 | 2608 | xtend@^4.0.0: 2609 | version "4.0.1" 2610 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2611 | 2612 | y18n@^3.2.1: 2613 | version "3.2.1" 2614 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 2615 | 2616 | yargs-parser@^4.2.0: 2617 | version "4.2.1" 2618 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" 2619 | dependencies: 2620 | camelcase "^3.0.0" 2621 | 2622 | yargs@^6.0.0: 2623 | version "6.6.0" 2624 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" 2625 | dependencies: 2626 | camelcase "^3.0.0" 2627 | cliui "^3.2.0" 2628 | decamelize "^1.1.1" 2629 | get-caller-file "^1.0.1" 2630 | os-locale "^1.4.0" 2631 | read-pkg-up "^1.0.1" 2632 | require-directory "^2.1.1" 2633 | require-main-filename "^1.0.1" 2634 | set-blocking "^2.0.0" 2635 | string-width "^1.0.2" 2636 | which-module "^1.0.0" 2637 | y18n "^3.2.1" 2638 | yargs-parser "^4.2.0" 2639 | 2640 | yargs@~3.10.0: 2641 | version "3.10.0" 2642 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 2643 | dependencies: 2644 | camelcase "^1.0.2" 2645 | cliui "^2.1.0" 2646 | decamelize "^1.0.0" 2647 | window-size "0.1.0" 2648 | --------------------------------------------------------------------------------