From a9b70846e8fb8bae4c31928a41aa2236c573eb35 Mon Sep 17 00:00:00 2001 From: Craig Copeland Date: Sat, 2 Sep 2017 23:28:47 -0500 Subject: [PATCH 1/5] Star Wars jeopardy initial push. White board. Code base structure. Master object. Initialization. --- 08week/star-wars/.gitignore | 21 + 08week/star-wars/README.md | 2164 +++++++++ 08week/star-wars/package.json | 16 + 08week/star-wars/public/index.html | 10 + 08week/star-wars/src/Board.js | 24 + 08week/star-wars/src/Category.js | 21 + 08week/star-wars/src/Control.js | 18 + 08week/star-wars/src/Square.js | 15 + 08week/star-wars/src/SquareClass.js | 32 + 08week/star-wars/src/StarWars.js | 220 + 08week/star-wars/src/index.js | 5 + 08week/star-wars/starWars.zip | Bin 0 -> 4432 bytes 08week/star-wars/yarn.lock | 6522 +++++++++++++++++++++++++++ 13 files changed, 9068 insertions(+) create mode 100644 08week/star-wars/.gitignore create mode 100644 08week/star-wars/README.md create mode 100644 08week/star-wars/package.json create mode 100644 08week/star-wars/public/index.html create mode 100644 08week/star-wars/src/Board.js create mode 100644 08week/star-wars/src/Category.js create mode 100644 08week/star-wars/src/Control.js create mode 100644 08week/star-wars/src/Square.js create mode 100644 08week/star-wars/src/SquareClass.js create mode 100644 08week/star-wars/src/StarWars.js create mode 100644 08week/star-wars/src/index.js create mode 100644 08week/star-wars/starWars.zip create mode 100644 08week/star-wars/yarn.lock diff --git a/08week/star-wars/.gitignore b/08week/star-wars/.gitignore new file mode 100644 index 000000000..d30f40ef4 --- /dev/null +++ b/08week/star-wars/.gitignore @@ -0,0 +1,21 @@ +# See https://help.github.com/ignore-files/ for more about ignoring files. + +# dependencies +/node_modules + +# testing +/coverage + +# production +/build + +# misc +.DS_Store +.env.local +.env.development.local +.env.test.local +.env.production.local + +npm-debug.log* +yarn-debug.log* +yarn-error.log* diff --git a/08week/star-wars/README.md b/08week/star-wars/README.md new file mode 100644 index 000000000..c55ccdf94 --- /dev/null +++ b/08week/star-wars/README.md @@ -0,0 +1,2164 @@ +This project was bootstrapped with [Create React App](https://github.com/facebookincubator/create-react-app). + +Below you will find some information on how to perform common tasks.
+You can find the most recent version of this guide [here](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md). + +## Table of Contents + +- [Updating to New Releases](#updating-to-new-releases) +- [Sending Feedback](#sending-feedback) +- [Folder Structure](#folder-structure) +- [Available Scripts](#available-scripts) + - [npm start](#npm-start) + - [npm test](#npm-test) + - [npm run build](#npm-run-build) + - [npm run eject](#npm-run-eject) +- [Supported Language Features and Polyfills](#supported-language-features-and-polyfills) +- [Syntax Highlighting in the Editor](#syntax-highlighting-in-the-editor) +- [Displaying Lint Output in the Editor](#displaying-lint-output-in-the-editor) +- [Debugging in the Editor](#debugging-in-the-editor) +- [Formatting Code Automatically](#formatting-code-automatically) +- [Changing the Page ``](#changing-the-page-title) +- [Installing a Dependency](#installing-a-dependency) +- [Importing a Component](#importing-a-component) +- [Code Splitting](#code-splitting) +- [Adding a Stylesheet](#adding-a-stylesheet) +- [Post-Processing CSS](#post-processing-css) +- [Adding a CSS Preprocessor (Sass, Less etc.)](#adding-a-css-preprocessor-sass-less-etc) +- [Adding Images, Fonts, and Files](#adding-images-fonts-and-files) +- [Using the `public` Folder](#using-the-public-folder) + - [Changing the HTML](#changing-the-html) + - [Adding Assets Outside of the Module System](#adding-assets-outside-of-the-module-system) + - [When to Use the `public` Folder](#when-to-use-the-public-folder) +- [Using Global Variables](#using-global-variables) +- [Adding Bootstrap](#adding-bootstrap) + - [Using a Custom Theme](#using-a-custom-theme) +- [Adding Flow](#adding-flow) +- [Adding Custom Environment Variables](#adding-custom-environment-variables) + - [Referencing Environment Variables in the HTML](#referencing-environment-variables-in-the-html) + - [Adding Temporary Environment Variables In Your Shell](#adding-temporary-environment-variables-in-your-shell) + - [Adding Development Environment Variables In `.env`](#adding-development-environment-variables-in-env) +- [Can I Use Decorators?](#can-i-use-decorators) +- [Integrating with an API Backend](#integrating-with-an-api-backend) + - [Node](#node) + - [Ruby on Rails](#ruby-on-rails) +- [Proxying API Requests in Development](#proxying-api-requests-in-development) + - ["Invalid Host Header" Errors After Configuring Proxy](#invalid-host-header-errors-after-configuring-proxy) + - [Configuring the Proxy Manually](#configuring-the-proxy-manually) + - [Configuring a WebSocket Proxy](#configuring-a-websocket-proxy) +- [Using HTTPS in Development](#using-https-in-development) +- [Generating Dynamic `<meta>` Tags on the Server](#generating-dynamic-meta-tags-on-the-server) +- [Pre-Rendering into Static HTML Files](#pre-rendering-into-static-html-files) +- [Injecting Data from the Server into the Page](#injecting-data-from-the-server-into-the-page) +- [Running Tests](#running-tests) + - [Filename Conventions](#filename-conventions) + - [Command Line Interface](#command-line-interface) + - [Version Control Integration](#version-control-integration) + - [Writing Tests](#writing-tests) + - [Testing Components](#testing-components) + - [Using Third Party Assertion Libraries](#using-third-party-assertion-libraries) + - [Initializing Test Environment](#initializing-test-environment) + - [Focusing and Excluding Tests](#focusing-and-excluding-tests) + - [Coverage Reporting](#coverage-reporting) + - [Continuous Integration](#continuous-integration) + - [Disabling jsdom](#disabling-jsdom) + - [Snapshot Testing](#snapshot-testing) + - [Editor Integration](#editor-integration) +- [Developing Components in Isolation](#developing-components-in-isolation) + - [Getting Started with Storybook](#getting-started-with-storybook) + - [Getting Started with Styleguidist](#getting-started-with-styleguidist) +- [Making a Progressive Web App](#making-a-progressive-web-app) + - [Opting Out of Caching](#opting-out-of-caching) + - [Offline-First Considerations](#offline-first-considerations) + - [Progressive Web App Metadata](#progressive-web-app-metadata) +- [Analyzing the Bundle Size](#analyzing-the-bundle-size) +- [Deployment](#deployment) + - [Static Server](#static-server) + - [Other Solutions](#other-solutions) + - [Serving Apps with Client-Side Routing](#serving-apps-with-client-side-routing) + - [Building for Relative Paths](#building-for-relative-paths) + - [Azure](#azure) + - [Firebase](#firebase) + - [GitHub Pages](#github-pages) + - [Heroku](#heroku) + - [Netlify](#netlify) + - [Now](#now) + - [S3 and CloudFront](#s3-and-cloudfront) + - [Surge](#surge) +- [Advanced Configuration](#advanced-configuration) +- [Troubleshooting](#troubleshooting) + - [`npm start` doesn’t detect changes](#npm-start-doesnt-detect-changes) + - [`npm test` hangs on macOS Sierra](#npm-test-hangs-on-macos-sierra) + - [`npm run build` exits too early](#npm-run-build-exits-too-early) + - [`npm run build` fails on Heroku](#npm-run-build-fails-on-heroku) + - [`npm run build` fails to minify](#npm-run-build-fails-to-minify) + - [Moment.js locales are missing](#momentjs-locales-are-missing) +- [Something Missing?](#something-missing) + +## Updating to New Releases + +Create React App is divided into two packages: + +* `create-react-app` is a global command-line utility that you use to create new projects. +* `react-scripts` is a development dependency in the generated projects (including this one). + +You almost never need to update `create-react-app` itself: it delegates all the setup to `react-scripts`. + +When you run `create-react-app`, it always creates the project with the latest version of `react-scripts` so you’ll get all the new features and improvements in newly created apps automatically. + +To update an existing project to a new version of `react-scripts`, [open the changelog](https://github.com/facebookincubator/create-react-app/blob/master/CHANGELOG.md), find the version you’re currently on (check `package.json` in this folder if you’re not sure), and apply the migration instructions for the newer versions. + +In most cases bumping the `react-scripts` version in `package.json` and running `npm install` in this folder should be enough, but it’s good to consult the [changelog](https://github.com/facebookincubator/create-react-app/blob/master/CHANGELOG.md) for potential breaking changes. + +We commit to keeping the breaking changes minimal so you can upgrade `react-scripts` painlessly. + +## Sending Feedback + +We are always open to [your feedback](https://github.com/facebookincubator/create-react-app/issues). + +## Folder Structure + +After creation, your project should look like this: + +``` +my-app/ + README.md + node_modules/ + package.json + public/ + index.html + favicon.ico + src/ + App.css + App.js + App.test.js + index.css + index.js + logo.svg +``` + +For the project to build, **these files must exist with exact filenames**: + +* `public/index.html` is the page template; +* `src/index.js` is the JavaScript entry point. + +You can delete or rename the other files. + +You may create subdirectories inside `src`. For faster rebuilds, only files inside `src` are processed by Webpack.<br> +You need to **put any JS and CSS files inside `src`**, otherwise Webpack won’t see them. + +Only files inside `public` can be used from `public/index.html`.<br> +Read instructions below for using assets from JavaScript and HTML. + +You can, however, create more top-level directories.<br> +They will not be included in the production build so you can use them for things like documentation. + +## Available Scripts + +In the project directory, you can run: + +### `npm start` + +Runs the app in the development mode.<br> +Open [http://localhost:3000](http://localhost:3000) to view it in the browser. + +The page will reload if you make edits.<br> +You will also see any lint errors in the console. + +### `npm test` + +Launches the test runner in the interactive watch mode.<br> +See the section about [running tests](#running-tests) for more information. + +### `npm run build` + +Builds the app for production to the `build` folder.<br> +It correctly bundles React in production mode and optimizes the build for the best performance. + +The build is minified and the filenames include the hashes.<br> +Your app is ready to be deployed! + +See the section about [deployment](#deployment) for more information. + +### `npm run eject` + +**Note: this is a one-way operation. Once you `eject`, you can’t go back!** + +If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. + +Instead, it will copy all the configuration files and the transitive dependencies (Webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own. + +You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it. + +## Supported Language Features and Polyfills + +This project supports a superset of the latest JavaScript standard.<br> +In addition to [ES6](https://github.com/lukehoban/es6features) syntax features, it also supports: + +* [Exponentiation Operator](https://github.com/rwaldron/exponentiation-operator) (ES2016). +* [Async/await](https://github.com/tc39/ecmascript-asyncawait) (ES2017). +* [Object Rest/Spread Properties](https://github.com/sebmarkbage/ecmascript-rest-spread) (stage 3 proposal). +* [Dynamic import()](https://github.com/tc39/proposal-dynamic-import) (stage 3 proposal) +* [Class Fields and Static Properties](https://github.com/tc39/proposal-class-public-fields) (stage 2 proposal). +* [JSX](https://facebook.github.io/react/docs/introducing-jsx.html) and [Flow](https://flowtype.org/) syntax. + +Learn more about [different proposal stages](https://babeljs.io/docs/plugins/#presets-stage-x-experimental-presets-). + +While we recommend to use experimental proposals with some caution, Facebook heavily uses these features in the product code, so we intend to provide [codemods](https://medium.com/@cpojer/effective-javascript-codemods-5a6686bb46fb) if any of these proposals change in the future. + +Note that **the project only includes a few ES6 [polyfills](https://en.wikipedia.org/wiki/Polyfill)**: + +* [`Object.assign()`](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Object/assign) via [`object-assign`](https://github.com/sindresorhus/object-assign). +* [`Promise`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) via [`promise`](https://github.com/then/promise). +* [`fetch()`](https://developer.mozilla.org/en/docs/Web/API/Fetch_API) via [`whatwg-fetch`](https://github.com/github/fetch). + +If you use any other ES6+ features that need **runtime support** (such as `Array.from()` or `Symbol`), make sure you are including the appropriate polyfills manually, or that the browsers you are targeting already support them. + +## Syntax Highlighting in the Editor + +To configure the syntax highlighting in your favorite text editor, head to the [relevant Babel documentation page](https://babeljs.io/docs/editors) and follow the instructions. Some of the most popular editors are covered. + +## Displaying Lint Output in the Editor + +>Note: this feature is available with `react-scripts@0.2.0` and higher.<br> +>It also only works with npm 3 or higher. + +Some editors, including Sublime Text, Atom, and Visual Studio Code, provide plugins for ESLint. + +They are not required for linting. You should see the linter output right in your terminal as well as the browser console. However, if you prefer the lint results to appear right in your editor, there are some extra steps you can do. + +You would need to install an ESLint plugin for your editor first. Then, add a file called `.eslintrc` to the project root: + +```js +{ + "extends": "react-app" +} +``` + +Now your editor should report the linting warnings. + +Note that even if you edit your `.eslintrc` file further, these changes will **only affect the editor integration**. They won’t affect the terminal and in-browser lint output. This is because Create React App intentionally provides a minimal set of rules that find common mistakes. + +If you want to enforce a coding style for your project, consider using [Prettier](https://github.com/jlongster/prettier) instead of ESLint style rules. + +## Debugging in the Editor + +**This feature is currently only supported by [Visual Studio Code](https://code.visualstudio.com) and [WebStorm](https://www.jetbrains.com/webstorm/).** + +Visual Studio Code and WebStorm support debugging out of the box with Create React App. This enables you as a developer to write and debug your React code without leaving the editor, and most importantly it enables you to have a continuous development workflow, where context switching is minimal, as you don’t have to switch between tools. + +### Visual Studio Code + +You would need to have the latest version of [VS Code](https://code.visualstudio.com) and VS Code [Chrome Debugger Extension](https://marketplace.visualstudio.com/items?itemName=msjsdiag.debugger-for-chrome) installed. + +Then add the block below to your `launch.json` file and put it inside the `.vscode` folder in your app’s root directory. + +```json +{ + "version": "0.2.0", + "configurations": [{ + "name": "Chrome", + "type": "chrome", + "request": "launch", + "url": "http://localhost:3000", + "webRoot": "${workspaceRoot}/src", + "userDataDir": "${workspaceRoot}/.vscode/chrome", + "sourceMapPathOverrides": { + "webpack:///src/*": "${webRoot}/*" + } + }] +} +``` +>Note: the URL may be different if you've made adjustments via the [HOST or PORT environment variables](#advanced-configuration). + +Start your app by running `npm start`, and start debugging in VS Code by pressing `F5` or by clicking the green debug icon. You can now write code, set breakpoints, make changes to the code, and debug your newly modified code—all from your editor. + +### WebStorm + +You would need to have [WebStorm](https://www.jetbrains.com/webstorm/) and [JetBrains IDE Support](https://chrome.google.com/webstore/detail/jetbrains-ide-support/hmhgeddbohgjknpmjagkdomcpobmllji) Chrome extension installed. + +In the WebStorm menu `Run` select `Edit Configurations...`. Then click `+` and select `JavaScript Debug`. Paste `http://localhost:3000` into the URL field and save the configuration. + +>Note: the URL may be different if you've made adjustments via the [HOST or PORT environment variables](#advanced-configuration). + +Start your app by running `npm start`, then press `^D` on macOS or `F9` on Windows and Linux or click the green debug icon to start debugging in WebStorm. + +The same way you can debug your application in IntelliJ IDEA Ultimate, PhpStorm, PyCharm Pro, and RubyMine. + +## Formatting Code Automatically + +Prettier is an opinionated code formatter with support for JavaScript, CSS and JSON. With Prettier you can format the code you write automatically to ensure a code style within your project. See the [Prettier's GitHub page](https://github.com/prettier/prettier) for more information, and look at this [page to see it in action](https://prettier.github.io/prettier/). + +To format our code whenever we make a commit in git, we need to install the following dependencies: + +```sh +npm install --save husky lint-staged prettier +``` + +Alternatively you may use `yarn`: + +```sh +yarn add husky lint-staged prettier +``` + +* `husky` makes it easy to use githooks as if they are npm scripts. +* `lint-staged` allows us to run scripts on staged files in git. See this [blog post about lint-staged to learn more about it](https://medium.com/@okonetchnikov/make-linting-great-again-f3890e1ad6b8). +* `prettier` is the JavaScript formatter we will run before commits. + +Now we can make sure every file is formatted correctly by adding a few lines to the `package.json` in the project root. + +Add the following line to `scripts` section: + +```diff + "scripts": { ++ "precommit": "lint-staged", + "start": "react-scripts start", + "build": "react-scripts build", +``` + +Next we add a 'lint-staged' field to the `package.json`, for example: + +```diff + "dependencies": { + // ... + }, ++ "lint-staged": { ++ "src/**/*.{js,jsx,json,css}": [ ++ "prettier --single-quote --write", ++ "git add" ++ ] ++ }, + "scripts": { +``` + +Now, whenever you make a commit, Prettier will format the changed files automatically. You can also run `./node_modules/.bin/prettier --single-quote --write "src/**/*.{js,jsx}"` to format your entire project for the first time. + +Next you might want to integrate Prettier in your favorite editor. Read the section on [Editor Integration](https://github.com/prettier/prettier#editor-integration) on the Prettier GitHub page. + +## Changing the Page `<title>` + +You can find the source HTML file in the `public` folder of the generated project. You may edit the `<title>` tag in it to change the title from “React App” to anything else. + +Note that normally you wouldn’t edit files in the `public` folder very often. For example, [adding a stylesheet](#adding-a-stylesheet) is done without touching the HTML. + +If you need to dynamically update the page title based on the content, you can use the browser [`document.title`](https://developer.mozilla.org/en-US/docs/Web/API/Document/title) API. For more complex scenarios when you want to change the title from React components, you can use [React Helmet](https://github.com/nfl/react-helmet), a third party library. + +If you use a custom server for your app in production and want to modify the title before it gets sent to the browser, you can follow advice in [this section](#generating-dynamic-meta-tags-on-the-server). Alternatively, you can pre-build each page as a static HTML file which then loads the JavaScript bundle, which is covered [here](#pre-rendering-into-static-html-files). + +## Installing a Dependency + +The generated project includes React and ReactDOM as dependencies. It also includes a set of scripts used by Create React App as a development dependency. You may install other dependencies (for example, React Router) with `npm`: + +```sh +npm install --save react-router +``` + +Alternatively you may use `yarn`: + +```sh +yarn add react-router +``` + +This works for any library, not just `react-router`. + +## Importing a Component + +This project setup supports ES6 modules thanks to Babel.<br> +While you can still use `require()` and `module.exports`, we encourage you to use [`import` and `export`](http://exploringjs.com/es6/ch_modules.html) instead. + +For example: + +### `Button.js` + +```js +import React, { Component } from 'react'; + +class Button extends Component { + render() { + // ... + } +} + +export default Button; // Don’t forget to use export default! +``` + +### `DangerButton.js` + + +```js +import React, { Component } from 'react'; +import Button from './Button'; // Import a component from another file + +class DangerButton extends Component { + render() { + return <Button color="red" />; + } +} + +export default DangerButton; +``` + +Be aware of the [difference between default and named exports](http://stackoverflow.com/questions/36795819/react-native-es-6-when-should-i-use-curly-braces-for-import/36796281#36796281). It is a common source of mistakes. + +We suggest that you stick to using default imports and exports when a module only exports a single thing (for example, a component). That’s what you get when you use `export default Button` and `import Button from './Button'`. + +Named exports are useful for utility modules that export several functions. A module may have at most one default export and as many named exports as you like. + +Learn more about ES6 modules: + +* [When to use the curly braces?](http://stackoverflow.com/questions/36795819/react-native-es-6-when-should-i-use-curly-braces-for-import/36796281#36796281) +* [Exploring ES6: Modules](http://exploringjs.com/es6/ch_modules.html) +* [Understanding ES6: Modules](https://leanpub.com/understandinges6/read#leanpub-auto-encapsulating-code-with-modules) + +## Code Splitting + +Instead of downloading the entire app before users can use it, code splitting allows you to split your code into small chunks which you can then load on demand. + +This project setup supports code splitting via [dynamic `import()`](http://2ality.com/2017/01/import-operator.html#loading-code-on-demand). Its [proposal](https://github.com/tc39/proposal-dynamic-import) is in stage 3. The `import()` function-like form takes the module name as an argument and returns a [`Promise`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) which always resolves to the namespace object of the module. + +Here is an example: + +### `moduleA.js` + +```js +const moduleA = 'Hello'; + +export { moduleA }; +``` +### `App.js` + +```js +import React, { Component } from 'react'; + +class App extends Component { + handleClick = () => { + import('./moduleA') + .then(({ moduleA }) => { + // Use moduleA + }) + .catch(err => { + // Handle failure + }); + }; + + render() { + return ( + <div> + <button onClick={this.handleClick}>Load</button> + </div> + ); + } +} + +export default App; +``` + +This will make `moduleA.js` and all its unique dependencies as a separate chunk that only loads after the user clicks the 'Load' button. + +You can also use it with `async` / `await` syntax if you prefer it. + +### With React Router + +If you are using React Router check out [this tutorial](http://serverless-stack.com/chapters/code-splitting-in-create-react-app.html) on how to use code splitting with it. You can find the companion GitHub repository [here](https://github.com/AnomalyInnovations/serverless-stack-demo-client/tree/code-splitting-in-create-react-app). + +## Adding a Stylesheet + +This project setup uses [Webpack](https://webpack.js.org/) for handling all assets. Webpack offers a custom way of “extending” the concept of `import` beyond JavaScript. To express that a JavaScript file depends on a CSS file, you need to **import the CSS from the JavaScript file**: + +### `Button.css` + +```css +.Button { + padding: 20px; +} +``` + +### `Button.js` + +```js +import React, { Component } from 'react'; +import './Button.css'; // Tell Webpack that Button.js uses these styles + +class Button extends Component { + render() { + // You can use them as regular CSS styles + return <div className="Button" />; + } +} +``` + +**This is not required for React** but many people find this feature convenient. You can read about the benefits of this approach [here](https://medium.com/seek-ui-engineering/block-element-modifying-your-javascript-components-d7f99fcab52b). However you should be aware that this makes your code less portable to other build tools and environments than Webpack. + +In development, expressing dependencies this way allows your styles to be reloaded on the fly as you edit them. In production, all CSS files will be concatenated into a single minified `.css` file in the build output. + +If you are concerned about using Webpack-specific semantics, you can put all your CSS right into `src/index.css`. It would still be imported from `src/index.js`, but you could always remove that import if you later migrate to a different build tool. + +## Post-Processing CSS + +This project setup minifies your CSS and adds vendor prefixes to it automatically through [Autoprefixer](https://github.com/postcss/autoprefixer) so you don’t need to worry about it. + +For example, this: + +```css +.App { + display: flex; + flex-direction: row; + align-items: center; +} +``` + +becomes this: + +```css +.App { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; +} +``` + +If you need to disable autoprefixing for some reason, [follow this section](https://github.com/postcss/autoprefixer#disabling). + +## Adding a CSS Preprocessor (Sass, Less etc.) + +Generally, we recommend that you don’t reuse the same CSS classes across different components. For example, instead of using a `.Button` CSS class in `<AcceptButton>` and `<RejectButton>` components, we recommend creating a `<Button>` component with its own `.Button` styles, that both `<AcceptButton>` and `<RejectButton>` can render (but [not inherit](https://facebook.github.io/react/docs/composition-vs-inheritance.html)). + +Following this rule often makes CSS preprocessors less useful, as features like mixins and nesting are replaced by component composition. You can, however, integrate a CSS preprocessor if you find it valuable. In this walkthrough, we will be using Sass, but you can also use Less, or another alternative. + +First, let’s install the command-line interface for Sass: + +```sh +npm install --save node-sass-chokidar +``` + +Alternatively you may use `yarn`: + +```sh +yarn add node-sass-chokidar +``` + +Then in `package.json`, add the following lines to `scripts`: + +```diff + "scripts": { ++ "build-css": "node-sass-chokidar src/ -o src/", ++ "watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive", + "start": "react-scripts start", + "build": "react-scripts build", + "test": "react-scripts test --env=jsdom", +``` + +>Note: To use a different preprocessor, replace `build-css` and `watch-css` commands according to your preprocessor’s documentation. + +Now you can rename `src/App.css` to `src/App.scss` and run `npm run watch-css`. The watcher will find every Sass file in `src` subdirectories, and create a corresponding CSS file next to it, in our case overwriting `src/App.css`. Since `src/App.js` still imports `src/App.css`, the styles become a part of your application. You can now edit `src/App.scss`, and `src/App.css` will be regenerated. + +To share variables between Sass files, you can use Sass imports. For example, `src/App.scss` and other component style files could include `@import "./shared.scss";` with variable definitions. + +To enable importing files without using relative paths, you can add the `--include-path` option to the command in `package.json`. + +``` +"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/", +"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive", +``` + +This will allow you to do imports like + +```scss +@import 'styles/_colors.scss'; // assuming a styles directory under src/ +@import 'nprogress/nprogress'; // importing a css file from the nprogress node module +``` + +At this point you might want to remove all CSS files from the source control, and add `src/**/*.css` to your `.gitignore` file. It is generally a good practice to keep the build products outside of the source control. + +As a final step, you may find it convenient to run `watch-css` automatically with `npm start`, and run `build-css` as a part of `npm run build`. You can use the `&&` operator to execute two scripts sequentially. However, there is no cross-platform way to run two scripts in parallel, so we will install a package for this: + +```sh +npm install --save npm-run-all +``` + +Alternatively you may use `yarn`: + +```sh +yarn add npm-run-all +``` + +Then we can change `start` and `build` scripts to include the CSS preprocessor commands: + +```diff + "scripts": { + "build-css": "node-sass-chokidar src/ -o src/", + "watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive", +- "start": "react-scripts start", +- "build": "react-scripts build", ++ "start-js": "react-scripts start", ++ "start": "npm-run-all -p watch-css start-js", ++ "build": "npm run build-css && react-scripts build", + "test": "react-scripts test --env=jsdom", + "eject": "react-scripts eject" + } +``` + +Now running `npm start` and `npm run build` also builds Sass files. + +**Why `node-sass-chokidar`?** + +`node-sass` has been reported as having the following issues: + +- `node-sass --watch` has been reported to have *performance issues* in certain conditions when used in a virtual machine or with docker. + +- Infinite styles compiling [#1939](https://github.com/facebookincubator/create-react-app/issues/1939) + +- `node-sass` has been reported as having issues with detecting new files in a directory [#1891](https://github.com/sass/node-sass/issues/1891) + + `node-sass-chokidar` is used here as it addresses these issues. + +## Adding Images, Fonts, and Files + +With Webpack, using static assets like images and fonts works similarly to CSS. + +You can **`import` a file right in a JavaScript module**. This tells Webpack to include that file in the bundle. Unlike CSS imports, importing a file gives you a string value. This value is the final path you can reference in your code, e.g. as the `src` attribute of an image or the `href` of a link to a PDF. + +To reduce the number of requests to the server, importing images that are less than 10,000 bytes returns a [data URI](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Data_URIs) instead of a path. This applies to the following file extensions: bmp, gif, jpg, jpeg, and png. SVG files are excluded due to [#1153](https://github.com/facebookincubator/create-react-app/issues/1153). + +Here is an example: + +```js +import React from 'react'; +import logo from './logo.png'; // Tell Webpack this JS file uses this image + +console.log(logo); // /logo.84287d09.png + +function Header() { + // Import result is the URL of your image + return <img src={logo} alt="Logo" />; +} + +export default Header; +``` + +This ensures that when the project is built, Webpack will correctly move the images into the build folder, and provide us with correct paths. + +This works in CSS too: + +```css +.Logo { + background-image: url(./logo.png); +} +``` + +Webpack finds all relative module references in CSS (they start with `./`) and replaces them with the final paths from the compiled bundle. If you make a typo or accidentally delete an important file, you will see a compilation error, just like when you import a non-existent JavaScript module. The final filenames in the compiled bundle are generated by Webpack from content hashes. If the file content changes in the future, Webpack will give it a different name in production so you don’t need to worry about long-term caching of assets. + +Please be advised that this is also a custom feature of Webpack. + +**It is not required for React** but many people enjoy it (and React Native uses a similar mechanism for images).<br> +An alternative way of handling static assets is described in the next section. + +## Using the `public` Folder + +>Note: this feature is available with `react-scripts@0.5.0` and higher. + +### Changing the HTML + +The `public` folder contains the HTML file so you can tweak it, for example, to [set the page title](#changing-the-page-title). +The `<script>` tag with the compiled code will be added to it automatically during the build process. + +### Adding Assets Outside of the Module System + +You can also add other assets to the `public` folder. + +Note that we normally encourage you to `import` assets in JavaScript files instead. +For example, see the sections on [adding a stylesheet](#adding-a-stylesheet) and [adding images and fonts](#adding-images-fonts-and-files). +This mechanism provides a number of benefits: + +* Scripts and stylesheets get minified and bundled together to avoid extra network requests. +* Missing files cause compilation errors instead of 404 errors for your users. +* Result filenames include content hashes so you don’t need to worry about browsers caching their old versions. + +However there is an **escape hatch** that you can use to add an asset outside of the module system. + +If you put a file into the `public` folder, it will **not** be processed by Webpack. Instead it will be copied into the build folder untouched. To reference assets in the `public` folder, you need to use a special variable called `PUBLIC_URL`. + +Inside `index.html`, you can use it like this: + +```html +<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico"> +``` + +Only files inside the `public` folder will be accessible by `%PUBLIC_URL%` prefix. If you need to use a file from `src` or `node_modules`, you’ll have to copy it there to explicitly specify your intention to make this file a part of the build. + +When you run `npm run build`, Create React App will substitute `%PUBLIC_URL%` with a correct absolute path so your project works even if you use client-side routing or host it at a non-root URL. + +In JavaScript code, you can use `process.env.PUBLIC_URL` for similar purposes: + +```js +render() { + // Note: this is an escape hatch and should be used sparingly! + // Normally we recommend using `import` for getting asset URLs + // as described in “Adding Images and Fonts” above this section. + return <img src={process.env.PUBLIC_URL + '/img/logo.png'} />; +} +``` + +Keep in mind the downsides of this approach: + +* None of the files in `public` folder get post-processed or minified. +* Missing files will not be called at compilation time, and will cause 404 errors for your users. +* Result filenames won’t include content hashes so you’ll need to add query arguments or rename them every time they change. + +### When to Use the `public` Folder + +Normally we recommend importing [stylesheets](#adding-a-stylesheet), [images, and fonts](#adding-images-fonts-and-files) from JavaScript. +The `public` folder is useful as a workaround for a number of less common cases: + +* You need a file with a specific name in the build output, such as [`manifest.webmanifest`](https://developer.mozilla.org/en-US/docs/Web/Manifest). +* You have thousands of images and need to dynamically reference their paths. +* You want to include a small script like [`pace.js`](http://github.hubspot.com/pace/docs/welcome/) outside of the bundled code. +* Some library may be incompatible with Webpack and you have no other option but to include it as a `<script>` tag. + +Note that if you add a `<script>` that declares global variables, you also need to read the next section on using them. + +## Using Global Variables + +When you include a script in the HTML file that defines global variables and try to use one of these variables in the code, the linter will complain because it cannot see the definition of the variable. + +You can avoid this by reading the global variable explicitly from the `window` object, for example: + +```js +const $ = window.$; +``` + +This makes it obvious you are using a global variable intentionally rather than because of a typo. + +Alternatively, you can force the linter to ignore any line by adding `// eslint-disable-line` after it. + +## Adding Bootstrap + +You don’t have to use [React Bootstrap](https://react-bootstrap.github.io) together with React but it is a popular library for integrating Bootstrap with React apps. If you need it, you can integrate it with Create React App by following these steps: + +Install React Bootstrap and Bootstrap from npm. React Bootstrap does not include Bootstrap CSS so this needs to be installed as well: + +```sh +npm install --save react-bootstrap bootstrap@3 +``` + +Alternatively you may use `yarn`: + +```sh +yarn add react-bootstrap bootstrap@3 +``` + +Import Bootstrap CSS and optionally Bootstrap theme CSS in the beginning of your ```src/index.js``` file: + +```js +import 'bootstrap/dist/css/bootstrap.css'; +import 'bootstrap/dist/css/bootstrap-theme.css'; +// Put any other imports below so that CSS from your +// components takes precedence over default styles. +``` + +Import required React Bootstrap components within ```src/App.js``` file or your custom component files: + +```js +import { Navbar, Jumbotron, Button } from 'react-bootstrap'; +``` + +Now you are ready to use the imported React Bootstrap components within your component hierarchy defined in the render method. Here is an example [`App.js`](https://gist.githubusercontent.com/gaearon/85d8c067f6af1e56277c82d19fd4da7b/raw/6158dd991b67284e9fc8d70b9d973efe87659d72/App.js) redone using React Bootstrap. + +### Using a Custom Theme + +Sometimes you might need to tweak the visual styles of Bootstrap (or equivalent package).<br> +We suggest the following approach: + +* Create a new package that depends on the package you wish to customize, e.g. Bootstrap. +* Add the necessary build steps to tweak the theme, and publish your package on npm. +* Install your own theme npm package as a dependency of your app. + +Here is an example of adding a [customized Bootstrap](https://medium.com/@tacomanator/customizing-create-react-app-aa9ffb88165) that follows these steps. + +## Adding Flow + +Flow is a static type checker that helps you write code with fewer bugs. Check out this [introduction to using static types in JavaScript](https://medium.com/@preethikasireddy/why-use-static-types-in-javascript-part-1-8382da1e0adb) if you are new to this concept. + +Recent versions of [Flow](http://flowtype.org/) work with Create React App projects out of the box. + +To add Flow to a Create React App project, follow these steps: + +1. Run `npm install --save flow-bin` (or `yarn add flow-bin`). +2. Add `"flow": "flow"` to the `scripts` section of your `package.json`. +3. Run `npm run flow init` (or `yarn flow init`) to create a [`.flowconfig` file](https://flowtype.org/docs/advanced-configuration.html) in the root directory. +4. Add `// @flow` to any files you want to type check (for example, to `src/App.js`). + +Now you can run `npm run flow` (or `yarn flow`) to check the files for type errors. +You can optionally use an IDE like [Nuclide](https://nuclide.io/docs/languages/flow/) for a better integrated experience. +In the future we plan to integrate it into Create React App even more closely. + +To learn more about Flow, check out [its documentation](https://flowtype.org/). + +## Adding Custom Environment Variables + +>Note: this feature is available with `react-scripts@0.2.3` and higher. + +Your project can consume variables declared in your environment as if they were declared locally in your JS files. By +default you will have `NODE_ENV` defined for you, and any other environment variables starting with +`REACT_APP_`. + +**The environment variables are embedded during the build time**. Since Create React App produces a static HTML/CSS/JS bundle, it can’t possibly read them at runtime. To read them at runtime, you would need to load HTML into memory on the server and replace placeholders in runtime, just like [described here](#injecting-data-from-the-server-into-the-page). Alternatively you can rebuild the app on the server anytime you change them. + +>Note: You must create custom environment variables beginning with `REACT_APP_`. Any other variables except `NODE_ENV` will be ignored to avoid accidentally [exposing a private key on the machine that could have the same name](https://github.com/facebookincubator/create-react-app/issues/865#issuecomment-252199527). Changing any environment variables will require you to restart the development server if it is running. + +These environment variables will be defined for you on `process.env`. For example, having an environment +variable named `REACT_APP_SECRET_CODE` will be exposed in your JS as `process.env.REACT_APP_SECRET_CODE`. + +There is also a special built-in environment variable called `NODE_ENV`. You can read it from `process.env.NODE_ENV`. When you run `npm start`, it is always equal to `'development'`, when you run `npm test` it is always equal to `'test'`, and when you run `npm run build` to make a production bundle, it is always equal to `'production'`. **You cannot override `NODE_ENV` manually.** This prevents developers from accidentally deploying a slow development build to production. + +These environment variables can be useful for displaying information conditionally based on where the project is +deployed or consuming sensitive data that lives outside of version control. + +First, you need to have environment variables defined. For example, let’s say you wanted to consume a secret defined +in the environment inside a `<form>`: + +```jsx +render() { + return ( + <div> + <small>You are running this application in <b>{process.env.NODE_ENV}</b> mode.</small> + <form> + <input type="hidden" defaultValue={process.env.REACT_APP_SECRET_CODE} /> + </form> + </div> + ); +} +``` + +During the build, `process.env.REACT_APP_SECRET_CODE` will be replaced with the current value of the `REACT_APP_SECRET_CODE` environment variable. Remember that the `NODE_ENV` variable will be set for you automatically. + +When you load the app in the browser and inspect the `<input>`, you will see its value set to `abcdef`, and the bold text will show the environment provided when using `npm start`: + +```html +<div> + <small>You are running this application in <b>development</b> mode.</small> + <form> + <input type="hidden" value="abcdef" /> + </form> +</div> +``` + +The above form is looking for a variable called `REACT_APP_SECRET_CODE` from the environment. In order to consume this +value, we need to have it defined in the environment. This can be done using two ways: either in your shell or in +a `.env` file. Both of these ways are described in the next few sections. + +Having access to the `NODE_ENV` is also useful for performing actions conditionally: + +```js +if (process.env.NODE_ENV !== 'production') { + analytics.disable(); +} +``` + +When you compile the app with `npm run build`, the minification step will strip out this condition, and the resulting bundle will be smaller. + +### Referencing Environment Variables in the HTML + +>Note: this feature is available with `react-scripts@0.9.0` and higher. + +You can also access the environment variables starting with `REACT_APP_` in the `public/index.html`. For example: + +```html +<title>%REACT_APP_WEBSITE_NAME% +``` + +Note that the caveats from the above section apply: + +* Apart from a few built-in variables (`NODE_ENV` and `PUBLIC_URL`), variable names must start with `REACT_APP_` to work. +* The environment variables are injected at build time. If you need to inject them at runtime, [follow this approach instead](#generating-dynamic-meta-tags-on-the-server). + +### Adding Temporary Environment Variables In Your Shell + +Defining environment variables can vary between OSes. It’s also important to know that this manner is temporary for the +life of the shell session. + +#### Windows (cmd.exe) + +```cmd +set REACT_APP_SECRET_CODE=abcdef&&npm start +``` + +(Note: the lack of whitespace is intentional.) + +#### Linux, macOS (Bash) + +```bash +REACT_APP_SECRET_CODE=abcdef npm start +``` + +### Adding Development Environment Variables In `.env` + +>Note: this feature is available with `react-scripts@0.5.0` and higher. + +To define permanent environment variables, create a file called `.env` in the root of your project: + +``` +REACT_APP_SECRET_CODE=abcdef +``` + +`.env` files **should be** checked into source control (with the exclusion of `.env*.local`). + +#### What other `.env` files are can be used? + +>Note: this feature is **available with `react-scripts@1.0.0` and higher**. + +* `.env`: Default. +* `.env.local`: Local overrides. **This file is loaded for all environments except test.** +* `.env.development`, `.env.test`, `.env.production`: Environment-specific settings. +* `.env.development.local`, `.env.test.local`, `.env.production.local`: Local overrides of environment-specific settings. + +Files on the left have more priority than files on the right: + +* `npm start`: `.env.development.local`, `.env.development`, `.env.local`, `.env` +* `npm run build`: `.env.production.local`, `.env.production`, `.env.local`, `.env` +* `npm test`: `.env.test.local`, `.env.test`, `.env` (note `.env.local` is missing) + +These variables will act as the defaults if the machine does not explicitly set them.
+Please refer to the [dotenv documentation](https://github.com/motdotla/dotenv) for more details. + +>Note: If you are defining environment variables for development, your CI and/or hosting platform will most likely need +these defined as well. Consult their documentation how to do this. For example, see the documentation for [Travis CI](https://docs.travis-ci.com/user/environment-variables/) or [Heroku](https://devcenter.heroku.com/articles/config-vars). + +## Can I Use Decorators? + +Many popular libraries use [decorators](https://medium.com/google-developers/exploring-es7-decorators-76ecb65fb841) in their documentation.
+Create React App doesn’t support decorator syntax at the moment because: + +* It is an experimental proposal and is subject to change. +* The current specification version is not officially supported by Babel. +* If the specification changes, we won’t be able to write a codemod because we don’t use them internally at Facebook. + +However in many cases you can rewrite decorator-based code without decorators just as fine.
+Please refer to these two threads for reference: + +* [#214](https://github.com/facebookincubator/create-react-app/issues/214) +* [#411](https://github.com/facebookincubator/create-react-app/issues/411) + +Create React App will add decorator support when the specification advances to a stable stage. + +## Integrating with an API Backend + +These tutorials will help you to integrate your app with an API backend running on another port, +using `fetch()` to access it. + +### Node +Check out [this tutorial](https://www.fullstackreact.com/articles/using-create-react-app-with-a-server/). +You can find the companion GitHub repository [here](https://github.com/fullstackreact/food-lookup-demo). + +### Ruby on Rails + +Check out [this tutorial](https://www.fullstackreact.com/articles/how-to-get-create-react-app-to-work-with-your-rails-api/). +You can find the companion GitHub repository [here](https://github.com/fullstackreact/food-lookup-demo-rails). + +## Proxying API Requests in Development + +>Note: this feature is available with `react-scripts@0.2.3` and higher. + +People often serve the front-end React app from the same host and port as their backend implementation.
+For example, a production setup might look like this after the app is deployed: + +``` +/ - static server returns index.html with React app +/todos - static server returns index.html with React app +/api/todos - server handles any /api/* requests using the backend implementation +``` + +Such setup is **not** required. However, if you **do** have a setup like this, it is convenient to write requests like `fetch('/api/todos')` without worrying about redirecting them to another host or port during development. + +To tell the development server to proxy any unknown requests to your API server in development, add a `proxy` field to your `package.json`, for example: + +```js + "proxy": "http://localhost:4000", +``` + +This way, when you `fetch('/api/todos')` in development, the development server will recognize that it’s not a static asset, and will proxy your request to `http://localhost:4000/api/todos` as a fallback. The development server will only attempt to send requests without a `text/html` accept header to the proxy. + +Conveniently, this avoids [CORS issues](http://stackoverflow.com/questions/21854516/understanding-ajax-cors-and-security-considerations) and error messages like this in development: + +``` +Fetch API cannot load http://localhost:4000/api/todos. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:3000' is therefore not allowed access. If an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled. +``` + +Keep in mind that `proxy` only has effect in development (with `npm start`), and it is up to you to ensure that URLs like `/api/todos` point to the right thing in production. You don’t have to use the `/api` prefix. Any unrecognized request without a `text/html` accept header will be redirected to the specified `proxy`. + +The `proxy` option supports HTTP, HTTPS and WebSocket connections.
+If the `proxy` option is **not** flexible enough for you, alternatively you can: + +* [Configure the proxy yourself](#configuring-the-proxy-manually) +* Enable CORS on your server ([here’s how to do it for Express](http://enable-cors.org/server_expressjs.html)). +* Use [environment variables](#adding-custom-environment-variables) to inject the right server host and port into your app. + +### "Invalid Host Header" Errors After Configuring Proxy + +When you enable the `proxy` option, you opt into a more strict set of host checks. This is necessary because leaving the backend open to remote hosts makes your computer vulnerable to DNS rebinding attacks. The issue is explained in [this article](https://medium.com/webpack/webpack-dev-server-middleware-security-issues-1489d950874a) and [this issue](https://github.com/webpack/webpack-dev-server/issues/887). + +This shouldn’t affect you when developing on `localhost`, but if you develop remotely like [described here](https://github.com/facebookincubator/create-react-app/issues/2271), you will see this error in the browser after enabling the `proxy` option: + +>Invalid Host header + +To work around it, you can specify your public development host in a file called `.env.development` in the root of your project: + +``` +HOST=mypublicdevhost.com +``` + +If you restart the development server now and load the app from the specified host, it should work. + +If you are still having issues or if you’re using a more exotic environment like a cloud editor, you can bypass the host check completely by adding a line to `.env.development.local`. **Note that this is dangerous and exposes your machine to remote code execution from malicious websites:** + +``` +# NOTE: THIS IS DANGEROUS! +# It exposes your machine to attacks from the websites you visit. +DANGEROUSLY_DISABLE_HOST_CHECK=true +``` + +We don’t recommend this approach. + +### Configuring the Proxy Manually + +>Note: this feature is available with `react-scripts@1.0.0` and higher. + +If the `proxy` option is **not** flexible enough for you, you can specify an object in the following form (in `package.json`).
+You may also specify any configuration value [`http-proxy-middleware`](https://github.com/chimurai/http-proxy-middleware#options) or [`http-proxy`](https://github.com/nodejitsu/node-http-proxy#options) supports. +```js +{ + // ... + "proxy": { + "/api": { + "target": "", + "ws": true + // ... + } + } + // ... +} +``` + +All requests matching this path will be proxies, no exceptions. This includes requests for `text/html`, which the standard `proxy` option does not proxy. + +If you need to specify multiple proxies, you may do so by specifying additional entries. +You may also narrow down matches using `*` and/or `**`, to match the path exactly or any subpath. +```js +{ + // ... + "proxy": { + // Matches any request starting with /api + "/api": { + "target": "", + "ws": true + // ... + }, + // Matches any request starting with /foo + "/foo": { + "target": "", + "ssl": true, + "pathRewrite": { + "^/foo": "/foo/beta" + } + // ... + }, + // Matches /bar/abc.html but not /bar/sub/def.html + "/bar/*.html": { + "target": "", + // ... + }, + // Matches /baz/abc.html and /baz/sub/def.html + "/baz/**/*.html": { + "target": "" + // ... + } + } + // ... +} +``` + +### Configuring a WebSocket Proxy + +When setting up a WebSocket proxy, there are a some extra considerations to be aware of. + +If you’re using a WebSocket engine like [Socket.io](https://socket.io/), you must have a Socket.io server running that you can use as the proxy target. Socket.io will not work with a standard WebSocket server. Specifically, don't expect Socket.io to work with [the websocket.org echo test](http://websocket.org/echo.html). + +There’s some good documentation available for [setting up a Socket.io server](https://socket.io/docs/). + +Standard WebSockets **will** work with a standard WebSocket server as well as the websocket.org echo test. You can use libraries like [ws](https://github.com/websockets/ws) for the server, with [native WebSockets in the browser](https://developer.mozilla.org/en-US/docs/Web/API/WebSocket). + +Either way, you can proxy WebSocket requests manually in `package.json`: + +```js +{ + // ... + "proxy": { + "/socket": { + // Your compatible WebSocket server + "target": "ws://", + // Tell http-proxy-middleware that this is a WebSocket proxy. + // Also allows you to proxy WebSocket requests without an additional HTTP request + // https://github.com/chimurai/http-proxy-middleware#external-websocket-upgrade + "ws": true + // ... + } + } + // ... +} +``` + +## Using HTTPS in Development + +>Note: this feature is available with `react-scripts@0.4.0` and higher. + +You may require the dev server to serve pages over HTTPS. One particular case where this could be useful is when using [the "proxy" feature](#proxying-api-requests-in-development) to proxy requests to an API server when that API server is itself serving HTTPS. + +To do this, set the `HTTPS` environment variable to `true`, then start the dev server as usual with `npm start`: + +#### Windows (cmd.exe) + +```cmd +set HTTPS=true&&npm start +``` + +(Note: the lack of whitespace is intentional.) + +#### Linux, macOS (Bash) + +```bash +HTTPS=true npm start +``` + +Note that the server will use a self-signed certificate, so your web browser will almost definitely display a warning upon accessing the page. + +## Generating Dynamic `` Tags on the Server + +Since Create React App doesn’t support server rendering, you might be wondering how to make `` tags dynamic and reflect the current URL. To solve this, we recommend to add placeholders into the HTML, like this: + +```html + + + + + +``` + +Then, on the server, regardless of the backend you use, you can read `index.html` into memory and replace `__OG_TITLE__`, `__OG_DESCRIPTION__`, and any other placeholders with values depending on the current URL. Just make sure to sanitize and escape the interpolated values so that they are safe to embed into HTML! + +If you use a Node server, you can even share the route matching logic between the client and the server. However duplicating it also works fine in simple cases. + +## Pre-Rendering into Static HTML Files + +If you’re hosting your `build` with a static hosting provider you can use [react-snapshot](https://www.npmjs.com/package/react-snapshot) to generate HTML pages for each route, or relative link, in your application. These pages will then seamlessly become active, or “hydrated”, when the JavaScript bundle has loaded. + +There are also opportunities to use this outside of static hosting, to take the pressure off the server when generating and caching routes. + +The primary benefit of pre-rendering is that you get the core content of each page _with_ the HTML payload—regardless of whether or not your JavaScript bundle successfully downloads. It also increases the likelihood that each route of your application will be picked up by search engines. + +You can read more about [zero-configuration pre-rendering (also called snapshotting) here](https://medium.com/superhighfives/an-almost-static-stack-6df0a2791319). + +## Injecting Data from the Server into the Page + +Similarly to the previous section, you can leave some placeholders in the HTML that inject global variables, for example: + +```js + + + + +``` + +Then, on the server, you can replace `__SERVER_DATA__` with a JSON of real data right before sending the response. The client code can then read `window.SERVER_DATA` to use it. **Make sure to [sanitize the JSON before sending it to the client](https://medium.com/node-security/the-most-common-xss-vulnerability-in-react-js-applications-2bdffbcc1fa0) as it makes your app vulnerable to XSS attacks.** + +## Running Tests + +>Note: this feature is available with `react-scripts@0.3.0` and higher.
+>[Read the migration guide to learn how to enable it in older projects!](https://github.com/facebookincubator/create-react-app/blob/master/CHANGELOG.md#migrating-from-023-to-030) + +Create React App uses [Jest](https://facebook.github.io/jest/) as its test runner. To prepare for this integration, we did a [major revamp](https://facebook.github.io/jest/blog/2016/09/01/jest-15.html) of Jest so if you heard bad things about it years ago, give it another try. + +Jest is a Node-based runner. This means that the tests always run in a Node environment and not in a real browser. This lets us enable fast iteration speed and prevent flakiness. + +While Jest provides browser globals such as `window` thanks to [jsdom](https://github.com/tmpvar/jsdom), they are only approximations of the real browser behavior. Jest is intended to be used for unit tests of your logic and your components rather than the DOM quirks. + +We recommend that you use a separate tool for browser end-to-end tests if you need them. They are beyond the scope of Create React App. + +### Filename Conventions + +Jest will look for test files with any of the following popular naming conventions: + +* Files with `.js` suffix in `__tests__` folders. +* Files with `.test.js` suffix. +* Files with `.spec.js` suffix. + +The `.test.js` / `.spec.js` files (or the `__tests__` folders) can be located at any depth under the `src` top level folder. + +We recommend to put the test files (or `__tests__` folders) next to the code they are testing so that relative imports appear shorter. For example, if `App.test.js` and `App.js` are in the same folder, the test just needs to `import App from './App'` instead of a long relative path. Colocation also helps find tests more quickly in larger projects. + +### Command Line Interface + +When you run `npm test`, Jest will launch in the watch mode. Every time you save a file, it will re-run the tests, just like `npm start` recompiles the code. + +The watcher includes an interactive command-line interface with the ability to run all tests, or focus on a search pattern. It is designed this way so that you can keep it open and enjoy fast re-runs. You can learn the commands from the “Watch Usage” note that the watcher prints after every run: + +![Jest watch mode](http://facebook.github.io/jest/img/blog/15-watch.gif) + +### Version Control Integration + +By default, when you run `npm test`, Jest will only run the tests related to files changed since the last commit. This is an optimization designed to make your tests run fast regardless of how many tests you have. However it assumes that you don’t often commit the code that doesn’t pass the tests. + +Jest will always explicitly mention that it only ran tests related to the files changed since the last commit. You can also press `a` in the watch mode to force Jest to run all tests. + +Jest will always run all tests on a [continuous integration](#continuous-integration) server or if the project is not inside a Git or Mercurial repository. + +### Writing Tests + +To create tests, add `it()` (or `test()`) blocks with the name of the test and its code. You may optionally wrap them in `describe()` blocks for logical grouping but this is neither required nor recommended. + +Jest provides a built-in `expect()` global function for making assertions. A basic test could look like this: + +```js +import sum from './sum'; + +it('sums numbers', () => { + expect(sum(1, 2)).toEqual(3); + expect(sum(2, 2)).toEqual(4); +}); +``` + +All `expect()` matchers supported by Jest are [extensively documented here](http://facebook.github.io/jest/docs/expect.html).
+You can also use [`jest.fn()` and `expect(fn).toBeCalled()`](http://facebook.github.io/jest/docs/expect.html#tohavebeencalled) to create “spies” or mock functions. + +### Testing Components + +There is a broad spectrum of component testing techniques. They range from a “smoke test” verifying that a component renders without throwing, to shallow rendering and testing some of the output, to full rendering and testing component lifecycle and state changes. + +Different projects choose different testing tradeoffs based on how often components change, and how much logic they contain. If you haven’t decided on a testing strategy yet, we recommend that you start with creating simple smoke tests for your components: + +```js +import React from 'react'; +import ReactDOM from 'react-dom'; +import App from './App'; + +it('renders without crashing', () => { + const div = document.createElement('div'); + ReactDOM.render(, div); +}); +``` + +This test mounts a component and makes sure that it didn’t throw during rendering. Tests like this provide a lot value with very little effort so they are great as a starting point, and this is the test you will find in `src/App.test.js`. + +When you encounter bugs caused by changing components, you will gain a deeper insight into which parts of them are worth testing in your application. This might be a good time to introduce more specific tests asserting specific expected output or behavior. + +If you’d like to test components in isolation from the child components they render, we recommend using [`shallow()` rendering API](http://airbnb.io/enzyme/docs/api/shallow.html) from [Enzyme](http://airbnb.io/enzyme/). To install it, run: + +```sh +npm install --save enzyme react-test-renderer +``` + +Alternatively you may use `yarn`: + +```sh +yarn add enzyme react-test-renderer +``` + +You can write a smoke test with it too: + +```js +import React from 'react'; +import { shallow } from 'enzyme'; +import App from './App'; + +it('renders without crashing', () => { + shallow(); +}); +``` + +Unlike the previous smoke test using `ReactDOM.render()`, this test only renders `` and doesn’t go deeper. For example, even if `` itself renders a ` + // EDIT MEsave + + ); + } // return + +} // class Control + +export default Control; diff --git a/08week/star-wars/src/Square.js b/08week/star-wars/src/Square.js new file mode 100644 index 000000000..7543c3028 --- /dev/null +++ b/08week/star-wars/src/Square.js @@ -0,0 +1,15 @@ +import React from 'react'; + +const Square = (props)=> { + + return ( + /***** CODE HERE ****/ +
+

{props.id}

+

{props.money}

+
+ ); // return + +} // functional component Square + +export default Square; diff --git a/08week/star-wars/src/SquareClass.js b/08week/star-wars/src/SquareClass.js new file mode 100644 index 000000000..615ab6ecf --- /dev/null +++ b/08week/star-wars/src/SquareClass.js @@ -0,0 +1,32 @@ +// state: This will control behavior: pending, activeA, activeB, complete +// - pending: Display: Money; clickable +// - active A: Display: Question, Money; not clicable; blue glow (1st attempt) +// - active B: Display: Question, Money; not clicable; orange glow (2nd attempt) +// - complete (Disabled): Display: Question, Answer, Player, Money; not clickable +// - Correctly Answered: Green +// - Wrongly answered: Red +// Question: from Star Wars JSON (this is a statement) +// Answer: from Star Wars JSON (this is the answer in the form of a question) +// Attempt: 1st or 2nd attempt +// gotCorrect: player or null if no one answered correctly +// dailyDouble: True or False +// r1Money: 100, 200, 300, 400, 500 +// r2Money: 200, 400, 600, 800, 1000 + +class SquareClass { + constructor(squareID) { + // super(); + this.id = squareID; + this.squareState = 'pending'; + this.question = ''; + this.answer = ''; + this.attempt = null; + this.gotCorrect = ''; + this.dailyDouble = false; + this.r1Money = squareID * 100; + this.r2Money = squareID * 200; + } + +} // Square class + +export default SquareClass; diff --git a/08week/star-wars/src/StarWars.js b/08week/star-wars/src/StarWars.js new file mode 100644 index 000000000..8188068f7 --- /dev/null +++ b/08week/star-wars/src/StarWars.js @@ -0,0 +1,220 @@ +import React, { Component } from 'react'; +import Control from './Control'; +import Board from './Board'; +import SquareClass from './SquareClass'; + +/***************** WHITE BOARD NOTES ********************** +// Need to create a master game object that stores... +// +// ************** Master Object ************* +// Game Control info +// Round = 1, 2 (double jeopardy) +// Players +// Q +// Name, Score, Attempted, Correct +// B +/ Name, Score, Attempted, Correct +// P +// Name, Score, Attempted, Correct +// playerTurn +// inputQuestion +// Message +// Board. Board is made up of... Categories, Squares +// // Planets, Spaceships, Vehicles, People, Films, Species +// planets +// questionPrefix: "Where is" +// squares[] // 5 of them. +// spaceships +// questionPrefix: "What is" +// squares[] +// vehicles +// questionPrefix: "What is" +// squares[] +// people +// questionPrefix: "Who is" +// squares[] +// films +// questionPrefix: "What is" +// squares[] +// species +// questionPrefix: "Who are the" +// squares[] +// +// ********** Square Object ******************** +// Squares Object +// state: This will control behavior: pending, activeA, activeB, complete +// - pending: Display: Money; clickable +// - active A: Display: Question, Money; not clicable; blue glow (1st attempt) +// - active B: Display: Question, Money; not clicable; orange glow (2nd attempt) +// - complete (Disabled): Display: Question, Answer, Player, Money; not clickable +// - Correctly Answered: Green +// - Wrongly answered: Red +// Hover: Brightens when hovered over: yellow glow, slightly larger... +// Click: Will move square to active A state +// Question: from Star Wars JSON (this is a statement) +// Answer: from Star Wars JSON (this is the answer in the form of a question) +// Attempt: 1st or 2nd attempt +// gotCorrect: player or null if no one answered correctly +// dailyDouble: True or False +// r1Money: 100, 200, 300, 400, 500 +// r2Money: 200, 400, 600, 800, 1000 +// +// +// ************ State object ******************* +// playerTurn +// player Object +// Square object +// inputQuestion +// Message +// +// render +// -- gameControl +// -- Board +// -- Category +// -- Square +// +// render empty board +// Fill category / squares with data +// use random on Star Wars json data. +// Prompt for player names? or just call Q, B, P +// random select player to start +// Player clicks on square, reveals question. +// Listen for click (Q, B, P) +// Whoever buzzes in, gets to answer question. +// display answer Prompt. +// IF user is correct then +// Alert players that player 'X' got it right. +// update square as Disabled; gotCorrect = player +// update player + Money +// ELSE IF ans incorrect and firstAttempt then +// alert that answer is incorrect +// update player - Money +// Allow another person to buzz in. +// ELSE incorrect answer and second attempt then +// move on... +// alert that answer is incorrect +// update square as Disabled; gotCorrect = null +// update player - Money +// END IF + +***********************************************************/ +class StarWars extends Component { + + constructor() { + super(); + this.game = { + round: 1, + currentPlayer: 'Q', + player: { + Q: { name: '', score: null, attempted: null, correct: null }, + B: { name: '', score: null, attempted: null, correct: null }, + P: { name: '', score: null, attempted: null, correct: null } + }, + input: '', + message: '', + board: { + planets: { prefix: 'Where is' , squares: [] }, + spaceships: { prefix: 'What is' , squares: [] }, + vehicles: { prefix: 'What is' , squares: [] }, + people: { prefix: 'Who is' , squares: [] }, + films: { prefix: 'What is' , squares: [] }, + species: { prefix: 'Who are the', squares: [] } + } + }; // this.game object + + this.state = { + round: this['game']['round'], + currentPlayer: this['game']['currentPlayer'], + input: '', + message: '', + // board: {} + planetsSquares: [], + spaceshipsSquares: [], + vehiclesSquares: [], + peopleSquares: [], + filmsSquares: [], + speciesSquares: [] + }; // this.state object + } //Constructor + + initState() { + console.log('initialize'); + [1,2,3,4,5].forEach((id, index)=>{ + this.game['board']['planets']['squares'].push(new SquareClass(id)); + this.game['board']['spaceships']['squares'].push(new SquareClass(id)); + this.game['board']['vehicles']['squares'].push(new SquareClass(id)); + this.game['board']['people']['squares'].push(new SquareClass(id)); + this.game['board']['films']['squares'].push(new SquareClass(id)); + this.game['board']['species']['squares'].push(new SquareClass(id)); + }); + console.log('this.game.board',this.game['board']); + + } + + startClick = ()=> { + console.log('startClick'); + this.initState() + console.log('this.game...planets again',this.game['board']['planets']['squares']); + /*************** LINE BELOW NOT WORKING. NOT ABLE TO SET STATE ******/ + // this.setState({ planetsSquares : this.game['board']['planets']['squares'] }); + this.setState( + { + planetsSquares : this.game['board']['planets']['squares'], + spaceshipsSquares : this.game['board']['spaceships']['squares'], + vehiclesSquares : this.game['board']['vehicles']['squares'], + peopleSquares : this.game['board']['people']['squares'], + filmsSquares : this.game['board']['films']['squares'], + speciesSquares : this.game['board']['species']['squares'], + } + ); + } + + handleClick = ()=> { + console.log('handleClick'); + /***** CODE HERE ****/ + + } // handleClick + + handleKey = (event)=> { + console.log('handleKey'); + /***** CODE HERE ****/ + // x = e.key; + switch (event.key) { + case 'q': + case 'Q': + console.log('you pressed the Q key'); + break; + case 'b': + case 'B': + console.log('you pressed the B key'); + break; + case 'p': + case 'P': + console.log('you pressed the P key'); + break; + default: + console.log('you pressed the P key'); + } + // if (x === 'q' || x=== 'Q') { + // console.log('you pressed the Q key'); + // } else if + + } // handleKey + + // this.initState(); + render() { + console.log('board',this.state); + + return ( +
+ + +
+ ); + } // render + +} // class StarWars +export default StarWars; + +// const newGame = new StarWars(); +// newGame.fillBoard(); diff --git a/08week/star-wars/src/index.js b/08week/star-wars/src/index.js new file mode 100644 index 000000000..843f13009 --- /dev/null +++ b/08week/star-wars/src/index.js @@ -0,0 +1,5 @@ +import React from 'react'; +import ReactDOM from 'react-dom'; +import StarWars from './StarWars'; + +ReactDOM.render(, document.getElementById('root')); diff --git a/08week/star-wars/starWars.zip b/08week/star-wars/starWars.zip new file mode 100644 index 0000000000000000000000000000000000000000..b45fbd66ba7ff2b5baf42a49a6c393c9ee82a95d GIT binary patch literal 4432 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.0.4: + version "1.0.1" + resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" + +anser@1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/anser/-/anser-1.4.1.tgz#c3641863a962cebef941ea2c8706f2cb4f0716bd" + +ansi-align@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-1.1.0.tgz#2f0c1658829739add5ebb15e6b0c6e3423f016ba" + dependencies: + string-width "^1.0.1" + +ansi-escapes@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" + +ansi-escapes@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-2.0.0.tgz#5bae52be424878dd9783e8910e3fc2922e83c81b" + +ansi-html@0.0.7: + version "0.0.7" + resolved "https://registry.yarnpkg.com/ansi-html/-/ansi-html-0.0.7.tgz#813584021962a9e9e6fd039f940d12f56ca7859e" + +ansi-regex@^2.0.0, ansi-regex@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" + +ansi-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" + +ansi-styles@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" + +ansi-styles@^3.0.0, ansi-styles@^3.1.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" + dependencies: + color-convert "^1.9.0" + +anymatch@^1.3.0: + version "1.3.2" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" + dependencies: + micromatch "^2.1.5" + normalize-path "^2.0.0" + +append-transform@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" + dependencies: + default-require-extensions "^1.0.0" + +aproba@^1.0.3: + version "1.1.2" + resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.2.tgz#45c6629094de4e96f693ef7eab74ae079c240fc1" + +are-we-there-yet@~1.1.2: + version "1.1.4" + resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" + dependencies: + delegates "^1.0.0" + readable-stream "^2.0.6" + +argparse@^1.0.7: + version "1.0.9" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" + dependencies: + sprintf-js "~1.0.2" + +aria-query@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-0.7.0.tgz#4af10a1e61573ddea0cf3b99b51c52c05b424d24" + dependencies: + ast-types-flow "0.0.7" + +arr-diff@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" + dependencies: + arr-flatten "^1.0.1" + +arr-flatten@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" + +array-equal@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" + +array-filter@~0.0.0: + version "0.0.1" + resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" + +array-find-index@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" + +array-flatten@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" + +array-flatten@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-2.1.1.tgz#426bb9da84090c1838d812c8150af20a8331e296" + +array-includes@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.0.3.tgz#184b48f62d92d7452bb31b323165c7f8bd02266d" + dependencies: + define-properties "^1.1.2" + es-abstract "^1.7.0" + +array-map@~0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" + +array-reduce@~0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b" + +array-union@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" + dependencies: + array-uniq "^1.0.1" + +array-uniq@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" + +array-unique@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" + +arrify@^1.0.0, arrify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" + +asap@~2.0.3: + version "2.0.6" + resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" + +asn1.js@^4.0.0: + version "4.9.1" + resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.1.tgz#48ba240b45a9280e94748990ba597d216617fd40" + dependencies: + bn.js "^4.0.0" + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + +asn1@~0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" + +assert-plus@1.0.0, assert-plus@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" + +assert-plus@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" + +assert@^1.1.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" + dependencies: + util "0.10.3" + +ast-types-flow@0.0.7: + version "0.0.7" + resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" + +async-each@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" + +async@^1.4.0, async@^1.5.2: + version "1.5.2" + resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" + +async@^2.1.2, async@^2.1.4, async@^2.4.1: + version "2.5.0" + resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d" + dependencies: + lodash "^4.14.0" + +asynckit@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + +autoprefixer@7.1.2: + version "7.1.2" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-7.1.2.tgz#fbeaf07d48fd878e0682bf7cbeeade728adb2b18" + dependencies: + browserslist "^2.1.5" + caniuse-lite "^1.0.30000697" + normalize-range "^0.1.2" + num2fraction "^1.2.2" + postcss "^6.0.6" + postcss-value-parser "^3.2.3" + +autoprefixer@^6.3.1: + version "6.7.7" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-6.7.7.tgz#1dbd1c835658e35ce3f9984099db00585c782014" + dependencies: + browserslist "^1.7.6" + caniuse-db "^1.0.30000634" + normalize-range "^0.1.2" + num2fraction "^1.2.2" + postcss "^5.2.16" + postcss-value-parser "^3.2.3" + +aws-sign2@~0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" + +aws4@^1.2.1: + version "1.6.0" + resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" + +axobject-query@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-0.1.0.tgz#62f59dbc59c9f9242759ca349960e7a2fe3c36c0" + dependencies: + ast-types-flow "0.0.7" + +babel-code-frame@6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" + dependencies: + chalk "^1.1.0" + esutils "^2.0.2" + js-tokens "^3.0.0" + +babel-code-frame@^6.11.0, babel-code-frame@^6.22.0, babel-code-frame@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" + dependencies: + chalk "^1.1.3" + esutils "^2.0.2" + js-tokens "^3.0.2" + +babel-core@6.25.0: + version "6.25.0" + resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.25.0.tgz#7dd42b0463c742e9d5296deb3ec67a9322dad729" + dependencies: + babel-code-frame "^6.22.0" + babel-generator "^6.25.0" + babel-helpers "^6.24.1" + babel-messages "^6.23.0" + babel-register "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.25.0" + babel-traverse "^6.25.0" + babel-types "^6.25.0" + babylon "^6.17.2" + convert-source-map "^1.1.0" + debug "^2.1.1" + json5 "^0.5.0" + lodash "^4.2.0" + minimatch "^3.0.2" + path-is-absolute "^1.0.0" + private "^0.1.6" + slash "^1.0.0" + source-map "^0.5.0" + +babel-core@^6.0.0, babel-core@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" + dependencies: + babel-code-frame "^6.26.0" + babel-generator "^6.26.0" + babel-helpers "^6.24.1" + babel-messages "^6.23.0" + babel-register "^6.26.0" + babel-runtime "^6.26.0" + babel-template "^6.26.0" + babel-traverse "^6.26.0" + babel-types "^6.26.0" + babylon "^6.18.0" + convert-source-map "^1.5.0" + debug "^2.6.8" + json5 "^0.5.1" + lodash "^4.17.4" + minimatch "^3.0.4" + path-is-absolute "^1.0.1" + private "^0.1.7" + slash "^1.0.0" + source-map "^0.5.6" + +babel-eslint@7.2.3: + version "7.2.3" + resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.2.3.tgz#b2fe2d80126470f5c19442dc757253a897710827" + dependencies: + babel-code-frame "^6.22.0" + babel-traverse "^6.23.1" + babel-types "^6.23.0" + babylon "^6.17.0" + +babel-generator@^6.18.0, babel-generator@^6.25.0, babel-generator@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" + dependencies: + babel-messages "^6.23.0" + babel-runtime "^6.26.0" + babel-types "^6.26.0" + detect-indent "^4.0.0" + jsesc "^1.3.0" + lodash "^4.17.4" + source-map "^0.5.6" + trim-right "^1.0.1" + +babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" + dependencies: + babel-helper-explode-assignable-expression "^6.24.1" + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-helper-builder-react-jsx@^6.24.1: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz#39ff8313b75c8b65dceff1f31d383e0ff2a408a0" + dependencies: + babel-runtime "^6.26.0" + babel-types "^6.26.0" + esutils "^2.0.2" + +babel-helper-call-delegate@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" + dependencies: + babel-helper-hoist-variables "^6.24.1" + babel-runtime "^6.22.0" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helper-define-map@^6.24.1: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" + dependencies: + babel-helper-function-name "^6.24.1" + babel-runtime "^6.26.0" + babel-types "^6.26.0" + lodash "^4.17.4" + +babel-helper-explode-assignable-expression@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" + dependencies: + babel-runtime "^6.22.0" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helper-function-name@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" + dependencies: + babel-helper-get-function-arity "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helper-get-function-arity@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-helper-hoist-variables@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-helper-optimise-call-expression@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-helper-regex@^6.24.1: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" + dependencies: + babel-runtime "^6.26.0" + babel-types "^6.26.0" + lodash "^4.17.4" + +babel-helper-remap-async-to-generator@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" + dependencies: + babel-helper-function-name "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helper-replace-supers@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" + dependencies: + babel-helper-optimise-call-expression "^6.24.1" + babel-messages "^6.23.0" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helpers@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" + dependencies: + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-jest@20.0.3, babel-jest@^20.0.3: + version "20.0.3" + resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-20.0.3.tgz#e4a03b13dc10389e140fc645d09ffc4ced301671" + dependencies: + babel-core "^6.0.0" + babel-plugin-istanbul "^4.0.0" + babel-preset-jest "^20.0.3" + +babel-loader@7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-7.1.1.tgz#b87134c8b12e3e4c2a94e0546085bc680a2b8488" + dependencies: + find-cache-dir "^1.0.0" + loader-utils "^1.0.2" + mkdirp "^0.5.1" + +babel-messages@^6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-check-es2015-constants@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-dynamic-import-node@1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-1.0.2.tgz#adb5bc8f48a89311540395ae9f0cc3ed4b10bb2e" + dependencies: + babel-plugin-syntax-dynamic-import "^6.18.0" + babel-template "^6.24.1" + babel-types "^6.24.1" + +babel-plugin-istanbul@^4.0.0: + version "4.1.4" + resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.4.tgz#18dde84bf3ce329fddf3f4103fae921456d8e587" + dependencies: + find-up "^2.1.0" + istanbul-lib-instrument "^1.7.2" + test-exclude "^4.1.1" + +babel-plugin-jest-hoist@^20.0.3: + version "20.0.3" + resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-20.0.3.tgz#afedc853bd3f8dc3548ea671fbe69d03cc2c1767" + +babel-plugin-syntax-async-functions@^6.8.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" + +babel-plugin-syntax-class-properties@^6.8.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" + +babel-plugin-syntax-dynamic-import@6.18.0, babel-plugin-syntax-dynamic-import@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da" + +babel-plugin-syntax-exponentiation-operator@^6.8.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" + +babel-plugin-syntax-flow@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" + +babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" + +babel-plugin-syntax-object-rest-spread@^6.8.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" + +babel-plugin-syntax-trailing-function-commas@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" + +babel-plugin-transform-async-to-generator@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" + dependencies: + babel-helper-remap-async-to-generator "^6.24.1" + babel-plugin-syntax-async-functions "^6.8.0" + babel-runtime "^6.22.0" + +babel-plugin-transform-class-properties@6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac" + dependencies: + babel-helper-function-name "^6.24.1" + babel-plugin-syntax-class-properties "^6.8.0" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-plugin-transform-es2015-arrow-functions@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-block-scoping@^6.23.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" + dependencies: + babel-runtime "^6.26.0" + babel-template "^6.26.0" + babel-traverse "^6.26.0" + babel-types "^6.26.0" + lodash "^4.17.4" + +babel-plugin-transform-es2015-classes@^6.23.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" + dependencies: + babel-helper-define-map "^6.24.1" + babel-helper-function-name "^6.24.1" + babel-helper-optimise-call-expression "^6.24.1" + babel-helper-replace-supers "^6.24.1" + babel-messages "^6.23.0" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-computed-properties@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" + dependencies: + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-plugin-transform-es2015-destructuring@^6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-duplicate-keys@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-for-of@^6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-function-name@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" + dependencies: + babel-helper-function-name "^6.24.1" + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-literals@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" + dependencies: + babel-plugin-transform-es2015-modules-commonjs "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" + dependencies: + babel-plugin-transform-strict-mode "^6.24.1" + babel-runtime "^6.26.0" + babel-template "^6.26.0" + babel-types "^6.26.0" + +babel-plugin-transform-es2015-modules-systemjs@^6.23.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" + dependencies: + babel-helper-hoist-variables "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-plugin-transform-es2015-modules-umd@^6.23.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" + dependencies: + babel-plugin-transform-es2015-modules-amd "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-plugin-transform-es2015-object-super@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" + dependencies: + babel-helper-replace-supers "^6.24.1" + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-parameters@^6.23.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" + dependencies: + babel-helper-call-delegate "^6.24.1" + babel-helper-get-function-arity "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-shorthand-properties@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-spread@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-sticky-regex@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" + dependencies: + babel-helper-regex "^6.24.1" + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-template-literals@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-typeof-symbol@^6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-unicode-regex@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" + dependencies: + babel-helper-regex "^6.24.1" + babel-runtime "^6.22.0" + regexpu-core "^2.0.0" + +babel-plugin-transform-exponentiation-operator@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" + dependencies: + babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" + babel-plugin-syntax-exponentiation-operator "^6.8.0" + babel-runtime "^6.22.0" + +babel-plugin-transform-flow-strip-types@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" + dependencies: + babel-plugin-syntax-flow "^6.18.0" + babel-runtime "^6.22.0" + +babel-plugin-transform-object-rest-spread@6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz#875d6bc9be761c58a2ae3feee5dc4895d8c7f921" + dependencies: + babel-plugin-syntax-object-rest-spread "^6.8.0" + babel-runtime "^6.22.0" + +babel-plugin-transform-react-constant-elements@6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-constant-elements/-/babel-plugin-transform-react-constant-elements-6.23.0.tgz#2f119bf4d2cdd45eb9baaae574053c604f6147dd" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-react-display-name@^6.23.0: + version "6.25.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz#67e2bf1f1e9c93ab08db96792e05392bf2cc28d1" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-react-jsx-self@6.22.0, babel-plugin-transform-react-jsx-self@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e" + dependencies: + babel-plugin-syntax-jsx "^6.8.0" + babel-runtime "^6.22.0" + +babel-plugin-transform-react-jsx-source@6.22.0, babel-plugin-transform-react-jsx-source@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" + dependencies: + babel-plugin-syntax-jsx "^6.8.0" + babel-runtime "^6.22.0" + +babel-plugin-transform-react-jsx@6.24.1, babel-plugin-transform-react-jsx@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3" + dependencies: + babel-helper-builder-react-jsx "^6.24.1" + babel-plugin-syntax-jsx "^6.8.0" + babel-runtime "^6.22.0" + +babel-plugin-transform-regenerator@6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz#b8da305ad43c3c99b4848e4fe4037b770d23c418" + dependencies: + regenerator-transform "0.9.11" + +babel-plugin-transform-regenerator@^6.22.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" + dependencies: + regenerator-transform "^0.10.0" + +babel-plugin-transform-runtime@6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.23.0.tgz#88490d446502ea9b8e7efb0fe09ec4d99479b1ee" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-strict-mode@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-preset-env@1.5.2: + version "1.5.2" + resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.5.2.tgz#cd4ae90a6e94b709f97374b33e5f8b983556adef" + dependencies: + babel-plugin-check-es2015-constants "^6.22.0" + babel-plugin-syntax-trailing-function-commas "^6.22.0" + babel-plugin-transform-async-to-generator "^6.22.0" + babel-plugin-transform-es2015-arrow-functions "^6.22.0" + babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" + babel-plugin-transform-es2015-block-scoping "^6.23.0" + babel-plugin-transform-es2015-classes "^6.23.0" + babel-plugin-transform-es2015-computed-properties "^6.22.0" + babel-plugin-transform-es2015-destructuring "^6.23.0" + babel-plugin-transform-es2015-duplicate-keys "^6.22.0" + babel-plugin-transform-es2015-for-of "^6.23.0" + babel-plugin-transform-es2015-function-name "^6.22.0" + babel-plugin-transform-es2015-literals "^6.22.0" + babel-plugin-transform-es2015-modules-amd "^6.22.0" + babel-plugin-transform-es2015-modules-commonjs "^6.23.0" + babel-plugin-transform-es2015-modules-systemjs "^6.23.0" + babel-plugin-transform-es2015-modules-umd "^6.23.0" + babel-plugin-transform-es2015-object-super "^6.22.0" + babel-plugin-transform-es2015-parameters "^6.23.0" + babel-plugin-transform-es2015-shorthand-properties "^6.22.0" + babel-plugin-transform-es2015-spread "^6.22.0" + babel-plugin-transform-es2015-sticky-regex "^6.22.0" + babel-plugin-transform-es2015-template-literals "^6.22.0" + babel-plugin-transform-es2015-typeof-symbol "^6.23.0" + babel-plugin-transform-es2015-unicode-regex "^6.22.0" + babel-plugin-transform-exponentiation-operator "^6.22.0" + babel-plugin-transform-regenerator "^6.22.0" + browserslist "^2.1.2" + invariant "^2.2.2" + semver "^5.3.0" + +babel-preset-flow@^6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d" + dependencies: + babel-plugin-transform-flow-strip-types "^6.22.0" + +babel-preset-jest@^20.0.3: + version "20.0.3" + resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-20.0.3.tgz#cbacaadecb5d689ca1e1de1360ebfc66862c178a" + dependencies: + babel-plugin-jest-hoist "^20.0.3" + +babel-preset-react-app@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/babel-preset-react-app/-/babel-preset-react-app-3.0.2.tgz#d062fca5dce68ed9c2615f2fecbc08861720f8e5" + dependencies: + babel-plugin-dynamic-import-node "1.0.2" + babel-plugin-syntax-dynamic-import "6.18.0" + babel-plugin-transform-class-properties "6.24.1" + babel-plugin-transform-object-rest-spread "6.23.0" + babel-plugin-transform-react-constant-elements "6.23.0" + babel-plugin-transform-react-jsx "6.24.1" + babel-plugin-transform-react-jsx-self "6.22.0" + babel-plugin-transform-react-jsx-source "6.22.0" + babel-plugin-transform-regenerator "6.24.1" + babel-plugin-transform-runtime "6.23.0" + babel-preset-env "1.5.2" + babel-preset-react "6.24.1" + +babel-preset-react@6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.24.1.tgz#ba69dfaea45fc3ec639b6a4ecea6e17702c91380" + dependencies: + babel-plugin-syntax-jsx "^6.3.13" + babel-plugin-transform-react-display-name "^6.23.0" + babel-plugin-transform-react-jsx "^6.24.1" + babel-plugin-transform-react-jsx-self "^6.22.0" + babel-plugin-transform-react-jsx-source "^6.22.0" + babel-preset-flow "^6.23.0" + +babel-register@^6.24.1, babel-register@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" + dependencies: + babel-core "^6.26.0" + babel-runtime "^6.26.0" + core-js "^2.5.0" + home-or-tmp "^2.0.0" + lodash "^4.17.4" + mkdirp "^0.5.1" + source-map-support "^0.4.15" + +babel-runtime@6.26.0, babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" + dependencies: + core-js "^2.4.0" + regenerator-runtime "^0.11.0" + +babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.25.0, babel-template@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" + dependencies: + babel-runtime "^6.26.0" + babel-traverse "^6.26.0" + babel-types "^6.26.0" + babylon "^6.18.0" + lodash "^4.17.4" + +babel-traverse@^6.18.0, babel-traverse@^6.23.1, babel-traverse@^6.24.1, babel-traverse@^6.25.0, babel-traverse@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" + dependencies: + babel-code-frame "^6.26.0" + babel-messages "^6.23.0" + babel-runtime "^6.26.0" + babel-types "^6.26.0" + babylon "^6.18.0" + debug "^2.6.8" + globals "^9.18.0" + invariant "^2.2.2" + lodash "^4.17.4" + +babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.23.0, babel-types@^6.24.1, babel-types@^6.25.0, babel-types@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" + dependencies: + babel-runtime "^6.26.0" + esutils "^2.0.2" + lodash "^4.17.4" + to-fast-properties "^1.0.3" + +babylon@^6.17.0, babylon@^6.17.2, babylon@^6.17.4, babylon@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" + +balanced-match@^0.4.2: + version "0.4.2" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" + +balanced-match@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" + +base64-js@^1.0.2: + version "1.2.1" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.1.tgz#a91947da1f4a516ea38e5b4ec0ec3773675e0886" + +batch@0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16" + +bcrypt-pbkdf@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" + dependencies: + tweetnacl "^0.14.3" + +big.js@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.1.3.tgz#4cada2193652eb3ca9ec8e55c9015669c9806978" + +binary-extensions@^1.0.0: + version "1.10.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.10.0.tgz#9aeb9a6c5e88638aad171e167f5900abe24835d0" + +block-stream@*: + version "0.0.9" + resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" + dependencies: + inherits "~2.0.0" + +bluebird@^3.4.7: + version "3.5.0" + resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.0.tgz#791420d7f551eea2897453a8a77653f96606d67c" + +bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: + version "4.11.8" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" + +bonjour@^3.5.0: + version "3.5.0" + resolved "https://registry.yarnpkg.com/bonjour/-/bonjour-3.5.0.tgz#8e890a183d8ee9a2393b3844c691a42bcf7bc9f5" + dependencies: + array-flatten "^2.1.0" + deep-equal "^1.0.1" + dns-equal "^1.0.0" + dns-txt "^2.0.2" + multicast-dns "^6.0.1" + multicast-dns-service-types "^1.1.0" + +boolbase@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" + +boom@2.x.x: + version "2.10.1" + resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" + dependencies: + hoek "2.x.x" + +boxen@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/boxen/-/boxen-0.6.0.tgz#8364d4248ac34ff0ef1b2f2bf49a6c60ce0d81b6" + dependencies: + ansi-align "^1.1.0" + camelcase "^2.1.0" + chalk "^1.1.1" + cli-boxes "^1.0.0" + filled-array "^1.0.0" + object-assign "^4.0.1" + repeating "^2.0.0" + string-width "^1.0.1" + widest-line "^1.0.0" + +brace-expansion@^1.0.0, brace-expansion@^1.1.7: + version "1.1.8" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +braces@^1.8.2: + version "1.8.5" + resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" + dependencies: + expand-range "^1.8.1" + preserve "^0.2.0" + repeat-element "^1.1.2" + +brorand@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" + +browser-resolve@^1.11.2: + version "1.11.2" + resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" + dependencies: + resolve "1.1.7" + +browserify-aes@^1.0.0, browserify-aes@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.0.6.tgz#5e7725dbdef1fd5930d4ebab48567ce451c48a0a" + dependencies: + buffer-xor "^1.0.2" + cipher-base "^1.0.0" + create-hash "^1.1.0" + evp_bytestokey "^1.0.0" + inherits "^2.0.1" + +browserify-cipher@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" + dependencies: + browserify-aes "^1.0.4" + browserify-des "^1.0.0" + evp_bytestokey "^1.0.0" + +browserify-des@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" + dependencies: + cipher-base "^1.0.1" + des.js "^1.0.0" + inherits "^2.0.1" + +browserify-rsa@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" + dependencies: + bn.js "^4.1.0" + randombytes "^2.0.1" + +browserify-sign@^4.0.0: + version "4.0.4" + resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" + dependencies: + bn.js "^4.1.1" + browserify-rsa "^4.0.0" + create-hash "^1.1.0" + create-hmac "^1.1.2" + elliptic "^6.0.0" + inherits "^2.0.1" + parse-asn1 "^5.0.0" + +browserify-zlib@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d" + dependencies: + pako "~0.2.0" + +browserslist@^1.3.6, browserslist@^1.5.2, browserslist@^1.7.6: + version "1.7.7" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-1.7.7.tgz#0bd76704258be829b2398bb50e4b62d1a166b0b9" + dependencies: + caniuse-db "^1.0.30000639" + electron-to-chromium "^1.2.7" + +browserslist@^2.1.2, browserslist@^2.1.5: + version "2.4.0" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.4.0.tgz#693ee93d01e66468a6348da5498e011f578f87f8" + dependencies: + caniuse-lite "^1.0.30000718" + electron-to-chromium "^1.3.18" + +bser@1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" + dependencies: + node-int64 "^0.4.0" + +bser@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" + dependencies: + node-int64 "^0.4.0" + +buffer-indexof@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/buffer-indexof/-/buffer-indexof-1.1.1.tgz#52fabcc6a606d1a00302802648ef68f639da268c" + +buffer-xor@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" + +buffer@^4.3.0: + version "4.9.1" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" + dependencies: + base64-js "^1.0.2" + ieee754 "^1.1.4" + isarray "^1.0.0" + +builtin-modules@^1.0.0, builtin-modules@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" + +builtin-status-codes@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" + +bytes@2.5.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.5.0.tgz#4c9423ea2d252c270c41b2bdefeff9bb6b62c06a" + +caller-path@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" + dependencies: + callsites "^0.2.0" + +callsites@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" + +callsites@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" + +camel-case@3.0.x: + version "3.0.0" + resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-3.0.0.tgz#ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73" + dependencies: + no-case "^2.2.0" + upper-case "^1.1.1" + +camelcase-keys@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" + dependencies: + camelcase "^2.0.0" + map-obj "^1.0.0" + +camelcase@^1.0.2: + version "1.2.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" + +camelcase@^2.0.0, camelcase@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" + +camelcase@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" + +camelcase@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" + +caniuse-api@^1.5.2: + version "1.6.1" + resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-1.6.1.tgz#b534e7c734c4f81ec5fbe8aca2ad24354b962c6c" + dependencies: + browserslist "^1.3.6" + caniuse-db "^1.0.30000529" + lodash.memoize "^4.1.2" + lodash.uniq "^4.5.0" + +caniuse-db@^1.0.30000529, caniuse-db@^1.0.30000634, caniuse-db@^1.0.30000639: + version "1.0.30000721" + resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000721.tgz#cdc52efe8f82dd13916615b78e86f704ece61802" + +caniuse-lite@^1.0.30000697, caniuse-lite@^1.0.30000718: + version "1.0.30000721" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000721.tgz#931a21a7bd85016300328d21f126d84b73437d35" + +capture-stack-trace@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" + +case-sensitive-paths-webpack-plugin@2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.1.1.tgz#3d29ced8c1f124bf6f53846fb3f5894731fdc909" + +caseless@~0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" + +center-align@^0.1.1: + version "0.1.3" + resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" + dependencies: + align-text "^0.1.3" + lazy-cache "^1.0.3" + +chalk@1.1.3, chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" + dependencies: + ansi-styles "^2.2.1" + escape-string-regexp "^1.0.2" + has-ansi "^2.0.0" + strip-ansi "^3.0.0" + supports-color "^2.0.0" + +chalk@^2.0.0, chalk@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.1.0.tgz#ac5becf14fa21b99c6c92ca7a7d7cfd5b17e743e" + dependencies: + ansi-styles "^3.1.0" + escape-string-regexp "^1.0.5" + supports-color "^4.0.0" + +chokidar@^1.6.0, chokidar@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" + dependencies: + anymatch "^1.3.0" + async-each "^1.0.0" + glob-parent "^2.0.0" + inherits "^2.0.1" + is-binary-path "^1.0.0" + is-glob "^2.0.0" + path-is-absolute "^1.0.0" + readdirp "^2.0.0" + optionalDependencies: + fsevents "^1.0.0" + +ci-info@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" + +cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +circular-json@^0.3.1: + version "0.3.3" + resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" + +clap@^1.0.9: + version "1.2.0" + resolved "https://registry.yarnpkg.com/clap/-/clap-1.2.0.tgz#59c90fe3e137104746ff19469a27a634ff68c857" + dependencies: + chalk "^1.1.3" + +clean-css@4.1.x: + version "4.1.7" + resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.1.7.tgz#b9aea4f85679889cf3eae8b40349ec4ebdfdd032" + dependencies: + source-map "0.5.x" + +cli-boxes@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" + +cli-cursor@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" + dependencies: + restore-cursor "^2.0.0" + +cli-width@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" + +cliui@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" + dependencies: + center-align "^0.1.1" + right-align "^0.1.1" + wordwrap "0.0.2" + +cliui@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" + dependencies: + string-width "^1.0.1" + strip-ansi "^3.0.1" + wrap-ansi "^2.0.0" + +clone@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" + +co@^4.6.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" + +coa@~1.0.1: + version "1.0.4" + resolved "https://registry.yarnpkg.com/coa/-/coa-1.0.4.tgz#a9ef153660d6a86a8bdec0289a5c684d217432fd" + dependencies: + q "^1.1.2" + +code-point-at@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" + +color-convert@^1.3.0, color-convert@^1.9.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" + dependencies: + color-name "^1.1.1" + +color-name@^1.0.0, color-name@^1.1.1: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + +color-string@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/color-string/-/color-string-0.3.0.tgz#27d46fb67025c5c2fa25993bfbf579e47841b991" + dependencies: + color-name "^1.0.0" + +color@^0.11.0: + version "0.11.4" + resolved "https://registry.yarnpkg.com/color/-/color-0.11.4.tgz#6d7b5c74fb65e841cd48792ad1ed5e07b904d764" + dependencies: + clone "^1.0.2" + color-convert "^1.3.0" + color-string "^0.3.0" + +colormin@^1.0.5: + version "1.1.2" + resolved "https://registry.yarnpkg.com/colormin/-/colormin-1.1.2.tgz#ea2f7420a72b96881a38aae59ec124a6f7298133" + dependencies: + color "^0.11.0" + css-color-names "0.0.4" + has "^1.0.1" + +colors@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" + +combined-stream@^1.0.5, combined-stream@~1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" + dependencies: + delayed-stream "~1.0.0" + +commander@2.11.x, commander@~2.11.0: + version "2.11.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" + +commondir@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" + +compressible@~2.0.10: + version "2.0.11" + resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.11.tgz#16718a75de283ed8e604041625a2064586797d8a" + dependencies: + mime-db ">= 1.29.0 < 2" + +compression@^1.5.2: + version "1.7.0" + resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.0.tgz#030c9f198f1643a057d776a738e922da4373012d" + dependencies: + accepts "~1.3.3" + bytes "2.5.0" + compressible "~2.0.10" + debug "2.6.8" + on-headers "~1.0.1" + safe-buffer "5.1.1" + vary "~1.1.1" + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + +concat-stream@^1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" + dependencies: + inherits "^2.0.3" + readable-stream "^2.2.2" + typedarray "^0.0.6" + +configstore@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/configstore/-/configstore-2.1.0.tgz#737a3a7036e9886102aa6099e47bb33ab1aba1a1" + dependencies: + dot-prop "^3.0.0" + graceful-fs "^4.1.2" + mkdirp "^0.5.0" + object-assign "^4.0.1" + os-tmpdir "^1.0.0" + osenv "^0.1.0" + uuid "^2.0.1" + write-file-atomic "^1.1.2" + xdg-basedir "^2.0.0" + +connect-history-api-fallback@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.3.0.tgz#e51d17f8f0ef0db90a64fdb47de3051556e9f169" + +console-browserify@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" + dependencies: + date-now "^0.1.4" + +console-control-strings@^1.0.0, console-control-strings@~1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" + +constants-browserify@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" + +contains-path@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" + +content-disposition@0.5.2: + version "0.5.2" + resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" + +content-type-parser@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" + +content-type@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.2.tgz#b7d113aee7a8dd27bd21133c4dc2529df1721eed" + +convert-source-map@^1.1.0, convert-source-map@^1.4.0, convert-source-map@^1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" + +cookie-signature@1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" + +cookie@0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" + +core-js@^1.0.0: + version "1.2.7" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" + +core-js@^2.4.0, core-js@^2.5.0: + version "2.5.1" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.1.tgz#ae6874dc66937789b80754ff5428df66819ca50b" + +core-util-is@1.0.2, core-util-is@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" + +cosmiconfig@^2.1.0, cosmiconfig@^2.1.1: + version "2.2.2" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-2.2.2.tgz#6173cebd56fac042c1f4390edf7af6c07c7cb892" + dependencies: + is-directory "^0.3.1" + js-yaml "^3.4.3" + minimist "^1.2.0" + object-assign "^4.1.0" + os-homedir "^1.0.1" + parse-json "^2.2.0" + require-from-string "^1.1.0" + +create-ecdh@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" + dependencies: + bn.js "^4.1.0" + elliptic "^6.0.0" + +create-error-class@^3.0.1: + version "3.0.2" + resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" + dependencies: + capture-stack-trace "^1.0.0" + +create-hash@^1.1.0, create-hash@^1.1.2: + version "1.1.3" + resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.3.tgz#606042ac8b9262750f483caddab0f5819172d8fd" + dependencies: + cipher-base "^1.0.1" + inherits "^2.0.1" + ripemd160 "^2.0.0" + sha.js "^2.4.0" + +create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: + version "1.1.6" + resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.6.tgz#acb9e221a4e17bdb076e90657c42b93e3726cf06" + dependencies: + cipher-base "^1.0.3" + create-hash "^1.1.0" + inherits "^2.0.1" + ripemd160 "^2.0.0" + safe-buffer "^5.0.1" + sha.js "^2.4.8" + +create-react-class@^15.6.0: + version "15.6.0" + resolved "https://registry.yarnpkg.com/create-react-class/-/create-react-class-15.6.0.tgz#ab448497c26566e1e29413e883207d57cfe7bed4" + dependencies: + fbjs "^0.8.9" + loose-envify "^1.3.1" + object-assign "^4.1.1" + +cross-spawn@5.1.0, cross-spawn@^5.0.1, cross-spawn@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" + dependencies: + lru-cache "^4.0.1" + shebang-command "^1.2.0" + which "^1.2.9" + +cryptiles@2.x.x: + version "2.0.5" + resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" + dependencies: + boom "2.x.x" + +crypto-browserify@^3.11.0: + version "3.11.1" + resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.1.tgz#948945efc6757a400d6e5e5af47194d10064279f" + dependencies: + browserify-cipher "^1.0.0" + browserify-sign "^4.0.0" + create-ecdh "^4.0.0" + create-hash "^1.1.0" + create-hmac "^1.1.0" + diffie-hellman "^5.0.0" + inherits "^2.0.1" + pbkdf2 "^3.0.3" + public-encrypt "^4.0.0" + randombytes "^2.0.0" + +css-color-names@0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0" + +css-loader@0.28.4: + version "0.28.4" + resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-0.28.4.tgz#6cf3579192ce355e8b38d5f42dd7a1f2ec898d0f" + dependencies: + babel-code-frame "^6.11.0" + css-selector-tokenizer "^0.7.0" + cssnano ">=2.6.1 <4" + icss-utils "^2.1.0" + loader-utils "^1.0.2" + lodash.camelcase "^4.3.0" + object-assign "^4.0.1" + postcss "^5.0.6" + postcss-modules-extract-imports "^1.0.0" + postcss-modules-local-by-default "^1.0.1" + postcss-modules-scope "^1.0.0" + postcss-modules-values "^1.1.0" + postcss-value-parser "^3.3.0" + source-list-map "^0.1.7" + +css-select@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" + dependencies: + boolbase "~1.0.0" + css-what "2.1" + domutils "1.5.1" + nth-check "~1.0.1" + +css-selector-tokenizer@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.7.0.tgz#e6988474ae8c953477bf5e7efecfceccd9cf4c86" + dependencies: + cssesc "^0.1.0" + fastparse "^1.1.1" + regexpu-core "^1.0.0" + +css-what@2.1: + version "2.1.0" + resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.0.tgz#9467d032c38cfaefb9f2d79501253062f87fa1bd" + +cssesc@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-0.1.0.tgz#c814903e45623371a0477b40109aaafbeeaddbb4" + +"cssnano@>=2.6.1 <4": + version "3.10.0" + resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-3.10.0.tgz#4f38f6cea2b9b17fa01490f23f1dc68ea65c1c38" + dependencies: + autoprefixer "^6.3.1" + decamelize "^1.1.2" + defined "^1.0.0" + has "^1.0.1" + object-assign "^4.0.1" + postcss "^5.0.14" + postcss-calc "^5.2.0" + postcss-colormin "^2.1.8" + postcss-convert-values "^2.3.4" + postcss-discard-comments "^2.0.4" + postcss-discard-duplicates "^2.0.1" + postcss-discard-empty "^2.0.1" + postcss-discard-overridden "^0.1.1" + postcss-discard-unused "^2.2.1" + postcss-filter-plugins "^2.0.0" + postcss-merge-idents "^2.1.5" + postcss-merge-longhand "^2.0.1" + postcss-merge-rules "^2.0.3" + postcss-minify-font-values "^1.0.2" + postcss-minify-gradients "^1.0.1" + postcss-minify-params "^1.0.4" + postcss-minify-selectors "^2.0.4" + postcss-normalize-charset "^1.1.0" + postcss-normalize-url "^3.0.7" + postcss-ordered-values "^2.1.0" + postcss-reduce-idents "^2.2.2" + postcss-reduce-initial "^1.0.0" + postcss-reduce-transforms "^1.0.3" + postcss-svgo "^2.1.1" + postcss-unique-selectors "^2.0.2" + postcss-value-parser "^3.2.3" + postcss-zindex "^2.0.1" + +csso@~2.3.1: + version "2.3.2" + resolved "https://registry.yarnpkg.com/csso/-/csso-2.3.2.tgz#ddd52c587033f49e94b71fc55569f252e8ff5f85" + dependencies: + clap "^1.0.9" + source-map "^0.5.3" + +cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": + version "0.3.2" + resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" + +"cssstyle@>= 0.2.37 < 0.3.0": + version "0.2.37" + resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" + dependencies: + cssom "0.3.x" + +currently-unhandled@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" + dependencies: + array-find-index "^1.0.1" + +d@1: + version "1.0.0" + resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" + dependencies: + es5-ext "^0.10.9" + +damerau-levenshtein@^1.0.0: + version "1.0.4" + resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.4.tgz#03191c432cb6eea168bb77f3a55ffdccb8978514" + +dashdash@^1.12.0: + version "1.14.1" + resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" + dependencies: + assert-plus "^1.0.0" + +date-now@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" + +debug@2.6.8, debug@^2.1.1, debug@^2.2.0, debug@^2.6.0, debug@^2.6.3, debug@^2.6.6, debug@^2.6.8: + version "2.6.8" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" + dependencies: + ms "2.0.0" + +decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: + version "1.2.0" + resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" + +deep-equal@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" + +deep-extend@~0.4.0: + version "0.4.2" + resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" + +deep-is@~0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" + +default-require-extensions@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" + dependencies: + strip-bom "^2.0.0" + +define-properties@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" + dependencies: + foreach "^2.0.5" + object-keys "^1.0.8" + +defined@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" + +del@^2.0.2, del@^2.2.2: + version "2.2.2" + resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" + dependencies: + globby "^5.0.0" + is-path-cwd "^1.0.0" + is-path-in-cwd "^1.0.0" + object-assign "^4.0.1" + pify "^2.0.0" + pinkie-promise "^2.0.0" + rimraf "^2.2.8" + +del@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/del/-/del-3.0.0.tgz#53ecf699ffcbcb39637691ab13baf160819766e5" + dependencies: + globby "^6.1.0" + is-path-cwd "^1.0.0" + is-path-in-cwd "^1.0.0" + p-map "^1.1.1" + pify "^3.0.0" + rimraf "^2.2.8" + +delayed-stream@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + +delegates@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" + +depd@1.1.1, depd@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.1.tgz#5783b4e1c459f06fa5ca27f991f3d06e7a310359" + +des.js@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" + dependencies: + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + +destroy@~1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" + +detect-indent@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" + dependencies: + repeating "^2.0.0" + +detect-node@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.0.3.tgz#a2033c09cc8e158d37748fbde7507832bd6ce127" + +detect-port-alt@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/detect-port-alt/-/detect-port-alt-1.1.3.tgz#a4d2f061d757a034ecf37c514260a98750f2b131" + dependencies: + address "^1.0.1" + debug "^2.6.0" + +diff@^3.2.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/diff/-/diff-3.3.0.tgz#056695150d7aa93237ca7e378ac3b1682b7963b9" + +diffie-hellman@^5.0.0: + version "5.0.2" + resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" + dependencies: + bn.js "^4.1.0" + miller-rabin "^4.0.0" + randombytes "^2.0.0" + +dns-equal@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/dns-equal/-/dns-equal-1.0.0.tgz#b39e7f1da6eb0a75ba9c17324b34753c47e0654d" + +dns-packet@^1.0.1: + version "1.2.2" + resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-1.2.2.tgz#a8a26bec7646438963fc86e06f8f8b16d6c8bf7a" + dependencies: + ip "^1.1.0" + safe-buffer "^5.0.1" + +dns-txt@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/dns-txt/-/dns-txt-2.0.2.tgz#b91d806f5d27188e4ab3e7d107d881a1cc4642b6" + dependencies: + buffer-indexof "^1.0.0" + +doctrine@1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" + dependencies: + esutils "^2.0.2" + isarray "^1.0.0" + +doctrine@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" + dependencies: + esutils "^2.0.2" + isarray "^1.0.0" + +dom-converter@~0.1: + version "0.1.4" + resolved "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.1.4.tgz#a45ef5727b890c9bffe6d7c876e7b19cb0e17f3b" + dependencies: + utila "~0.3" + +dom-serializer@0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82" + dependencies: + domelementtype "~1.1.1" + entities "~1.1.1" + +dom-urls@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/dom-urls/-/dom-urls-1.1.0.tgz#001ddf81628cd1e706125c7176f53ccec55d918e" + dependencies: + urijs "^1.16.1" + +domain-browser@^1.1.1: + version "1.1.7" + resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" + +domelementtype@1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.0.tgz#b17aed82e8ab59e52dd9c19b1756e0fc187204c2" + +domelementtype@~1.1.1: + version "1.1.3" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.1.3.tgz#bd28773e2642881aec51544924299c5cd822185b" + +domhandler@2.1: + version "2.1.0" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.1.0.tgz#d2646f5e57f6c3bab11cf6cb05d3c0acf7412594" + dependencies: + domelementtype "1" + +domutils@1.1: + version "1.1.6" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.1.6.tgz#bddc3de099b9a2efacc51c623f28f416ecc57485" + dependencies: + domelementtype "1" + +domutils@1.5.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" + dependencies: + dom-serializer "0" + domelementtype "1" + +dot-prop@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-3.0.0.tgz#1b708af094a49c9a0e7dbcad790aba539dac1177" + dependencies: + is-obj "^1.0.0" + +dotenv@4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-4.0.0.tgz#864ef1379aced55ce6f95debecdce179f7a0cd1d" + +duplexer2@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" + dependencies: + readable-stream "^2.0.2" + +duplexer@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" + +ecc-jsbn@~0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" + dependencies: + jsbn "~0.1.0" + +ee-first@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" + +electron-to-chromium@^1.2.7, electron-to-chromium@^1.3.18: + version "1.3.20" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.20.tgz#2eedd5ccbae7ddc557f68ad1fce9c172e915e4e5" + +elliptic@^6.0.0: + version "6.4.0" + resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df" + dependencies: + bn.js "^4.4.0" + brorand "^1.0.1" + hash.js "^1.0.0" + hmac-drbg "^1.0.0" + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + minimalistic-crypto-utils "^1.0.0" + +emoji-regex@^6.1.0: + version "6.5.1" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-6.5.1.tgz#9baea929b155565c11ea41c6626eaa65cef992c2" + +emojis-list@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" + +encodeurl@~1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20" + +encoding@^0.1.11: + version "0.1.12" + resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" + dependencies: + iconv-lite "~0.4.13" + +enhanced-resolve@^3.4.0: + version "3.4.1" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz#0421e339fd71419b3da13d129b3979040230476e" + dependencies: + graceful-fs "^4.1.2" + memory-fs "^0.4.0" + object-assign "^4.0.1" + tapable "^0.2.7" + +entities@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0" + +errno@^0.1.3, errno@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" + dependencies: + prr "~0.0.0" + +error-ex@^1.2.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" + dependencies: + is-arrayish "^0.2.1" + +es-abstract@^1.7.0: + version "1.8.1" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.8.1.tgz#fd85a3bdfa67786ce7be7e1584678e119cd70c04" + dependencies: + es-to-primitive "^1.1.1" + function-bind "^1.1.1" + has "^1.0.1" + is-callable "^1.1.3" + is-regex "^1.0.4" + +es-to-primitive@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" + dependencies: + is-callable "^1.1.1" + is-date-object "^1.0.1" + is-symbol "^1.0.1" + +es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14: + version "0.10.30" + resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.30.tgz#7141a16836697dbabfaaaeee41495ce29f52c939" + dependencies: + es6-iterator "2" + es6-symbol "~3.1" + +es6-iterator@2, es6-iterator@^2.0.1, es6-iterator@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512" + dependencies: + d "1" + es5-ext "^0.10.14" + es6-symbol "^3.1" + +es6-map@^0.1.3: + version "0.1.5" + resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" + dependencies: + d "1" + es5-ext "~0.10.14" + es6-iterator "~2.0.1" + es6-set "~0.1.5" + es6-symbol "~3.1.1" + event-emitter "~0.3.5" + +es6-promise@^4.0.5: + version "4.1.1" + resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.1.1.tgz#8811e90915d9a0dba36274f0b242dbda78f9c92a" + +es6-set@~0.1.5: + version "0.1.5" + resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" + dependencies: + d "1" + es5-ext "~0.10.14" + es6-iterator "~2.0.1" + es6-symbol "3.1.1" + event-emitter "~0.3.5" + +es6-symbol@3.1.1, es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1, es6-symbol@~3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" + dependencies: + d "1" + es5-ext "~0.10.14" + +es6-weak-map@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" + dependencies: + d "1" + es5-ext "^0.10.14" + es6-iterator "^2.0.1" + es6-symbol "^3.1.1" + +escape-html@~1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" + +escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + +escodegen@^1.6.1: + version "1.8.1" + resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" + dependencies: + esprima "^2.7.1" + estraverse "^1.9.1" + esutils "^2.0.2" + optionator "^0.8.1" + optionalDependencies: + source-map "~0.2.0" + +escope@^3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" + dependencies: + es6-map "^0.1.3" + es6-weak-map "^2.0.1" + esrecurse "^4.1.0" + estraverse "^4.1.1" + +eslint-config-react-app@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/eslint-config-react-app/-/eslint-config-react-app-2.0.0.tgz#8a5fb357c028336578c37a4bd2fc72b1817717cf" + +eslint-import-resolver-node@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.1.tgz#4422574cde66a9a7b099938ee4d508a199e0e3cc" + dependencies: + debug "^2.6.8" + resolve "^1.2.0" + +eslint-loader@1.9.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/eslint-loader/-/eslint-loader-1.9.0.tgz#7e1be9feddca328d3dcfaef1ad49d5beffe83a13" + dependencies: + loader-fs-cache "^1.0.0" + loader-utils "^1.0.2" + object-assign "^4.0.1" + object-hash "^1.1.4" + rimraf "^2.6.1" + +eslint-module-utils@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.1.1.tgz#abaec824177613b8a95b299639e1b6facf473449" + dependencies: + debug "^2.6.8" + pkg-dir "^1.0.0" + +eslint-plugin-flowtype@2.35.0: + version "2.35.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-2.35.0.tgz#d17494f0ae8b727c632d8b9d4b4a848e7e0c04af" + dependencies: + lodash "^4.15.0" + +eslint-plugin-import@2.7.0: + version "2.7.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.7.0.tgz#21de33380b9efb55f5ef6d2e210ec0e07e7fa69f" + dependencies: + builtin-modules "^1.1.1" + contains-path "^0.1.0" + debug "^2.6.8" + doctrine "1.5.0" + eslint-import-resolver-node "^0.3.1" + eslint-module-utils "^2.1.1" + has "^1.0.1" + lodash.cond "^4.3.0" + minimatch "^3.0.3" + read-pkg-up "^2.0.0" + +eslint-plugin-jsx-a11y@5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-5.1.1.tgz#5c96bb5186ca14e94db1095ff59b3e2bd94069b1" + dependencies: + aria-query "^0.7.0" + array-includes "^3.0.3" + ast-types-flow "0.0.7" + axobject-query "^0.1.0" + damerau-levenshtein "^1.0.0" + emoji-regex "^6.1.0" + jsx-ast-utils "^1.4.0" + +eslint-plugin-react@7.1.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.1.0.tgz#27770acf39f5fd49cd0af4083ce58104eb390d4c" + dependencies: + doctrine "^2.0.0" + has "^1.0.1" + jsx-ast-utils "^1.4.1" + +eslint-scope@^3.7.1: + version "3.7.1" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" + dependencies: + esrecurse "^4.1.0" + estraverse "^4.1.1" + +eslint@4.4.1: + version "4.4.1" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.4.1.tgz#99cd7eafcffca2ff99a5c8f5f2a474d6364b4bd3" + dependencies: + ajv "^5.2.0" + babel-code-frame "^6.22.0" + chalk "^1.1.3" + concat-stream "^1.6.0" + cross-spawn "^5.1.0" + debug "^2.6.8" + doctrine "^2.0.0" + eslint-scope "^3.7.1" + espree "^3.5.0" + esquery "^1.0.0" + estraverse "^4.2.0" + esutils "^2.0.2" + file-entry-cache "^2.0.0" + functional-red-black-tree "^1.0.1" + glob "^7.1.2" + globals "^9.17.0" + ignore "^3.3.3" + imurmurhash "^0.1.4" + inquirer "^3.0.6" + is-resolvable "^1.0.0" + js-yaml "^3.9.1" + json-stable-stringify "^1.0.1" + levn "^0.3.0" + lodash "^4.17.4" + minimatch "^3.0.2" + mkdirp "^0.5.1" + natural-compare "^1.4.0" + optionator "^0.8.2" + path-is-inside "^1.0.2" + pluralize "^4.0.0" + progress "^2.0.0" + require-uncached "^1.0.3" + semver "^5.3.0" + strip-json-comments "~2.0.1" + table "^4.0.1" + text-table "~0.2.0" + +espree@^3.5.0: + version "3.5.0" + resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.0.tgz#98358625bdd055861ea27e2867ea729faf463d8d" + dependencies: + acorn "^5.1.1" + acorn-jsx "^3.0.0" + +esprima@^2.6.0, esprima@^2.7.1: + version "2.7.3" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" + +esprima@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" + +esquery@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" + dependencies: + estraverse "^4.0.0" + +esrecurse@^4.1.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" + dependencies: + estraverse "^4.1.0" + object-assign "^4.0.1" + +estraverse@^1.9.1: + version "1.9.3" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" + +estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" + +esutils@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" + +etag@~1.8.0: + version "1.8.0" + resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.0.tgz#6f631aef336d6c46362b51764044ce216be3c051" + +event-emitter@~0.3.5: + version "0.3.5" + resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" + dependencies: + d "1" + es5-ext "~0.10.14" + +eventemitter3@1.x.x: + version "1.2.0" + resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-1.2.0.tgz#1c86991d816ad1e504750e73874224ecf3bec508" + +events@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" + +eventsource@0.1.6: + version "0.1.6" + resolved "https://registry.yarnpkg.com/eventsource/-/eventsource-0.1.6.tgz#0acede849ed7dd1ccc32c811bb11b944d4f29232" + dependencies: + original ">=0.0.5" + +evp_bytestokey@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.2.tgz#f66bb88ecd57f71a766821e20283ea38c68bf80a" + dependencies: + md5.js "^1.3.4" + safe-buffer "^5.1.1" + +exec-sh@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" + dependencies: + merge "^1.1.3" + +execa@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" + dependencies: + cross-spawn "^5.0.1" + get-stream "^3.0.0" + is-stream "^1.1.0" + npm-run-path "^2.0.0" + p-finally "^1.0.0" + signal-exit "^3.0.0" + strip-eof "^1.0.0" + +expand-brackets@^0.1.4: + version "0.1.5" + resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" + dependencies: + is-posix-bracket "^0.1.0" + +expand-range@^1.8.1: + version "1.8.2" + resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" + dependencies: + fill-range "^2.1.0" + +expand-tilde@^2.0.0, expand-tilde@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-2.0.2.tgz#97e801aa052df02454de46b02bf621642cdc8502" + dependencies: + homedir-polyfill "^1.0.1" + +express@^4.13.3: + version "4.15.4" + resolved "https://registry.yarnpkg.com/express/-/express-4.15.4.tgz#032e2253489cf8fce02666beca3d11ed7a2daed1" + dependencies: + accepts "~1.3.3" + array-flatten "1.1.1" + content-disposition "0.5.2" + content-type "~1.0.2" + cookie "0.3.1" + cookie-signature "1.0.6" + debug "2.6.8" + depd "~1.1.1" + encodeurl "~1.0.1" + escape-html "~1.0.3" + etag "~1.8.0" + finalhandler "~1.0.4" + fresh "0.5.0" + merge-descriptors "1.0.1" + methods "~1.1.2" + on-finished "~2.3.0" + parseurl "~1.3.1" + path-to-regexp "0.1.7" + proxy-addr "~1.1.5" + qs "6.5.0" + range-parser "~1.2.0" + send "0.15.4" + serve-static "1.12.4" + setprototypeof "1.0.3" + statuses "~1.3.1" + type-is "~1.6.15" + utils-merge "1.0.0" + vary "~1.1.1" + +extend@~3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" + +external-editor@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.0.4.tgz#1ed9199da9cbfe2ef2f7a31b2fde8b0d12368972" + dependencies: + iconv-lite "^0.4.17" + jschardet "^1.4.2" + tmp "^0.0.31" + +extglob@^0.3.1: + version "0.3.2" + resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" + dependencies: + is-extglob "^1.0.0" + +extract-text-webpack-plugin@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/extract-text-webpack-plugin/-/extract-text-webpack-plugin-3.0.0.tgz#90caa7907bc449f335005e3ac7532b41b00de612" + dependencies: + async "^2.4.1" + loader-utils "^1.1.0" + schema-utils "^0.3.0" + webpack-sources "^1.0.1" + +extsprintf@1.3.0, extsprintf@^1.2.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" + +fast-deep-equal@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" + +fast-levenshtein@~2.0.4: + version "2.0.6" + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + +fastparse@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.1.tgz#d1e2643b38a94d7583b479060e6c4affc94071f8" + +faye-websocket@^0.10.0: + version "0.10.0" + resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.10.0.tgz#4e492f8d04dfb6f89003507f6edbf2d501e7c6f4" + dependencies: + websocket-driver ">=0.5.1" + +faye-websocket@~0.11.0: + version "0.11.1" + resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.1.tgz#f0efe18c4f56e4f40afc7e06c719fd5ee6188f38" + dependencies: + websocket-driver ">=0.5.1" + +fb-watchman@^1.8.0: + version "1.9.2" + resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383" + dependencies: + bser "1.0.2" + +fb-watchman@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" + dependencies: + bser "^2.0.0" + +fbjs@^0.8.9: + version "0.8.14" + resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.14.tgz#d1dbe2be254c35a91e09f31f9cd50a40b2a0ed1c" + dependencies: + core-js "^1.0.0" + isomorphic-fetch "^2.1.1" + loose-envify "^1.0.0" + object-assign "^4.1.0" + promise "^7.1.1" + setimmediate "^1.0.5" + ua-parser-js "^0.7.9" + +figures@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" + dependencies: + escape-string-regexp "^1.0.5" + +file-entry-cache@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" + dependencies: + flat-cache "^1.2.1" + object-assign "^4.0.1" + +file-loader@0.11.2: + version "0.11.2" + resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-0.11.2.tgz#4ff1df28af38719a6098093b88c82c71d1794a34" + dependencies: + loader-utils "^1.0.2" + +filename-regex@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" + +fileset@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" + dependencies: + glob "^7.0.3" + minimatch "^3.0.3" + +filesize@3.5.10: + version "3.5.10" + resolved "https://registry.yarnpkg.com/filesize/-/filesize-3.5.10.tgz#fc8fa23ddb4ef9e5e0ab6e1e64f679a24a56761f" + +fill-range@^2.1.0: + version "2.2.3" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" + dependencies: + is-number "^2.1.0" + isobject "^2.0.0" + randomatic "^1.1.3" + repeat-element "^1.1.2" + repeat-string "^1.5.2" + +filled-array@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/filled-array/-/filled-array-1.1.0.tgz#c3c4f6c663b923459a9aa29912d2d031f1507f84" + +finalhandler@~1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.0.4.tgz#18574f2e7c4b98b8ae3b230c21f201f31bdb3fb7" + dependencies: + debug "2.6.8" + encodeurl "~1.0.1" + escape-html "~1.0.3" + on-finished "~2.3.0" + parseurl "~1.3.1" + statuses "~1.3.1" + unpipe "~1.0.0" + +find-cache-dir@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" + dependencies: + commondir "^1.0.1" + mkdirp "^0.5.1" + pkg-dir "^1.0.0" + +find-cache-dir@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-1.0.0.tgz#9288e3e9e3cc3748717d39eade17cf71fc30ee6f" + dependencies: + commondir "^1.0.1" + make-dir "^1.0.0" + pkg-dir "^2.0.0" + +find-up@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" + dependencies: + path-exists "^2.0.0" + pinkie-promise "^2.0.0" + +find-up@^2.0.0, find-up@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" + dependencies: + locate-path "^2.0.0" + +flat-cache@^1.2.1: + version "1.2.2" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" + dependencies: + circular-json "^0.3.1" + del "^2.0.2" + graceful-fs "^4.1.2" + write "^0.2.1" + +flatten@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.2.tgz#dae46a9d78fbe25292258cc1e780a41d95c03782" + +for-in@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" + +for-own@^0.1.4: + version "0.1.5" + resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" + dependencies: + for-in "^1.0.1" + +foreach@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" + +forever-agent@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" + +form-data@~2.1.1: + version "2.1.4" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.5" + mime-types "^2.1.12" + +forwarded@~0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.0.tgz#19ef9874c4ae1c297bcf078fde63a09b66a84363" + +fresh@0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.0.tgz#f474ca5e6a9246d6fd8e0953cfa9b9c805afa78e" + +fs-extra@3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-3.0.1.tgz#3794f378c58b342ea7dbbb23095109c4b3b62291" + dependencies: + graceful-fs "^4.1.2" + jsonfile "^3.0.0" + universalify "^0.1.0" + +fs-extra@^0.30.0: + version "0.30.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.30.0.tgz#f233ffcc08d4da7d432daa449776989db1df93f0" + dependencies: + graceful-fs "^4.1.2" + jsonfile "^2.1.0" + klaw "^1.0.0" + path-is-absolute "^1.0.0" + rimraf "^2.2.8" + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + +fsevents@1.1.2, fsevents@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4" + dependencies: + nan "^2.3.0" + node-pre-gyp "^0.6.36" + +fstream-ignore@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" + dependencies: + fstream "^1.0.0" + inherits "2" + minimatch "^3.0.0" + +fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: + version "1.0.11" + resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" + dependencies: + graceful-fs "^4.1.2" + inherits "~2.0.0" + mkdirp ">=0.5 0" + rimraf "2" + +function-bind@^1.0.2, function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + +functional-red-black-tree@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" + +gauge@~2.7.3: + version "2.7.4" + resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" + dependencies: + aproba "^1.0.3" + console-control-strings "^1.0.0" + has-unicode "^2.0.0" + object-assign "^4.1.0" + signal-exit "^3.0.0" + string-width "^1.0.1" + strip-ansi "^3.0.1" + wide-align "^1.1.0" + +get-caller-file@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" + +get-stdin@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" + +get-stream@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" + +getpass@^0.1.1: + version "0.1.7" + resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" + dependencies: + assert-plus "^1.0.0" + +glob-base@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" + dependencies: + glob-parent "^2.0.0" + is-glob "^2.0.0" + +glob-parent@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" + dependencies: + is-glob "^2.0.0" + +glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2: + version "7.1.2" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +global-modules@1.0.0, global-modules@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-1.0.0.tgz#6d770f0eb523ac78164d72b5e71a8877265cc3ea" + dependencies: + global-prefix "^1.0.1" + is-windows "^1.0.1" + resolve-dir "^1.0.0" + +global-prefix@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-1.0.2.tgz#dbf743c6c14992593c655568cb66ed32c0122ebe" + dependencies: + expand-tilde "^2.0.2" + homedir-polyfill "^1.0.1" + ini "^1.3.4" + is-windows "^1.0.1" + which "^1.2.14" + +globals@^9.17.0, globals@^9.18.0: + version "9.18.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" + +globby@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" + dependencies: + array-union "^1.0.1" + arrify "^1.0.0" + glob "^7.0.3" + object-assign "^4.0.1" + pify "^2.0.0" + pinkie-promise "^2.0.0" + +globby@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" + dependencies: + array-union "^1.0.1" + glob "^7.0.3" + object-assign "^4.0.1" + pify "^2.0.0" + pinkie-promise "^2.0.0" + +got@^5.0.0: + version "5.7.1" + resolved "https://registry.yarnpkg.com/got/-/got-5.7.1.tgz#5f81635a61e4a6589f180569ea4e381680a51f35" + dependencies: + create-error-class "^3.0.1" + duplexer2 "^0.1.4" + is-redirect "^1.0.0" + is-retry-allowed "^1.0.0" + is-stream "^1.0.0" + lowercase-keys "^1.0.0" + node-status-codes "^1.0.0" + object-assign "^4.0.1" + parse-json "^2.1.0" + pinkie-promise "^2.0.0" + read-all-stream "^3.0.0" + readable-stream "^2.0.5" + timed-out "^3.0.0" + unzip-response "^1.0.2" + url-parse-lax "^1.0.0" + +graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9: + version "4.1.11" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" + +growly@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" + +gzip-size@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-3.0.0.tgz#546188e9bdc337f673772f81660464b389dce520" + dependencies: + duplexer "^0.1.1" + +handle-thing@^1.2.5: + version "1.2.5" + resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-1.2.5.tgz#fd7aad726bf1a5fd16dfc29b2f7a6601d27139c4" + +handlebars@^4.0.3: + version "4.0.10" + resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.10.tgz#3d30c718b09a3d96f23ea4cc1f403c4d3ba9ff4f" + dependencies: + async "^1.4.0" + optimist "^0.6.1" + source-map "^0.4.4" + optionalDependencies: + uglify-js "^2.6" + +har-schema@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" + +har-validator@~4.2.1: + version "4.2.1" + resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" + dependencies: + ajv "^4.9.1" + har-schema "^1.0.5" + +has-ansi@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" + dependencies: + ansi-regex "^2.0.0" + +has-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" + +has-flag@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" + +has-unicode@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" + +has@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" + dependencies: + function-bind "^1.0.2" + +hash-base@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-2.0.2.tgz#66ea1d856db4e8a5470cadf6fce23ae5244ef2e1" + dependencies: + inherits "^2.0.1" + +hash-base@^3.0.0: + version "3.0.4" + resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +hash.js@^1.0.0, hash.js@^1.0.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.3.tgz#340dedbe6290187151c1ea1d777a3448935df846" + dependencies: + inherits "^2.0.3" + minimalistic-assert "^1.0.0" + +hawk@~3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" + dependencies: + boom "2.x.x" + cryptiles "2.x.x" + hoek "2.x.x" + sntp "1.x.x" + +he@1.1.x: + version "1.1.1" + resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" + +hmac-drbg@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" + dependencies: + hash.js "^1.0.3" + minimalistic-assert "^1.0.0" + minimalistic-crypto-utils "^1.0.1" + +hoek@2.x.x: + version "2.16.3" + resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" + +home-or-tmp@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" + dependencies: + os-homedir "^1.0.0" + os-tmpdir "^1.0.1" + +homedir-polyfill@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz#4c2bbc8a758998feebf5ed68580f76d46768b4bc" + dependencies: + parse-passwd "^1.0.0" + +hosted-git-info@^2.1.4: + version "2.5.0" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" + +hpack.js@^2.1.6: + version "2.1.6" + resolved "https://registry.yarnpkg.com/hpack.js/-/hpack.js-2.1.6.tgz#87774c0949e513f42e84575b3c45681fade2a0b2" + dependencies: + inherits "^2.0.1" + obuf "^1.0.0" + readable-stream "^2.0.1" + wbuf "^1.1.0" + +html-comment-regex@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.1.tgz#668b93776eaae55ebde8f3ad464b307a4963625e" + +html-encoding-sniffer@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" + dependencies: + whatwg-encoding "^1.0.1" + +html-entities@1.2.1, html-entities@^1.2.0: + version "1.2.1" + resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-1.2.1.tgz#0df29351f0721163515dfb9e5543e5f6eed5162f" + +html-minifier@^3.2.3: + version "3.5.3" + resolved "https://registry.yarnpkg.com/html-minifier/-/html-minifier-3.5.3.tgz#4a275e3b1a16639abb79b4c11191ff0d0fcf1ab9" + dependencies: + camel-case "3.0.x" + clean-css "4.1.x" + commander "2.11.x" + he "1.1.x" + ncname "1.0.x" + param-case "2.1.x" + relateurl "0.2.x" + uglify-js "3.0.x" + +html-webpack-plugin@2.29.0: + version "2.29.0" + resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-2.29.0.tgz#e987f421853d3b6938c8c4c8171842e5fd17af23" + dependencies: + bluebird "^3.4.7" + html-minifier "^3.2.3" + loader-utils "^0.2.16" + lodash "^4.17.3" + pretty-error "^2.0.2" + toposort "^1.0.0" + +htmlparser2@~3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.3.0.tgz#cc70d05a59f6542e43f0e685c982e14c924a9efe" + dependencies: + domelementtype "1" + domhandler "2.1" + domutils "1.1" + readable-stream "1.0" + +http-deceiver@^1.2.7: + version "1.2.7" + resolved "https://registry.yarnpkg.com/http-deceiver/-/http-deceiver-1.2.7.tgz#fa7168944ab9a519d337cb0bec7284dc3e723d87" + +http-errors@~1.6.1, http-errors@~1.6.2: + version "1.6.2" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.2.tgz#0a002cc85707192a7e7946ceedc11155f60ec736" + dependencies: + depd "1.1.1" + inherits "2.0.3" + setprototypeof "1.0.3" + statuses ">= 1.3.1 < 2" + +http-proxy-middleware@~0.17.4: + version "0.17.4" + resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-0.17.4.tgz#642e8848851d66f09d4f124912846dbaeb41b833" + dependencies: + http-proxy "^1.16.2" + is-glob "^3.1.0" + lodash "^4.17.2" + micromatch "^2.3.11" + +http-proxy@^1.16.2: + version "1.16.2" + resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.16.2.tgz#06dff292952bf64dbe8471fa9df73066d4f37742" + dependencies: + eventemitter3 "1.x.x" + requires-port "1.x.x" + +http-signature@~1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" + dependencies: + assert-plus "^0.2.0" + jsprim "^1.2.2" + sshpk "^1.7.0" + +https-browserify@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82" + +iconv-lite@0.4.13: + version "0.4.13" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" + +iconv-lite@^0.4.17, iconv-lite@~0.4.13: + version "0.4.18" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.18.tgz#23d8656b16aae6742ac29732ea8f0336a4789cf2" + +icss-replace-symbols@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded" + +icss-utils@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-2.1.0.tgz#83f0a0ec378bf3246178b6c2ad9136f135b1c962" + dependencies: + postcss "^6.0.1" + +ieee754@^1.1.4: + version "1.1.8" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" + +ignore@^3.3.3: + version "3.3.5" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.5.tgz#c4e715455f6073a8d7e5dae72d2fc9d71663dba6" + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + +indent-string@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" + dependencies: + repeating "^2.0.0" + +indexes-of@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" + +indexof@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" + +inherits@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" + +ini@^1.3.4, ini@~1.3.0: + version "1.3.4" + resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" + +inquirer@3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.2.1.tgz#06ceb0f540f45ca548c17d6840959878265fa175" + dependencies: + ansi-escapes "^2.0.0" + chalk "^2.0.0" + cli-cursor "^2.1.0" + cli-width "^2.0.0" + external-editor "^2.0.4" + figures "^2.0.0" + lodash "^4.3.0" + mute-stream "0.0.7" + run-async "^2.2.0" + rx-lite "^4.0.8" + rx-lite-aggregates "^4.0.8" + string-width "^2.1.0" + strip-ansi "^4.0.0" + through "^2.3.6" + +inquirer@^3.0.6: + version "3.2.3" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.2.3.tgz#1c7b1731cf77b934ec47d22c9ac5aa8fe7fbe095" + dependencies: + ansi-escapes "^2.0.0" + chalk "^2.0.0" + cli-cursor "^2.1.0" + cli-width "^2.0.0" + external-editor "^2.0.4" + figures "^2.0.0" + lodash "^4.3.0" + mute-stream "0.0.7" + run-async "^2.2.0" + rx-lite "^4.0.8" + rx-lite-aggregates "^4.0.8" + string-width "^2.1.0" + strip-ansi "^4.0.0" + through "^2.3.6" + +internal-ip@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/internal-ip/-/internal-ip-1.2.0.tgz#ae9fbf93b984878785d50a8de1b356956058cf5c" + dependencies: + meow "^3.3.0" + +interpret@^1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.3.tgz#cbc35c62eeee73f19ab7b10a801511401afc0f90" + +invariant@^2.2.2: + version "2.2.2" + resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" + dependencies: + loose-envify "^1.0.0" + +invert-kv@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" + +ip@^1.1.0, ip@^1.1.5: + version "1.1.5" + resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" + +ipaddr.js@1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.4.0.tgz#296aca878a821816e5b85d0a285a99bcff4582f0" + +is-absolute-url@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6" + +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + +is-binary-path@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" + dependencies: + binary-extensions "^1.0.0" + +is-buffer@^1.1.5: + version "1.1.5" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" + +is-builtin-module@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" + dependencies: + builtin-modules "^1.0.0" + +is-callable@^1.1.1, is-callable@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" + +is-ci@^1.0.10: + version "1.0.10" + resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" + dependencies: + ci-info "^1.0.0" + +is-date-object@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" + +is-directory@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" + +is-dotfile@^1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" + +is-equal-shallow@^0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" + dependencies: + is-primitive "^2.0.0" + +is-extendable@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" + +is-extglob@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" + +is-extglob@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + +is-finite@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" + dependencies: + number-is-nan "^1.0.0" + +is-fullwidth-code-point@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" + dependencies: + number-is-nan "^1.0.0" + +is-fullwidth-code-point@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" + +is-glob@^2.0.0, is-glob@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" + dependencies: + is-extglob "^1.0.0" + +is-glob@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" + dependencies: + is-extglob "^2.1.0" + +is-npm@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" + +is-number@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" + dependencies: + kind-of "^3.0.2" + +is-number@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" + dependencies: + kind-of "^3.0.2" + +is-obj@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" + +is-path-cwd@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" + +is-path-in-cwd@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" + dependencies: + is-path-inside "^1.0.0" + +is-path-inside@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" + dependencies: + path-is-inside "^1.0.1" + +is-plain-obj@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" + +is-posix-bracket@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" + +is-primitive@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" + +is-promise@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" + +is-redirect@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" + +is-regex@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" + dependencies: + has "^1.0.1" + +is-resolvable@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" + dependencies: + tryit "^1.0.1" + +is-retry-allowed@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" + +is-root@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-root/-/is-root-1.0.0.tgz#07b6c233bc394cd9d02ba15c966bd6660d6342d5" + +is-stream@^1.0.0, is-stream@^1.0.1, is-stream@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" + +is-svg@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-2.1.0.tgz#cf61090da0d9efbcab8722deba6f032208dbb0e9" + dependencies: + html-comment-regex "^1.1.0" + +is-symbol@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" + +is-typedarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" + +is-utf8@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" + +is-windows@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.1.tgz#310db70f742d259a16a369202b51af84233310d9" + +is-wsl@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" + +isarray@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" + +isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + +isobject@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" + dependencies: + isarray "1.0.0" + +isomorphic-fetch@^2.1.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" + dependencies: + node-fetch "^1.0.1" + whatwg-fetch ">=0.10.0" + +isstream@~0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" + +istanbul-api@^1.1.1: + version "1.1.13" + resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.13.tgz#7197f64413600ebdfec6347a2dc3d4e03f97ed5a" + dependencies: + async "^2.1.4" + fileset "^2.0.2" + istanbul-lib-coverage "^1.1.1" + istanbul-lib-hook "^1.0.7" + istanbul-lib-instrument "^1.7.5" + istanbul-lib-report "^1.1.1" + istanbul-lib-source-maps "^1.2.1" + istanbul-reports "^1.1.2" + js-yaml "^3.7.0" + mkdirp "^0.5.1" + once "^1.4.0" + +istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" + +istanbul-lib-hook@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.7.tgz#dd6607f03076578fe7d6f2a630cf143b49bacddc" + dependencies: + append-transform "^0.4.0" + +istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.7.2, istanbul-lib-instrument@^1.7.5: + version "1.7.5" + resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.5.tgz#adb596f8f0cb8b95e739206351a38a586af21b1e" + dependencies: + babel-generator "^6.18.0" + babel-template "^6.16.0" + babel-traverse "^6.18.0" + babel-types "^6.18.0" + babylon "^6.17.4" + istanbul-lib-coverage "^1.1.1" + semver "^5.3.0" + +istanbul-lib-report@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#f0e55f56655ffa34222080b7a0cd4760e1405fc9" + dependencies: + istanbul-lib-coverage "^1.1.1" + mkdirp "^0.5.1" + path-parse "^1.0.5" + supports-color "^3.1.2" + +istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.1.tgz#a6fe1acba8ce08eebc638e572e294d267008aa0c" + dependencies: + debug "^2.6.3" + istanbul-lib-coverage "^1.1.1" + mkdirp "^0.5.1" + rimraf "^2.6.1" + source-map "^0.5.3" + +istanbul-reports@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.2.tgz#0fb2e3f6aa9922bd3ce45d05d8ab4d5e8e07bd4f" + dependencies: + handlebars "^4.0.3" + +jest-changed-files@^20.0.3: + version "20.0.3" + resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-20.0.3.tgz#9394d5cc65c438406149bef1bf4d52b68e03e3f8" + +jest-cli@^20.0.4: + version "20.0.4" + resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-20.0.4.tgz#e532b19d88ae5bc6c417e8b0593a6fe954b1dc93" + dependencies: + ansi-escapes "^1.4.0" + callsites "^2.0.0" + chalk "^1.1.3" + graceful-fs "^4.1.11" + is-ci "^1.0.10" + istanbul-api "^1.1.1" + istanbul-lib-coverage "^1.0.1" + istanbul-lib-instrument "^1.4.2" + istanbul-lib-source-maps "^1.1.0" + jest-changed-files "^20.0.3" + jest-config "^20.0.4" + jest-docblock "^20.0.3" + jest-environment-jsdom "^20.0.3" + jest-haste-map "^20.0.4" + jest-jasmine2 "^20.0.4" + jest-message-util "^20.0.3" + jest-regex-util "^20.0.3" + jest-resolve-dependencies "^20.0.3" + jest-runtime "^20.0.4" + jest-snapshot "^20.0.3" + jest-util "^20.0.3" + micromatch "^2.3.11" + node-notifier "^5.0.2" + pify "^2.3.0" + slash "^1.0.0" + string-length "^1.0.1" + throat "^3.0.0" + which "^1.2.12" + worker-farm "^1.3.1" + yargs "^7.0.2" + +jest-config@^20.0.4: + version "20.0.4" + resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-20.0.4.tgz#e37930ab2217c913605eff13e7bd763ec48faeea" + dependencies: + chalk "^1.1.3" + glob "^7.1.1" + jest-environment-jsdom "^20.0.3" + jest-environment-node "^20.0.3" + jest-jasmine2 "^20.0.4" + jest-matcher-utils "^20.0.3" + jest-regex-util "^20.0.3" + jest-resolve "^20.0.4" + jest-validate "^20.0.3" + pretty-format "^20.0.3" + +jest-diff@^20.0.3: + version "20.0.3" + resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-20.0.3.tgz#81f288fd9e675f0fb23c75f1c2b19445fe586617" + dependencies: + chalk "^1.1.3" + diff "^3.2.0" + jest-matcher-utils "^20.0.3" + pretty-format "^20.0.3" + +jest-docblock@^20.0.3: + version "20.0.3" + resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-20.0.3.tgz#17bea984342cc33d83c50fbe1545ea0efaa44712" + +jest-environment-jsdom@^20.0.3: + version "20.0.3" + resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-20.0.3.tgz#048a8ac12ee225f7190417713834bb999787de99" + dependencies: + jest-mock "^20.0.3" + jest-util "^20.0.3" + jsdom "^9.12.0" + +jest-environment-node@^20.0.3: + version "20.0.3" + resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-20.0.3.tgz#d488bc4612af2c246e986e8ae7671a099163d403" + dependencies: + jest-mock "^20.0.3" + jest-util "^20.0.3" + +jest-haste-map@^20.0.4: + version "20.0.5" + resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-20.0.5.tgz#abad74efb1a005974a7b6517e11010709cab9112" + dependencies: + fb-watchman "^2.0.0" + graceful-fs "^4.1.11" + jest-docblock "^20.0.3" + micromatch "^2.3.11" + sane "~1.6.0" + worker-farm "^1.3.1" + +jest-jasmine2@^20.0.4: + version "20.0.4" + resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-20.0.4.tgz#fcc5b1411780d911d042902ef1859e852e60d5e1" + dependencies: + chalk "^1.1.3" + graceful-fs "^4.1.11" + jest-diff "^20.0.3" + jest-matcher-utils "^20.0.3" + jest-matchers "^20.0.3" + jest-message-util "^20.0.3" + jest-snapshot "^20.0.3" + once "^1.4.0" + p-map "^1.1.1" + +jest-matcher-utils@^20.0.3: + version "20.0.3" + resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-20.0.3.tgz#b3a6b8e37ca577803b0832a98b164f44b7815612" + dependencies: + chalk "^1.1.3" + pretty-format "^20.0.3" + +jest-matchers@^20.0.3: + version "20.0.3" + resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-20.0.3.tgz#ca69db1c32db5a6f707fa5e0401abb55700dfd60" + dependencies: + jest-diff "^20.0.3" + jest-matcher-utils "^20.0.3" + jest-message-util "^20.0.3" + jest-regex-util "^20.0.3" + +jest-message-util@^20.0.3: + version "20.0.3" + resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-20.0.3.tgz#6aec2844306fcb0e6e74d5796c1006d96fdd831c" + dependencies: + chalk "^1.1.3" + micromatch "^2.3.11" + slash "^1.0.0" + +jest-mock@^20.0.3: + version "20.0.3" + resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-20.0.3.tgz#8bc070e90414aa155c11a8d64c869a0d5c71da59" + +jest-regex-util@^20.0.3: + version "20.0.3" + resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-20.0.3.tgz#85bbab5d133e44625b19faf8c6aa5122d085d762" + +jest-resolve-dependencies@^20.0.3: + version "20.0.3" + resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-20.0.3.tgz#6e14a7b717af0f2cb3667c549de40af017b1723a" + dependencies: + jest-regex-util "^20.0.3" + +jest-resolve@^20.0.4: + version "20.0.4" + resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-20.0.4.tgz#9448b3e8b6bafc15479444c6499045b7ffe597a5" + dependencies: + browser-resolve "^1.11.2" + is-builtin-module "^1.0.0" + resolve "^1.3.2" + +jest-runtime@^20.0.4: + version "20.0.4" + resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-20.0.4.tgz#a2c802219c4203f754df1404e490186169d124d8" + dependencies: + babel-core "^6.0.0" + babel-jest "^20.0.3" + babel-plugin-istanbul "^4.0.0" + chalk "^1.1.3" + convert-source-map "^1.4.0" + graceful-fs "^4.1.11" + jest-config "^20.0.4" + jest-haste-map "^20.0.4" + jest-regex-util "^20.0.3" + jest-resolve "^20.0.4" + jest-util "^20.0.3" + json-stable-stringify "^1.0.1" + micromatch "^2.3.11" + strip-bom "3.0.0" + yargs "^7.0.2" + +jest-snapshot@^20.0.3: + version "20.0.3" + resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-20.0.3.tgz#5b847e1adb1a4d90852a7f9f125086e187c76566" + dependencies: + chalk "^1.1.3" + jest-diff "^20.0.3" + jest-matcher-utils "^20.0.3" + jest-util "^20.0.3" + natural-compare "^1.4.0" + pretty-format "^20.0.3" + +jest-util@^20.0.3: + version "20.0.3" + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-20.0.3.tgz#0c07f7d80d82f4e5a67c6f8b9c3fe7f65cfd32ad" + dependencies: + chalk "^1.1.3" + graceful-fs "^4.1.11" + jest-message-util "^20.0.3" + jest-mock "^20.0.3" + jest-validate "^20.0.3" + leven "^2.1.0" + mkdirp "^0.5.1" + +jest-validate@^20.0.3: + version "20.0.3" + resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-20.0.3.tgz#d0cfd1de4f579f298484925c280f8f1d94ec3cab" + dependencies: + chalk "^1.1.3" + jest-matcher-utils "^20.0.3" + leven "^2.1.0" + pretty-format "^20.0.3" + +jest@20.0.4: + version "20.0.4" + resolved "https://registry.yarnpkg.com/jest/-/jest-20.0.4.tgz#3dd260c2989d6dad678b1e9cc4d91944f6d602ac" + dependencies: + jest-cli "^20.0.4" + +js-base64@^2.1.9: + version "2.1.9" + resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.1.9.tgz#f0e80ae039a4bd654b5f281fc93f04a914a7fcce" + +js-tokens@^3.0.0, js-tokens@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" + +js-yaml@^3.4.3, js-yaml@^3.7.0, js-yaml@^3.9.1: + version "3.9.1" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.9.1.tgz#08775cebdfdd359209f0d2acd383c8f86a6904a0" + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + +js-yaml@~3.7.0: + version "3.7.0" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80" + dependencies: + argparse "^1.0.7" + esprima "^2.6.0" + +jsbn@~0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" + +jschardet@^1.4.2: + version "1.5.1" + resolved "https://registry.yarnpkg.com/jschardet/-/jschardet-1.5.1.tgz#c519f629f86b3a5bedba58a88d311309eec097f9" + +jsdom@^9.12.0: + version "9.12.0" + resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" + dependencies: + abab "^1.0.3" + acorn "^4.0.4" + acorn-globals "^3.1.0" + array-equal "^1.0.0" + content-type-parser "^1.0.1" + cssom ">= 0.3.2 < 0.4.0" + cssstyle ">= 0.2.37 < 0.3.0" + escodegen "^1.6.1" + html-encoding-sniffer "^1.0.1" + nwmatcher ">= 1.3.9 < 2.0.0" + parse5 "^1.5.1" + request "^2.79.0" + sax "^1.2.1" + symbol-tree "^3.2.1" + tough-cookie "^2.3.2" + webidl-conversions "^4.0.0" + whatwg-encoding "^1.0.1" + whatwg-url "^4.3.0" + xml-name-validator "^2.0.1" + +jsesc@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" + +jsesc@~0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" + +json-loader@^0.5.4: + version "0.5.7" + resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.7.tgz#dca14a70235ff82f0ac9a3abeb60d337a365185d" + +json-schema-traverse@^0.3.0: + version "0.3.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" + +json-schema@0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" + +json-stable-stringify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" + dependencies: + jsonify "~0.0.0" + +json-stringify-safe@~5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" + +json3@^3.3.2: + version "3.3.2" + resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" + +json5@^0.5.0, json5@^0.5.1: + version "0.5.1" + resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" + +jsonfile@^2.1.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" + optionalDependencies: + graceful-fs "^4.1.6" + +jsonfile@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-3.0.1.tgz#a5ecc6f65f53f662c4415c7675a0331d0992ec66" + optionalDependencies: + graceful-fs "^4.1.6" + +jsonify@~0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" + +jsprim@^1.2.2: + version "1.4.1" + resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" + dependencies: + assert-plus "1.0.0" + extsprintf "1.3.0" + json-schema "0.2.3" + verror "1.10.0" + +jsx-ast-utils@^1.4.0, jsx-ast-utils@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-1.4.1.tgz#3867213e8dd79bf1e8f2300c0cfc1efb182c0df1" + +kind-of@^3.0.2: + version "3.2.2" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" + dependencies: + is-buffer "^1.1.5" + +kind-of@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" + dependencies: + is-buffer "^1.1.5" + +klaw@^1.0.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" + optionalDependencies: + graceful-fs "^4.1.9" + +latest-version@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-2.0.0.tgz#56f8d6139620847b8017f8f1f4d78e211324168b" + dependencies: + package-json "^2.0.0" + +lazy-cache@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" + +lazy-req@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/lazy-req/-/lazy-req-1.1.0.tgz#bdaebead30f8d824039ce0ce149d4daa07ba1fac" + +lcid@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" + dependencies: + invert-kv "^1.0.0" + +leven@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" + +levn@^0.3.0, levn@~0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" + dependencies: + prelude-ls "~1.1.2" + type-check "~0.3.2" + +load-json-file@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" + dependencies: + graceful-fs "^4.1.2" + parse-json "^2.2.0" + pify "^2.0.0" + pinkie-promise "^2.0.0" + strip-bom "^2.0.0" + +load-json-file@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" + dependencies: + graceful-fs "^4.1.2" + parse-json "^2.2.0" + pify "^2.0.0" + strip-bom "^3.0.0" + +loader-fs-cache@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/loader-fs-cache/-/loader-fs-cache-1.0.1.tgz#56e0bf08bd9708b26a765b68509840c8dec9fdbc" + dependencies: + find-cache-dir "^0.1.1" + mkdirp "0.5.1" + +loader-runner@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2" + +loader-utils@^0.2.16: + version "0.2.17" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.17.tgz#f86e6374d43205a6e6c60e9196f17c0299bfb348" + dependencies: + big.js "^3.1.3" + emojis-list "^2.0.0" + json5 "^0.5.0" + object-assign "^4.0.1" + +loader-utils@^1.0.2, loader-utils@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd" + dependencies: + big.js "^3.1.3" + emojis-list "^2.0.0" + json5 "^0.5.0" + +locate-path@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" + dependencies: + p-locate "^2.0.0" + path-exists "^3.0.0" + +lodash._reinterpolate@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" + +lodash.camelcase@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" + +lodash.cond@^4.3.0: + version "4.5.2" + resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" + +lodash.defaults@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c" + +lodash.memoize@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" + +lodash.template@^4.4.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.4.0.tgz#e73a0385c8355591746e020b99679c690e68fba0" + dependencies: + lodash._reinterpolate "~3.0.0" + lodash.templatesettings "^4.0.0" + +lodash.templatesettings@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.1.0.tgz#2b4d4e95ba440d915ff08bc899e4553666713316" + dependencies: + lodash._reinterpolate "~3.0.0" + +lodash.uniq@^4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" + +"lodash@>=3.5 <5", lodash@^4.0.0, lodash@^4.14.0, lodash@^4.15.0, lodash@^4.17.2, lodash@^4.17.3, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.3.0: + version "4.17.4" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" + +loglevel@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.4.1.tgz#95b383f91a3c2756fd4ab093667e4309161f2bcd" + +longest@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" + +loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" + dependencies: + js-tokens "^3.0.0" + +loud-rejection@^1.0.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" + dependencies: + currently-unhandled "^0.4.1" + signal-exit "^3.0.0" + +lower-case@^1.1.1: + version "1.1.4" + resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-1.1.4.tgz#9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac" + +lowercase-keys@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" + +lru-cache@^4.0.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" + dependencies: + pseudomap "^1.0.2" + yallist "^2.1.2" + +macaddress@^0.2.8: + version "0.2.8" + resolved "https://registry.yarnpkg.com/macaddress/-/macaddress-0.2.8.tgz#5904dc537c39ec6dbefeae902327135fa8511f12" + +make-dir@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.0.0.tgz#97a011751e91dd87cfadef58832ebb04936de978" + dependencies: + pify "^2.3.0" + +makeerror@1.0.x: + version "1.0.11" + resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" + dependencies: + tmpl "1.0.x" + +map-obj@^1.0.0, map-obj@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" + +math-expression-evaluator@^1.2.14: + version "1.2.17" + resolved "https://registry.yarnpkg.com/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz#de819fdbcd84dccd8fae59c6aeb79615b9d266ac" + +md5.js@^1.3.4: + version "1.3.4" + resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.4.tgz#e9bdbde94a20a5ac18b04340fc5764d5b09d901d" + dependencies: + hash-base "^3.0.0" + inherits "^2.0.1" + +media-typer@0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" + +mem@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" + dependencies: + mimic-fn "^1.0.0" + +memory-fs@^0.4.0, memory-fs@~0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" + dependencies: + errno "^0.1.3" + readable-stream "^2.0.1" + +meow@^3.3.0, meow@^3.7.0: + version "3.7.0" + resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" + dependencies: + camelcase-keys "^2.0.0" + decamelize "^1.1.2" + loud-rejection "^1.0.0" + map-obj "^1.0.1" + minimist "^1.1.3" + normalize-package-data "^2.3.4" + object-assign "^4.0.1" + read-pkg-up "^1.0.1" + redent "^1.0.0" + trim-newlines "^1.0.0" + +merge-descriptors@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" + +merge@^1.1.3: + version "1.2.0" + resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" + +methods@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" + +micromatch@^2.1.5, micromatch@^2.3.11: + version "2.3.11" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" + dependencies: + arr-diff "^2.0.0" + array-unique "^0.2.1" + braces "^1.8.2" + expand-brackets "^0.1.4" + extglob "^0.3.1" + filename-regex "^2.0.0" + is-extglob "^1.0.0" + is-glob "^2.0.1" + kind-of "^3.0.2" + normalize-path "^2.0.1" + object.omit "^2.0.0" + parse-glob "^3.0.4" + regex-cache "^0.4.2" + +miller-rabin@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.0.tgz#4a62fb1d42933c05583982f4c716f6fb9e6c6d3d" + dependencies: + bn.js "^4.0.0" + brorand "^1.0.1" + +"mime-db@>= 1.29.0 < 2", mime-db@~1.30.0: + version "1.30.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" + +mime-types@^2.1.12, mime-types@~2.1.15, mime-types@~2.1.16, mime-types@~2.1.7: + version "2.1.17" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" + dependencies: + mime-db "~1.30.0" + +mime@1.3.4: + version "1.3.4" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53" + +mime@1.3.x: + version "1.3.6" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.6.tgz#591d84d3653a6b0b4a3b9df8de5aa8108e72e5e0" + +mime@^1.3.4: + version "1.4.0" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.4.0.tgz#69e9e0db51d44f2a3b56e48b7817d7d137f1a343" + +mimic-fn@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" + +minimalistic-assert@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" + +minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" + +minimatch@3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" + dependencies: + brace-expansion "^1.0.0" + +minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" + dependencies: + brace-expansion "^1.1.7" + +minimist@0.0.8: + version "0.0.8" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" + +minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" + +minimist@~0.0.1: + version "0.0.10" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" + +mkdirp@0.5.1, mkdirp@0.5.x, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1: + version "0.5.1" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" + dependencies: + minimist "0.0.8" + +ms@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + +multicast-dns-service-types@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz#899f11d9686e5e05cb91b35d5f0e63b773cfc901" + +multicast-dns@^6.0.1: + version "6.1.1" + resolved "https://registry.yarnpkg.com/multicast-dns/-/multicast-dns-6.1.1.tgz#6e7de86a570872ab17058adea7160bbeca814dde" + dependencies: + dns-packet "^1.0.1" + thunky "^0.1.0" + +mute-stream@0.0.7: + version "0.0.7" + resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" + +nan@^2.3.0: + version "2.7.0" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.7.0.tgz#d95bf721ec877e08db276ed3fc6eb78f9083ad46" + +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + +ncname@1.0.x: + version "1.0.0" + resolved "https://registry.yarnpkg.com/ncname/-/ncname-1.0.0.tgz#5b57ad18b1ca092864ef62b0b1ed8194f383b71c" + dependencies: + xml-char-classes "^1.0.0" + +negotiator@0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" + +no-case@^2.2.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/no-case/-/no-case-2.3.1.tgz#7aeba1c73a52184265554b7dc03baf720df80081" + dependencies: + lower-case "^1.1.1" + +node-fetch@^1.0.1: + version "1.7.2" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.2.tgz#c54e9aac57e432875233525f3c891c4159ffefd7" + dependencies: + encoding "^0.1.11" + is-stream "^1.0.1" + +node-forge@0.6.33: + version "0.6.33" + resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.6.33.tgz#463811879f573d45155ad6a9f43dc296e8e85ebc" + +node-int64@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" + +node-libs-browser@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.0.0.tgz#a3a59ec97024985b46e958379646f96c4b616646" + dependencies: + assert "^1.1.1" + browserify-zlib "^0.1.4" + buffer "^4.3.0" + console-browserify "^1.1.0" + constants-browserify "^1.0.0" + crypto-browserify "^3.11.0" + domain-browser "^1.1.1" + events "^1.0.0" + https-browserify "0.0.1" + os-browserify "^0.2.0" + path-browserify "0.0.0" + process "^0.11.0" + punycode "^1.2.4" + querystring-es3 "^0.2.0" + readable-stream "^2.0.5" + stream-browserify "^2.0.1" + stream-http "^2.3.1" + string_decoder "^0.10.25" + timers-browserify "^2.0.2" + tty-browserify "0.0.0" + url "^0.11.0" + util "^0.10.3" + vm-browserify "0.0.4" + +node-notifier@^5.0.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" + dependencies: + growly "^1.3.0" + semver "^5.3.0" + shellwords "^0.1.0" + which "^1.2.12" + +node-pre-gyp@^0.6.36: + version "0.6.36" + resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz#db604112cb74e0d477554e9b505b17abddfab786" + dependencies: + mkdirp "^0.5.1" + nopt "^4.0.1" + npmlog "^4.0.2" + rc "^1.1.7" + request "^2.81.0" + rimraf "^2.6.1" + semver "^5.3.0" + tar "^2.2.1" + tar-pack "^3.4.0" + +node-status-codes@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/node-status-codes/-/node-status-codes-1.0.0.tgz#5ae5541d024645d32a58fcddc9ceecea7ae3ac2f" + +nopt@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" + dependencies: + abbrev "1" + osenv "^0.1.4" + +normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: + version "2.4.0" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" + dependencies: + hosted-git-info "^2.1.4" + is-builtin-module "^1.0.0" + semver "2 || 3 || 4 || 5" + validate-npm-package-license "^3.0.1" + +normalize-path@^2.0.0, normalize-path@^2.0.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" + dependencies: + remove-trailing-separator "^1.0.1" + +normalize-range@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" + +normalize-url@^1.4.0: + version "1.9.1" + resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-1.9.1.tgz#2cc0d66b31ea23036458436e3620d85954c66c3c" + dependencies: + object-assign "^4.0.1" + prepend-http "^1.0.0" + query-string "^4.1.0" + sort-keys "^1.0.0" + +npm-run-path@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" + dependencies: + path-key "^2.0.0" + +npmlog@^4.0.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" + dependencies: + are-we-there-yet "~1.1.2" + console-control-strings "~1.1.0" + gauge "~2.7.3" + set-blocking "~2.0.0" + +nth-check@~1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.1.tgz#9929acdf628fc2c41098deab82ac580cf149aae4" + dependencies: + boolbase "~1.0.0" + +num2fraction@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" + +number-is-nan@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" + +"nwmatcher@>= 1.3.9 < 2.0.0": + version "1.4.1" + resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.1.tgz#7ae9b07b0ea804db7e25f05cb5fe4097d4e4949f" + +oauth-sign@~0.8.1: + version "0.8.2" + resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" + +object-assign@4.1.1, object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + +object-hash@^1.1.4: + version "1.1.8" + resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-1.1.8.tgz#28a659cf987d96a4dabe7860289f3b5326c4a03c" + +object-keys@^1.0.8: + version "1.0.11" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" + +object.omit@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" + dependencies: + for-own "^0.1.4" + is-extendable "^0.1.1" + +obuf@^1.0.0, obuf@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.1.tgz#104124b6c602c6796881a042541d36db43a5264e" + +on-finished@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" + dependencies: + ee-first "1.1.1" + +on-headers@~1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.1.tgz#928f5d0f470d49342651ea6794b0857c100693f7" + +once@^1.3.0, once@^1.3.3, once@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + dependencies: + wrappy "1" + +onetime@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" + dependencies: + mimic-fn "^1.0.0" + +opn@4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/opn/-/opn-4.0.2.tgz#7abc22e644dff63b0a96d5ab7f2790c0f01abc95" + dependencies: + object-assign "^4.0.1" + pinkie-promise "^2.0.0" + +opn@5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/opn/-/opn-5.1.0.tgz#72ce2306a17dbea58ff1041853352b4a8fc77519" + dependencies: + is-wsl "^1.1.0" + +optimist@^0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" + dependencies: + minimist "~0.0.1" + wordwrap "~0.0.2" + +optionator@^0.8.1, optionator@^0.8.2: + version "0.8.2" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" + dependencies: + deep-is "~0.1.3" + fast-levenshtein "~2.0.4" + levn "~0.3.0" + prelude-ls "~1.1.2" + type-check "~0.3.2" + wordwrap "~1.0.0" + +original@>=0.0.5: + version "1.0.0" + resolved "https://registry.yarnpkg.com/original/-/original-1.0.0.tgz#9147f93fa1696d04be61e01bd50baeaca656bd3b" + dependencies: + url-parse "1.0.x" + +os-browserify@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.2.1.tgz#63fc4ccee5d2d7763d26bbf8601078e6c2e0044f" + +os-homedir@^1.0.0, os-homedir@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" + +os-locale@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" + dependencies: + lcid "^1.0.0" + +os-locale@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" + dependencies: + execa "^0.7.0" + lcid "^1.0.0" + mem "^1.1.0" + +os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + +osenv@^0.1.0, osenv@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" + dependencies: + os-homedir "^1.0.0" + os-tmpdir "^1.0.0" + +p-finally@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" + +p-limit@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" + +p-locate@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" + dependencies: + p-limit "^1.1.0" + +p-map@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.1.1.tgz#05f5e4ae97a068371bc2a5cc86bfbdbc19c4ae7a" + +package-json@^2.0.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/package-json/-/package-json-2.4.0.tgz#0d15bd67d1cbbddbb2ca222ff2edb86bcb31a8bb" + dependencies: + got "^5.0.0" + registry-auth-token "^3.0.1" + registry-url "^3.0.3" + semver "^5.1.0" + +pako@~0.2.0: + version "0.2.9" + resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" + +param-case@2.1.x: + version "2.1.1" + resolved "https://registry.yarnpkg.com/param-case/-/param-case-2.1.1.tgz#df94fd8cf6531ecf75e6bef9a0858fbc72be2247" + dependencies: + no-case "^2.2.0" + +parse-asn1@^5.0.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712" + dependencies: + asn1.js "^4.0.0" + browserify-aes "^1.0.0" + create-hash "^1.1.0" + evp_bytestokey "^1.0.0" + pbkdf2 "^3.0.3" + +parse-glob@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" + dependencies: + glob-base "^0.3.0" + is-dotfile "^1.0.0" + is-extglob "^1.0.0" + is-glob "^2.0.0" + +parse-json@^2.1.0, parse-json@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" + dependencies: + error-ex "^1.2.0" + +parse-passwd@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" + +parse5@^1.5.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" + +parseurl@~1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.1.tgz#c8ab8c9223ba34888aa64a297b28853bec18da56" + +path-browserify@0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" + +path-exists@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" + dependencies: + pinkie-promise "^2.0.0" + +path-exists@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" + +path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + +path-is-inside@^1.0.1, path-is-inside@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" + +path-key@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" + +path-parse@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" + +path-to-regexp@0.1.7: + version "0.1.7" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" + +path-to-regexp@^1.0.1: + version "1.7.0" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.7.0.tgz#59fde0f435badacba103a84e9d3bc64e96b9937d" + dependencies: + isarray "0.0.1" + +path-type@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" + dependencies: + graceful-fs "^4.1.2" + pify "^2.0.0" + pinkie-promise "^2.0.0" + +path-type@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" + dependencies: + pify "^2.0.0" + +pbkdf2@^3.0.3: + version "3.0.13" + resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.13.tgz#c37d295531e786b1da3e3eadc840426accb0ae25" + dependencies: + create-hash "^1.1.2" + create-hmac "^1.1.4" + ripemd160 "^2.0.1" + safe-buffer "^5.0.1" + sha.js "^2.4.8" + +performance-now@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" + +pify@^2.0.0, pify@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" + +pify@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" + +pinkie-promise@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" + dependencies: + pinkie "^2.0.0" + +pinkie@^2.0.0: + version "2.0.4" + resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" + +pkg-dir@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" + dependencies: + find-up "^1.0.0" + +pkg-dir@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" + dependencies: + find-up "^2.1.0" + +pluralize@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-4.0.0.tgz#59b708c1c0190a2f692f1c7618c446b052fd1762" + +portfinder@^1.0.9: + version "1.0.13" + resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.13.tgz#bb32ecd87c27104ae6ee44b5a3ccbf0ebb1aede9" + dependencies: + async "^1.5.2" + debug "^2.2.0" + mkdirp "0.5.x" + +postcss-calc@^5.2.0: + version "5.3.1" + resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-5.3.1.tgz#77bae7ca928ad85716e2fda42f261bf7c1d65b5e" + dependencies: + postcss "^5.0.2" + postcss-message-helpers "^2.0.0" + reduce-css-calc "^1.2.6" + +postcss-colormin@^2.1.8: + version "2.2.2" + resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-2.2.2.tgz#6631417d5f0e909a3d7ec26b24c8a8d1e4f96e4b" + dependencies: + colormin "^1.0.5" + postcss "^5.0.13" + postcss-value-parser "^3.2.3" + +postcss-convert-values@^2.3.4: + version "2.6.1" + resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz#bbd8593c5c1fd2e3d1c322bb925dcae8dae4d62d" + dependencies: + postcss "^5.0.11" + postcss-value-parser "^3.1.2" + +postcss-discard-comments@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz#befe89fafd5b3dace5ccce51b76b81514be00e3d" + dependencies: + postcss "^5.0.14" + +postcss-discard-duplicates@^2.0.1: + version "2.1.0" + resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-2.1.0.tgz#b9abf27b88ac188158a5eb12abcae20263b91932" + dependencies: + postcss "^5.0.4" + +postcss-discard-empty@^2.0.1: + version "2.1.0" + resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz#d2b4bd9d5ced5ebd8dcade7640c7d7cd7f4f92b5" + dependencies: + postcss "^5.0.14" + +postcss-discard-overridden@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz#8b1eaf554f686fb288cd874c55667b0aa3668d58" + dependencies: + postcss "^5.0.16" + +postcss-discard-unused@^2.2.1: + version "2.2.3" + resolved "https://registry.yarnpkg.com/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz#bce30b2cc591ffc634322b5fb3464b6d934f4433" + dependencies: + postcss "^5.0.14" + uniqs "^2.0.0" + +postcss-filter-plugins@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/postcss-filter-plugins/-/postcss-filter-plugins-2.0.2.tgz#6d85862534d735ac420e4a85806e1f5d4286d84c" + dependencies: + postcss "^5.0.4" + uniqid "^4.0.0" + +postcss-flexbugs-fixes@3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-3.2.0.tgz#9b8b932c53f9cf13ba0f61875303e447c33dcc51" + dependencies: + postcss "^6.0.1" + +postcss-load-config@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-1.2.0.tgz#539e9afc9ddc8620121ebf9d8c3673e0ce50d28a" + dependencies: + cosmiconfig "^2.1.0" + object-assign "^4.1.0" + postcss-load-options "^1.2.0" + postcss-load-plugins "^2.3.0" + +postcss-load-options@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/postcss-load-options/-/postcss-load-options-1.2.0.tgz#b098b1559ddac2df04bc0bb375f99a5cfe2b6d8c" + dependencies: + cosmiconfig "^2.1.0" + object-assign "^4.1.0" + +postcss-load-plugins@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/postcss-load-plugins/-/postcss-load-plugins-2.3.0.tgz#745768116599aca2f009fad426b00175049d8d92" + dependencies: + cosmiconfig "^2.1.1" + object-assign "^4.1.0" + +postcss-loader@2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-2.0.6.tgz#8c7e0055a3df1889abc6bad52dd45b2f41bbc6fc" + dependencies: + loader-utils "^1.1.0" + postcss "^6.0.2" + postcss-load-config "^1.2.0" + schema-utils "^0.3.0" + +postcss-merge-idents@^2.1.5: + version "2.1.7" + resolved "https://registry.yarnpkg.com/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz#4c5530313c08e1d5b3bbf3d2bbc747e278eea270" + dependencies: + has "^1.0.1" + postcss "^5.0.10" + postcss-value-parser "^3.1.1" + +postcss-merge-longhand@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz#23d90cd127b0a77994915332739034a1a4f3d658" + dependencies: + postcss "^5.0.4" + +postcss-merge-rules@^2.0.3: + version "2.1.2" + resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-2.1.2.tgz#d1df5dfaa7b1acc3be553f0e9e10e87c61b5f721" + dependencies: + browserslist "^1.5.2" + caniuse-api "^1.5.2" + postcss "^5.0.4" + postcss-selector-parser "^2.2.2" + vendors "^1.0.0" + +postcss-message-helpers@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz#a4f2f4fab6e4fe002f0aed000478cdf52f9ba60e" + +postcss-minify-font-values@^1.0.2: + version "1.0.5" + resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz#4b58edb56641eba7c8474ab3526cafd7bbdecb69" + dependencies: + object-assign "^4.0.1" + postcss "^5.0.4" + postcss-value-parser "^3.0.2" + +postcss-minify-gradients@^1.0.1: + version "1.0.5" + resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz#5dbda11373703f83cfb4a3ea3881d8d75ff5e6e1" + dependencies: + postcss "^5.0.12" + postcss-value-parser "^3.3.0" + +postcss-minify-params@^1.0.4: + version "1.2.2" + resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz#ad2ce071373b943b3d930a3fa59a358c28d6f1f3" + dependencies: + alphanum-sort "^1.0.1" + postcss "^5.0.2" + postcss-value-parser "^3.0.2" + uniqs "^2.0.0" + +postcss-minify-selectors@^2.0.4: + version "2.1.1" + resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz#b2c6a98c0072cf91b932d1a496508114311735bf" + dependencies: + alphanum-sort "^1.0.2" + has "^1.0.1" + postcss "^5.0.14" + postcss-selector-parser "^2.0.0" + +postcss-modules-extract-imports@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.2.0.tgz#66140ecece38ef06bf0d3e355d69bf59d141ea85" + dependencies: + postcss "^6.0.1" + +postcss-modules-local-by-default@^1.0.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz#f7d80c398c5a393fa7964466bd19500a7d61c069" + dependencies: + css-selector-tokenizer "^0.7.0" + postcss "^6.0.1" + +postcss-modules-scope@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz#d6ea64994c79f97b62a72b426fbe6056a194bb90" + dependencies: + css-selector-tokenizer "^0.7.0" + postcss "^6.0.1" + +postcss-modules-values@^1.1.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz#ecffa9d7e192518389f42ad0e83f72aec456ea20" + dependencies: + icss-replace-symbols "^1.1.0" + postcss "^6.0.1" + +postcss-normalize-charset@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz#ef9ee71212d7fe759c78ed162f61ed62b5cb93f1" + dependencies: + postcss "^5.0.5" + +postcss-normalize-url@^3.0.7: + version "3.0.8" + resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz#108f74b3f2fcdaf891a2ffa3ea4592279fc78222" + dependencies: + is-absolute-url "^2.0.0" + normalize-url "^1.4.0" + postcss "^5.0.14" + postcss-value-parser "^3.2.3" + +postcss-ordered-values@^2.1.0: + version "2.2.3" + resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz#eec6c2a67b6c412a8db2042e77fe8da43f95c11d" + dependencies: + postcss "^5.0.4" + postcss-value-parser "^3.0.1" + +postcss-reduce-idents@^2.2.2: + version "2.4.0" + resolved "https://registry.yarnpkg.com/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz#c2c6d20cc958284f6abfbe63f7609bf409059ad3" + dependencies: + postcss "^5.0.4" + postcss-value-parser "^3.0.2" + +postcss-reduce-initial@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz#68f80695f045d08263a879ad240df8dd64f644ea" + dependencies: + postcss "^5.0.4" + +postcss-reduce-transforms@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz#ff76f4d8212437b31c298a42d2e1444025771ae1" + dependencies: + has "^1.0.1" + postcss "^5.0.8" + postcss-value-parser "^3.0.1" + +postcss-selector-parser@^2.0.0, postcss-selector-parser@^2.2.2: + version "2.2.3" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz#f9437788606c3c9acee16ffe8d8b16297f27bb90" + dependencies: + flatten "^1.0.2" + indexes-of "^1.0.1" + uniq "^1.0.1" + +postcss-svgo@^2.1.1: + version "2.1.6" + resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-2.1.6.tgz#b6df18aa613b666e133f08adb5219c2684ac108d" + dependencies: + is-svg "^2.0.0" + postcss "^5.0.14" + postcss-value-parser "^3.2.3" + svgo "^0.7.0" + +postcss-unique-selectors@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz#981d57d29ddcb33e7b1dfe1fd43b8649f933ca1d" + dependencies: + alphanum-sort "^1.0.1" + postcss "^5.0.4" + uniqs "^2.0.0" + +postcss-value-parser@^3.0.1, postcss-value-parser@^3.0.2, postcss-value-parser@^3.1.1, postcss-value-parser@^3.1.2, postcss-value-parser@^3.2.3, postcss-value-parser@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15" + +postcss-zindex@^2.0.1: + version "2.2.0" + resolved "https://registry.yarnpkg.com/postcss-zindex/-/postcss-zindex-2.2.0.tgz#d2109ddc055b91af67fc4cb3b025946639d2af22" + dependencies: + has "^1.0.1" + postcss "^5.0.4" + uniqs "^2.0.0" + +postcss@^5.0.10, postcss@^5.0.11, postcss@^5.0.12, postcss@^5.0.13, postcss@^5.0.14, postcss@^5.0.16, postcss@^5.0.2, postcss@^5.0.4, postcss@^5.0.5, postcss@^5.0.6, postcss@^5.0.8, postcss@^5.2.16: + version "5.2.17" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.2.17.tgz#cf4f597b864d65c8a492b2eabe9d706c879c388b" + dependencies: + chalk "^1.1.3" + js-base64 "^2.1.9" + source-map "^0.5.6" + supports-color "^3.2.3" + +postcss@^6.0.1, postcss@^6.0.2, postcss@^6.0.6: + version "6.0.10" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.10.tgz#c311b89734483d87a91a56dc9e53f15f4e6e84e4" + dependencies: + chalk "^2.1.0" + source-map "^0.5.7" + supports-color "^4.2.1" + +prelude-ls@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" + +prepend-http@^1.0.0, prepend-http@^1.0.1: + version "1.0.4" + resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" + +preserve@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" + +pretty-bytes@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-4.0.2.tgz#b2bf82e7350d65c6c33aa95aaa5a4f6327f61cd9" + +pretty-error@^2.0.2: + version "2.1.1" + resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-2.1.1.tgz#5f4f87c8f91e5ae3f3ba87ab4cf5e03b1a17f1a3" + dependencies: + renderkid "^2.0.1" + utila "~0.4" + +pretty-format@^20.0.3: + version "20.0.3" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-20.0.3.tgz#020e350a560a1fe1a98dc3beb6ccffb386de8b14" + dependencies: + ansi-regex "^2.1.1" + ansi-styles "^3.0.0" + +private@^0.1.6, private@^0.1.7: + version "0.1.7" + resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" + +process-nextick-args@~1.0.6: + version "1.0.7" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" + +process@^0.11.0: + version "0.11.10" + resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" + +progress@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" + +promise@8.0.1: + version "8.0.1" + resolved "https://registry.yarnpkg.com/promise/-/promise-8.0.1.tgz#e45d68b00a17647b6da711bf85ed6ed47208f450" + dependencies: + asap "~2.0.3" + +promise@^7.1.1: + version "7.3.1" + resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" + dependencies: + asap "~2.0.3" + +prop-types@^15.5.10: + version "15.5.10" + resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.5.10.tgz#2797dfc3126182e3a95e3dfbb2e893ddd7456154" + dependencies: + fbjs "^0.8.9" + loose-envify "^1.3.1" + +proxy-addr@~1.1.5: + version "1.1.5" + resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-1.1.5.tgz#71c0ee3b102de3f202f3b64f608d173fcba1a918" + dependencies: + forwarded "~0.1.0" + ipaddr.js "1.4.0" + +prr@~0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" + +pseudomap@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" + +public-encrypt@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" + dependencies: + bn.js "^4.1.0" + browserify-rsa "^4.0.0" + create-hash "^1.1.0" + parse-asn1 "^5.0.0" + randombytes "^2.0.1" + +punycode@1.3.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" + +punycode@^1.2.4, punycode@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" + +q@^1.1.2: + version "1.5.0" + resolved "https://registry.yarnpkg.com/q/-/q-1.5.0.tgz#dd01bac9d06d30e6f219aecb8253ee9ebdc308f1" + +qs@6.5.0: + version "6.5.0" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.0.tgz#8d04954d364def3efc55b5a0793e1e2c8b1e6e49" + +qs@~6.4.0: + version "6.4.0" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" + +query-string@^4.1.0: + version "4.3.4" + resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb" + dependencies: + object-assign "^4.1.0" + strict-uri-encode "^1.0.0" + +querystring-es3@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" + +querystring@0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" + +querystringify@0.0.x: + version "0.0.4" + resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-0.0.4.tgz#0cf7f84f9463ff0ae51c4c4b142d95be37724d9c" + +querystringify@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-1.0.0.tgz#6286242112c5b712fa654e526652bf6a13ff05cb" + +randomatic@^1.1.3: + version "1.1.7" + resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" + dependencies: + is-number "^3.0.0" + kind-of "^4.0.0" + +randombytes@^2.0.0, randombytes@^2.0.1: + version "2.0.5" + resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.5.tgz#dc009a246b8d09a177b4b7a0ae77bc570f4b1b79" + dependencies: + safe-buffer "^5.1.0" + +range-parser@^1.0.3, range-parser@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" + +rc@^1.0.1, rc@^1.1.6, rc@^1.1.7: + version "1.2.1" + resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" + dependencies: + deep-extend "~0.4.0" + ini "~1.3.0" + minimist "^1.2.0" + strip-json-comments "~2.0.1" + +react-dev-utils@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/react-dev-utils/-/react-dev-utils-4.0.0.tgz#76467b380946197e738aab5683336b5439e979ba" + dependencies: + address "1.0.2" + babel-code-frame "6.22.0" + chalk "1.1.3" + cross-spawn "5.1.0" + detect-port-alt "1.1.3" + escape-string-regexp "1.0.5" + filesize "3.5.10" + global-modules "1.0.0" + gzip-size "3.0.0" + inquirer "3.2.1" + is-root "1.0.0" + opn "5.1.0" + react-error-overlay "^2.0.0" + recursive-readdir "2.2.1" + shell-quote "1.6.1" + sockjs-client "1.1.4" + strip-ansi "3.0.1" + text-table "0.2.0" + +react-dom@15.6.1, "react-dom@^15 || ^16": + version "15.6.1" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-15.6.1.tgz#2cb0ed4191038e53c209eb3a79a23e2a4cf99470" + dependencies: + fbjs "^0.8.9" + loose-envify "^1.1.0" + object-assign "^4.1.0" + prop-types "^15.5.10" + +react-error-overlay@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-2.0.0.tgz#0251951eb6315dee45f532f3f59f854086c1462e" + dependencies: + anser "1.4.1" + babel-code-frame "6.22.0" + babel-runtime "6.26.0" + html-entities "1.2.1" + react "^15 || ^16" + react-dom "^15 || ^16" + settle-promise "1.0.0" + source-map "0.5.6" + +react-scripts@1.0.12: + version "1.0.12" + resolved "https://registry.yarnpkg.com/react-scripts/-/react-scripts-1.0.12.tgz#a08a8214431c45db7424246d6f5510cc19b42927" + dependencies: + autoprefixer "7.1.2" + babel-core "6.25.0" + babel-eslint "7.2.3" + babel-jest "20.0.3" + babel-loader "7.1.1" + babel-preset-react-app "^3.0.2" + babel-runtime "6.26.0" + case-sensitive-paths-webpack-plugin "2.1.1" + chalk "1.1.3" + css-loader "0.28.4" + dotenv "4.0.0" + eslint "4.4.1" + eslint-config-react-app "^2.0.0" + eslint-loader "1.9.0" + eslint-plugin-flowtype "2.35.0" + eslint-plugin-import "2.7.0" + eslint-plugin-jsx-a11y "5.1.1" + eslint-plugin-react "7.1.0" + extract-text-webpack-plugin "3.0.0" + file-loader "0.11.2" + fs-extra "3.0.1" + html-webpack-plugin "2.29.0" + jest "20.0.4" + object-assign "4.1.1" + postcss-flexbugs-fixes "3.2.0" + postcss-loader "2.0.6" + promise "8.0.1" + react-dev-utils "^4.0.0" + style-loader "0.18.2" + sw-precache-webpack-plugin "0.11.4" + url-loader "0.5.9" + webpack "3.5.1" + webpack-dev-server "2.7.1" + webpack-manifest-plugin "1.2.1" + whatwg-fetch "2.0.3" + optionalDependencies: + fsevents "1.1.2" + +react@15.6.1, "react@^15 || ^16": + version "15.6.1" + resolved "https://registry.yarnpkg.com/react/-/react-15.6.1.tgz#baa8434ec6780bde997cdc380b79cd33b96393df" + dependencies: + create-react-class "^15.6.0" + fbjs "^0.8.9" + loose-envify "^1.1.0" + object-assign "^4.1.0" + prop-types "^15.5.10" + +read-all-stream@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/read-all-stream/-/read-all-stream-3.1.0.tgz#35c3e177f2078ef789ee4bfafa4373074eaef4fa" + dependencies: + pinkie-promise "^2.0.0" + readable-stream "^2.0.0" + +read-pkg-up@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" + dependencies: + find-up "^1.0.0" + read-pkg "^1.0.0" + +read-pkg-up@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" + dependencies: + find-up "^2.0.0" + read-pkg "^2.0.0" + +read-pkg@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" + dependencies: + load-json-file "^1.0.0" + normalize-package-data "^2.3.2" + path-type "^1.0.0" + +read-pkg@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" + dependencies: + load-json-file "^2.0.0" + normalize-package-data "^2.3.2" + path-type "^2.0.0" + +readable-stream@1.0: + version "1.0.34" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.1" + isarray "0.0.1" + string_decoder "~0.10.x" + +readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.2, readable-stream@^2.2.6, readable-stream@^2.2.9: + version "2.3.3" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.3" + isarray "~1.0.0" + process-nextick-args "~1.0.6" + safe-buffer "~5.1.1" + string_decoder "~1.0.3" + util-deprecate "~1.0.1" + +readdirp@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" + dependencies: + graceful-fs "^4.1.2" + minimatch "^3.0.2" + readable-stream "^2.0.2" + set-immediate-shim "^1.0.1" + +recursive-readdir@2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/recursive-readdir/-/recursive-readdir-2.2.1.tgz#90ef231d0778c5ce093c9a48d74e5c5422d13a99" + dependencies: + minimatch "3.0.3" + +redent@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" + dependencies: + indent-string "^2.1.0" + strip-indent "^1.0.1" + +reduce-css-calc@^1.2.6: + version "1.3.0" + resolved "https://registry.yarnpkg.com/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz#747c914e049614a4c9cfbba629871ad1d2927716" + dependencies: + balanced-match "^0.4.2" + math-expression-evaluator "^1.2.14" + reduce-function-call "^1.0.1" + +reduce-function-call@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/reduce-function-call/-/reduce-function-call-1.0.2.tgz#5a200bf92e0e37751752fe45b0ab330fd4b6be99" + dependencies: + balanced-match "^0.4.2" + +regenerate@^1.2.1: + version "1.3.2" + resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" + +regenerator-runtime@^0.11.0: + version "0.11.0" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1" + +regenerator-transform@0.9.11: + version "0.9.11" + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.11.tgz#3a7d067520cb7b7176769eb5ff868691befe1283" + dependencies: + babel-runtime "^6.18.0" + babel-types "^6.19.0" + private "^0.1.6" + +regenerator-transform@^0.10.0: + version "0.10.1" + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" + dependencies: + babel-runtime "^6.18.0" + babel-types "^6.19.0" + private "^0.1.6" + +regex-cache@^0.4.2: + version "0.4.4" + resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" + dependencies: + is-equal-shallow "^0.1.3" + +regexpu-core@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-1.0.0.tgz#86a763f58ee4d7c2f6b102e4764050de7ed90c6b" + dependencies: + regenerate "^1.2.1" + regjsgen "^0.2.0" + regjsparser "^0.1.4" + +regexpu-core@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" + dependencies: + regenerate "^1.2.1" + regjsgen "^0.2.0" + regjsparser "^0.1.4" + +registry-auth-token@^3.0.1: + version "3.3.1" + resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.1.tgz#fb0d3289ee0d9ada2cbb52af5dfe66cb070d3006" + dependencies: + rc "^1.1.6" + safe-buffer "^5.0.1" + +registry-url@^3.0.3: + version "3.1.0" + resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" + dependencies: + rc "^1.0.1" + +regjsgen@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" + +regjsparser@^0.1.4: + version "0.1.5" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" + dependencies: + jsesc "~0.5.0" + +relateurl@0.2.x: + version "0.2.7" + resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" + +remove-trailing-separator@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" + +renderkid@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-2.0.1.tgz#898cabfc8bede4b7b91135a3ffd323e58c0db319" + dependencies: + css-select "^1.1.0" + dom-converter "~0.1" + htmlparser2 "~3.3.0" + strip-ansi "^3.0.0" + utila "~0.3" + +repeat-element@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" + +repeat-string@^1.5.2: + version "1.6.1" + resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" + +repeating@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" + dependencies: + is-finite "^1.0.0" + +request@^2.79.0, request@^2.81.0: + version "2.81.0" + resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" + dependencies: + aws-sign2 "~0.6.0" + aws4 "^1.2.1" + caseless "~0.12.0" + combined-stream "~1.0.5" + extend "~3.0.0" + forever-agent "~0.6.1" + form-data "~2.1.1" + har-validator "~4.2.1" + hawk "~3.1.3" + http-signature "~1.1.0" + is-typedarray "~1.0.0" + isstream "~0.1.2" + json-stringify-safe "~5.0.1" + mime-types "~2.1.7" + oauth-sign "~0.8.1" + performance-now "^0.2.0" + qs "~6.4.0" + safe-buffer "^5.0.1" + stringstream "~0.0.4" + tough-cookie "~2.3.0" + tunnel-agent "^0.6.0" + uuid "^3.0.0" + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + +require-from-string@^1.1.0: + version "1.2.1" + resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-1.2.1.tgz#529c9ccef27380adfec9a2f965b649bbee636418" + +require-main-filename@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" + +require-uncached@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" + dependencies: + caller-path "^0.1.0" + resolve-from "^1.0.0" + +requires-port@1.0.x, requires-port@1.x.x: + version "1.0.0" + resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" + +resolve-dir@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-1.0.1.tgz#79a40644c362be82f26effe739c9bb5382046f43" + dependencies: + expand-tilde "^2.0.0" + global-modules "^1.0.0" + +resolve-from@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" + +resolve@1.1.7: + version "1.1.7" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" + +resolve@^1.2.0, resolve@^1.3.2: + version "1.4.0" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.4.0.tgz#a75be01c53da25d934a98ebd0e4c4a7312f92a86" + dependencies: + path-parse "^1.0.5" + +restore-cursor@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" + dependencies: + onetime "^2.0.0" + signal-exit "^3.0.2" + +right-align@^0.1.1: + version "0.1.3" + resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" + dependencies: + align-text "^0.1.1" + +rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1: + version "2.6.1" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" + dependencies: + glob "^7.0.5" + +ripemd160@^2.0.0, ripemd160@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.1.tgz#0f4584295c53a3628af7e6d79aca21ce57d1c6e7" + dependencies: + hash-base "^2.0.0" + inherits "^2.0.1" + +run-async@^2.2.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" + dependencies: + is-promise "^2.1.0" + +rx-lite-aggregates@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" + dependencies: + rx-lite "*" + +rx-lite@*, rx-lite@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" + +safe-buffer@5.1.1, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" + +sane@~1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/sane/-/sane-1.6.0.tgz#9610c452307a135d29c1fdfe2547034180c46775" + dependencies: + anymatch "^1.3.0" + exec-sh "^0.2.0" + fb-watchman "^1.8.0" + minimatch "^3.0.2" + minimist "^1.1.1" + walker "~1.0.5" + watch "~0.10.0" + +sax@^1.2.1, sax@~1.2.1: + version "1.2.4" + resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" + +schema-utils@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-0.3.0.tgz#f5877222ce3e931edae039f17eb3716e7137f8cf" + dependencies: + ajv "^5.0.0" + +select-hose@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca" + +selfsigned@^1.9.1: + version "1.10.1" + resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-1.10.1.tgz#bf8cb7b83256c4551e31347c6311778db99eec52" + dependencies: + node-forge "0.6.33" + +semver-diff@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" + dependencies: + semver "^5.0.3" + +"semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0: + version "5.4.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" + +send@0.15.4: + version "0.15.4" + resolved "https://registry.yarnpkg.com/send/-/send-0.15.4.tgz#985faa3e284b0273c793364a35c6737bd93905b9" + dependencies: + debug "2.6.8" + depd "~1.1.1" + destroy "~1.0.4" + encodeurl "~1.0.1" + escape-html "~1.0.3" + etag "~1.8.0" + fresh "0.5.0" + http-errors "~1.6.2" + mime "1.3.4" + ms "2.0.0" + on-finished "~2.3.0" + range-parser "~1.2.0" + statuses "~1.3.1" + +serve-index@^1.7.2: + version "1.9.0" + resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.0.tgz#d2b280fc560d616ee81b48bf0fa82abed2485ce7" + dependencies: + accepts "~1.3.3" + batch "0.6.1" + debug "2.6.8" + escape-html "~1.0.3" + http-errors "~1.6.1" + mime-types "~2.1.15" + parseurl "~1.3.1" + +serve-static@1.12.4: + version "1.12.4" + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.12.4.tgz#9b6aa98eeb7253c4eedc4c1f6fdbca609901a961" + dependencies: + encodeurl "~1.0.1" + escape-html "~1.0.3" + parseurl "~1.3.1" + send "0.15.4" + +serviceworker-cache-polyfill@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/serviceworker-cache-polyfill/-/serviceworker-cache-polyfill-4.0.0.tgz#de19ee73bef21ab3c0740a37b33db62464babdeb" + +set-blocking@^2.0.0, set-blocking@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" + +set-immediate-shim@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" + +setimmediate@^1.0.4, setimmediate@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" + +setprototypeof@1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04" + +settle-promise@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/settle-promise/-/settle-promise-1.0.0.tgz#697adb58b821f387ce2757c06efc9de5f0ee33d8" + +sha.js@^2.4.0, sha.js@^2.4.8: + version "2.4.8" + resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.8.tgz#37068c2c476b6baf402d14a49c67f597921f634f" + dependencies: + inherits "^2.0.1" + +shebang-command@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" + dependencies: + shebang-regex "^1.0.0" + +shebang-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" + +shell-quote@1.6.1: + version "1.6.1" + resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767" + dependencies: + array-filter "~0.0.0" + array-map "~0.0.0" + array-reduce "~0.0.0" + jsonify "~0.0.0" + +shellwords@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" + +signal-exit@^3.0.0, signal-exit@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" + +slash@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" + +slice-ansi@0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" + +slide@^1.1.5: + version "1.1.6" + resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" + +sntp@1.x.x: + version "1.0.9" + resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" + dependencies: + hoek "2.x.x" + +sockjs-client@1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.1.4.tgz#5babe386b775e4cf14e7520911452654016c8b12" + dependencies: + debug "^2.6.6" + eventsource "0.1.6" + faye-websocket "~0.11.0" + inherits "^2.0.1" + json3 "^3.3.2" + url-parse "^1.1.8" + +sockjs@0.3.18: + version "0.3.18" + resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.18.tgz#d9b289316ca7df77595ef299e075f0f937eb4207" + dependencies: + faye-websocket "^0.10.0" + uuid "^2.0.2" + +sort-keys@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" + dependencies: + is-plain-obj "^1.0.0" + +source-list-map@^0.1.7: + version "0.1.8" + resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-0.1.8.tgz#c550b2ab5427f6b3f21f5afead88c4f5587b2106" + +source-list-map@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.0.tgz#aaa47403f7b245a92fbc97ea08f250d6087ed085" + +source-map-support@^0.4.15: + version "0.4.17" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.17.tgz#6f2150553e6375375d0ccb3180502b78c18ba430" + dependencies: + source-map "^0.5.6" + +source-map@0.5.6: + version "0.5.6" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" + +source-map@0.5.x, source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7, source-map@~0.5.1, source-map@~0.5.3: + version "0.5.7" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" + +source-map@^0.4.4: + version "0.4.4" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" + dependencies: + amdefine ">=0.0.4" + +source-map@~0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" + dependencies: + amdefine ">=0.0.4" + +spdx-correct@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" + dependencies: + spdx-license-ids "^1.0.2" + +spdx-expression-parse@~1.0.0: + version "1.0.4" + resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" + +spdx-license-ids@^1.0.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" + +spdy-transport@^2.0.18: + version "2.0.20" + resolved "https://registry.yarnpkg.com/spdy-transport/-/spdy-transport-2.0.20.tgz#735e72054c486b2354fe89e702256004a39ace4d" + dependencies: + debug "^2.6.8" + detect-node "^2.0.3" + hpack.js "^2.1.6" + obuf "^1.1.1" + readable-stream "^2.2.9" + safe-buffer "^5.0.1" + wbuf "^1.7.2" + +spdy@^3.4.1: + version "3.4.7" + resolved "https://registry.yarnpkg.com/spdy/-/spdy-3.4.7.tgz#42ff41ece5cc0f99a3a6c28aabb73f5c3b03acbc" + dependencies: + debug "^2.6.8" + handle-thing "^1.2.5" + http-deceiver "^1.2.7" + safe-buffer "^5.0.1" + select-hose "^2.0.0" + spdy-transport "^2.0.18" + +sprintf-js@~1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + +sshpk@^1.7.0: + version "1.13.1" + resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" + dependencies: + asn1 "~0.2.3" + assert-plus "^1.0.0" + dashdash "^1.12.0" + getpass "^0.1.1" + optionalDependencies: + bcrypt-pbkdf "^1.0.0" + ecc-jsbn "~0.1.1" + jsbn "~0.1.0" + tweetnacl "~0.14.0" + +"statuses@>= 1.3.1 < 2", statuses@~1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" + +stream-browserify@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" + dependencies: + inherits "~2.0.1" + readable-stream "^2.0.2" + +stream-http@^2.3.1: + version "2.7.2" + resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.7.2.tgz#40a050ec8dc3b53b33d9909415c02c0bf1abfbad" + dependencies: + builtin-status-codes "^3.0.0" + inherits "^2.0.1" + readable-stream "^2.2.6" + to-arraybuffer "^1.0.0" + xtend "^4.0.0" + +strict-uri-encode@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" + +string-length@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" + dependencies: + strip-ansi "^3.0.0" + +string-width@^1.0.1, string-width@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" + dependencies: + code-point-at "^1.0.0" + is-fullwidth-code-point "^1.0.0" + strip-ansi "^3.0.0" + +string-width@^2.0.0, string-width@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" + dependencies: + is-fullwidth-code-point "^2.0.0" + strip-ansi "^4.0.0" + +string_decoder@^0.10.25, string_decoder@~0.10.x: + version "0.10.31" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" + +string_decoder@~1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" + dependencies: + safe-buffer "~5.1.0" + +stringstream@~0.0.4: + version "0.0.5" + resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" + +strip-ansi@3.0.1, strip-ansi@^3.0.0, strip-ansi@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" + dependencies: + ansi-regex "^2.0.0" + +strip-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" + dependencies: + ansi-regex "^3.0.0" + +strip-bom@3.0.0, strip-bom@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + +strip-bom@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" + dependencies: + is-utf8 "^0.2.0" + +strip-eof@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" + +strip-indent@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" + dependencies: + get-stdin "^4.0.1" + +strip-json-comments@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" + +style-loader@0.18.2: + version "0.18.2" + resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-0.18.2.tgz#cc31459afbcd6d80b7220ee54b291a9fd66ff5eb" + dependencies: + loader-utils "^1.0.2" + schema-utils "^0.3.0" + +supports-color@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" + +supports-color@^3.1.1, supports-color@^3.1.2, supports-color@^3.2.3: + version "3.2.3" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" + dependencies: + has-flag "^1.0.0" + +supports-color@^4.0.0, supports-color@^4.2.1: + version "4.4.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.4.0.tgz#883f7ddabc165142b2a61427f3352ded195d1a3e" + dependencies: + has-flag "^2.0.0" + +svgo@^0.7.0: + version "0.7.2" + resolved "https://registry.yarnpkg.com/svgo/-/svgo-0.7.2.tgz#9f5772413952135c6fefbf40afe6a4faa88b4bb5" + dependencies: + coa "~1.0.1" + colors "~1.1.2" + csso "~2.3.1" + js-yaml "~3.7.0" + mkdirp "~0.5.1" + sax "~1.2.1" + whet.extend "~0.9.9" + +sw-precache-webpack-plugin@0.11.4: + version "0.11.4" + resolved "https://registry.yarnpkg.com/sw-precache-webpack-plugin/-/sw-precache-webpack-plugin-0.11.4.tgz#a695017e54eed575551493a519dc1da8da2dc5e0" + dependencies: + del "^2.2.2" + sw-precache "^5.1.1" + uglify-js "^3.0.13" + +sw-precache@^5.1.1: + version "5.2.0" + resolved "https://registry.yarnpkg.com/sw-precache/-/sw-precache-5.2.0.tgz#eb6225ce580ceaae148194578a0ad01ab7ea199c" + dependencies: + dom-urls "^1.1.0" + es6-promise "^4.0.5" + glob "^7.1.1" + lodash.defaults "^4.2.0" + lodash.template "^4.4.0" + meow "^3.7.0" + mkdirp "^0.5.1" + pretty-bytes "^4.0.2" + sw-toolbox "^3.4.0" + update-notifier "^1.0.3" + +sw-toolbox@^3.4.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/sw-toolbox/-/sw-toolbox-3.6.0.tgz#26df1d1c70348658e4dea2884319149b7b3183b5" + dependencies: + path-to-regexp "^1.0.1" + serviceworker-cache-polyfill "^4.0.0" + +symbol-tree@^3.2.1: + version "3.2.2" + resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" + +table@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/table/-/table-4.0.1.tgz#a8116c133fac2c61f4a420ab6cdf5c4d61f0e435" + dependencies: + ajv "^4.7.0" + ajv-keywords "^1.0.0" + chalk "^1.1.1" + lodash "^4.0.0" + slice-ansi "0.0.4" + string-width "^2.0.0" + +tapable@^0.2.7: + version "0.2.8" + resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.8.tgz#99372a5c999bf2df160afc0d74bed4f47948cd22" + +tar-pack@^3.4.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" + dependencies: + debug "^2.2.0" + fstream "^1.0.10" + fstream-ignore "^1.0.5" + once "^1.3.3" + readable-stream "^2.1.4" + rimraf "^2.5.1" + tar "^2.2.1" + uid-number "^0.0.6" + +tar@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" + dependencies: + block-stream "*" + fstream "^1.0.2" + inherits "2" + +test-exclude@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26" + dependencies: + arrify "^1.0.1" + micromatch "^2.3.11" + object-assign "^4.1.0" + read-pkg-up "^1.0.1" + require-main-filename "^1.0.1" + +text-table@0.2.0, text-table@~0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + +throat@^3.0.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/throat/-/throat-3.2.0.tgz#50cb0670edbc40237b9e347d7e1f88e4620af836" + +through@^2.3.6: + version "2.3.8" + resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + +thunky@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/thunky/-/thunky-0.1.0.tgz#bf30146824e2b6e67b0f2d7a4ac8beb26908684e" + +time-stamp@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-2.0.0.tgz#95c6a44530e15ba8d6f4a3ecb8c3a3fac46da357" + +timed-out@^3.0.0: + version "3.1.3" + resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-3.1.3.tgz#95860bfcc5c76c277f8f8326fd0f5b2e20eba217" + +timers-browserify@^2.0.2: + version "2.0.4" + resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.4.tgz#96ca53f4b794a5e7c0e1bd7cc88a372298fa01e6" + dependencies: + setimmediate "^1.0.4" + +tmp@^0.0.31: + version "0.0.31" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.31.tgz#8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7" + dependencies: + os-tmpdir "~1.0.1" + +tmpl@1.0.x: + version "1.0.4" + resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" + +to-arraybuffer@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" + +to-fast-properties@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" + +toposort@^1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/toposort/-/toposort-1.0.3.tgz#f02cd8a74bd8be2fc0e98611c3bacb95a171869c" + +tough-cookie@^2.3.2, tough-cookie@~2.3.0: + version "2.3.2" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" + dependencies: + punycode "^1.4.1" + +tr46@~0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" + +trim-newlines@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" + +trim-right@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" + +tryit@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" + +tty-browserify@0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" + +tunnel-agent@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" + dependencies: + safe-buffer "^5.0.1" + +tweetnacl@^0.14.3, tweetnacl@~0.14.0: + version "0.14.5" + resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" + +type-check@~0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" + dependencies: + prelude-ls "~1.1.2" + +type-is@~1.6.15: + version "1.6.15" + resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.15.tgz#cab10fb4909e441c82842eafe1ad646c81804410" + dependencies: + media-typer "0.3.0" + mime-types "~2.1.15" + +typedarray@^0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" + +ua-parser-js@^0.7.9: + version "0.7.14" + resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.14.tgz#110d53fa4c3f326c121292bbeac904d2e03387ca" + +uglify-js@3.0.x, uglify-js@^3.0.13: + version "3.0.28" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.0.28.tgz#96b8495f0272944787b5843a1679aa326640d5f7" + dependencies: + commander "~2.11.0" + source-map "~0.5.1" + +uglify-js@^2.6, uglify-js@^2.8.29: + version "2.8.29" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" + dependencies: + source-map "~0.5.1" + yargs "~3.10.0" + optionalDependencies: + uglify-to-browserify "~1.0.0" + +uglify-to-browserify@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" + +uglifyjs-webpack-plugin@^0.4.6: + version "0.4.6" + resolved "https://registry.yarnpkg.com/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.6.tgz#b951f4abb6bd617e66f63eb891498e391763e309" + dependencies: + source-map "^0.5.6" + uglify-js "^2.8.29" + webpack-sources "^1.0.1" + +uid-number@^0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" + +uniq@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" + +uniqid@^4.0.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/uniqid/-/uniqid-4.1.1.tgz#89220ddf6b751ae52b5f72484863528596bb84c1" + dependencies: + macaddress "^0.2.8" + +uniqs@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02" + +universalify@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.1.tgz#fa71badd4437af4c148841e3b3b165f9e9e590b7" + +unpipe@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + +unzip-response@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-1.0.2.tgz#b984f0877fc0a89c2c773cc1ef7b5b232b5b06fe" + +update-notifier@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-1.0.3.tgz#8f92c515482bd6831b7c93013e70f87552c7cf5a" + dependencies: + boxen "^0.6.0" + chalk "^1.0.0" + configstore "^2.0.0" + is-npm "^1.0.0" + latest-version "^2.0.0" + lazy-req "^1.1.0" + semver-diff "^2.0.0" + xdg-basedir "^2.0.0" + +upper-case@^1.1.1: + version "1.1.3" + resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598" + +urijs@^1.16.1: + version "1.18.12" + resolved "https://registry.yarnpkg.com/urijs/-/urijs-1.18.12.tgz#f04d91e1fabb29c16fc842f9a14ee8ddc3fda64e" + +url-loader@0.5.9: + version "0.5.9" + resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-0.5.9.tgz#cc8fea82c7b906e7777019250869e569e995c295" + dependencies: + loader-utils "^1.0.2" + mime "1.3.x" + +url-parse-lax@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" + dependencies: + prepend-http "^1.0.1" + +url-parse@1.0.x: + version "1.0.5" + resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.0.5.tgz#0854860422afdcfefeb6c965c662d4800169927b" + dependencies: + querystringify "0.0.x" + requires-port "1.0.x" + +url-parse@^1.1.8: + version "1.1.9" + resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.1.9.tgz#c67f1d775d51f0a18911dd7b3ffad27bb9e5bd19" + dependencies: + querystringify "~1.0.0" + requires-port "1.0.x" + +url@^0.11.0: + version "0.11.0" + resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" + dependencies: + punycode "1.3.2" + querystring "0.2.0" + +util-deprecate@~1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + +util@0.10.3, util@^0.10.3: + version "0.10.3" + resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" + dependencies: + inherits "2.0.1" + +utila@~0.3: + version "0.3.3" + resolved "https://registry.yarnpkg.com/utila/-/utila-0.3.3.tgz#d7e8e7d7e309107092b05f8d9688824d633a4226" + +utila@~0.4: + version "0.4.0" + resolved "https://registry.yarnpkg.com/utila/-/utila-0.4.0.tgz#8a16a05d445657a3aea5eecc5b12a4fa5379772c" + +utils-merge@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8" + +uuid@^2.0.1, uuid@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" + +uuid@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" + +validate-npm-package-license@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" + dependencies: + spdx-correct "~1.0.0" + spdx-expression-parse "~1.0.0" + +vary@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.1.tgz#67535ebb694c1d52257457984665323f587e8d37" + +vendors@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.1.tgz#37ad73c8ee417fb3d580e785312307d274847f22" + +verror@1.10.0: + version "1.10.0" + resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" + dependencies: + assert-plus "^1.0.0" + core-util-is "1.0.2" + extsprintf "^1.2.0" + +vm-browserify@0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" + dependencies: + indexof "0.0.1" + +walker@~1.0.5: + version "1.0.7" + resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" + dependencies: + makeerror "1.0.x" + +watch@~0.10.0: + version "0.10.0" + resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" + +watchpack@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.4.0.tgz#4a1472bcbb952bd0a9bb4036801f954dfb39faac" + dependencies: + async "^2.1.2" + chokidar "^1.7.0" + graceful-fs "^4.1.2" + +wbuf@^1.1.0, wbuf@^1.7.2: + version "1.7.2" + resolved "https://registry.yarnpkg.com/wbuf/-/wbuf-1.7.2.tgz#d697b99f1f59512df2751be42769c1580b5801fe" + dependencies: + minimalistic-assert "^1.0.0" + +webidl-conversions@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" + +webidl-conversions@^4.0.0: + version "4.0.2" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" + +webpack-dev-middleware@^1.11.0: + version "1.12.0" + resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-1.12.0.tgz#d34efefb2edda7e1d3b5dbe07289513219651709" + dependencies: + memory-fs "~0.4.1" + mime "^1.3.4" + path-is-absolute "^1.0.0" + range-parser "^1.0.3" + time-stamp "^2.0.0" + +webpack-dev-server@2.7.1: + version "2.7.1" + resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-2.7.1.tgz#21580f5a08cd065c71144cf6f61c345bca59a8b8" + dependencies: + ansi-html "0.0.7" + bonjour "^3.5.0" + chokidar "^1.6.0" + compression "^1.5.2" + connect-history-api-fallback "^1.3.0" + del "^3.0.0" + express "^4.13.3" + html-entities "^1.2.0" + http-proxy-middleware "~0.17.4" + internal-ip "^1.2.0" + ip "^1.1.5" + loglevel "^1.4.1" + opn "4.0.2" + portfinder "^1.0.9" + selfsigned "^1.9.1" + serve-index "^1.7.2" + sockjs "0.3.18" + sockjs-client "1.1.4" + spdy "^3.4.1" + strip-ansi "^3.0.0" + supports-color "^3.1.1" + webpack-dev-middleware "^1.11.0" + yargs "^6.0.0" + +webpack-manifest-plugin@1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/webpack-manifest-plugin/-/webpack-manifest-plugin-1.2.1.tgz#e02f0846834ce98dca516946ee3ee679745e7db1" + dependencies: + fs-extra "^0.30.0" + lodash ">=3.5 <5" + +webpack-sources@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.0.1.tgz#c7356436a4d13123be2e2426a05d1dad9cbe65cf" + dependencies: + source-list-map "^2.0.0" + source-map "~0.5.3" + +webpack@3.5.1: + version "3.5.1" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-3.5.1.tgz#b749ee3d2b5a118dad53e8e41585b3f71e75499a" + dependencies: + acorn "^5.0.0" + acorn-dynamic-import "^2.0.0" + ajv "^5.1.5" + ajv-keywords "^2.0.0" + async "^2.1.2" + enhanced-resolve "^3.4.0" + escope "^3.6.0" + interpret "^1.0.0" + json-loader "^0.5.4" + json5 "^0.5.1" + loader-runner "^2.3.0" + loader-utils "^1.1.0" + memory-fs "~0.4.1" + mkdirp "~0.5.0" + node-libs-browser "^2.0.0" + source-map "^0.5.3" + supports-color "^4.2.1" + tapable "^0.2.7" + uglifyjs-webpack-plugin "^0.4.6" + watchpack "^1.4.0" + webpack-sources "^1.0.1" + yargs "^8.0.2" + +websocket-driver@>=0.5.1: + version "0.6.5" + resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.6.5.tgz#5cb2556ceb85f4373c6d8238aa691c8454e13a36" + dependencies: + websocket-extensions ">=0.1.1" + +websocket-extensions@>=0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.1.tgz#76899499c184b6ef754377c2dbb0cd6cb55d29e7" + +whatwg-encoding@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" + dependencies: + iconv-lite "0.4.13" + +whatwg-fetch@2.0.3, whatwg-fetch@>=0.10.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84" + +whatwg-url@^4.3.0: + version "4.8.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0" + dependencies: + tr46 "~0.0.3" + webidl-conversions "^3.0.0" + +whet.extend@~0.9.9: + version "0.9.9" + resolved "https://registry.yarnpkg.com/whet.extend/-/whet.extend-0.9.9.tgz#f877d5bf648c97e5aa542fadc16d6a259b9c11a1" + +which-module@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" + +which-module@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" + +which@^1.2.12, which@^1.2.14, which@^1.2.9: + version "1.3.0" + resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" + dependencies: + isexe "^2.0.0" + +wide-align@^1.1.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" + dependencies: + string-width "^1.0.2" + +widest-line@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-1.0.0.tgz#0c09c85c2a94683d0d7eaf8ee097d564bf0e105c" + dependencies: + string-width "^1.0.1" + +window-size@0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" + +wordwrap@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" + +wordwrap@~0.0.2: + version "0.0.3" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" + +wordwrap@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" + +worker-farm@^1.3.1: + version "1.5.0" + resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.5.0.tgz#adfdf0cd40581465ed0a1f648f9735722afd5c8d" + dependencies: + errno "^0.1.4" + xtend "^4.0.1" + +wrap-ansi@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" + dependencies: + string-width "^1.0.1" + strip-ansi "^3.0.1" + +wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + +write-file-atomic@^1.1.2: + version "1.3.4" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.4.tgz#f807a4f0b1d9e913ae7a48112e6cc3af1991b45f" + dependencies: + graceful-fs "^4.1.11" + imurmurhash "^0.1.4" + slide "^1.1.5" + +write@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" + dependencies: + mkdirp "^0.5.1" + +xdg-basedir@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-2.0.0.tgz#edbc903cc385fc04523d966a335504b5504d1bd2" + dependencies: + os-homedir "^1.0.0" + +xml-char-classes@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/xml-char-classes/-/xml-char-classes-1.0.0.tgz#64657848a20ffc5df583a42ad8a277b4512bbc4d" + +xml-name-validator@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" + +xtend@^4.0.0, xtend@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" + +y18n@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" + +yallist@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" + +yargs-parser@^4.2.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" + dependencies: + camelcase "^3.0.0" + +yargs-parser@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" + dependencies: + camelcase "^3.0.0" + +yargs-parser@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" + dependencies: + camelcase "^4.1.0" + +yargs@^6.0.0: + version "6.6.0" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" + dependencies: + camelcase "^3.0.0" + cliui "^3.2.0" + decamelize "^1.1.1" + get-caller-file "^1.0.1" + os-locale "^1.4.0" + read-pkg-up "^1.0.1" + require-directory "^2.1.1" + require-main-filename "^1.0.1" + set-blocking "^2.0.0" + string-width "^1.0.2" + which-module "^1.0.0" + y18n "^3.2.1" + yargs-parser "^4.2.0" + +yargs@^7.0.2: + version "7.1.0" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" + dependencies: + camelcase "^3.0.0" + cliui "^3.2.0" + decamelize "^1.1.1" + get-caller-file "^1.0.1" + os-locale "^1.4.0" + read-pkg-up "^1.0.1" + require-directory "^2.1.1" + require-main-filename "^1.0.1" + set-blocking "^2.0.0" + string-width "^1.0.2" + which-module "^1.0.0" + y18n "^3.2.1" + yargs-parser "^5.0.0" + +yargs@^8.0.2: + version "8.0.2" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360" + dependencies: + camelcase "^4.1.0" + cliui "^3.2.0" + decamelize "^1.1.1" + get-caller-file "^1.0.1" + os-locale "^2.0.0" + read-pkg-up "^2.0.0" + require-directory "^2.1.1" + require-main-filename "^1.0.1" + set-blocking "^2.0.0" + string-width "^2.0.0" + which-module "^2.0.0" + y18n "^3.2.1" + yargs-parser "^7.0.0" + +yargs@~3.10.0: + version "3.10.0" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" + dependencies: + camelcase "^1.0.2" + cliui "^2.1.0" + decamelize "^1.0.0" + window-size "0.1.0" From 47a4a9c982f3c16cfcc178aa1d0d5a8cf2008cc1 Mon Sep 17 00:00:00 2001 From: Craig Copeland Date: Mon, 4 Sep 2017 10:27:05 -0500 Subject: [PATCH 2/5] Now passing board as props to children. Adding react CSS styling using Materialize. Added basic control click function with seeded tests. --- 08week/star-wars/public/index.html | 14 ++- 08week/star-wars/public/lightSabre.SMALL.png | Bin 0 -> 58626 bytes 08week/star-wars/public/lightSabre.png | Bin 0 -> 70594 bytes 08week/star-wars/public/style.css | 71 ++++++++++++++ 08week/star-wars/src/Board.js | 40 +++++--- 08week/star-wars/src/Category.js | 35 +++++-- 08week/star-wars/src/Control.js | 6 +- 08week/star-wars/src/Square.js | 20 +++- 08week/star-wars/src/SquareClass.js | 4 +- 08week/star-wars/src/StarWars.js | 93 ++++++++++--------- 08week/star-wars/starWars.zip | Bin 4432 -> 0 bytes 08week/star-wars/starWars2.zip | Bin 0 -> 4989 bytes 12 files changed, 207 insertions(+), 76 deletions(-) create mode 100644 08week/star-wars/public/lightSabre.SMALL.png create mode 100644 08week/star-wars/public/lightSabre.png create mode 100644 08week/star-wars/public/style.css delete mode 100644 08week/star-wars/starWars.zip create mode 100644 08week/star-wars/starWars2.zip diff --git a/08week/star-wars/public/index.html b/08week/star-wars/public/index.html index 25de07c4a..b4043ed17 100644 --- a/08week/star-wars/public/index.html +++ b/08week/star-wars/public/index.html @@ -2,9 +2,21 @@ - Star Wars Jeopardy + This is............ + + + + + + +
+ + + + + diff --git a/08week/star-wars/public/lightSabre.SMALL.png b/08week/star-wars/public/lightSabre.SMALL.png new file mode 100644 index 0000000000000000000000000000000000000000..1656c1123695d2639cb652126b8be9ce88d2df28 GIT binary patch literal 58626 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�M11xx203`XyaJ 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 literal 0 HcmV?d00001 diff --git a/08week/star-wars/public/lightSabre.png b/08week/star-wars/public/lightSabre.png new file mode 100644 index 0000000000000000000000000000000000000000..ab6beb06bc2a3dbe0bb0ecfcfa789f126353fc06 GIT binary patch literal 70594 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 XqZp9s1C#***xyC-t7fGpx1;|B1byu@ literal 0 HcmV?d00001 diff --git a/08week/star-wars/public/style.css b/08week/star-wars/public/style.css new file mode 100644 index 000000000..46ee0c1f5 --- /dev/null +++ b/08week/star-wars/public/style.css @@ -0,0 +1,71 @@ +body { + background-color: #0d47a1; + text-align: center; +} + +h1 { +font-family: 'Open Sans', sans-serif; +color: #FFD700; +/*text-shadow: 0px 3px 3px #FFD700;*/ +} +Button:hover { + transform: scale(1.2); +} +Button { + width: 300px; + margin-top: 10px; +} +/*ul{ + border: 1px solid black; +}*/ +h4 { + color: #FFD700; + font-weight: bolder; + font-family: 'Open Sans', sans-serif; + font-size: 26px; + background: #2962ff; +} +#board { + display: flex; + justify-content: center; + text-align: center; +} +#control { + margin: 20px; + background-image: url('lightsabre.png'); + background-repeat: no-repeat; +} +#category { + margin: 5px; + width: 15%; + text-align: center; + /*border: 10px solid black;*/ +} +#collectionItem { + height: 75px; + margin: 5px; + border-radius: 5px; + border: none; + font-size: 50px; + background: #2962ff; +} + +#collectionItem:hover{ + transform: scale(1.1); + /*border-top: 2px solid #FFD700;*/ + border-bottom: 2px solid #FFD700; + border-radius: 10px; + text-align: center; +} +#collectionItem:active{ + transform: scale(1.5); +} +.collection.with-header .collection-header { + background-color: #2962ff; + border: none; + border-radius: 5px; +} +.collection { + width: 100%; + border: none; +} diff --git a/08week/star-wars/src/Board.js b/08week/star-wars/src/Board.js index 494bbef2f..0f8aef01f 100644 --- a/08week/star-wars/src/Board.js +++ b/08week/star-wars/src/Board.js @@ -5,20 +5,38 @@ class Board extends Component { render() { // Planets, Spaceships, Vehicles, People, Films, Species - /***** CODE HERE ****/ + const categories = Object.keys(this.props.board); + // console.log(categories); + // console.log(this.props.board['vehicles']); return ( -
- - - - - - - +
+ { + categories.map((cat, idx) => + + ) + }
- ); - } // return + ); // return + } // render } // class Board export default Board; +// +// categories.map((cat, idx) => ); + +// +// +// +// +// +// diff --git a/08week/star-wars/src/Category.js b/08week/star-wars/src/Category.js index fe68bc486..b5f78ae99 100644 --- a/08week/star-wars/src/Category.js +++ b/08week/star-wars/src/Category.js @@ -1,18 +1,35 @@ import React from 'react'; import Square from './Square'; +import {Collection, CollectionItem} from 'react-materialize' const Category = (props) => { return ( - /***** CODE HERE ****/ - // Just dummy data below. -
-

{props.id}

- - - - - +
+ w[0].toUpperCase() + w.substr(1).toLowerCase()) + .join(' ')} + > + { + props.squares.map((obj, idx) => + props.handleClick(props.id, idx)} + > + + + ) + } +
); // return diff --git a/08week/star-wars/src/Control.js b/08week/star-wars/src/Control.js index 824af9a90..205a1117a 100644 --- a/08week/star-wars/src/Control.js +++ b/08week/star-wars/src/Control.js @@ -1,14 +1,13 @@ import React, { Component } from 'react'; +import {Button} from 'react-materialize' class Control extends Component { render() { - /***** CODE HERE ****/ return (

Star Wars Jeopardy

- - // EDIT MEsave +
); } // return @@ -16,3 +15,4 @@ class Control extends Component { } // class Control export default Control; +// diff --git a/08week/star-wars/src/Square.js b/08week/star-wars/src/Square.js index 7543c3028..d63ee6b83 100644 --- a/08week/star-wars/src/Square.js +++ b/08week/star-wars/src/Square.js @@ -2,14 +2,26 @@ import React from 'react'; const Square = (props)=> { + return ( - /***** CODE HERE ****/ -
-

{props.id}

-

{props.money}

+ props.square['squareState'] === 'activeA'? ( +
props.handleClick(props.category, props.square['id'])}> +

{props.square['question']}

+
+ ) : + ( +
props.handleClick(props.category, props.square['id'])}> +

{props.square['r1Money']}

+ ) + ); // return } // functional component Square export default Square; + +//

{props.square['answer']}

+//

{props.category} {props.square['id']}

+ +//

{props.category} {props.square['id']}

diff --git a/08week/star-wars/src/SquareClass.js b/08week/star-wars/src/SquareClass.js index 615ab6ecf..f3a1c6e1a 100644 --- a/08week/star-wars/src/SquareClass.js +++ b/08week/star-wars/src/SquareClass.js @@ -23,8 +23,8 @@ class SquareClass { this.attempt = null; this.gotCorrect = ''; this.dailyDouble = false; - this.r1Money = squareID * 100; - this.r2Money = squareID * 200; + this.r1Money = (squareID+1) * 100; + this.r2Money = (squareID+1) * 200; } } // Square class diff --git a/08week/star-wars/src/StarWars.js b/08week/star-wars/src/StarWars.js index 8188068f7..60fc816dc 100644 --- a/08week/star-wars/src/StarWars.js +++ b/08week/star-wars/src/StarWars.js @@ -24,7 +24,7 @@ import SquareClass from './SquareClass'; // planets // questionPrefix: "Where is" // squares[] // 5 of them. -// spaceships +// ships // questionPrefix: "What is" // squares[] // vehicles @@ -112,67 +112,64 @@ class StarWars extends Component { }, input: '', message: '', + question: { + planets: 'Where is', + ships: 'What is', + vehicles: 'What is', + people: 'Who is', + films: 'What is', + species: 'Who are the' + }, board: { - planets: { prefix: 'Where is' , squares: [] }, - spaceships: { prefix: 'What is' , squares: [] }, - vehicles: { prefix: 'What is' , squares: [] }, - people: { prefix: 'Who is' , squares: [] }, - films: { prefix: 'What is' , squares: [] }, - species: { prefix: 'Who are the', squares: [] } + planets: [], + ships: [], + vehicles: [], + people: [], + films: [], + species: [] } }; // this.game object this.state = { - round: this['game']['round'], - currentPlayer: this['game']['currentPlayer'], + round: this.game['round'], + currentPlayer: this.game['currentPlayer'], input: '', message: '', - // board: {} - planetsSquares: [], - spaceshipsSquares: [], - vehiclesSquares: [], - peopleSquares: [], - filmsSquares: [], - speciesSquares: [] + board: {} }; // this.state object } //Constructor initState() { console.log('initialize'); - [1,2,3,4,5].forEach((id, index)=>{ - this.game['board']['planets']['squares'].push(new SquareClass(id)); - this.game['board']['spaceships']['squares'].push(new SquareClass(id)); - this.game['board']['vehicles']['squares'].push(new SquareClass(id)); - this.game['board']['people']['squares'].push(new SquareClass(id)); - this.game['board']['films']['squares'].push(new SquareClass(id)); - this.game['board']['species']['squares'].push(new SquareClass(id)); + [0,1,2,3,4].forEach((id, index)=>{ + const newSquare = new SquareClass(id); + newSquare.question = `What is 1 + ${id}`; + newSquare.answer = 1 + id; + this.game['board']['planets'].push(newSquare); + // console.log('planets[id]', this.game['board']['planets'][id]); + this.game['board']['ships'].push(new SquareClass(id)); + this.game['board']['vehicles'].push(new SquareClass(id)); + this.game['board']['people'].push(new SquareClass(id)); + this.game['board']['films'].push(new SquareClass(id)); + this.game['board']['species'].push(new SquareClass(id)); }); console.log('this.game.board',this.game['board']); + // console.log('planets[id]', this.game['board']['planets'][0]); } startClick = ()=> { console.log('startClick'); this.initState() - console.log('this.game...planets again',this.game['board']['planets']['squares']); - /*************** LINE BELOW NOT WORKING. NOT ABLE TO SET STATE ******/ - // this.setState({ planetsSquares : this.game['board']['planets']['squares'] }); - this.setState( - { - planetsSquares : this.game['board']['planets']['squares'], - spaceshipsSquares : this.game['board']['spaceships']['squares'], - vehiclesSquares : this.game['board']['vehicles']['squares'], - peopleSquares : this.game['board']['people']['squares'], - filmsSquares : this.game['board']['films']['squares'], - speciesSquares : this.game['board']['species']['squares'], - } - ); + // console.log('this.game...planets again',this.game['board']['planets']); + this.setState( { board : this.game['board'] } ); } - handleClick = ()=> { + handleClick = (category, square)=> { console.log('handleClick'); - /***** CODE HERE ****/ - + console.log('clicked square', category, square); + this.game['board'][category][square]['squareState'] = 'activeA'; + this.setState( { board : this.game['board'] } ); } // handleClick handleKey = (event)=> { @@ -193,22 +190,26 @@ class StarWars extends Component { console.log('you pressed the P key'); break; default: - console.log('you pressed the P key'); + console.log('you pressed the some other key'); } - // if (x === 'q' || x=== 'Q') { - // console.log('you pressed the Q key'); - // } else if } // handleKey - // this.initState(); render() { console.log('board',this.state); return (
- - + + + +
); } // render diff --git a/08week/star-wars/starWars.zip b/08week/star-wars/starWars.zip deleted file mode 100644 index b45fbd66ba7ff2b5baf42a49a6c393c9ee82a95d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4432 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 literal 0 HcmV?d00001 From fb9588d10b0f859003b90c2ba1ed67e0656ad8a2 Mon Sep 17 00:00:00 2001 From: Craig Copeland Date: Mon, 4 Sep 2017 13:57:02 -0500 Subject: [PATCH 3/5] Added more state handlers for square. Pushing code for team. --- 08week/star-wars/src/Square.js | 15 ++++++++--- 08week/star-wars/src/StarWars.js | 46 +++++++++++++++++++++++--------- 2 files changed, 45 insertions(+), 16 deletions(-) diff --git a/08week/star-wars/src/Square.js b/08week/star-wars/src/Square.js index d63ee6b83..7627e86df 100644 --- a/08week/star-wars/src/Square.js +++ b/08week/star-wars/src/Square.js @@ -5,12 +5,19 @@ const Square = (props)=> { return ( props.square['squareState'] === 'activeA'? ( -
props.handleClick(props.category, props.square['id'])}> +

{props.square['question']}

- ) : - ( -
props.handleClick(props.category, props.square['id'])}> + ) : props.square['squareState'] === 'activeB'? ( +
+

Active B

+
+ ) : props.square['squareState'] === 'complete'? ( +
+

Complete

+
+ ) : ( // default +

{props.square['r1Money']}

) diff --git a/08week/star-wars/src/StarWars.js b/08week/star-wars/src/StarWars.js index 60fc816dc..2e00f40e2 100644 --- a/08week/star-wars/src/StarWars.js +++ b/08week/star-wars/src/StarWars.js @@ -142,16 +142,31 @@ class StarWars extends Component { initState() { console.log('initialize'); [0,1,2,3,4].forEach((id, index)=>{ - const newSquare = new SquareClass(id); - newSquare.question = `What is 1 + ${id}`; - newSquare.answer = 1 + id; - this.game['board']['planets'].push(newSquare); - // console.log('planets[id]', this.game['board']['planets'][id]); - this.game['board']['ships'].push(new SquareClass(id)); - this.game['board']['vehicles'].push(new SquareClass(id)); - this.game['board']['people'].push(new SquareClass(id)); - this.game['board']['films'].push(new SquareClass(id)); - this.game['board']['species'].push(new SquareClass(id)); + // Pulling the questions via Fetch. Populating the planets category + const planetSquare = new SquareClass(id); + planetSquare.question = `1 + ${id}`; + planetSquare.answer = 1 + id; + this.game['board']['planets'].push(planetSquare); + + // Pulling the questions via Fetch. Populating the spaceships category + const shipSquare = new SquareClass(id); + this.game['board']['ships'].push(shipSquare); + + // Pulling the questions via Fetch. Populating the vehicles category + const vehicleSquare = new SquareClass(id); + this.game['board']['vehicles'].push(vehicleSquare); + + // Pulling the questions via Fetch. Populating the people category + const peopleSquare = new SquareClass(id); + this.game['board']['people'].push(peopleSquare); + + // Pulling the questions via Fetch. Populating the films category + const filmSquare = new SquareClass(id); + this.game['board']['films'].push(filmSquare); + + // Pulling the questions via Fetch. Populating the species category + const speciesSquare = new SquareClass(id); + this.game['board']['species'].push(speciesSquare); }); console.log('this.game.board',this.game['board']); // console.log('planets[id]', this.game['board']['planets'][0]); @@ -167,8 +182,15 @@ class StarWars extends Component { handleClick = (category, square)=> { console.log('handleClick'); - console.log('clicked square', category, square); - this.game['board'][category][square]['squareState'] = 'activeA'; + console.log('clicked square before', category, square, this.game['board'][category][square]['squareState']); + + this.game['board'][category][square]['squareState'] = + this.game['board'][category][square]['squareState'] === 'pending'? 'activeA' : + this.game['board'][category][square]['squareState'] === 'activeA'? 'activeB' : + this.game['board'][category][square]['squareState'] === 'activeB'? 'complete' : + 'complete'; // square is done. + + console.log('after', category, square, this.game['board'][category][square]['squareState']); this.setState( { board : this.game['board'] } ); } // handleClick From a057f330f36e26adb926e04f80341bcdf7eaf744 Mon Sep 17 00:00:00 2001 From: Craig Copeland Date: Mon, 4 Sep 2017 22:11:22 -0500 Subject: [PATCH 4/5] Added a board state. Started on control section --- 08week/star-wars/public/index.html | 5 +- 08week/star-wars/public/style.css | 54 +++++++++++--- 08week/star-wars/src/Board.js | 38 +++++----- 08week/star-wars/src/Control.js | 46 ++++++++++-- 08week/star-wars/src/Square.js | 12 ++-- 08week/star-wars/src/StarWars.js | 109 ++++++++++++++++++++++++++--- 6 files changed, 216 insertions(+), 48 deletions(-) diff --git a/08week/star-wars/public/index.html b/08week/star-wars/public/index.html index b4043ed17..a97a53d76 100644 --- a/08week/star-wars/public/index.html +++ b/08week/star-wars/public/index.html @@ -3,7 +3,8 @@ This is............ - + + @@ -16,7 +17,7 @@ - + diff --git a/08week/star-wars/public/style.css b/08week/star-wars/public/style.css index 46ee0c1f5..a6b0f8c3d 100644 --- a/08week/star-wars/public/style.css +++ b/08week/star-wars/public/style.css @@ -6,7 +6,7 @@ body { h1 { font-family: 'Open Sans', sans-serif; color: #FFD700; -/*text-shadow: 0px 3px 3px #FFD700;*/ +text-shadow: -1px 0 #FEFEFF, 0 3px #FEFEFF, 1px 0 #FEFEFF, 0 1px #FEFEFF; } Button:hover { transform: scale(1.2); @@ -15,20 +15,43 @@ Button { width: 300px; margin-top: 10px; } + +.disabled { + opacity: 0.65; + cursor: not-allowed; +} /*ul{ border: 1px solid black; }*/ h4 { color: #FFD700; - font-weight: bolder; - font-family: 'Open Sans', sans-serif; - font-size: 26px; + font-family: sans-serif; + font-size: 30px; + background: #2962ff; + text-shadow: 3px 3px 3px black; + line-height: 100%; +} +h3 { + color: #FFD700; + font-family: sans-serif; + font-size: 40px; + background: #2962ff; + text-shadow: 3px 3px 3px black; + margin: 0px; +} +h6 { + color: white; + /*font-weight: bolder;*/ + font-family: 'Noticia Text', serif; + font-weight: 100; + font-size: 20px; background: #2962ff; } #board { display: flex; justify-content: center; text-align: center; + position: relative; } #control { margin: 20px; @@ -48,8 +71,8 @@ h4 { border: none; font-size: 50px; background: #2962ff; + text-align: center; } - #collectionItem:hover{ transform: scale(1.1); /*border-top: 2px solid #FFD700;*/ @@ -57,9 +80,6 @@ h4 { border-radius: 10px; text-align: center; } -#collectionItem:active{ - transform: scale(1.5); -} .collection.with-header .collection-header { background-color: #2962ff; border: none; @@ -69,3 +89,21 @@ h4 { width: 100%; border: none; } +/*#answerBox{ + height: 100%; + width:100%; +}*/ +/*#answerDisplay { + position: absolute; + background: #2962ff; + /*border: 5px solid white;*/ + /*width: 95%; + height: 500px; + margin-top: 7px; +} + +#keyInput { + width: 10px; + background: white; + height: 25px; +}*/ diff --git a/08week/star-wars/src/Board.js b/08week/star-wars/src/Board.js index 0f8aef01f..8013e942a 100644 --- a/08week/star-wars/src/Board.js +++ b/08week/star-wars/src/Board.js @@ -9,22 +9,28 @@ class Board extends Component { // console.log(categories); // console.log(this.props.board['vehicles']); return ( -
- { - categories.map((cat, idx) => - - ) - } -
+ this.props.boardState === 'question'? ( +
+

{this.props.board[this.props.actCat][this.props.actSq]['question']}

+
+ ) : ( +
+ { + categories.map((cat, idx) => + + ) + } +
+ ) ); // return } // render diff --git a/08week/star-wars/src/Control.js b/08week/star-wars/src/Control.js index 205a1117a..9a5800592 100644 --- a/08week/star-wars/src/Control.js +++ b/08week/star-wars/src/Control.js @@ -1,14 +1,48 @@ import React, { Component } from 'react'; -import {Button} from 'react-materialize' +import { Button, CardPanel } from 'react-materialize' class Control extends Component { render() { return ( -
-

Star Wars Jeopardy

- -
+ this.props.startGame? ( +
+

Star Wars Jeopardy

+ +
+ ) : ( +
+

Star Wars Jeopardy

+ +
+
+

{this.props.playerInfo['Q']['name']}

+

{this.props.playerInfo['Q']['score']}

+

Attempted: {this.props.playerInfo['Q']['attempted']} Correct: {this.props.playerInfo['Q']['correct']}

+
+ +

{this.props.playerInfo['Q']['name']}

+

{this.props.playerInfo['Q']['score']}

+

Attempted: {this.props.playerInfo['Q']['attempted']} Correct: {this.props.playerInfo['Q']['correct']}

+
+
+
+ // keystroke reader + // input box + // submit button +
+
+ ) ); } // return @@ -16,3 +50,5 @@ class Control extends Component { export default Control; // + +// className='blue accent-4 tooltipped disabled' diff --git a/08week/star-wars/src/Square.js b/08week/star-wars/src/Square.js index 7627e86df..9be1ec248 100644 --- a/08week/star-wars/src/Square.js +++ b/08week/star-wars/src/Square.js @@ -4,17 +4,17 @@ const Square = (props)=> { return ( - props.square['squareState'] === 'activeA'? ( + props.square['squareState'] === 'active'? (
-

{props.square['question']}

+
{props.square['question']}
- ) : props.square['squareState'] === 'activeB'? ( + ) : props.square['squareState'] === 'steal'? (
-

Active B

+
Steal
- ) : props.square['squareState'] === 'complete'? ( + ) : props.square['squareState'] === 'answer'? (
-

Complete

+
Answer
) : ( // default
diff --git a/08week/star-wars/src/StarWars.js b/08week/star-wars/src/StarWars.js index 2e00f40e2..7758fea36 100644 --- a/08week/star-wars/src/StarWars.js +++ b/08week/star-wars/src/StarWars.js @@ -103,12 +103,13 @@ class StarWars extends Component { constructor() { super(); this.game = { + startGame: false, round: 1, currentPlayer: 'Q', player: { - Q: { name: '', score: null, attempted: null, correct: null }, - B: { name: '', score: null, attempted: null, correct: null }, - P: { name: '', score: null, attempted: null, correct: null } + Q: { name: 'Q', score: 0, attempted: 0, correct: 0 }, + B: { name: 'B', score: 0, attempted: 0, correct: 0 }, + P: { name: 'P', score: 0, attempted: 0, correct: 0 } }, input: '', message: '', @@ -127,7 +128,10 @@ class StarWars extends Component { people: [], films: [], species: [] - } + }, + boardState: 'default', + activeCategory: '', + activeSquare: null }; // this.game object this.state = { @@ -135,7 +139,10 @@ class StarWars extends Component { currentPlayer: this.game['currentPlayer'], input: '', message: '', - board: {} + board: {}, + boardState: this.game['boardState'], + activeCategory: '', + activeSquare: null, }; // this.state object } //Constructor @@ -176,22 +183,94 @@ class StarWars extends Component { startClick = ()=> { console.log('startClick'); this.initState() + this.game['startGame'] = true; // console.log('this.game...planets again',this.game['board']['planets']); this.setState( { board : this.game['board'] } ); } + resetClick = ()=> { + console.log('resetClick'); + this.game['startGame'] = true; + this.game['round'] = 1; + this.game['currentPlayer'] = 'Q'; + this.game['player']['Q']['name'] = 'Q'; + this.game['player']['Q']['score'] = 0; + this.game['player']['Q']['attempted'] = 0; + this.game['player']['Q']['correct'] = 0; + this.game['player']['B']['name'] = 'B'; + this.game['player']['B']['score'] = 0; + this.game['player']['B']['attempted'] = 0; + this.game['player']['B']['correct'] = 0; + this.game['player']['P']['name'] = 'P'; + this.game['player']['P']['score'] = 0; + this.game['player']['P']['attempted'] = 0; + this.game['player']['P']['correct'] = 0; + this.game['input'] = ''; + this.game['message'] = ''; + this.game['board']['planets'] = []; + this.game['board']['ships'] = []; + this.game['board']['vehicles'] = []; + this.game['board']['people'] = []; + this.game['board']['films'] = []; + this.game['board']['species'] = []; + this.game['boardState'] = 'default'; + this.game['activeCategory'] = ''; + this.game['activeSquare'] = null; + this.initState() + + const resetState = { + round: this.game['round'], + currentPlayer: this.game['currentPlayer'], + input: '', + message: '', + board: this.game['board'], + boardState: this.game['boardState'], + activeCategory: '', + activeSquare: null, + }; // reset object + + // console.log('this.game...planets again',this.game['board']['planets']); + this.setState( resetState ); + } + handleClick = (category, square)=> { console.log('handleClick'); console.log('clicked square before', category, square, this.game['board'][category][square]['squareState']); - this.game['board'][category][square]['squareState'] = - this.game['board'][category][square]['squareState'] === 'pending'? 'activeA' : - this.game['board'][category][square]['squareState'] === 'activeA'? 'activeB' : - this.game['board'][category][square]['squareState'] === 'activeB'? 'complete' : - 'complete'; // square is done. + this.game.activeCategory = category; + this.game.activeSquare = square; + switch (this.game['board'][category][square]['squareState']) { + case 'pending': + this.game['board'][category][square]['squareState'] = 'active'; + this.game['boardState'] = 'question'; + break; + case 'active': + this.game['board'][category][square]['squareState'] = 'steal'; + this.game['boardState'] = 'question'; + break; + case 'steal': + this.game['board'][category][square]['squareState'] = 'answer'; + this.game['boardState'] = 'default'; + break; + default: + this.game['board'][category][square]['squareState'] = 'answer'; + this.game['boardState'] = 'default'; + break; + } + + // this.game['board'][category][square]['squareState'] = + // this.game['board'][category][square]['squareState'] === 'pending'? 'activeA' : + // this.game['board'][category][square]['squareState'] === 'activeA'? 'activeB' : + // this.game['board'][category][square]['squareState'] === 'activeB'? 'complete' : + // 'complete'; // square is done. console.log('after', category, square, this.game['board'][category][square]['squareState']); - this.setState( { board : this.game['board'] } ); + this.setState( { + board : this.game['board'], + boardState : this.game['boardState'], + activeCategory : this.game['activeCategory'], + activeSquare : this.game['activeSquare'] + } ); } // handleClick handleKey = (event)=> { @@ -224,12 +303,20 @@ class StarWars extends Component {
From 23413d19d158b8b71f706773a92e971267490590 Mon Sep 17 00:00:00 2001 From: Craig Copeland Date: Tue, 5 Sep 2017 06:31:50 -0500 Subject: [PATCH 5/5] Now have Camerons additional styling for control. Basic game control handling implemented (but could use some work to better guide the user) --- 08week/star-wars/public/style.css | 88 ++++++++++++++++++++++-- 08week/star-wars/src/Board.js | 3 +- 08week/star-wars/src/Control.js | 93 ++++++++++++++++++++++--- 08week/star-wars/src/Square.js | 2 +- 08week/star-wars/src/StarWars.js | 110 ++++++++++++++++++++++-------- 5 files changed, 249 insertions(+), 47 deletions(-) diff --git a/08week/star-wars/public/style.css b/08week/star-wars/public/style.css index a6b0f8c3d..7101b154b 100644 --- a/08week/star-wars/public/style.css +++ b/08week/star-wars/public/style.css @@ -8,6 +8,14 @@ font-family: 'Open Sans', sans-serif; color: #FFD700; text-shadow: -1px 0 #FEFEFF, 0 3px #FEFEFF, 1px 0 #FEFEFF, 0 1px #FEFEFF; } +h2 { + color: white; + font-family: sans-serif; + font-size: 20px; + margin-top: 0px; + margin-bottom: 5px; + text-shadow: 2px 2px 2px black +} Button:hover { transform: scale(1.2); } @@ -15,16 +23,12 @@ Button { width: 300px; margin-top: 10px; } - -.disabled { - opacity: 0.65; - cursor: not-allowed; -} /*ul{ border: 1px solid black; }*/ h4 { color: #FFD700; + margin: 0; font-family: sans-serif; font-size: 30px; background: #2962ff; @@ -57,6 +61,8 @@ h6 { margin: 20px; background-image: url('lightsabre.png'); background-repeat: no-repeat; + margin: 0px; + margin-bottom: 10px; } #category { margin: 5px; @@ -65,7 +71,7 @@ h6 { /*border: 10px solid black;*/ } #collectionItem { - height: 75px; + height: 50px; margin: 5px; border-radius: 5px; border: none; @@ -89,6 +95,76 @@ h6 { width: 100%; border: none; } +#playersFrame{ + width:100%; + display: flex; + justify-content: center; + /*justify-content: space-around;*/ + height: 150px; + /*margin-bottom: 10px; + margin-top: 10px;*/ +} +.scoreCard { + width: 25%; + margin-top: 10px; + background-color: #2962ff; + border: 10px solid #4e342e; + margin-left: 15px; + margin-right: 15px; + padding-top: 5px; + box-shadow: -1px 3px 10px black; +} +p { + font-size: 16px; + margin-bottom: 0px; + margin-top: 5px; + color: white; +} +#inputFrame { + display: flex; + justify-content: center; + height: 25px; +} +#keystrokeListener{ + width: 30px; + height: 20px; + background: white; + box-shadow: 2px 2px 2px black; + text-align: center; + font-size: 18px; + font-weight: bolder; + margin-right: 15px; +} +#guessInput{ + width: 175px; + height: 20px; + background: white; + box-shadow: 2px black; + text-align: center; + font-size: 18px; + font-weight: bolder; + margin:0px; + margin-right: 10px; + box-shadow: 2px 2px 2px black; +} +#submitGuess{ + height: 20px; + box-shadow: 2px 2px 2px black; + background-color: white; + font-size: 12px; +} +.inputPara { + margin-top: 0px; + margin-right: 10px; + font-size: 15px; +} +#commentFrame { + diplay: flex; + justify-content: center; + /*height: 20px;*/ + font-size: 24pt; + +} /*#answerBox{ height: 100%; width:100%; diff --git a/08week/star-wars/src/Board.js b/08week/star-wars/src/Board.js index 8013e942a..34120983d 100644 --- a/08week/star-wars/src/Board.js +++ b/08week/star-wars/src/Board.js @@ -17,7 +17,6 @@ class Board extends Component {
{ categories.map((cat, idx) => @@ -46,3 +45,5 @@ export default Board; // // // + +// onKeyPress={this.props.handleKey} diff --git a/08week/star-wars/src/Control.js b/08week/star-wars/src/Control.js index 9a5800592..78886ca3c 100644 --- a/08week/star-wars/src/Control.js +++ b/08week/star-wars/src/Control.js @@ -14,6 +14,47 @@ class Control extends Component { waves='yellow' onClick={this.props.resetClick} >Restart Game +
+ +

Player: {this.props.playerInfo['Q']['name']}

+

$ {this.props.playerInfo['Q']['score']}

+

Attempted: {this.props.playerInfo['Q']['attempted']} Correct: {this.props.playerInfo['Q']['correct']}

+
+ +

Player: {this.props.playerInfo['B']['name']}

+

$ {this.props.playerInfo['B']['score']}

+

Attempted: {this.props.playerInfo['B']['attempted']} Correct: {this.props.playerInfo['B']['correct']}

+
+ +

Player: {this.props.playerInfo['P']['name']}

+

$ {this.props.playerInfo['P']['score']}

+

Attempted: {this.props.playerInfo['P']['attempted']} Correct: {this.props.playerInfo['P']['correct']}

+
+
+
+

User Selected:

+ +

Sumbit Guess:

+ + +
+
+
{this.props.message}
+
) : (
@@ -25,21 +66,45 @@ class Control extends Component { onClick={this.props.startClick} >Start Game
-
-

{this.props.playerInfo['Q']['name']}

-

{this.props.playerInfo['Q']['score']}

-

Attempted: {this.props.playerInfo['Q']['attempted']} Correct: {this.props.playerInfo['Q']['correct']}

-
- -

{this.props.playerInfo['Q']['name']}

-

{this.props.playerInfo['Q']['score']}

+ +

Player: {this.props.playerInfo['Q']['name']}

+

$ {this.props.playerInfo['Q']['score']}

Attempted: {this.props.playerInfo['Q']['attempted']} Correct: {this.props.playerInfo['Q']['correct']}

+ +

Player: {this.props.playerInfo['B']['name']}

+

$ {this.props.playerInfo['B']['score']}

+

Attempted: {this.props.playerInfo['B']['attempted']} Correct: {this.props.playerInfo['B']['correct']}

+
+ +

Player: {this.props.playerInfo['P']['name']}

+

$ {this.props.playerInfo['P']['score']}

+

Attempted: {this.props.playerInfo['P']['attempted']} Correct: {this.props.playerInfo['P']['correct']}

+
- // keystroke reader - // input box - // submit button +

User Selected:

+ +

Sumbit Guess:

+ + +
+
+
{this.props.message}
) @@ -52,3 +117,9 @@ export default Control; // // className='blue accent-4 tooltipped disabled' + +/*
+

{this.props.playerInfo['Q']['name']}

+

{this.props.playerInfo['Q']['score']}

+

Attempted: {this.props.playerInfo['Q']['attempted']} Correct: {this.props.playerInfo['Q']['correct']}

+
*/ diff --git a/08week/star-wars/src/Square.js b/08week/star-wars/src/Square.js index 9be1ec248..3a3d2212b 100644 --- a/08week/star-wars/src/Square.js +++ b/08week/star-wars/src/Square.js @@ -14,7 +14,7 @@ const Square = (props)=> {
) : props.square['squareState'] === 'answer'? (
-
Answer
+
{props.square['answer']}
) : ( // default
diff --git a/08week/star-wars/src/StarWars.js b/08week/star-wars/src/StarWars.js index 7758fea36..b33163f2a 100644 --- a/08week/star-wars/src/StarWars.js +++ b/08week/star-wars/src/StarWars.js @@ -105,7 +105,7 @@ class StarWars extends Component { this.game = { startGame: false, round: 1, - currentPlayer: 'Q', + currentPlayer: '', player: { Q: { name: 'Q', score: 0, attempted: 0, correct: 0 }, B: { name: 'B', score: 0, attempted: 0, correct: 0 }, @@ -153,6 +153,7 @@ class StarWars extends Component { const planetSquare = new SquareClass(id); planetSquare.question = `1 + ${id}`; planetSquare.answer = 1 + id; + planetSquare.answer = planetSquare.answer.toString(); this.game['board']['planets'].push(planetSquare); // Pulling the questions via Fetch. Populating the spaceships category @@ -192,7 +193,7 @@ class StarWars extends Component { console.log('resetClick'); this.game['startGame'] = true; this.game['round'] = 1; - this.game['currentPlayer'] = 'Q'; + this.game['currentPlayer'] = ''; this.game['player']['Q']['name'] = 'Q'; this.game['player']['Q']['score'] = 0; this.game['player']['Q']['attempted'] = 0; @@ -243,6 +244,7 @@ class StarWars extends Component { case 'pending': this.game['board'][category][square]['squareState'] = 'active'; this.game['boardState'] = 'question'; + this.game['message'] = ''; break; case 'active': this.game['board'][category][square]['squareState'] = 'steal'; @@ -258,44 +260,92 @@ class StarWars extends Component { break; } - // this.game['board'][category][square]['squareState'] = - // this.game['board'][category][square]['squareState'] === 'pending'? 'activeA' : - // this.game['board'][category][square]['squareState'] === 'activeA'? 'activeB' : - // this.game['board'][category][square]['squareState'] === 'activeB'? 'complete' : - // 'complete'; // square is done. - console.log('after', category, square, this.game['board'][category][square]['squareState']); this.setState( { board : this.game['board'], boardState : this.game['boardState'], activeCategory : this.game['activeCategory'], - activeSquare : this.game['activeSquare'] + activeSquare : this.game['activeSquare'], + message : this.game['message'] } ); } // handleClick handleKey = (event)=> { console.log('handleKey'); /***** CODE HERE ****/ - // x = e.key; - switch (event.key) { - case 'q': - case 'Q': - console.log('you pressed the Q key'); - break; - case 'b': - case 'B': - console.log('you pressed the B key'); - break; - case 'p': - case 'P': - console.log('you pressed the P key'); - break; - default: - console.log('you pressed the some other key'); - } + // console.log('handleKey'); + this.game['currentPlayer'] = event.target.value.toUpperCase().slice(0,1); + this.game['message'] = `${this.game['currentPlayer']} buzzed in first! Question the answer ${this.game['currentPlayer']}.` + + this.setState( { + currentPlayer : this.game['currentPlayer'], + // currentPlayer : event.target.value.toUpperCase(), + message : this.game['message'], + + } ); } // handleKey + handleInputChange = (e)=> { + console.log('handleInputChange'); + this.setState({input: e.target.value}); + } + + handleSubmit = ()=> { + console.log('handleSubmit'); + const cat = this.state['activeCategory']; + const sq = this.state['activeSquare']; + const player = this.state['currentPlayer']; + + console.log('currentSquare',this.game['board'][cat][sq]); + if (this.state.input === this.game['board'][cat][sq]['answer']) { + this.game['message'] = `${this.state['currentPlayer']} answered correctly`; + this.game['board'][cat][sq]['squareState'] = 'answer'; // square is used. + this.game['boardState'] = 'default'; + this.game['activeCategory'] = ''; + this.game['activeSquare'] = null; + this.game['player'][player]['score'] += this.game['board'][cat][sq]['r1Money']; + this.game['player'][player]['attempted'] += 1; + this.game['player'][player]['correct'] += 1; + this.game['currentPlayer'] = ''; + this.game['input'] = ''; + + } else if (this.game['board'][cat][sq]['squareState'] === 'steal') { + this.game['message'] = `${this.state['currentPlayer']} got it wrong as well. Just not Star Wars enough for this answer`; + this.game['board'][cat][sq]['squareState'] = 'answer'; // square is used. + this.game['boardState'] = 'default'; + this.game['activeCategory'] = ''; + this.game['activeSquare'] = null; + this.game['player'][player]['score'] -= this.game['board'][cat][sq]['r1Money']; + this.game['player'][player]['attempted'] += 1; + this.game['currentPlayer'] = ''; + this.game['input'] = ''; + + } else { //current square is active state. Allow another guess. + this.game['message'] = `${this.state['currentPlayer']} got it wrong. Someone could steal`; + this.game['board'][cat][sq]['squareState'] = 'steal'; // square is used. + this.game['player'][player]['score'] -= this.game['board'][cat][sq]['r1Money']; + this.game['player'][player]['attempted'] += 1; + this.game['currentPlayer'] = ''; + this.game['input'] = ''; + } + + const resetState = { + round: this.game['round'], + currentPlayer: this.game['currentPlayer'], + input: this.game['input'], + message: this.game['message'], + board: this.game['board'], + boardState: this.game['boardState'], + activeCategory: this.game['activeCategory'], + activeSquare: this.game['activeSquare'], + }; // reset object + + this.setState(resetState); + + } + + render() { console.log('board',this.state); @@ -304,15 +354,19 @@ class StarWars extends Component {