├── .babelrc ├── example ├── main.scss ├── index.html └── index.jsx ├── src ├── utils │ ├── get-all-values.js │ ├── is-option-selected.js │ ├── build-options-lookup.js │ ├── get-toggled-values.js │ ├── get-current-options.js │ └── with-opt-group-props.js ├── selectly.js ├── OptionList.jsx ├── Menu.jsx ├── Trigger.jsx ├── Option.jsx ├── selectly.scss └── Select.jsx ├── .gitignore ├── webpack.banner.js ├── bower.json ├── LICENSE ├── webpack.config.js ├── CHANGELOG.md ├── webpack.prod.config.js ├── package.json ├── README.md └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | "es2015", 4 | "stage-0", 5 | "react" 6 | ], 7 | "plugins": [ 8 | "add-module-exports" 9 | ] 10 | } 11 | -------------------------------------------------------------------------------- /example/main.scss: -------------------------------------------------------------------------------- 1 | * { 2 | box-sizing: border-box; 3 | } 4 | 5 | body { 6 | padding: 24px; 7 | //margin-top: 1200px; 8 | font-family: 'Helvetica', sans-serif; 9 | } 10 | -------------------------------------------------------------------------------- /src/utils/get-all-values.js: -------------------------------------------------------------------------------- 1 | import buildOptionsLookup from './build-options-lookup' 2 | 3 | export default function getAllValues(options) { 4 | const lookup = buildOptionsLookup(options) 5 | return Object.keys(lookup).map(key => lookup[key].value) 6 | } 7 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Mac OSX Files 3 | .DS_Store 4 | .Trashes 5 | .Spotlight-V100 6 | .AppleDouble 7 | .LSOverride 8 | 9 | # APP 10 | node_modules 11 | npm-debug.log 12 | /dist/ 13 | /lib/ 14 | /example/bundle.js 15 | 16 | # General Files 17 | .sass-cache 18 | .hg 19 | .idea 20 | .svn 21 | .cache 22 | .project 23 | .tmp 24 | -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Selectly 6 | 7 | 8 |
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/utils/is-option-selected.js: -------------------------------------------------------------------------------- 1 | export default function isOptionSelected(currentValue, value) { 2 | if (!value || !currentValue) { 3 | return false 4 | } else { 5 | if (currentValue.constructor === Array) { 6 | return currentValue.indexOf(value) > -1 7 | } else { 8 | return value === currentValue 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/utils/build-options-lookup.js: -------------------------------------------------------------------------------- 1 | export default function buildOptionsLookup(options, _lookup = {}) { 2 | for (let i = 0, len = options.length; i < len; i++) { 3 | const option = options[i] 4 | const { optgroup, value, label } = option 5 | 6 | if (optgroup) { 7 | buildOptionsLookup(optgroup, _lookup) 8 | } else { 9 | _lookup[value] = options[i] 10 | } 11 | } 12 | return _lookup 13 | } 14 | -------------------------------------------------------------------------------- /src/utils/get-toggled-values.js: -------------------------------------------------------------------------------- 1 | export default function getToggledValues(prevValues = [], nextValues) { 2 | const newValues = [...prevValues] 3 | 4 | if (nextValues.constructor !== Array) { 5 | nextValues = [nextValues] 6 | } 7 | 8 | nextValues.forEach(value => { 9 | const pos = newValues.indexOf(value) 10 | if (pos > -1) { 11 | newValues.splice(pos, 1) 12 | } else { 13 | newValues.push(value) 14 | } 15 | }) 16 | 17 | return newValues 18 | } 19 | -------------------------------------------------------------------------------- /webpack.banner.js: -------------------------------------------------------------------------------- 1 | var toTitleCase = function(str) { 2 | return str.replace(/\w\S*/g, function(txt) { 3 | return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase() 4 | }) 5 | } 6 | var PACKAGE = require('./package.json') 7 | var NAME = toTitleCase(PACKAGE.name.split('-').join(' ')) 8 | 9 | module.exports = 10 | NAME + 11 | ' ' + 12 | PACKAGE.version + 13 | '\n' + 14 | PACKAGE.homepage + 15 | '\nCopyright (c) ' + 16 | new Date().getFullYear() + 17 | ' ' + 18 | NAME + 19 | ' Authors' 20 | -------------------------------------------------------------------------------- /src/utils/get-current-options.js: -------------------------------------------------------------------------------- 1 | import buildOptionsLookup from './build-options-lookup' 2 | 3 | export default function getCurrentOptions(options, currentValue) { 4 | const lookup = buildOptionsLookup(options) 5 | 6 | // if no value provided return the first option 7 | if (!currentValue) { 8 | return new Array(lookup[Object.keys(lookup)[0]]) 9 | // if an array we return an array of the selected options back 10 | } else if (currentValue.constructor === Array) { 11 | return currentValue.map(_value => lookup[_value]) 12 | // otherwise just return the single selected option 13 | } else { 14 | return new Array(lookup[currentValue]) 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "selectly", 3 | "version": "0.4.0", 4 | "homepage": "https://github.com/souporserious/selectly", 5 | "authors": [ 6 | "Travis Arnold " 7 | ], 8 | "description": "Build custom, accessible, select menus for React.", 9 | "main": ["./dist/selectly.js"], 10 | "keywords": [ 11 | "react", 12 | "component", 13 | "react-component", 14 | "select", 15 | "multiselect", 16 | "combobox", 17 | "form", 18 | "input", 19 | "ui" 20 | ], 21 | "license": "MIT", 22 | "ignore": [ 23 | "**/.*", 24 | "node_modules", 25 | "bower_components", 26 | "test", 27 | "tests" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2015, Travis Arnold 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted, provided that the above 5 | copyright notice and this permission notice appear in all copies. 6 | 7 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 8 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 9 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 10 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 11 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 12 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 13 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 14 | 15 | -------------------------------------------------------------------------------- /src/selectly.js: -------------------------------------------------------------------------------- 1 | import Select from './Select' 2 | import Trigger from './Trigger' 3 | import Menu from './Menu' 4 | import Option from './Option' 5 | import OptionList from './OptionList' 6 | import buildOptionsLookup from './utils/build-options-lookup' 7 | import getCurrentOptions from './utils/get-current-options' 8 | import getToggledValues from './utils/get-toggled-values' 9 | import getAllValues from './utils/get-all-values' 10 | import isOptionSelected from './utils/is-option-selected' 11 | import withOptGroupProps from './utils/with-opt-group-props' 12 | 13 | const utils = { 14 | buildOptionsLookup, 15 | getCurrentOptions, 16 | getToggledValues, 17 | getAllValues, 18 | isOptionSelected, 19 | withOptGroupProps, 20 | } 21 | 22 | export { Select, Trigger, Menu, OptionList, Option, utils } 23 | -------------------------------------------------------------------------------- /src/OptionList.jsx: -------------------------------------------------------------------------------- 1 | import React, { PropTypes } from 'react' 2 | import { Select } from 'react-aria' 3 | 4 | const OptionList = (props, context) => { 5 | const { children, ...restProps } = props 6 | const { selectly } = context 7 | const childrenToRender = typeof children === 'function' 8 | ? optionListProps => 9 | children({ 10 | isOpen: selectly.isOpen, 11 | triggerWidth: selectly.triggerWidth, 12 | optionListProps, 13 | }) 14 | : children 15 | return ( 16 | 22 | {childrenToRender} 23 | 24 | ) 25 | } 26 | 27 | OptionList.contextTypes = { 28 | selectly: PropTypes.object, 29 | } 30 | 31 | export default OptionList 32 | -------------------------------------------------------------------------------- /src/Menu.jsx: -------------------------------------------------------------------------------- 1 | import React, { PropTypes } from 'react' 2 | import Portal from 'react-travel' 3 | import { Popper } from 'react-popper' 4 | import { Select } from 'react-aria' 5 | 6 | const Menu = (props, context) => { 7 | const { 8 | component, 9 | renderTo, 10 | placement, 11 | style, 12 | children, 13 | ...restProps 14 | } = props 15 | const { selectly } = context 16 | const optionList = ( 17 | 24 | {optionListProps => ( 25 | 31 | {children} 32 | 33 | )} 34 | 35 | ) 36 | const componentToRender = renderTo 37 | ? 38 | : optionList 39 | 40 | return selectly.isOpen && componentToRender 41 | } 42 | 43 | Menu.contextTypes = { 44 | selectly: PropTypes.object, 45 | } 46 | 47 | Menu.propTypes = { 48 | placement: PropTypes.any, 49 | renderTo: PropTypes.any, 50 | } 51 | 52 | Menu.defaultProps = { 53 | placement: 'bottom-start', 54 | renderTo: document.body, 55 | } 56 | 57 | export default Menu 58 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- 1 | var path = require('path') 2 | var webpack = require('webpack') 3 | var TARGET = process.env.TARGET || null 4 | 5 | var config = { 6 | entry: {}, 7 | output: { 8 | path: path.join(__dirname, 'example'), 9 | filename: 'bundle.js', 10 | }, 11 | module: { 12 | loaders: [ 13 | { test: /\.(js|jsx)/, exclude: /node_modules/, loader: 'babel-loader' }, 14 | { test: /\.(css|scss)/, loader: 'style!css!postcss!sass?sourceMap' }, 15 | ], 16 | }, 17 | resolve: { 18 | extensions: ['', '.js', '.jsx'], 19 | }, 20 | plugins: [], 21 | devServer: { 22 | contentBase: './example', 23 | inline: true, 24 | }, 25 | } 26 | 27 | if (TARGET === 'minify') { 28 | config.entry.index = path.join(__dirname, 'example/index.jsx') 29 | 30 | config.plugins.push( 31 | new webpack.DefinePlugin({ 32 | 'process.env': { 33 | NODE_ENV: JSON.stringify('production'), 34 | }, 35 | }) 36 | ) 37 | 38 | config.plugins.push( 39 | new webpack.optimize.UglifyJsPlugin({ 40 | compress: { 41 | screw_ie8: true, 42 | warnings: false, 43 | }, 44 | mangle: { 45 | screw_ie8: true, 46 | }, 47 | output: { 48 | comments: false, 49 | screw_ie8: true, 50 | }, 51 | }) 52 | ) 53 | } else { 54 | config.entry.index = [ 55 | 'webpack/hot/dev-server', 56 | path.join(__dirname, 'example/index.jsx'), 57 | ] 58 | } 59 | 60 | module.exports = config 61 | -------------------------------------------------------------------------------- /src/Trigger.jsx: -------------------------------------------------------------------------------- 1 | import React, { PropTypes } from 'react' 2 | import ReactDOM from 'react-dom' 3 | import { Target } from 'react-popper' 4 | import { Trigger as ARIATrigger } from 'react-aria' 5 | import Measure from 'react-measure' 6 | 7 | const Trigger = ( 8 | { defaultValue, renderLabel = label => label, children, ...restProps }, 9 | { selectly } 10 | ) => { 11 | const { 12 | value, 13 | selectedOptions, 14 | isOpen, 15 | toggle, 16 | autoWidth, 17 | onTriggerMeasure, 18 | } = selectly 19 | let childrenToRender 20 | 21 | if (typeof children === 'function') { 22 | childrenToRender = props => 23 | children(props, { 24 | isOpen, 25 | value, 26 | selectedOptions, 27 | }) 28 | } else if (children) { 29 | childrenToRender = children 30 | } else if (selectedOptions.length > 0) { 31 | childrenToRender = selectedOptions.map(o => renderLabel(o.label)) 32 | } else { 33 | childrenToRender = defaultValue 34 | } 35 | 36 | const component = ( 37 | 38 | {({ targetProps }) => 39 | { 41 | targetProps.ref(ReactDOM.findDOMNode(c)) 42 | }} 43 | isOpen={isOpen} 44 | keybindings={[' ']} 45 | onTrigger={toggle} 46 | children={childrenToRender} 47 | {...restProps} 48 | />} 49 | 50 | ) 51 | return component 52 | } 53 | 54 | Trigger.contextTypes = { 55 | selectly: PropTypes.object, 56 | } 57 | 58 | export default Trigger 59 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## CHANGELOG 2 | ### 0.7.0 3 | Upgrade to latest `react-popper` and `react-travel` 4 | 5 | `onChange` now returns an object with `value`, `option`, `options`, and `selectedOptions` 6 | 7 | `Select` holds an internal state of options now 8 | 9 | `Option` accepts a child function that provides an object with `props`, `isHighlighted`, `isMultiple`, `isSelected` 10 | 11 | ### 0.6.0 12 | Split components into `Select`, `Trigger`, `Menu`, and `Option` to allow better composition 13 | 14 | ### 0.5.0 15 | Replaced parts with React ARIA where applicable 16 | 17 | Added better documentation 18 | 19 | Breaking Changes: 20 | 21 | Added mandatory components `Trigger`, `OptionList`, and `Option` 22 | 23 | ### 0.4.0 24 | 25 | Finished and documented utilities. 26 | 27 | Renamed utilities: 28 | 29 | `build-lookup` -> `build-options-lookup` 30 | 31 | `get-option` -> `get-current-options` 32 | 33 | `multiple-options` -> `get-toggled-options` 34 | 35 | ### 0.3.0 36 | Updated to React Tether 0.5.1 37 | 38 | Auto width is now applied to the React Tether component 39 | 40 | ### 0.2.0 41 | Complete rebuild using context that provides a `Select` and `Option` components to build custom select menus. 42 | 43 | ### 0.1.2 44 | Added `nativeSelect` prop that is true by default, use with `name` prop to get values from selected options 45 | 46 | ### 0.1.1 47 | 48 | Better support for `multiple` prop 49 | 50 | Fixed `shallowCompare` not getting packaged in dist 51 | 52 | ### 0.1.0 53 | 54 | Initial working release 55 | 56 | ### 0.0.1 57 | 58 | Nothing working yet, just setting up everything 59 | -------------------------------------------------------------------------------- /src/Option.jsx: -------------------------------------------------------------------------------- 1 | import React, { Component, PropTypes } from 'react' 2 | import ReactDOM, { findDOMNode } from 'react-dom' 3 | import { Select } from 'react-aria' 4 | 5 | class Option extends Component { 6 | static contextTypes = { 7 | selectly: PropTypes.object, 8 | optgroup: PropTypes.object, 9 | } 10 | 11 | state = { 12 | isSelected: false, 13 | } 14 | 15 | componentDidMount() { 16 | const { selectly, optgroup } = this.context 17 | const option = { 18 | value: this.props.value, 19 | label: this.props.label || this.props.value, 20 | node: findDOMNode(this), 21 | setSelectedState: this.setSelectedState, 22 | getSelectedState: this.getSelectedState, 23 | } 24 | 25 | selectly.addOption(option) 26 | 27 | if (optgroup) { 28 | optgroup.addOption(option) 29 | } 30 | } 31 | 32 | componentWillUnmount() { 33 | this.context.selectly.removeOption(this.props.value) 34 | } 35 | 36 | setSelectedState = isSelected => { 37 | this.setState({ isSelected }) 38 | } 39 | 40 | getSelectedState = () => { 41 | return this.state.isSelected 42 | } 43 | 44 | render() { 45 | const { multiple: isMultiple } = this.context.selectly 46 | const { children, ...restProps } = this.props 47 | const { isSelected } = this.state 48 | return ( 49 | 50 | {typeof children === 'function' 51 | ? props => children({ ...props, isMultiple, isSelected }) 52 | : children} 53 | 54 | ) 55 | } 56 | } 57 | 58 | export default Option 59 | -------------------------------------------------------------------------------- /src/utils/with-opt-group-props.js: -------------------------------------------------------------------------------- 1 | import React, { Component, PropTypes, createElement } from 'react' 2 | 3 | export default function withOptGroupProps(WrappedComponent) { 4 | return class extends Component { 5 | static childContextTypes = { 6 | optgroup: PropTypes.object, 7 | } 8 | 9 | state = { isAllSelected: false } 10 | 11 | options = [] 12 | 13 | getChildContext() { 14 | return { 15 | optgroup: { 16 | addOption: this._addOption, 17 | removeOption: this._removeOption, 18 | // onChange: this 19 | }, 20 | } 21 | } 22 | 23 | _addOption = option => { 24 | this.options.push(option) 25 | } 26 | 27 | _removeOption = value => { 28 | this.options = this.options.filter(option => option.value !== value) 29 | } 30 | 31 | _isAllSelected() { 32 | this.setState({ 33 | isAllSelected: this.options.every(option => option.getSelectedState()), 34 | }) 35 | } 36 | 37 | selectAll = () => { 38 | this.options.forEach(option => option.setSelectedState(true)) 39 | this.setState({ isAllSelected: true }) 40 | } 41 | 42 | deselectAll = () => { 43 | this.options.forEach(option => option.setSelectedState(false)) 44 | this.setState({ isAllSelected: false }) 45 | } 46 | 47 | render() { 48 | return createElement(WrappedComponent, { 49 | ...this.props, 50 | isAllSelected: this.state.isAllSelected, 51 | selectAll: this.selectAll, 52 | deselectAll: this.deselectAll, 53 | }) 54 | } 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /webpack.prod.config.js: -------------------------------------------------------------------------------- 1 | var path = require('path') 2 | var webpack = require('webpack') 3 | var banner = require('./webpack.banner') 4 | var TARGET = process.env.TARGET || null 5 | 6 | var externals = { 7 | react: { 8 | root: 'React', 9 | commonjs2: 'react', 10 | commonjs: 'react', 11 | amd: 'react', 12 | }, 13 | 'react-dom': { 14 | root: 'ReactDOM', 15 | commonjs2: 'react-dom', 16 | commonjs: 'react-dom', 17 | amd: 'react-dom', 18 | }, 19 | 'react-aria': { 20 | root: 'ReactARIA', 21 | commonjs2: 'react-aria', 22 | commonjs: 'react-aria', 23 | amd: 'react-aria', 24 | }, 25 | 'react-measure': { 26 | root: 'Measure', 27 | commonjs2: 'react-measure', 28 | commonjs: 'react-measure', 29 | amd: 'react-measure', 30 | }, 31 | 'react-popper': { 32 | root: 'ReactPopper', 33 | commonjs2: 'react-popper', 34 | commonjs: 'react-popper', 35 | amd: 'react-popper', 36 | }, 37 | 'react-travel': { 38 | root: 'Portal', 39 | commonjs2: 'react-travel', 40 | commonjs: 'react-travel', 41 | amd: 'react-travel', 42 | }, 43 | } 44 | 45 | var config = { 46 | entry: { 47 | index: './src/selectly.js', 48 | }, 49 | output: { 50 | path: path.join(__dirname, 'dist'), 51 | publicPath: 'dist/', 52 | filename: 'selectly.js', 53 | sourceMapFilename: 'selectly.sourcemap.js', 54 | library: 'SelectlyPrerelease', 55 | libraryTarget: 'umd', 56 | }, 57 | module: { 58 | loaders: [{ test: /\.(js|jsx)/, loader: 'babel-loader' }], 59 | }, 60 | plugins: [new webpack.BannerPlugin(banner)], 61 | resolve: { 62 | extensions: ['', '.js', '.jsx'], 63 | }, 64 | externals: externals, 65 | } 66 | 67 | if (TARGET === 'minify') { 68 | config.output.filename = 'selectly.min.js' 69 | config.output.sourceMapFilename = 'selectly.min.js' 70 | config.plugins.push( 71 | new webpack.optimize.UglifyJsPlugin({ 72 | compress: { 73 | warnings: false, 74 | }, 75 | mangle: { 76 | except: ['React', 'ReactDOM'], 77 | }, 78 | }) 79 | ) 80 | } 81 | 82 | module.exports = config 83 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "selectly", 3 | "version": "0.5.0", 4 | "description": "Build custom, accessible, select menus for React.", 5 | "main": "lib/index.js", 6 | "files": [ 7 | "dist", 8 | "lib" 9 | ], 10 | "scripts": { 11 | "build:lib": "babel src --out-dir lib", 12 | "build": "npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js", 13 | "dev": "webpack-dev-server --inline --hot --progress --colors --host 0.0.0.0 --devtool eval", 14 | "postbuild": "NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js", 15 | "prebuild": "rm -rf dist && mkdir dist", 16 | "prepublish": "npm run build", 17 | "deploy": "NODE_ENV=production TARGET=minify webpack && git-directory-deploy --directory example --branch gh-pages" 18 | }, 19 | "repository": { 20 | "type": "git", 21 | "url": "https://github.com/souporserious/selectly" 22 | }, 23 | "keywords": [ 24 | "react", 25 | "component", 26 | "react-component", 27 | "select", 28 | "multiselect", 29 | "combobox", 30 | "form", 31 | "input", 32 | "ui" 33 | ], 34 | "author": "Travis Arnold (http://souporserious.com)", 35 | "license": "MIT", 36 | "bugs": { 37 | "url": "https://github.com/souporserious/selectly/issues" 38 | }, 39 | "homepage": "https://github.com/souporserious/selectly", 40 | "peerDependencies": { 41 | "react": ">0.13.0", 42 | "react-dom": ">0.13.0" 43 | }, 44 | "dependencies": { 45 | "react-aria": "^0.9.2", 46 | "react-measure": "^1.4.6", 47 | "react-popper": "^0.7.0", 48 | "react-travel": "^1.3.5" 49 | }, 50 | "devDependencies": { 51 | "babel-cli": "^6.16.0", 52 | "babel-core": "^6.17.0", 53 | "babel-loader": "^6.2.5", 54 | "babel-plugin-add-module-exports": "^0.2.1", 55 | "babel-preset-es2015": "^6.16.0", 56 | "babel-preset-react": "^6.16.0", 57 | "babel-preset-stage-0": "^6.16.0", 58 | "chokidar": "^1.6.1", 59 | "css-loader": "^0.25.0", 60 | "git-directory-deploy": "^1.5.1", 61 | "http-server": "^0.9.0", 62 | "node-libs-browser": "^1.0.0", 63 | "node-sass": "^3.2.0", 64 | "postcss-loader": "^0.13.0", 65 | "react": "15.3.2", 66 | "react-dom": "15.3.2", 67 | "react-motion": "^0.3.1", 68 | "react-motion-ui-pack": "^0.5.1", 69 | "sass-loader": "^4.0.2", 70 | "style-loader": "^0.13.1", 71 | "webpack": "^1.13.2", 72 | "webpack-dev-server": "^1.9.0" 73 | } 74 | } 75 | -------------------------------------------------------------------------------- /src/selectly.scss: -------------------------------------------------------------------------------- 1 | .react-select { 2 | display: inline-block; 3 | width: 100%; 4 | height: auto; 5 | position: relative; 6 | } 7 | 8 | .react-select-trigger { 9 | box-sizing: border-box; 10 | display: flex; 11 | width: 100%; 12 | height: 31px; 13 | padding: 6px 27px 6px 6px; 14 | font-size: 14px; 15 | text-align: left; 16 | border-radius: 3px; 17 | border: 1px solid #d3d4d4; 18 | //outline: 0; 19 | cursor: pointer; 20 | position: relative; 21 | background: { 22 | color: #fff; 23 | image: url('data:image/svg+xml;utf8,'); 24 | repeat: no-repeat; 25 | position: calc(100% - 5px) center; 26 | } 27 | 28 | &, &:active { 29 | color: black; 30 | } 31 | 32 | &.react-select-enabled { 33 | } 34 | 35 | &.react-select-target-attached-top { 36 | border-radius: 0 0 3px 3px; 37 | } 38 | 39 | &.react-select-target-attached-bottom { 40 | border-radius: 3px 3px 0 0; 41 | } 42 | 43 | // truncate children with ellipsis 44 | * { 45 | white-space: nowrap; 46 | overflow: hidden; 47 | text-overflow: ellipsis; 48 | } 49 | } 50 | 51 | .react-select-trigger__option { 52 | user-select: none; 53 | 54 | & + & { 55 | margin-left: 6px; 56 | } 57 | 58 | .react-select-trigger--multiple & { 59 | padding: 0 3px; 60 | border-radius: 2px; 61 | background: #E6F9FF; 62 | } 63 | } 64 | 65 | .react-select-trigger__arrow { 66 | position: absolute; 67 | right: 6px; 68 | top: 50%; 69 | transform: translateY(-50%); 70 | } 71 | 72 | .react-select-menu { 73 | max-height: 180px; 74 | padding: 3px 0; 75 | border: 1px solid #e1e1e1; 76 | border-radius: 0 0 3px 3px; 77 | box-shadow: 0 2px 4px 0 rgba(218, 221, 222, 0.35); 78 | background-color: white; 79 | overflow-x: hidden; 80 | overflow-y: auto; 81 | -webkit-tap-highlight-color: transparent; 82 | 83 | .react-select-enabled & { 84 | pointer-events: auto; 85 | } 86 | 87 | .react-select-element-attached-top & { 88 | margin-top: -1px; 89 | border-top: 0; 90 | } 91 | 92 | .react-select-element-attached-bottom & { 93 | margin-top: 1px; 94 | border-bottom: 0; 95 | border-radius: 3px 3px 0 0; 96 | box-shadow: 0 -2px 4px 0 rgba(218, 221, 222, 0.35); 97 | } 98 | } 99 | 100 | .react-select-header { 101 | display: flex; 102 | padding: 8px; 103 | border-bottom: 1px solid #F1F3F5; 104 | border-top: 1px solid #F1F3F5; 105 | } 106 | 107 | .react-select-btn { 108 | flex: 1; 109 | } 110 | 111 | .react-select-options { 112 | padding: 0; 113 | margin: 0; 114 | list-style: none; 115 | } 116 | 117 | .react-select-option { 118 | display: flex; 119 | align-items: center; 120 | padding: 4px 8px; 121 | font-size: 14px; 122 | text-indent: 4px; 123 | border-radius: 2px; 124 | cursor: pointer; 125 | user-select: none; 126 | 127 | &:hover { 128 | background: #FBFBFB; 129 | } 130 | } 131 | 132 | .react-select-option__label { 133 | width: 100%; 134 | overflow: hidden; 135 | text-overflow: ellipsis; 136 | white-space: nowrap; 137 | } 138 | 139 | .react-select-optgroup { 140 | display: block; 141 | padding: 3px 0; 142 | cursor: default; 143 | border-top: 1px solid #F1F3F5; 144 | 145 | &:first-child { 146 | border: 0; 147 | } 148 | } 149 | 150 | .react-select-optgroup__title { 151 | display: block; 152 | padding: 8px 12px 6px; 153 | font-size: 14px; 154 | font-weight: 700; 155 | text-transform: uppercase; 156 | letter-spacing: 1px; 157 | color: #909294; 158 | user-select: none; 159 | } 160 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Selectly 2 | 3 | Build custom select menus in React. Provides a low level way to build the select menu you need. 4 | 5 | ## Install 6 | 7 | `npm install selectly --save` 8 | 9 | `bower install selectly --save` 10 | 11 | ## Example Usage 12 | 13 | ```javascript 14 | import { Select, Trigger, OptionList, Option, utils } from 'Selectly' 15 | const { getToggledValues } = utils 16 | 17 | class MultiSelect extends Component { 18 | constructor(props) { 19 | super(props) 20 | this.state = { 21 | defaultValue: 'Select a color', 22 | currentValues: [] 23 | } 24 | } 25 | 26 | _handleChange(value) { 27 | this.setState({ 28 | currentValues: getToggledValues(this.state.currentValues, value) 29 | }) 30 | } 31 | 32 | render() { 33 | const { defaultValue, currentValues } = this.state 34 | return ( 35 | 51 | ) 52 | } 53 | } 54 | ``` 55 | 56 | ## Select Props 57 | 58 | ### `children`: PropTypes.node.isRequired (Accepts 2 children) 59 | 60 | The first child is used as the `trigger` and the second child is used as the `options` that will be displayed upon clicking the trigger. 61 | 62 | ### `multiple`: PropTypes.bool 63 | 64 | When `true` this allows multiple options to be selected. 65 | 66 | ### `disabled`: PropTypes.bool 67 | 68 | Puts the select menu in a disabled state. 69 | 70 | ### `autoWidth`: PropTypes.bool 71 | 72 | Determines if the `options` should be the same width as the `trigger`. 73 | 74 | ### `onChange`: PropTypes.func 75 | 76 | Callback when an option has been selected. Passes back the value that was selected. 77 | 78 | ## React ARIA Components 79 | 80 | `Trigger`, `OptionList`, and `Option` are exported directly from [React ARIA](https://github.com/souporserious/react-aria) 81 | 82 | ## Utilities 83 | 84 | ### `buildOptionsLookup`: (array options) 85 | 86 | Returns a flat object to allow optgroup options to be accessed easier. 87 | 88 | ```javascript 89 | [ 90 | { label: 'Dogs', optgroup: [ 91 | { value: 'frenchy', label: 'French Bulldog' }, 92 | { value: 'pit-bull', label: 'Pit Bull' } 93 | ]}, 94 | { label: 'Cats', optgroup: [ 95 | { value: 'munchkin', label: 'Munchkin' }, 96 | { value: 'persian', label: 'Persian' } 97 | ]} 98 | ] 99 | ``` 100 | 101 | turns into 102 | 103 | ```javascript 104 | { 105 | 'frenchy': { value: 'frenchy', label: 'French Bulldog' }, 106 | 'pit-bull': { value: 'pit-bull', label: 'Pit Bull' }, 107 | 'munchkin': { value: 'munchkin', label: 'Munchkin' }, 108 | 'persian': { value: 'persian', label: 'Persian' } 109 | } 110 | ``` 111 | 112 | ### `getAllValues`: (object options) 113 | 114 | Returns an array of all option values. 115 | 116 | ### `getToggledValues`: (object prevValues, [array, string] nextValues) 117 | 118 | Returns a new array of values either added or removed. 119 | 120 | ### `getCurrentOptions`: (object options, [array, string] currentValue) 121 | 122 | Returns an array of the current option or options. 123 | 124 | ### `isOptionSelected`: ([array, string] currentValue, string value) 125 | 126 | Determines if `value` exists in or matches `currentValue`. Returns `true` or `false`. 127 | 128 |
129 | 130 | ## Run Example 131 | 132 | clone repo 133 | 134 | `git clone git@github.com:souporserious/selectly.git` 135 | 136 | move into folder 137 | 138 | `cd ~/selectly` 139 | 140 | install dependencies 141 | 142 | `npm install` 143 | 144 | run dev mode 145 | 146 | `npm run dev` 147 | 148 | open your browser and visit: `http://localhost:8080/` 149 | -------------------------------------------------------------------------------- /src/Select.jsx: -------------------------------------------------------------------------------- 1 | import React, { Component, PropTypes, Children, cloneElement } from 'react' 2 | import ReactDOM, { findDOMNode } from 'react-dom' 3 | import { Select as ARIASelect } from 'react-aria' 4 | import { Manager as PopperManager } from 'react-popper' 5 | import getToggledValues from './utils/get-toggled-values' 6 | import isOptionSelected from './utils/is-option-selected' 7 | 8 | const { Manager: SelectManager } = ARIASelect 9 | 10 | const arraysEqual = (a, b) => a.sort().join(' ') === b.sort().join(' ') 11 | 12 | const noop = () => null 13 | 14 | class Select extends Component { 15 | static childContextTypes = { 16 | selectly: PropTypes.object, 17 | } 18 | 19 | static propTypes = { 20 | multiple: PropTypes.bool, 21 | disabled: PropTypes.bool, 22 | autoWidth: PropTypes.bool, 23 | value: PropTypes.oneOfType([PropTypes.string, PropTypes.array]), 24 | onChange: PropTypes.func, 25 | } 26 | 27 | static defaultProps = { 28 | multiple: false, 29 | disabled: false, 30 | autoWidth: true, 31 | onChange: noop, 32 | } 33 | 34 | state = { 35 | isOpen: false, 36 | triggerWidth: null, 37 | value: this.props.value, 38 | selectedOptions: [], 39 | } 40 | options = [] 41 | 42 | getChildContext() { 43 | return { 44 | selectly: { 45 | ...this.state, 46 | autoWidth: this.props.autoWidth, 47 | multiple: this.props.multiple, 48 | open: this.open, 49 | close: this.close, 50 | toggle: this.toggle, 51 | addOption: this._addOption, 52 | removeOption: this._removeOption, 53 | onTriggerMeasure: this._handleTriggerMeasure, 54 | onChange: this._handleChange, 55 | }, 56 | } 57 | } 58 | 59 | componentWillReceiveProps(nextProps) { 60 | // update any new values by comparing the current values with incoming values 61 | if (nextProps.value) { 62 | if (nextProps.value.constructor === Array) { 63 | if ( 64 | (this.props.value && 65 | !arraysEqual(this.props.value, nextProps.value)) || 66 | (this.state.value && !arraysEqual(this.state.value, nextProps.value)) 67 | ) { 68 | this._setValue(nextProps.value) 69 | } 70 | } else { 71 | if ( 72 | this.props.value !== nextProps.value || 73 | this.state.value !== nextProps.value 74 | ) { 75 | this._setValue(nextProps.value) 76 | } 77 | } 78 | } 79 | 80 | // if there is an incoming disabled prop we need to make sure the options get closed 81 | if ( 82 | this.props.disabled !== nextProps.disabled && 83 | nextProps.disabled === true 84 | ) { 85 | this.close() 86 | } 87 | } 88 | 89 | open = () => { 90 | this.setState({ isOpen: true }) 91 | } 92 | 93 | close = () => { 94 | this.setState({ isOpen: false }) 95 | } 96 | 97 | toggle = () => { 98 | this.setState(state => ({ isOpen: !state.isOpen })) 99 | } 100 | 101 | _addOption = option => { 102 | // store option so we can update its state 103 | this.options.push(option) 104 | 105 | // determine if this option is selected or not 106 | if (isOptionSelected(this.state.value, option.value)) { 107 | option.setSelectedState(true) 108 | } 109 | } 110 | 111 | _removeOption = value => { 112 | this.options = this.options.filter(option => option.value !== value) 113 | } 114 | 115 | _handleTriggerMeasure = ({ width }) => { 116 | this.setState({ triggerWidth: width }) 117 | } 118 | 119 | _setValue(value, cb = noop) { 120 | const selectedOptions = [] 121 | 122 | this.options.forEach(option => { 123 | const isSelected = isOptionSelected(value, option.value) 124 | 125 | option.setSelectedState(isSelected) 126 | 127 | if (isSelected) { 128 | selectedOptions.push(option) 129 | } 130 | }) 131 | 132 | this.setState({ value, selectedOptions }, cb) 133 | } 134 | 135 | _getSelectedOptions() { 136 | return this.options.filter(option => option.getSelectedState()) 137 | } 138 | 139 | _handleChange = option => { 140 | const { multiple, onChange } = this.props 141 | const newValue = multiple 142 | ? getToggledValues(this.state.value, option.value) 143 | : option.value 144 | 145 | this._setValue(newValue, () => { 146 | onChange({ 147 | value: newValue, 148 | option: option, 149 | options: this.options, 150 | selectedOptions: this.state.selectedOptions, 151 | }) 152 | 153 | if (!multiple) { 154 | this.close() 155 | } 156 | }) 157 | } 158 | 159 | render() { 160 | const { 161 | multiple, 162 | disabled, 163 | autoWidth, 164 | onChange, 165 | children, 166 | ...restProps 167 | } = this.props 168 | return ( 169 | 170 | 171 | {children} 172 | 173 | 174 | ) 175 | } 176 | } 177 | 178 | export default Select 179 | -------------------------------------------------------------------------------- /example/index.jsx: -------------------------------------------------------------------------------- 1 | import React, { Component, Children, PropTypes, cloneElement } from 'react' 2 | import ReactDOM from 'react-dom' 3 | import { spring } from 'react-motion' 4 | import { 5 | Select, 6 | Trigger, 7 | Menu, 8 | OptionList, 9 | Option, 10 | utils, 11 | } from '../src/selectly.js' 12 | 13 | import '../src/selectly.scss' 14 | import './main.scss' 15 | 16 | const { 17 | buildOptionsLookup, 18 | getCurrentOptions, 19 | getToggledValues, 20 | getAllValues, 21 | isOptionSelected, 22 | withOptGroupProps, 23 | } = utils 24 | 25 | // TODO: 26 | // recreate these: 27 | // http://tympanus.net/Development/SelectInspiration/index4.html 28 | // accessible: 29 | // http://www.w3.org/TR/WCAG10-HTML-TECHS/#forms 30 | 31 | const OptGroup = withOptGroupProps( 32 | ({ title, children, isAllSelected, selectAll, deselectAll }) => 33 |
34 |
35 | {title} 36 |
37 | {children} 38 |
39 | ) 40 | 41 | class CustomTrigger extends Component { 42 | _renderLabel(label) { 43 | return ( 44 | 45 | {label} 46 | 47 | ) 48 | } 49 | 50 | render() { 51 | const { 52 | currentValue, 53 | emptyValue, 54 | isMultiple, 55 | isDisabled, 56 | ...restProps 57 | } = this.props 58 | const isActive = false 59 | return ( 60 | 69 | {currentValue.length > 0 70 | ? currentValue.map(({ label }) => this._renderLabel(label)) 71 | : emptyValue} 72 | 73 | ) 74 | } 75 | } 76 | 77 | class MySelect extends Component { 78 | static propTypes = { 79 | emptyValue: PropTypes.any, 80 | value: PropTypes.any, 81 | options: PropTypes.array, 82 | checkbox: PropTypes.bool, 83 | multiple: PropTypes.bool, 84 | selectAll: PropTypes.oneOfType([PropTypes.func, PropTypes.bool]), 85 | deselectAll: PropTypes.oneOfType([PropTypes.func, PropTypes.bool]), 86 | } 87 | 88 | static defaultProps = { 89 | emptyValue: '', 90 | checkbox: false, 91 | multiple: false, 92 | selectAll: false, 93 | deselectAll: false, 94 | } 95 | 96 | open() { 97 | this._select.open() 98 | } 99 | 100 | close() { 101 | this._select.close() 102 | } 103 | 104 | _renderOption({ value, label }) { 105 | const hasCheckbox = this.props.checkbox 106 | const isSelected = isOptionSelected(this.props.value, value) 107 | return ( 108 | 131 | ) 132 | } 133 | 134 | _renderOptGroup({ label, optgroup }) { 135 | return ( 136 |
  • 137 | 138 | {label} 139 | 140 | {this._renderOptions(optgroup)} 141 |
  • 142 | ) 143 | } 144 | 145 | _renderOptions(options) { 146 | return ( 147 |
      148 | {options.map( 149 | (option, index) => 150 | option.optgroup 151 | ? this._renderOptGroup(option) 152 | : this._renderOption(option) 153 | )} 154 |
    155 | ) 156 | } 157 | 158 | _renderSelectAll() { 159 | const { selectAll, deselectAll } = this.props 160 | return ( 161 |
    162 | {selectAll && 163 | } 170 | {deselectAll && 171 | } 178 |
    179 | ) 180 | } 181 | 182 | render() { 183 | const { 184 | value, 185 | emptyValue, 186 | options, 187 | multiple, 188 | onChange, 189 | selectAll, 190 | deselectAll, 191 | } = this.props 192 | const currentOptions = getCurrentOptions(options, value) 193 | return ( 194 | 212 | ) 213 | } 214 | } 215 | 216 | class Demo1 extends Component { 217 | state = { 218 | value: null, 219 | options: [ 220 | { 221 | label: 'Dogs', 222 | optgroup: [ 223 | { value: 'beagle', label: 'Beagle' }, 224 | { value: 'boxer', label: 'Boxer' }, 225 | { value: 'frenchy', label: 'French Bulldog' }, 226 | { value: 'pit-bull', label: 'Pit Bull' }, 227 | ], 228 | }, 229 | { 230 | label: 'Cats', 231 | optgroup: [ 232 | { value: 'bengal', label: 'Bengal' }, 233 | { value: 'egyptian', label: 'Egyptian' }, 234 | { value: 'munchkin', label: 'Munchkin' }, 235 | { value: 'persian', label: 'Persian' }, 236 | ], 237 | }, 238 | ], 239 | } 240 | 241 | _openSelectMenu = () => { 242 | this._select.open() 243 | } 244 | 245 | _handleChange = ({ value }) => { 246 | this.setState({ value }) 247 | } 248 | 249 | render() { 250 | const { value, options } = this.state 251 | return ( 252 |
    253 | 256 | (this._select = c)} 258 | value={value} 259 | options={options} 260 | onChange={this._handleChange} 261 | /> 262 |
    263 | ) 264 | } 265 | } 266 | 267 | class Demo2 extends Component { 268 | state = { 269 | value: ['the-shining', 'halloween'], 270 | options: [ 271 | { value: 'the-shining', label: 'The Shining' }, 272 | { value: 'poltergeist', label: 'Poltergeist' }, 273 | { value: 'halloween', label: 'Halloween' }, 274 | { value: 'pumpkinhead', label: 'Pumpkinhead' }, 275 | ], 276 | } 277 | 278 | _handleChange = ({ value }) => { 279 | this.setState({ value }) 280 | } 281 | 282 | _handleSelectAll = () => { 283 | this.setState({ 284 | value: getAllValues(this.state.options), 285 | }) 286 | } 287 | 288 | _handleDeselectAll = () => { 289 | this.setState({ 290 | value: [], 291 | }) 292 | } 293 | 294 | render() { 295 | const { value, options } = this.state 296 | return ( 297 |
    298 | 299 | 309 |
    310 | ) 311 | } 312 | } 313 | 314 | class MultiSelect extends Component { 315 | constructor(props) { 316 | super(props) 317 | this.state = { 318 | defaultValue: 'Select a color', 319 | value: [], 320 | options: ['red', 'green', 'blue'], 321 | } 322 | } 323 | 324 | _handleChange = ({ value }) => { 325 | this.setState({ value }) 326 | } 327 | 328 | render() { 329 | const { defaultValue, value, options } = this.state 330 | return ( 331 | 377 | {value} 378 | } 379 | 380 | )} 381 | 382 | 383 | 384 | ) 385 | } 386 | } 387 | 388 | class MenuOnly extends Component { 389 | state = { currentValue: 'Select a value below' } 390 | _handleChange = option => { 391 | this.setState({ currentValue: option.value }) 392 | } 393 | render() { 394 | const { currentValue } = this.state 395 | return ( 396 | 404 | ) 405 | } 406 | } 407 | 408 | class App extends Component { 409 | render() { 410 | return ( 411 |
    412 |
    413 | 414 |
    415 |
    416 | 417 |
    418 |
    419 | 420 |
    421 | 422 |
    423 | ) 424 | } 425 | } 426 | 427 | ReactDOM.render(, document.getElementById('app')) 428 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | a11y-focus-scope@^1.1.3: 6 | version "1.1.3" 7 | resolved "https://registry.yarnpkg.com/a11y-focus-scope/-/a11y-focus-scope-1.1.3.tgz#f795384d4dd40ccec1c4a160ef4d13371d015ae8" 8 | dependencies: 9 | focusin "^2.0.0" 10 | tabbable "^1.0.0" 11 | 12 | abbrev@1: 13 | version "1.1.0" 14 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 15 | 16 | accepts@~1.3.3: 17 | version "1.3.3" 18 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.3.tgz#c3ca7434938648c3e0d9c1e328dd68b622c284ca" 19 | dependencies: 20 | mime-types "~2.1.11" 21 | negotiator "0.6.1" 22 | 23 | acorn@^3.0.0: 24 | version "3.3.0" 25 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 26 | 27 | acorn@^4.0.3: 28 | version "4.0.13" 29 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 30 | 31 | ajv@^4.9.1: 32 | version "4.11.8" 33 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 34 | dependencies: 35 | co "^4.6.0" 36 | json-stable-stringify "^1.0.1" 37 | 38 | align-text@^0.1.1, align-text@^0.1.3: 39 | version "0.1.4" 40 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 41 | dependencies: 42 | kind-of "^3.0.2" 43 | longest "^1.0.1" 44 | repeat-string "^1.5.2" 45 | 46 | alphanum-sort@^1.0.1, alphanum-sort@^1.0.2: 47 | version "1.0.2" 48 | resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3" 49 | 50 | amdefine@>=0.0.4: 51 | version "1.0.1" 52 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 53 | 54 | ansi-regex@^2.0.0: 55 | version "2.1.1" 56 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 57 | 58 | ansi-styles@^2.2.1: 59 | version "2.2.1" 60 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 61 | 62 | anymatch@^1.3.0: 63 | version "1.3.0" 64 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 65 | dependencies: 66 | arrify "^1.0.0" 67 | micromatch "^2.1.5" 68 | 69 | aproba@^1.0.3: 70 | version "1.1.2" 71 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.2.tgz#45c6629094de4e96f693ef7eab74ae079c240fc1" 72 | 73 | are-we-there-yet@~1.1.2: 74 | version "1.1.4" 75 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 76 | dependencies: 77 | delegates "^1.0.0" 78 | readable-stream "^2.0.6" 79 | 80 | argparse@^1.0.7: 81 | version "1.0.9" 82 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 83 | dependencies: 84 | sprintf-js "~1.0.2" 85 | 86 | arr-diff@^2.0.0: 87 | version "2.0.0" 88 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 89 | dependencies: 90 | arr-flatten "^1.0.1" 91 | 92 | arr-flatten@^1.0.1: 93 | version "1.0.3" 94 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1" 95 | 96 | array-find-index@^1.0.1: 97 | version "1.0.2" 98 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 99 | 100 | array-flatten@1.1.1: 101 | version "1.1.1" 102 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" 103 | 104 | array-unique@^0.2.1: 105 | version "0.2.1" 106 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 107 | 108 | arrify@^1.0.0: 109 | version "1.0.1" 110 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 111 | 112 | asap@~2.0.3: 113 | version "2.0.5" 114 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.5.tgz#522765b50c3510490e52d7dcfe085ef9ba96958f" 115 | 116 | asn1.js@^4.0.0: 117 | version "4.9.1" 118 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.1.tgz#48ba240b45a9280e94748990ba597d216617fd40" 119 | dependencies: 120 | bn.js "^4.0.0" 121 | inherits "^2.0.1" 122 | minimalistic-assert "^1.0.0" 123 | 124 | asn1@~0.2.3: 125 | version "0.2.3" 126 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 127 | 128 | assert-plus@1.0.0, assert-plus@^1.0.0: 129 | version "1.0.0" 130 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 131 | 132 | assert-plus@^0.2.0: 133 | version "0.2.0" 134 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 135 | 136 | assert@^1.1.1: 137 | version "1.4.1" 138 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 139 | dependencies: 140 | util "0.10.3" 141 | 142 | ast-types@0.9.6: 143 | version "0.9.6" 144 | resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.9.6.tgz#102c9e9e9005d3e7e3829bf0c4fa24ee862ee9b9" 145 | 146 | async-each@^1.0.0: 147 | version "1.0.1" 148 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 149 | 150 | async-foreach@^0.1.3: 151 | version "0.1.3" 152 | resolved "https://registry.yarnpkg.com/async-foreach/-/async-foreach-0.1.3.tgz#36121f845c0578172de419a97dbeb1d16ec34542" 153 | 154 | async@0.9.0, async@^0.9.0: 155 | version "0.9.0" 156 | resolved "https://registry.yarnpkg.com/async/-/async-0.9.0.tgz#ac3613b1da9bed1b47510bb4651b8931e47146c7" 157 | 158 | async@^1.3.0: 159 | version "1.5.2" 160 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 161 | 162 | async@^2.0.1: 163 | version "2.4.1" 164 | resolved "https://registry.yarnpkg.com/async/-/async-2.4.1.tgz#62a56b279c98a11d0987096a01cc3eeb8eb7bbd7" 165 | dependencies: 166 | lodash "^4.14.0" 167 | 168 | async@~0.2.6: 169 | version "0.2.10" 170 | resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1" 171 | 172 | asynckit@^0.4.0: 173 | version "0.4.0" 174 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 175 | 176 | autoprefixer@^6.3.1: 177 | version "6.7.7" 178 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-6.7.7.tgz#1dbd1c835658e35ce3f9984099db00585c782014" 179 | dependencies: 180 | browserslist "^1.7.6" 181 | caniuse-db "^1.0.30000634" 182 | normalize-range "^0.1.2" 183 | num2fraction "^1.2.2" 184 | postcss "^5.2.16" 185 | postcss-value-parser "^3.2.3" 186 | 187 | aws-sign2@~0.6.0: 188 | version "0.6.0" 189 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 190 | 191 | aws4@^1.2.1: 192 | version "1.6.0" 193 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 194 | 195 | babel-cli@^6.16.0: 196 | version "6.24.1" 197 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.24.1.tgz#207cd705bba61489b2ea41b5312341cf6aca2283" 198 | dependencies: 199 | babel-core "^6.24.1" 200 | babel-polyfill "^6.23.0" 201 | babel-register "^6.24.1" 202 | babel-runtime "^6.22.0" 203 | commander "^2.8.1" 204 | convert-source-map "^1.1.0" 205 | fs-readdir-recursive "^1.0.0" 206 | glob "^7.0.0" 207 | lodash "^4.2.0" 208 | output-file-sync "^1.1.0" 209 | path-is-absolute "^1.0.0" 210 | slash "^1.0.0" 211 | source-map "^0.5.0" 212 | v8flags "^2.0.10" 213 | optionalDependencies: 214 | chokidar "^1.6.1" 215 | 216 | babel-code-frame@^6.11.0, babel-code-frame@^6.22.0: 217 | version "6.22.0" 218 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 219 | dependencies: 220 | chalk "^1.1.0" 221 | esutils "^2.0.2" 222 | js-tokens "^3.0.0" 223 | 224 | babel-core@^6.17.0, babel-core@^6.24.1: 225 | version "6.25.0" 226 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.25.0.tgz#7dd42b0463c742e9d5296deb3ec67a9322dad729" 227 | dependencies: 228 | babel-code-frame "^6.22.0" 229 | babel-generator "^6.25.0" 230 | babel-helpers "^6.24.1" 231 | babel-messages "^6.23.0" 232 | babel-register "^6.24.1" 233 | babel-runtime "^6.22.0" 234 | babel-template "^6.25.0" 235 | babel-traverse "^6.25.0" 236 | babel-types "^6.25.0" 237 | babylon "^6.17.2" 238 | convert-source-map "^1.1.0" 239 | debug "^2.1.1" 240 | json5 "^0.5.0" 241 | lodash "^4.2.0" 242 | minimatch "^3.0.2" 243 | path-is-absolute "^1.0.0" 244 | private "^0.1.6" 245 | slash "^1.0.0" 246 | source-map "^0.5.0" 247 | 248 | babel-generator@^6.25.0: 249 | version "6.25.0" 250 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.25.0.tgz#33a1af70d5f2890aeb465a4a7793c1df6a9ea9fc" 251 | dependencies: 252 | babel-messages "^6.23.0" 253 | babel-runtime "^6.22.0" 254 | babel-types "^6.25.0" 255 | detect-indent "^4.0.0" 256 | jsesc "^1.3.0" 257 | lodash "^4.2.0" 258 | source-map "^0.5.0" 259 | trim-right "^1.0.1" 260 | 261 | babel-helper-bindify-decorators@^6.24.1: 262 | version "6.24.1" 263 | resolved "https://registry.yarnpkg.com/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.24.1.tgz#14c19e5f142d7b47f19a52431e52b1ccbc40a330" 264 | dependencies: 265 | babel-runtime "^6.22.0" 266 | babel-traverse "^6.24.1" 267 | babel-types "^6.24.1" 268 | 269 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 270 | version "6.24.1" 271 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 272 | dependencies: 273 | babel-helper-explode-assignable-expression "^6.24.1" 274 | babel-runtime "^6.22.0" 275 | babel-types "^6.24.1" 276 | 277 | babel-helper-builder-react-jsx@^6.24.1: 278 | version "6.24.1" 279 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.24.1.tgz#0ad7917e33c8d751e646daca4e77cc19377d2cbc" 280 | dependencies: 281 | babel-runtime "^6.22.0" 282 | babel-types "^6.24.1" 283 | esutils "^2.0.0" 284 | 285 | babel-helper-call-delegate@^6.24.1: 286 | version "6.24.1" 287 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 288 | dependencies: 289 | babel-helper-hoist-variables "^6.24.1" 290 | babel-runtime "^6.22.0" 291 | babel-traverse "^6.24.1" 292 | babel-types "^6.24.1" 293 | 294 | babel-helper-define-map@^6.24.1: 295 | version "6.24.1" 296 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz#7a9747f258d8947d32d515f6aa1c7bd02204a080" 297 | dependencies: 298 | babel-helper-function-name "^6.24.1" 299 | babel-runtime "^6.22.0" 300 | babel-types "^6.24.1" 301 | lodash "^4.2.0" 302 | 303 | babel-helper-explode-assignable-expression@^6.24.1: 304 | version "6.24.1" 305 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 306 | dependencies: 307 | babel-runtime "^6.22.0" 308 | babel-traverse "^6.24.1" 309 | babel-types "^6.24.1" 310 | 311 | babel-helper-explode-class@^6.24.1: 312 | version "6.24.1" 313 | resolved "https://registry.yarnpkg.com/babel-helper-explode-class/-/babel-helper-explode-class-6.24.1.tgz#7dc2a3910dee007056e1e31d640ced3d54eaa9eb" 314 | dependencies: 315 | babel-helper-bindify-decorators "^6.24.1" 316 | babel-runtime "^6.22.0" 317 | babel-traverse "^6.24.1" 318 | babel-types "^6.24.1" 319 | 320 | babel-helper-function-name@^6.24.1: 321 | version "6.24.1" 322 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 323 | dependencies: 324 | babel-helper-get-function-arity "^6.24.1" 325 | babel-runtime "^6.22.0" 326 | babel-template "^6.24.1" 327 | babel-traverse "^6.24.1" 328 | babel-types "^6.24.1" 329 | 330 | babel-helper-get-function-arity@^6.24.1: 331 | version "6.24.1" 332 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 333 | dependencies: 334 | babel-runtime "^6.22.0" 335 | babel-types "^6.24.1" 336 | 337 | babel-helper-hoist-variables@^6.24.1: 338 | version "6.24.1" 339 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 340 | dependencies: 341 | babel-runtime "^6.22.0" 342 | babel-types "^6.24.1" 343 | 344 | babel-helper-optimise-call-expression@^6.24.1: 345 | version "6.24.1" 346 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 347 | dependencies: 348 | babel-runtime "^6.22.0" 349 | babel-types "^6.24.1" 350 | 351 | babel-helper-regex@^6.24.1: 352 | version "6.24.1" 353 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8" 354 | dependencies: 355 | babel-runtime "^6.22.0" 356 | babel-types "^6.24.1" 357 | lodash "^4.2.0" 358 | 359 | babel-helper-remap-async-to-generator@^6.24.1: 360 | version "6.24.1" 361 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 362 | dependencies: 363 | babel-helper-function-name "^6.24.1" 364 | babel-runtime "^6.22.0" 365 | babel-template "^6.24.1" 366 | babel-traverse "^6.24.1" 367 | babel-types "^6.24.1" 368 | 369 | babel-helper-replace-supers@^6.24.1: 370 | version "6.24.1" 371 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 372 | dependencies: 373 | babel-helper-optimise-call-expression "^6.24.1" 374 | babel-messages "^6.23.0" 375 | babel-runtime "^6.22.0" 376 | babel-template "^6.24.1" 377 | babel-traverse "^6.24.1" 378 | babel-types "^6.24.1" 379 | 380 | babel-helpers@^6.24.1: 381 | version "6.24.1" 382 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 383 | dependencies: 384 | babel-runtime "^6.22.0" 385 | babel-template "^6.24.1" 386 | 387 | babel-loader@^6.2.5: 388 | version "6.4.1" 389 | resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-6.4.1.tgz#0b34112d5b0748a8dcdbf51acf6f9bd42d50b8ca" 390 | dependencies: 391 | find-cache-dir "^0.1.1" 392 | loader-utils "^0.2.16" 393 | mkdirp "^0.5.1" 394 | object-assign "^4.0.1" 395 | 396 | babel-messages@^6.23.0: 397 | version "6.23.0" 398 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 399 | dependencies: 400 | babel-runtime "^6.22.0" 401 | 402 | babel-plugin-add-module-exports@^0.2.1: 403 | version "0.2.1" 404 | resolved "https://registry.yarnpkg.com/babel-plugin-add-module-exports/-/babel-plugin-add-module-exports-0.2.1.tgz#9ae9a1f4a8dc67f0cdec4f4aeda1e43a5ff65e25" 405 | 406 | babel-plugin-check-es2015-constants@^6.22.0: 407 | version "6.22.0" 408 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 409 | dependencies: 410 | babel-runtime "^6.22.0" 411 | 412 | babel-plugin-syntax-async-functions@^6.8.0: 413 | version "6.13.0" 414 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 415 | 416 | babel-plugin-syntax-async-generators@^6.5.0: 417 | version "6.13.0" 418 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a" 419 | 420 | babel-plugin-syntax-class-constructor-call@^6.18.0: 421 | version "6.18.0" 422 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-constructor-call/-/babel-plugin-syntax-class-constructor-call-6.18.0.tgz#9cb9d39fe43c8600bec8146456ddcbd4e1a76416" 423 | 424 | babel-plugin-syntax-class-properties@^6.8.0: 425 | version "6.13.0" 426 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 427 | 428 | babel-plugin-syntax-decorators@^6.13.0: 429 | version "6.13.0" 430 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b" 431 | 432 | babel-plugin-syntax-do-expressions@^6.8.0: 433 | version "6.13.0" 434 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-do-expressions/-/babel-plugin-syntax-do-expressions-6.13.0.tgz#5747756139aa26d390d09410b03744ba07e4796d" 435 | 436 | babel-plugin-syntax-dynamic-import@^6.18.0: 437 | version "6.18.0" 438 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da" 439 | 440 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 441 | version "6.13.0" 442 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 443 | 444 | babel-plugin-syntax-export-extensions@^6.8.0: 445 | version "6.13.0" 446 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-export-extensions/-/babel-plugin-syntax-export-extensions-6.13.0.tgz#70a1484f0f9089a4e84ad44bac353c95b9b12721" 447 | 448 | babel-plugin-syntax-flow@^6.18.0: 449 | version "6.18.0" 450 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 451 | 452 | babel-plugin-syntax-function-bind@^6.8.0: 453 | version "6.13.0" 454 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-function-bind/-/babel-plugin-syntax-function-bind-6.13.0.tgz#48c495f177bdf31a981e732f55adc0bdd2601f46" 455 | 456 | babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0: 457 | version "6.18.0" 458 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 459 | 460 | babel-plugin-syntax-object-rest-spread@^6.8.0: 461 | version "6.13.0" 462 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 463 | 464 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 465 | version "6.22.0" 466 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 467 | 468 | babel-plugin-transform-async-generator-functions@^6.24.1: 469 | version "6.24.1" 470 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.24.1.tgz#f058900145fd3e9907a6ddf28da59f215258a5db" 471 | dependencies: 472 | babel-helper-remap-async-to-generator "^6.24.1" 473 | babel-plugin-syntax-async-generators "^6.5.0" 474 | babel-runtime "^6.22.0" 475 | 476 | babel-plugin-transform-async-to-generator@^6.24.1: 477 | version "6.24.1" 478 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 479 | dependencies: 480 | babel-helper-remap-async-to-generator "^6.24.1" 481 | babel-plugin-syntax-async-functions "^6.8.0" 482 | babel-runtime "^6.22.0" 483 | 484 | babel-plugin-transform-class-constructor-call@^6.24.1: 485 | version "6.24.1" 486 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-constructor-call/-/babel-plugin-transform-class-constructor-call-6.24.1.tgz#80dc285505ac067dcb8d6c65e2f6f11ab7765ef9" 487 | dependencies: 488 | babel-plugin-syntax-class-constructor-call "^6.18.0" 489 | babel-runtime "^6.22.0" 490 | babel-template "^6.24.1" 491 | 492 | babel-plugin-transform-class-properties@^6.24.1: 493 | version "6.24.1" 494 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac" 495 | dependencies: 496 | babel-helper-function-name "^6.24.1" 497 | babel-plugin-syntax-class-properties "^6.8.0" 498 | babel-runtime "^6.22.0" 499 | babel-template "^6.24.1" 500 | 501 | babel-plugin-transform-decorators@^6.24.1: 502 | version "6.24.1" 503 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.24.1.tgz#788013d8f8c6b5222bdf7b344390dfd77569e24d" 504 | dependencies: 505 | babel-helper-explode-class "^6.24.1" 506 | babel-plugin-syntax-decorators "^6.13.0" 507 | babel-runtime "^6.22.0" 508 | babel-template "^6.24.1" 509 | babel-types "^6.24.1" 510 | 511 | babel-plugin-transform-do-expressions@^6.22.0: 512 | version "6.22.0" 513 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-do-expressions/-/babel-plugin-transform-do-expressions-6.22.0.tgz#28ccaf92812d949c2cd1281f690c8fdc468ae9bb" 514 | dependencies: 515 | babel-plugin-syntax-do-expressions "^6.8.0" 516 | babel-runtime "^6.22.0" 517 | 518 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 519 | version "6.22.0" 520 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 521 | dependencies: 522 | babel-runtime "^6.22.0" 523 | 524 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 525 | version "6.22.0" 526 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 527 | dependencies: 528 | babel-runtime "^6.22.0" 529 | 530 | babel-plugin-transform-es2015-block-scoping@^6.24.1: 531 | version "6.24.1" 532 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz#76c295dc3a4741b1665adfd3167215dcff32a576" 533 | dependencies: 534 | babel-runtime "^6.22.0" 535 | babel-template "^6.24.1" 536 | babel-traverse "^6.24.1" 537 | babel-types "^6.24.1" 538 | lodash "^4.2.0" 539 | 540 | babel-plugin-transform-es2015-classes@^6.24.1: 541 | version "6.24.1" 542 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 543 | dependencies: 544 | babel-helper-define-map "^6.24.1" 545 | babel-helper-function-name "^6.24.1" 546 | babel-helper-optimise-call-expression "^6.24.1" 547 | babel-helper-replace-supers "^6.24.1" 548 | babel-messages "^6.23.0" 549 | babel-runtime "^6.22.0" 550 | babel-template "^6.24.1" 551 | babel-traverse "^6.24.1" 552 | babel-types "^6.24.1" 553 | 554 | babel-plugin-transform-es2015-computed-properties@^6.24.1: 555 | version "6.24.1" 556 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 557 | dependencies: 558 | babel-runtime "^6.22.0" 559 | babel-template "^6.24.1" 560 | 561 | babel-plugin-transform-es2015-destructuring@^6.22.0: 562 | version "6.23.0" 563 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 564 | dependencies: 565 | babel-runtime "^6.22.0" 566 | 567 | babel-plugin-transform-es2015-duplicate-keys@^6.24.1: 568 | version "6.24.1" 569 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 570 | dependencies: 571 | babel-runtime "^6.22.0" 572 | babel-types "^6.24.1" 573 | 574 | babel-plugin-transform-es2015-for-of@^6.22.0: 575 | version "6.23.0" 576 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 577 | dependencies: 578 | babel-runtime "^6.22.0" 579 | 580 | babel-plugin-transform-es2015-function-name@^6.24.1: 581 | version "6.24.1" 582 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 583 | dependencies: 584 | babel-helper-function-name "^6.24.1" 585 | babel-runtime "^6.22.0" 586 | babel-types "^6.24.1" 587 | 588 | babel-plugin-transform-es2015-literals@^6.22.0: 589 | version "6.22.0" 590 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 591 | dependencies: 592 | babel-runtime "^6.22.0" 593 | 594 | babel-plugin-transform-es2015-modules-amd@^6.24.1: 595 | version "6.24.1" 596 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 597 | dependencies: 598 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 599 | babel-runtime "^6.22.0" 600 | babel-template "^6.24.1" 601 | 602 | babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 603 | version "6.24.1" 604 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" 605 | dependencies: 606 | babel-plugin-transform-strict-mode "^6.24.1" 607 | babel-runtime "^6.22.0" 608 | babel-template "^6.24.1" 609 | babel-types "^6.24.1" 610 | 611 | babel-plugin-transform-es2015-modules-systemjs@^6.24.1: 612 | version "6.24.1" 613 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 614 | dependencies: 615 | babel-helper-hoist-variables "^6.24.1" 616 | babel-runtime "^6.22.0" 617 | babel-template "^6.24.1" 618 | 619 | babel-plugin-transform-es2015-modules-umd@^6.24.1: 620 | version "6.24.1" 621 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 622 | dependencies: 623 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 624 | babel-runtime "^6.22.0" 625 | babel-template "^6.24.1" 626 | 627 | babel-plugin-transform-es2015-object-super@^6.24.1: 628 | version "6.24.1" 629 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 630 | dependencies: 631 | babel-helper-replace-supers "^6.24.1" 632 | babel-runtime "^6.22.0" 633 | 634 | babel-plugin-transform-es2015-parameters@^6.24.1: 635 | version "6.24.1" 636 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 637 | dependencies: 638 | babel-helper-call-delegate "^6.24.1" 639 | babel-helper-get-function-arity "^6.24.1" 640 | babel-runtime "^6.22.0" 641 | babel-template "^6.24.1" 642 | babel-traverse "^6.24.1" 643 | babel-types "^6.24.1" 644 | 645 | babel-plugin-transform-es2015-shorthand-properties@^6.24.1: 646 | version "6.24.1" 647 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 648 | dependencies: 649 | babel-runtime "^6.22.0" 650 | babel-types "^6.24.1" 651 | 652 | babel-plugin-transform-es2015-spread@^6.22.0: 653 | version "6.22.0" 654 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 655 | dependencies: 656 | babel-runtime "^6.22.0" 657 | 658 | babel-plugin-transform-es2015-sticky-regex@^6.24.1: 659 | version "6.24.1" 660 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 661 | dependencies: 662 | babel-helper-regex "^6.24.1" 663 | babel-runtime "^6.22.0" 664 | babel-types "^6.24.1" 665 | 666 | babel-plugin-transform-es2015-template-literals@^6.22.0: 667 | version "6.22.0" 668 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 669 | dependencies: 670 | babel-runtime "^6.22.0" 671 | 672 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 673 | version "6.23.0" 674 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 675 | dependencies: 676 | babel-runtime "^6.22.0" 677 | 678 | babel-plugin-transform-es2015-unicode-regex@^6.24.1: 679 | version "6.24.1" 680 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 681 | dependencies: 682 | babel-helper-regex "^6.24.1" 683 | babel-runtime "^6.22.0" 684 | regexpu-core "^2.0.0" 685 | 686 | babel-plugin-transform-exponentiation-operator@^6.24.1: 687 | version "6.24.1" 688 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 689 | dependencies: 690 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 691 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 692 | babel-runtime "^6.22.0" 693 | 694 | babel-plugin-transform-export-extensions@^6.22.0: 695 | version "6.22.0" 696 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-export-extensions/-/babel-plugin-transform-export-extensions-6.22.0.tgz#53738b47e75e8218589eea946cbbd39109bbe653" 697 | dependencies: 698 | babel-plugin-syntax-export-extensions "^6.8.0" 699 | babel-runtime "^6.22.0" 700 | 701 | babel-plugin-transform-flow-strip-types@^6.22.0: 702 | version "6.22.0" 703 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" 704 | dependencies: 705 | babel-plugin-syntax-flow "^6.18.0" 706 | babel-runtime "^6.22.0" 707 | 708 | babel-plugin-transform-function-bind@^6.22.0: 709 | version "6.22.0" 710 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-function-bind/-/babel-plugin-transform-function-bind-6.22.0.tgz#c6fb8e96ac296a310b8cf8ea401462407ddf6a97" 711 | dependencies: 712 | babel-plugin-syntax-function-bind "^6.8.0" 713 | babel-runtime "^6.22.0" 714 | 715 | babel-plugin-transform-object-rest-spread@^6.22.0: 716 | version "6.23.0" 717 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz#875d6bc9be761c58a2ae3feee5dc4895d8c7f921" 718 | dependencies: 719 | babel-plugin-syntax-object-rest-spread "^6.8.0" 720 | babel-runtime "^6.22.0" 721 | 722 | babel-plugin-transform-react-display-name@^6.23.0: 723 | version "6.25.0" 724 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz#67e2bf1f1e9c93ab08db96792e05392bf2cc28d1" 725 | dependencies: 726 | babel-runtime "^6.22.0" 727 | 728 | babel-plugin-transform-react-jsx-self@^6.22.0: 729 | version "6.22.0" 730 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e" 731 | dependencies: 732 | babel-plugin-syntax-jsx "^6.8.0" 733 | babel-runtime "^6.22.0" 734 | 735 | babel-plugin-transform-react-jsx-source@^6.22.0: 736 | version "6.22.0" 737 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" 738 | dependencies: 739 | babel-plugin-syntax-jsx "^6.8.0" 740 | babel-runtime "^6.22.0" 741 | 742 | babel-plugin-transform-react-jsx@^6.24.1: 743 | version "6.24.1" 744 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3" 745 | dependencies: 746 | babel-helper-builder-react-jsx "^6.24.1" 747 | babel-plugin-syntax-jsx "^6.8.0" 748 | babel-runtime "^6.22.0" 749 | 750 | babel-plugin-transform-regenerator@^6.24.1: 751 | version "6.24.1" 752 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz#b8da305ad43c3c99b4848e4fe4037b770d23c418" 753 | dependencies: 754 | regenerator-transform "0.9.11" 755 | 756 | babel-plugin-transform-strict-mode@^6.24.1: 757 | version "6.24.1" 758 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 759 | dependencies: 760 | babel-runtime "^6.22.0" 761 | babel-types "^6.24.1" 762 | 763 | babel-polyfill@^6.23.0: 764 | version "6.23.0" 765 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d" 766 | dependencies: 767 | babel-runtime "^6.22.0" 768 | core-js "^2.4.0" 769 | regenerator-runtime "^0.10.0" 770 | 771 | babel-preset-es2015@^6.16.0: 772 | version "6.24.1" 773 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" 774 | dependencies: 775 | babel-plugin-check-es2015-constants "^6.22.0" 776 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 777 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 778 | babel-plugin-transform-es2015-block-scoping "^6.24.1" 779 | babel-plugin-transform-es2015-classes "^6.24.1" 780 | babel-plugin-transform-es2015-computed-properties "^6.24.1" 781 | babel-plugin-transform-es2015-destructuring "^6.22.0" 782 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1" 783 | babel-plugin-transform-es2015-for-of "^6.22.0" 784 | babel-plugin-transform-es2015-function-name "^6.24.1" 785 | babel-plugin-transform-es2015-literals "^6.22.0" 786 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 787 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 788 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1" 789 | babel-plugin-transform-es2015-modules-umd "^6.24.1" 790 | babel-plugin-transform-es2015-object-super "^6.24.1" 791 | babel-plugin-transform-es2015-parameters "^6.24.1" 792 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1" 793 | babel-plugin-transform-es2015-spread "^6.22.0" 794 | babel-plugin-transform-es2015-sticky-regex "^6.24.1" 795 | babel-plugin-transform-es2015-template-literals "^6.22.0" 796 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 797 | babel-plugin-transform-es2015-unicode-regex "^6.24.1" 798 | babel-plugin-transform-regenerator "^6.24.1" 799 | 800 | babel-preset-flow@^6.23.0: 801 | version "6.23.0" 802 | resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d" 803 | dependencies: 804 | babel-plugin-transform-flow-strip-types "^6.22.0" 805 | 806 | babel-preset-react@^6.16.0: 807 | version "6.24.1" 808 | resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.24.1.tgz#ba69dfaea45fc3ec639b6a4ecea6e17702c91380" 809 | dependencies: 810 | babel-plugin-syntax-jsx "^6.3.13" 811 | babel-plugin-transform-react-display-name "^6.23.0" 812 | babel-plugin-transform-react-jsx "^6.24.1" 813 | babel-plugin-transform-react-jsx-self "^6.22.0" 814 | babel-plugin-transform-react-jsx-source "^6.22.0" 815 | babel-preset-flow "^6.23.0" 816 | 817 | babel-preset-stage-0@^6.16.0: 818 | version "6.24.1" 819 | resolved "https://registry.yarnpkg.com/babel-preset-stage-0/-/babel-preset-stage-0-6.24.1.tgz#5642d15042f91384d7e5af8bc88b1db95b039e6a" 820 | dependencies: 821 | babel-plugin-transform-do-expressions "^6.22.0" 822 | babel-plugin-transform-function-bind "^6.22.0" 823 | babel-preset-stage-1 "^6.24.1" 824 | 825 | babel-preset-stage-1@^6.24.1: 826 | version "6.24.1" 827 | resolved "https://registry.yarnpkg.com/babel-preset-stage-1/-/babel-preset-stage-1-6.24.1.tgz#7692cd7dcd6849907e6ae4a0a85589cfb9e2bfb0" 828 | dependencies: 829 | babel-plugin-transform-class-constructor-call "^6.24.1" 830 | babel-plugin-transform-export-extensions "^6.22.0" 831 | babel-preset-stage-2 "^6.24.1" 832 | 833 | babel-preset-stage-2@^6.24.1: 834 | version "6.24.1" 835 | resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.24.1.tgz#d9e2960fb3d71187f0e64eec62bc07767219bdc1" 836 | dependencies: 837 | babel-plugin-syntax-dynamic-import "^6.18.0" 838 | babel-plugin-transform-class-properties "^6.24.1" 839 | babel-plugin-transform-decorators "^6.24.1" 840 | babel-preset-stage-3 "^6.24.1" 841 | 842 | babel-preset-stage-3@^6.24.1: 843 | version "6.24.1" 844 | resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.24.1.tgz#836ada0a9e7a7fa37cb138fb9326f87934a48395" 845 | dependencies: 846 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 847 | babel-plugin-transform-async-generator-functions "^6.24.1" 848 | babel-plugin-transform-async-to-generator "^6.24.1" 849 | babel-plugin-transform-exponentiation-operator "^6.24.1" 850 | babel-plugin-transform-object-rest-spread "^6.22.0" 851 | 852 | babel-register@^6.24.1: 853 | version "6.24.1" 854 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 855 | dependencies: 856 | babel-core "^6.24.1" 857 | babel-runtime "^6.22.0" 858 | core-js "^2.4.0" 859 | home-or-tmp "^2.0.0" 860 | lodash "^4.2.0" 861 | mkdirp "^0.5.1" 862 | source-map-support "^0.4.2" 863 | 864 | babel-runtime@^6.18.0, babel-runtime@^6.22.0: 865 | version "6.23.0" 866 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 867 | dependencies: 868 | core-js "^2.4.0" 869 | regenerator-runtime "^0.10.0" 870 | 871 | babel-template@^6.24.1, babel-template@^6.25.0: 872 | version "6.25.0" 873 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.25.0.tgz#665241166b7c2aa4c619d71e192969552b10c071" 874 | dependencies: 875 | babel-runtime "^6.22.0" 876 | babel-traverse "^6.25.0" 877 | babel-types "^6.25.0" 878 | babylon "^6.17.2" 879 | lodash "^4.2.0" 880 | 881 | babel-traverse@^6.24.1, babel-traverse@^6.25.0: 882 | version "6.25.0" 883 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.25.0.tgz#2257497e2fcd19b89edc13c4c91381f9512496f1" 884 | dependencies: 885 | babel-code-frame "^6.22.0" 886 | babel-messages "^6.23.0" 887 | babel-runtime "^6.22.0" 888 | babel-types "^6.25.0" 889 | babylon "^6.17.2" 890 | debug "^2.2.0" 891 | globals "^9.0.0" 892 | invariant "^2.2.0" 893 | lodash "^4.2.0" 894 | 895 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.25.0: 896 | version "6.25.0" 897 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.25.0.tgz#70afb248d5660e5d18f811d91c8303b54134a18e" 898 | dependencies: 899 | babel-runtime "^6.22.0" 900 | esutils "^2.0.2" 901 | lodash "^4.2.0" 902 | to-fast-properties "^1.0.1" 903 | 904 | babylon@^6.17.2: 905 | version "6.17.4" 906 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.4.tgz#3e8b7402b88d22c3423e137a1577883b15ff869a" 907 | 908 | balanced-match@^0.4.2: 909 | version "0.4.2" 910 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 911 | 912 | balanced-match@^1.0.0: 913 | version "1.0.0" 914 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 915 | 916 | base62@^1.1.0: 917 | version "1.2.0" 918 | resolved "https://registry.yarnpkg.com/base62/-/base62-1.2.0.tgz#31e7e560dc846c9f44c1a531df6514da35474157" 919 | 920 | base64-js@^1.0.2: 921 | version "1.2.0" 922 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1" 923 | 924 | batch@0.6.1: 925 | version "0.6.1" 926 | resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16" 927 | 928 | bcrypt-pbkdf@^1.0.0: 929 | version "1.0.1" 930 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 931 | dependencies: 932 | tweetnacl "^0.14.3" 933 | 934 | big.js@^3.1.3: 935 | version "3.1.3" 936 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.1.3.tgz#4cada2193652eb3ca9ec8e55c9015669c9806978" 937 | 938 | binary-extensions@^1.0.0: 939 | version "1.8.0" 940 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 941 | 942 | block-stream@*: 943 | version "0.0.9" 944 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 945 | dependencies: 946 | inherits "~2.0.0" 947 | 948 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: 949 | version "4.11.6" 950 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.6.tgz#53344adb14617a13f6e8dd2ce28905d1c0ba3215" 951 | 952 | boom@2.x.x: 953 | version "2.10.1" 954 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 955 | dependencies: 956 | hoek "2.x.x" 957 | 958 | brace-expansion@^1.1.7: 959 | version "1.1.8" 960 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 961 | dependencies: 962 | balanced-match "^1.0.0" 963 | concat-map "0.0.1" 964 | 965 | braces@^1.8.2: 966 | version "1.8.5" 967 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 968 | dependencies: 969 | expand-range "^1.8.1" 970 | preserve "^0.2.0" 971 | repeat-element "^1.1.2" 972 | 973 | brorand@^1.0.1: 974 | version "1.1.0" 975 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 976 | 977 | browserify-aes@0.4.0: 978 | version "0.4.0" 979 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-0.4.0.tgz#067149b668df31c4b58533e02d01e806d8608e2c" 980 | dependencies: 981 | inherits "^2.0.1" 982 | 983 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 984 | version "1.0.6" 985 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.0.6.tgz#5e7725dbdef1fd5930d4ebab48567ce451c48a0a" 986 | dependencies: 987 | buffer-xor "^1.0.2" 988 | cipher-base "^1.0.0" 989 | create-hash "^1.1.0" 990 | evp_bytestokey "^1.0.0" 991 | inherits "^2.0.1" 992 | 993 | browserify-cipher@^1.0.0: 994 | version "1.0.0" 995 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" 996 | dependencies: 997 | browserify-aes "^1.0.4" 998 | browserify-des "^1.0.0" 999 | evp_bytestokey "^1.0.0" 1000 | 1001 | browserify-des@^1.0.0: 1002 | version "1.0.0" 1003 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" 1004 | dependencies: 1005 | cipher-base "^1.0.1" 1006 | des.js "^1.0.0" 1007 | inherits "^2.0.1" 1008 | 1009 | browserify-rsa@^4.0.0: 1010 | version "4.0.1" 1011 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 1012 | dependencies: 1013 | bn.js "^4.1.0" 1014 | randombytes "^2.0.1" 1015 | 1016 | browserify-sign@^4.0.0: 1017 | version "4.0.4" 1018 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" 1019 | dependencies: 1020 | bn.js "^4.1.1" 1021 | browserify-rsa "^4.0.0" 1022 | create-hash "^1.1.0" 1023 | create-hmac "^1.1.2" 1024 | elliptic "^6.0.0" 1025 | inherits "^2.0.1" 1026 | parse-asn1 "^5.0.0" 1027 | 1028 | browserify-zlib@^0.1.4: 1029 | version "0.1.4" 1030 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d" 1031 | dependencies: 1032 | pako "~0.2.0" 1033 | 1034 | browserslist@^1.3.6, browserslist@^1.5.2, browserslist@^1.7.6: 1035 | version "1.7.7" 1036 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-1.7.7.tgz#0bd76704258be829b2398bb50e4b62d1a166b0b9" 1037 | dependencies: 1038 | caniuse-db "^1.0.30000639" 1039 | electron-to-chromium "^1.2.7" 1040 | 1041 | buffer-xor@^1.0.2: 1042 | version "1.0.3" 1043 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 1044 | 1045 | buffer@^4.3.0, buffer@^4.9.0: 1046 | version "4.9.1" 1047 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 1048 | dependencies: 1049 | base64-js "^1.0.2" 1050 | ieee754 "^1.1.4" 1051 | isarray "^1.0.0" 1052 | 1053 | builtin-modules@^1.0.0: 1054 | version "1.1.1" 1055 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 1056 | 1057 | builtin-status-codes@^3.0.0: 1058 | version "3.0.0" 1059 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 1060 | 1061 | bytes@2.3.0: 1062 | version "2.3.0" 1063 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.3.0.tgz#d5b680a165b6201739acb611542aabc2d8ceb070" 1064 | 1065 | camelcase-keys@^2.0.0: 1066 | version "2.1.0" 1067 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 1068 | dependencies: 1069 | camelcase "^2.0.0" 1070 | map-obj "^1.0.0" 1071 | 1072 | camelcase@^1.0.2: 1073 | version "1.2.1" 1074 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 1075 | 1076 | camelcase@^2.0.0: 1077 | version "2.1.1" 1078 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 1079 | 1080 | camelcase@^3.0.0: 1081 | version "3.0.0" 1082 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 1083 | 1084 | caniuse-api@^1.5.2: 1085 | version "1.6.1" 1086 | resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-1.6.1.tgz#b534e7c734c4f81ec5fbe8aca2ad24354b962c6c" 1087 | dependencies: 1088 | browserslist "^1.3.6" 1089 | caniuse-db "^1.0.30000529" 1090 | lodash.memoize "^4.1.2" 1091 | lodash.uniq "^4.5.0" 1092 | 1093 | caniuse-db@^1.0.30000529, caniuse-db@^1.0.30000634, caniuse-db@^1.0.30000639: 1094 | version "1.0.30000692" 1095 | resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000692.tgz#3da9a99353adbcea1e142b99f60ecc6216df47a5" 1096 | 1097 | caseless@~0.12.0: 1098 | version "0.12.0" 1099 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 1100 | 1101 | center-align@^0.1.1: 1102 | version "0.1.3" 1103 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 1104 | dependencies: 1105 | align-text "^0.1.3" 1106 | lazy-cache "^1.0.3" 1107 | 1108 | chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 1109 | version "1.1.3" 1110 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 1111 | dependencies: 1112 | ansi-styles "^2.2.1" 1113 | escape-string-regexp "^1.0.2" 1114 | has-ansi "^2.0.0" 1115 | strip-ansi "^3.0.0" 1116 | supports-color "^2.0.0" 1117 | 1118 | chokidar@^1.0.0, chokidar@^1.6.1: 1119 | version "1.7.0" 1120 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 1121 | dependencies: 1122 | anymatch "^1.3.0" 1123 | async-each "^1.0.0" 1124 | glob-parent "^2.0.0" 1125 | inherits "^2.0.1" 1126 | is-binary-path "^1.0.0" 1127 | is-glob "^2.0.0" 1128 | path-is-absolute "^1.0.0" 1129 | readdirp "^2.0.0" 1130 | optionalDependencies: 1131 | fsevents "^1.0.0" 1132 | 1133 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: 1134 | version "1.0.3" 1135 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.3.tgz#eeabf194419ce900da3018c207d212f2a6df0a07" 1136 | dependencies: 1137 | inherits "^2.0.1" 1138 | 1139 | clap@^1.0.9: 1140 | version "1.2.0" 1141 | resolved "https://registry.yarnpkg.com/clap/-/clap-1.2.0.tgz#59c90fe3e137104746ff19469a27a634ff68c857" 1142 | dependencies: 1143 | chalk "^1.1.3" 1144 | 1145 | cliui@^2.1.0: 1146 | version "2.1.0" 1147 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 1148 | dependencies: 1149 | center-align "^0.1.1" 1150 | right-align "^0.1.1" 1151 | wordwrap "0.0.2" 1152 | 1153 | cliui@^3.2.0: 1154 | version "3.2.0" 1155 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 1156 | dependencies: 1157 | string-width "^1.0.1" 1158 | strip-ansi "^3.0.1" 1159 | wrap-ansi "^2.0.0" 1160 | 1161 | clone@^1.0.2: 1162 | version "1.0.2" 1163 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" 1164 | 1165 | co@^4.6.0: 1166 | version "4.6.0" 1167 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1168 | 1169 | coa@~1.0.1: 1170 | version "1.0.3" 1171 | resolved "https://registry.yarnpkg.com/coa/-/coa-1.0.3.tgz#1b54a5e1dcf77c990455d4deea98c564416dc893" 1172 | dependencies: 1173 | q "^1.1.2" 1174 | 1175 | code-point-at@^1.0.0: 1176 | version "1.1.0" 1177 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1178 | 1179 | color-convert@^1.3.0: 1180 | version "1.9.0" 1181 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 1182 | dependencies: 1183 | color-name "^1.1.1" 1184 | 1185 | color-name@^1.0.0, color-name@^1.1.1: 1186 | version "1.1.2" 1187 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.2.tgz#5c8ab72b64bd2215d617ae9559ebb148475cf98d" 1188 | 1189 | color-string@^0.3.0: 1190 | version "0.3.0" 1191 | resolved "https://registry.yarnpkg.com/color-string/-/color-string-0.3.0.tgz#27d46fb67025c5c2fa25993bfbf579e47841b991" 1192 | dependencies: 1193 | color-name "^1.0.0" 1194 | 1195 | color@^0.11.0: 1196 | version "0.11.4" 1197 | resolved "https://registry.yarnpkg.com/color/-/color-0.11.4.tgz#6d7b5c74fb65e841cd48792ad1ed5e07b904d764" 1198 | dependencies: 1199 | clone "^1.0.2" 1200 | color-convert "^1.3.0" 1201 | color-string "^0.3.0" 1202 | 1203 | colormin@^1.0.5: 1204 | version "1.1.2" 1205 | resolved "https://registry.yarnpkg.com/colormin/-/colormin-1.1.2.tgz#ea2f7420a72b96881a38aae59ec124a6f7298133" 1206 | dependencies: 1207 | color "^0.11.0" 1208 | css-color-names "0.0.4" 1209 | has "^1.0.1" 1210 | 1211 | colors@1.0.3: 1212 | version "1.0.3" 1213 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b" 1214 | 1215 | colors@~1.1.2: 1216 | version "1.1.2" 1217 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" 1218 | 1219 | combined-stream@^1.0.5, combined-stream@~1.0.5: 1220 | version "1.0.5" 1221 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 1222 | dependencies: 1223 | delayed-stream "~1.0.0" 1224 | 1225 | commander@^2.5.0, commander@^2.8.1: 1226 | version "2.9.0" 1227 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 1228 | dependencies: 1229 | graceful-readlink ">= 1.0.0" 1230 | 1231 | commondir@^1.0.1: 1232 | version "1.0.1" 1233 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 1234 | 1235 | commoner@^0.10.1: 1236 | version "0.10.8" 1237 | resolved "https://registry.yarnpkg.com/commoner/-/commoner-0.10.8.tgz#34fc3672cd24393e8bb47e70caa0293811f4f2c5" 1238 | dependencies: 1239 | commander "^2.5.0" 1240 | detective "^4.3.1" 1241 | glob "^5.0.15" 1242 | graceful-fs "^4.1.2" 1243 | iconv-lite "^0.4.5" 1244 | mkdirp "^0.5.0" 1245 | private "^0.1.6" 1246 | q "^1.1.2" 1247 | recast "^0.11.17" 1248 | 1249 | compressible@~2.0.8: 1250 | version "2.0.10" 1251 | resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.10.tgz#feda1c7f7617912732b29bf8cf26252a20b9eecd" 1252 | dependencies: 1253 | mime-db ">= 1.27.0 < 2" 1254 | 1255 | compression@^1.5.2: 1256 | version "1.6.2" 1257 | resolved "https://registry.yarnpkg.com/compression/-/compression-1.6.2.tgz#cceb121ecc9d09c52d7ad0c3350ea93ddd402bc3" 1258 | dependencies: 1259 | accepts "~1.3.3" 1260 | bytes "2.3.0" 1261 | compressible "~2.0.8" 1262 | debug "~2.2.0" 1263 | on-headers "~1.0.1" 1264 | vary "~1.1.0" 1265 | 1266 | concat-map@0.0.1: 1267 | version "0.0.1" 1268 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1269 | 1270 | connect-history-api-fallback@^1.3.0: 1271 | version "1.3.0" 1272 | resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.3.0.tgz#e51d17f8f0ef0db90a64fdb47de3051556e9f169" 1273 | 1274 | console-browserify@^1.1.0: 1275 | version "1.1.0" 1276 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 1277 | dependencies: 1278 | date-now "^0.1.4" 1279 | 1280 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1281 | version "1.1.0" 1282 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1283 | 1284 | constants-browserify@^1.0.0: 1285 | version "1.0.0" 1286 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 1287 | 1288 | content-disposition@0.5.2: 1289 | version "0.5.2" 1290 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" 1291 | 1292 | content-type@~1.0.2: 1293 | version "1.0.2" 1294 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.2.tgz#b7d113aee7a8dd27bd21133c4dc2529df1721eed" 1295 | 1296 | convert-source-map@^1.1.0: 1297 | version "1.5.0" 1298 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 1299 | 1300 | cookie-signature@1.0.6: 1301 | version "1.0.6" 1302 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" 1303 | 1304 | cookie@0.3.1: 1305 | version "0.3.1" 1306 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" 1307 | 1308 | core-js@^1.0.0: 1309 | version "1.2.7" 1310 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 1311 | 1312 | core-js@^2.4.0: 1313 | version "2.4.1" 1314 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 1315 | 1316 | core-util-is@~1.0.0: 1317 | version "1.0.2" 1318 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1319 | 1320 | corser@~2.0.0: 1321 | version "2.0.1" 1322 | resolved "https://registry.yarnpkg.com/corser/-/corser-2.0.1.tgz#8eda252ecaab5840dcd975ceb90d9370c819ff87" 1323 | 1324 | create-ecdh@^4.0.0: 1325 | version "4.0.0" 1326 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" 1327 | dependencies: 1328 | bn.js "^4.1.0" 1329 | elliptic "^6.0.0" 1330 | 1331 | create-hash@^1.1.0, create-hash@^1.1.1, create-hash@^1.1.2: 1332 | version "1.1.3" 1333 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.3.tgz#606042ac8b9262750f483caddab0f5819172d8fd" 1334 | dependencies: 1335 | cipher-base "^1.0.1" 1336 | inherits "^2.0.1" 1337 | ripemd160 "^2.0.0" 1338 | sha.js "^2.4.0" 1339 | 1340 | create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: 1341 | version "1.1.6" 1342 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.6.tgz#acb9e221a4e17bdb076e90657c42b93e3726cf06" 1343 | dependencies: 1344 | cipher-base "^1.0.3" 1345 | create-hash "^1.1.0" 1346 | inherits "^2.0.1" 1347 | ripemd160 "^2.0.0" 1348 | safe-buffer "^5.0.1" 1349 | sha.js "^2.4.8" 1350 | 1351 | cross-spawn@^3.0.0: 1352 | version "3.0.1" 1353 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-3.0.1.tgz#1256037ecb9f0c5f79e3d6ef135e30770184b982" 1354 | dependencies: 1355 | lru-cache "^4.0.1" 1356 | which "^1.2.9" 1357 | 1358 | cryptiles@2.x.x: 1359 | version "2.0.5" 1360 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1361 | dependencies: 1362 | boom "2.x.x" 1363 | 1364 | crypto-browserify@3.3.0: 1365 | version "3.3.0" 1366 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.3.0.tgz#b9fc75bb4a0ed61dcf1cd5dae96eb30c9c3e506c" 1367 | dependencies: 1368 | browserify-aes "0.4.0" 1369 | pbkdf2-compat "2.0.1" 1370 | ripemd160 "0.2.0" 1371 | sha.js "2.2.6" 1372 | 1373 | crypto-browserify@^3.11.0: 1374 | version "3.11.0" 1375 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.0.tgz#3652a0906ab9b2a7e0c3ce66a408e957a2485522" 1376 | dependencies: 1377 | browserify-cipher "^1.0.0" 1378 | browserify-sign "^4.0.0" 1379 | create-ecdh "^4.0.0" 1380 | create-hash "^1.1.0" 1381 | create-hmac "^1.1.0" 1382 | diffie-hellman "^5.0.0" 1383 | inherits "^2.0.1" 1384 | pbkdf2 "^3.0.3" 1385 | public-encrypt "^4.0.0" 1386 | randombytes "^2.0.0" 1387 | 1388 | css-color-names@0.0.4: 1389 | version "0.0.4" 1390 | resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0" 1391 | 1392 | css-loader@^0.25.0: 1393 | version "0.25.0" 1394 | resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-0.25.0.tgz#c3febc8ce28f4c83576b6b13707f47f90c390223" 1395 | dependencies: 1396 | babel-code-frame "^6.11.0" 1397 | css-selector-tokenizer "^0.6.0" 1398 | cssnano ">=2.6.1 <4" 1399 | loader-utils "~0.2.2" 1400 | lodash.camelcase "^3.0.1" 1401 | object-assign "^4.0.1" 1402 | postcss "^5.0.6" 1403 | postcss-modules-extract-imports "^1.0.0" 1404 | postcss-modules-local-by-default "^1.0.1" 1405 | postcss-modules-scope "^1.0.0" 1406 | postcss-modules-values "^1.1.0" 1407 | source-list-map "^0.1.4" 1408 | 1409 | css-selector-tokenizer@^0.6.0: 1410 | version "0.6.0" 1411 | resolved "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.6.0.tgz#6445f582c7930d241dcc5007a43d6fcb8f073152" 1412 | dependencies: 1413 | cssesc "^0.1.0" 1414 | fastparse "^1.1.1" 1415 | regexpu-core "^1.0.0" 1416 | 1417 | css-selector-tokenizer@^0.7.0: 1418 | version "0.7.0" 1419 | resolved "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.7.0.tgz#e6988474ae8c953477bf5e7efecfceccd9cf4c86" 1420 | dependencies: 1421 | cssesc "^0.1.0" 1422 | fastparse "^1.1.1" 1423 | regexpu-core "^1.0.0" 1424 | 1425 | cssesc@^0.1.0: 1426 | version "0.1.0" 1427 | resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-0.1.0.tgz#c814903e45623371a0477b40109aaafbeeaddbb4" 1428 | 1429 | "cssnano@>=2.6.1 <4": 1430 | version "3.10.0" 1431 | resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-3.10.0.tgz#4f38f6cea2b9b17fa01490f23f1dc68ea65c1c38" 1432 | dependencies: 1433 | autoprefixer "^6.3.1" 1434 | decamelize "^1.1.2" 1435 | defined "^1.0.0" 1436 | has "^1.0.1" 1437 | object-assign "^4.0.1" 1438 | postcss "^5.0.14" 1439 | postcss-calc "^5.2.0" 1440 | postcss-colormin "^2.1.8" 1441 | postcss-convert-values "^2.3.4" 1442 | postcss-discard-comments "^2.0.4" 1443 | postcss-discard-duplicates "^2.0.1" 1444 | postcss-discard-empty "^2.0.1" 1445 | postcss-discard-overridden "^0.1.1" 1446 | postcss-discard-unused "^2.2.1" 1447 | postcss-filter-plugins "^2.0.0" 1448 | postcss-merge-idents "^2.1.5" 1449 | postcss-merge-longhand "^2.0.1" 1450 | postcss-merge-rules "^2.0.3" 1451 | postcss-minify-font-values "^1.0.2" 1452 | postcss-minify-gradients "^1.0.1" 1453 | postcss-minify-params "^1.0.4" 1454 | postcss-minify-selectors "^2.0.4" 1455 | postcss-normalize-charset "^1.1.0" 1456 | postcss-normalize-url "^3.0.7" 1457 | postcss-ordered-values "^2.1.0" 1458 | postcss-reduce-idents "^2.2.2" 1459 | postcss-reduce-initial "^1.0.0" 1460 | postcss-reduce-transforms "^1.0.3" 1461 | postcss-svgo "^2.1.1" 1462 | postcss-unique-selectors "^2.0.2" 1463 | postcss-value-parser "^3.2.3" 1464 | postcss-zindex "^2.0.1" 1465 | 1466 | csso@~2.3.1: 1467 | version "2.3.2" 1468 | resolved "https://registry.yarnpkg.com/csso/-/csso-2.3.2.tgz#ddd52c587033f49e94b71fc55569f252e8ff5f85" 1469 | dependencies: 1470 | clap "^1.0.9" 1471 | source-map "^0.5.3" 1472 | 1473 | currently-unhandled@^0.4.1: 1474 | version "0.4.1" 1475 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 1476 | dependencies: 1477 | array-find-index "^1.0.1" 1478 | 1479 | dashdash@^1.12.0: 1480 | version "1.14.1" 1481 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1482 | dependencies: 1483 | assert-plus "^1.0.0" 1484 | 1485 | date-now@^0.1.4: 1486 | version "0.1.4" 1487 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 1488 | 1489 | debug@2.6.7: 1490 | version "2.6.7" 1491 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.7.tgz#92bad1f6d05bbb6bba22cca88bcd0ec894c2861e" 1492 | dependencies: 1493 | ms "2.0.0" 1494 | 1495 | debug@2.6.8, debug@^2.1.1, debug@^2.2.0, debug@^2.6.6: 1496 | version "2.6.8" 1497 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 1498 | dependencies: 1499 | ms "2.0.0" 1500 | 1501 | debug@~2.2.0: 1502 | version "2.2.0" 1503 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 1504 | dependencies: 1505 | ms "0.7.1" 1506 | 1507 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: 1508 | version "1.2.0" 1509 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1510 | 1511 | deep-extend@~0.4.0: 1512 | version "0.4.2" 1513 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1514 | 1515 | defined@^1.0.0: 1516 | version "1.0.0" 1517 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 1518 | 1519 | delayed-stream@~1.0.0: 1520 | version "1.0.0" 1521 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1522 | 1523 | delegates@^1.0.0: 1524 | version "1.0.0" 1525 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1526 | 1527 | depd@1.1.0, depd@~1.1.0: 1528 | version "1.1.0" 1529 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.0.tgz#e1bd82c6aab6ced965b97b88b17ed3e528ca18c3" 1530 | 1531 | des.js@^1.0.0: 1532 | version "1.0.0" 1533 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" 1534 | dependencies: 1535 | inherits "^2.0.1" 1536 | minimalistic-assert "^1.0.0" 1537 | 1538 | destroy@~1.0.4: 1539 | version "1.0.4" 1540 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 1541 | 1542 | detect-indent@^4.0.0: 1543 | version "4.0.0" 1544 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1545 | dependencies: 1546 | repeating "^2.0.0" 1547 | 1548 | detective@^4.3.1: 1549 | version "4.5.0" 1550 | resolved "https://registry.yarnpkg.com/detective/-/detective-4.5.0.tgz#6e5a8c6b26e6c7a254b1c6b6d7490d98ec91edd1" 1551 | dependencies: 1552 | acorn "^4.0.3" 1553 | defined "^1.0.0" 1554 | 1555 | diffie-hellman@^5.0.0: 1556 | version "5.0.2" 1557 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" 1558 | dependencies: 1559 | bn.js "^4.1.0" 1560 | miller-rabin "^4.0.0" 1561 | randombytes "^2.0.0" 1562 | 1563 | domain-browser@^1.1.1: 1564 | version "1.1.7" 1565 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" 1566 | 1567 | ecc-jsbn@~0.1.1: 1568 | version "0.1.1" 1569 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1570 | dependencies: 1571 | jsbn "~0.1.0" 1572 | 1573 | ecstatic@^1.4.0: 1574 | version "1.4.1" 1575 | resolved "https://registry.yarnpkg.com/ecstatic/-/ecstatic-1.4.1.tgz#32cb7b6fa2e290d58668674d115e8f0c3d567d6a" 1576 | dependencies: 1577 | he "^0.5.0" 1578 | mime "^1.2.11" 1579 | minimist "^1.1.0" 1580 | url-join "^1.0.0" 1581 | 1582 | ee-first@1.1.1: 1583 | version "1.1.1" 1584 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 1585 | 1586 | electron-to-chromium@^1.2.7: 1587 | version "1.3.14" 1588 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.14.tgz#64af0f9efd3c3c6acd57d71f83b49ca7ee9c4b43" 1589 | 1590 | elliptic@^6.0.0: 1591 | version "6.4.0" 1592 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df" 1593 | dependencies: 1594 | bn.js "^4.4.0" 1595 | brorand "^1.0.1" 1596 | hash.js "^1.0.0" 1597 | hmac-drbg "^1.0.0" 1598 | inherits "^2.0.1" 1599 | minimalistic-assert "^1.0.0" 1600 | minimalistic-crypto-utils "^1.0.0" 1601 | 1602 | emojis-list@^2.0.0: 1603 | version "2.1.0" 1604 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" 1605 | 1606 | encodeurl@~1.0.1: 1607 | version "1.0.1" 1608 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20" 1609 | 1610 | encoding@^0.1.11: 1611 | version "0.1.12" 1612 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 1613 | dependencies: 1614 | iconv-lite "~0.4.13" 1615 | 1616 | enhanced-resolve@~0.9.0: 1617 | version "0.9.1" 1618 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-0.9.1.tgz#4d6e689b3725f86090927ccc86cd9f1635b89e2e" 1619 | dependencies: 1620 | graceful-fs "^4.1.2" 1621 | memory-fs "^0.2.0" 1622 | tapable "^0.1.8" 1623 | 1624 | envify@^3.0.0: 1625 | version "3.4.1" 1626 | resolved "https://registry.yarnpkg.com/envify/-/envify-3.4.1.tgz#d7122329e8df1688ba771b12501917c9ce5cbce8" 1627 | dependencies: 1628 | jstransform "^11.0.3" 1629 | through "~2.3.4" 1630 | 1631 | errno@^0.1.3: 1632 | version "0.1.4" 1633 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 1634 | dependencies: 1635 | prr "~0.0.0" 1636 | 1637 | error-ex@^1.2.0: 1638 | version "1.3.1" 1639 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1640 | dependencies: 1641 | is-arrayish "^0.2.1" 1642 | 1643 | escape-html@~1.0.3: 1644 | version "1.0.3" 1645 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 1646 | 1647 | escape-string-regexp@^1.0.2: 1648 | version "1.0.5" 1649 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1650 | 1651 | esprima-fb@^15001.1.0-dev-harmony-fb: 1652 | version "15001.1.0-dev-harmony-fb" 1653 | resolved "https://registry.yarnpkg.com/esprima-fb/-/esprima-fb-15001.1.0-dev-harmony-fb.tgz#30a947303c6b8d5e955bee2b99b1d233206a6901" 1654 | 1655 | esprima@^2.6.0: 1656 | version "2.7.3" 1657 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1658 | 1659 | esprima@~3.1.0: 1660 | version "3.1.3" 1661 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1662 | 1663 | esutils@^2.0.0, esutils@^2.0.2: 1664 | version "2.0.2" 1665 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1666 | 1667 | etag@~1.8.0: 1668 | version "1.8.0" 1669 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.0.tgz#6f631aef336d6c46362b51764044ce216be3c051" 1670 | 1671 | eventemitter3@1.x.x: 1672 | version "1.2.0" 1673 | resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-1.2.0.tgz#1c86991d816ad1e504750e73874224ecf3bec508" 1674 | 1675 | events@^1.0.0: 1676 | version "1.1.1" 1677 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 1678 | 1679 | eventsource@0.1.6: 1680 | version "0.1.6" 1681 | resolved "https://registry.yarnpkg.com/eventsource/-/eventsource-0.1.6.tgz#0acede849ed7dd1ccc32c811bb11b944d4f29232" 1682 | dependencies: 1683 | original ">=0.0.5" 1684 | 1685 | evp_bytestokey@^1.0.0: 1686 | version "1.0.0" 1687 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.0.tgz#497b66ad9fef65cd7c08a6180824ba1476b66e53" 1688 | dependencies: 1689 | create-hash "^1.1.1" 1690 | 1691 | expand-brackets@^0.1.4: 1692 | version "0.1.5" 1693 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1694 | dependencies: 1695 | is-posix-bracket "^0.1.0" 1696 | 1697 | expand-range@^1.8.1: 1698 | version "1.8.2" 1699 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1700 | dependencies: 1701 | fill-range "^2.1.0" 1702 | 1703 | express@^4.13.3: 1704 | version "4.15.3" 1705 | resolved "https://registry.yarnpkg.com/express/-/express-4.15.3.tgz#bab65d0f03aa80c358408972fc700f916944b662" 1706 | dependencies: 1707 | accepts "~1.3.3" 1708 | array-flatten "1.1.1" 1709 | content-disposition "0.5.2" 1710 | content-type "~1.0.2" 1711 | cookie "0.3.1" 1712 | cookie-signature "1.0.6" 1713 | debug "2.6.7" 1714 | depd "~1.1.0" 1715 | encodeurl "~1.0.1" 1716 | escape-html "~1.0.3" 1717 | etag "~1.8.0" 1718 | finalhandler "~1.0.3" 1719 | fresh "0.5.0" 1720 | merge-descriptors "1.0.1" 1721 | methods "~1.1.2" 1722 | on-finished "~2.3.0" 1723 | parseurl "~1.3.1" 1724 | path-to-regexp "0.1.7" 1725 | proxy-addr "~1.1.4" 1726 | qs "6.4.0" 1727 | range-parser "~1.2.0" 1728 | send "0.15.3" 1729 | serve-static "1.12.3" 1730 | setprototypeof "1.0.3" 1731 | statuses "~1.3.1" 1732 | type-is "~1.6.15" 1733 | utils-merge "1.0.0" 1734 | vary "~1.1.1" 1735 | 1736 | extend@~3.0.0: 1737 | version "3.0.1" 1738 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1739 | 1740 | extglob@^0.3.1: 1741 | version "0.3.2" 1742 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1743 | dependencies: 1744 | is-extglob "^1.0.0" 1745 | 1746 | extsprintf@1.0.2: 1747 | version "1.0.2" 1748 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1749 | 1750 | fastparse@^1.1.1: 1751 | version "1.1.1" 1752 | resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.1.tgz#d1e2643b38a94d7583b479060e6c4affc94071f8" 1753 | 1754 | faye-websocket@^0.10.0: 1755 | version "0.10.0" 1756 | resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.10.0.tgz#4e492f8d04dfb6f89003507f6edbf2d501e7c6f4" 1757 | dependencies: 1758 | websocket-driver ">=0.5.1" 1759 | 1760 | faye-websocket@~0.11.0: 1761 | version "0.11.1" 1762 | resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.1.tgz#f0efe18c4f56e4f40afc7e06c719fd5ee6188f38" 1763 | dependencies: 1764 | websocket-driver ">=0.5.1" 1765 | 1766 | fbjs@^0.6.1: 1767 | version "0.6.1" 1768 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.6.1.tgz#9636b7705f5ba9684d44b72f78321254afc860f7" 1769 | dependencies: 1770 | core-js "^1.0.0" 1771 | loose-envify "^1.0.0" 1772 | promise "^7.0.3" 1773 | ua-parser-js "^0.7.9" 1774 | whatwg-fetch "^0.9.0" 1775 | 1776 | fbjs@^0.8.4, fbjs@^0.8.9: 1777 | version "0.8.12" 1778 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.12.tgz#10b5d92f76d45575fd63a217d4ea02bea2f8ed04" 1779 | dependencies: 1780 | core-js "^1.0.0" 1781 | isomorphic-fetch "^2.1.1" 1782 | loose-envify "^1.0.0" 1783 | object-assign "^4.1.0" 1784 | promise "^7.1.1" 1785 | setimmediate "^1.0.5" 1786 | ua-parser-js "^0.7.9" 1787 | 1788 | filename-regex@^2.0.0: 1789 | version "2.0.1" 1790 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1791 | 1792 | fill-range@^2.1.0: 1793 | version "2.2.3" 1794 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1795 | dependencies: 1796 | is-number "^2.1.0" 1797 | isobject "^2.0.0" 1798 | randomatic "^1.1.3" 1799 | repeat-element "^1.1.2" 1800 | repeat-string "^1.5.2" 1801 | 1802 | finalhandler@~1.0.3: 1803 | version "1.0.3" 1804 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.0.3.tgz#ef47e77950e999780e86022a560e3217e0d0cc89" 1805 | dependencies: 1806 | debug "2.6.7" 1807 | encodeurl "~1.0.1" 1808 | escape-html "~1.0.3" 1809 | on-finished "~2.3.0" 1810 | parseurl "~1.3.1" 1811 | statuses "~1.3.1" 1812 | unpipe "~1.0.0" 1813 | 1814 | find-cache-dir@^0.1.1: 1815 | version "0.1.1" 1816 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" 1817 | dependencies: 1818 | commondir "^1.0.1" 1819 | mkdirp "^0.5.1" 1820 | pkg-dir "^1.0.0" 1821 | 1822 | find-up@^1.0.0: 1823 | version "1.1.2" 1824 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1825 | dependencies: 1826 | path-exists "^2.0.0" 1827 | pinkie-promise "^2.0.0" 1828 | 1829 | flatten@^1.0.2: 1830 | version "1.0.2" 1831 | resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.2.tgz#dae46a9d78fbe25292258cc1e780a41d95c03782" 1832 | 1833 | focusin@^2.0.0: 1834 | version "2.0.0" 1835 | resolved "https://registry.yarnpkg.com/focusin/-/focusin-2.0.0.tgz#58c01180dfb1949f03e3ddeee063739fc33b6ffc" 1836 | 1837 | for-in@^1.0.1: 1838 | version "1.0.2" 1839 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1840 | 1841 | for-own@^0.1.4: 1842 | version "0.1.5" 1843 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1844 | dependencies: 1845 | for-in "^1.0.1" 1846 | 1847 | forever-agent@~0.6.1: 1848 | version "0.6.1" 1849 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1850 | 1851 | form-data@~2.1.1: 1852 | version "2.1.4" 1853 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1854 | dependencies: 1855 | asynckit "^0.4.0" 1856 | combined-stream "^1.0.5" 1857 | mime-types "^2.1.12" 1858 | 1859 | forwarded@~0.1.0: 1860 | version "0.1.0" 1861 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.0.tgz#19ef9874c4ae1c297bcf078fde63a09b66a84363" 1862 | 1863 | fresh@0.5.0: 1864 | version "0.5.0" 1865 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.0.tgz#f474ca5e6a9246d6fd8e0953cfa9b9c805afa78e" 1866 | 1867 | fs-readdir-recursive@^1.0.0: 1868 | version "1.0.0" 1869 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1870 | 1871 | fs.realpath@^1.0.0: 1872 | version "1.0.0" 1873 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1874 | 1875 | fsevents@^1.0.0: 1876 | version "1.1.2" 1877 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4" 1878 | dependencies: 1879 | nan "^2.3.0" 1880 | node-pre-gyp "^0.6.36" 1881 | 1882 | fstream-ignore@^1.0.5: 1883 | version "1.0.5" 1884 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1885 | dependencies: 1886 | fstream "^1.0.0" 1887 | inherits "2" 1888 | minimatch "^3.0.0" 1889 | 1890 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1891 | version "1.0.11" 1892 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1893 | dependencies: 1894 | graceful-fs "^4.1.2" 1895 | inherits "~2.0.0" 1896 | mkdirp ">=0.5 0" 1897 | rimraf "2" 1898 | 1899 | function-bind@^1.0.2: 1900 | version "1.1.0" 1901 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 1902 | 1903 | gauge@~2.7.3: 1904 | version "2.7.4" 1905 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1906 | dependencies: 1907 | aproba "^1.0.3" 1908 | console-control-strings "^1.0.0" 1909 | has-unicode "^2.0.0" 1910 | object-assign "^4.1.0" 1911 | signal-exit "^3.0.0" 1912 | string-width "^1.0.1" 1913 | strip-ansi "^3.0.1" 1914 | wide-align "^1.1.0" 1915 | 1916 | gaze@^1.0.0: 1917 | version "1.1.2" 1918 | resolved "https://registry.yarnpkg.com/gaze/-/gaze-1.1.2.tgz#847224677adb8870d679257ed3388fdb61e40105" 1919 | dependencies: 1920 | globule "^1.0.0" 1921 | 1922 | get-caller-file@^1.0.1: 1923 | version "1.0.2" 1924 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1925 | 1926 | get-node-dimensions@^1.2.0: 1927 | version "1.2.2" 1928 | resolved "https://registry.yarnpkg.com/get-node-dimensions/-/get-node-dimensions-1.2.2.tgz#7a71e8624cf9e1ab74599bb05b7e5116e995e45b" 1929 | 1930 | get-prefix@^1.0.0: 1931 | version "1.0.0" 1932 | resolved "https://registry.yarnpkg.com/get-prefix/-/get-prefix-1.0.0.tgz#0d305448a4e3176f9c277175b14e16dbe6fba0b5" 1933 | 1934 | get-stdin@^4.0.1: 1935 | version "4.0.1" 1936 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 1937 | 1938 | getpass@^0.1.1: 1939 | version "0.1.7" 1940 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1941 | dependencies: 1942 | assert-plus "^1.0.0" 1943 | 1944 | git-directory-deploy@^1.5.1: 1945 | version "1.5.1" 1946 | resolved "https://registry.yarnpkg.com/git-directory-deploy/-/git-directory-deploy-1.5.1.tgz#c4fad8c270d678d5f309fbddeac1eda60cad7fd2" 1947 | dependencies: 1948 | lodash "^4.14.2" 1949 | minimist "^1.1.0" 1950 | 1951 | glob-base@^0.3.0: 1952 | version "0.3.0" 1953 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1954 | dependencies: 1955 | glob-parent "^2.0.0" 1956 | is-glob "^2.0.0" 1957 | 1958 | glob-parent@^2.0.0: 1959 | version "2.0.0" 1960 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1961 | dependencies: 1962 | is-glob "^2.0.0" 1963 | 1964 | glob@^5.0.15: 1965 | version "5.0.15" 1966 | resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" 1967 | dependencies: 1968 | inflight "^1.0.4" 1969 | inherits "2" 1970 | minimatch "2 || 3" 1971 | once "^1.3.0" 1972 | path-is-absolute "^1.0.0" 1973 | 1974 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@~7.1.1: 1975 | version "7.1.2" 1976 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1977 | dependencies: 1978 | fs.realpath "^1.0.0" 1979 | inflight "^1.0.4" 1980 | inherits "2" 1981 | minimatch "^3.0.4" 1982 | once "^1.3.0" 1983 | path-is-absolute "^1.0.0" 1984 | 1985 | globals@^9.0.0: 1986 | version "9.18.0" 1987 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1988 | 1989 | globule@^1.0.0: 1990 | version "1.2.0" 1991 | resolved "https://registry.yarnpkg.com/globule/-/globule-1.2.0.tgz#1dc49c6822dd9e8a2fa00ba2a295006e8664bd09" 1992 | dependencies: 1993 | glob "~7.1.1" 1994 | lodash "~4.17.4" 1995 | minimatch "~3.0.2" 1996 | 1997 | graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1998 | version "4.1.11" 1999 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 2000 | 2001 | "graceful-readlink@>= 1.0.0": 2002 | version "1.0.1" 2003 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 2004 | 2005 | har-schema@^1.0.5: 2006 | version "1.0.5" 2007 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 2008 | 2009 | har-validator@~4.2.1: 2010 | version "4.2.1" 2011 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 2012 | dependencies: 2013 | ajv "^4.9.1" 2014 | har-schema "^1.0.5" 2015 | 2016 | has-ansi@^2.0.0: 2017 | version "2.0.0" 2018 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 2019 | dependencies: 2020 | ansi-regex "^2.0.0" 2021 | 2022 | has-flag@^1.0.0: 2023 | version "1.0.0" 2024 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 2025 | 2026 | has-unicode@^2.0.0: 2027 | version "2.0.1" 2028 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 2029 | 2030 | has@^1.0.1: 2031 | version "1.0.1" 2032 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 2033 | dependencies: 2034 | function-bind "^1.0.2" 2035 | 2036 | hash-base@^2.0.0: 2037 | version "2.0.2" 2038 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-2.0.2.tgz#66ea1d856db4e8a5470cadf6fce23ae5244ef2e1" 2039 | dependencies: 2040 | inherits "^2.0.1" 2041 | 2042 | hash.js@^1.0.0, hash.js@^1.0.3: 2043 | version "1.1.1" 2044 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.1.tgz#5cb2e796499224e69fd0b00ed01d2d4a16e7a323" 2045 | dependencies: 2046 | inherits "^2.0.3" 2047 | minimalistic-assert "^1.0.0" 2048 | 2049 | hawk@~3.1.3: 2050 | version "3.1.3" 2051 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 2052 | dependencies: 2053 | boom "2.x.x" 2054 | cryptiles "2.x.x" 2055 | hoek "2.x.x" 2056 | sntp "1.x.x" 2057 | 2058 | he@^0.5.0: 2059 | version "0.5.0" 2060 | resolved "https://registry.yarnpkg.com/he/-/he-0.5.0.tgz#2c05ffaef90b68e860f3fd2b54ef580989277ee2" 2061 | 2062 | hmac-drbg@^1.0.0: 2063 | version "1.0.1" 2064 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 2065 | dependencies: 2066 | hash.js "^1.0.3" 2067 | minimalistic-assert "^1.0.0" 2068 | minimalistic-crypto-utils "^1.0.1" 2069 | 2070 | hoek@2.x.x: 2071 | version "2.16.3" 2072 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 2073 | 2074 | home-or-tmp@^2.0.0: 2075 | version "2.0.0" 2076 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 2077 | dependencies: 2078 | os-homedir "^1.0.0" 2079 | os-tmpdir "^1.0.1" 2080 | 2081 | hosted-git-info@^2.1.4: 2082 | version "2.4.2" 2083 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.2.tgz#0076b9f46a270506ddbaaea56496897460612a67" 2084 | 2085 | html-comment-regex@^1.1.0: 2086 | version "1.1.1" 2087 | resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.1.tgz#668b93776eaae55ebde8f3ad464b307a4963625e" 2088 | 2089 | http-errors@~1.6.1: 2090 | version "1.6.1" 2091 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.1.tgz#5f8b8ed98aca545656bf572997387f904a722257" 2092 | dependencies: 2093 | depd "1.1.0" 2094 | inherits "2.0.3" 2095 | setprototypeof "1.0.3" 2096 | statuses ">= 1.3.1 < 2" 2097 | 2098 | http-proxy-middleware@~0.17.1: 2099 | version "0.17.4" 2100 | resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-0.17.4.tgz#642e8848851d66f09d4f124912846dbaeb41b833" 2101 | dependencies: 2102 | http-proxy "^1.16.2" 2103 | is-glob "^3.1.0" 2104 | lodash "^4.17.2" 2105 | micromatch "^2.3.11" 2106 | 2107 | http-proxy@^1.16.2, http-proxy@^1.8.1: 2108 | version "1.16.2" 2109 | resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.16.2.tgz#06dff292952bf64dbe8471fa9df73066d4f37742" 2110 | dependencies: 2111 | eventemitter3 "1.x.x" 2112 | requires-port "1.x.x" 2113 | 2114 | http-server@^0.9.0: 2115 | version "0.9.0" 2116 | resolved "https://registry.yarnpkg.com/http-server/-/http-server-0.9.0.tgz#8f1b06bdc733618d4dc42831c7ba1aff4e06001a" 2117 | dependencies: 2118 | colors "1.0.3" 2119 | corser "~2.0.0" 2120 | ecstatic "^1.4.0" 2121 | http-proxy "^1.8.1" 2122 | opener "~1.4.0" 2123 | optimist "0.6.x" 2124 | portfinder "0.4.x" 2125 | union "~0.4.3" 2126 | 2127 | http-signature@~1.1.0: 2128 | version "1.1.1" 2129 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 2130 | dependencies: 2131 | assert-plus "^0.2.0" 2132 | jsprim "^1.2.2" 2133 | sshpk "^1.7.0" 2134 | 2135 | https-browserify@0.0.1: 2136 | version "0.0.1" 2137 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82" 2138 | 2139 | iconv-lite@^0.4.5, iconv-lite@~0.4.13: 2140 | version "0.4.18" 2141 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.18.tgz#23d8656b16aae6742ac29732ea8f0336a4789cf2" 2142 | 2143 | icss-replace-symbols@^1.1.0: 2144 | version "1.1.0" 2145 | resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded" 2146 | 2147 | ieee754@^1.1.4: 2148 | version "1.1.8" 2149 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 2150 | 2151 | in-publish@^2.0.0: 2152 | version "2.0.0" 2153 | resolved "https://registry.yarnpkg.com/in-publish/-/in-publish-2.0.0.tgz#e20ff5e3a2afc2690320b6dc552682a9c7fadf51" 2154 | 2155 | indent-string@^2.1.0: 2156 | version "2.1.0" 2157 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 2158 | dependencies: 2159 | repeating "^2.0.0" 2160 | 2161 | indexes-of@^1.0.1: 2162 | version "1.0.1" 2163 | resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" 2164 | 2165 | indexof@0.0.1: 2166 | version "0.0.1" 2167 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 2168 | 2169 | inflight@^1.0.4: 2170 | version "1.0.6" 2171 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 2172 | dependencies: 2173 | once "^1.3.0" 2174 | wrappy "1" 2175 | 2176 | inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 2177 | version "2.0.3" 2178 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 2179 | 2180 | inherits@2.0.1: 2181 | version "2.0.1" 2182 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 2183 | 2184 | ini@~1.3.0: 2185 | version "1.3.4" 2186 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 2187 | 2188 | interpret@^0.6.4: 2189 | version "0.6.6" 2190 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-0.6.6.tgz#fecd7a18e7ce5ca6abfb953e1f86213a49f1625b" 2191 | 2192 | invariant@^2.2.0: 2193 | version "2.2.2" 2194 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 2195 | dependencies: 2196 | loose-envify "^1.0.0" 2197 | 2198 | invert-kv@^1.0.0: 2199 | version "1.0.0" 2200 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 2201 | 2202 | ipaddr.js@1.3.0: 2203 | version "1.3.0" 2204 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.3.0.tgz#1e03a52fdad83a8bbb2b25cbf4998b4cffcd3dec" 2205 | 2206 | is-absolute-url@^2.0.0: 2207 | version "2.1.0" 2208 | resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6" 2209 | 2210 | is-arrayish@^0.2.1: 2211 | version "0.2.1" 2212 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 2213 | 2214 | is-binary-path@^1.0.0: 2215 | version "1.0.1" 2216 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 2217 | dependencies: 2218 | binary-extensions "^1.0.0" 2219 | 2220 | is-buffer@^1.1.5: 2221 | version "1.1.5" 2222 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 2223 | 2224 | is-builtin-module@^1.0.0: 2225 | version "1.0.0" 2226 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 2227 | dependencies: 2228 | builtin-modules "^1.0.0" 2229 | 2230 | is-dotfile@^1.0.0: 2231 | version "1.0.3" 2232 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 2233 | 2234 | is-equal-shallow@^0.1.3: 2235 | version "0.1.3" 2236 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 2237 | dependencies: 2238 | is-primitive "^2.0.0" 2239 | 2240 | is-extendable@^0.1.1: 2241 | version "0.1.1" 2242 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 2243 | 2244 | is-extglob@^1.0.0: 2245 | version "1.0.0" 2246 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 2247 | 2248 | is-extglob@^2.1.0: 2249 | version "2.1.1" 2250 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 2251 | 2252 | is-finite@^1.0.0: 2253 | version "1.0.2" 2254 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 2255 | dependencies: 2256 | number-is-nan "^1.0.0" 2257 | 2258 | is-fullwidth-code-point@^1.0.0: 2259 | version "1.0.0" 2260 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 2261 | dependencies: 2262 | number-is-nan "^1.0.0" 2263 | 2264 | is-glob@^2.0.0, is-glob@^2.0.1: 2265 | version "2.0.1" 2266 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 2267 | dependencies: 2268 | is-extglob "^1.0.0" 2269 | 2270 | is-glob@^3.1.0: 2271 | version "3.1.0" 2272 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 2273 | dependencies: 2274 | is-extglob "^2.1.0" 2275 | 2276 | is-number@^2.1.0: 2277 | version "2.1.0" 2278 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 2279 | dependencies: 2280 | kind-of "^3.0.2" 2281 | 2282 | is-number@^3.0.0: 2283 | version "3.0.0" 2284 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 2285 | dependencies: 2286 | kind-of "^3.0.2" 2287 | 2288 | is-plain-obj@^1.0.0: 2289 | version "1.1.0" 2290 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 2291 | 2292 | is-posix-bracket@^0.1.0: 2293 | version "0.1.1" 2294 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2295 | 2296 | is-primitive@^2.0.0: 2297 | version "2.0.0" 2298 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2299 | 2300 | is-stream@^1.0.1: 2301 | version "1.1.0" 2302 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2303 | 2304 | is-svg@^2.0.0: 2305 | version "2.1.0" 2306 | resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-2.1.0.tgz#cf61090da0d9efbcab8722deba6f032208dbb0e9" 2307 | dependencies: 2308 | html-comment-regex "^1.1.0" 2309 | 2310 | is-typedarray@~1.0.0: 2311 | version "1.0.0" 2312 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2313 | 2314 | is-utf8@^0.2.0: 2315 | version "0.2.1" 2316 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 2317 | 2318 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2319 | version "1.0.0" 2320 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2321 | 2322 | isexe@^2.0.0: 2323 | version "2.0.0" 2324 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2325 | 2326 | isobject@^2.0.0: 2327 | version "2.1.0" 2328 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2329 | dependencies: 2330 | isarray "1.0.0" 2331 | 2332 | isomorphic-fetch@^2.1.1: 2333 | version "2.2.1" 2334 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" 2335 | dependencies: 2336 | node-fetch "^1.0.1" 2337 | whatwg-fetch ">=0.10.0" 2338 | 2339 | isstream@~0.1.2: 2340 | version "0.1.2" 2341 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2342 | 2343 | js-base64@^2.1.8, js-base64@^2.1.9: 2344 | version "2.1.9" 2345 | resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.1.9.tgz#f0e80ae039a4bd654b5f281fc93f04a914a7fcce" 2346 | 2347 | js-tokens@^3.0.0: 2348 | version "3.0.1" 2349 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 2350 | 2351 | js-yaml@~3.7.0: 2352 | version "3.7.0" 2353 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80" 2354 | dependencies: 2355 | argparse "^1.0.7" 2356 | esprima "^2.6.0" 2357 | 2358 | jsbn@~0.1.0: 2359 | version "0.1.1" 2360 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2361 | 2362 | jsesc@^1.3.0: 2363 | version "1.3.0" 2364 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2365 | 2366 | jsesc@~0.5.0: 2367 | version "0.5.0" 2368 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2369 | 2370 | json-schema@0.2.3: 2371 | version "0.2.3" 2372 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2373 | 2374 | json-stable-stringify@^1.0.1: 2375 | version "1.0.1" 2376 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2377 | dependencies: 2378 | jsonify "~0.0.0" 2379 | 2380 | json-stringify-safe@~5.0.1: 2381 | version "5.0.1" 2382 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2383 | 2384 | json3@^3.3.2: 2385 | version "3.3.2" 2386 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 2387 | 2388 | json5@^0.5.0: 2389 | version "0.5.1" 2390 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2391 | 2392 | jsonify@~0.0.0: 2393 | version "0.0.0" 2394 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2395 | 2396 | jsprim@^1.2.2: 2397 | version "1.4.0" 2398 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 2399 | dependencies: 2400 | assert-plus "1.0.0" 2401 | extsprintf "1.0.2" 2402 | json-schema "0.2.3" 2403 | verror "1.3.6" 2404 | 2405 | jstransform@^11.0.3: 2406 | version "11.0.3" 2407 | resolved "https://registry.yarnpkg.com/jstransform/-/jstransform-11.0.3.tgz#09a78993e0ae4d4ef4487f6155a91f6190cb4223" 2408 | dependencies: 2409 | base62 "^1.1.0" 2410 | commoner "^0.10.1" 2411 | esprima-fb "^15001.1.0-dev-harmony-fb" 2412 | object-assign "^2.0.0" 2413 | source-map "^0.4.2" 2414 | 2415 | kind-of@^3.0.2: 2416 | version "3.2.2" 2417 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2418 | dependencies: 2419 | is-buffer "^1.1.5" 2420 | 2421 | kind-of@^4.0.0: 2422 | version "4.0.0" 2423 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2424 | dependencies: 2425 | is-buffer "^1.1.5" 2426 | 2427 | lazy-cache@^1.0.3: 2428 | version "1.0.4" 2429 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2430 | 2431 | lcid@^1.0.0: 2432 | version "1.0.0" 2433 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2434 | dependencies: 2435 | invert-kv "^1.0.0" 2436 | 2437 | load-json-file@^1.0.0: 2438 | version "1.1.0" 2439 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2440 | dependencies: 2441 | graceful-fs "^4.1.2" 2442 | parse-json "^2.2.0" 2443 | pify "^2.0.0" 2444 | pinkie-promise "^2.0.0" 2445 | strip-bom "^2.0.0" 2446 | 2447 | loader-utils@^0.2.11, loader-utils@^0.2.15, loader-utils@^0.2.16, loader-utils@~0.2.2: 2448 | version "0.2.17" 2449 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.17.tgz#f86e6374d43205a6e6c60e9196f17c0299bfb348" 2450 | dependencies: 2451 | big.js "^3.1.3" 2452 | emojis-list "^2.0.0" 2453 | json5 "^0.5.0" 2454 | object-assign "^4.0.1" 2455 | 2456 | loader-utils@^1.0.2: 2457 | version "1.1.0" 2458 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd" 2459 | dependencies: 2460 | big.js "^3.1.3" 2461 | emojis-list "^2.0.0" 2462 | json5 "^0.5.0" 2463 | 2464 | lodash._createcompounder@^3.0.0: 2465 | version "3.0.0" 2466 | resolved "https://registry.yarnpkg.com/lodash._createcompounder/-/lodash._createcompounder-3.0.0.tgz#5dd2cb55372d6e70e0e2392fb2304d6631091075" 2467 | dependencies: 2468 | lodash.deburr "^3.0.0" 2469 | lodash.words "^3.0.0" 2470 | 2471 | lodash._getnative@^3.0.0: 2472 | version "3.9.1" 2473 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 2474 | 2475 | lodash._root@^3.0.0: 2476 | version "3.0.1" 2477 | resolved "https://registry.yarnpkg.com/lodash._root/-/lodash._root-3.0.1.tgz#fba1c4524c19ee9a5f8136b4609f017cf4ded692" 2478 | 2479 | lodash.assign@^4.2.0: 2480 | version "4.2.0" 2481 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" 2482 | 2483 | lodash.camelcase@^3.0.1: 2484 | version "3.0.1" 2485 | resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-3.0.1.tgz#932c8b87f8a4377897c67197533282f97aeac298" 2486 | dependencies: 2487 | lodash._createcompounder "^3.0.0" 2488 | 2489 | lodash.clonedeep@^4.3.2: 2490 | version "4.5.0" 2491 | resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" 2492 | 2493 | lodash.debounce@^3.1.1: 2494 | version "3.1.1" 2495 | resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-3.1.1.tgz#812211c378a94cc29d5aa4e3346cf0bfce3a7df5" 2496 | dependencies: 2497 | lodash._getnative "^3.0.0" 2498 | 2499 | lodash.deburr@^3.0.0: 2500 | version "3.2.0" 2501 | resolved "https://registry.yarnpkg.com/lodash.deburr/-/lodash.deburr-3.2.0.tgz#6da8f54334a366a7cf4c4c76ef8d80aa1b365ed5" 2502 | dependencies: 2503 | lodash._root "^3.0.0" 2504 | 2505 | lodash.memoize@^4.1.2: 2506 | version "4.1.2" 2507 | resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" 2508 | 2509 | lodash.uniq@^4.5.0: 2510 | version "4.5.0" 2511 | resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" 2512 | 2513 | lodash.words@^3.0.0: 2514 | version "3.2.0" 2515 | resolved "https://registry.yarnpkg.com/lodash.words/-/lodash.words-3.2.0.tgz#4e2a8649bc08745b17c695b1a3ce8fee596623b3" 2516 | dependencies: 2517 | lodash._root "^3.0.0" 2518 | 2519 | lodash@^4.0.0, lodash@^4.14.0, lodash@^4.14.2, lodash@^4.17.2, lodash@^4.2.0, lodash@~4.17.4: 2520 | version "4.17.4" 2521 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2522 | 2523 | longest@^1.0.1: 2524 | version "1.0.1" 2525 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2526 | 2527 | loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.3.1: 2528 | version "1.3.1" 2529 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2530 | dependencies: 2531 | js-tokens "^3.0.0" 2532 | 2533 | loud-rejection@^1.0.0: 2534 | version "1.6.0" 2535 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 2536 | dependencies: 2537 | currently-unhandled "^0.4.1" 2538 | signal-exit "^3.0.0" 2539 | 2540 | lru-cache@^4.0.1: 2541 | version "4.1.1" 2542 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 2543 | dependencies: 2544 | pseudomap "^1.0.2" 2545 | yallist "^2.1.2" 2546 | 2547 | macaddress@^0.2.8: 2548 | version "0.2.8" 2549 | resolved "https://registry.yarnpkg.com/macaddress/-/macaddress-0.2.8.tgz#5904dc537c39ec6dbefeae902327135fa8511f12" 2550 | 2551 | map-obj@^1.0.0, map-obj@^1.0.1: 2552 | version "1.0.1" 2553 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 2554 | 2555 | math-expression-evaluator@^1.2.14: 2556 | version "1.2.17" 2557 | resolved "https://registry.yarnpkg.com/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz#de819fdbcd84dccd8fae59c6aeb79615b9d266ac" 2558 | 2559 | media-typer@0.3.0: 2560 | version "0.3.0" 2561 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 2562 | 2563 | memory-fs@^0.2.0: 2564 | version "0.2.0" 2565 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.2.0.tgz#f2bb25368bc121e391c2520de92969caee0a0290" 2566 | 2567 | memory-fs@~0.3.0: 2568 | version "0.3.0" 2569 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.3.0.tgz#7bcc6b629e3a43e871d7e29aca6ae8a7f15cbb20" 2570 | dependencies: 2571 | errno "^0.1.3" 2572 | readable-stream "^2.0.1" 2573 | 2574 | memory-fs@~0.4.1: 2575 | version "0.4.1" 2576 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" 2577 | dependencies: 2578 | errno "^0.1.3" 2579 | readable-stream "^2.0.1" 2580 | 2581 | meow@^3.7.0: 2582 | version "3.7.0" 2583 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 2584 | dependencies: 2585 | camelcase-keys "^2.0.0" 2586 | decamelize "^1.1.2" 2587 | loud-rejection "^1.0.0" 2588 | map-obj "^1.0.1" 2589 | minimist "^1.1.3" 2590 | normalize-package-data "^2.3.4" 2591 | object-assign "^4.0.1" 2592 | read-pkg-up "^1.0.1" 2593 | redent "^1.0.0" 2594 | trim-newlines "^1.0.0" 2595 | 2596 | merge-descriptors@1.0.1: 2597 | version "1.0.1" 2598 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" 2599 | 2600 | methods@~1.1.2: 2601 | version "1.1.2" 2602 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 2603 | 2604 | micromatch@^2.1.5, micromatch@^2.3.11: 2605 | version "2.3.11" 2606 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2607 | dependencies: 2608 | arr-diff "^2.0.0" 2609 | array-unique "^0.2.1" 2610 | braces "^1.8.2" 2611 | expand-brackets "^0.1.4" 2612 | extglob "^0.3.1" 2613 | filename-regex "^2.0.0" 2614 | is-extglob "^1.0.0" 2615 | is-glob "^2.0.1" 2616 | kind-of "^3.0.2" 2617 | normalize-path "^2.0.1" 2618 | object.omit "^2.0.0" 2619 | parse-glob "^3.0.4" 2620 | regex-cache "^0.4.2" 2621 | 2622 | miller-rabin@^4.0.0: 2623 | version "4.0.0" 2624 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.0.tgz#4a62fb1d42933c05583982f4c716f6fb9e6c6d3d" 2625 | dependencies: 2626 | bn.js "^4.0.0" 2627 | brorand "^1.0.1" 2628 | 2629 | "mime-db@>= 1.27.0 < 2", mime-db@~1.27.0: 2630 | version "1.27.0" 2631 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 2632 | 2633 | mime-types@^2.1.12, mime-types@~2.1.11, mime-types@~2.1.15, mime-types@~2.1.7: 2634 | version "2.1.15" 2635 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 2636 | dependencies: 2637 | mime-db "~1.27.0" 2638 | 2639 | mime@1.3.4: 2640 | version "1.3.4" 2641 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53" 2642 | 2643 | mime@^1.2.11, mime@^1.3.4: 2644 | version "1.3.6" 2645 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.6.tgz#591d84d3653a6b0b4a3b9df8de5aa8108e72e5e0" 2646 | 2647 | minimalistic-assert@^1.0.0: 2648 | version "1.0.0" 2649 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" 2650 | 2651 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: 2652 | version "1.0.1" 2653 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 2654 | 2655 | "minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4, minimatch@~3.0.2: 2656 | version "3.0.4" 2657 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2658 | dependencies: 2659 | brace-expansion "^1.1.7" 2660 | 2661 | minimist@0.0.8, minimist@~0.0.1: 2662 | version "0.0.8" 2663 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2664 | 2665 | minimist@^1.1.0, minimist@^1.1.3, minimist@^1.2.0: 2666 | version "1.2.0" 2667 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2668 | 2669 | mitt@^1.0.1: 2670 | version "1.1.2" 2671 | resolved "https://registry.yarnpkg.com/mitt/-/mitt-1.1.2.tgz#380e61480d6a615b660f07abb60d51e0a4e4bed6" 2672 | 2673 | mkdirp@0.5.x, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1: 2674 | version "0.5.1" 2675 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2676 | dependencies: 2677 | minimist "0.0.8" 2678 | 2679 | ms@0.7.1: 2680 | version "0.7.1" 2681 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 2682 | 2683 | ms@2.0.0: 2684 | version "2.0.0" 2685 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2686 | 2687 | nan@^2.3.0, nan@^2.3.2: 2688 | version "2.6.2" 2689 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45" 2690 | 2691 | negotiator@0.6.1: 2692 | version "0.6.1" 2693 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" 2694 | 2695 | no-scroll@^2.0.0: 2696 | version "2.1.0" 2697 | resolved "https://registry.yarnpkg.com/no-scroll/-/no-scroll-2.1.0.tgz#f8643b3ddb6a3bf94430e5ff31d26f21d082a695" 2698 | 2699 | node-fetch@^1.0.1: 2700 | version "1.7.1" 2701 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.1.tgz#899cb3d0a3c92f952c47f1b876f4c8aeabd400d5" 2702 | dependencies: 2703 | encoding "^0.1.11" 2704 | is-stream "^1.0.1" 2705 | 2706 | node-gyp@^3.3.1: 2707 | version "3.6.2" 2708 | resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-3.6.2.tgz#9bfbe54562286284838e750eac05295853fa1c60" 2709 | dependencies: 2710 | fstream "^1.0.0" 2711 | glob "^7.0.3" 2712 | graceful-fs "^4.1.2" 2713 | minimatch "^3.0.2" 2714 | mkdirp "^0.5.0" 2715 | nopt "2 || 3" 2716 | npmlog "0 || 1 || 2 || 3 || 4" 2717 | osenv "0" 2718 | request "2" 2719 | rimraf "2" 2720 | semver "~5.3.0" 2721 | tar "^2.0.0" 2722 | which "1" 2723 | 2724 | node-libs-browser@^0.7.0: 2725 | version "0.7.0" 2726 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-0.7.0.tgz#3e272c0819e308935e26674408d7af0e1491b83b" 2727 | dependencies: 2728 | assert "^1.1.1" 2729 | browserify-zlib "^0.1.4" 2730 | buffer "^4.9.0" 2731 | console-browserify "^1.1.0" 2732 | constants-browserify "^1.0.0" 2733 | crypto-browserify "3.3.0" 2734 | domain-browser "^1.1.1" 2735 | events "^1.0.0" 2736 | https-browserify "0.0.1" 2737 | os-browserify "^0.2.0" 2738 | path-browserify "0.0.0" 2739 | process "^0.11.0" 2740 | punycode "^1.2.4" 2741 | querystring-es3 "^0.2.0" 2742 | readable-stream "^2.0.5" 2743 | stream-browserify "^2.0.1" 2744 | stream-http "^2.3.1" 2745 | string_decoder "^0.10.25" 2746 | timers-browserify "^2.0.2" 2747 | tty-browserify "0.0.0" 2748 | url "^0.11.0" 2749 | util "^0.10.3" 2750 | vm-browserify "0.0.4" 2751 | 2752 | node-libs-browser@^1.0.0: 2753 | version "1.1.1" 2754 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-1.1.1.tgz#2a38243abedd7dffcd07a97c9aca5668975a6fea" 2755 | dependencies: 2756 | assert "^1.1.1" 2757 | browserify-zlib "^0.1.4" 2758 | buffer "^4.3.0" 2759 | console-browserify "^1.1.0" 2760 | constants-browserify "^1.0.0" 2761 | crypto-browserify "^3.11.0" 2762 | domain-browser "^1.1.1" 2763 | events "^1.0.0" 2764 | https-browserify "0.0.1" 2765 | os-browserify "^0.2.0" 2766 | path-browserify "0.0.0" 2767 | process "^0.11.0" 2768 | punycode "^1.2.4" 2769 | querystring-es3 "^0.2.0" 2770 | readable-stream "^2.0.5" 2771 | stream-browserify "^2.0.1" 2772 | stream-http "^2.3.1" 2773 | string_decoder "^0.10.25" 2774 | timers-browserify "^1.4.2" 2775 | tty-browserify "0.0.0" 2776 | url "^0.11.0" 2777 | util "^0.10.3" 2778 | vm-browserify "0.0.4" 2779 | 2780 | node-pre-gyp@^0.6.36: 2781 | version "0.6.36" 2782 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz#db604112cb74e0d477554e9b505b17abddfab786" 2783 | dependencies: 2784 | mkdirp "^0.5.1" 2785 | nopt "^4.0.1" 2786 | npmlog "^4.0.2" 2787 | rc "^1.1.7" 2788 | request "^2.81.0" 2789 | rimraf "^2.6.1" 2790 | semver "^5.3.0" 2791 | tar "^2.2.1" 2792 | tar-pack "^3.4.0" 2793 | 2794 | node-sass@^3.2.0: 2795 | version "3.13.1" 2796 | resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-3.13.1.tgz#7240fbbff2396304b4223527ed3020589c004fc2" 2797 | dependencies: 2798 | async-foreach "^0.1.3" 2799 | chalk "^1.1.1" 2800 | cross-spawn "^3.0.0" 2801 | gaze "^1.0.0" 2802 | get-stdin "^4.0.1" 2803 | glob "^7.0.3" 2804 | in-publish "^2.0.0" 2805 | lodash.assign "^4.2.0" 2806 | lodash.clonedeep "^4.3.2" 2807 | meow "^3.7.0" 2808 | mkdirp "^0.5.1" 2809 | nan "^2.3.2" 2810 | node-gyp "^3.3.1" 2811 | npmlog "^4.0.0" 2812 | request "^2.61.0" 2813 | sass-graph "^2.1.1" 2814 | 2815 | "nopt@2 || 3": 2816 | version "3.0.6" 2817 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 2818 | dependencies: 2819 | abbrev "1" 2820 | 2821 | nopt@^4.0.1: 2822 | version "4.0.1" 2823 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2824 | dependencies: 2825 | abbrev "1" 2826 | osenv "^0.1.4" 2827 | 2828 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: 2829 | version "2.3.8" 2830 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" 2831 | dependencies: 2832 | hosted-git-info "^2.1.4" 2833 | is-builtin-module "^1.0.0" 2834 | semver "2 || 3 || 4 || 5" 2835 | validate-npm-package-license "^3.0.1" 2836 | 2837 | normalize-path@^2.0.1: 2838 | version "2.1.1" 2839 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2840 | dependencies: 2841 | remove-trailing-separator "^1.0.1" 2842 | 2843 | normalize-range@^0.1.2: 2844 | version "0.1.2" 2845 | resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" 2846 | 2847 | normalize-url@^1.4.0: 2848 | version "1.9.1" 2849 | resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-1.9.1.tgz#2cc0d66b31ea23036458436e3620d85954c66c3c" 2850 | dependencies: 2851 | object-assign "^4.0.1" 2852 | prepend-http "^1.0.0" 2853 | query-string "^4.1.0" 2854 | sort-keys "^1.0.0" 2855 | 2856 | "npmlog@0 || 1 || 2 || 3 || 4", npmlog@^4.0.0, npmlog@^4.0.2: 2857 | version "4.1.0" 2858 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.0.tgz#dc59bee85f64f00ed424efb2af0783df25d1c0b5" 2859 | dependencies: 2860 | are-we-there-yet "~1.1.2" 2861 | console-control-strings "~1.1.0" 2862 | gauge "~2.7.3" 2863 | set-blocking "~2.0.0" 2864 | 2865 | num2fraction@^1.2.2: 2866 | version "1.2.2" 2867 | resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" 2868 | 2869 | number-is-nan@^1.0.0: 2870 | version "1.0.1" 2871 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2872 | 2873 | oauth-sign@~0.8.1: 2874 | version "0.8.2" 2875 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2876 | 2877 | object-assign@^2.0.0: 2878 | version "2.1.1" 2879 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-2.1.1.tgz#43c36e5d569ff8e4816c4efa8be02d26967c18aa" 2880 | 2881 | object-assign@^4.0.1, object-assign@^4.1.0: 2882 | version "4.1.1" 2883 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2884 | 2885 | object.omit@^2.0.0: 2886 | version "2.0.1" 2887 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2888 | dependencies: 2889 | for-own "^0.1.4" 2890 | is-extendable "^0.1.1" 2891 | 2892 | on-finished@~2.3.0: 2893 | version "2.3.0" 2894 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 2895 | dependencies: 2896 | ee-first "1.1.1" 2897 | 2898 | on-headers@~1.0.1: 2899 | version "1.0.1" 2900 | resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.1.tgz#928f5d0f470d49342651ea6794b0857c100693f7" 2901 | 2902 | once@^1.3.0, once@^1.3.3: 2903 | version "1.4.0" 2904 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2905 | dependencies: 2906 | wrappy "1" 2907 | 2908 | open@0.0.5: 2909 | version "0.0.5" 2910 | resolved "https://registry.yarnpkg.com/open/-/open-0.0.5.tgz#42c3e18ec95466b6bf0dc42f3a2945c3f0cad8fc" 2911 | 2912 | opener@~1.4.0: 2913 | version "1.4.3" 2914 | resolved "https://registry.yarnpkg.com/opener/-/opener-1.4.3.tgz#5c6da2c5d7e5831e8ffa3964950f8d6674ac90b8" 2915 | 2916 | optimist@0.6.x, optimist@~0.6.0, optimist@~0.6.1: 2917 | version "0.6.1" 2918 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2919 | dependencies: 2920 | minimist "~0.0.1" 2921 | wordwrap "~0.0.2" 2922 | 2923 | original@>=0.0.5: 2924 | version "1.0.0" 2925 | resolved "https://registry.yarnpkg.com/original/-/original-1.0.0.tgz#9147f93fa1696d04be61e01bd50baeaca656bd3b" 2926 | dependencies: 2927 | url-parse "1.0.x" 2928 | 2929 | os-browserify@^0.2.0: 2930 | version "0.2.1" 2931 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.2.1.tgz#63fc4ccee5d2d7763d26bbf8601078e6c2e0044f" 2932 | 2933 | os-homedir@^1.0.0: 2934 | version "1.0.2" 2935 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2936 | 2937 | os-locale@^1.4.0: 2938 | version "1.4.0" 2939 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2940 | dependencies: 2941 | lcid "^1.0.0" 2942 | 2943 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 2944 | version "1.0.2" 2945 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2946 | 2947 | osenv@0, osenv@^0.1.4: 2948 | version "0.1.4" 2949 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2950 | dependencies: 2951 | os-homedir "^1.0.0" 2952 | os-tmpdir "^1.0.0" 2953 | 2954 | output-file-sync@^1.1.0: 2955 | version "1.1.2" 2956 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2957 | dependencies: 2958 | graceful-fs "^4.1.4" 2959 | mkdirp "^0.5.1" 2960 | object-assign "^4.1.0" 2961 | 2962 | pako@~0.2.0: 2963 | version "0.2.9" 2964 | resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" 2965 | 2966 | parse-asn1@^5.0.0: 2967 | version "5.1.0" 2968 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712" 2969 | dependencies: 2970 | asn1.js "^4.0.0" 2971 | browserify-aes "^1.0.0" 2972 | create-hash "^1.1.0" 2973 | evp_bytestokey "^1.0.0" 2974 | pbkdf2 "^3.0.3" 2975 | 2976 | parse-glob@^3.0.4: 2977 | version "3.0.4" 2978 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2979 | dependencies: 2980 | glob-base "^0.3.0" 2981 | is-dotfile "^1.0.0" 2982 | is-extglob "^1.0.0" 2983 | is-glob "^2.0.0" 2984 | 2985 | parse-json@^2.2.0: 2986 | version "2.2.0" 2987 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2988 | dependencies: 2989 | error-ex "^1.2.0" 2990 | 2991 | parseurl@~1.3.1: 2992 | version "1.3.1" 2993 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.1.tgz#c8ab8c9223ba34888aa64a297b28853bec18da56" 2994 | 2995 | path-browserify@0.0.0: 2996 | version "0.0.0" 2997 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 2998 | 2999 | path-exists@^2.0.0: 3000 | version "2.1.0" 3001 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 3002 | dependencies: 3003 | pinkie-promise "^2.0.0" 3004 | 3005 | path-is-absolute@^1.0.0: 3006 | version "1.0.1" 3007 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 3008 | 3009 | path-to-regexp@0.1.7: 3010 | version "0.1.7" 3011 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" 3012 | 3013 | path-type@^1.0.0: 3014 | version "1.1.0" 3015 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 3016 | dependencies: 3017 | graceful-fs "^4.1.2" 3018 | pify "^2.0.0" 3019 | pinkie-promise "^2.0.0" 3020 | 3021 | pbkdf2-compat@2.0.1: 3022 | version "2.0.1" 3023 | resolved "https://registry.yarnpkg.com/pbkdf2-compat/-/pbkdf2-compat-2.0.1.tgz#b6e0c8fa99494d94e0511575802a59a5c142f288" 3024 | 3025 | pbkdf2@^3.0.3: 3026 | version "3.0.12" 3027 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.12.tgz#be36785c5067ea48d806ff923288c5f750b6b8a2" 3028 | dependencies: 3029 | create-hash "^1.1.2" 3030 | create-hmac "^1.1.4" 3031 | ripemd160 "^2.0.1" 3032 | safe-buffer "^5.0.1" 3033 | sha.js "^2.4.8" 3034 | 3035 | performance-now@^0.2.0: 3036 | version "0.2.0" 3037 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 3038 | 3039 | performance-now@^2.1.0: 3040 | version "2.1.0" 3041 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 3042 | 3043 | pify@^2.0.0: 3044 | version "2.3.0" 3045 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 3046 | 3047 | pinkie-promise@^2.0.0: 3048 | version "2.0.1" 3049 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 3050 | dependencies: 3051 | pinkie "^2.0.0" 3052 | 3053 | pinkie@^2.0.0: 3054 | version "2.0.4" 3055 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 3056 | 3057 | pkg-dir@^1.0.0: 3058 | version "1.0.0" 3059 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 3060 | dependencies: 3061 | find-up "^1.0.0" 3062 | 3063 | popper.js@^1.10.2: 3064 | version "1.10.2" 3065 | resolved "https://registry.yarnpkg.com/popper.js/-/popper.js-1.10.2.tgz#3d2d7788e1d85286051633dac6d23554134e4a04" 3066 | 3067 | portfinder@0.4.x: 3068 | version "0.4.0" 3069 | resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-0.4.0.tgz#a3ffadffafe4fb98e0601a85eda27c27ce84ca1e" 3070 | dependencies: 3071 | async "0.9.0" 3072 | mkdirp "0.5.x" 3073 | 3074 | postcss-calc@^5.2.0: 3075 | version "5.3.1" 3076 | resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-5.3.1.tgz#77bae7ca928ad85716e2fda42f261bf7c1d65b5e" 3077 | dependencies: 3078 | postcss "^5.0.2" 3079 | postcss-message-helpers "^2.0.0" 3080 | reduce-css-calc "^1.2.6" 3081 | 3082 | postcss-colormin@^2.1.8: 3083 | version "2.2.2" 3084 | resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-2.2.2.tgz#6631417d5f0e909a3d7ec26b24c8a8d1e4f96e4b" 3085 | dependencies: 3086 | colormin "^1.0.5" 3087 | postcss "^5.0.13" 3088 | postcss-value-parser "^3.2.3" 3089 | 3090 | postcss-convert-values@^2.3.4: 3091 | version "2.6.1" 3092 | resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz#bbd8593c5c1fd2e3d1c322bb925dcae8dae4d62d" 3093 | dependencies: 3094 | postcss "^5.0.11" 3095 | postcss-value-parser "^3.1.2" 3096 | 3097 | postcss-discard-comments@^2.0.4: 3098 | version "2.0.4" 3099 | resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz#befe89fafd5b3dace5ccce51b76b81514be00e3d" 3100 | dependencies: 3101 | postcss "^5.0.14" 3102 | 3103 | postcss-discard-duplicates@^2.0.1: 3104 | version "2.1.0" 3105 | resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-2.1.0.tgz#b9abf27b88ac188158a5eb12abcae20263b91932" 3106 | dependencies: 3107 | postcss "^5.0.4" 3108 | 3109 | postcss-discard-empty@^2.0.1: 3110 | version "2.1.0" 3111 | resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz#d2b4bd9d5ced5ebd8dcade7640c7d7cd7f4f92b5" 3112 | dependencies: 3113 | postcss "^5.0.14" 3114 | 3115 | postcss-discard-overridden@^0.1.1: 3116 | version "0.1.1" 3117 | resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz#8b1eaf554f686fb288cd874c55667b0aa3668d58" 3118 | dependencies: 3119 | postcss "^5.0.16" 3120 | 3121 | postcss-discard-unused@^2.2.1: 3122 | version "2.2.3" 3123 | resolved "https://registry.yarnpkg.com/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz#bce30b2cc591ffc634322b5fb3464b6d934f4433" 3124 | dependencies: 3125 | postcss "^5.0.14" 3126 | uniqs "^2.0.0" 3127 | 3128 | postcss-filter-plugins@^2.0.0: 3129 | version "2.0.2" 3130 | resolved "https://registry.yarnpkg.com/postcss-filter-plugins/-/postcss-filter-plugins-2.0.2.tgz#6d85862534d735ac420e4a85806e1f5d4286d84c" 3131 | dependencies: 3132 | postcss "^5.0.4" 3133 | uniqid "^4.0.0" 3134 | 3135 | postcss-loader@^0.13.0: 3136 | version "0.13.0" 3137 | resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-0.13.0.tgz#72fdaf0d29444df77d3751ce4e69dc40bc99ed85" 3138 | dependencies: 3139 | loader-utils "^0.2.15" 3140 | postcss "^5.2.0" 3141 | 3142 | postcss-merge-idents@^2.1.5: 3143 | version "2.1.7" 3144 | resolved "https://registry.yarnpkg.com/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz#4c5530313c08e1d5b3bbf3d2bbc747e278eea270" 3145 | dependencies: 3146 | has "^1.0.1" 3147 | postcss "^5.0.10" 3148 | postcss-value-parser "^3.1.1" 3149 | 3150 | postcss-merge-longhand@^2.0.1: 3151 | version "2.0.2" 3152 | resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz#23d90cd127b0a77994915332739034a1a4f3d658" 3153 | dependencies: 3154 | postcss "^5.0.4" 3155 | 3156 | postcss-merge-rules@^2.0.3: 3157 | version "2.1.2" 3158 | resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-2.1.2.tgz#d1df5dfaa7b1acc3be553f0e9e10e87c61b5f721" 3159 | dependencies: 3160 | browserslist "^1.5.2" 3161 | caniuse-api "^1.5.2" 3162 | postcss "^5.0.4" 3163 | postcss-selector-parser "^2.2.2" 3164 | vendors "^1.0.0" 3165 | 3166 | postcss-message-helpers@^2.0.0: 3167 | version "2.0.0" 3168 | resolved "https://registry.yarnpkg.com/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz#a4f2f4fab6e4fe002f0aed000478cdf52f9ba60e" 3169 | 3170 | postcss-minify-font-values@^1.0.2: 3171 | version "1.0.5" 3172 | resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz#4b58edb56641eba7c8474ab3526cafd7bbdecb69" 3173 | dependencies: 3174 | object-assign "^4.0.1" 3175 | postcss "^5.0.4" 3176 | postcss-value-parser "^3.0.2" 3177 | 3178 | postcss-minify-gradients@^1.0.1: 3179 | version "1.0.5" 3180 | resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz#5dbda11373703f83cfb4a3ea3881d8d75ff5e6e1" 3181 | dependencies: 3182 | postcss "^5.0.12" 3183 | postcss-value-parser "^3.3.0" 3184 | 3185 | postcss-minify-params@^1.0.4: 3186 | version "1.2.2" 3187 | resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz#ad2ce071373b943b3d930a3fa59a358c28d6f1f3" 3188 | dependencies: 3189 | alphanum-sort "^1.0.1" 3190 | postcss "^5.0.2" 3191 | postcss-value-parser "^3.0.2" 3192 | uniqs "^2.0.0" 3193 | 3194 | postcss-minify-selectors@^2.0.4: 3195 | version "2.1.1" 3196 | resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz#b2c6a98c0072cf91b932d1a496508114311735bf" 3197 | dependencies: 3198 | alphanum-sort "^1.0.2" 3199 | has "^1.0.1" 3200 | postcss "^5.0.14" 3201 | postcss-selector-parser "^2.0.0" 3202 | 3203 | postcss-modules-extract-imports@^1.0.0: 3204 | version "1.2.0" 3205 | resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.2.0.tgz#66140ecece38ef06bf0d3e355d69bf59d141ea85" 3206 | dependencies: 3207 | postcss "^6.0.1" 3208 | 3209 | postcss-modules-local-by-default@^1.0.1: 3210 | version "1.2.0" 3211 | resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz#f7d80c398c5a393fa7964466bd19500a7d61c069" 3212 | dependencies: 3213 | css-selector-tokenizer "^0.7.0" 3214 | postcss "^6.0.1" 3215 | 3216 | postcss-modules-scope@^1.0.0: 3217 | version "1.1.0" 3218 | resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz#d6ea64994c79f97b62a72b426fbe6056a194bb90" 3219 | dependencies: 3220 | css-selector-tokenizer "^0.7.0" 3221 | postcss "^6.0.1" 3222 | 3223 | postcss-modules-values@^1.1.0: 3224 | version "1.3.0" 3225 | resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz#ecffa9d7e192518389f42ad0e83f72aec456ea20" 3226 | dependencies: 3227 | icss-replace-symbols "^1.1.0" 3228 | postcss "^6.0.1" 3229 | 3230 | postcss-normalize-charset@^1.1.0: 3231 | version "1.1.1" 3232 | resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz#ef9ee71212d7fe759c78ed162f61ed62b5cb93f1" 3233 | dependencies: 3234 | postcss "^5.0.5" 3235 | 3236 | postcss-normalize-url@^3.0.7: 3237 | version "3.0.8" 3238 | resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz#108f74b3f2fcdaf891a2ffa3ea4592279fc78222" 3239 | dependencies: 3240 | is-absolute-url "^2.0.0" 3241 | normalize-url "^1.4.0" 3242 | postcss "^5.0.14" 3243 | postcss-value-parser "^3.2.3" 3244 | 3245 | postcss-ordered-values@^2.1.0: 3246 | version "2.2.3" 3247 | resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz#eec6c2a67b6c412a8db2042e77fe8da43f95c11d" 3248 | dependencies: 3249 | postcss "^5.0.4" 3250 | postcss-value-parser "^3.0.1" 3251 | 3252 | postcss-reduce-idents@^2.2.2: 3253 | version "2.4.0" 3254 | resolved "https://registry.yarnpkg.com/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz#c2c6d20cc958284f6abfbe63f7609bf409059ad3" 3255 | dependencies: 3256 | postcss "^5.0.4" 3257 | postcss-value-parser "^3.0.2" 3258 | 3259 | postcss-reduce-initial@^1.0.0: 3260 | version "1.0.1" 3261 | resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz#68f80695f045d08263a879ad240df8dd64f644ea" 3262 | dependencies: 3263 | postcss "^5.0.4" 3264 | 3265 | postcss-reduce-transforms@^1.0.3: 3266 | version "1.0.4" 3267 | resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz#ff76f4d8212437b31c298a42d2e1444025771ae1" 3268 | dependencies: 3269 | has "^1.0.1" 3270 | postcss "^5.0.8" 3271 | postcss-value-parser "^3.0.1" 3272 | 3273 | postcss-selector-parser@^2.0.0, postcss-selector-parser@^2.2.2: 3274 | version "2.2.3" 3275 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz#f9437788606c3c9acee16ffe8d8b16297f27bb90" 3276 | dependencies: 3277 | flatten "^1.0.2" 3278 | indexes-of "^1.0.1" 3279 | uniq "^1.0.1" 3280 | 3281 | postcss-svgo@^2.1.1: 3282 | version "2.1.6" 3283 | resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-2.1.6.tgz#b6df18aa613b666e133f08adb5219c2684ac108d" 3284 | dependencies: 3285 | is-svg "^2.0.0" 3286 | postcss "^5.0.14" 3287 | postcss-value-parser "^3.2.3" 3288 | svgo "^0.7.0" 3289 | 3290 | postcss-unique-selectors@^2.0.2: 3291 | version "2.0.2" 3292 | resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz#981d57d29ddcb33e7b1dfe1fd43b8649f933ca1d" 3293 | dependencies: 3294 | alphanum-sort "^1.0.1" 3295 | postcss "^5.0.4" 3296 | uniqs "^2.0.0" 3297 | 3298 | 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: 3299 | version "3.3.0" 3300 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15" 3301 | 3302 | postcss-zindex@^2.0.1: 3303 | version "2.2.0" 3304 | resolved "https://registry.yarnpkg.com/postcss-zindex/-/postcss-zindex-2.2.0.tgz#d2109ddc055b91af67fc4cb3b025946639d2af22" 3305 | dependencies: 3306 | has "^1.0.1" 3307 | postcss "^5.0.4" 3308 | uniqs "^2.0.0" 3309 | 3310 | 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.0, postcss@^5.2.16: 3311 | version "5.2.17" 3312 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.2.17.tgz#cf4f597b864d65c8a492b2eabe9d706c879c388b" 3313 | dependencies: 3314 | chalk "^1.1.3" 3315 | js-base64 "^2.1.9" 3316 | source-map "^0.5.6" 3317 | supports-color "^3.2.3" 3318 | 3319 | postcss@^6.0.1: 3320 | version "6.0.2" 3321 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.2.tgz#5c4fea589f0ac3b00caa75b1cbc3a284195b7e5d" 3322 | dependencies: 3323 | chalk "^1.1.3" 3324 | source-map "^0.5.6" 3325 | supports-color "^3.2.3" 3326 | 3327 | prepend-http@^1.0.0: 3328 | version "1.0.4" 3329 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 3330 | 3331 | preserve@^0.2.0: 3332 | version "0.2.0" 3333 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 3334 | 3335 | private@^0.1.6, private@~0.1.5: 3336 | version "0.1.7" 3337 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 3338 | 3339 | process-nextick-args@~1.0.6: 3340 | version "1.0.7" 3341 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 3342 | 3343 | process@^0.11.0, process@~0.11.0: 3344 | version "0.11.10" 3345 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" 3346 | 3347 | promise@^7.0.3, promise@^7.1.1: 3348 | version "7.3.1" 3349 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" 3350 | dependencies: 3351 | asap "~2.0.3" 3352 | 3353 | prop-types@^15.5.10, prop-types@^15.5.4: 3354 | version "15.5.10" 3355 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.5.10.tgz#2797dfc3126182e3a95e3dfbb2e893ddd7456154" 3356 | dependencies: 3357 | fbjs "^0.8.9" 3358 | loose-envify "^1.3.1" 3359 | 3360 | proxy-addr@~1.1.4: 3361 | version "1.1.4" 3362 | resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-1.1.4.tgz#27e545f6960a44a627d9b44467e35c1b6b4ce2f3" 3363 | dependencies: 3364 | forwarded "~0.1.0" 3365 | ipaddr.js "1.3.0" 3366 | 3367 | prr@~0.0.0: 3368 | version "0.0.0" 3369 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 3370 | 3371 | pseudomap@^1.0.2: 3372 | version "1.0.2" 3373 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 3374 | 3375 | public-encrypt@^4.0.0: 3376 | version "4.0.0" 3377 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" 3378 | dependencies: 3379 | bn.js "^4.1.0" 3380 | browserify-rsa "^4.0.0" 3381 | create-hash "^1.1.0" 3382 | parse-asn1 "^5.0.0" 3383 | randombytes "^2.0.1" 3384 | 3385 | punycode@1.3.2: 3386 | version "1.3.2" 3387 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 3388 | 3389 | punycode@^1.2.4, punycode@^1.4.1: 3390 | version "1.4.1" 3391 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 3392 | 3393 | q@^1.1.2: 3394 | version "1.5.0" 3395 | resolved "https://registry.yarnpkg.com/q/-/q-1.5.0.tgz#dd01bac9d06d30e6f219aecb8253ee9ebdc308f1" 3396 | 3397 | qs@6.4.0, qs@~6.4.0: 3398 | version "6.4.0" 3399 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 3400 | 3401 | qs@~2.3.3: 3402 | version "2.3.3" 3403 | resolved "https://registry.yarnpkg.com/qs/-/qs-2.3.3.tgz#e9e85adbe75da0bbe4c8e0476a086290f863b404" 3404 | 3405 | query-string@^4.1.0: 3406 | version "4.3.4" 3407 | resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb" 3408 | dependencies: 3409 | object-assign "^4.1.0" 3410 | strict-uri-encode "^1.0.0" 3411 | 3412 | querystring-es3@^0.2.0: 3413 | version "0.2.1" 3414 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 3415 | 3416 | querystring@0.2.0: 3417 | version "0.2.0" 3418 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 3419 | 3420 | querystringify@0.0.x: 3421 | version "0.0.4" 3422 | resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-0.0.4.tgz#0cf7f84f9463ff0ae51c4c4b142d95be37724d9c" 3423 | 3424 | querystringify@~1.0.0: 3425 | version "1.0.0" 3426 | resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-1.0.0.tgz#6286242112c5b712fa654e526652bf6a13ff05cb" 3427 | 3428 | raf@^3.1.0: 3429 | version "3.3.2" 3430 | resolved "https://registry.yarnpkg.com/raf/-/raf-3.3.2.tgz#0c13be0b5b49b46f76d6669248d527cf2b02fe27" 3431 | dependencies: 3432 | performance-now "^2.1.0" 3433 | 3434 | randomatic@^1.1.3: 3435 | version "1.1.7" 3436 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 3437 | dependencies: 3438 | is-number "^3.0.0" 3439 | kind-of "^4.0.0" 3440 | 3441 | randombytes@^2.0.0, randombytes@^2.0.1: 3442 | version "2.0.5" 3443 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.5.tgz#dc009a246b8d09a177b4b7a0ae77bc570f4b1b79" 3444 | dependencies: 3445 | safe-buffer "^5.1.0" 3446 | 3447 | range-parser@^1.0.3, range-parser@~1.2.0: 3448 | version "1.2.0" 3449 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" 3450 | 3451 | rc@^1.1.7: 3452 | version "1.2.1" 3453 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 3454 | dependencies: 3455 | deep-extend "~0.4.0" 3456 | ini "~1.3.0" 3457 | minimist "^1.2.0" 3458 | strip-json-comments "~2.0.1" 3459 | 3460 | react-addons-shallow-compare@^0.14.0: 3461 | version "0.14.8" 3462 | resolved "https://registry.yarnpkg.com/react-addons-shallow-compare/-/react-addons-shallow-compare-0.14.8.tgz#1f26533d78cadabf4639756ec0dae5ab45427a74" 3463 | 3464 | react-aria@^0.9.2: 3465 | version "0.9.2" 3466 | resolved "https://registry.yarnpkg.com/react-aria/-/react-aria-0.9.2.tgz#eec655fc85a537c176296d80fef3cf0eb35a2c1a" 3467 | dependencies: 3468 | a11y-focus-scope "^1.1.3" 3469 | mitt "^1.0.1" 3470 | no-scroll "^2.0.0" 3471 | scroll-into-view "^1.7.3" 3472 | unique-number "^2.0.1" 3473 | upper-case-first "^1.1.2" 3474 | 3475 | react-dom@15.3.2: 3476 | version "15.3.2" 3477 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-15.3.2.tgz#c46b0aa5380d7b838e7a59c4a7beff2ed315531f" 3478 | 3479 | react-measure@^0.3.4: 3480 | version "0.3.5" 3481 | resolved "https://registry.yarnpkg.com/react-measure/-/react-measure-0.3.5.tgz#4e6e5ec93a2781f84f5a05b8b86d9586fb7d6b15" 3482 | dependencies: 3483 | lodash.debounce "^3.1.1" 3484 | 3485 | react-measure@^1.4.6: 3486 | version "1.4.7" 3487 | resolved "https://registry.yarnpkg.com/react-measure/-/react-measure-1.4.7.tgz#a1d2ca0dcfef04978b7ac263a765dcb6a0936fdb" 3488 | dependencies: 3489 | get-node-dimensions "^1.2.0" 3490 | prop-types "^15.5.4" 3491 | resize-observer-polyfill "^1.4.1" 3492 | 3493 | react-motion-ui-pack@^0.5.1: 3494 | version "0.5.2" 3495 | resolved "https://registry.yarnpkg.com/react-motion-ui-pack/-/react-motion-ui-pack-0.5.2.tgz#15b6cf6928820786e9e49e701fd71d1f7ce77b64" 3496 | dependencies: 3497 | get-prefix "^1.0.0" 3498 | react "^0.14.0" 3499 | react-addons-shallow-compare "^0.14.0" 3500 | react-measure "^0.3.4" 3501 | react-motion "^0.3.1" 3502 | 3503 | react-motion@^0.3.1: 3504 | version "0.3.1" 3505 | resolved "https://registry.yarnpkg.com/react-motion/-/react-motion-0.3.1.tgz#ac331083e0c2a0fc02fb782110657b7fa3bd663d" 3506 | dependencies: 3507 | performance-now "^0.2.0" 3508 | raf "^3.1.0" 3509 | 3510 | react-popper@^0.7.0: 3511 | version "0.7.0" 3512 | resolved "https://registry.yarnpkg.com/react-popper/-/react-popper-0.7.0.tgz#d19bc25eafe5d416ff0f438f2cd3965fbe5731b8" 3513 | dependencies: 3514 | is-equal-shallow "^0.1.3" 3515 | popper.js "^1.10.2" 3516 | prop-types "^15.5.10" 3517 | 3518 | react-travel@^1.3.5: 3519 | version "1.3.5" 3520 | resolved "https://registry.yarnpkg.com/react-travel/-/react-travel-1.3.5.tgz#4ff587550fd4d1a2e4371e5af48895d21d3c2898" 3521 | dependencies: 3522 | prop-types "^15.5.10" 3523 | 3524 | react@15.3.2: 3525 | version "15.3.2" 3526 | resolved "https://registry.yarnpkg.com/react/-/react-15.3.2.tgz#a7bccd2fee8af126b0317e222c28d1d54528d09e" 3527 | dependencies: 3528 | fbjs "^0.8.4" 3529 | loose-envify "^1.1.0" 3530 | object-assign "^4.1.0" 3531 | 3532 | react@^0.14.0: 3533 | version "0.14.9" 3534 | resolved "https://registry.yarnpkg.com/react/-/react-0.14.9.tgz#9110a6497c49d44ba1c0edd317aec29c2e0d91d1" 3535 | dependencies: 3536 | envify "^3.0.0" 3537 | fbjs "^0.6.1" 3538 | 3539 | read-pkg-up@^1.0.1: 3540 | version "1.0.1" 3541 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 3542 | dependencies: 3543 | find-up "^1.0.0" 3544 | read-pkg "^1.0.0" 3545 | 3546 | read-pkg@^1.0.0: 3547 | version "1.1.0" 3548 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 3549 | dependencies: 3550 | load-json-file "^1.0.0" 3551 | normalize-package-data "^2.3.2" 3552 | path-type "^1.0.0" 3553 | 3554 | readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.6: 3555 | version "2.3.0" 3556 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.0.tgz#640f5dcda88c91a8dc60787145629170813a1ed2" 3557 | dependencies: 3558 | core-util-is "~1.0.0" 3559 | inherits "~2.0.3" 3560 | isarray "~1.0.0" 3561 | process-nextick-args "~1.0.6" 3562 | safe-buffer "~5.1.0" 3563 | string_decoder "~1.0.0" 3564 | util-deprecate "~1.0.1" 3565 | 3566 | readdirp@^2.0.0: 3567 | version "2.1.0" 3568 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 3569 | dependencies: 3570 | graceful-fs "^4.1.2" 3571 | minimatch "^3.0.2" 3572 | readable-stream "^2.0.2" 3573 | set-immediate-shim "^1.0.1" 3574 | 3575 | recast@^0.11.17: 3576 | version "0.11.23" 3577 | resolved "https://registry.yarnpkg.com/recast/-/recast-0.11.23.tgz#451fd3004ab1e4df9b4e4b66376b2a21912462d3" 3578 | dependencies: 3579 | ast-types "0.9.6" 3580 | esprima "~3.1.0" 3581 | private "~0.1.5" 3582 | source-map "~0.5.0" 3583 | 3584 | redent@^1.0.0: 3585 | version "1.0.0" 3586 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 3587 | dependencies: 3588 | indent-string "^2.1.0" 3589 | strip-indent "^1.0.1" 3590 | 3591 | reduce-css-calc@^1.2.6: 3592 | version "1.3.0" 3593 | resolved "https://registry.yarnpkg.com/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz#747c914e049614a4c9cfbba629871ad1d2927716" 3594 | dependencies: 3595 | balanced-match "^0.4.2" 3596 | math-expression-evaluator "^1.2.14" 3597 | reduce-function-call "^1.0.1" 3598 | 3599 | reduce-function-call@^1.0.1: 3600 | version "1.0.2" 3601 | resolved "https://registry.yarnpkg.com/reduce-function-call/-/reduce-function-call-1.0.2.tgz#5a200bf92e0e37751752fe45b0ab330fd4b6be99" 3602 | dependencies: 3603 | balanced-match "^0.4.2" 3604 | 3605 | regenerate@^1.2.1: 3606 | version "1.3.2" 3607 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 3608 | 3609 | regenerator-runtime@^0.10.0: 3610 | version "0.10.5" 3611 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 3612 | 3613 | regenerator-transform@0.9.11: 3614 | version "0.9.11" 3615 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.11.tgz#3a7d067520cb7b7176769eb5ff868691befe1283" 3616 | dependencies: 3617 | babel-runtime "^6.18.0" 3618 | babel-types "^6.19.0" 3619 | private "^0.1.6" 3620 | 3621 | regex-cache@^0.4.2: 3622 | version "0.4.3" 3623 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 3624 | dependencies: 3625 | is-equal-shallow "^0.1.3" 3626 | is-primitive "^2.0.0" 3627 | 3628 | regexpu-core@^1.0.0: 3629 | version "1.0.0" 3630 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-1.0.0.tgz#86a763f58ee4d7c2f6b102e4764050de7ed90c6b" 3631 | dependencies: 3632 | regenerate "^1.2.1" 3633 | regjsgen "^0.2.0" 3634 | regjsparser "^0.1.4" 3635 | 3636 | regexpu-core@^2.0.0: 3637 | version "2.0.0" 3638 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 3639 | dependencies: 3640 | regenerate "^1.2.1" 3641 | regjsgen "^0.2.0" 3642 | regjsparser "^0.1.4" 3643 | 3644 | regjsgen@^0.2.0: 3645 | version "0.2.0" 3646 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 3647 | 3648 | regjsparser@^0.1.4: 3649 | version "0.1.5" 3650 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 3651 | dependencies: 3652 | jsesc "~0.5.0" 3653 | 3654 | remove-trailing-separator@^1.0.1: 3655 | version "1.0.2" 3656 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.2.tgz#69b062d978727ad14dc6b56ba4ab772fd8d70511" 3657 | 3658 | repeat-element@^1.1.2: 3659 | version "1.1.2" 3660 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3661 | 3662 | repeat-string@^1.5.2: 3663 | version "1.6.1" 3664 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3665 | 3666 | repeating@^2.0.0: 3667 | version "2.0.1" 3668 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3669 | dependencies: 3670 | is-finite "^1.0.0" 3671 | 3672 | request@2, request@^2.61.0, request@^2.81.0: 3673 | version "2.81.0" 3674 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 3675 | dependencies: 3676 | aws-sign2 "~0.6.0" 3677 | aws4 "^1.2.1" 3678 | caseless "~0.12.0" 3679 | combined-stream "~1.0.5" 3680 | extend "~3.0.0" 3681 | forever-agent "~0.6.1" 3682 | form-data "~2.1.1" 3683 | har-validator "~4.2.1" 3684 | hawk "~3.1.3" 3685 | http-signature "~1.1.0" 3686 | is-typedarray "~1.0.0" 3687 | isstream "~0.1.2" 3688 | json-stringify-safe "~5.0.1" 3689 | mime-types "~2.1.7" 3690 | oauth-sign "~0.8.1" 3691 | performance-now "^0.2.0" 3692 | qs "~6.4.0" 3693 | safe-buffer "^5.0.1" 3694 | stringstream "~0.0.4" 3695 | tough-cookie "~2.3.0" 3696 | tunnel-agent "^0.6.0" 3697 | uuid "^3.0.0" 3698 | 3699 | require-directory@^2.1.1: 3700 | version "2.1.1" 3701 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3702 | 3703 | require-main-filename@^1.0.1: 3704 | version "1.0.1" 3705 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3706 | 3707 | requires-port@1.0.x, requires-port@1.x.x: 3708 | version "1.0.0" 3709 | resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" 3710 | 3711 | resize-observer-polyfill@^1.4.1: 3712 | version "1.4.2" 3713 | resolved "https://registry.yarnpkg.com/resize-observer-polyfill/-/resize-observer-polyfill-1.4.2.tgz#a37198e6209e888acb1532a9968e06d38b6788e5" 3714 | 3715 | right-align@^0.1.1: 3716 | version "0.1.3" 3717 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3718 | dependencies: 3719 | align-text "^0.1.1" 3720 | 3721 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1: 3722 | version "2.6.1" 3723 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 3724 | dependencies: 3725 | glob "^7.0.5" 3726 | 3727 | ripemd160@0.2.0: 3728 | version "0.2.0" 3729 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-0.2.0.tgz#2bf198bde167cacfa51c0a928e84b68bbe171fce" 3730 | 3731 | ripemd160@^2.0.0, ripemd160@^2.0.1: 3732 | version "2.0.1" 3733 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.1.tgz#0f4584295c53a3628af7e6d79aca21ce57d1c6e7" 3734 | dependencies: 3735 | hash-base "^2.0.0" 3736 | inherits "^2.0.1" 3737 | 3738 | safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@~5.1.0: 3739 | version "5.1.0" 3740 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.0.tgz#fe4c8460397f9eaaaa58e73be46273408a45e223" 3741 | 3742 | safe-buffer@~5.0.1: 3743 | version "5.0.1" 3744 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 3745 | 3746 | sass-graph@^2.1.1: 3747 | version "2.2.4" 3748 | resolved "https://registry.yarnpkg.com/sass-graph/-/sass-graph-2.2.4.tgz#13fbd63cd1caf0908b9fd93476ad43a51d1e0b49" 3749 | dependencies: 3750 | glob "^7.0.0" 3751 | lodash "^4.0.0" 3752 | scss-tokenizer "^0.2.3" 3753 | yargs "^7.0.0" 3754 | 3755 | sass-loader@^4.0.2: 3756 | version "4.1.1" 3757 | resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-4.1.1.tgz#79ef9468cf0bf646c29529e1f2cba6bd6e51c7bc" 3758 | dependencies: 3759 | async "^2.0.1" 3760 | loader-utils "^0.2.15" 3761 | object-assign "^4.1.0" 3762 | 3763 | sax@~1.2.1: 3764 | version "1.2.2" 3765 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.2.tgz#fd8631a23bc7826bef5d871bdb87378c95647828" 3766 | 3767 | scroll-into-view@^1.7.3: 3768 | version "1.8.0" 3769 | resolved "https://registry.yarnpkg.com/scroll-into-view/-/scroll-into-view-1.8.0.tgz#47e8c64aba25c80d1123cf1a2144c68eb0069110" 3770 | dependencies: 3771 | raf "^3.1.0" 3772 | 3773 | scss-tokenizer@^0.2.3: 3774 | version "0.2.3" 3775 | resolved "https://registry.yarnpkg.com/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz#8eb06db9a9723333824d3f5530641149847ce5d1" 3776 | dependencies: 3777 | js-base64 "^2.1.8" 3778 | source-map "^0.4.2" 3779 | 3780 | "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@~5.3.0: 3781 | version "5.3.0" 3782 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 3783 | 3784 | send@0.15.3: 3785 | version "0.15.3" 3786 | resolved "https://registry.yarnpkg.com/send/-/send-0.15.3.tgz#5013f9f99023df50d1bd9892c19e3defd1d53309" 3787 | dependencies: 3788 | debug "2.6.7" 3789 | depd "~1.1.0" 3790 | destroy "~1.0.4" 3791 | encodeurl "~1.0.1" 3792 | escape-html "~1.0.3" 3793 | etag "~1.8.0" 3794 | fresh "0.5.0" 3795 | http-errors "~1.6.1" 3796 | mime "1.3.4" 3797 | ms "2.0.0" 3798 | on-finished "~2.3.0" 3799 | range-parser "~1.2.0" 3800 | statuses "~1.3.1" 3801 | 3802 | serve-index@^1.7.2: 3803 | version "1.9.0" 3804 | resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.0.tgz#d2b280fc560d616ee81b48bf0fa82abed2485ce7" 3805 | dependencies: 3806 | accepts "~1.3.3" 3807 | batch "0.6.1" 3808 | debug "2.6.8" 3809 | escape-html "~1.0.3" 3810 | http-errors "~1.6.1" 3811 | mime-types "~2.1.15" 3812 | parseurl "~1.3.1" 3813 | 3814 | serve-static@1.12.3: 3815 | version "1.12.3" 3816 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.12.3.tgz#9f4ba19e2f3030c547f8af99107838ec38d5b1e2" 3817 | dependencies: 3818 | encodeurl "~1.0.1" 3819 | escape-html "~1.0.3" 3820 | parseurl "~1.3.1" 3821 | send "0.15.3" 3822 | 3823 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3824 | version "2.0.0" 3825 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3826 | 3827 | set-immediate-shim@^1.0.1: 3828 | version "1.0.1" 3829 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3830 | 3831 | setimmediate@^1.0.4, setimmediate@^1.0.5: 3832 | version "1.0.5" 3833 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 3834 | 3835 | setprototypeof@1.0.3: 3836 | version "1.0.3" 3837 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04" 3838 | 3839 | sha.js@2.2.6: 3840 | version "2.2.6" 3841 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.2.6.tgz#17ddeddc5f722fb66501658895461977867315ba" 3842 | 3843 | sha.js@^2.4.0, sha.js@^2.4.8: 3844 | version "2.4.8" 3845 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.8.tgz#37068c2c476b6baf402d14a49c67f597921f634f" 3846 | dependencies: 3847 | inherits "^2.0.1" 3848 | 3849 | signal-exit@^3.0.0: 3850 | version "3.0.2" 3851 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3852 | 3853 | slash@^1.0.0: 3854 | version "1.0.0" 3855 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3856 | 3857 | sntp@1.x.x: 3858 | version "1.0.9" 3859 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3860 | dependencies: 3861 | hoek "2.x.x" 3862 | 3863 | sockjs-client@^1.0.3: 3864 | version "1.1.4" 3865 | resolved "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.1.4.tgz#5babe386b775e4cf14e7520911452654016c8b12" 3866 | dependencies: 3867 | debug "^2.6.6" 3868 | eventsource "0.1.6" 3869 | faye-websocket "~0.11.0" 3870 | inherits "^2.0.1" 3871 | json3 "^3.3.2" 3872 | url-parse "^1.1.8" 3873 | 3874 | sockjs@^0.3.15: 3875 | version "0.3.18" 3876 | resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.18.tgz#d9b289316ca7df77595ef299e075f0f937eb4207" 3877 | dependencies: 3878 | faye-websocket "^0.10.0" 3879 | uuid "^2.0.2" 3880 | 3881 | sort-keys@^1.0.0: 3882 | version "1.1.2" 3883 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" 3884 | dependencies: 3885 | is-plain-obj "^1.0.0" 3886 | 3887 | source-list-map@^0.1.4, source-list-map@~0.1.7: 3888 | version "0.1.8" 3889 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-0.1.8.tgz#c550b2ab5427f6b3f21f5afead88c4f5587b2106" 3890 | 3891 | source-map-support@^0.4.2: 3892 | version "0.4.15" 3893 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1" 3894 | dependencies: 3895 | source-map "^0.5.6" 3896 | 3897 | source-map@^0.4.2, source-map@~0.4.1: 3898 | version "0.4.4" 3899 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3900 | dependencies: 3901 | amdefine ">=0.0.4" 3902 | 3903 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.0, source-map@~0.5.1: 3904 | version "0.5.6" 3905 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 3906 | 3907 | spdx-correct@~1.0.0: 3908 | version "1.0.2" 3909 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3910 | dependencies: 3911 | spdx-license-ids "^1.0.2" 3912 | 3913 | spdx-expression-parse@~1.0.0: 3914 | version "1.0.4" 3915 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3916 | 3917 | spdx-license-ids@^1.0.2: 3918 | version "1.2.2" 3919 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3920 | 3921 | sprintf-js@~1.0.2: 3922 | version "1.0.3" 3923 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3924 | 3925 | sshpk@^1.7.0: 3926 | version "1.13.1" 3927 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 3928 | dependencies: 3929 | asn1 "~0.2.3" 3930 | assert-plus "^1.0.0" 3931 | dashdash "^1.12.0" 3932 | getpass "^0.1.1" 3933 | optionalDependencies: 3934 | bcrypt-pbkdf "^1.0.0" 3935 | ecc-jsbn "~0.1.1" 3936 | jsbn "~0.1.0" 3937 | tweetnacl "~0.14.0" 3938 | 3939 | "statuses@>= 1.3.1 < 2", statuses@~1.3.1: 3940 | version "1.3.1" 3941 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" 3942 | 3943 | stream-browserify@^2.0.1: 3944 | version "2.0.1" 3945 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" 3946 | dependencies: 3947 | inherits "~2.0.1" 3948 | readable-stream "^2.0.2" 3949 | 3950 | stream-cache@~0.0.1: 3951 | version "0.0.2" 3952 | resolved "https://registry.yarnpkg.com/stream-cache/-/stream-cache-0.0.2.tgz#1ac5ad6832428ca55667dbdee395dad4e6db118f" 3953 | 3954 | stream-http@^2.3.1: 3955 | version "2.7.2" 3956 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.7.2.tgz#40a050ec8dc3b53b33d9909415c02c0bf1abfbad" 3957 | dependencies: 3958 | builtin-status-codes "^3.0.0" 3959 | inherits "^2.0.1" 3960 | readable-stream "^2.2.6" 3961 | to-arraybuffer "^1.0.0" 3962 | xtend "^4.0.0" 3963 | 3964 | strict-uri-encode@^1.0.0: 3965 | version "1.1.0" 3966 | resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" 3967 | 3968 | string-width@^1.0.1, string-width@^1.0.2: 3969 | version "1.0.2" 3970 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3971 | dependencies: 3972 | code-point-at "^1.0.0" 3973 | is-fullwidth-code-point "^1.0.0" 3974 | strip-ansi "^3.0.0" 3975 | 3976 | string_decoder@^0.10.25: 3977 | version "0.10.31" 3978 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 3979 | 3980 | string_decoder@~1.0.0: 3981 | version "1.0.2" 3982 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.2.tgz#b29e1f4e1125fa97a10382b8a533737b7491e179" 3983 | dependencies: 3984 | safe-buffer "~5.0.1" 3985 | 3986 | stringstream@~0.0.4: 3987 | version "0.0.5" 3988 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3989 | 3990 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3991 | version "3.0.1" 3992 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3993 | dependencies: 3994 | ansi-regex "^2.0.0" 3995 | 3996 | strip-bom@^2.0.0: 3997 | version "2.0.0" 3998 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3999 | dependencies: 4000 | is-utf8 "^0.2.0" 4001 | 4002 | strip-indent@^1.0.1: 4003 | version "1.0.1" 4004 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 4005 | dependencies: 4006 | get-stdin "^4.0.1" 4007 | 4008 | strip-json-comments@~2.0.1: 4009 | version "2.0.1" 4010 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 4011 | 4012 | style-loader@^0.13.1: 4013 | version "0.13.2" 4014 | resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-0.13.2.tgz#74533384cf698c7104c7951150b49717adc2f3bb" 4015 | dependencies: 4016 | loader-utils "^1.0.2" 4017 | 4018 | supports-color@^2.0.0: 4019 | version "2.0.0" 4020 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 4021 | 4022 | supports-color@^3.1.0, supports-color@^3.1.1, supports-color@^3.2.3: 4023 | version "3.2.3" 4024 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 4025 | dependencies: 4026 | has-flag "^1.0.0" 4027 | 4028 | svgo@^0.7.0: 4029 | version "0.7.2" 4030 | resolved "https://registry.yarnpkg.com/svgo/-/svgo-0.7.2.tgz#9f5772413952135c6fefbf40afe6a4faa88b4bb5" 4031 | dependencies: 4032 | coa "~1.0.1" 4033 | colors "~1.1.2" 4034 | csso "~2.3.1" 4035 | js-yaml "~3.7.0" 4036 | mkdirp "~0.5.1" 4037 | sax "~1.2.1" 4038 | whet.extend "~0.9.9" 4039 | 4040 | tabbable@^1.0.0: 4041 | version "1.0.6" 4042 | resolved "https://registry.yarnpkg.com/tabbable/-/tabbable-1.0.6.tgz#7c26a87ea6f4a25edf5edb619745a0ae740724fc" 4043 | 4044 | tapable@^0.1.8, tapable@~0.1.8: 4045 | version "0.1.10" 4046 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.1.10.tgz#29c35707c2b70e50d07482b5d202e8ed446dafd4" 4047 | 4048 | tar-pack@^3.4.0: 4049 | version "3.4.0" 4050 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 4051 | dependencies: 4052 | debug "^2.2.0" 4053 | fstream "^1.0.10" 4054 | fstream-ignore "^1.0.5" 4055 | once "^1.3.3" 4056 | readable-stream "^2.1.4" 4057 | rimraf "^2.5.1" 4058 | tar "^2.2.1" 4059 | uid-number "^0.0.6" 4060 | 4061 | tar@^2.0.0, tar@^2.2.1: 4062 | version "2.2.1" 4063 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 4064 | dependencies: 4065 | block-stream "*" 4066 | fstream "^1.0.2" 4067 | inherits "2" 4068 | 4069 | through@~2.3.4: 4070 | version "2.3.8" 4071 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 4072 | 4073 | timers-browserify@^1.4.2: 4074 | version "1.4.2" 4075 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-1.4.2.tgz#c9c58b575be8407375cb5e2462dacee74359f41d" 4076 | dependencies: 4077 | process "~0.11.0" 4078 | 4079 | timers-browserify@^2.0.2: 4080 | version "2.0.2" 4081 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.2.tgz#ab4883cf597dcd50af211349a00fbca56ac86b86" 4082 | dependencies: 4083 | setimmediate "^1.0.4" 4084 | 4085 | to-arraybuffer@^1.0.0: 4086 | version "1.0.1" 4087 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 4088 | 4089 | to-fast-properties@^1.0.1: 4090 | version "1.0.3" 4091 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 4092 | 4093 | tough-cookie@~2.3.0: 4094 | version "2.3.2" 4095 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 4096 | dependencies: 4097 | punycode "^1.4.1" 4098 | 4099 | trim-newlines@^1.0.0: 4100 | version "1.0.0" 4101 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 4102 | 4103 | trim-right@^1.0.1: 4104 | version "1.0.1" 4105 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 4106 | 4107 | tty-browserify@0.0.0: 4108 | version "0.0.0" 4109 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 4110 | 4111 | tunnel-agent@^0.6.0: 4112 | version "0.6.0" 4113 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 4114 | dependencies: 4115 | safe-buffer "^5.0.1" 4116 | 4117 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 4118 | version "0.14.5" 4119 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 4120 | 4121 | type-is@~1.6.15: 4122 | version "1.6.15" 4123 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.15.tgz#cab10fb4909e441c82842eafe1ad646c81804410" 4124 | dependencies: 4125 | media-typer "0.3.0" 4126 | mime-types "~2.1.15" 4127 | 4128 | ua-parser-js@^0.7.9: 4129 | version "0.7.12" 4130 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.12.tgz#04c81a99bdd5dc52263ea29d24c6bf8d4818a4bb" 4131 | 4132 | uglify-js@~2.7.3: 4133 | version "2.7.5" 4134 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.7.5.tgz#4612c0c7baaee2ba7c487de4904ae122079f2ca8" 4135 | dependencies: 4136 | async "~0.2.6" 4137 | source-map "~0.5.1" 4138 | uglify-to-browserify "~1.0.0" 4139 | yargs "~3.10.0" 4140 | 4141 | uglify-to-browserify@~1.0.0: 4142 | version "1.0.2" 4143 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 4144 | 4145 | uid-number@^0.0.6: 4146 | version "0.0.6" 4147 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 4148 | 4149 | union@~0.4.3: 4150 | version "0.4.6" 4151 | resolved "https://registry.yarnpkg.com/union/-/union-0.4.6.tgz#198fbdaeba254e788b0efcb630bc11f24a2959e0" 4152 | dependencies: 4153 | qs "~2.3.3" 4154 | 4155 | uniq@^1.0.1: 4156 | version "1.0.1" 4157 | resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" 4158 | 4159 | uniqid@^4.0.0: 4160 | version "4.1.1" 4161 | resolved "https://registry.yarnpkg.com/uniqid/-/uniqid-4.1.1.tgz#89220ddf6b751ae52b5f72484863528596bb84c1" 4162 | dependencies: 4163 | macaddress "^0.2.8" 4164 | 4165 | uniqs@^2.0.0: 4166 | version "2.0.0" 4167 | resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02" 4168 | 4169 | unique-number@^2.0.1: 4170 | version "2.0.1" 4171 | resolved "https://registry.yarnpkg.com/unique-number/-/unique-number-2.0.1.tgz#3ff836e92ea076a417e0de5dee1888c86cd86318" 4172 | 4173 | unpipe@~1.0.0: 4174 | version "1.0.0" 4175 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 4176 | 4177 | upper-case-first@^1.1.2: 4178 | version "1.1.2" 4179 | resolved "https://registry.yarnpkg.com/upper-case-first/-/upper-case-first-1.1.2.tgz#5d79bedcff14419518fd2edb0a0507c9b6859115" 4180 | dependencies: 4181 | upper-case "^1.1.1" 4182 | 4183 | upper-case@^1.1.1: 4184 | version "1.1.3" 4185 | resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598" 4186 | 4187 | url-join@^1.0.0: 4188 | version "1.1.0" 4189 | resolved "https://registry.yarnpkg.com/url-join/-/url-join-1.1.0.tgz#741c6c2f4596c4830d6718460920d0c92202dc78" 4190 | 4191 | url-parse@1.0.x: 4192 | version "1.0.5" 4193 | resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.0.5.tgz#0854860422afdcfefeb6c965c662d4800169927b" 4194 | dependencies: 4195 | querystringify "0.0.x" 4196 | requires-port "1.0.x" 4197 | 4198 | url-parse@^1.1.8: 4199 | version "1.1.9" 4200 | resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.1.9.tgz#c67f1d775d51f0a18911dd7b3ffad27bb9e5bd19" 4201 | dependencies: 4202 | querystringify "~1.0.0" 4203 | requires-port "1.0.x" 4204 | 4205 | url@^0.11.0: 4206 | version "0.11.0" 4207 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 4208 | dependencies: 4209 | punycode "1.3.2" 4210 | querystring "0.2.0" 4211 | 4212 | user-home@^1.1.1: 4213 | version "1.1.1" 4214 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 4215 | 4216 | util-deprecate@~1.0.1: 4217 | version "1.0.2" 4218 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 4219 | 4220 | util@0.10.3, util@^0.10.3: 4221 | version "0.10.3" 4222 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 4223 | dependencies: 4224 | inherits "2.0.1" 4225 | 4226 | utils-merge@1.0.0: 4227 | version "1.0.0" 4228 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8" 4229 | 4230 | uuid@^2.0.2: 4231 | version "2.0.3" 4232 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" 4233 | 4234 | uuid@^3.0.0: 4235 | version "3.1.0" 4236 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 4237 | 4238 | v8flags@^2.0.10: 4239 | version "2.1.1" 4240 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 4241 | dependencies: 4242 | user-home "^1.1.1" 4243 | 4244 | validate-npm-package-license@^3.0.1: 4245 | version "3.0.1" 4246 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 4247 | dependencies: 4248 | spdx-correct "~1.0.0" 4249 | spdx-expression-parse "~1.0.0" 4250 | 4251 | vary@~1.1.0, vary@~1.1.1: 4252 | version "1.1.1" 4253 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.1.tgz#67535ebb694c1d52257457984665323f587e8d37" 4254 | 4255 | vendors@^1.0.0: 4256 | version "1.0.1" 4257 | resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.1.tgz#37ad73c8ee417fb3d580e785312307d274847f22" 4258 | 4259 | verror@1.3.6: 4260 | version "1.3.6" 4261 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 4262 | dependencies: 4263 | extsprintf "1.0.2" 4264 | 4265 | vm-browserify@0.0.4: 4266 | version "0.0.4" 4267 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 4268 | dependencies: 4269 | indexof "0.0.1" 4270 | 4271 | watchpack@^0.2.1: 4272 | version "0.2.9" 4273 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-0.2.9.tgz#62eaa4ab5e5ba35fdfc018275626e3c0f5e3fb0b" 4274 | dependencies: 4275 | async "^0.9.0" 4276 | chokidar "^1.0.0" 4277 | graceful-fs "^4.1.2" 4278 | 4279 | webpack-core@~0.6.9: 4280 | version "0.6.9" 4281 | resolved "https://registry.yarnpkg.com/webpack-core/-/webpack-core-0.6.9.tgz#fc571588c8558da77be9efb6debdc5a3b172bdc2" 4282 | dependencies: 4283 | source-list-map "~0.1.7" 4284 | source-map "~0.4.1" 4285 | 4286 | webpack-dev-middleware@^1.10.2: 4287 | version "1.10.2" 4288 | resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-1.10.2.tgz#2e252ce1dfb020dbda1ccb37df26f30ab014dbd1" 4289 | dependencies: 4290 | memory-fs "~0.4.1" 4291 | mime "^1.3.4" 4292 | path-is-absolute "^1.0.0" 4293 | range-parser "^1.0.3" 4294 | 4295 | webpack-dev-server@^1.9.0: 4296 | version "1.16.5" 4297 | resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-1.16.5.tgz#0cbd5f2d2ac8d4e593aacd5c9702e7bbd5e59892" 4298 | dependencies: 4299 | compression "^1.5.2" 4300 | connect-history-api-fallback "^1.3.0" 4301 | express "^4.13.3" 4302 | http-proxy-middleware "~0.17.1" 4303 | open "0.0.5" 4304 | optimist "~0.6.1" 4305 | serve-index "^1.7.2" 4306 | sockjs "^0.3.15" 4307 | sockjs-client "^1.0.3" 4308 | stream-cache "~0.0.1" 4309 | strip-ansi "^3.0.0" 4310 | supports-color "^3.1.1" 4311 | webpack-dev-middleware "^1.10.2" 4312 | 4313 | webpack@^1.13.2: 4314 | version "1.15.0" 4315 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-1.15.0.tgz#4ff31f53db03339e55164a9d468ee0324968fe98" 4316 | dependencies: 4317 | acorn "^3.0.0" 4318 | async "^1.3.0" 4319 | clone "^1.0.2" 4320 | enhanced-resolve "~0.9.0" 4321 | interpret "^0.6.4" 4322 | loader-utils "^0.2.11" 4323 | memory-fs "~0.3.0" 4324 | mkdirp "~0.5.0" 4325 | node-libs-browser "^0.7.0" 4326 | optimist "~0.6.0" 4327 | supports-color "^3.1.0" 4328 | tapable "~0.1.8" 4329 | uglify-js "~2.7.3" 4330 | watchpack "^0.2.1" 4331 | webpack-core "~0.6.9" 4332 | 4333 | websocket-driver@>=0.5.1: 4334 | version "0.6.5" 4335 | resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.6.5.tgz#5cb2556ceb85f4373c6d8238aa691c8454e13a36" 4336 | dependencies: 4337 | websocket-extensions ">=0.1.1" 4338 | 4339 | websocket-extensions@>=0.1.1: 4340 | version "0.1.1" 4341 | resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.1.tgz#76899499c184b6ef754377c2dbb0cd6cb55d29e7" 4342 | 4343 | whatwg-fetch@>=0.10.0: 4344 | version "2.0.3" 4345 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84" 4346 | 4347 | whatwg-fetch@^0.9.0: 4348 | version "0.9.0" 4349 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-0.9.0.tgz#0e3684c6cb9995b43efc9df03e4c365d95fd9cc0" 4350 | 4351 | whet.extend@~0.9.9: 4352 | version "0.9.9" 4353 | resolved "https://registry.yarnpkg.com/whet.extend/-/whet.extend-0.9.9.tgz#f877d5bf648c97e5aa542fadc16d6a259b9c11a1" 4354 | 4355 | which-module@^1.0.0: 4356 | version "1.0.0" 4357 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 4358 | 4359 | which@1, which@^1.2.9: 4360 | version "1.2.14" 4361 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 4362 | dependencies: 4363 | isexe "^2.0.0" 4364 | 4365 | wide-align@^1.1.0: 4366 | version "1.1.2" 4367 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 4368 | dependencies: 4369 | string-width "^1.0.2" 4370 | 4371 | window-size@0.1.0: 4372 | version "0.1.0" 4373 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 4374 | 4375 | wordwrap@0.0.2: 4376 | version "0.0.2" 4377 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 4378 | 4379 | wordwrap@~0.0.2: 4380 | version "0.0.3" 4381 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 4382 | 4383 | wrap-ansi@^2.0.0: 4384 | version "2.1.0" 4385 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 4386 | dependencies: 4387 | string-width "^1.0.1" 4388 | strip-ansi "^3.0.1" 4389 | 4390 | wrappy@1: 4391 | version "1.0.2" 4392 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 4393 | 4394 | xtend@^4.0.0: 4395 | version "4.0.1" 4396 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 4397 | 4398 | y18n@^3.2.1: 4399 | version "3.2.1" 4400 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 4401 | 4402 | yallist@^2.1.2: 4403 | version "2.1.2" 4404 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 4405 | 4406 | yargs-parser@^5.0.0: 4407 | version "5.0.0" 4408 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" 4409 | dependencies: 4410 | camelcase "^3.0.0" 4411 | 4412 | yargs@^7.0.0: 4413 | version "7.1.0" 4414 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" 4415 | dependencies: 4416 | camelcase "^3.0.0" 4417 | cliui "^3.2.0" 4418 | decamelize "^1.1.1" 4419 | get-caller-file "^1.0.1" 4420 | os-locale "^1.4.0" 4421 | read-pkg-up "^1.0.1" 4422 | require-directory "^2.1.1" 4423 | require-main-filename "^1.0.1" 4424 | set-blocking "^2.0.0" 4425 | string-width "^1.0.2" 4426 | which-module "^1.0.0" 4427 | y18n "^3.2.1" 4428 | yargs-parser "^5.0.0" 4429 | 4430 | yargs@~3.10.0: 4431 | version "3.10.0" 4432 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 4433 | dependencies: 4434 | camelcase "^1.0.2" 4435 | cliui "^2.1.0" 4436 | decamelize "^1.0.0" 4437 | window-size "0.1.0" 4438 | --------------------------------------------------------------------------------