├── CHANGELOG.md ├── .eslintignore ├── .babelrc ├── .gitignore ├── examples ├── basic │ ├── .babelrc │ ├── index.js │ ├── components │ │ ├── App.css │ │ └── App.js │ ├── index.html │ ├── server.js │ ├── webpack.config.js │ └── package.json ├── passed-props │ ├── .babelrc │ ├── index.js │ ├── components │ │ ├── App.css │ │ └── App.js │ ├── index.html │ ├── server.js │ ├── webpack.config.js │ ├── package.json │ └── yarn.lock └── third-party-components │ ├── .babelrc │ ├── components │ ├── App.css │ └── App.js │ ├── index.js │ ├── index.html │ ├── server.js │ ├── webpack.config.js │ └── package.json ├── src ├── types.js ├── __tests__ │ └── index.spec.js ├── shared │ ├── isTag.js │ ├── __tests__ │ │ ├── validAttr.spec.js │ │ └── isTag.spec.js │ ├── domElements.js │ └── validAttr.js ├── models │ ├── AbstractStyledComponent.js │ └── StyledComponent.js ├── index.js └── constructors │ └── styled.js ├── .travis.yml ├── .editorconfig ├── webpack.config.dev.js ├── .eslintrc.json ├── webpack.config.prod.js ├── LICENSE ├── package.json └── README.md /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react", "latest", "stage-2", "flow"] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | coverage 5 | lib 6 | dist 7 | -------------------------------------------------------------------------------- /examples/basic/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react", "es2015", "stage-2", "flow"] 3 | } 4 | -------------------------------------------------------------------------------- /examples/passed-props/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react", "es2015", "stage-2", "flow"] 3 | } 4 | -------------------------------------------------------------------------------- /examples/third-party-components/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react", "es2015", "stage-2", "flow"] 3 | } 4 | -------------------------------------------------------------------------------- /src/types.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | /* eslint-disable no-undef */ 4 | export type Target = string | ReactClass<*> 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | language: node_js 3 | node_js: 4 | - "7" 5 | - "6" 6 | - "4" 7 | cache: yarn 8 | script: "npm run lint" 9 | -------------------------------------------------------------------------------- /src/__tests__/index.spec.js: -------------------------------------------------------------------------------- 1 | import styled from '../'; 2 | 3 | 4 | it('export correctly', () => { 5 | expect(styled).toBeDefined(); 6 | expect(styled.div).toBeDefined(); 7 | }); 8 | -------------------------------------------------------------------------------- /examples/third-party-components/components/App.css: -------------------------------------------------------------------------------- 1 | .link { 2 | color: palevioletred; 3 | display: block; 4 | margin: 0.5em 0; 5 | font-family: Helvetica, Arial, sans-serif; 6 | } 7 | -------------------------------------------------------------------------------- /src/shared/isTag.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import type { Target } from '../types'; 3 | 4 | export default function isTag(target: Target)/* : %checks */ { 5 | return typeof target === 'string'; 6 | } 7 | -------------------------------------------------------------------------------- /src/models/AbstractStyledComponent.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import { Component } from 'react'; 3 | 4 | export default class AbstractStyledComponent extends Component { 5 | static isPrototypeOf: Function; 6 | } 7 | -------------------------------------------------------------------------------- /examples/basic/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { render } from 'react-dom'; 3 | import App from './components/App'; 4 | 5 | render( 6 | , 7 | document.getElementById('root') 8 | ); 9 | -------------------------------------------------------------------------------- /examples/basic/components/App.css: -------------------------------------------------------------------------------- 1 | .title { 2 | font-size: 1.5em; 3 | text-align: center; 4 | color: palevioletred; 5 | } 6 | 7 | .wrapper { 8 | padding: 4em; 9 | background: papayawhip; 10 | } 11 | -------------------------------------------------------------------------------- /examples/passed-props/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { render } from 'react-dom'; 3 | import App from './components/App'; 4 | 5 | render( 6 | , 7 | document.getElementById('root') 8 | ); 9 | -------------------------------------------------------------------------------- /examples/third-party-components/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { render } from 'react-dom'; 3 | import App from './components/App'; 4 | 5 | render( 6 | , 7 | document.getElementById('root') 8 | ); 9 | -------------------------------------------------------------------------------- /examples/passed-props/components/App.css: -------------------------------------------------------------------------------- 1 | .input { 2 | font-size: 1.25em; 3 | padding: 0.5em; 4 | margin: 0.5em; 5 | color: palevioletred; 6 | background: papayawhip; 7 | border: none; 8 | border-radius: 3px; 9 | } 10 | -------------------------------------------------------------------------------- /examples/basic/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | styled-css-modules-component-example 4 | 5 | 6 |
7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /examples/passed-props/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | styled-css-modules-component-example 4 | 5 | 6 |
7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /examples/third-party-components/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | styled-css-modules-component-example 4 | 5 | 6 |
7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = tab 5 | end_of_line = lf 6 | charset = utf-8 7 | trim_trailing_whitespace = true 8 | insert_final_newline = true 9 | indent_style = space 10 | indent_size = 2 11 | 12 | [*.md] 13 | trim_trailing_whitespace = false 14 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | /* Import singleton constructors */ 4 | import _styledComponent from './models/StyledComponent'; 5 | import _styled from './constructors/styled'; 6 | 7 | /* Instantiate singletons */ 8 | const styled = _styled(_styledComponent()); 9 | 10 | export default styled; 11 | -------------------------------------------------------------------------------- /src/shared/__tests__/validAttr.spec.js: -------------------------------------------------------------------------------- 1 | import validAttr from '../validAttr'; 2 | 3 | 4 | it('should return true when attribute valid', () => { 5 | expect(validAttr('name')).toBe(true); 6 | }); 7 | 8 | it('should return false when attribute invalid', () => { 9 | expect(validAttr('anme')).toBe(false); 10 | }); 11 | -------------------------------------------------------------------------------- /src/shared/__tests__/isTag.spec.js: -------------------------------------------------------------------------------- 1 | import isTag from '../isTag'; 2 | 3 | 4 | it('html tags should be tags', () => { 5 | expect(isTag('a')).toBe(true); 6 | expect(isTag('h1')).toBe(true); 7 | expect(isTag('div')).toBe(true); 8 | expect(isTag('img')).toBe(true); 9 | }); 10 | 11 | it('components should not be tags', () => { 12 | const Component = () => null; 13 | expect(isTag(Component)).toBe(false); 14 | }); 15 | -------------------------------------------------------------------------------- /examples/passed-props/components/App.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import styled from 'react-css-modules-component'; // eslint-disable-line 3 | 4 | import styles from './App.css'; 5 | 6 | const Input = styled.input(styles.input); 7 | 8 | class App extends Component { 9 | render() { 10 | return ( 11 | 12 | ); 13 | } 14 | } 15 | 16 | 17 | export default App; 18 | -------------------------------------------------------------------------------- /src/constructors/styled.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import type { Target } from '../types'; 3 | import domElements from '../shared/domElements'; 4 | 5 | export default (styledComponent: Function) => { 6 | const styled = (tag: Target) => 7 | (className: string) => styledComponent(tag, className); 8 | 9 | // Shorthands for all valid HTML Elements 10 | domElements.forEach(domElement => { 11 | styled[domElement] = styled(domElement); 12 | }); 13 | 14 | return styled; 15 | }; 16 | -------------------------------------------------------------------------------- /examples/basic/components/App.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import styled from 'react-css-modules-component'; // eslint-disable-line 3 | 4 | import styles from './App.css'; 5 | 6 | const Title = styled.h1(styles.title); 7 | 8 | const Wrapper = styled.section(styles.wrapper); 9 | 10 | class App extends Component { 11 | render() { 12 | return ( 13 | 14 | Hello World, this is my first styled css modules component! 15 | 16 | ); 17 | } 18 | } 19 | 20 | 21 | export default App; 22 | -------------------------------------------------------------------------------- /webpack.config.dev.js: -------------------------------------------------------------------------------- 1 | const webpack = require('webpack'); 2 | 3 | module.exports = { 4 | module: { 5 | loaders: [ 6 | { test: /\.js$/, loaders: ['babel-loader'], exclude: /node_modules/ }, 7 | ], 8 | }, 9 | output: { 10 | library: 'StyledCSSModuleComponent', 11 | libraryTarget: 'umd', 12 | }, 13 | resolve: { 14 | extensions: ['', '.js'], 15 | }, 16 | plugins: [ 17 | new webpack.optimize.OccurenceOrderPlugin(), 18 | new webpack.DefinePlugin({ 19 | 'process.env.NODE_ENV': JSON.stringify('development'), 20 | }), 21 | ], 22 | }; 23 | -------------------------------------------------------------------------------- /examples/third-party-components/components/App.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { Link } from 'react-router'; 3 | import styled from 'react-css-modules-component'; // eslint-disable-line 4 | 5 | import styles from './App.css'; 6 | 7 | 8 | const StyledLink = styled(Link)(styles.link); 9 | 10 | 11 | class App extends Component { 12 | render() { 13 | return ( 14 |
15 | Standard, unstyled Link 16 |
17 | This Link is styled! 18 |
19 | ); 20 | } 21 | } 22 | 23 | 24 | export default App; 25 | -------------------------------------------------------------------------------- /examples/basic/server.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable import/no-extraneous-dependencies */ 2 | 3 | const webpack = require('webpack'); 4 | const WebpackDevServer = require('webpack-dev-server'); 5 | const config = require('./webpack.config'); 6 | 7 | new WebpackDevServer(webpack(config), { 8 | publicPath: config.output.publicPath, 9 | hot: true, 10 | historyApiFallback: true, 11 | stats: { 12 | colors: true, 13 | }, 14 | }).listen(3000, 'localhost', err => { 15 | if (err) { 16 | console.log(err); // eslint-disable-line no-console 17 | } 18 | 19 | console.log('Listening at localhost:3000'); // eslint-disable-line no-console 20 | }); 21 | -------------------------------------------------------------------------------- /examples/passed-props/server.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable import/no-extraneous-dependencies */ 2 | 3 | const webpack = require('webpack'); 4 | const WebpackDevServer = require('webpack-dev-server'); 5 | const config = require('./webpack.config'); 6 | 7 | new WebpackDevServer(webpack(config), { 8 | publicPath: config.output.publicPath, 9 | hot: true, 10 | historyApiFallback: true, 11 | stats: { 12 | colors: true, 13 | }, 14 | }).listen(3000, 'localhost', err => { 15 | if (err) { 16 | console.log(err); // eslint-disable-line no-console 17 | } 18 | 19 | console.log('Listening at localhost:3000'); // eslint-disable-line no-console 20 | }); 21 | -------------------------------------------------------------------------------- /examples/third-party-components/server.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable import/no-extraneous-dependencies */ 2 | 3 | const webpack = require('webpack'); 4 | const WebpackDevServer = require('webpack-dev-server'); 5 | const config = require('./webpack.config'); 6 | 7 | new WebpackDevServer(webpack(config), { 8 | publicPath: config.output.publicPath, 9 | hot: true, 10 | historyApiFallback: true, 11 | stats: { 12 | colors: true, 13 | }, 14 | }).listen(3000, 'localhost', err => { 15 | if (err) { 16 | console.log(err); // eslint-disable-line no-console 17 | } 18 | 19 | console.log('Listening at localhost:3000'); // eslint-disable-line no-console 20 | }); 21 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "parser": "babel-eslint", 3 | "extends": "airbnb", 4 | "env": { 5 | "browser": true, 6 | "jest": true 7 | }, 8 | "rules": { 9 | "arrow-parens": ["error", "as-needed"], 10 | "comma-dangle": ["error", { 11 | "arrays": "always-multiline", 12 | "objects": "always-multiline", 13 | "imports": "always-multiline", 14 | "exports": "always-multiline", 15 | "functions": "ignore" 16 | }], 17 | "no-prototype-builtins": "off", 18 | "import/no-extraneous-dependencies": "off", 19 | "react/jsx-filename-extension": ["error", { "extensions": [".js"] }], 20 | "react/prefer-stateless-function": "off" 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /webpack.config.prod.js: -------------------------------------------------------------------------------- 1 | const webpack = require('webpack'); 2 | 3 | module.exports = { 4 | module: { 5 | loaders: [ 6 | { test: /\.js$/, loaders: ['babel-loader'], exclude: /node_modules/ }, 7 | ], 8 | }, 9 | output: { 10 | library: 'StyledCSSModuleComponent', 11 | libraryTarget: 'umd', 12 | }, 13 | resolve: { 14 | extensions: ['', '.js'], 15 | }, 16 | plugins: [ 17 | new webpack.optimize.OccurenceOrderPlugin(), 18 | new webpack.DefinePlugin({ 19 | 'process.env.NODE_ENV': JSON.stringify('production'), 20 | }), 21 | new webpack.optimize.UglifyJsPlugin({ 22 | compressor: { 23 | screw_ie8: true, 24 | warnings: false, 25 | }, 26 | }), 27 | ], 28 | }; 29 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2017-present C.T. Lin (github.com/chentsulin/styled-css-modules-component) 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /examples/basic/webpack.config.js: -------------------------------------------------------------------------------- 1 | const path = require('path'); 2 | const webpack = require('webpack'); 3 | 4 | module.exports = { 5 | devtool: 'eval', 6 | entry: [ 7 | 'webpack-dev-server/client?http://localhost:3000', 8 | 'webpack/hot/only-dev-server', 9 | './index', 10 | ], 11 | output: { 12 | path: path.join(__dirname, 'dist'), 13 | filename: 'bundle.js', 14 | publicPath: '/static/', 15 | }, 16 | plugins: [ 17 | new webpack.HotModuleReplacementPlugin(), 18 | new webpack.NoErrorsPlugin(), 19 | ], 20 | resolve: { 21 | alias: { 22 | 'react-css-modules-component': path.join(__dirname, '..', '..', 'src', 'index.js'), 23 | }, 24 | extensions: ['', '.js'], 25 | }, 26 | module: { 27 | loaders: [{ 28 | test: /\.js$/, 29 | loaders: ['react-hot', 'babel'], 30 | exclude: /node_modules/, 31 | include: __dirname, 32 | }, { 33 | test: /\.js$/, 34 | loaders: ['babel'], 35 | include: path.join(__dirname, '..', '..', 'src'), 36 | }, { 37 | test: /\.css$/, 38 | loaders: [ 39 | 'style-loader', 40 | 'css-loader?modules&importLoaders=1&localIdentName=[name]__[local]___[hash:base64:5]', // eslint-disable-line max-len 41 | ], 42 | }], 43 | }, 44 | }; 45 | -------------------------------------------------------------------------------- /examples/passed-props/webpack.config.js: -------------------------------------------------------------------------------- 1 | const path = require('path'); 2 | const webpack = require('webpack'); 3 | 4 | module.exports = { 5 | devtool: 'eval', 6 | entry: [ 7 | 'webpack-dev-server/client?http://localhost:3000', 8 | 'webpack/hot/only-dev-server', 9 | './index', 10 | ], 11 | output: { 12 | path: path.join(__dirname, 'dist'), 13 | filename: 'bundle.js', 14 | publicPath: '/static/', 15 | }, 16 | plugins: [ 17 | new webpack.HotModuleReplacementPlugin(), 18 | new webpack.NoErrorsPlugin(), 19 | ], 20 | resolve: { 21 | alias: { 22 | 'react-css-modules-component': path.join(__dirname, '..', '..', 'src', 'index.js'), 23 | }, 24 | extensions: ['', '.js'], 25 | }, 26 | module: { 27 | loaders: [{ 28 | test: /\.js$/, 29 | loaders: ['react-hot', 'babel'], 30 | exclude: /node_modules/, 31 | include: __dirname, 32 | }, { 33 | test: /\.js$/, 34 | loaders: ['babel'], 35 | include: path.join(__dirname, '..', '..', 'src'), 36 | }, { 37 | test: /\.css$/, 38 | loaders: [ 39 | 'style-loader', 40 | 'css-loader?modules&importLoaders=1&localIdentName=[name]__[local]___[hash:base64:5]', // eslint-disable-line max-len 41 | ], 42 | }], 43 | }, 44 | }; 45 | -------------------------------------------------------------------------------- /examples/basic/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "styled-css-modules-component-example", 3 | "version": "1.0.0", 4 | "description": "styled-css-modules-component-example-description", 5 | "private": true, 6 | "main": "server.js", 7 | "scripts": { 8 | "start": "node server.js" 9 | }, 10 | "repository": { 11 | "type": "git", 12 | "url": "https://github.com/chentsulin/styled-css-modules-component.git" 13 | }, 14 | "keywords": [ 15 | "styled-css-modules-component-keywords" 16 | ], 17 | "license": "MIT", 18 | "bugs": { 19 | "url": "https://github.com/chentsulin/styled-css-modules-component/issues" 20 | }, 21 | "homepage": "https://github.com/chentsulin/styled-css-modules-component", 22 | "dependencies": { 23 | "react": "^15.0.1", 24 | "react-dom": "^15.0.1" 25 | }, 26 | "devDependencies": { 27 | "babel-core": "^6.7.6", 28 | "babel-loader": "^6.2.4", 29 | "babel-preset-es2015": "^6.6.0", 30 | "babel-preset-flow": "^1.0.0", 31 | "babel-preset-react": "^6.5.0", 32 | "babel-preset-stage-2": "^6.22.0", 33 | "css-loader": "^0.26.1", 34 | "node-libs-browser": "^1.0.0", 35 | "react-hot-loader": "^1.3.0", 36 | "style-loader": "^0.13.1", 37 | "webpack": "^1.12.15", 38 | "webpack-dev-server": "^1.14.1" 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /examples/third-party-components/webpack.config.js: -------------------------------------------------------------------------------- 1 | const path = require('path'); 2 | const webpack = require('webpack'); 3 | 4 | module.exports = { 5 | devtool: 'eval', 6 | entry: [ 7 | 'webpack-dev-server/client?http://localhost:3000', 8 | 'webpack/hot/only-dev-server', 9 | './index', 10 | ], 11 | output: { 12 | path: path.join(__dirname, 'dist'), 13 | filename: 'bundle.js', 14 | publicPath: '/static/', 15 | }, 16 | plugins: [ 17 | new webpack.HotModuleReplacementPlugin(), 18 | new webpack.NoErrorsPlugin(), 19 | ], 20 | resolve: { 21 | alias: { 22 | 'react-css-modules-component': path.join(__dirname, '..', '..', 'src', 'index.js'), 23 | }, 24 | extensions: ['', '.js'], 25 | }, 26 | module: { 27 | loaders: [{ 28 | test: /\.js$/, 29 | loaders: ['react-hot', 'babel'], 30 | exclude: /node_modules/, 31 | include: __dirname, 32 | }, { 33 | test: /\.js$/, 34 | loaders: ['babel'], 35 | include: path.join(__dirname, '..', '..', 'src'), 36 | }, { 37 | test: /\.css$/, 38 | loaders: [ 39 | 'style-loader', 40 | 'css-loader?modules&importLoaders=1&localIdentName=[name]__[local]___[hash:base64:5]', // eslint-disable-line max-len 41 | ], 42 | }], 43 | }, 44 | }; 45 | -------------------------------------------------------------------------------- /examples/passed-props/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "styled-css-modules-component-example", 3 | "version": "1.0.0", 4 | "description": "styled-css-modules-component-example-description", 5 | "private": true, 6 | "main": "server.js", 7 | "scripts": { 8 | "start": "node server.js" 9 | }, 10 | "repository": { 11 | "type": "git", 12 | "url": "https://github.com/chentsulin/styled-css-modules-component.git" 13 | }, 14 | "keywords": [ 15 | "styled-css-modules-component-keywords" 16 | ], 17 | "license": "MIT", 18 | "bugs": { 19 | "url": "https://github.com/chentsulin/styled-css-modules-component/issues" 20 | }, 21 | "homepage": "https://github.com/chentsulin/styled-css-modules-component", 22 | "dependencies": { 23 | "react": "^15.0.1", 24 | "react-dom": "^15.0.1" 25 | }, 26 | "devDependencies": { 27 | "babel-core": "^6.7.6", 28 | "babel-loader": "^6.2.4", 29 | "babel-preset-es2015": "^6.6.0", 30 | "babel-preset-flow": "^1.0.0", 31 | "babel-preset-react": "^6.5.0", 32 | "babel-preset-stage-2": "^6.22.0", 33 | "css-loader": "^0.26.1", 34 | "node-libs-browser": "^1.0.0", 35 | "react-hot-loader": "^1.3.0", 36 | "style-loader": "^0.13.1", 37 | "webpack": "^1.12.15", 38 | "webpack-dev-server": "^1.14.1" 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /examples/third-party-components/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "styled-css-modules-component-example", 3 | "version": "1.0.0", 4 | "description": "styled-css-modules-component-example-description", 5 | "private": true, 6 | "main": "server.js", 7 | "scripts": { 8 | "start": "node server.js" 9 | }, 10 | "repository": { 11 | "type": "git", 12 | "url": "https://github.com/chentsulin/styled-css-modules-component.git" 13 | }, 14 | "keywords": [ 15 | "styled-css-modules-component-keywords" 16 | ], 17 | "license": "MIT", 18 | "bugs": { 19 | "url": "https://github.com/chentsulin/styled-css-modules-component/issues" 20 | }, 21 | "homepage": "https://github.com/chentsulin/styled-css-modules-component", 22 | "dependencies": { 23 | "react": "^15.0.1", 24 | "react-dom": "^15.0.1", 25 | "react-router": "^3.0.2" 26 | }, 27 | "devDependencies": { 28 | "babel-core": "^6.7.6", 29 | "babel-loader": "^6.2.4", 30 | "babel-preset-es2015": "^6.6.0", 31 | "babel-preset-flow": "^1.0.0", 32 | "babel-preset-react": "^6.5.0", 33 | "babel-preset-stage-2": "^6.22.0", 34 | "css-loader": "^0.26.1", 35 | "node-libs-browser": "^1.0.0", 36 | "react-hot-loader": "^1.3.0", 37 | "style-loader": "^0.13.1", 38 | "webpack": "^1.12.15", 39 | "webpack-dev-server": "^1.14.1" 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /src/models/StyledComponent.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | import { createElement } from 'react'; 4 | 5 | import validAttr from '../shared/validAttr'; 6 | import isTag from '../shared/isTag'; 7 | import type { Target } from '../types'; 8 | 9 | import AbstractStyledComponent from './AbstractStyledComponent'; 10 | 11 | export default () => { 12 | // eslint-disable-next-line no-undef 13 | const createStyledComponent = (target: Target, cssModuleName: string, parent?: ReactClass<*>) => { 14 | /* Handle styled(OtherStyledComponent) differently */ 15 | const isStyledComponent = AbstractStyledComponent.isPrototypeOf(target); 16 | 17 | if (!isTag(target) && isStyledComponent) { 18 | return createStyledComponent(target.target, [target.cssModuleNames, cssModuleName].join(' '), target); 19 | } 20 | 21 | const ParentComponent = parent || AbstractStyledComponent; 22 | 23 | class StyledComponent extends ParentComponent { 24 | static target: Target; 25 | static cssModuleName: string; 26 | 27 | render() { 28 | const { className, children, innerRef } = this.props; 29 | 30 | const propsForElement = {}; 31 | 32 | /* Don't pass through non HTML tags through to HTML elements */ 33 | Object.keys(this.props) 34 | .filter(propName => !isTag(target) || validAttr(propName)) 35 | .forEach(propName => { 36 | propsForElement[propName] = this.props[propName]; 37 | }); 38 | 39 | propsForElement.className = [className, cssModuleName].filter(x => x).join(' '); 40 | 41 | if (innerRef) { 42 | propsForElement.ref = innerRef; 43 | if (isTag(target)) delete propsForElement.innerRef; 44 | } 45 | 46 | return createElement(target, propsForElement, children); 47 | } 48 | } 49 | 50 | StyledComponent.target = target; 51 | StyledComponent.cssModuleName = cssModuleName; 52 | StyledComponent.displayName = isTag(target) ? `styled.${target}` : `Styled(${(target.displayName || target.name)})`; 53 | 54 | return StyledComponent; 55 | }; 56 | 57 | return createStyledComponent; 58 | }; 59 | -------------------------------------------------------------------------------- /src/shared/domElements.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | // Thanks to ReactDOMFactories for this handy list! 3 | 4 | export default [ 5 | 'a', 6 | 'abbr', 7 | 'address', 8 | 'area', 9 | 'article', 10 | 'aside', 11 | 'audio', 12 | 'b', 13 | 'base', 14 | 'bdi', 15 | 'bdo', 16 | 'big', 17 | 'blockquote', 18 | 'body', 19 | 'br', 20 | 'button', 21 | 'canvas', 22 | 'caption', 23 | 'cite', 24 | 'code', 25 | 'col', 26 | 'colgroup', 27 | 'data', 28 | 'datalist', 29 | 'dd', 30 | 'del', 31 | 'details', 32 | 'dfn', 33 | 'dialog', 34 | 'div', 35 | 'dl', 36 | 'dt', 37 | 'em', 38 | 'embed', 39 | 'fieldset', 40 | 'figcaption', 41 | 'figure', 42 | 'footer', 43 | 'form', 44 | 'h1', 45 | 'h2', 46 | 'h3', 47 | 'h4', 48 | 'h5', 49 | 'h6', 50 | 'head', 51 | 'header', 52 | 'hgroup', 53 | 'hr', 54 | 'html', 55 | 'i', 56 | 'iframe', 57 | 'img', 58 | 'input', 59 | 'ins', 60 | 'kbd', 61 | 'keygen', 62 | 'label', 63 | 'legend', 64 | 'li', 65 | 'link', 66 | 'main', 67 | 'map', 68 | 'mark', 69 | 'menu', 70 | 'menuitem', 71 | 'meta', 72 | 'meter', 73 | 'nav', 74 | 'noscript', 75 | 'object', 76 | 'ol', 77 | 'optgroup', 78 | 'option', 79 | 'output', 80 | 'p', 81 | 'param', 82 | 'picture', 83 | 'pre', 84 | 'progress', 85 | 'q', 86 | 'rp', 87 | 'rt', 88 | 'ruby', 89 | 's', 90 | 'samp', 91 | 'script', 92 | 'section', 93 | 'select', 94 | 'small', 95 | 'source', 96 | 'span', 97 | 'strong', 98 | 'style', 99 | 'sub', 100 | 'summary', 101 | 'sup', 102 | 'table', 103 | 'tbody', 104 | 'td', 105 | 'textarea', 106 | 'tfoot', 107 | 'th', 108 | 'thead', 109 | 'time', 110 | 'title', 111 | 'tr', 112 | 'track', 113 | 'u', 114 | 'ul', 115 | 'var', 116 | 'video', 117 | 'wbr', 118 | 119 | // SVG 120 | 'circle', 121 | 'clipPath', 122 | 'defs', 123 | 'ellipse', 124 | 'g', 125 | 'image', 126 | 'line', 127 | 'linearGradient', 128 | 'mask', 129 | 'path', 130 | 'pattern', 131 | 'polygon', 132 | 'polyline', 133 | 'radialGradient', 134 | 'rect', 135 | 'stop', 136 | 'svg', 137 | 'text', 138 | 'tspan', 139 | ]; 140 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "styled-css-modules-component", 3 | "version": "0.1.0", 4 | "description": "Build styled component with css-modules", 5 | "main": "lib/index.js", 6 | "license": "MIT", 7 | "repository": "chentsulin/styled-css-modules-component", 8 | "scripts": { 9 | "clean": "rimraf lib dist coverage", 10 | "lint": "eslint src", 11 | "test": "jest", 12 | "test:watch": "npm test -- --watch", 13 | "test:cov": "npm test -- --coverage", 14 | "check": "npm run lint && npm run test", 15 | "build:lib": "babel src --out-dir lib --ignore __tests__", 16 | "build:umd": "webpack src/index.js dist/styled-css-modules-component.js --config webpack.config.dev.js", 17 | "build:umd:min": "webpack src/index.js dist/styled-css-modules-component.min.js --config webpack.config.prod.js", 18 | "build": "npm run clean && npm run build:lib && npm run build:umd && npm run build:umd:min", 19 | "preversion": "npm run clean && npm run check", 20 | "version": "npm run build", 21 | "postversion": "git push && git push --tags && npm run clean", 22 | "prepublish": "npm run clean && npm run build" 23 | }, 24 | "author": { 25 | "name": "C.T. Lin", 26 | "email": "chentsulin@gmail.com", 27 | "url": "github.com/chentsulin/styled-css-modules-component" 28 | }, 29 | "engines": { 30 | "node": ">=0.10.0" 31 | }, 32 | "files": [ 33 | "lib/", 34 | "src/" 35 | ], 36 | "keywords": [], 37 | "devDependencies": { 38 | "babel-cli": "^6.18.0", 39 | "babel-eslint": "^7.1.1", 40 | "babel-jest": "^18.0.0", 41 | "babel-loader": "^6.2.10", 42 | "babel-polyfill": "^6.20.0", 43 | "babel-preset-flow": "^1.0.0", 44 | "babel-preset-latest": "^6.16.0", 45 | "babel-preset-react": "^6.16.0", 46 | "babel-preset-stage-2": "^6.18.0", 47 | "enzyme": "^2.7.0", 48 | "eslint": "^3.13.1", 49 | "eslint-config-airbnb": "^14.0.0", 50 | "eslint-plugin-import": "^2.2.0", 51 | "eslint-plugin-jsx-a11y": "^3.0.2", 52 | "eslint-plugin-react": "^6.9.0", 53 | "jest-cli": "^18.1.0", 54 | "react": "^15.4.2", 55 | "react-addons-test-utils": "^15.4.2", 56 | "react-dom": "^15.4.2", 57 | "rimraf": "^2.5.4", 58 | "webpack": "^1.14.0" 59 | }, 60 | "dependencies": {}, 61 | "jest": { 62 | "collectCoverageFrom": [ 63 | "src/**/*.js" 64 | ], 65 | "testPathIgnorePatterns": [ 66 | "/lib" 67 | ] 68 | } 69 | } 70 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # styled-css-modules-component 2 | 3 | [![NPM version][npm-image]][npm-url] 4 | [![Build Status][travis-image]][travis-url] 5 | [![Dependency Status][david_img]][david_site] 6 | 7 | > Build styled component with css-modules 8 | 9 | `styled-component` forces developers use clearer way to add styles to the components which looks great to me, but there are still some difficult unsolved issues in CSS-in-JS area, even after `radium`, `aphrodite` and a lot of libraries involved. 10 | 11 | `css-modules` is a good choice for getting modularization without being as cutting-edge as the CSS-in-JS approaches. You can just write css and get full superpower from PostCSS ecosystem! 12 | 13 | ## Install 14 | 15 | ```sh 16 | $ npm install styled-css-modules-component 17 | ``` 18 | 19 | > Note: You have to setup your own css-modules environment. 20 | 21 | ## Usage 22 | 23 | ### Basic 24 | 25 | `styles.css`: 26 | 27 | ```css 28 | .title { 29 | font-size: 1.5em; 30 | text-align: center; 31 | color: palevioletred; 32 | } 33 | 34 | .wrapper { 35 | padding: 4em; 36 | background: papayawhip; 37 | } 38 | ``` 39 | 40 | This creates two react components, `` and `<Wrapper>`: 41 | 42 | ```js 43 | import React from 'react'; 44 | import styled from 'styled-css-module-components'; 45 | 46 | import styles from './styles.css'; 47 | 48 | // Create a <Title> react component that renders an <h1> which is 49 | // centered, palevioletred and sized at 1.5em 50 | const Title = styled.h1(styles.title); 51 | 52 | // Create a <Wrapper> react component that renders a <section> with 53 | // some padding and a papayawhip background 54 | const Wrapper = styled.section(styles.wrapper); 55 | ``` 56 | 57 | You render them like so: 58 | 59 | ```jsx 60 | // Use them like any other React component – except they're styled! 61 | <Wrapper> 62 | <Title>Hello World, this is my first styled css modules component! 63 | 64 | ``` 65 | 66 | ![screencapture-localhost-3000-1486314996688](https://cloud.githubusercontent.com/assets/3382565/22628156/1581950e-ec0a-11e6-9a15-4ed2b7d3d816.png) 67 | 68 | Checkout full examples [here](https://github.com/chentsulin/styled-css-modules-component/blob/master/examples/basic/components/App.js). 69 | 70 | 71 | ### Passed props 72 | 73 | `styles.css`: 74 | 75 | ```css 76 | .input { 77 | font-size: 1.25em; 78 | padding: 0.5em; 79 | margin: 0.5em; 80 | color: palevioletred; 81 | background: papayawhip; 82 | border: none; 83 | border-radius: 3px; 84 | } 85 | ``` 86 | 87 | Styled components pass on all their props. This is a styled ``: 88 | 89 | ```js 90 | import React from 'react'; 91 | import styled from 'styled-css-modules-components'; 92 | 93 | import styles from './styles.css'; 94 | 95 | // Create an component that'll render an tag with some styles 96 | const Input = styled.input(styles.input); 97 | ``` 98 | 99 | You can just pass a `placeholder` prop into the `styled-css-modules-component`. It will pass it on to the DOM node like any other react component: 100 | 101 | ```jsx 102 | // Render a styled input with a placeholder of "@chentsulin" 103 | 104 | ``` 105 | 106 | ![2017-02-06 1 23 26](https://cloud.githubusercontent.com/assets/3382565/22628206/f20db8fe-ec0a-11e6-9980-36a6090cb3e1.png) 107 | 108 | Checkout full examples [here](https://github.com/chentsulin/styled-css-modules-component/blob/master/examples/passed-props/components/App.js). 109 | 110 | 111 | ## Third-party components 112 | 113 | `styles.css`: 114 | 115 | ```css 116 | .link { 117 | color: palevioletred; 118 | display: block; 119 | margin: 0.5em 0; 120 | font-family: Helvetica, Arial, sans-serif; 121 | } 122 | ``` 123 | 124 | The above also works perfectly for styling third-party components, like a `react-router` ``! 125 | 126 | ```js 127 | import styled from 'styled-css-modules-components'; 128 | import { Link } from 'react-router'; 129 | 130 | const StyledLink = styled(Link)(styles.link); 131 | ``` 132 | 133 | ```jsx 134 | Standard, unstyled Link 135 | This Link is styled! 136 | ``` 137 | 138 | ![2017-02-07 1 50 27](https://cloud.githubusercontent.com/assets/3382565/22679409/e86ab850-ed3c-11e6-81cf-3d06dfb36aab.png) 139 | 140 | Checkout full examples [here](https://github.com/chentsulin/styled-css-modules-component/blob/master/examples/third-party-components/components/App.js). 141 | 142 | 143 | ## Animations 144 | 145 | Directly supported by CSS. 146 | 147 | 148 | ## Overriding component styles & Theming 149 | 150 | See the long discusses at [css-modules #147](https://github.com/css-modules/css-modules/issues/147). 151 | 152 | 153 | ## React Native 154 | 155 | Not supported. 156 | 157 | 158 | ## Relevant Projects 159 | 160 | - [styled-component](https://github.com/styled-components/styled-components) 161 | - [css-literal-loader](https://github.com/4Catalyzer/css-literal-loader) 162 | 163 | 164 | ## License 165 | 166 | MIT © [C.T. Lin](https://github.com/chentsulin/styled-css-modules-component) 167 | 168 | [npm-image]: https://badge.fury.io/js/styled-css-modules-component.svg 169 | [npm-url]: https://npmjs.org/package/styled-css-modules-component 170 | [travis-image]: https://travis-ci.org/chentsulin/styled-css-modules-component.svg 171 | [travis-url]: https://travis-ci.org/chentsulin/styled-css-modules-component 172 | [coveralls-image]: https://coveralls.io/repos/chentsulin/styled-css-modules-component/badge.svg?branch=master&service=github 173 | [coveralls-url]: https://coveralls.io/r/chentsulin/styled-css-modules-component?branch=master 174 | [david_img]: https://david-dm.org/chentsulin/styled-css-modules-component.svg 175 | [david_site]: https://david-dm.org/chentsulin/styled-css-modules-component 176 | 177 | -------------------------------------------------------------------------------- /src/shared/validAttr.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | /* Trying to avoid the unknown-prop errors on styled components 3 | by filtering by React's attribute whitelist. 4 | */ 5 | 6 | /* Logic copied from ReactDOMUnknownPropertyHook */ 7 | const reactProps = { 8 | children: true, 9 | dangerouslySetInnerHTML: true, 10 | key: true, 11 | ref: true, 12 | autoFocus: true, 13 | defaultValue: true, 14 | valueLink: true, 15 | defaultChecked: true, 16 | checkedLink: true, 17 | innerHTML: true, 18 | suppressContentEditableWarning: true, 19 | onFocusIn: true, 20 | onFocusOut: true, 21 | className: true, 22 | 23 | /* List copied from https://facebook.github.io/react/docs/events.html */ 24 | onCopy: true, 25 | onCut: true, 26 | onPaste: true, 27 | onCompositionEnd: true, 28 | onCompositionStart: true, 29 | onCompositionUpdate: true, 30 | onKeyDown: true, 31 | onKeyPress: true, 32 | onKeyUp: true, 33 | onFocus: true, 34 | onBlur: true, 35 | onChange: true, 36 | onInput: true, 37 | onSubmit: true, 38 | onClick: true, 39 | onContextMenu: true, 40 | onDoubleClick: true, 41 | onDrag: true, 42 | onDragEnd: true, 43 | onDragEnter: true, 44 | onDragExit: true, 45 | onDragLeave: true, 46 | onDragOver: true, 47 | onDragStart: true, 48 | onDrop: true, 49 | onMouseDown: true, 50 | onMouseEnter: true, 51 | onMouseLeave: true, 52 | onMouseMove: true, 53 | onMouseOut: true, 54 | onMouseOver: true, 55 | onMouseUp: true, 56 | onSelect: true, 57 | onTouchCancel: true, 58 | onTouchEnd: true, 59 | onTouchMove: true, 60 | onTouchStart: true, 61 | onScroll: true, 62 | onWheel: true, 63 | onAbort: true, 64 | onCanPlay: true, 65 | onCanPlayThrough: true, 66 | onDurationChange: true, 67 | onEmptied: true, 68 | onEncrypted: true, 69 | onEnded: true, 70 | onError: true, 71 | onLoadedData: true, 72 | onLoadedMetadata: true, 73 | onLoadStart: true, 74 | onPause: true, 75 | onPlay: true, 76 | onPlaying: true, 77 | onProgress: true, 78 | onRateChange: true, 79 | onSeeked: true, 80 | onSeeking: true, 81 | onStalled: true, 82 | onSuspend: true, 83 | onTimeUpdate: true, 84 | onVolumeChange: true, 85 | onWaiting: true, 86 | onLoad: true, 87 | onAnimationStart: true, 88 | onAnimationEnd: true, 89 | onAnimationIteration: true, 90 | onTransitionEnd: true, 91 | 92 | onCopyCapture: true, 93 | onCutCapture: true, 94 | onPasteCapture: true, 95 | onCompositionEndCapture: true, 96 | onCompositionStartCapture: true, 97 | onCompositionUpdateCapture: true, 98 | onKeyDownCapture: true, 99 | onKeyPressCapture: true, 100 | onKeyUpCapture: true, 101 | onFocusCapture: true, 102 | onBlurCapture: true, 103 | onChangeCapture: true, 104 | onInputCapture: true, 105 | onSubmitCapture: true, 106 | onClickCapture: true, 107 | onContextMenuCapture: true, 108 | onDoubleClickCapture: true, 109 | onDragCapture: true, 110 | onDragEndCapture: true, 111 | onDragEnterCapture: true, 112 | onDragExitCapture: true, 113 | onDragLeaveCapture: true, 114 | onDragOverCapture: true, 115 | onDragStartCapture: true, 116 | onDropCapture: true, 117 | onMouseDownCapture: true, 118 | onMouseEnterCapture: true, 119 | onMouseLeaveCapture: true, 120 | onMouseMoveCapture: true, 121 | onMouseOutCapture: true, 122 | onMouseOverCapture: true, 123 | onMouseUpCapture: true, 124 | onSelectCapture: true, 125 | onTouchCancelCapture: true, 126 | onTouchEndCapture: true, 127 | onTouchMoveCapture: true, 128 | onTouchStartCapture: true, 129 | onScrollCapture: true, 130 | onWheelCapture: true, 131 | onAbortCapture: true, 132 | onCanPlayCapture: true, 133 | onCanPlayThroughCapture: true, 134 | onDurationChangeCapture: true, 135 | onEmptiedCapture: true, 136 | onEncryptedCapture: true, 137 | onEndedCapture: true, 138 | onErrorCapture: true, 139 | onLoadedDataCapture: true, 140 | onLoadedMetadataCapture: true, 141 | onLoadStartCapture: true, 142 | onPauseCapture: true, 143 | onPlayCapture: true, 144 | onPlayingCapture: true, 145 | onProgressCapture: true, 146 | onRateChangeCapture: true, 147 | onSeekedCapture: true, 148 | onSeekingCapture: true, 149 | onStalledCapture: true, 150 | onSuspendCapture: true, 151 | onTimeUpdateCapture: true, 152 | onVolumeChangeCapture: true, 153 | onWaitingCapture: true, 154 | onLoadCapture: true, 155 | onAnimationStartCapture: true, 156 | onAnimationEndCapture: true, 157 | onAnimationIterationCapture: true, 158 | onTransitionEndCapture: true, 159 | }; 160 | 161 | /* From HTMLDOMPropertyConfig */ 162 | const htmlProps = { 163 | /** 164 | * Standard Properties 165 | */ 166 | accept: true, 167 | acceptCharset: true, 168 | accessKey: true, 169 | action: true, 170 | allowFullScreen: true, 171 | allowTransparency: true, 172 | alt: true, 173 | // specifies target context for links with `preload` type 174 | as: true, 175 | async: true, 176 | autoComplete: true, 177 | // autoFocus is polyfilled/normalized by AutoFocusUtils 178 | // autoFocus: true, 179 | autoPlay: true, 180 | capture: true, 181 | cellPadding: true, 182 | cellSpacing: true, 183 | charSet: true, 184 | challenge: true, 185 | checked: true, 186 | cite: true, 187 | classID: true, 188 | className: true, 189 | cols: true, 190 | colSpan: true, 191 | content: true, 192 | contentEditable: true, 193 | contextMenu: true, 194 | controls: true, 195 | coords: true, 196 | crossOrigin: true, 197 | data: true, // For `` acts as `src`. 198 | dateTime: true, 199 | default: true, 200 | defer: true, 201 | dir: true, 202 | disabled: true, 203 | download: true, 204 | draggable: true, 205 | encType: true, 206 | form: true, 207 | formAction: true, 208 | formEncType: true, 209 | formMethod: true, 210 | formNoValidate: true, 211 | formTarget: true, 212 | frameBorder: true, 213 | headers: true, 214 | height: true, 215 | hidden: true, 216 | high: true, 217 | href: true, 218 | hrefLang: true, 219 | htmlFor: true, 220 | httpEquiv: true, 221 | icon: true, 222 | id: true, 223 | inputMode: true, 224 | integrity: true, 225 | is: true, 226 | keyParams: true, 227 | keyType: true, 228 | kind: true, 229 | label: true, 230 | lang: true, 231 | list: true, 232 | loop: true, 233 | low: true, 234 | manifest: true, 235 | marginHeight: true, 236 | marginWidth: true, 237 | max: true, 238 | maxLength: true, 239 | media: true, 240 | mediaGroup: true, 241 | method: true, 242 | min: true, 243 | minLength: true, 244 | // Caution; `option.selected` is not updated if `select.multiple` is 245 | // disabled with `removeAttribute`. 246 | multiple: true, 247 | muted: true, 248 | name: true, 249 | nonce: true, 250 | noValidate: true, 251 | open: true, 252 | optimum: true, 253 | pattern: true, 254 | placeholder: true, 255 | playsInline: true, 256 | poster: true, 257 | preload: true, 258 | profile: true, 259 | radioGroup: true, 260 | readOnly: true, 261 | referrerPolicy: true, 262 | rel: true, 263 | required: true, 264 | reversed: true, 265 | role: true, 266 | rows: true, 267 | rowSpan: true, 268 | sandbox: true, 269 | scope: true, 270 | scoped: true, 271 | scrolling: true, 272 | seamless: true, 273 | selected: true, 274 | shape: true, 275 | size: true, 276 | sizes: true, 277 | span: true, 278 | spellCheck: true, 279 | src: true, 280 | srcDoc: true, 281 | srcLang: true, 282 | srcSet: true, 283 | start: true, 284 | step: true, 285 | style: true, 286 | summary: true, 287 | tabIndex: true, 288 | target: true, 289 | title: true, 290 | // Setting .type throws on non- tags 291 | type: true, 292 | useMap: true, 293 | value: true, 294 | width: true, 295 | wmode: true, 296 | wrap: true, 297 | 298 | /** 299 | * RDFa Properties 300 | */ 301 | about: true, 302 | datatype: true, 303 | inlist: true, 304 | prefix: true, 305 | // property is also supported for OpenGraph in meta tags. 306 | property: true, 307 | resource: true, 308 | typeof: true, 309 | vocab: true, 310 | 311 | /** 312 | * Non-standard Properties 313 | */ 314 | // autoCapitalize and autoCorrect are supported in Mobile Safari for 315 | // keyboard hints. 316 | autoCapitalize: true, 317 | autoCorrect: true, 318 | // autoSave allows WebKit/Blink to persist values of input fields on page reloads 319 | autoSave: true, 320 | // color is for Safari mask-icon link 321 | color: true, 322 | // itemProp, itemScope, itemType are for 323 | // Microdata support. See http://schema.org/docs/gs.html 324 | itemProp: true, 325 | itemScope: true, 326 | itemType: true, 327 | // itemID and itemRef are for Microdata support as well but 328 | // only specified in the WHATWG spec document. See 329 | // https://html.spec.whatwg.org/multipage/microdata.html#microdata-dom-api 330 | itemID: true, 331 | itemRef: true, 332 | // results show looking glass icon and recent searches on input 333 | // search fields in WebKit/Blink 334 | results: true, 335 | // IE-only attribute that specifies security restrictions on an iframe 336 | // as an alternative to the sandbox attribute on IE<10 337 | security: true, 338 | // IE-only attribute that controls focus behavior 339 | unselectable: 0, 340 | }; 341 | 342 | const svgProps = { 343 | accentHeight: true, 344 | accumulate: true, 345 | additive: true, 346 | alignmentBaseline: true, 347 | allowReorder: true, 348 | alphabetic: true, 349 | amplitude: true, 350 | arabicForm: true, 351 | ascent: true, 352 | attributeName: true, 353 | attributeType: true, 354 | autoReverse: true, 355 | azimuth: true, 356 | baseFrequency: true, 357 | baseProfile: true, 358 | baselineShift: true, 359 | bbox: true, 360 | begin: true, 361 | bias: true, 362 | by: true, 363 | calcMode: true, 364 | capHeight: true, 365 | clip: true, 366 | clipPath: true, 367 | clipRule: true, 368 | clipPathUnits: true, 369 | colorInterpolation: true, 370 | colorInterpolationFilters: true, 371 | colorProfile: true, 372 | colorRendering: true, 373 | contentScriptType: true, 374 | contentStyleType: true, 375 | cursor: true, 376 | cx: true, 377 | cy: true, 378 | d: true, 379 | decelerate: true, 380 | descent: true, 381 | diffuseConstant: true, 382 | direction: true, 383 | display: true, 384 | divisor: true, 385 | dominantBaseline: true, 386 | dur: true, 387 | dx: true, 388 | dy: true, 389 | edgeMode: true, 390 | elevation: true, 391 | enableBackground: true, 392 | end: true, 393 | exponent: true, 394 | externalResourcesRequired: true, 395 | fill: true, 396 | fillOpacity: true, 397 | fillRule: true, 398 | filter: true, 399 | filterRes: true, 400 | filterUnits: true, 401 | floodColor: true, 402 | floodOpacity: true, 403 | focusable: true, 404 | fontFamily: true, 405 | fontSize: true, 406 | fontSizeAdjust: true, 407 | fontStretch: true, 408 | fontStyle: true, 409 | fontVariant: true, 410 | fontWeight: true, 411 | format: true, 412 | from: true, 413 | fx: true, 414 | fy: true, 415 | g1: true, 416 | g2: true, 417 | glyphName: true, 418 | glyphOrientationHorizontal: true, 419 | glyphOrientationVertical: true, 420 | glyphRef: true, 421 | gradientTransform: true, 422 | gradientUnits: true, 423 | hanging: true, 424 | horizAdvX: true, 425 | horizOriginX: true, 426 | ideographic: true, 427 | imageRendering: true, 428 | in: true, 429 | in2: true, 430 | intercept: true, 431 | k: true, 432 | k1: true, 433 | k2: true, 434 | k3: true, 435 | k4: true, 436 | kernelMatrix: true, 437 | kernelUnitLength: true, 438 | kerning: true, 439 | keyPoints: true, 440 | keySplines: true, 441 | keyTimes: true, 442 | lengthAdjust: true, 443 | letterSpacing: true, 444 | lightingColor: true, 445 | limitingConeAngle: true, 446 | local: true, 447 | markerEnd: true, 448 | markerMid: true, 449 | markerStart: true, 450 | markerHeight: true, 451 | markerUnits: true, 452 | markerWidth: true, 453 | mask: true, 454 | maskContentUnits: true, 455 | maskUnits: true, 456 | mathematical: true, 457 | mode: true, 458 | numOctaves: true, 459 | offset: true, 460 | opacity: true, 461 | operator: true, 462 | order: true, 463 | orient: true, 464 | orientation: true, 465 | origin: true, 466 | overflow: true, 467 | overlinePosition: true, 468 | overlineThickness: true, 469 | paintOrder: true, 470 | panose1: true, 471 | pathLength: true, 472 | patternContentUnits: true, 473 | patternTransform: true, 474 | patternUnits: true, 475 | pointerEvents: true, 476 | points: true, 477 | pointsAtX: true, 478 | pointsAtY: true, 479 | pointsAtZ: true, 480 | preserveAlpha: true, 481 | preserveAspectRatio: true, 482 | primitiveUnits: true, 483 | r: true, 484 | radius: true, 485 | refX: true, 486 | refY: true, 487 | renderingIntent: true, 488 | repeatCount: true, 489 | repeatDur: true, 490 | requiredExtensions: true, 491 | requiredFeatures: true, 492 | restart: true, 493 | result: true, 494 | rotate: true, 495 | rx: true, 496 | ry: true, 497 | scale: true, 498 | seed: true, 499 | shapeRendering: true, 500 | slope: true, 501 | spacing: true, 502 | specularConstant: true, 503 | specularExponent: true, 504 | speed: true, 505 | spreadMethod: true, 506 | startOffset: true, 507 | stdDeviation: true, 508 | stemh: true, 509 | stemv: true, 510 | stitchTiles: true, 511 | stopColor: true, 512 | stopOpacity: true, 513 | strikethroughPosition: true, 514 | strikethroughThickness: true, 515 | string: true, 516 | stroke: true, 517 | strokeDasharray: true, 518 | strokeDashoffset: true, 519 | strokeLinecap: true, 520 | strokeLinejoin: true, 521 | strokeMiterlimit: true, 522 | strokeOpacity: true, 523 | strokeWidth: true, 524 | surfaceScale: true, 525 | systemLanguage: true, 526 | tableValues: true, 527 | targetX: true, 528 | targetY: true, 529 | textAnchor: true, 530 | textDecoration: true, 531 | textRendering: true, 532 | textLength: true, 533 | to: true, 534 | transform: true, 535 | u1: true, 536 | u2: true, 537 | underlinePosition: true, 538 | underlineThickness: true, 539 | unicode: true, 540 | unicodeBidi: true, 541 | unicodeRange: true, 542 | unitsPerEm: true, 543 | vAlphabetic: true, 544 | vHanging: true, 545 | vIdeographic: true, 546 | vMathematical: true, 547 | values: true, 548 | vectorEffect: true, 549 | version: true, 550 | vertAdvY: true, 551 | vertOriginX: true, 552 | vertOriginY: true, 553 | viewBox: true, 554 | viewTarget: true, 555 | visibility: true, 556 | widths: true, 557 | wordSpacing: true, 558 | writingMode: true, 559 | x: true, 560 | xHeight: true, 561 | x1: true, 562 | x2: true, 563 | xChannelSelector: true, 564 | xlinkActuate: true, 565 | xlinkArcrole: true, 566 | xlinkHref: true, 567 | xlinkRole: true, 568 | xlinkShow: true, 569 | xlinkTitle: true, 570 | xlinkType: true, 571 | xmlBase: true, 572 | xmlns: true, 573 | xmlnsXlink: true, 574 | xmlLang: true, 575 | xmlSpace: true, 576 | y: true, 577 | y1: true, 578 | y2: true, 579 | yChannelSelector: true, 580 | z: true, 581 | zoomAndPan: true, 582 | }; 583 | 584 | /* From DOMProperty */ 585 | const ATTRIBUTE_NAME_START_CHAR = ':A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD'; 586 | const ATTRIBUTE_NAME_CHAR = `${ATTRIBUTE_NAME_START_CHAR}\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040`; 587 | const isCustomAttribute = RegExp.prototype.test.bind( 588 | new RegExp(`^(data|aria)-[${ATTRIBUTE_NAME_CHAR}]*$`), 589 | ); 590 | 591 | const hasOwnProperty: (name: string) => boolean = {}.hasOwnProperty; 592 | export default (name: string) => ( 593 | hasOwnProperty.call(htmlProps, name) || 594 | hasOwnProperty.call(svgProps, name) || 595 | isCustomAttribute(name.toLowerCase()) || 596 | hasOwnProperty.call(reactProps, name) 597 | ); 598 | -------------------------------------------------------------------------------- /examples/passed-props/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1: 6 | version "1.0.9" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" 8 | 9 | accepts@~1.3.3: 10 | version "1.3.3" 11 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.3.tgz#c3ca7434938648c3e0d9c1e328dd68b622c284ca" 12 | dependencies: 13 | mime-types "~2.1.11" 14 | negotiator "0.6.1" 15 | 16 | acorn@^3.0.0: 17 | version "3.3.0" 18 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 19 | 20 | align-text@^0.1.1, align-text@^0.1.3: 21 | version "0.1.4" 22 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 23 | dependencies: 24 | kind-of "^3.0.2" 25 | longest "^1.0.1" 26 | repeat-string "^1.5.2" 27 | 28 | alphanum-sort@^1.0.1, alphanum-sort@^1.0.2: 29 | version "1.0.2" 30 | resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3" 31 | 32 | amdefine@>=0.0.4: 33 | version "1.0.1" 34 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 35 | 36 | ansi-regex@^2.0.0: 37 | version "2.1.1" 38 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 39 | 40 | ansi-styles@^2.2.1: 41 | version "2.2.1" 42 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 43 | 44 | anymatch@^1.3.0: 45 | version "1.3.0" 46 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 47 | dependencies: 48 | arrify "^1.0.0" 49 | micromatch "^2.1.5" 50 | 51 | aproba@^1.0.3: 52 | version "1.0.4" 53 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.0.4.tgz#2713680775e7614c8ba186c065d4e2e52d1072c0" 54 | 55 | are-we-there-yet@~1.1.2: 56 | version "1.1.2" 57 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 58 | dependencies: 59 | delegates "^1.0.0" 60 | readable-stream "^2.0.0 || ^1.1.13" 61 | 62 | argparse@^1.0.7: 63 | version "1.0.9" 64 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 65 | dependencies: 66 | sprintf-js "~1.0.2" 67 | 68 | arr-diff@^2.0.0: 69 | version "2.0.0" 70 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 71 | dependencies: 72 | arr-flatten "^1.0.1" 73 | 74 | arr-flatten@^1.0.1: 75 | version "1.0.1" 76 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 77 | 78 | array-flatten@1.1.1: 79 | version "1.1.1" 80 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" 81 | 82 | array-unique@^0.2.1: 83 | version "0.2.1" 84 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 85 | 86 | arrify@^1.0.0: 87 | version "1.0.1" 88 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 89 | 90 | asap@~2.0.3: 91 | version "2.0.5" 92 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.5.tgz#522765b50c3510490e52d7dcfe085ef9ba96958f" 93 | 94 | asn1.js@^4.0.0: 95 | version "4.9.1" 96 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.1.tgz#48ba240b45a9280e94748990ba597d216617fd40" 97 | dependencies: 98 | bn.js "^4.0.0" 99 | inherits "^2.0.1" 100 | minimalistic-assert "^1.0.0" 101 | 102 | asn1@~0.2.3: 103 | version "0.2.3" 104 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 105 | 106 | assert-plus@^0.2.0: 107 | version "0.2.0" 108 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 109 | 110 | assert-plus@^1.0.0: 111 | version "1.0.0" 112 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 113 | 114 | assert@^1.1.1: 115 | version "1.4.1" 116 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 117 | dependencies: 118 | util "0.10.3" 119 | 120 | async-each@^1.0.0: 121 | version "1.0.1" 122 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 123 | 124 | async@^0.9.0: 125 | version "0.9.2" 126 | resolved "https://registry.yarnpkg.com/async/-/async-0.9.2.tgz#aea74d5e61c1f899613bf64bda66d4c78f2fd17d" 127 | 128 | async@^1.3.0: 129 | version "1.5.2" 130 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 131 | 132 | async@~0.2.6: 133 | version "0.2.10" 134 | resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1" 135 | 136 | asynckit@^0.4.0: 137 | version "0.4.0" 138 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 139 | 140 | autoprefixer@^6.3.1: 141 | version "6.7.2" 142 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-6.7.2.tgz#172ab07b998ae9b957530928a59a40be54a45023" 143 | dependencies: 144 | browserslist "^1.7.1" 145 | caniuse-db "^1.0.30000618" 146 | normalize-range "^0.1.2" 147 | num2fraction "^1.2.2" 148 | postcss "^5.2.11" 149 | postcss-value-parser "^3.2.3" 150 | 151 | aws-sign2@~0.6.0: 152 | version "0.6.0" 153 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 154 | 155 | aws4@^1.2.1: 156 | version "1.5.0" 157 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.5.0.tgz#0a29ffb79c31c9e712eeb087e8e7a64b4a56d755" 158 | 159 | babel-code-frame@^6.11.0, babel-code-frame@^6.22.0: 160 | version "6.22.0" 161 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 162 | dependencies: 163 | chalk "^1.1.0" 164 | esutils "^2.0.2" 165 | js-tokens "^3.0.0" 166 | 167 | babel-core@^6.22.0, babel-core@^6.7.6: 168 | version "6.22.1" 169 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.22.1.tgz#9c5fd658ba1772d28d721f6d25d968fc7ae21648" 170 | dependencies: 171 | babel-code-frame "^6.22.0" 172 | babel-generator "^6.22.0" 173 | babel-helpers "^6.22.0" 174 | babel-messages "^6.22.0" 175 | babel-register "^6.22.0" 176 | babel-runtime "^6.22.0" 177 | babel-template "^6.22.0" 178 | babel-traverse "^6.22.1" 179 | babel-types "^6.22.0" 180 | babylon "^6.11.0" 181 | convert-source-map "^1.1.0" 182 | debug "^2.1.1" 183 | json5 "^0.5.0" 184 | lodash "^4.2.0" 185 | minimatch "^3.0.2" 186 | path-is-absolute "^1.0.0" 187 | private "^0.1.6" 188 | slash "^1.0.0" 189 | source-map "^0.5.0" 190 | 191 | babel-generator@^6.22.0: 192 | version "6.22.0" 193 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.22.0.tgz#d642bf4961911a8adc7c692b0c9297f325cda805" 194 | dependencies: 195 | babel-messages "^6.22.0" 196 | babel-runtime "^6.22.0" 197 | babel-types "^6.22.0" 198 | detect-indent "^4.0.0" 199 | jsesc "^1.3.0" 200 | lodash "^4.2.0" 201 | source-map "^0.5.0" 202 | 203 | babel-helper-bindify-decorators@^6.22.0: 204 | version "6.22.0" 205 | resolved "https://registry.yarnpkg.com/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.22.0.tgz#d7f5bc261275941ac62acfc4e20dacfb8a3fe952" 206 | dependencies: 207 | babel-runtime "^6.22.0" 208 | babel-traverse "^6.22.0" 209 | babel-types "^6.22.0" 210 | 211 | babel-helper-builder-binary-assignment-operator-visitor@^6.22.0: 212 | version "6.22.0" 213 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.22.0.tgz#29df56be144d81bdeac08262bfa41d2c5e91cdcd" 214 | dependencies: 215 | babel-helper-explode-assignable-expression "^6.22.0" 216 | babel-runtime "^6.22.0" 217 | babel-types "^6.22.0" 218 | 219 | babel-helper-builder-react-jsx@^6.22.0: 220 | version "6.22.0" 221 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.22.0.tgz#aafb31913e47761fd4d0b6987756a144a65fca0d" 222 | dependencies: 223 | babel-runtime "^6.22.0" 224 | babel-types "^6.22.0" 225 | esutils "^2.0.0" 226 | lodash "^4.2.0" 227 | 228 | babel-helper-call-delegate@^6.22.0: 229 | version "6.22.0" 230 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.22.0.tgz#119921b56120f17e9dae3f74b4f5cc7bcc1b37ef" 231 | dependencies: 232 | babel-helper-hoist-variables "^6.22.0" 233 | babel-runtime "^6.22.0" 234 | babel-traverse "^6.22.0" 235 | babel-types "^6.22.0" 236 | 237 | babel-helper-define-map@^6.22.0: 238 | version "6.22.0" 239 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.22.0.tgz#9544e9502b2d6dfe7d00ff60e82bd5a7a89e95b7" 240 | dependencies: 241 | babel-helper-function-name "^6.22.0" 242 | babel-runtime "^6.22.0" 243 | babel-types "^6.22.0" 244 | lodash "^4.2.0" 245 | 246 | babel-helper-explode-assignable-expression@^6.22.0: 247 | version "6.22.0" 248 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.22.0.tgz#c97bf76eed3e0bae4048121f2b9dae1a4e7d0478" 249 | dependencies: 250 | babel-runtime "^6.22.0" 251 | babel-traverse "^6.22.0" 252 | babel-types "^6.22.0" 253 | 254 | babel-helper-explode-class@^6.22.0: 255 | version "6.22.0" 256 | resolved "https://registry.yarnpkg.com/babel-helper-explode-class/-/babel-helper-explode-class-6.22.0.tgz#646304924aa6388a516843ba7f1855ef8dfeb69b" 257 | dependencies: 258 | babel-helper-bindify-decorators "^6.22.0" 259 | babel-runtime "^6.22.0" 260 | babel-traverse "^6.22.0" 261 | babel-types "^6.22.0" 262 | 263 | babel-helper-function-name@^6.22.0: 264 | version "6.22.0" 265 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.22.0.tgz#51f1bdc4bb89b15f57a9b249f33d742816dcbefc" 266 | dependencies: 267 | babel-helper-get-function-arity "^6.22.0" 268 | babel-runtime "^6.22.0" 269 | babel-template "^6.22.0" 270 | babel-traverse "^6.22.0" 271 | babel-types "^6.22.0" 272 | 273 | babel-helper-get-function-arity@^6.22.0: 274 | version "6.22.0" 275 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.22.0.tgz#0beb464ad69dc7347410ac6ade9f03a50634f5ce" 276 | dependencies: 277 | babel-runtime "^6.22.0" 278 | babel-types "^6.22.0" 279 | 280 | babel-helper-hoist-variables@^6.22.0: 281 | version "6.22.0" 282 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.22.0.tgz#3eacbf731d80705845dd2e9718f600cfb9b4ba72" 283 | dependencies: 284 | babel-runtime "^6.22.0" 285 | babel-types "^6.22.0" 286 | 287 | babel-helper-optimise-call-expression@^6.22.0: 288 | version "6.22.0" 289 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.22.0.tgz#f8d5d4b40a6e2605a6a7f9d537b581bea3756d15" 290 | dependencies: 291 | babel-runtime "^6.22.0" 292 | babel-types "^6.22.0" 293 | 294 | babel-helper-regex@^6.22.0: 295 | version "6.22.0" 296 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.22.0.tgz#79f532be1647b1f0ee3474b5f5c3da58001d247d" 297 | dependencies: 298 | babel-runtime "^6.22.0" 299 | babel-types "^6.22.0" 300 | lodash "^4.2.0" 301 | 302 | babel-helper-remap-async-to-generator@^6.22.0: 303 | version "6.22.0" 304 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.22.0.tgz#2186ae73278ed03b8b15ced089609da981053383" 305 | dependencies: 306 | babel-helper-function-name "^6.22.0" 307 | babel-runtime "^6.22.0" 308 | babel-template "^6.22.0" 309 | babel-traverse "^6.22.0" 310 | babel-types "^6.22.0" 311 | 312 | babel-helper-replace-supers@^6.22.0: 313 | version "6.22.0" 314 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.22.0.tgz#1fcee2270657548908c34db16bcc345f9850cf42" 315 | dependencies: 316 | babel-helper-optimise-call-expression "^6.22.0" 317 | babel-messages "^6.22.0" 318 | babel-runtime "^6.22.0" 319 | babel-template "^6.22.0" 320 | babel-traverse "^6.22.0" 321 | babel-types "^6.22.0" 322 | 323 | babel-helpers@^6.22.0: 324 | version "6.22.0" 325 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.22.0.tgz#d275f55f2252b8101bff07bc0c556deda657392c" 326 | dependencies: 327 | babel-runtime "^6.22.0" 328 | babel-template "^6.22.0" 329 | 330 | babel-loader@^6.2.4: 331 | version "6.2.10" 332 | resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-6.2.10.tgz#adefc2b242320cd5d15e65b31cea0e8b1b02d4b0" 333 | dependencies: 334 | find-cache-dir "^0.1.1" 335 | loader-utils "^0.2.11" 336 | mkdirp "^0.5.1" 337 | object-assign "^4.0.1" 338 | 339 | babel-messages@^6.22.0: 340 | version "6.22.0" 341 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.22.0.tgz#36066a214f1217e4ed4164867669ecb39e3ea575" 342 | dependencies: 343 | babel-runtime "^6.22.0" 344 | 345 | babel-plugin-check-es2015-constants@^6.22.0: 346 | version "6.22.0" 347 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 348 | dependencies: 349 | babel-runtime "^6.22.0" 350 | 351 | babel-plugin-syntax-async-functions@^6.8.0: 352 | version "6.13.0" 353 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 354 | 355 | babel-plugin-syntax-async-generators@^6.5.0: 356 | version "6.13.0" 357 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a" 358 | 359 | babel-plugin-syntax-class-properties@^6.8.0: 360 | version "6.13.0" 361 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 362 | 363 | babel-plugin-syntax-decorators@^6.13.0: 364 | version "6.13.0" 365 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b" 366 | 367 | babel-plugin-syntax-dynamic-import@^6.18.0: 368 | version "6.18.0" 369 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da" 370 | 371 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 372 | version "6.13.0" 373 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 374 | 375 | babel-plugin-syntax-flow@^6.18.0, babel-plugin-syntax-flow@^6.3.13, babel-plugin-syntax-flow@^6.5.0: 376 | version "6.18.0" 377 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 378 | 379 | babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0: 380 | version "6.18.0" 381 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 382 | 383 | babel-plugin-syntax-object-rest-spread@^6.8.0: 384 | version "6.13.0" 385 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 386 | 387 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 388 | version "6.22.0" 389 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 390 | 391 | babel-plugin-transform-async-generator-functions@^6.22.0: 392 | version "6.22.0" 393 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.22.0.tgz#a720a98153a7596f204099cd5409f4b3c05bab46" 394 | dependencies: 395 | babel-helper-remap-async-to-generator "^6.22.0" 396 | babel-plugin-syntax-async-generators "^6.5.0" 397 | babel-runtime "^6.22.0" 398 | 399 | babel-plugin-transform-async-to-generator@^6.22.0: 400 | version "6.22.0" 401 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.22.0.tgz#194b6938ec195ad36efc4c33a971acf00d8cd35e" 402 | dependencies: 403 | babel-helper-remap-async-to-generator "^6.22.0" 404 | babel-plugin-syntax-async-functions "^6.8.0" 405 | babel-runtime "^6.22.0" 406 | 407 | babel-plugin-transform-class-properties@^6.22.0: 408 | version "6.22.0" 409 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.22.0.tgz#aa78f8134495c7de06c097118ba061844e1dc1d8" 410 | dependencies: 411 | babel-helper-function-name "^6.22.0" 412 | babel-plugin-syntax-class-properties "^6.8.0" 413 | babel-runtime "^6.22.0" 414 | babel-template "^6.22.0" 415 | 416 | babel-plugin-transform-decorators@^6.22.0: 417 | version "6.22.0" 418 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.22.0.tgz#c03635b27a23b23b7224f49232c237a73988d27c" 419 | dependencies: 420 | babel-helper-explode-class "^6.22.0" 421 | babel-plugin-syntax-decorators "^6.13.0" 422 | babel-runtime "^6.22.0" 423 | babel-template "^6.22.0" 424 | babel-types "^6.22.0" 425 | 426 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 427 | version "6.22.0" 428 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 429 | dependencies: 430 | babel-runtime "^6.22.0" 431 | 432 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 433 | version "6.22.0" 434 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 435 | dependencies: 436 | babel-runtime "^6.22.0" 437 | 438 | babel-plugin-transform-es2015-block-scoping@^6.22.0: 439 | version "6.22.0" 440 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.22.0.tgz#00d6e3a0bebdcfe7536b9d653b44a9141e63e47e" 441 | dependencies: 442 | babel-runtime "^6.22.0" 443 | babel-template "^6.22.0" 444 | babel-traverse "^6.22.0" 445 | babel-types "^6.22.0" 446 | lodash "^4.2.0" 447 | 448 | babel-plugin-transform-es2015-classes@^6.22.0: 449 | version "6.22.0" 450 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.22.0.tgz#54d44998fd823d9dca15292324161c331c1b6f14" 451 | dependencies: 452 | babel-helper-define-map "^6.22.0" 453 | babel-helper-function-name "^6.22.0" 454 | babel-helper-optimise-call-expression "^6.22.0" 455 | babel-helper-replace-supers "^6.22.0" 456 | babel-messages "^6.22.0" 457 | babel-runtime "^6.22.0" 458 | babel-template "^6.22.0" 459 | babel-traverse "^6.22.0" 460 | babel-types "^6.22.0" 461 | 462 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 463 | version "6.22.0" 464 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.22.0.tgz#7c383e9629bba4820c11b0425bdd6290f7f057e7" 465 | dependencies: 466 | babel-runtime "^6.22.0" 467 | babel-template "^6.22.0" 468 | 469 | babel-plugin-transform-es2015-destructuring@^6.22.0: 470 | version "6.22.0" 471 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.22.0.tgz#8e0af2f885a0b2cf999d47c4c1dd23ce88cfa4c6" 472 | dependencies: 473 | babel-runtime "^6.22.0" 474 | 475 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 476 | version "6.22.0" 477 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.22.0.tgz#672397031c21610d72dd2bbb0ba9fb6277e1c36b" 478 | dependencies: 479 | babel-runtime "^6.22.0" 480 | babel-types "^6.22.0" 481 | 482 | babel-plugin-transform-es2015-for-of@^6.22.0: 483 | version "6.22.0" 484 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.22.0.tgz#180467ad63aeea592a1caeee4bf1c8b3e2616265" 485 | dependencies: 486 | babel-runtime "^6.22.0" 487 | 488 | babel-plugin-transform-es2015-function-name@^6.22.0: 489 | version "6.22.0" 490 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.22.0.tgz#f5fcc8b09093f9a23c76ac3d9e392c3ec4b77104" 491 | dependencies: 492 | babel-helper-function-name "^6.22.0" 493 | babel-runtime "^6.22.0" 494 | babel-types "^6.22.0" 495 | 496 | babel-plugin-transform-es2015-literals@^6.22.0: 497 | version "6.22.0" 498 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 499 | dependencies: 500 | babel-runtime "^6.22.0" 501 | 502 | babel-plugin-transform-es2015-modules-amd@^6.22.0: 503 | version "6.22.0" 504 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.22.0.tgz#bf69cd34889a41c33d90dfb740e0091ccff52f21" 505 | dependencies: 506 | babel-plugin-transform-es2015-modules-commonjs "^6.22.0" 507 | babel-runtime "^6.22.0" 508 | babel-template "^6.22.0" 509 | 510 | babel-plugin-transform-es2015-modules-commonjs@^6.22.0: 511 | version "6.22.0" 512 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.22.0.tgz#6ca04e22b8e214fb50169730657e7a07dc941145" 513 | dependencies: 514 | babel-plugin-transform-strict-mode "^6.22.0" 515 | babel-runtime "^6.22.0" 516 | babel-template "^6.22.0" 517 | babel-types "^6.22.0" 518 | 519 | babel-plugin-transform-es2015-modules-systemjs@^6.22.0: 520 | version "6.22.0" 521 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.22.0.tgz#810cd0cd025a08383b84236b92c6e31f88e644ad" 522 | dependencies: 523 | babel-helper-hoist-variables "^6.22.0" 524 | babel-runtime "^6.22.0" 525 | babel-template "^6.22.0" 526 | 527 | babel-plugin-transform-es2015-modules-umd@^6.22.0: 528 | version "6.22.0" 529 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.22.0.tgz#60d0ba3bd23258719c64391d9bf492d648dc0fae" 530 | dependencies: 531 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 532 | babel-runtime "^6.22.0" 533 | babel-template "^6.22.0" 534 | 535 | babel-plugin-transform-es2015-object-super@^6.22.0: 536 | version "6.22.0" 537 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.22.0.tgz#daa60e114a042ea769dd53fe528fc82311eb98fc" 538 | dependencies: 539 | babel-helper-replace-supers "^6.22.0" 540 | babel-runtime "^6.22.0" 541 | 542 | babel-plugin-transform-es2015-parameters@^6.22.0: 543 | version "6.22.0" 544 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.22.0.tgz#57076069232019094f27da8c68bb7162fe208dbb" 545 | dependencies: 546 | babel-helper-call-delegate "^6.22.0" 547 | babel-helper-get-function-arity "^6.22.0" 548 | babel-runtime "^6.22.0" 549 | babel-template "^6.22.0" 550 | babel-traverse "^6.22.0" 551 | babel-types "^6.22.0" 552 | 553 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 554 | version "6.22.0" 555 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.22.0.tgz#8ba776e0affaa60bff21e921403b8a652a2ff723" 556 | dependencies: 557 | babel-runtime "^6.22.0" 558 | babel-types "^6.22.0" 559 | 560 | babel-plugin-transform-es2015-spread@^6.22.0: 561 | version "6.22.0" 562 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 563 | dependencies: 564 | babel-runtime "^6.22.0" 565 | 566 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 567 | version "6.22.0" 568 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.22.0.tgz#ab316829e866ee3f4b9eb96939757d19a5bc4593" 569 | dependencies: 570 | babel-helper-regex "^6.22.0" 571 | babel-runtime "^6.22.0" 572 | babel-types "^6.22.0" 573 | 574 | babel-plugin-transform-es2015-template-literals@^6.22.0: 575 | version "6.22.0" 576 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 577 | dependencies: 578 | babel-runtime "^6.22.0" 579 | 580 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 581 | version "6.22.0" 582 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.22.0.tgz#87faf2336d3b6a97f68c4d906b0cd0edeae676e1" 583 | dependencies: 584 | babel-runtime "^6.22.0" 585 | 586 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 587 | version "6.22.0" 588 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.22.0.tgz#8d9cc27e7ee1decfe65454fb986452a04a613d20" 589 | dependencies: 590 | babel-helper-regex "^6.22.0" 591 | babel-runtime "^6.22.0" 592 | regexpu-core "^2.0.0" 593 | 594 | babel-plugin-transform-exponentiation-operator@^6.22.0: 595 | version "6.22.0" 596 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.22.0.tgz#d57c8335281918e54ef053118ce6eb108468084d" 597 | dependencies: 598 | babel-helper-builder-binary-assignment-operator-visitor "^6.22.0" 599 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 600 | babel-runtime "^6.22.0" 601 | 602 | babel-plugin-transform-flow-strip-types@^6.22.0, babel-plugin-transform-flow-strip-types@^6.7.0: 603 | version "6.22.0" 604 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" 605 | dependencies: 606 | babel-plugin-syntax-flow "^6.18.0" 607 | babel-runtime "^6.22.0" 608 | 609 | babel-plugin-transform-object-rest-spread@^6.22.0: 610 | version "6.22.0" 611 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.22.0.tgz#1d419b55e68d2e4f64a5ff3373bd67d73c8e83bc" 612 | dependencies: 613 | babel-plugin-syntax-object-rest-spread "^6.8.0" 614 | babel-runtime "^6.22.0" 615 | 616 | babel-plugin-transform-react-display-name@^6.22.0: 617 | version "6.22.0" 618 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.22.0.tgz#077197520fa8562b8d3da4c3c4b0b1bdd7853f26" 619 | dependencies: 620 | babel-runtime "^6.22.0" 621 | 622 | babel-plugin-transform-react-jsx-self@^6.22.0: 623 | version "6.22.0" 624 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e" 625 | dependencies: 626 | babel-plugin-syntax-jsx "^6.8.0" 627 | babel-runtime "^6.22.0" 628 | 629 | babel-plugin-transform-react-jsx-source@^6.22.0: 630 | version "6.22.0" 631 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" 632 | dependencies: 633 | babel-plugin-syntax-jsx "^6.8.0" 634 | babel-runtime "^6.22.0" 635 | 636 | babel-plugin-transform-react-jsx@^6.22.0: 637 | version "6.22.0" 638 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.22.0.tgz#48556b7dd4c3fe97d1c943bcd54fc3f2561c1817" 639 | dependencies: 640 | babel-helper-builder-react-jsx "^6.22.0" 641 | babel-plugin-syntax-jsx "^6.8.0" 642 | babel-runtime "^6.22.0" 643 | 644 | babel-plugin-transform-regenerator@^6.22.0: 645 | version "6.22.0" 646 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.22.0.tgz#65740593a319c44522157538d690b84094617ea6" 647 | dependencies: 648 | regenerator-transform "0.9.8" 649 | 650 | babel-plugin-transform-strict-mode@^6.22.0: 651 | version "6.22.0" 652 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.22.0.tgz#e008df01340fdc87e959da65991b7e05970c8c7c" 653 | dependencies: 654 | babel-runtime "^6.22.0" 655 | babel-types "^6.22.0" 656 | 657 | babel-preset-es2015@^6.6.0: 658 | version "6.22.0" 659 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.22.0.tgz#af5a98ecb35eb8af764ad8a5a05eb36dc4386835" 660 | dependencies: 661 | babel-plugin-check-es2015-constants "^6.22.0" 662 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 663 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 664 | babel-plugin-transform-es2015-block-scoping "^6.22.0" 665 | babel-plugin-transform-es2015-classes "^6.22.0" 666 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 667 | babel-plugin-transform-es2015-destructuring "^6.22.0" 668 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 669 | babel-plugin-transform-es2015-for-of "^6.22.0" 670 | babel-plugin-transform-es2015-function-name "^6.22.0" 671 | babel-plugin-transform-es2015-literals "^6.22.0" 672 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 673 | babel-plugin-transform-es2015-modules-commonjs "^6.22.0" 674 | babel-plugin-transform-es2015-modules-systemjs "^6.22.0" 675 | babel-plugin-transform-es2015-modules-umd "^6.22.0" 676 | babel-plugin-transform-es2015-object-super "^6.22.0" 677 | babel-plugin-transform-es2015-parameters "^6.22.0" 678 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 679 | babel-plugin-transform-es2015-spread "^6.22.0" 680 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 681 | babel-plugin-transform-es2015-template-literals "^6.22.0" 682 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 683 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 684 | babel-plugin-transform-regenerator "^6.22.0" 685 | 686 | babel-preset-flow@^1.0.0: 687 | version "1.0.0" 688 | resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-1.0.0.tgz#d66f5975c51cf0c7138ced2eef182d51cf585b25" 689 | dependencies: 690 | babel-plugin-syntax-flow "^6.5.0" 691 | babel-plugin-transform-flow-strip-types "^6.7.0" 692 | 693 | babel-preset-react@^6.5.0: 694 | version "6.22.0" 695 | resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.22.0.tgz#7bc97e2d73eec4b980fb6b4e4e0884e81ccdc165" 696 | dependencies: 697 | babel-plugin-syntax-flow "^6.3.13" 698 | babel-plugin-syntax-jsx "^6.3.13" 699 | babel-plugin-transform-flow-strip-types "^6.22.0" 700 | babel-plugin-transform-react-display-name "^6.22.0" 701 | babel-plugin-transform-react-jsx "^6.22.0" 702 | babel-plugin-transform-react-jsx-self "^6.22.0" 703 | babel-plugin-transform-react-jsx-source "^6.22.0" 704 | 705 | babel-preset-stage-2@^6.22.0: 706 | version "6.22.0" 707 | resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.22.0.tgz#ccd565f19c245cade394b21216df704a73b27c07" 708 | dependencies: 709 | babel-plugin-syntax-dynamic-import "^6.18.0" 710 | babel-plugin-transform-class-properties "^6.22.0" 711 | babel-plugin-transform-decorators "^6.22.0" 712 | babel-preset-stage-3 "^6.22.0" 713 | 714 | babel-preset-stage-3@^6.22.0: 715 | version "6.22.0" 716 | resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.22.0.tgz#a4e92bbace7456fafdf651d7a7657ee0bbca9c2e" 717 | dependencies: 718 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 719 | babel-plugin-transform-async-generator-functions "^6.22.0" 720 | babel-plugin-transform-async-to-generator "^6.22.0" 721 | babel-plugin-transform-exponentiation-operator "^6.22.0" 722 | babel-plugin-transform-object-rest-spread "^6.22.0" 723 | 724 | babel-register@^6.22.0: 725 | version "6.22.0" 726 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.22.0.tgz#a61dd83975f9ca4a9e7d6eff3059494cd5ea4c63" 727 | dependencies: 728 | babel-core "^6.22.0" 729 | babel-runtime "^6.22.0" 730 | core-js "^2.4.0" 731 | home-or-tmp "^2.0.0" 732 | lodash "^4.2.0" 733 | mkdirp "^0.5.1" 734 | source-map-support "^0.4.2" 735 | 736 | babel-runtime@^6.18.0, babel-runtime@^6.22.0: 737 | version "6.22.0" 738 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.22.0.tgz#1cf8b4ac67c77a4ddb0db2ae1f74de52ac4ca611" 739 | dependencies: 740 | core-js "^2.4.0" 741 | regenerator-runtime "^0.10.0" 742 | 743 | babel-template@^6.22.0: 744 | version "6.22.0" 745 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.22.0.tgz#403d110905a4626b317a2a1fcb8f3b73204b2edb" 746 | dependencies: 747 | babel-runtime "^6.22.0" 748 | babel-traverse "^6.22.0" 749 | babel-types "^6.22.0" 750 | babylon "^6.11.0" 751 | lodash "^4.2.0" 752 | 753 | babel-traverse@^6.22.0, babel-traverse@^6.22.1: 754 | version "6.22.1" 755 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.22.1.tgz#3b95cd6b7427d6f1f757704908f2fc9748a5f59f" 756 | dependencies: 757 | babel-code-frame "^6.22.0" 758 | babel-messages "^6.22.0" 759 | babel-runtime "^6.22.0" 760 | babel-types "^6.22.0" 761 | babylon "^6.15.0" 762 | debug "^2.2.0" 763 | globals "^9.0.0" 764 | invariant "^2.2.0" 765 | lodash "^4.2.0" 766 | 767 | babel-types@^6.19.0, babel-types@^6.22.0: 768 | version "6.22.0" 769 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.22.0.tgz#2a447e8d0ea25d2512409e4175479fd78cc8b1db" 770 | dependencies: 771 | babel-runtime "^6.22.0" 772 | esutils "^2.0.2" 773 | lodash "^4.2.0" 774 | to-fast-properties "^1.0.1" 775 | 776 | babylon@^6.11.0, babylon@^6.15.0: 777 | version "6.15.0" 778 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.15.0.tgz#ba65cfa1a80e1759b0e89fb562e27dccae70348e" 779 | 780 | balanced-match@^0.4.1, balanced-match@^0.4.2: 781 | version "0.4.2" 782 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 783 | 784 | base64-js@^1.0.2: 785 | version "1.2.0" 786 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1" 787 | 788 | batch@0.5.3: 789 | version "0.5.3" 790 | resolved "https://registry.yarnpkg.com/batch/-/batch-0.5.3.tgz#3f3414f380321743bfc1042f9a83ff1d5824d464" 791 | 792 | bcrypt-pbkdf@^1.0.0: 793 | version "1.0.1" 794 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 795 | dependencies: 796 | tweetnacl "^0.14.3" 797 | 798 | big.js@^3.1.3: 799 | version "3.1.3" 800 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.1.3.tgz#4cada2193652eb3ca9ec8e55c9015669c9806978" 801 | 802 | binary-extensions@^1.0.0: 803 | version "1.8.0" 804 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 805 | 806 | block-stream@*: 807 | version "0.0.9" 808 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 809 | dependencies: 810 | inherits "~2.0.0" 811 | 812 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: 813 | version "4.11.6" 814 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.6.tgz#53344adb14617a13f6e8dd2ce28905d1c0ba3215" 815 | 816 | boom@2.x.x: 817 | version "2.10.1" 818 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 819 | dependencies: 820 | hoek "2.x.x" 821 | 822 | brace-expansion@^1.0.0: 823 | version "1.1.6" 824 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 825 | dependencies: 826 | balanced-match "^0.4.1" 827 | concat-map "0.0.1" 828 | 829 | braces@^1.8.2: 830 | version "1.8.5" 831 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 832 | dependencies: 833 | expand-range "^1.8.1" 834 | preserve "^0.2.0" 835 | repeat-element "^1.1.2" 836 | 837 | brorand@^1.0.1: 838 | version "1.0.7" 839 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.0.7.tgz#6677fa5e4901bdbf9c9ec2a748e28dca407a9bfc" 840 | 841 | browserify-aes@0.4.0: 842 | version "0.4.0" 843 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-0.4.0.tgz#067149b668df31c4b58533e02d01e806d8608e2c" 844 | dependencies: 845 | inherits "^2.0.1" 846 | 847 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 848 | version "1.0.6" 849 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.0.6.tgz#5e7725dbdef1fd5930d4ebab48567ce451c48a0a" 850 | dependencies: 851 | buffer-xor "^1.0.2" 852 | cipher-base "^1.0.0" 853 | create-hash "^1.1.0" 854 | evp_bytestokey "^1.0.0" 855 | inherits "^2.0.1" 856 | 857 | browserify-cipher@^1.0.0: 858 | version "1.0.0" 859 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" 860 | dependencies: 861 | browserify-aes "^1.0.4" 862 | browserify-des "^1.0.0" 863 | evp_bytestokey "^1.0.0" 864 | 865 | browserify-des@^1.0.0: 866 | version "1.0.0" 867 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" 868 | dependencies: 869 | cipher-base "^1.0.1" 870 | des.js "^1.0.0" 871 | inherits "^2.0.1" 872 | 873 | browserify-rsa@^4.0.0: 874 | version "4.0.1" 875 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 876 | dependencies: 877 | bn.js "^4.1.0" 878 | randombytes "^2.0.1" 879 | 880 | browserify-sign@^4.0.0: 881 | version "4.0.0" 882 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.0.tgz#10773910c3c206d5420a46aad8694f820b85968f" 883 | dependencies: 884 | bn.js "^4.1.1" 885 | browserify-rsa "^4.0.0" 886 | create-hash "^1.1.0" 887 | create-hmac "^1.1.2" 888 | elliptic "^6.0.0" 889 | inherits "^2.0.1" 890 | parse-asn1 "^5.0.0" 891 | 892 | browserify-zlib@^0.1.4: 893 | version "0.1.4" 894 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d" 895 | dependencies: 896 | pako "~0.2.0" 897 | 898 | browserslist@^1.0.1, browserslist@^1.5.2, browserslist@^1.7.1: 899 | version "1.7.1" 900 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-1.7.1.tgz#cc9bd193979a2a4b09fdb3df6003fefe48ccefe1" 901 | dependencies: 902 | caniuse-db "^1.0.30000617" 903 | electron-to-chromium "^1.2.1" 904 | 905 | buffer-shims@^1.0.0: 906 | version "1.0.0" 907 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 908 | 909 | buffer-xor@^1.0.2: 910 | version "1.0.3" 911 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 912 | 913 | buffer@^4.3.0, buffer@^4.9.0: 914 | version "4.9.1" 915 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 916 | dependencies: 917 | base64-js "^1.0.2" 918 | ieee754 "^1.1.4" 919 | isarray "^1.0.0" 920 | 921 | builtin-status-codes@^3.0.0: 922 | version "3.0.0" 923 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 924 | 925 | bytes@2.3.0: 926 | version "2.3.0" 927 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.3.0.tgz#d5b680a165b6201739acb611542aabc2d8ceb070" 928 | 929 | camelcase@^1.0.2: 930 | version "1.2.1" 931 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 932 | 933 | caniuse-api@^1.5.2: 934 | version "1.5.3" 935 | resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-1.5.3.tgz#5018e674b51c393e4d50614275dc017e27c4a2a2" 936 | dependencies: 937 | browserslist "^1.0.1" 938 | caniuse-db "^1.0.30000346" 939 | lodash.memoize "^4.1.0" 940 | lodash.uniq "^4.3.0" 941 | 942 | caniuse-db@^1.0.30000346, caniuse-db@^1.0.30000617, caniuse-db@^1.0.30000618: 943 | version "1.0.30000622" 944 | resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000622.tgz#9d9690b577384990a58e33ebb903a14da735e5fd" 945 | 946 | caseless@~0.11.0: 947 | version "0.11.0" 948 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 949 | 950 | center-align@^0.1.1: 951 | version "0.1.3" 952 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 953 | dependencies: 954 | align-text "^0.1.3" 955 | lazy-cache "^1.0.3" 956 | 957 | chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 958 | version "1.1.3" 959 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 960 | dependencies: 961 | ansi-styles "^2.2.1" 962 | escape-string-regexp "^1.0.2" 963 | has-ansi "^2.0.0" 964 | strip-ansi "^3.0.0" 965 | supports-color "^2.0.0" 966 | 967 | chokidar@^1.0.0: 968 | version "1.6.1" 969 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 970 | dependencies: 971 | anymatch "^1.3.0" 972 | async-each "^1.0.0" 973 | glob-parent "^2.0.0" 974 | inherits "^2.0.1" 975 | is-binary-path "^1.0.0" 976 | is-glob "^2.0.0" 977 | path-is-absolute "^1.0.0" 978 | readdirp "^2.0.0" 979 | optionalDependencies: 980 | fsevents "^1.0.0" 981 | 982 | cipher-base@^1.0.0, cipher-base@^1.0.1: 983 | version "1.0.3" 984 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.3.tgz#eeabf194419ce900da3018c207d212f2a6df0a07" 985 | dependencies: 986 | inherits "^2.0.1" 987 | 988 | clap@^1.0.9: 989 | version "1.1.2" 990 | resolved "https://registry.yarnpkg.com/clap/-/clap-1.1.2.tgz#316545bf22229225a2cecaa6824cd2f56a9709ed" 991 | dependencies: 992 | chalk "^1.1.3" 993 | 994 | cliui@^2.1.0: 995 | version "2.1.0" 996 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 997 | dependencies: 998 | center-align "^0.1.1" 999 | right-align "^0.1.1" 1000 | wordwrap "0.0.2" 1001 | 1002 | clone@^1.0.2: 1003 | version "1.0.2" 1004 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" 1005 | 1006 | coa@~1.0.1: 1007 | version "1.0.1" 1008 | resolved "https://registry.yarnpkg.com/coa/-/coa-1.0.1.tgz#7f959346cfc8719e3f7233cd6852854a7c67d8a3" 1009 | dependencies: 1010 | q "^1.1.2" 1011 | 1012 | code-point-at@^1.0.0: 1013 | version "1.1.0" 1014 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1015 | 1016 | color-convert@^1.3.0: 1017 | version "1.9.0" 1018 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 1019 | dependencies: 1020 | color-name "^1.1.1" 1021 | 1022 | color-name@^1.0.0, color-name@^1.1.1: 1023 | version "1.1.1" 1024 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.1.tgz#4b1415304cf50028ea81643643bd82ea05803689" 1025 | 1026 | color-string@^0.3.0: 1027 | version "0.3.0" 1028 | resolved "https://registry.yarnpkg.com/color-string/-/color-string-0.3.0.tgz#27d46fb67025c5c2fa25993bfbf579e47841b991" 1029 | dependencies: 1030 | color-name "^1.0.0" 1031 | 1032 | color@^0.11.0: 1033 | version "0.11.4" 1034 | resolved "https://registry.yarnpkg.com/color/-/color-0.11.4.tgz#6d7b5c74fb65e841cd48792ad1ed5e07b904d764" 1035 | dependencies: 1036 | clone "^1.0.2" 1037 | color-convert "^1.3.0" 1038 | color-string "^0.3.0" 1039 | 1040 | colormin@^1.0.5: 1041 | version "1.1.2" 1042 | resolved "https://registry.yarnpkg.com/colormin/-/colormin-1.1.2.tgz#ea2f7420a72b96881a38aae59ec124a6f7298133" 1043 | dependencies: 1044 | color "^0.11.0" 1045 | css-color-names "0.0.4" 1046 | has "^1.0.1" 1047 | 1048 | colors@~1.1.2: 1049 | version "1.1.2" 1050 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" 1051 | 1052 | combined-stream@^1.0.5, combined-stream@~1.0.5: 1053 | version "1.0.5" 1054 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 1055 | dependencies: 1056 | delayed-stream "~1.0.0" 1057 | 1058 | commander@^2.9.0: 1059 | version "2.9.0" 1060 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 1061 | dependencies: 1062 | graceful-readlink ">= 1.0.0" 1063 | 1064 | commondir@^1.0.1: 1065 | version "1.0.1" 1066 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 1067 | 1068 | compressible@~2.0.8: 1069 | version "2.0.9" 1070 | resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.9.tgz#6daab4e2b599c2770dd9e21e7a891b1c5a755425" 1071 | dependencies: 1072 | mime-db ">= 1.24.0 < 2" 1073 | 1074 | compression@^1.5.2: 1075 | version "1.6.2" 1076 | resolved "https://registry.yarnpkg.com/compression/-/compression-1.6.2.tgz#cceb121ecc9d09c52d7ad0c3350ea93ddd402bc3" 1077 | dependencies: 1078 | accepts "~1.3.3" 1079 | bytes "2.3.0" 1080 | compressible "~2.0.8" 1081 | debug "~2.2.0" 1082 | on-headers "~1.0.1" 1083 | vary "~1.1.0" 1084 | 1085 | concat-map@0.0.1: 1086 | version "0.0.1" 1087 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1088 | 1089 | connect-history-api-fallback@^1.3.0: 1090 | version "1.3.0" 1091 | resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.3.0.tgz#e51d17f8f0ef0db90a64fdb47de3051556e9f169" 1092 | 1093 | console-browserify@^1.1.0: 1094 | version "1.1.0" 1095 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 1096 | dependencies: 1097 | date-now "^0.1.4" 1098 | 1099 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1100 | version "1.1.0" 1101 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1102 | 1103 | constants-browserify@^1.0.0: 1104 | version "1.0.0" 1105 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 1106 | 1107 | content-disposition@0.5.2: 1108 | version "0.5.2" 1109 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" 1110 | 1111 | content-type@~1.0.2: 1112 | version "1.0.2" 1113 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.2.tgz#b7d113aee7a8dd27bd21133c4dc2529df1721eed" 1114 | 1115 | convert-source-map@^1.1.0: 1116 | version "1.3.0" 1117 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.3.0.tgz#e9f3e9c6e2728efc2676696a70eb382f73106a67" 1118 | 1119 | cookie-signature@1.0.6: 1120 | version "1.0.6" 1121 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" 1122 | 1123 | cookie@0.3.1: 1124 | version "0.3.1" 1125 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" 1126 | 1127 | core-js@^1.0.0: 1128 | version "1.2.7" 1129 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 1130 | 1131 | core-js@^2.4.0: 1132 | version "2.4.1" 1133 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 1134 | 1135 | core-util-is@~1.0.0: 1136 | version "1.0.2" 1137 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1138 | 1139 | create-ecdh@^4.0.0: 1140 | version "4.0.0" 1141 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" 1142 | dependencies: 1143 | bn.js "^4.1.0" 1144 | elliptic "^6.0.0" 1145 | 1146 | create-hash@^1.1.0, create-hash@^1.1.1: 1147 | version "1.1.2" 1148 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.2.tgz#51210062d7bb7479f6c65bb41a92208b1d61abad" 1149 | dependencies: 1150 | cipher-base "^1.0.1" 1151 | inherits "^2.0.1" 1152 | ripemd160 "^1.0.0" 1153 | sha.js "^2.3.6" 1154 | 1155 | create-hmac@^1.1.0, create-hmac@^1.1.2: 1156 | version "1.1.4" 1157 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.4.tgz#d3fb4ba253eb8b3f56e39ea2fbcb8af747bd3170" 1158 | dependencies: 1159 | create-hash "^1.1.0" 1160 | inherits "^2.0.1" 1161 | 1162 | cryptiles@2.x.x: 1163 | version "2.0.5" 1164 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1165 | dependencies: 1166 | boom "2.x.x" 1167 | 1168 | crypto-browserify@3.3.0: 1169 | version "3.3.0" 1170 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.3.0.tgz#b9fc75bb4a0ed61dcf1cd5dae96eb30c9c3e506c" 1171 | dependencies: 1172 | browserify-aes "0.4.0" 1173 | pbkdf2-compat "2.0.1" 1174 | ripemd160 "0.2.0" 1175 | sha.js "2.2.6" 1176 | 1177 | crypto-browserify@^3.11.0: 1178 | version "3.11.0" 1179 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.0.tgz#3652a0906ab9b2a7e0c3ce66a408e957a2485522" 1180 | dependencies: 1181 | browserify-cipher "^1.0.0" 1182 | browserify-sign "^4.0.0" 1183 | create-ecdh "^4.0.0" 1184 | create-hash "^1.1.0" 1185 | create-hmac "^1.1.0" 1186 | diffie-hellman "^5.0.0" 1187 | inherits "^2.0.1" 1188 | pbkdf2 "^3.0.3" 1189 | public-encrypt "^4.0.0" 1190 | randombytes "^2.0.0" 1191 | 1192 | css-color-names@0.0.4: 1193 | version "0.0.4" 1194 | resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0" 1195 | 1196 | css-loader@^0.26.1: 1197 | version "0.26.1" 1198 | resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-0.26.1.tgz#2ba7f20131b93597496b3e9bb500785a49cd29ea" 1199 | dependencies: 1200 | babel-code-frame "^6.11.0" 1201 | css-selector-tokenizer "^0.7.0" 1202 | cssnano ">=2.6.1 <4" 1203 | loader-utils "~0.2.2" 1204 | lodash.camelcase "^4.3.0" 1205 | object-assign "^4.0.1" 1206 | postcss "^5.0.6" 1207 | postcss-modules-extract-imports "^1.0.0" 1208 | postcss-modules-local-by-default "^1.0.1" 1209 | postcss-modules-scope "^1.0.0" 1210 | postcss-modules-values "^1.1.0" 1211 | source-list-map "^0.1.4" 1212 | 1213 | css-selector-tokenizer@^0.6.0: 1214 | version "0.6.0" 1215 | resolved "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.6.0.tgz#6445f582c7930d241dcc5007a43d6fcb8f073152" 1216 | dependencies: 1217 | cssesc "^0.1.0" 1218 | fastparse "^1.1.1" 1219 | regexpu-core "^1.0.0" 1220 | 1221 | css-selector-tokenizer@^0.7.0: 1222 | version "0.7.0" 1223 | resolved "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.7.0.tgz#e6988474ae8c953477bf5e7efecfceccd9cf4c86" 1224 | dependencies: 1225 | cssesc "^0.1.0" 1226 | fastparse "^1.1.1" 1227 | regexpu-core "^1.0.0" 1228 | 1229 | cssesc@^0.1.0: 1230 | version "0.1.0" 1231 | resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-0.1.0.tgz#c814903e45623371a0477b40109aaafbeeaddbb4" 1232 | 1233 | "cssnano@>=2.6.1 <4": 1234 | version "3.10.0" 1235 | resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-3.10.0.tgz#4f38f6cea2b9b17fa01490f23f1dc68ea65c1c38" 1236 | dependencies: 1237 | autoprefixer "^6.3.1" 1238 | decamelize "^1.1.2" 1239 | defined "^1.0.0" 1240 | has "^1.0.1" 1241 | object-assign "^4.0.1" 1242 | postcss "^5.0.14" 1243 | postcss-calc "^5.2.0" 1244 | postcss-colormin "^2.1.8" 1245 | postcss-convert-values "^2.3.4" 1246 | postcss-discard-comments "^2.0.4" 1247 | postcss-discard-duplicates "^2.0.1" 1248 | postcss-discard-empty "^2.0.1" 1249 | postcss-discard-overridden "^0.1.1" 1250 | postcss-discard-unused "^2.2.1" 1251 | postcss-filter-plugins "^2.0.0" 1252 | postcss-merge-idents "^2.1.5" 1253 | postcss-merge-longhand "^2.0.1" 1254 | postcss-merge-rules "^2.0.3" 1255 | postcss-minify-font-values "^1.0.2" 1256 | postcss-minify-gradients "^1.0.1" 1257 | postcss-minify-params "^1.0.4" 1258 | postcss-minify-selectors "^2.0.4" 1259 | postcss-normalize-charset "^1.1.0" 1260 | postcss-normalize-url "^3.0.7" 1261 | postcss-ordered-values "^2.1.0" 1262 | postcss-reduce-idents "^2.2.2" 1263 | postcss-reduce-initial "^1.0.0" 1264 | postcss-reduce-transforms "^1.0.3" 1265 | postcss-svgo "^2.1.1" 1266 | postcss-unique-selectors "^2.0.2" 1267 | postcss-value-parser "^3.2.3" 1268 | postcss-zindex "^2.0.1" 1269 | 1270 | csso@~2.3.1: 1271 | version "2.3.1" 1272 | resolved "https://registry.yarnpkg.com/csso/-/csso-2.3.1.tgz#4f8d91a156f2f1c2aebb40b8fb1b5eb83d94d3b9" 1273 | dependencies: 1274 | clap "^1.0.9" 1275 | source-map "^0.5.3" 1276 | 1277 | dashdash@^1.12.0: 1278 | version "1.14.1" 1279 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1280 | dependencies: 1281 | assert-plus "^1.0.0" 1282 | 1283 | date-now@^0.1.4: 1284 | version "0.1.4" 1285 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 1286 | 1287 | debug@^2.1.1, debug@^2.2.0: 1288 | version "2.6.0" 1289 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.0.tgz#bc596bcabe7617f11d9fa15361eded5608b8499b" 1290 | dependencies: 1291 | ms "0.7.2" 1292 | 1293 | debug@~2.2.0: 1294 | version "2.2.0" 1295 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 1296 | dependencies: 1297 | ms "0.7.1" 1298 | 1299 | decamelize@^1.0.0, decamelize@^1.1.2: 1300 | version "1.2.0" 1301 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1302 | 1303 | deep-extend@~0.4.0: 1304 | version "0.4.1" 1305 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 1306 | 1307 | defined@^1.0.0: 1308 | version "1.0.0" 1309 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 1310 | 1311 | delayed-stream@~1.0.0: 1312 | version "1.0.0" 1313 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1314 | 1315 | delegates@^1.0.0: 1316 | version "1.0.0" 1317 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1318 | 1319 | depd@~1.1.0: 1320 | version "1.1.0" 1321 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.0.tgz#e1bd82c6aab6ced965b97b88b17ed3e528ca18c3" 1322 | 1323 | des.js@^1.0.0: 1324 | version "1.0.0" 1325 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" 1326 | dependencies: 1327 | inherits "^2.0.1" 1328 | minimalistic-assert "^1.0.0" 1329 | 1330 | destroy@~1.0.4: 1331 | version "1.0.4" 1332 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 1333 | 1334 | detect-indent@^4.0.0: 1335 | version "4.0.0" 1336 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1337 | dependencies: 1338 | repeating "^2.0.0" 1339 | 1340 | diffie-hellman@^5.0.0: 1341 | version "5.0.2" 1342 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" 1343 | dependencies: 1344 | bn.js "^4.1.0" 1345 | miller-rabin "^4.0.0" 1346 | randombytes "^2.0.0" 1347 | 1348 | domain-browser@^1.1.1: 1349 | version "1.1.7" 1350 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" 1351 | 1352 | ecc-jsbn@~0.1.1: 1353 | version "0.1.1" 1354 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1355 | dependencies: 1356 | jsbn "~0.1.0" 1357 | 1358 | ee-first@1.1.1: 1359 | version "1.1.1" 1360 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 1361 | 1362 | electron-to-chromium@^1.2.1: 1363 | version "1.2.2" 1364 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.2.2.tgz#e41bc9488c88e3cfa1e94bde28e8420d7d47c47c" 1365 | 1366 | elliptic@^6.0.0: 1367 | version "6.3.3" 1368 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.3.3.tgz#5482d9646d54bcb89fd7d994fc9e2e9568876e3f" 1369 | dependencies: 1370 | bn.js "^4.4.0" 1371 | brorand "^1.0.1" 1372 | hash.js "^1.0.0" 1373 | inherits "^2.0.1" 1374 | 1375 | emojis-list@^2.0.0: 1376 | version "2.1.0" 1377 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" 1378 | 1379 | encodeurl@~1.0.1: 1380 | version "1.0.1" 1381 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20" 1382 | 1383 | encoding@^0.1.11: 1384 | version "0.1.12" 1385 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 1386 | dependencies: 1387 | iconv-lite "~0.4.13" 1388 | 1389 | enhanced-resolve@~0.9.0: 1390 | version "0.9.1" 1391 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-0.9.1.tgz#4d6e689b3725f86090927ccc86cd9f1635b89e2e" 1392 | dependencies: 1393 | graceful-fs "^4.1.2" 1394 | memory-fs "^0.2.0" 1395 | tapable "^0.1.8" 1396 | 1397 | errno@^0.1.3: 1398 | version "0.1.4" 1399 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 1400 | dependencies: 1401 | prr "~0.0.0" 1402 | 1403 | escape-html@~1.0.3: 1404 | version "1.0.3" 1405 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 1406 | 1407 | escape-string-regexp@^1.0.2: 1408 | version "1.0.5" 1409 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1410 | 1411 | esprima@^2.6.0: 1412 | version "2.7.3" 1413 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1414 | 1415 | esutils@^2.0.0, esutils@^2.0.2: 1416 | version "2.0.2" 1417 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1418 | 1419 | etag@~1.7.0: 1420 | version "1.7.0" 1421 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.7.0.tgz#03d30b5f67dd6e632d2945d30d6652731a34d5d8" 1422 | 1423 | eventemitter3@1.x.x: 1424 | version "1.2.0" 1425 | resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-1.2.0.tgz#1c86991d816ad1e504750e73874224ecf3bec508" 1426 | 1427 | events@^1.0.0: 1428 | version "1.1.1" 1429 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 1430 | 1431 | eventsource@0.1.6: 1432 | version "0.1.6" 1433 | resolved "https://registry.yarnpkg.com/eventsource/-/eventsource-0.1.6.tgz#0acede849ed7dd1ccc32c811bb11b944d4f29232" 1434 | dependencies: 1435 | original ">=0.0.5" 1436 | 1437 | evp_bytestokey@^1.0.0: 1438 | version "1.0.0" 1439 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.0.tgz#497b66ad9fef65cd7c08a6180824ba1476b66e53" 1440 | dependencies: 1441 | create-hash "^1.1.1" 1442 | 1443 | expand-brackets@^0.1.4: 1444 | version "0.1.5" 1445 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1446 | dependencies: 1447 | is-posix-bracket "^0.1.0" 1448 | 1449 | expand-range@^1.8.1: 1450 | version "1.8.2" 1451 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1452 | dependencies: 1453 | fill-range "^2.1.0" 1454 | 1455 | express@^4.13.3: 1456 | version "4.14.1" 1457 | resolved "https://registry.yarnpkg.com/express/-/express-4.14.1.tgz#646c237f766f148c2120aff073817b9e4d7e0d33" 1458 | dependencies: 1459 | accepts "~1.3.3" 1460 | array-flatten "1.1.1" 1461 | content-disposition "0.5.2" 1462 | content-type "~1.0.2" 1463 | cookie "0.3.1" 1464 | cookie-signature "1.0.6" 1465 | debug "~2.2.0" 1466 | depd "~1.1.0" 1467 | encodeurl "~1.0.1" 1468 | escape-html "~1.0.3" 1469 | etag "~1.7.0" 1470 | finalhandler "0.5.1" 1471 | fresh "0.3.0" 1472 | merge-descriptors "1.0.1" 1473 | methods "~1.1.2" 1474 | on-finished "~2.3.0" 1475 | parseurl "~1.3.1" 1476 | path-to-regexp "0.1.7" 1477 | proxy-addr "~1.1.3" 1478 | qs "6.2.0" 1479 | range-parser "~1.2.0" 1480 | send "0.14.2" 1481 | serve-static "~1.11.2" 1482 | type-is "~1.6.14" 1483 | utils-merge "1.0.0" 1484 | vary "~1.1.0" 1485 | 1486 | extend@~3.0.0: 1487 | version "3.0.0" 1488 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 1489 | 1490 | extglob@^0.3.1: 1491 | version "0.3.2" 1492 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1493 | dependencies: 1494 | is-extglob "^1.0.0" 1495 | 1496 | extsprintf@1.0.2: 1497 | version "1.0.2" 1498 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1499 | 1500 | fastparse@^1.1.1: 1501 | version "1.1.1" 1502 | resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.1.tgz#d1e2643b38a94d7583b479060e6c4affc94071f8" 1503 | 1504 | faye-websocket@^0.10.0: 1505 | version "0.10.0" 1506 | resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.10.0.tgz#4e492f8d04dfb6f89003507f6edbf2d501e7c6f4" 1507 | dependencies: 1508 | websocket-driver ">=0.5.1" 1509 | 1510 | faye-websocket@~0.11.0: 1511 | version "0.11.1" 1512 | resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.1.tgz#f0efe18c4f56e4f40afc7e06c719fd5ee6188f38" 1513 | dependencies: 1514 | websocket-driver ">=0.5.1" 1515 | 1516 | fbjs@^0.8.1, fbjs@^0.8.4: 1517 | version "0.8.9" 1518 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.9.tgz#180247fbd347dcc9004517b904f865400a0c8f14" 1519 | dependencies: 1520 | core-js "^1.0.0" 1521 | isomorphic-fetch "^2.1.1" 1522 | loose-envify "^1.0.0" 1523 | object-assign "^4.1.0" 1524 | promise "^7.1.1" 1525 | setimmediate "^1.0.5" 1526 | ua-parser-js "^0.7.9" 1527 | 1528 | filename-regex@^2.0.0: 1529 | version "2.0.0" 1530 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 1531 | 1532 | fill-range@^2.1.0: 1533 | version "2.2.3" 1534 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1535 | dependencies: 1536 | is-number "^2.1.0" 1537 | isobject "^2.0.0" 1538 | randomatic "^1.1.3" 1539 | repeat-element "^1.1.2" 1540 | repeat-string "^1.5.2" 1541 | 1542 | finalhandler@0.5.1: 1543 | version "0.5.1" 1544 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-0.5.1.tgz#2c400d8d4530935bc232549c5fa385ec07de6fcd" 1545 | dependencies: 1546 | debug "~2.2.0" 1547 | escape-html "~1.0.3" 1548 | on-finished "~2.3.0" 1549 | statuses "~1.3.1" 1550 | unpipe "~1.0.0" 1551 | 1552 | find-cache-dir@^0.1.1: 1553 | version "0.1.1" 1554 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" 1555 | dependencies: 1556 | commondir "^1.0.1" 1557 | mkdirp "^0.5.1" 1558 | pkg-dir "^1.0.0" 1559 | 1560 | find-up@^1.0.0: 1561 | version "1.1.2" 1562 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1563 | dependencies: 1564 | path-exists "^2.0.0" 1565 | pinkie-promise "^2.0.0" 1566 | 1567 | flatten@^1.0.2: 1568 | version "1.0.2" 1569 | resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.2.tgz#dae46a9d78fbe25292258cc1e780a41d95c03782" 1570 | 1571 | for-in@^0.1.5: 1572 | version "0.1.6" 1573 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.6.tgz#c9f96e89bfad18a545af5ec3ed352a1d9e5b4dc8" 1574 | 1575 | for-own@^0.1.4: 1576 | version "0.1.4" 1577 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.4.tgz#0149b41a39088c7515f51ebe1c1386d45f935072" 1578 | dependencies: 1579 | for-in "^0.1.5" 1580 | 1581 | forever-agent@~0.6.1: 1582 | version "0.6.1" 1583 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1584 | 1585 | form-data@~2.1.1: 1586 | version "2.1.2" 1587 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 1588 | dependencies: 1589 | asynckit "^0.4.0" 1590 | combined-stream "^1.0.5" 1591 | mime-types "^2.1.12" 1592 | 1593 | forwarded@~0.1.0: 1594 | version "0.1.0" 1595 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.0.tgz#19ef9874c4ae1c297bcf078fde63a09b66a84363" 1596 | 1597 | fresh@0.3.0: 1598 | version "0.3.0" 1599 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.3.0.tgz#651f838e22424e7566de161d8358caa199f83d4f" 1600 | 1601 | fs.realpath@^1.0.0: 1602 | version "1.0.0" 1603 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1604 | 1605 | fsevents@^1.0.0: 1606 | version "1.0.17" 1607 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.0.17.tgz#8537f3f12272678765b4fd6528c0f1f66f8f4558" 1608 | dependencies: 1609 | nan "^2.3.0" 1610 | node-pre-gyp "^0.6.29" 1611 | 1612 | fstream-ignore@~1.0.5: 1613 | version "1.0.5" 1614 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1615 | dependencies: 1616 | fstream "^1.0.0" 1617 | inherits "2" 1618 | minimatch "^3.0.0" 1619 | 1620 | fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.10: 1621 | version "1.0.10" 1622 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.10.tgz#604e8a92fe26ffd9f6fae30399d4984e1ab22822" 1623 | dependencies: 1624 | graceful-fs "^4.1.2" 1625 | inherits "~2.0.0" 1626 | mkdirp ">=0.5 0" 1627 | rimraf "2" 1628 | 1629 | function-bind@^1.0.2: 1630 | version "1.1.0" 1631 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 1632 | 1633 | gauge@~2.7.1: 1634 | version "2.7.2" 1635 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.2.tgz#15cecc31b02d05345a5d6b0e171cdb3ad2307774" 1636 | dependencies: 1637 | aproba "^1.0.3" 1638 | console-control-strings "^1.0.0" 1639 | has-unicode "^2.0.0" 1640 | object-assign "^4.1.0" 1641 | signal-exit "^3.0.0" 1642 | string-width "^1.0.1" 1643 | strip-ansi "^3.0.1" 1644 | supports-color "^0.2.0" 1645 | wide-align "^1.1.0" 1646 | 1647 | generate-function@^2.0.0: 1648 | version "2.0.0" 1649 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1650 | 1651 | generate-object-property@^1.1.0: 1652 | version "1.2.0" 1653 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1654 | dependencies: 1655 | is-property "^1.0.0" 1656 | 1657 | getpass@^0.1.1: 1658 | version "0.1.6" 1659 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 1660 | dependencies: 1661 | assert-plus "^1.0.0" 1662 | 1663 | glob-base@^0.3.0: 1664 | version "0.3.0" 1665 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1666 | dependencies: 1667 | glob-parent "^2.0.0" 1668 | is-glob "^2.0.0" 1669 | 1670 | glob-parent@^2.0.0: 1671 | version "2.0.0" 1672 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1673 | dependencies: 1674 | is-glob "^2.0.0" 1675 | 1676 | glob@^7.0.5: 1677 | version "7.1.1" 1678 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1679 | dependencies: 1680 | fs.realpath "^1.0.0" 1681 | inflight "^1.0.4" 1682 | inherits "2" 1683 | minimatch "^3.0.2" 1684 | once "^1.3.0" 1685 | path-is-absolute "^1.0.0" 1686 | 1687 | globals@^9.0.0: 1688 | version "9.14.0" 1689 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.14.0.tgz#8859936af0038741263053b39d0e76ca241e4034" 1690 | 1691 | graceful-fs@^4.1.2: 1692 | version "4.1.11" 1693 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1694 | 1695 | "graceful-readlink@>= 1.0.0": 1696 | version "1.0.1" 1697 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1698 | 1699 | har-validator@~2.0.6: 1700 | version "2.0.6" 1701 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 1702 | dependencies: 1703 | chalk "^1.1.1" 1704 | commander "^2.9.0" 1705 | is-my-json-valid "^2.12.4" 1706 | pinkie-promise "^2.0.0" 1707 | 1708 | has-ansi@^2.0.0: 1709 | version "2.0.0" 1710 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1711 | dependencies: 1712 | ansi-regex "^2.0.0" 1713 | 1714 | has-flag@^1.0.0: 1715 | version "1.0.0" 1716 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1717 | 1718 | has-unicode@^2.0.0: 1719 | version "2.0.1" 1720 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1721 | 1722 | has@^1.0.1: 1723 | version "1.0.1" 1724 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1725 | dependencies: 1726 | function-bind "^1.0.2" 1727 | 1728 | hash.js@^1.0.0: 1729 | version "1.0.3" 1730 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.0.3.tgz#1332ff00156c0a0ffdd8236013d07b77a0451573" 1731 | dependencies: 1732 | inherits "^2.0.1" 1733 | 1734 | hawk@~3.1.3: 1735 | version "3.1.3" 1736 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1737 | dependencies: 1738 | boom "2.x.x" 1739 | cryptiles "2.x.x" 1740 | hoek "2.x.x" 1741 | sntp "1.x.x" 1742 | 1743 | hoek@2.x.x: 1744 | version "2.16.3" 1745 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1746 | 1747 | home-or-tmp@^2.0.0: 1748 | version "2.0.0" 1749 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1750 | dependencies: 1751 | os-homedir "^1.0.0" 1752 | os-tmpdir "^1.0.1" 1753 | 1754 | html-comment-regex@^1.1.0: 1755 | version "1.1.1" 1756 | resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.1.tgz#668b93776eaae55ebde8f3ad464b307a4963625e" 1757 | 1758 | http-errors@~1.5.0, http-errors@~1.5.1: 1759 | version "1.5.1" 1760 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.5.1.tgz#788c0d2c1de2c81b9e6e8c01843b6b97eb920750" 1761 | dependencies: 1762 | inherits "2.0.3" 1763 | setprototypeof "1.0.2" 1764 | statuses ">= 1.3.1 < 2" 1765 | 1766 | http-proxy-middleware@~0.17.1: 1767 | version "0.17.3" 1768 | resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-0.17.3.tgz#940382147149b856084f5534752d5b5a8168cd1d" 1769 | dependencies: 1770 | http-proxy "^1.16.2" 1771 | is-glob "^3.1.0" 1772 | lodash "^4.17.2" 1773 | micromatch "^2.3.11" 1774 | 1775 | http-proxy@^1.16.2: 1776 | version "1.16.2" 1777 | resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.16.2.tgz#06dff292952bf64dbe8471fa9df73066d4f37742" 1778 | dependencies: 1779 | eventemitter3 "1.x.x" 1780 | requires-port "1.x.x" 1781 | 1782 | http-signature@~1.1.0: 1783 | version "1.1.1" 1784 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1785 | dependencies: 1786 | assert-plus "^0.2.0" 1787 | jsprim "^1.2.2" 1788 | sshpk "^1.7.0" 1789 | 1790 | https-browserify@0.0.1: 1791 | version "0.0.1" 1792 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82" 1793 | 1794 | iconv-lite@~0.4.13: 1795 | version "0.4.15" 1796 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.15.tgz#fe265a218ac6a57cfe854927e9d04c19825eddeb" 1797 | 1798 | icss-replace-symbols@^1.0.2: 1799 | version "1.0.2" 1800 | resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.0.2.tgz#cb0b6054eb3af6edc9ab1d62d01933e2d4c8bfa5" 1801 | 1802 | ieee754@^1.1.4: 1803 | version "1.1.8" 1804 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 1805 | 1806 | indexes-of@^1.0.1: 1807 | version "1.0.1" 1808 | resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" 1809 | 1810 | indexof@0.0.1: 1811 | version "0.0.1" 1812 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 1813 | 1814 | inflight@^1.0.4: 1815 | version "1.0.6" 1816 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1817 | dependencies: 1818 | once "^1.3.0" 1819 | wrappy "1" 1820 | 1821 | inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1: 1822 | version "2.0.3" 1823 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1824 | 1825 | inherits@2.0.1: 1826 | version "2.0.1" 1827 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 1828 | 1829 | ini@~1.3.0: 1830 | version "1.3.4" 1831 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1832 | 1833 | interpret@^0.6.4: 1834 | version "0.6.6" 1835 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-0.6.6.tgz#fecd7a18e7ce5ca6abfb953e1f86213a49f1625b" 1836 | 1837 | invariant@^2.2.0: 1838 | version "2.2.2" 1839 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1840 | dependencies: 1841 | loose-envify "^1.0.0" 1842 | 1843 | ipaddr.js@1.2.0: 1844 | version "1.2.0" 1845 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.2.0.tgz#8aba49c9192799585bdd643e0ccb50e8ae777ba4" 1846 | 1847 | is-absolute-url@^2.0.0: 1848 | version "2.1.0" 1849 | resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6" 1850 | 1851 | is-binary-path@^1.0.0: 1852 | version "1.0.1" 1853 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1854 | dependencies: 1855 | binary-extensions "^1.0.0" 1856 | 1857 | is-buffer@^1.0.2: 1858 | version "1.1.4" 1859 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b" 1860 | 1861 | is-dotfile@^1.0.0: 1862 | version "1.0.2" 1863 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1864 | 1865 | is-equal-shallow@^0.1.3: 1866 | version "0.1.3" 1867 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1868 | dependencies: 1869 | is-primitive "^2.0.0" 1870 | 1871 | is-extendable@^0.1.1: 1872 | version "0.1.1" 1873 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1874 | 1875 | is-extglob@^1.0.0: 1876 | version "1.0.0" 1877 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1878 | 1879 | is-extglob@^2.1.0: 1880 | version "2.1.1" 1881 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1882 | 1883 | is-finite@^1.0.0: 1884 | version "1.0.2" 1885 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1886 | dependencies: 1887 | number-is-nan "^1.0.0" 1888 | 1889 | is-fullwidth-code-point@^1.0.0: 1890 | version "1.0.0" 1891 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1892 | dependencies: 1893 | number-is-nan "^1.0.0" 1894 | 1895 | is-glob@^2.0.0, is-glob@^2.0.1: 1896 | version "2.0.1" 1897 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1898 | dependencies: 1899 | is-extglob "^1.0.0" 1900 | 1901 | is-glob@^3.1.0: 1902 | version "3.1.0" 1903 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 1904 | dependencies: 1905 | is-extglob "^2.1.0" 1906 | 1907 | is-my-json-valid@^2.12.4: 1908 | version "2.15.0" 1909 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b" 1910 | dependencies: 1911 | generate-function "^2.0.0" 1912 | generate-object-property "^1.1.0" 1913 | jsonpointer "^4.0.0" 1914 | xtend "^4.0.0" 1915 | 1916 | is-number@^2.0.2, is-number@^2.1.0: 1917 | version "2.1.0" 1918 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1919 | dependencies: 1920 | kind-of "^3.0.2" 1921 | 1922 | is-plain-obj@^1.0.0: 1923 | version "1.1.0" 1924 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 1925 | 1926 | is-posix-bracket@^0.1.0: 1927 | version "0.1.1" 1928 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1929 | 1930 | is-primitive@^2.0.0: 1931 | version "2.0.0" 1932 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1933 | 1934 | is-property@^1.0.0: 1935 | version "1.0.2" 1936 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1937 | 1938 | is-stream@^1.0.1: 1939 | version "1.1.0" 1940 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1941 | 1942 | is-svg@^2.0.0: 1943 | version "2.1.0" 1944 | resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-2.1.0.tgz#cf61090da0d9efbcab8722deba6f032208dbb0e9" 1945 | dependencies: 1946 | html-comment-regex "^1.1.0" 1947 | 1948 | is-typedarray@~1.0.0: 1949 | version "1.0.0" 1950 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1951 | 1952 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1953 | version "1.0.0" 1954 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1955 | 1956 | isobject@^2.0.0: 1957 | version "2.1.0" 1958 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1959 | dependencies: 1960 | isarray "1.0.0" 1961 | 1962 | isomorphic-fetch@^2.1.1: 1963 | version "2.2.1" 1964 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" 1965 | dependencies: 1966 | node-fetch "^1.0.1" 1967 | whatwg-fetch ">=0.10.0" 1968 | 1969 | isstream@~0.1.2: 1970 | version "0.1.2" 1971 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1972 | 1973 | jodid25519@^1.0.0: 1974 | version "1.0.2" 1975 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 1976 | dependencies: 1977 | jsbn "~0.1.0" 1978 | 1979 | js-base64@^2.1.9: 1980 | version "2.1.9" 1981 | resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.1.9.tgz#f0e80ae039a4bd654b5f281fc93f04a914a7fcce" 1982 | 1983 | js-tokens@^3.0.0: 1984 | version "3.0.1" 1985 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 1986 | 1987 | js-yaml@~3.7.0: 1988 | version "3.7.0" 1989 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80" 1990 | dependencies: 1991 | argparse "^1.0.7" 1992 | esprima "^2.6.0" 1993 | 1994 | jsbn@~0.1.0: 1995 | version "0.1.0" 1996 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.0.tgz#650987da0dd74f4ebf5a11377a2aa2d273e97dfd" 1997 | 1998 | jsesc@^1.3.0: 1999 | version "1.3.0" 2000 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2001 | 2002 | jsesc@~0.5.0: 2003 | version "0.5.0" 2004 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2005 | 2006 | json-schema@0.2.3: 2007 | version "0.2.3" 2008 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2009 | 2010 | json-stringify-safe@~5.0.1: 2011 | version "5.0.1" 2012 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2013 | 2014 | json3@^3.3.2: 2015 | version "3.3.2" 2016 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 2017 | 2018 | json5@^0.5.0: 2019 | version "0.5.1" 2020 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2021 | 2022 | jsonpointer@^4.0.0: 2023 | version "4.0.1" 2024 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 2025 | 2026 | jsprim@^1.2.2: 2027 | version "1.3.1" 2028 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252" 2029 | dependencies: 2030 | extsprintf "1.0.2" 2031 | json-schema "0.2.3" 2032 | verror "1.3.6" 2033 | 2034 | kind-of@^3.0.2: 2035 | version "3.1.0" 2036 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" 2037 | dependencies: 2038 | is-buffer "^1.0.2" 2039 | 2040 | lazy-cache@^1.0.3: 2041 | version "1.0.4" 2042 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2043 | 2044 | loader-utils@^0.2.11, loader-utils@^0.2.7, loader-utils@~0.2.2: 2045 | version "0.2.16" 2046 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.16.tgz#f08632066ed8282835dff88dfb52704765adee6d" 2047 | dependencies: 2048 | big.js "^3.1.3" 2049 | emojis-list "^2.0.0" 2050 | json5 "^0.5.0" 2051 | object-assign "^4.0.1" 2052 | 2053 | lodash.camelcase@^4.3.0: 2054 | version "4.3.0" 2055 | resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" 2056 | 2057 | lodash.memoize@^4.1.0: 2058 | version "4.1.2" 2059 | resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" 2060 | 2061 | lodash.uniq@^4.3.0: 2062 | version "4.5.0" 2063 | resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" 2064 | 2065 | lodash@^4.17.2, lodash@^4.2.0: 2066 | version "4.17.4" 2067 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2068 | 2069 | longest@^1.0.1: 2070 | version "1.0.1" 2071 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2072 | 2073 | loose-envify@^1.0.0, loose-envify@^1.1.0: 2074 | version "1.3.1" 2075 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2076 | dependencies: 2077 | js-tokens "^3.0.0" 2078 | 2079 | macaddress@^0.2.8: 2080 | version "0.2.8" 2081 | resolved "https://registry.yarnpkg.com/macaddress/-/macaddress-0.2.8.tgz#5904dc537c39ec6dbefeae902327135fa8511f12" 2082 | 2083 | math-expression-evaluator@^1.2.14: 2084 | version "1.2.16" 2085 | resolved "https://registry.yarnpkg.com/math-expression-evaluator/-/math-expression-evaluator-1.2.16.tgz#b357fa1ca9faefb8e48d10c14ef2bcb2d9f0a7c9" 2086 | 2087 | media-typer@0.3.0: 2088 | version "0.3.0" 2089 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 2090 | 2091 | memory-fs@^0.2.0: 2092 | version "0.2.0" 2093 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.2.0.tgz#f2bb25368bc121e391c2520de92969caee0a0290" 2094 | 2095 | memory-fs@~0.3.0: 2096 | version "0.3.0" 2097 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.3.0.tgz#7bcc6b629e3a43e871d7e29aca6ae8a7f15cbb20" 2098 | dependencies: 2099 | errno "^0.1.3" 2100 | readable-stream "^2.0.1" 2101 | 2102 | memory-fs@~0.4.1: 2103 | version "0.4.1" 2104 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" 2105 | dependencies: 2106 | errno "^0.1.3" 2107 | readable-stream "^2.0.1" 2108 | 2109 | merge-descriptors@1.0.1: 2110 | version "1.0.1" 2111 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" 2112 | 2113 | methods@~1.1.2: 2114 | version "1.1.2" 2115 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 2116 | 2117 | micromatch@^2.1.5, micromatch@^2.3.11: 2118 | version "2.3.11" 2119 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2120 | dependencies: 2121 | arr-diff "^2.0.0" 2122 | array-unique "^0.2.1" 2123 | braces "^1.8.2" 2124 | expand-brackets "^0.1.4" 2125 | extglob "^0.3.1" 2126 | filename-regex "^2.0.0" 2127 | is-extglob "^1.0.0" 2128 | is-glob "^2.0.1" 2129 | kind-of "^3.0.2" 2130 | normalize-path "^2.0.1" 2131 | object.omit "^2.0.0" 2132 | parse-glob "^3.0.4" 2133 | regex-cache "^0.4.2" 2134 | 2135 | miller-rabin@^4.0.0: 2136 | version "4.0.0" 2137 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.0.tgz#4a62fb1d42933c05583982f4c716f6fb9e6c6d3d" 2138 | dependencies: 2139 | bn.js "^4.0.0" 2140 | brorand "^1.0.1" 2141 | 2142 | "mime-db@>= 1.24.0 < 2", mime-db@~1.26.0: 2143 | version "1.26.0" 2144 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.26.0.tgz#eaffcd0e4fc6935cf8134da246e2e6c35305adff" 2145 | 2146 | mime-types@^2.1.12, mime-types@~2.1.11, mime-types@~2.1.13, mime-types@~2.1.7: 2147 | version "2.1.14" 2148 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.14.tgz#f7ef7d97583fcaf3b7d282b6f8b5679dab1e94ee" 2149 | dependencies: 2150 | mime-db "~1.26.0" 2151 | 2152 | mime@1.3.4, mime@^1.3.4: 2153 | version "1.3.4" 2154 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53" 2155 | 2156 | minimalistic-assert@^1.0.0: 2157 | version "1.0.0" 2158 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" 2159 | 2160 | minimatch@^3.0.0, minimatch@^3.0.2: 2161 | version "3.0.3" 2162 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 2163 | dependencies: 2164 | brace-expansion "^1.0.0" 2165 | 2166 | minimist@0.0.8, minimist@~0.0.1: 2167 | version "0.0.8" 2168 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2169 | 2170 | minimist@^1.2.0: 2171 | version "1.2.0" 2172 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2173 | 2174 | "mkdirp@>=0.5 0", mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1: 2175 | version "0.5.1" 2176 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2177 | dependencies: 2178 | minimist "0.0.8" 2179 | 2180 | ms@0.7.1: 2181 | version "0.7.1" 2182 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 2183 | 2184 | ms@0.7.2: 2185 | version "0.7.2" 2186 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 2187 | 2188 | nan@^2.3.0: 2189 | version "2.5.1" 2190 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.5.1.tgz#d5b01691253326a97a2bbee9e61c55d8d60351e2" 2191 | 2192 | negotiator@0.6.1: 2193 | version "0.6.1" 2194 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" 2195 | 2196 | node-fetch@^1.0.1: 2197 | version "1.6.3" 2198 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.6.3.tgz#dc234edd6489982d58e8f0db4f695029abcd8c04" 2199 | dependencies: 2200 | encoding "^0.1.11" 2201 | is-stream "^1.0.1" 2202 | 2203 | node-libs-browser@^0.7.0: 2204 | version "0.7.0" 2205 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-0.7.0.tgz#3e272c0819e308935e26674408d7af0e1491b83b" 2206 | dependencies: 2207 | assert "^1.1.1" 2208 | browserify-zlib "^0.1.4" 2209 | buffer "^4.9.0" 2210 | console-browserify "^1.1.0" 2211 | constants-browserify "^1.0.0" 2212 | crypto-browserify "3.3.0" 2213 | domain-browser "^1.1.1" 2214 | events "^1.0.0" 2215 | https-browserify "0.0.1" 2216 | os-browserify "^0.2.0" 2217 | path-browserify "0.0.0" 2218 | process "^0.11.0" 2219 | punycode "^1.2.4" 2220 | querystring-es3 "^0.2.0" 2221 | readable-stream "^2.0.5" 2222 | stream-browserify "^2.0.1" 2223 | stream-http "^2.3.1" 2224 | string_decoder "^0.10.25" 2225 | timers-browserify "^2.0.2" 2226 | tty-browserify "0.0.0" 2227 | url "^0.11.0" 2228 | util "^0.10.3" 2229 | vm-browserify "0.0.4" 2230 | 2231 | node-libs-browser@^1.0.0: 2232 | version "1.1.1" 2233 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-1.1.1.tgz#2a38243abedd7dffcd07a97c9aca5668975a6fea" 2234 | dependencies: 2235 | assert "^1.1.1" 2236 | browserify-zlib "^0.1.4" 2237 | buffer "^4.3.0" 2238 | console-browserify "^1.1.0" 2239 | constants-browserify "^1.0.0" 2240 | crypto-browserify "^3.11.0" 2241 | domain-browser "^1.1.1" 2242 | events "^1.0.0" 2243 | https-browserify "0.0.1" 2244 | os-browserify "^0.2.0" 2245 | path-browserify "0.0.0" 2246 | process "^0.11.0" 2247 | punycode "^1.2.4" 2248 | querystring-es3 "^0.2.0" 2249 | readable-stream "^2.0.5" 2250 | stream-browserify "^2.0.1" 2251 | stream-http "^2.3.1" 2252 | string_decoder "^0.10.25" 2253 | timers-browserify "^1.4.2" 2254 | tty-browserify "0.0.0" 2255 | url "^0.11.0" 2256 | util "^0.10.3" 2257 | vm-browserify "0.0.4" 2258 | 2259 | node-pre-gyp@^0.6.29: 2260 | version "0.6.33" 2261 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.33.tgz#640ac55198f6a925972e0c16c4ac26a034d5ecc9" 2262 | dependencies: 2263 | mkdirp "~0.5.1" 2264 | nopt "~3.0.6" 2265 | npmlog "^4.0.1" 2266 | rc "~1.1.6" 2267 | request "^2.79.0" 2268 | rimraf "~2.5.4" 2269 | semver "~5.3.0" 2270 | tar "~2.2.1" 2271 | tar-pack "~3.3.0" 2272 | 2273 | nopt@~3.0.6: 2274 | version "3.0.6" 2275 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 2276 | dependencies: 2277 | abbrev "1" 2278 | 2279 | normalize-path@^2.0.1: 2280 | version "2.0.1" 2281 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" 2282 | 2283 | normalize-range@^0.1.2: 2284 | version "0.1.2" 2285 | resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" 2286 | 2287 | normalize-url@^1.4.0: 2288 | version "1.9.0" 2289 | resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-1.9.0.tgz#c2bb50035edee62cd81edb2d45da68dc25e3423e" 2290 | dependencies: 2291 | object-assign "^4.0.1" 2292 | prepend-http "^1.0.0" 2293 | query-string "^4.1.0" 2294 | sort-keys "^1.0.0" 2295 | 2296 | npmlog@^4.0.1: 2297 | version "4.0.2" 2298 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f" 2299 | dependencies: 2300 | are-we-there-yet "~1.1.2" 2301 | console-control-strings "~1.1.0" 2302 | gauge "~2.7.1" 2303 | set-blocking "~2.0.0" 2304 | 2305 | num2fraction@^1.2.2: 2306 | version "1.2.2" 2307 | resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" 2308 | 2309 | number-is-nan@^1.0.0: 2310 | version "1.0.1" 2311 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2312 | 2313 | oauth-sign@~0.8.1: 2314 | version "0.8.2" 2315 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2316 | 2317 | object-assign@^4.0.1, object-assign@^4.1.0: 2318 | version "4.1.1" 2319 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2320 | 2321 | object.omit@^2.0.0: 2322 | version "2.0.1" 2323 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2324 | dependencies: 2325 | for-own "^0.1.4" 2326 | is-extendable "^0.1.1" 2327 | 2328 | on-finished@~2.3.0: 2329 | version "2.3.0" 2330 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 2331 | dependencies: 2332 | ee-first "1.1.1" 2333 | 2334 | on-headers@~1.0.1: 2335 | version "1.0.1" 2336 | resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.1.tgz#928f5d0f470d49342651ea6794b0857c100693f7" 2337 | 2338 | once@^1.3.0, once@~1.3.3: 2339 | version "1.3.3" 2340 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 2341 | dependencies: 2342 | wrappy "1" 2343 | 2344 | open@0.0.5: 2345 | version "0.0.5" 2346 | resolved "https://registry.yarnpkg.com/open/-/open-0.0.5.tgz#42c3e18ec95466b6bf0dc42f3a2945c3f0cad8fc" 2347 | 2348 | optimist@~0.6.0, optimist@~0.6.1: 2349 | version "0.6.1" 2350 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2351 | dependencies: 2352 | minimist "~0.0.1" 2353 | wordwrap "~0.0.2" 2354 | 2355 | original@>=0.0.5: 2356 | version "1.0.0" 2357 | resolved "https://registry.yarnpkg.com/original/-/original-1.0.0.tgz#9147f93fa1696d04be61e01bd50baeaca656bd3b" 2358 | dependencies: 2359 | url-parse "1.0.x" 2360 | 2361 | os-browserify@^0.2.0: 2362 | version "0.2.1" 2363 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.2.1.tgz#63fc4ccee5d2d7763d26bbf8601078e6c2e0044f" 2364 | 2365 | os-homedir@^1.0.0: 2366 | version "1.0.2" 2367 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2368 | 2369 | os-tmpdir@^1.0.1: 2370 | version "1.0.2" 2371 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2372 | 2373 | pako@~0.2.0: 2374 | version "0.2.9" 2375 | resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" 2376 | 2377 | parse-asn1@^5.0.0: 2378 | version "5.0.0" 2379 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.0.0.tgz#35060f6d5015d37628c770f4e091a0b5a278bc23" 2380 | dependencies: 2381 | asn1.js "^4.0.0" 2382 | browserify-aes "^1.0.0" 2383 | create-hash "^1.1.0" 2384 | evp_bytestokey "^1.0.0" 2385 | pbkdf2 "^3.0.3" 2386 | 2387 | parse-glob@^3.0.4: 2388 | version "3.0.4" 2389 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2390 | dependencies: 2391 | glob-base "^0.3.0" 2392 | is-dotfile "^1.0.0" 2393 | is-extglob "^1.0.0" 2394 | is-glob "^2.0.0" 2395 | 2396 | parseurl@~1.3.1: 2397 | version "1.3.1" 2398 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.1.tgz#c8ab8c9223ba34888aa64a297b28853bec18da56" 2399 | 2400 | path-browserify@0.0.0: 2401 | version "0.0.0" 2402 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 2403 | 2404 | path-exists@^2.0.0: 2405 | version "2.1.0" 2406 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2407 | dependencies: 2408 | pinkie-promise "^2.0.0" 2409 | 2410 | path-is-absolute@^1.0.0: 2411 | version "1.0.1" 2412 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2413 | 2414 | path-to-regexp@0.1.7: 2415 | version "0.1.7" 2416 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" 2417 | 2418 | pbkdf2-compat@2.0.1: 2419 | version "2.0.1" 2420 | resolved "https://registry.yarnpkg.com/pbkdf2-compat/-/pbkdf2-compat-2.0.1.tgz#b6e0c8fa99494d94e0511575802a59a5c142f288" 2421 | 2422 | pbkdf2@^3.0.3: 2423 | version "3.0.9" 2424 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.9.tgz#f2c4b25a600058b3c3773c086c37dbbee1ffe693" 2425 | dependencies: 2426 | create-hmac "^1.1.2" 2427 | 2428 | pinkie-promise@^2.0.0: 2429 | version "2.0.1" 2430 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2431 | dependencies: 2432 | pinkie "^2.0.0" 2433 | 2434 | pinkie@^2.0.0: 2435 | version "2.0.4" 2436 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2437 | 2438 | pkg-dir@^1.0.0: 2439 | version "1.0.0" 2440 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 2441 | dependencies: 2442 | find-up "^1.0.0" 2443 | 2444 | postcss-calc@^5.2.0: 2445 | version "5.3.1" 2446 | resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-5.3.1.tgz#77bae7ca928ad85716e2fda42f261bf7c1d65b5e" 2447 | dependencies: 2448 | postcss "^5.0.2" 2449 | postcss-message-helpers "^2.0.0" 2450 | reduce-css-calc "^1.2.6" 2451 | 2452 | postcss-colormin@^2.1.8: 2453 | version "2.2.2" 2454 | resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-2.2.2.tgz#6631417d5f0e909a3d7ec26b24c8a8d1e4f96e4b" 2455 | dependencies: 2456 | colormin "^1.0.5" 2457 | postcss "^5.0.13" 2458 | postcss-value-parser "^3.2.3" 2459 | 2460 | postcss-convert-values@^2.3.4: 2461 | version "2.6.1" 2462 | resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz#bbd8593c5c1fd2e3d1c322bb925dcae8dae4d62d" 2463 | dependencies: 2464 | postcss "^5.0.11" 2465 | postcss-value-parser "^3.1.2" 2466 | 2467 | postcss-discard-comments@^2.0.4: 2468 | version "2.0.4" 2469 | resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz#befe89fafd5b3dace5ccce51b76b81514be00e3d" 2470 | dependencies: 2471 | postcss "^5.0.14" 2472 | 2473 | postcss-discard-duplicates@^2.0.1: 2474 | version "2.0.2" 2475 | resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-2.0.2.tgz#02be520e91571ffb10738766a981d5770989bb32" 2476 | dependencies: 2477 | postcss "^5.0.4" 2478 | 2479 | postcss-discard-empty@^2.0.1: 2480 | version "2.1.0" 2481 | resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz#d2b4bd9d5ced5ebd8dcade7640c7d7cd7f4f92b5" 2482 | dependencies: 2483 | postcss "^5.0.14" 2484 | 2485 | postcss-discard-overridden@^0.1.1: 2486 | version "0.1.1" 2487 | resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz#8b1eaf554f686fb288cd874c55667b0aa3668d58" 2488 | dependencies: 2489 | postcss "^5.0.16" 2490 | 2491 | postcss-discard-unused@^2.2.1: 2492 | version "2.2.3" 2493 | resolved "https://registry.yarnpkg.com/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz#bce30b2cc591ffc634322b5fb3464b6d934f4433" 2494 | dependencies: 2495 | postcss "^5.0.14" 2496 | uniqs "^2.0.0" 2497 | 2498 | postcss-filter-plugins@^2.0.0: 2499 | version "2.0.2" 2500 | resolved "https://registry.yarnpkg.com/postcss-filter-plugins/-/postcss-filter-plugins-2.0.2.tgz#6d85862534d735ac420e4a85806e1f5d4286d84c" 2501 | dependencies: 2502 | postcss "^5.0.4" 2503 | uniqid "^4.0.0" 2504 | 2505 | postcss-merge-idents@^2.1.5: 2506 | version "2.1.7" 2507 | resolved "https://registry.yarnpkg.com/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz#4c5530313c08e1d5b3bbf3d2bbc747e278eea270" 2508 | dependencies: 2509 | has "^1.0.1" 2510 | postcss "^5.0.10" 2511 | postcss-value-parser "^3.1.1" 2512 | 2513 | postcss-merge-longhand@^2.0.1: 2514 | version "2.0.2" 2515 | resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz#23d90cd127b0a77994915332739034a1a4f3d658" 2516 | dependencies: 2517 | postcss "^5.0.4" 2518 | 2519 | postcss-merge-rules@^2.0.3: 2520 | version "2.1.1" 2521 | resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-2.1.1.tgz#5e5640020ce43cddd343c73bba91c9a358d1fe0f" 2522 | dependencies: 2523 | browserslist "^1.5.2" 2524 | caniuse-api "^1.5.2" 2525 | postcss "^5.0.4" 2526 | postcss-selector-parser "^2.2.2" 2527 | vendors "^1.0.0" 2528 | 2529 | postcss-message-helpers@^2.0.0: 2530 | version "2.0.0" 2531 | resolved "https://registry.yarnpkg.com/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz#a4f2f4fab6e4fe002f0aed000478cdf52f9ba60e" 2532 | 2533 | postcss-minify-font-values@^1.0.2: 2534 | version "1.0.5" 2535 | resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz#4b58edb56641eba7c8474ab3526cafd7bbdecb69" 2536 | dependencies: 2537 | object-assign "^4.0.1" 2538 | postcss "^5.0.4" 2539 | postcss-value-parser "^3.0.2" 2540 | 2541 | postcss-minify-gradients@^1.0.1: 2542 | version "1.0.5" 2543 | resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz#5dbda11373703f83cfb4a3ea3881d8d75ff5e6e1" 2544 | dependencies: 2545 | postcss "^5.0.12" 2546 | postcss-value-parser "^3.3.0" 2547 | 2548 | postcss-minify-params@^1.0.4: 2549 | version "1.2.2" 2550 | resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz#ad2ce071373b943b3d930a3fa59a358c28d6f1f3" 2551 | dependencies: 2552 | alphanum-sort "^1.0.1" 2553 | postcss "^5.0.2" 2554 | postcss-value-parser "^3.0.2" 2555 | uniqs "^2.0.0" 2556 | 2557 | postcss-minify-selectors@^2.0.4: 2558 | version "2.1.1" 2559 | resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz#b2c6a98c0072cf91b932d1a496508114311735bf" 2560 | dependencies: 2561 | alphanum-sort "^1.0.2" 2562 | has "^1.0.1" 2563 | postcss "^5.0.14" 2564 | postcss-selector-parser "^2.0.0" 2565 | 2566 | postcss-modules-extract-imports@^1.0.0: 2567 | version "1.0.1" 2568 | resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.0.1.tgz#8fb3fef9a6dd0420d3f6d4353cf1ff73f2b2a341" 2569 | dependencies: 2570 | postcss "^5.0.4" 2571 | 2572 | postcss-modules-local-by-default@^1.0.1: 2573 | version "1.1.1" 2574 | resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.1.1.tgz#29a10673fa37d19251265ca2ba3150d9040eb4ce" 2575 | dependencies: 2576 | css-selector-tokenizer "^0.6.0" 2577 | postcss "^5.0.4" 2578 | 2579 | postcss-modules-scope@^1.0.0: 2580 | version "1.0.2" 2581 | resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-1.0.2.tgz#ff977395e5e06202d7362290b88b1e8cd049de29" 2582 | dependencies: 2583 | css-selector-tokenizer "^0.6.0" 2584 | postcss "^5.0.4" 2585 | 2586 | postcss-modules-values@^1.1.0: 2587 | version "1.2.2" 2588 | resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-1.2.2.tgz#f0e7d476fe1ed88c5e4c7f97533a3e772ad94ca1" 2589 | dependencies: 2590 | icss-replace-symbols "^1.0.2" 2591 | postcss "^5.0.14" 2592 | 2593 | postcss-normalize-charset@^1.1.0: 2594 | version "1.1.1" 2595 | resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz#ef9ee71212d7fe759c78ed162f61ed62b5cb93f1" 2596 | dependencies: 2597 | postcss "^5.0.5" 2598 | 2599 | postcss-normalize-url@^3.0.7: 2600 | version "3.0.8" 2601 | resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz#108f74b3f2fcdaf891a2ffa3ea4592279fc78222" 2602 | dependencies: 2603 | is-absolute-url "^2.0.0" 2604 | normalize-url "^1.4.0" 2605 | postcss "^5.0.14" 2606 | postcss-value-parser "^3.2.3" 2607 | 2608 | postcss-ordered-values@^2.1.0: 2609 | version "2.2.3" 2610 | resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz#eec6c2a67b6c412a8db2042e77fe8da43f95c11d" 2611 | dependencies: 2612 | postcss "^5.0.4" 2613 | postcss-value-parser "^3.0.1" 2614 | 2615 | postcss-reduce-idents@^2.2.2: 2616 | version "2.4.0" 2617 | resolved "https://registry.yarnpkg.com/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz#c2c6d20cc958284f6abfbe63f7609bf409059ad3" 2618 | dependencies: 2619 | postcss "^5.0.4" 2620 | postcss-value-parser "^3.0.2" 2621 | 2622 | postcss-reduce-initial@^1.0.0: 2623 | version "1.0.1" 2624 | resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz#68f80695f045d08263a879ad240df8dd64f644ea" 2625 | dependencies: 2626 | postcss "^5.0.4" 2627 | 2628 | postcss-reduce-transforms@^1.0.3: 2629 | version "1.0.4" 2630 | resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz#ff76f4d8212437b31c298a42d2e1444025771ae1" 2631 | dependencies: 2632 | has "^1.0.1" 2633 | postcss "^5.0.8" 2634 | postcss-value-parser "^3.0.1" 2635 | 2636 | postcss-selector-parser@^2.0.0, postcss-selector-parser@^2.2.2: 2637 | version "2.2.2" 2638 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-2.2.2.tgz#3d70f5adda130da51c7c0c2fc023f56b1374fe08" 2639 | dependencies: 2640 | flatten "^1.0.2" 2641 | indexes-of "^1.0.1" 2642 | uniq "^1.0.1" 2643 | 2644 | postcss-svgo@^2.1.1: 2645 | version "2.1.6" 2646 | resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-2.1.6.tgz#b6df18aa613b666e133f08adb5219c2684ac108d" 2647 | dependencies: 2648 | is-svg "^2.0.0" 2649 | postcss "^5.0.14" 2650 | postcss-value-parser "^3.2.3" 2651 | svgo "^0.7.0" 2652 | 2653 | postcss-unique-selectors@^2.0.2: 2654 | version "2.0.2" 2655 | resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz#981d57d29ddcb33e7b1dfe1fd43b8649f933ca1d" 2656 | dependencies: 2657 | alphanum-sort "^1.0.1" 2658 | postcss "^5.0.4" 2659 | uniqs "^2.0.0" 2660 | 2661 | 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: 2662 | version "3.3.0" 2663 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15" 2664 | 2665 | postcss-zindex@^2.0.1: 2666 | version "2.2.0" 2667 | resolved "https://registry.yarnpkg.com/postcss-zindex/-/postcss-zindex-2.2.0.tgz#d2109ddc055b91af67fc4cb3b025946639d2af22" 2668 | dependencies: 2669 | has "^1.0.1" 2670 | postcss "^5.0.4" 2671 | uniqs "^2.0.0" 2672 | 2673 | 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.11: 2674 | version "5.2.12" 2675 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.2.12.tgz#6a2b15e35dd65634441bb0961fa796904c7890e0" 2676 | dependencies: 2677 | chalk "^1.1.3" 2678 | js-base64 "^2.1.9" 2679 | source-map "^0.5.6" 2680 | supports-color "^3.2.3" 2681 | 2682 | prepend-http@^1.0.0: 2683 | version "1.0.4" 2684 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 2685 | 2686 | preserve@^0.2.0: 2687 | version "0.2.0" 2688 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2689 | 2690 | private@^0.1.6: 2691 | version "0.1.7" 2692 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2693 | 2694 | process-nextick-args@~1.0.6: 2695 | version "1.0.7" 2696 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2697 | 2698 | process@^0.11.0, process@~0.11.0: 2699 | version "0.11.9" 2700 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.9.tgz#7bd5ad21aa6253e7da8682264f1e11d11c0318c1" 2701 | 2702 | promise@^7.1.1: 2703 | version "7.1.1" 2704 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.1.1.tgz#489654c692616b8aa55b0724fa809bb7db49c5bf" 2705 | dependencies: 2706 | asap "~2.0.3" 2707 | 2708 | proxy-addr@~1.1.3: 2709 | version "1.1.3" 2710 | resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-1.1.3.tgz#dc97502f5722e888467b3fa2297a7b1ff47df074" 2711 | dependencies: 2712 | forwarded "~0.1.0" 2713 | ipaddr.js "1.2.0" 2714 | 2715 | prr@~0.0.0: 2716 | version "0.0.0" 2717 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 2718 | 2719 | public-encrypt@^4.0.0: 2720 | version "4.0.0" 2721 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" 2722 | dependencies: 2723 | bn.js "^4.1.0" 2724 | browserify-rsa "^4.0.0" 2725 | create-hash "^1.1.0" 2726 | parse-asn1 "^5.0.0" 2727 | randombytes "^2.0.1" 2728 | 2729 | punycode@1.3.2: 2730 | version "1.3.2" 2731 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 2732 | 2733 | punycode@^1.2.4, punycode@^1.4.1: 2734 | version "1.4.1" 2735 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2736 | 2737 | q@^1.1.2: 2738 | version "1.4.1" 2739 | resolved "https://registry.yarnpkg.com/q/-/q-1.4.1.tgz#55705bcd93c5f3673530c2c2cbc0c2b3addc286e" 2740 | 2741 | qs@6.2.0: 2742 | version "6.2.0" 2743 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.2.0.tgz#3b7848c03c2dece69a9522b0fae8c4126d745f3b" 2744 | 2745 | qs@~6.3.0: 2746 | version "6.3.0" 2747 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.0.tgz#f403b264f23bc01228c74131b407f18d5ea5d442" 2748 | 2749 | query-string@^4.1.0: 2750 | version "4.3.1" 2751 | resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.3.1.tgz#54baada6713eafc92be75c47a731f2ebd09cd11d" 2752 | dependencies: 2753 | object-assign "^4.1.0" 2754 | strict-uri-encode "^1.0.0" 2755 | 2756 | querystring-es3@^0.2.0: 2757 | version "0.2.1" 2758 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 2759 | 2760 | querystring@0.2.0: 2761 | version "0.2.0" 2762 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 2763 | 2764 | querystringify@0.0.x: 2765 | version "0.0.4" 2766 | resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-0.0.4.tgz#0cf7f84f9463ff0ae51c4c4b142d95be37724d9c" 2767 | 2768 | randomatic@^1.1.3: 2769 | version "1.1.6" 2770 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 2771 | dependencies: 2772 | is-number "^2.0.2" 2773 | kind-of "^3.0.2" 2774 | 2775 | randombytes@^2.0.0, randombytes@^2.0.1: 2776 | version "2.0.3" 2777 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.3.tgz#674c99760901c3c4112771a31e521dc349cc09ec" 2778 | 2779 | range-parser@^1.0.3, range-parser@~1.2.0: 2780 | version "1.2.0" 2781 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" 2782 | 2783 | rc@~1.1.6: 2784 | version "1.1.6" 2785 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.6.tgz#43651b76b6ae53b5c802f1151fa3fc3b059969c9" 2786 | dependencies: 2787 | deep-extend "~0.4.0" 2788 | ini "~1.3.0" 2789 | minimist "^1.2.0" 2790 | strip-json-comments "~1.0.4" 2791 | 2792 | react-dom@^15.0.1: 2793 | version "15.4.2" 2794 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-15.4.2.tgz#015363f05b0a1fd52ae9efdd3a0060d90695208f" 2795 | dependencies: 2796 | fbjs "^0.8.1" 2797 | loose-envify "^1.1.0" 2798 | object-assign "^4.1.0" 2799 | 2800 | react-hot-api@^0.4.5: 2801 | version "0.4.7" 2802 | resolved "https://registry.yarnpkg.com/react-hot-api/-/react-hot-api-0.4.7.tgz#a7e22a56d252e11abd9366b61264cf4492c58171" 2803 | 2804 | react-hot-loader@^1.3.0: 2805 | version "1.3.1" 2806 | resolved "https://registry.yarnpkg.com/react-hot-loader/-/react-hot-loader-1.3.1.tgz#c95647ae78b73dfceff6ec71ffcb04182ff6daf9" 2807 | dependencies: 2808 | react-hot-api "^0.4.5" 2809 | source-map "^0.4.4" 2810 | 2811 | react@^15.0.1: 2812 | version "15.4.2" 2813 | resolved "https://registry.yarnpkg.com/react/-/react-15.4.2.tgz#41f7991b26185392ba9bae96c8889e7e018397ef" 2814 | dependencies: 2815 | fbjs "^0.8.4" 2816 | loose-envify "^1.1.0" 2817 | object-assign "^4.1.0" 2818 | 2819 | "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.1.0: 2820 | version "2.2.2" 2821 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.2.tgz#a9e6fec3c7dda85f8bb1b3ba7028604556fc825e" 2822 | dependencies: 2823 | buffer-shims "^1.0.0" 2824 | core-util-is "~1.0.0" 2825 | inherits "~2.0.1" 2826 | isarray "~1.0.0" 2827 | process-nextick-args "~1.0.6" 2828 | string_decoder "~0.10.x" 2829 | util-deprecate "~1.0.1" 2830 | 2831 | readable-stream@~2.1.4: 2832 | version "2.1.5" 2833 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" 2834 | dependencies: 2835 | buffer-shims "^1.0.0" 2836 | core-util-is "~1.0.0" 2837 | inherits "~2.0.1" 2838 | isarray "~1.0.0" 2839 | process-nextick-args "~1.0.6" 2840 | string_decoder "~0.10.x" 2841 | util-deprecate "~1.0.1" 2842 | 2843 | readdirp@^2.0.0: 2844 | version "2.1.0" 2845 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2846 | dependencies: 2847 | graceful-fs "^4.1.2" 2848 | minimatch "^3.0.2" 2849 | readable-stream "^2.0.2" 2850 | set-immediate-shim "^1.0.1" 2851 | 2852 | reduce-css-calc@^1.2.6: 2853 | version "1.3.0" 2854 | resolved "https://registry.yarnpkg.com/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz#747c914e049614a4c9cfbba629871ad1d2927716" 2855 | dependencies: 2856 | balanced-match "^0.4.2" 2857 | math-expression-evaluator "^1.2.14" 2858 | reduce-function-call "^1.0.1" 2859 | 2860 | reduce-function-call@^1.0.1: 2861 | version "1.0.2" 2862 | resolved "https://registry.yarnpkg.com/reduce-function-call/-/reduce-function-call-1.0.2.tgz#5a200bf92e0e37751752fe45b0ab330fd4b6be99" 2863 | dependencies: 2864 | balanced-match "^0.4.2" 2865 | 2866 | regenerate@^1.2.1: 2867 | version "1.3.2" 2868 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 2869 | 2870 | regenerator-runtime@^0.10.0: 2871 | version "0.10.1" 2872 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.1.tgz#257f41961ce44558b18f7814af48c17559f9faeb" 2873 | 2874 | regenerator-transform@0.9.8: 2875 | version "0.9.8" 2876 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.8.tgz#0f88bb2bc03932ddb7b6b7312e68078f01026d6c" 2877 | dependencies: 2878 | babel-runtime "^6.18.0" 2879 | babel-types "^6.19.0" 2880 | private "^0.1.6" 2881 | 2882 | regex-cache@^0.4.2: 2883 | version "0.4.3" 2884 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2885 | dependencies: 2886 | is-equal-shallow "^0.1.3" 2887 | is-primitive "^2.0.0" 2888 | 2889 | regexpu-core@^1.0.0: 2890 | version "1.0.0" 2891 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-1.0.0.tgz#86a763f58ee4d7c2f6b102e4764050de7ed90c6b" 2892 | dependencies: 2893 | regenerate "^1.2.1" 2894 | regjsgen "^0.2.0" 2895 | regjsparser "^0.1.4" 2896 | 2897 | regexpu-core@^2.0.0: 2898 | version "2.0.0" 2899 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2900 | dependencies: 2901 | regenerate "^1.2.1" 2902 | regjsgen "^0.2.0" 2903 | regjsparser "^0.1.4" 2904 | 2905 | regjsgen@^0.2.0: 2906 | version "0.2.0" 2907 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2908 | 2909 | regjsparser@^0.1.4: 2910 | version "0.1.5" 2911 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2912 | dependencies: 2913 | jsesc "~0.5.0" 2914 | 2915 | repeat-element@^1.1.2: 2916 | version "1.1.2" 2917 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2918 | 2919 | repeat-string@^1.5.2: 2920 | version "1.6.1" 2921 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2922 | 2923 | repeating@^2.0.0: 2924 | version "2.0.1" 2925 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2926 | dependencies: 2927 | is-finite "^1.0.0" 2928 | 2929 | request@^2.79.0: 2930 | version "2.79.0" 2931 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" 2932 | dependencies: 2933 | aws-sign2 "~0.6.0" 2934 | aws4 "^1.2.1" 2935 | caseless "~0.11.0" 2936 | combined-stream "~1.0.5" 2937 | extend "~3.0.0" 2938 | forever-agent "~0.6.1" 2939 | form-data "~2.1.1" 2940 | har-validator "~2.0.6" 2941 | hawk "~3.1.3" 2942 | http-signature "~1.1.0" 2943 | is-typedarray "~1.0.0" 2944 | isstream "~0.1.2" 2945 | json-stringify-safe "~5.0.1" 2946 | mime-types "~2.1.7" 2947 | oauth-sign "~0.8.1" 2948 | qs "~6.3.0" 2949 | stringstream "~0.0.4" 2950 | tough-cookie "~2.3.0" 2951 | tunnel-agent "~0.4.1" 2952 | uuid "^3.0.0" 2953 | 2954 | requires-port@1.0.x, requires-port@1.x.x: 2955 | version "1.0.0" 2956 | resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" 2957 | 2958 | right-align@^0.1.1: 2959 | version "0.1.3" 2960 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2961 | dependencies: 2962 | align-text "^0.1.1" 2963 | 2964 | rimraf@2, rimraf@~2.5.1, rimraf@~2.5.4: 2965 | version "2.5.4" 2966 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" 2967 | dependencies: 2968 | glob "^7.0.5" 2969 | 2970 | ripemd160@0.2.0: 2971 | version "0.2.0" 2972 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-0.2.0.tgz#2bf198bde167cacfa51c0a928e84b68bbe171fce" 2973 | 2974 | ripemd160@^1.0.0: 2975 | version "1.0.1" 2976 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-1.0.1.tgz#93a4bbd4942bc574b69a8fa57c71de10ecca7d6e" 2977 | 2978 | sax@~1.2.1: 2979 | version "1.2.1" 2980 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.1.tgz#7b8e656190b228e81a66aea748480d828cd2d37a" 2981 | 2982 | semver@~5.3.0: 2983 | version "5.3.0" 2984 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 2985 | 2986 | send@0.14.2: 2987 | version "0.14.2" 2988 | resolved "https://registry.yarnpkg.com/send/-/send-0.14.2.tgz#39b0438b3f510be5dc6f667a11f71689368cdeef" 2989 | dependencies: 2990 | debug "~2.2.0" 2991 | depd "~1.1.0" 2992 | destroy "~1.0.4" 2993 | encodeurl "~1.0.1" 2994 | escape-html "~1.0.3" 2995 | etag "~1.7.0" 2996 | fresh "0.3.0" 2997 | http-errors "~1.5.1" 2998 | mime "1.3.4" 2999 | ms "0.7.2" 3000 | on-finished "~2.3.0" 3001 | range-parser "~1.2.0" 3002 | statuses "~1.3.1" 3003 | 3004 | serve-index@^1.7.2: 3005 | version "1.8.0" 3006 | resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.8.0.tgz#7c5d96c13fb131101f93c1c5774f8516a1e78d3b" 3007 | dependencies: 3008 | accepts "~1.3.3" 3009 | batch "0.5.3" 3010 | debug "~2.2.0" 3011 | escape-html "~1.0.3" 3012 | http-errors "~1.5.0" 3013 | mime-types "~2.1.11" 3014 | parseurl "~1.3.1" 3015 | 3016 | serve-static@~1.11.2: 3017 | version "1.11.2" 3018 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.11.2.tgz#2cf9889bd4435a320cc36895c9aa57bd662e6ac7" 3019 | dependencies: 3020 | encodeurl "~1.0.1" 3021 | escape-html "~1.0.3" 3022 | parseurl "~1.3.1" 3023 | send "0.14.2" 3024 | 3025 | set-blocking@~2.0.0: 3026 | version "2.0.0" 3027 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3028 | 3029 | set-immediate-shim@^1.0.1: 3030 | version "1.0.1" 3031 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3032 | 3033 | setimmediate@^1.0.4, setimmediate@^1.0.5: 3034 | version "1.0.5" 3035 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 3036 | 3037 | setprototypeof@1.0.2: 3038 | version "1.0.2" 3039 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.2.tgz#81a552141ec104b88e89ce383103ad5c66564d08" 3040 | 3041 | sha.js@2.2.6: 3042 | version "2.2.6" 3043 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.2.6.tgz#17ddeddc5f722fb66501658895461977867315ba" 3044 | 3045 | sha.js@^2.3.6: 3046 | version "2.4.8" 3047 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.8.tgz#37068c2c476b6baf402d14a49c67f597921f634f" 3048 | dependencies: 3049 | inherits "^2.0.1" 3050 | 3051 | signal-exit@^3.0.0: 3052 | version "3.0.2" 3053 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3054 | 3055 | slash@^1.0.0: 3056 | version "1.0.0" 3057 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3058 | 3059 | sntp@1.x.x: 3060 | version "1.0.9" 3061 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3062 | dependencies: 3063 | hoek "2.x.x" 3064 | 3065 | sockjs-client@^1.0.3: 3066 | version "1.1.2" 3067 | resolved "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.1.2.tgz#f0212a8550e4c9468c8cceaeefd2e3493c033ad5" 3068 | dependencies: 3069 | debug "^2.2.0" 3070 | eventsource "0.1.6" 3071 | faye-websocket "~0.11.0" 3072 | inherits "^2.0.1" 3073 | json3 "^3.3.2" 3074 | url-parse "^1.1.1" 3075 | 3076 | sockjs@^0.3.15: 3077 | version "0.3.18" 3078 | resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.18.tgz#d9b289316ca7df77595ef299e075f0f937eb4207" 3079 | dependencies: 3080 | faye-websocket "^0.10.0" 3081 | uuid "^2.0.2" 3082 | 3083 | sort-keys@^1.0.0: 3084 | version "1.1.2" 3085 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" 3086 | dependencies: 3087 | is-plain-obj "^1.0.0" 3088 | 3089 | source-list-map@^0.1.4, source-list-map@~0.1.7: 3090 | version "0.1.8" 3091 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-0.1.8.tgz#c550b2ab5427f6b3f21f5afead88c4f5587b2106" 3092 | 3093 | source-map-support@^0.4.2: 3094 | version "0.4.11" 3095 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.11.tgz#647f939978b38535909530885303daf23279f322" 3096 | dependencies: 3097 | source-map "^0.5.3" 3098 | 3099 | source-map@^0.4.4, source-map@~0.4.1: 3100 | version "0.4.4" 3101 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3102 | dependencies: 3103 | amdefine ">=0.0.4" 3104 | 3105 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 3106 | version "0.5.6" 3107 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 3108 | 3109 | sprintf-js@~1.0.2: 3110 | version "1.0.3" 3111 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3112 | 3113 | sshpk@^1.7.0: 3114 | version "1.10.2" 3115 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.10.2.tgz#d5a804ce22695515638e798dbe23273de070a5fa" 3116 | dependencies: 3117 | asn1 "~0.2.3" 3118 | assert-plus "^1.0.0" 3119 | dashdash "^1.12.0" 3120 | getpass "^0.1.1" 3121 | optionalDependencies: 3122 | bcrypt-pbkdf "^1.0.0" 3123 | ecc-jsbn "~0.1.1" 3124 | jodid25519 "^1.0.0" 3125 | jsbn "~0.1.0" 3126 | tweetnacl "~0.14.0" 3127 | 3128 | "statuses@>= 1.3.1 < 2", statuses@~1.3.1: 3129 | version "1.3.1" 3130 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" 3131 | 3132 | stream-browserify@^2.0.1: 3133 | version "2.0.1" 3134 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" 3135 | dependencies: 3136 | inherits "~2.0.1" 3137 | readable-stream "^2.0.2" 3138 | 3139 | stream-cache@~0.0.1: 3140 | version "0.0.2" 3141 | resolved "https://registry.yarnpkg.com/stream-cache/-/stream-cache-0.0.2.tgz#1ac5ad6832428ca55667dbdee395dad4e6db118f" 3142 | 3143 | stream-http@^2.3.1: 3144 | version "2.6.3" 3145 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.6.3.tgz#4c3ddbf9635968ea2cfd4e48d43de5def2625ac3" 3146 | dependencies: 3147 | builtin-status-codes "^3.0.0" 3148 | inherits "^2.0.1" 3149 | readable-stream "^2.1.0" 3150 | to-arraybuffer "^1.0.0" 3151 | xtend "^4.0.0" 3152 | 3153 | strict-uri-encode@^1.0.0: 3154 | version "1.1.0" 3155 | resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" 3156 | 3157 | string-width@^1.0.1: 3158 | version "1.0.2" 3159 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3160 | dependencies: 3161 | code-point-at "^1.0.0" 3162 | is-fullwidth-code-point "^1.0.0" 3163 | strip-ansi "^3.0.0" 3164 | 3165 | string_decoder@^0.10.25, string_decoder@~0.10.x: 3166 | version "0.10.31" 3167 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 3168 | 3169 | stringstream@~0.0.4: 3170 | version "0.0.5" 3171 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3172 | 3173 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3174 | version "3.0.1" 3175 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3176 | dependencies: 3177 | ansi-regex "^2.0.0" 3178 | 3179 | strip-json-comments@~1.0.4: 3180 | version "1.0.4" 3181 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" 3182 | 3183 | style-loader@^0.13.1: 3184 | version "0.13.1" 3185 | resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-0.13.1.tgz#468280efbc0473023cd3a6cd56e33b5a1d7fc3a9" 3186 | dependencies: 3187 | loader-utils "^0.2.7" 3188 | 3189 | supports-color@^0.2.0: 3190 | version "0.2.0" 3191 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-0.2.0.tgz#d92de2694eb3f67323973d7ae3d8b55b4c22190a" 3192 | 3193 | supports-color@^2.0.0: 3194 | version "2.0.0" 3195 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3196 | 3197 | supports-color@^3.1.0, supports-color@^3.1.1, supports-color@^3.2.3: 3198 | version "3.2.3" 3199 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3200 | dependencies: 3201 | has-flag "^1.0.0" 3202 | 3203 | svgo@^0.7.0: 3204 | version "0.7.2" 3205 | resolved "https://registry.yarnpkg.com/svgo/-/svgo-0.7.2.tgz#9f5772413952135c6fefbf40afe6a4faa88b4bb5" 3206 | dependencies: 3207 | coa "~1.0.1" 3208 | colors "~1.1.2" 3209 | csso "~2.3.1" 3210 | js-yaml "~3.7.0" 3211 | mkdirp "~0.5.1" 3212 | sax "~1.2.1" 3213 | whet.extend "~0.9.9" 3214 | 3215 | tapable@^0.1.8, tapable@~0.1.8: 3216 | version "0.1.10" 3217 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.1.10.tgz#29c35707c2b70e50d07482b5d202e8ed446dafd4" 3218 | 3219 | tar-pack@~3.3.0: 3220 | version "3.3.0" 3221 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.3.0.tgz#30931816418f55afc4d21775afdd6720cee45dae" 3222 | dependencies: 3223 | debug "~2.2.0" 3224 | fstream "~1.0.10" 3225 | fstream-ignore "~1.0.5" 3226 | once "~1.3.3" 3227 | readable-stream "~2.1.4" 3228 | rimraf "~2.5.1" 3229 | tar "~2.2.1" 3230 | uid-number "~0.0.6" 3231 | 3232 | tar@~2.2.1: 3233 | version "2.2.1" 3234 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3235 | dependencies: 3236 | block-stream "*" 3237 | fstream "^1.0.2" 3238 | inherits "2" 3239 | 3240 | timers-browserify@^1.4.2: 3241 | version "1.4.2" 3242 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-1.4.2.tgz#c9c58b575be8407375cb5e2462dacee74359f41d" 3243 | dependencies: 3244 | process "~0.11.0" 3245 | 3246 | timers-browserify@^2.0.2: 3247 | version "2.0.2" 3248 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.2.tgz#ab4883cf597dcd50af211349a00fbca56ac86b86" 3249 | dependencies: 3250 | setimmediate "^1.0.4" 3251 | 3252 | to-arraybuffer@^1.0.0: 3253 | version "1.0.1" 3254 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 3255 | 3256 | to-fast-properties@^1.0.1: 3257 | version "1.0.2" 3258 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 3259 | 3260 | tough-cookie@~2.3.0: 3261 | version "2.3.2" 3262 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3263 | dependencies: 3264 | punycode "^1.4.1" 3265 | 3266 | tty-browserify@0.0.0: 3267 | version "0.0.0" 3268 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 3269 | 3270 | tunnel-agent@~0.4.1: 3271 | version "0.4.3" 3272 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 3273 | 3274 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3275 | version "0.14.5" 3276 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3277 | 3278 | type-is@~1.6.14: 3279 | version "1.6.14" 3280 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.14.tgz#e219639c17ded1ca0789092dd54a03826b817cb2" 3281 | dependencies: 3282 | media-typer "0.3.0" 3283 | mime-types "~2.1.13" 3284 | 3285 | ua-parser-js@^0.7.9: 3286 | version "0.7.12" 3287 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.12.tgz#04c81a99bdd5dc52263ea29d24c6bf8d4818a4bb" 3288 | 3289 | uglify-js@~2.7.3: 3290 | version "2.7.5" 3291 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.7.5.tgz#4612c0c7baaee2ba7c487de4904ae122079f2ca8" 3292 | dependencies: 3293 | async "~0.2.6" 3294 | source-map "~0.5.1" 3295 | uglify-to-browserify "~1.0.0" 3296 | yargs "~3.10.0" 3297 | 3298 | uglify-to-browserify@~1.0.0: 3299 | version "1.0.2" 3300 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3301 | 3302 | uid-number@~0.0.6: 3303 | version "0.0.6" 3304 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3305 | 3306 | uniq@^1.0.1: 3307 | version "1.0.1" 3308 | resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" 3309 | 3310 | uniqid@^4.0.0: 3311 | version "4.1.1" 3312 | resolved "https://registry.yarnpkg.com/uniqid/-/uniqid-4.1.1.tgz#89220ddf6b751ae52b5f72484863528596bb84c1" 3313 | dependencies: 3314 | macaddress "^0.2.8" 3315 | 3316 | uniqs@^2.0.0: 3317 | version "2.0.0" 3318 | resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02" 3319 | 3320 | unpipe@~1.0.0: 3321 | version "1.0.0" 3322 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 3323 | 3324 | url-parse@1.0.x: 3325 | version "1.0.5" 3326 | resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.0.5.tgz#0854860422afdcfefeb6c965c662d4800169927b" 3327 | dependencies: 3328 | querystringify "0.0.x" 3329 | requires-port "1.0.x" 3330 | 3331 | url-parse@^1.1.1: 3332 | version "1.1.7" 3333 | resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.1.7.tgz#025cff999653a459ab34232147d89514cc87d74a" 3334 | dependencies: 3335 | querystringify "0.0.x" 3336 | requires-port "1.0.x" 3337 | 3338 | url@^0.11.0: 3339 | version "0.11.0" 3340 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 3341 | dependencies: 3342 | punycode "1.3.2" 3343 | querystring "0.2.0" 3344 | 3345 | util-deprecate@~1.0.1: 3346 | version "1.0.2" 3347 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3348 | 3349 | util@0.10.3, util@^0.10.3: 3350 | version "0.10.3" 3351 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 3352 | dependencies: 3353 | inherits "2.0.1" 3354 | 3355 | utils-merge@1.0.0: 3356 | version "1.0.0" 3357 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8" 3358 | 3359 | uuid@^2.0.2: 3360 | version "2.0.3" 3361 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" 3362 | 3363 | uuid@^3.0.0: 3364 | version "3.0.1" 3365 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 3366 | 3367 | vary@~1.1.0: 3368 | version "1.1.0" 3369 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.0.tgz#e1e5affbbd16ae768dd2674394b9ad3022653140" 3370 | 3371 | vendors@^1.0.0: 3372 | version "1.0.1" 3373 | resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.1.tgz#37ad73c8ee417fb3d580e785312307d274847f22" 3374 | 3375 | verror@1.3.6: 3376 | version "1.3.6" 3377 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 3378 | dependencies: 3379 | extsprintf "1.0.2" 3380 | 3381 | vm-browserify@0.0.4: 3382 | version "0.0.4" 3383 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 3384 | dependencies: 3385 | indexof "0.0.1" 3386 | 3387 | watchpack@^0.2.1: 3388 | version "0.2.9" 3389 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-0.2.9.tgz#62eaa4ab5e5ba35fdfc018275626e3c0f5e3fb0b" 3390 | dependencies: 3391 | async "^0.9.0" 3392 | chokidar "^1.0.0" 3393 | graceful-fs "^4.1.2" 3394 | 3395 | webpack-core@~0.6.9: 3396 | version "0.6.9" 3397 | resolved "https://registry.yarnpkg.com/webpack-core/-/webpack-core-0.6.9.tgz#fc571588c8558da77be9efb6debdc5a3b172bdc2" 3398 | dependencies: 3399 | source-list-map "~0.1.7" 3400 | source-map "~0.4.1" 3401 | 3402 | webpack-dev-middleware@^1.4.0: 3403 | version "1.10.0" 3404 | resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-1.10.0.tgz#7d5be2651e692fddfafd8aaed177c16ff51f0eb8" 3405 | dependencies: 3406 | memory-fs "~0.4.1" 3407 | mime "^1.3.4" 3408 | path-is-absolute "^1.0.0" 3409 | range-parser "^1.0.3" 3410 | 3411 | webpack-dev-server@^1.14.1: 3412 | version "1.16.3" 3413 | resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-1.16.3.tgz#cbb6a0d3e7c8eb5453b3e9befcbe843219f62661" 3414 | dependencies: 3415 | compression "^1.5.2" 3416 | connect-history-api-fallback "^1.3.0" 3417 | express "^4.13.3" 3418 | http-proxy-middleware "~0.17.1" 3419 | open "0.0.5" 3420 | optimist "~0.6.1" 3421 | serve-index "^1.7.2" 3422 | sockjs "^0.3.15" 3423 | sockjs-client "^1.0.3" 3424 | stream-cache "~0.0.1" 3425 | strip-ansi "^3.0.0" 3426 | supports-color "^3.1.1" 3427 | webpack-dev-middleware "^1.4.0" 3428 | 3429 | webpack@^1.12.15: 3430 | version "1.14.0" 3431 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-1.14.0.tgz#54f1ffb92051a328a5b2057d6ae33c289462c823" 3432 | dependencies: 3433 | acorn "^3.0.0" 3434 | async "^1.3.0" 3435 | clone "^1.0.2" 3436 | enhanced-resolve "~0.9.0" 3437 | interpret "^0.6.4" 3438 | loader-utils "^0.2.11" 3439 | memory-fs "~0.3.0" 3440 | mkdirp "~0.5.0" 3441 | node-libs-browser "^0.7.0" 3442 | optimist "~0.6.0" 3443 | supports-color "^3.1.0" 3444 | tapable "~0.1.8" 3445 | uglify-js "~2.7.3" 3446 | watchpack "^0.2.1" 3447 | webpack-core "~0.6.9" 3448 | 3449 | websocket-driver@>=0.5.1: 3450 | version "0.6.5" 3451 | resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.6.5.tgz#5cb2556ceb85f4373c6d8238aa691c8454e13a36" 3452 | dependencies: 3453 | websocket-extensions ">=0.1.1" 3454 | 3455 | websocket-extensions@>=0.1.1: 3456 | version "0.1.1" 3457 | resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.1.tgz#76899499c184b6ef754377c2dbb0cd6cb55d29e7" 3458 | 3459 | whatwg-fetch@>=0.10.0: 3460 | version "2.0.2" 3461 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.2.tgz#fe294d1d89e36c5be8b3195057f2e4bc74fc980e" 3462 | 3463 | whet.extend@~0.9.9: 3464 | version "0.9.9" 3465 | resolved "https://registry.yarnpkg.com/whet.extend/-/whet.extend-0.9.9.tgz#f877d5bf648c97e5aa542fadc16d6a259b9c11a1" 3466 | 3467 | wide-align@^1.1.0: 3468 | version "1.1.0" 3469 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 3470 | dependencies: 3471 | string-width "^1.0.1" 3472 | 3473 | window-size@0.1.0: 3474 | version "0.1.0" 3475 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3476 | 3477 | wordwrap@0.0.2: 3478 | version "0.0.2" 3479 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3480 | 3481 | wordwrap@~0.0.2: 3482 | version "0.0.3" 3483 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3484 | 3485 | wrappy@1: 3486 | version "1.0.2" 3487 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3488 | 3489 | xtend@^4.0.0: 3490 | version "4.0.1" 3491 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3492 | 3493 | yargs@~3.10.0: 3494 | version "3.10.0" 3495 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3496 | dependencies: 3497 | camelcase "^1.0.2" 3498 | cliui "^2.1.0" 3499 | decamelize "^1.0.0" 3500 | window-size "0.1.0" 3501 | --------------------------------------------------------------------------------