├── .babelrc ├── .npmignore ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── src ├── actions.js ├── validate.js └── index.js ├── package.json ├── LICENSE ├── test └── index.js ├── README.md └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ "es2015", "stage-3" ] 3 | } 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .* 2 | *.json 3 | *.md 4 | src 5 | yarn.lock 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /actions.js 3 | /index.js 4 | /validate.js 5 | npm-debug.log 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - '6' 4 | cache: yarn 5 | script: 6 | - yarn test 7 | - yarn run build 8 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | 2 | ## [1.0.3](https://github.com/troch/react-redux-reformed/compare/v1.0.2...v1.0.3) (2017-09-26) 3 | 4 | 5 | ### Bug Fixes 6 | 7 | * correctly transform field names to an array ([088be42](https://github.com/troch/react-redux-reformed/commit/088be42)) 8 | 9 | 10 | 11 | 12 | ## [1.0.2](https://github.com/troch/react-redux-reformed/compare/v1.0.1...v1.0.2) (2017-08-28) 13 | 14 | 15 | ### Bug Fixes 16 | 17 | * update mergeprops usage to avoid losing props ([99efa46](https://github.com/troch/react-redux-reformed/commit/99efa46)) 18 | 19 | 20 | 21 | 22 | ## 1.0.1 (2017-05-27) 23 | 24 | 25 | ### Bug Fixes 26 | 27 | * add missing import ([8634961](https://github.com/troch/react-redux-reformed/commit/8634961)) 28 | -------------------------------------------------------------------------------- /src/actions.js: -------------------------------------------------------------------------------- 1 | export const SET_FORM_STATE = '@@react-redux-reformed/setState'; 2 | export const REPLACE_FORM_STATE = '@@react-redux-reformed/replaceState'; 3 | export const RESET_FORM_STATE = '@@react-redux-reformed/resetState'; 4 | 5 | export const setFormState = (formName) => (state) => ({ 6 | type: SET_FORM_STATE, 7 | payload: { 8 | formName, 9 | state 10 | } 11 | }); 12 | 13 | export const replaceFormState = (formName) => (state) => ({ 14 | type: REPLACE_FORM_STATE, 15 | payload: { 16 | formName, 17 | state 18 | } 19 | }); 20 | 21 | export const resetFormState = (formName) => () => ({ 22 | type: RESET_FORM_STATE, 23 | payload: { 24 | formName 25 | } 26 | }); 27 | 28 | export const setFieldState = (formName) => { 29 | const setState = setFormState(formName); 30 | 31 | return (fieldName, fieldValue) => setState({ 32 | [fieldName]: fieldValue 33 | }); 34 | }; 35 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-redux-reformed", 3 | "version": "1.0.3", 4 | "description": "React redux forms made simple", 5 | "main": "index.js", 6 | "repository": "git@github.com:troch/react-redux-reformed.git", 7 | "author": "Thomas Roch ", 8 | "license": "MIT", 9 | "scripts": { 10 | "test": "mocha --compilers js:babel-core/register 'test/index.js'", 11 | "build": "babel src --out-dir ./", 12 | "prepublish": "npm test && npm run build", 13 | "clog": "conventional-changelog -p angular -i CHANGELOG.md -s" 14 | }, 15 | "devDependencies": { 16 | "babel-cli": "~6.24.1", 17 | "babel-core": "~6.24.1", 18 | "babel-plugin-transform-runtime": "^6.23.0", 19 | "babel-preset-es2015": "~6.24.1", 20 | "babel-preset-react": "~6.24.1", 21 | "babel-preset-stage-3": "~6.24.1", 22 | "chai": "~3.5.0", 23 | "mocha": "~3.2.0", 24 | "react": "~15.5.4", 25 | "react-redux": "~5.0.4", 26 | "redux": "~3.6.0" 27 | }, 28 | "peerDependencies": { 29 | "react-redux": "^4.0.0 || ^5.0.0" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Thomas Roch 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /src/validate.js: -------------------------------------------------------------------------------- 1 | const defaultModelValidity = { valid: true }; 2 | 3 | export const validator = (fieldName, validatorFn, validatorName) => { 4 | const name = validatorName || validatorFn.name; 5 | 6 | if (!name) { 7 | throw new Error(`[validator][unnamed] No 'validatorName' (3rd argument) or named validator function was provided`); 8 | } 9 | const fieldNames = [].concat(fieldName); 10 | 11 | return (model, modelValidity = defaultModelValidity) => { 12 | const values = fieldNames.map((_) => model[_]); 13 | 14 | const isValid = Boolean(validatorFn(...values)); 15 | 16 | const modelValidityCopy = { 17 | ...modelValidity, 18 | valid: modelValidity.valid && isValid 19 | }; 20 | 21 | fieldNames.forEach((fieldName) => { 22 | if (!modelValidity[fieldName]) { 23 | modelValidityCopy[fieldName] = defaultModelValidity; 24 | } 25 | 26 | modelValidityCopy[fieldName] = { 27 | ...modelValidityCopy[fieldName], 28 | [name]: isValid, 29 | valid: modelValidityCopy[fieldName].valid && isValid 30 | }; 31 | }); 32 | 33 | return modelValidityCopy; 34 | }; 35 | } 36 | 37 | export const isRequired = (fieldName) => validator(fieldName, (val) => Boolean(val), 'required'); 38 | 39 | export function createModelValidator(...validators) { 40 | return function validateModel(model) { 41 | return validators.reduce( 42 | (modelValidity, validationFn) => validationFn(model, modelValidity), 43 | defaultModelValidity 44 | ); 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import { connect } from 'react-redux'; 2 | import { createModelValidator, validator } from './validate'; 3 | import { 4 | RESET_FORM_STATE, 5 | SET_FORM_STATE, 6 | REPLACE_FORM_STATE, 7 | setFormState, 8 | setFieldState, 9 | replaceFormState, 10 | resetFormState 11 | } from './actions'; 12 | 13 | const shallowMerge = (left, right) => ({ 14 | ...left, 15 | ...right 16 | }); 17 | 18 | const defaultOptions = { 19 | resetActions: [], 20 | mergeState: shallowMerge 21 | }; 22 | 23 | function createFormReducer(formName, initialFormState = {}, options = {}) { 24 | const { resetActions, mergeState } = { ...defaultOptions, ...options }; 25 | const resetArgs = typeof resetActions === 'string' ? [ resetActions ] : resetActions; 26 | const shouldReset = (action) => 27 | resetArgs.some((resetArg) => typeof resetArg === 'string' 28 | ? action.type === resetArg 29 | : resetArg(action) 30 | ); 31 | 32 | return function (state = initialFormState, action) { 33 | if (!action) { 34 | return state; 35 | } 36 | 37 | if (shouldReset(action)) { 38 | return initialFormState; 39 | } 40 | 41 | if (!action.payload || action.payload.formName !== formName) { 42 | return state; 43 | } 44 | 45 | switch (action.type) { 46 | case RESET_FORM_STATE: 47 | return initialFormState; 48 | 49 | case SET_FORM_STATE: 50 | return mergeState(state, action.payload.state); 51 | 52 | case REPLACE_FORM_STATE: 53 | return action.payload.state; 54 | } 55 | } 56 | }; 57 | 58 | function connectForm(formName, formSelector, validators = []) { 59 | const validateModel = createModelValidator(...validators); 60 | 61 | const mapStateToProps = (state, props) => ({ 62 | model: formSelector(state) 63 | }); 64 | 65 | const mapDispatchToProps = { 66 | setFormState: setFormState(formName), 67 | setFieldState: setFieldState(formName), 68 | replaceFormState: replaceFormState(formName), 69 | resetFormState: resetFormState(formName) 70 | }; 71 | 72 | const mergeProps = validators && validators.length 73 | ? (stateProps, dispatchProps, ownProps = {}) => ({ 74 | modelValidity: validateModel(stateProps.model), 75 | ...stateProps, 76 | ...dispatchProps, 77 | ...ownProps 78 | }) 79 | : undefined; 80 | 81 | return connect( 82 | mapStateToProps, 83 | mapDispatchToProps, 84 | mergeProps 85 | ); 86 | } 87 | 88 | 89 | export { 90 | createFormReducer, 91 | connectForm, 92 | validator 93 | }; 94 | -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- 1 | import { createStore, combineReducers } from 'redux'; 2 | import { expect } from 'chai'; 3 | import { createFormReducer, validator } from '../src'; 4 | import { createModelValidator, isRequired } from '../src/validate'; 5 | import * as actions from '../src/actions'; 6 | 7 | describe('react-redux-reformed', () => { 8 | describe('createFormReducer', () => { 9 | const formInitialState = { name: 'default' }; 10 | const store = createStore(combineReducers({ 11 | form: createFormReducer('myForm', formInitialState, { resetActions: [ 'RESET' ]}) 12 | })); 13 | 14 | context('when receiving actions for itself', () => { 15 | it('should set the form state', () => { 16 | const action = actions.setFormState('myForm')({ email: 'react@redux.reformed' }); 17 | 18 | store.dispatch(action); 19 | expect(store.getState().form).to.eql({ 20 | name: 'default', 21 | email: 'react@redux.reformed' 22 | }); 23 | }); 24 | 25 | it('should replace the form state', () => { 26 | const action = actions.replaceFormState('myForm')({ email: 'react@redux.reformed' }); 27 | 28 | store.dispatch(action); 29 | expect(store.getState().form).to.eql({ 30 | email: 'react@redux.reformed' 31 | }); 32 | }); 33 | 34 | it('should set a field state', () => { 35 | const action = actions.setFieldState('myForm')('email', 'react@example.com'); 36 | 37 | store.dispatch(action); 38 | expect(store.getState().form).to.eql({ 39 | email: 'react@example.com' 40 | }); 41 | }); 42 | 43 | it('should reset the form state', () => { 44 | const action = actions.resetFormState('myForm')(); 45 | const action2 = actions.setFieldState('myForm')('email', 'react@example.com'); 46 | 47 | store.dispatch(action); 48 | expect(store.getState().form).to.equal(formInitialState); 49 | 50 | store.dispatch(action2); 51 | store.dispatch({ type: 'RESET' }); 52 | expect(store.getState().form).to.equal(formInitialState); 53 | }); 54 | }); 55 | 56 | context('when receiving actions for itself', () => { 57 | it('should not set the form state', () => { 58 | const action = actions.setFormState('notMyForm')({ email: 'react@redux.reformed' }); 59 | 60 | store.dispatch(action); 61 | expect(store.getState().form).to.equal(formInitialState); 62 | }); 63 | 64 | it('should not replace the form state', () => { 65 | const action = actions.replaceFormState('notMyForm')({ email: 'react@redux.reformed' }); 66 | 67 | store.dispatch(action); 68 | expect(store.getState().form).to.equal(formInitialState); 69 | }); 70 | 71 | it('should not set a field state', () => { 72 | const action = actions.setFieldState('notMyForm')('email', 'react@example.com'); 73 | 74 | store.dispatch(action); 75 | expect(store.getState().form).to.equal(formInitialState); 76 | }); 77 | 78 | it('should not reset the form state', () => { 79 | const action = actions.resetFormState('notMyForm')(); 80 | 81 | store.dispatch(action); 82 | expect(store.getState().form).to.equal(formInitialState); 83 | }); 84 | }); 85 | }); 86 | 87 | describe('createModelValidator', () => { 88 | const minLength = (fieldName, min) => validator(fieldName, (val) => val && val.length >= min, 'minLength'); 89 | const lowerCase = (fieldName) => validator(fieldName, (val) => val.toLowerCase() === val, 'lowerCase'); 90 | const validateModel = createModelValidator( 91 | isRequired('name'), 92 | lowerCase('name'), 93 | minLength('name', 2) 94 | ); 95 | const model = { 96 | name: 'abcD' 97 | }; 98 | 99 | it('should output a model validity report', () => { 100 | const modelValidity = validateModel(model); 101 | 102 | expect(modelValidity).to.eql({ 103 | valid: false, 104 | name: { 105 | valid: false, 106 | required: true, 107 | lowerCase: false, 108 | minLength: true 109 | } 110 | }); 111 | }); 112 | }) 113 | }); 114 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![Build Status](https://travis-ci.org/troch/react-redux-reformed.svg?branch=master)](https://travis-ci.org/troch/react-redux-reformed) 2 | 3 | # react-redux-reformed 4 | 5 | Forms with React and Redux made simple: start with the bare minimum, no magic, then __use composition__ (components, functions, global and local states) to create more complex forms. This package has no external dependencies and will have a very little impact on your bundle (< 1.5kB gzipped). 6 | 7 | __This package is similar to [react-reformed](https://github.com/davezuko/react-reformed), and I encourage you to look at it and read its README.__ 8 | 9 | __This package contains:__ 10 | 11 | - A reducer factory 12 | - A higher-order component wrapping `connect` (from react-redux package) 13 | - Validation helpers 14 | 15 | __This package does not contain:__ 16 | 17 | - Components: you can easily create your own form components, for native and web 18 | - Event handlers and UI elements state management (focused, blurred, touched, submitted, etc...): you can choose to include them in your redux store, or simply use local state 19 | - Async validation of input values: use state and component composition to solve those more complex problems 20 | - Currently doesn't work with nested objects 21 | 22 | 23 | ## Table of contents 24 | 25 | [1. Get started in no time](#get-started-in-no-time) 26 | [2. API reference](#api-reference) 27 | [3. Build your own API](#build-your-own-api) 28 | 29 | 30 | ## Get started in no time 31 | 32 | __1. Include your forms in your store__ 33 | 34 | ```js 35 | import { createStore, combineReducers } from 'redux'; 36 | import { createFormReducer } from 'react-redux-reformed'; 37 | 38 | const reducer = combineReducers({ 39 | form: createFormReducer('myForm', { name: '' }) 40 | }) 41 | ``` 42 | 43 | __2. Bind your form to your store__ 44 | 45 | ```js 46 | import React, { PureComponent } from 'react'; 47 | import { connectForm } from 'react-redux-reformed'; 48 | import { isRequired } from 'react-redux-reformed/validate'; 49 | 50 | class MyForm extends PureComponent { 51 | submitHandler = (evt) => { 52 | evt.preventDefault(); 53 | // Send the model somewhere 54 | }; 55 | nameChangeHandler = (evt) => setFormField('name', evt.target.value); 56 | 57 | render() { 58 | const { model, modelValidity, setFormField, resetForm } = this.props; 59 | 60 | return ( 61 |
62 | 63 | 64 | 65 | 66 | 67 |
68 | ); 69 | } 70 | } 71 | 72 | const formName = 'myForm'; 73 | const formSelector = (state) => state.form; 74 | const validators = [ 75 | isRequired('name') 76 | ] 77 | 78 | export default connectForm(formName, formSelector, validators)(MyForm); 79 | ``` 80 | 81 | And that's it, you have a basic form set up, connected to your redux store and with validation. 82 | 83 | 84 | ## API reference 85 | 86 | ### createFormReducer(formName: string, initialFormState: object, options: object) 87 | 88 | A form reducer can react to 3 types of actions: 89 | - Reset state actions: to reset the state 90 | - Set state actions: to amend the current state 91 | - Replace state actions: to replace the current state 92 | 93 | Set and replace work similarly to local state in React (`setState`, `replaceState`). 94 | 95 | ```js 96 | import { createFormReducer } from 'react-redux-reformed'; 97 | 98 | const reducer = createFormReducer( 99 | 'myForm', 100 | { name: '' }, 101 | { 102 | resetActions: [ 103 | (action) => action.type === 'CREATE_USER_RECEIVE' && !action.error 104 | ] 105 | } 106 | ); 107 | ``` 108 | 109 | - `formName`: the form name, so the reducer knows if actions can be applied or ignored 110 | - `initialFormState`: to initialise your form 111 | - `options`: see below 112 | 113 | Options: 114 | 115 | - `resetActions`: a list of actions which can reset your form reducer. The list can contain action types (strings) or functions of actions (returning a boolean). The last one is useful for piggy backing on other actions like successful AJAX requests (see example above). 116 | - `mergeState`: a function to merge state received in `SET_FORM_STATE`. By default, it performs a shallow merge. 117 | 118 | 119 | ### connectForm(formName: string, formSelector: function, validators: array) 120 | 121 | ```js 122 | import { connectForm } from 'react-redux-reformed'; 123 | import { isRequired } from 'react-redux-reformed/validate'; 124 | 125 | const MyConnectedForm = connectForm( 126 | 'myForm', 127 | (state) => state.form 128 | )(MyForm); 129 | ``` 130 | 131 | - `formName`: the form name, so the actions can be created with it (and touch the right reducer) 132 | - `formSelector`: so your form can be located (connectForm has no idea where your form is otherwise) 133 | - `validators`: a list of validation functions, see `validator` function below 134 | 135 | The following props will be available: 136 | 137 | - `model`: the form object stored in your redux store 138 | - `modelValidity`: if validators are supplied (optional), a validity report is added to the props 139 | - Action creators: `setFormState`, `replaceFormState`, `setFieldState`, `resetFormState` 140 | 141 | A model validity looks like the following (don't call one of your fields `valid`): 142 | 143 | ```js 144 | const modelValidity = { 145 | valid: false, 146 | name: { 147 | valid: true, 148 | required: true 149 | }, 150 | email: { 151 | valid: false, 152 | require: true, 153 | email: false 154 | } 155 | }; 156 | ``` 157 | 158 | 159 | ### validator(fieldName: string, validationFn: function, name: string) 160 | 161 | ```js 162 | import { validator } from 'react-redux-reformed'; 163 | 164 | const minLength = (fieldName, min) => 165 | validator( 166 | fieldName, 167 | (val) => val && val.length >= min, 168 | 'minLength' 169 | ); 170 | ``` 171 | 172 | - `fieldName`: the name of the field being validated 173 | - `validationFn: a function of the field value, returning `true` (if valid) or `false` (if not valid) 174 | - `name`: the validator name. Optional if `validationFn` is named 175 | 176 | 177 | For reference purposes, a `isRequired` validator is included (but that's the only one). Don't call one of your validators `valid`. 178 | 179 | 180 | ## Build your own API 181 | 182 | You might want to compose selectors and actions together in your own `connect` HOC, have validation in a selector or in a separate higher-order component, or simply compose things together differently. 183 | 184 | ### createModelValidator(...validators) 185 | 186 | ```js 187 | import { createModelValidator, isRequired } from 'react-redux-reformed/validate'; 188 | 189 | const validateModel = createModelValidator(isRequired('name')); 190 | 191 | validateModel({ name: 'hello' }) 192 | // Prints: 193 | { 194 | valid: true, 195 | name: { 196 | valid: true, 197 | required: true 198 | } 199 | } 200 | ``` 201 | 202 | ### setFormState(formName: string)(state: object) 203 | 204 | ```js 205 | import { SET_FORM_STATE, setFormState } from 'react-redux-reformed/actions'; 206 | ``` 207 | 208 | Action creator for action type `SET_FORM_STATE`. 209 | 210 | 211 | ### setFieldState(formName: string)(fieldName: string, fieldValue: any) 212 | 213 | ```js 214 | import { SET_FORM_STATE, setFormState } from 'react-redux-reformed/actions'; 215 | ``` 216 | 217 | Action creator using `setFormState` action creator. 218 | 219 | 220 | ### replaceFormState(formName: string)(state: object) 221 | 222 | ```js 223 | import { REPLACE_FORM_STATE, replaceFormState } from 'react-redux-reformed/actions'; 224 | ``` 225 | 226 | Action creator for action type `REPLACE_FORM_STATE`. 227 | 228 | 229 | ### resetFormState(formName: string)(state: object) 230 | 231 | ```js 232 | import { RESET_FORM_STATE, resetFormState } from 'react-redux-reformed/actions'; 233 | ``` 234 | 235 | Action creator for action type `RESET_FORM_STATE`. 236 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1: 6 | version "1.1.0" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 8 | 9 | ajv@^4.9.1: 10 | version "4.11.7" 11 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.7.tgz#8655a5d86d0824985cc471a1d913fb6729a0ec48" 12 | dependencies: 13 | co "^4.6.0" 14 | json-stable-stringify "^1.0.1" 15 | 16 | ansi-regex@^2.0.0: 17 | version "2.1.1" 18 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 19 | 20 | ansi-styles@^2.2.1: 21 | version "2.2.1" 22 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 23 | 24 | anymatch@^1.3.0: 25 | version "1.3.0" 26 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 27 | dependencies: 28 | arrify "^1.0.0" 29 | micromatch "^2.1.5" 30 | 31 | aproba@^1.0.3: 32 | version "1.1.1" 33 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab" 34 | 35 | are-we-there-yet@~1.1.2: 36 | version "1.1.2" 37 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 38 | dependencies: 39 | delegates "^1.0.0" 40 | readable-stream "^2.0.0 || ^1.1.13" 41 | 42 | arr-diff@^2.0.0: 43 | version "2.0.0" 44 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 45 | dependencies: 46 | arr-flatten "^1.0.1" 47 | 48 | arr-flatten@^1.0.1: 49 | version "1.0.3" 50 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1" 51 | 52 | array-unique@^0.2.1: 53 | version "0.2.1" 54 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 55 | 56 | arrify@^1.0.0: 57 | version "1.0.1" 58 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 59 | 60 | asap@~2.0.3: 61 | version "2.0.5" 62 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.5.tgz#522765b50c3510490e52d7dcfe085ef9ba96958f" 63 | 64 | asn1@~0.2.3: 65 | version "0.2.3" 66 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 67 | 68 | assert-plus@1.0.0, assert-plus@^1.0.0: 69 | version "1.0.0" 70 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 71 | 72 | assert-plus@^0.2.0: 73 | version "0.2.0" 74 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 75 | 76 | assertion-error@^1.0.1: 77 | version "1.0.2" 78 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.0.2.tgz#13ca515d86206da0bac66e834dd397d87581094c" 79 | 80 | async-each@^1.0.0: 81 | version "1.0.1" 82 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 83 | 84 | asynckit@^0.4.0: 85 | version "0.4.0" 86 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 87 | 88 | aws-sign2@~0.6.0: 89 | version "0.6.0" 90 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 91 | 92 | aws4@^1.2.1: 93 | version "1.6.0" 94 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 95 | 96 | babel-cli@~6.24.1: 97 | version "6.24.1" 98 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.24.1.tgz#207cd705bba61489b2ea41b5312341cf6aca2283" 99 | dependencies: 100 | babel-core "^6.24.1" 101 | babel-polyfill "^6.23.0" 102 | babel-register "^6.24.1" 103 | babel-runtime "^6.22.0" 104 | commander "^2.8.1" 105 | convert-source-map "^1.1.0" 106 | fs-readdir-recursive "^1.0.0" 107 | glob "^7.0.0" 108 | lodash "^4.2.0" 109 | output-file-sync "^1.1.0" 110 | path-is-absolute "^1.0.0" 111 | slash "^1.0.0" 112 | source-map "^0.5.0" 113 | v8flags "^2.0.10" 114 | optionalDependencies: 115 | chokidar "^1.6.1" 116 | 117 | babel-code-frame@^6.22.0: 118 | version "6.22.0" 119 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 120 | dependencies: 121 | chalk "^1.1.0" 122 | esutils "^2.0.2" 123 | js-tokens "^3.0.0" 124 | 125 | babel-core@^6.24.1, babel-core@~6.24.1: 126 | version "6.24.1" 127 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.1.tgz#8c428564dce1e1f41fb337ec34f4c3b022b5ad83" 128 | dependencies: 129 | babel-code-frame "^6.22.0" 130 | babel-generator "^6.24.1" 131 | babel-helpers "^6.24.1" 132 | babel-messages "^6.23.0" 133 | babel-register "^6.24.1" 134 | babel-runtime "^6.22.0" 135 | babel-template "^6.24.1" 136 | babel-traverse "^6.24.1" 137 | babel-types "^6.24.1" 138 | babylon "^6.11.0" 139 | convert-source-map "^1.1.0" 140 | debug "^2.1.1" 141 | json5 "^0.5.0" 142 | lodash "^4.2.0" 143 | minimatch "^3.0.2" 144 | path-is-absolute "^1.0.0" 145 | private "^0.1.6" 146 | slash "^1.0.0" 147 | source-map "^0.5.0" 148 | 149 | babel-generator@^6.24.1: 150 | version "6.24.1" 151 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.1.tgz#e715f486c58ded25649d888944d52aa07c5d9497" 152 | dependencies: 153 | babel-messages "^6.23.0" 154 | babel-runtime "^6.22.0" 155 | babel-types "^6.24.1" 156 | detect-indent "^4.0.0" 157 | jsesc "^1.3.0" 158 | lodash "^4.2.0" 159 | source-map "^0.5.0" 160 | trim-right "^1.0.1" 161 | 162 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 163 | version "6.24.1" 164 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 165 | dependencies: 166 | babel-helper-explode-assignable-expression "^6.24.1" 167 | babel-runtime "^6.22.0" 168 | babel-types "^6.24.1" 169 | 170 | babel-helper-builder-react-jsx@^6.24.1: 171 | version "6.24.1" 172 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.24.1.tgz#0ad7917e33c8d751e646daca4e77cc19377d2cbc" 173 | dependencies: 174 | babel-runtime "^6.22.0" 175 | babel-types "^6.24.1" 176 | esutils "^2.0.0" 177 | 178 | babel-helper-call-delegate@^6.24.1: 179 | version "6.24.1" 180 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 181 | dependencies: 182 | babel-helper-hoist-variables "^6.24.1" 183 | babel-runtime "^6.22.0" 184 | babel-traverse "^6.24.1" 185 | babel-types "^6.24.1" 186 | 187 | babel-helper-define-map@^6.24.1: 188 | version "6.24.1" 189 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz#7a9747f258d8947d32d515f6aa1c7bd02204a080" 190 | dependencies: 191 | babel-helper-function-name "^6.24.1" 192 | babel-runtime "^6.22.0" 193 | babel-types "^6.24.1" 194 | lodash "^4.2.0" 195 | 196 | babel-helper-explode-assignable-expression@^6.24.1: 197 | version "6.24.1" 198 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 199 | dependencies: 200 | babel-runtime "^6.22.0" 201 | babel-traverse "^6.24.1" 202 | babel-types "^6.24.1" 203 | 204 | babel-helper-function-name@^6.24.1: 205 | version "6.24.1" 206 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 207 | dependencies: 208 | babel-helper-get-function-arity "^6.24.1" 209 | babel-runtime "^6.22.0" 210 | babel-template "^6.24.1" 211 | babel-traverse "^6.24.1" 212 | babel-types "^6.24.1" 213 | 214 | babel-helper-get-function-arity@^6.24.1: 215 | version "6.24.1" 216 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 217 | dependencies: 218 | babel-runtime "^6.22.0" 219 | babel-types "^6.24.1" 220 | 221 | babel-helper-hoist-variables@^6.24.1: 222 | version "6.24.1" 223 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 224 | dependencies: 225 | babel-runtime "^6.22.0" 226 | babel-types "^6.24.1" 227 | 228 | babel-helper-optimise-call-expression@^6.24.1: 229 | version "6.24.1" 230 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 231 | dependencies: 232 | babel-runtime "^6.22.0" 233 | babel-types "^6.24.1" 234 | 235 | babel-helper-regex@^6.24.1: 236 | version "6.24.1" 237 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8" 238 | dependencies: 239 | babel-runtime "^6.22.0" 240 | babel-types "^6.24.1" 241 | lodash "^4.2.0" 242 | 243 | babel-helper-remap-async-to-generator@^6.24.1: 244 | version "6.24.1" 245 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 246 | dependencies: 247 | babel-helper-function-name "^6.24.1" 248 | babel-runtime "^6.22.0" 249 | babel-template "^6.24.1" 250 | babel-traverse "^6.24.1" 251 | babel-types "^6.24.1" 252 | 253 | babel-helper-replace-supers@^6.24.1: 254 | version "6.24.1" 255 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 256 | dependencies: 257 | babel-helper-optimise-call-expression "^6.24.1" 258 | babel-messages "^6.23.0" 259 | babel-runtime "^6.22.0" 260 | babel-template "^6.24.1" 261 | babel-traverse "^6.24.1" 262 | babel-types "^6.24.1" 263 | 264 | babel-helpers@^6.24.1: 265 | version "6.24.1" 266 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 267 | dependencies: 268 | babel-runtime "^6.22.0" 269 | babel-template "^6.24.1" 270 | 271 | babel-messages@^6.23.0: 272 | version "6.23.0" 273 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 274 | dependencies: 275 | babel-runtime "^6.22.0" 276 | 277 | babel-plugin-check-es2015-constants@^6.22.0: 278 | version "6.22.0" 279 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 280 | dependencies: 281 | babel-runtime "^6.22.0" 282 | 283 | babel-plugin-syntax-async-functions@^6.8.0: 284 | version "6.13.0" 285 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 286 | 287 | babel-plugin-syntax-async-generators@^6.5.0: 288 | version "6.13.0" 289 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a" 290 | 291 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 292 | version "6.13.0" 293 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 294 | 295 | babel-plugin-syntax-flow@^6.18.0: 296 | version "6.18.0" 297 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 298 | 299 | babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0: 300 | version "6.18.0" 301 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 302 | 303 | babel-plugin-syntax-object-rest-spread@^6.8.0: 304 | version "6.13.0" 305 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 306 | 307 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 308 | version "6.22.0" 309 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 310 | 311 | babel-plugin-transform-async-generator-functions@^6.24.1: 312 | version "6.24.1" 313 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.24.1.tgz#f058900145fd3e9907a6ddf28da59f215258a5db" 314 | dependencies: 315 | babel-helper-remap-async-to-generator "^6.24.1" 316 | babel-plugin-syntax-async-generators "^6.5.0" 317 | babel-runtime "^6.22.0" 318 | 319 | babel-plugin-transform-async-to-generator@^6.24.1: 320 | version "6.24.1" 321 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 322 | dependencies: 323 | babel-helper-remap-async-to-generator "^6.24.1" 324 | babel-plugin-syntax-async-functions "^6.8.0" 325 | babel-runtime "^6.22.0" 326 | 327 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 328 | version "6.22.0" 329 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 330 | dependencies: 331 | babel-runtime "^6.22.0" 332 | 333 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 334 | version "6.22.0" 335 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 336 | dependencies: 337 | babel-runtime "^6.22.0" 338 | 339 | babel-plugin-transform-es2015-block-scoping@^6.24.1: 340 | version "6.24.1" 341 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz#76c295dc3a4741b1665adfd3167215dcff32a576" 342 | dependencies: 343 | babel-runtime "^6.22.0" 344 | babel-template "^6.24.1" 345 | babel-traverse "^6.24.1" 346 | babel-types "^6.24.1" 347 | lodash "^4.2.0" 348 | 349 | babel-plugin-transform-es2015-classes@^6.24.1: 350 | version "6.24.1" 351 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 352 | dependencies: 353 | babel-helper-define-map "^6.24.1" 354 | babel-helper-function-name "^6.24.1" 355 | babel-helper-optimise-call-expression "^6.24.1" 356 | babel-helper-replace-supers "^6.24.1" 357 | babel-messages "^6.23.0" 358 | babel-runtime "^6.22.0" 359 | babel-template "^6.24.1" 360 | babel-traverse "^6.24.1" 361 | babel-types "^6.24.1" 362 | 363 | babel-plugin-transform-es2015-computed-properties@^6.24.1: 364 | version "6.24.1" 365 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 366 | dependencies: 367 | babel-runtime "^6.22.0" 368 | babel-template "^6.24.1" 369 | 370 | babel-plugin-transform-es2015-destructuring@^6.22.0: 371 | version "6.23.0" 372 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 373 | dependencies: 374 | babel-runtime "^6.22.0" 375 | 376 | babel-plugin-transform-es2015-duplicate-keys@^6.24.1: 377 | version "6.24.1" 378 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 379 | dependencies: 380 | babel-runtime "^6.22.0" 381 | babel-types "^6.24.1" 382 | 383 | babel-plugin-transform-es2015-for-of@^6.22.0: 384 | version "6.23.0" 385 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 386 | dependencies: 387 | babel-runtime "^6.22.0" 388 | 389 | babel-plugin-transform-es2015-function-name@^6.24.1: 390 | version "6.24.1" 391 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 392 | dependencies: 393 | babel-helper-function-name "^6.24.1" 394 | babel-runtime "^6.22.0" 395 | babel-types "^6.24.1" 396 | 397 | babel-plugin-transform-es2015-literals@^6.22.0: 398 | version "6.22.0" 399 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 400 | dependencies: 401 | babel-runtime "^6.22.0" 402 | 403 | babel-plugin-transform-es2015-modules-amd@^6.24.1: 404 | version "6.24.1" 405 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 406 | dependencies: 407 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 408 | babel-runtime "^6.22.0" 409 | babel-template "^6.24.1" 410 | 411 | babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 412 | version "6.24.1" 413 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" 414 | dependencies: 415 | babel-plugin-transform-strict-mode "^6.24.1" 416 | babel-runtime "^6.22.0" 417 | babel-template "^6.24.1" 418 | babel-types "^6.24.1" 419 | 420 | babel-plugin-transform-es2015-modules-systemjs@^6.24.1: 421 | version "6.24.1" 422 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 423 | dependencies: 424 | babel-helper-hoist-variables "^6.24.1" 425 | babel-runtime "^6.22.0" 426 | babel-template "^6.24.1" 427 | 428 | babel-plugin-transform-es2015-modules-umd@^6.24.1: 429 | version "6.24.1" 430 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 431 | dependencies: 432 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 433 | babel-runtime "^6.22.0" 434 | babel-template "^6.24.1" 435 | 436 | babel-plugin-transform-es2015-object-super@^6.24.1: 437 | version "6.24.1" 438 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 439 | dependencies: 440 | babel-helper-replace-supers "^6.24.1" 441 | babel-runtime "^6.22.0" 442 | 443 | babel-plugin-transform-es2015-parameters@^6.24.1: 444 | version "6.24.1" 445 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 446 | dependencies: 447 | babel-helper-call-delegate "^6.24.1" 448 | babel-helper-get-function-arity "^6.24.1" 449 | babel-runtime "^6.22.0" 450 | babel-template "^6.24.1" 451 | babel-traverse "^6.24.1" 452 | babel-types "^6.24.1" 453 | 454 | babel-plugin-transform-es2015-shorthand-properties@^6.24.1: 455 | version "6.24.1" 456 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 457 | dependencies: 458 | babel-runtime "^6.22.0" 459 | babel-types "^6.24.1" 460 | 461 | babel-plugin-transform-es2015-spread@^6.22.0: 462 | version "6.22.0" 463 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 464 | dependencies: 465 | babel-runtime "^6.22.0" 466 | 467 | babel-plugin-transform-es2015-sticky-regex@^6.24.1: 468 | version "6.24.1" 469 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 470 | dependencies: 471 | babel-helper-regex "^6.24.1" 472 | babel-runtime "^6.22.0" 473 | babel-types "^6.24.1" 474 | 475 | babel-plugin-transform-es2015-template-literals@^6.22.0: 476 | version "6.22.0" 477 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 478 | dependencies: 479 | babel-runtime "^6.22.0" 480 | 481 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 482 | version "6.23.0" 483 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 484 | dependencies: 485 | babel-runtime "^6.22.0" 486 | 487 | babel-plugin-transform-es2015-unicode-regex@^6.24.1: 488 | version "6.24.1" 489 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 490 | dependencies: 491 | babel-helper-regex "^6.24.1" 492 | babel-runtime "^6.22.0" 493 | regexpu-core "^2.0.0" 494 | 495 | babel-plugin-transform-exponentiation-operator@^6.24.1: 496 | version "6.24.1" 497 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 498 | dependencies: 499 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 500 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 501 | babel-runtime "^6.22.0" 502 | 503 | babel-plugin-transform-flow-strip-types@^6.22.0: 504 | version "6.22.0" 505 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" 506 | dependencies: 507 | babel-plugin-syntax-flow "^6.18.0" 508 | babel-runtime "^6.22.0" 509 | 510 | babel-plugin-transform-object-rest-spread@^6.22.0: 511 | version "6.23.0" 512 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz#875d6bc9be761c58a2ae3feee5dc4895d8c7f921" 513 | dependencies: 514 | babel-plugin-syntax-object-rest-spread "^6.8.0" 515 | babel-runtime "^6.22.0" 516 | 517 | babel-plugin-transform-react-display-name@^6.23.0: 518 | version "6.23.0" 519 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.23.0.tgz#4398910c358441dc4cef18787264d0412ed36b37" 520 | dependencies: 521 | babel-runtime "^6.22.0" 522 | 523 | babel-plugin-transform-react-jsx-self@^6.22.0: 524 | version "6.22.0" 525 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e" 526 | dependencies: 527 | babel-plugin-syntax-jsx "^6.8.0" 528 | babel-runtime "^6.22.0" 529 | 530 | babel-plugin-transform-react-jsx-source@^6.22.0: 531 | version "6.22.0" 532 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" 533 | dependencies: 534 | babel-plugin-syntax-jsx "^6.8.0" 535 | babel-runtime "^6.22.0" 536 | 537 | babel-plugin-transform-react-jsx@^6.24.1: 538 | version "6.24.1" 539 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3" 540 | dependencies: 541 | babel-helper-builder-react-jsx "^6.24.1" 542 | babel-plugin-syntax-jsx "^6.8.0" 543 | babel-runtime "^6.22.0" 544 | 545 | babel-plugin-transform-regenerator@^6.24.1: 546 | version "6.24.1" 547 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz#b8da305ad43c3c99b4848e4fe4037b770d23c418" 548 | dependencies: 549 | regenerator-transform "0.9.11" 550 | 551 | babel-plugin-transform-runtime@^6.23.0: 552 | version "6.23.0" 553 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.23.0.tgz#88490d446502ea9b8e7efb0fe09ec4d99479b1ee" 554 | dependencies: 555 | babel-runtime "^6.22.0" 556 | 557 | babel-plugin-transform-strict-mode@^6.24.1: 558 | version "6.24.1" 559 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 560 | dependencies: 561 | babel-runtime "^6.22.0" 562 | babel-types "^6.24.1" 563 | 564 | babel-polyfill@^6.23.0: 565 | version "6.23.0" 566 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d" 567 | dependencies: 568 | babel-runtime "^6.22.0" 569 | core-js "^2.4.0" 570 | regenerator-runtime "^0.10.0" 571 | 572 | babel-preset-es2015@~6.24.1: 573 | version "6.24.1" 574 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" 575 | dependencies: 576 | babel-plugin-check-es2015-constants "^6.22.0" 577 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 578 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 579 | babel-plugin-transform-es2015-block-scoping "^6.24.1" 580 | babel-plugin-transform-es2015-classes "^6.24.1" 581 | babel-plugin-transform-es2015-computed-properties "^6.24.1" 582 | babel-plugin-transform-es2015-destructuring "^6.22.0" 583 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1" 584 | babel-plugin-transform-es2015-for-of "^6.22.0" 585 | babel-plugin-transform-es2015-function-name "^6.24.1" 586 | babel-plugin-transform-es2015-literals "^6.22.0" 587 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 588 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 589 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1" 590 | babel-plugin-transform-es2015-modules-umd "^6.24.1" 591 | babel-plugin-transform-es2015-object-super "^6.24.1" 592 | babel-plugin-transform-es2015-parameters "^6.24.1" 593 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1" 594 | babel-plugin-transform-es2015-spread "^6.22.0" 595 | babel-plugin-transform-es2015-sticky-regex "^6.24.1" 596 | babel-plugin-transform-es2015-template-literals "^6.22.0" 597 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 598 | babel-plugin-transform-es2015-unicode-regex "^6.24.1" 599 | babel-plugin-transform-regenerator "^6.24.1" 600 | 601 | babel-preset-flow@^6.23.0: 602 | version "6.23.0" 603 | resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d" 604 | dependencies: 605 | babel-plugin-transform-flow-strip-types "^6.22.0" 606 | 607 | babel-preset-react@~6.24.1: 608 | version "6.24.1" 609 | resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.24.1.tgz#ba69dfaea45fc3ec639b6a4ecea6e17702c91380" 610 | dependencies: 611 | babel-plugin-syntax-jsx "^6.3.13" 612 | babel-plugin-transform-react-display-name "^6.23.0" 613 | babel-plugin-transform-react-jsx "^6.24.1" 614 | babel-plugin-transform-react-jsx-self "^6.22.0" 615 | babel-plugin-transform-react-jsx-source "^6.22.0" 616 | babel-preset-flow "^6.23.0" 617 | 618 | babel-preset-stage-3@~6.24.1: 619 | version "6.24.1" 620 | resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.24.1.tgz#836ada0a9e7a7fa37cb138fb9326f87934a48395" 621 | dependencies: 622 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 623 | babel-plugin-transform-async-generator-functions "^6.24.1" 624 | babel-plugin-transform-async-to-generator "^6.24.1" 625 | babel-plugin-transform-exponentiation-operator "^6.24.1" 626 | babel-plugin-transform-object-rest-spread "^6.22.0" 627 | 628 | babel-register@^6.24.1: 629 | version "6.24.1" 630 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 631 | dependencies: 632 | babel-core "^6.24.1" 633 | babel-runtime "^6.22.0" 634 | core-js "^2.4.0" 635 | home-or-tmp "^2.0.0" 636 | lodash "^4.2.0" 637 | mkdirp "^0.5.1" 638 | source-map-support "^0.4.2" 639 | 640 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.23.0: 641 | version "6.23.0" 642 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 643 | dependencies: 644 | core-js "^2.4.0" 645 | regenerator-runtime "^0.10.0" 646 | 647 | babel-template@^6.24.1: 648 | version "6.24.1" 649 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333" 650 | dependencies: 651 | babel-runtime "^6.22.0" 652 | babel-traverse "^6.24.1" 653 | babel-types "^6.24.1" 654 | babylon "^6.11.0" 655 | lodash "^4.2.0" 656 | 657 | babel-traverse@^6.24.1: 658 | version "6.24.1" 659 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695" 660 | dependencies: 661 | babel-code-frame "^6.22.0" 662 | babel-messages "^6.23.0" 663 | babel-runtime "^6.22.0" 664 | babel-types "^6.24.1" 665 | babylon "^6.15.0" 666 | debug "^2.2.0" 667 | globals "^9.0.0" 668 | invariant "^2.2.0" 669 | lodash "^4.2.0" 670 | 671 | babel-types@^6.19.0, babel-types@^6.24.1: 672 | version "6.24.1" 673 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975" 674 | dependencies: 675 | babel-runtime "^6.22.0" 676 | esutils "^2.0.2" 677 | lodash "^4.2.0" 678 | to-fast-properties "^1.0.1" 679 | 680 | babylon@^6.11.0, babylon@^6.15.0: 681 | version "6.16.1" 682 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.16.1.tgz#30c5a22f481978a9e7f8cdfdf496b11d94b404d3" 683 | 684 | balanced-match@^0.4.1: 685 | version "0.4.2" 686 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 687 | 688 | bcrypt-pbkdf@^1.0.0: 689 | version "1.0.1" 690 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 691 | dependencies: 692 | tweetnacl "^0.14.3" 693 | 694 | binary-extensions@^1.0.0: 695 | version "1.8.0" 696 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 697 | 698 | block-stream@*: 699 | version "0.0.9" 700 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 701 | dependencies: 702 | inherits "~2.0.0" 703 | 704 | boom@2.x.x: 705 | version "2.10.1" 706 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 707 | dependencies: 708 | hoek "2.x.x" 709 | 710 | brace-expansion@^1.0.0: 711 | version "1.1.7" 712 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.7.tgz#3effc3c50e000531fb720eaff80f0ae8ef23cf59" 713 | dependencies: 714 | balanced-match "^0.4.1" 715 | concat-map "0.0.1" 716 | 717 | braces@^1.8.2: 718 | version "1.8.5" 719 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 720 | dependencies: 721 | expand-range "^1.8.1" 722 | preserve "^0.2.0" 723 | repeat-element "^1.1.2" 724 | 725 | browser-stdout@1.3.0: 726 | version "1.3.0" 727 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" 728 | 729 | buffer-shims@~1.0.0: 730 | version "1.0.0" 731 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 732 | 733 | caseless@~0.12.0: 734 | version "0.12.0" 735 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 736 | 737 | chai@~3.5.0: 738 | version "3.5.0" 739 | resolved "https://registry.yarnpkg.com/chai/-/chai-3.5.0.tgz#4d02637b067fe958bdbfdd3a40ec56fef7373247" 740 | dependencies: 741 | assertion-error "^1.0.1" 742 | deep-eql "^0.1.3" 743 | type-detect "^1.0.0" 744 | 745 | chalk@^1.1.0: 746 | version "1.1.3" 747 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 748 | dependencies: 749 | ansi-styles "^2.2.1" 750 | escape-string-regexp "^1.0.2" 751 | has-ansi "^2.0.0" 752 | strip-ansi "^3.0.0" 753 | supports-color "^2.0.0" 754 | 755 | chokidar@^1.6.1: 756 | version "1.6.1" 757 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 758 | dependencies: 759 | anymatch "^1.3.0" 760 | async-each "^1.0.0" 761 | glob-parent "^2.0.0" 762 | inherits "^2.0.1" 763 | is-binary-path "^1.0.0" 764 | is-glob "^2.0.0" 765 | path-is-absolute "^1.0.0" 766 | readdirp "^2.0.0" 767 | optionalDependencies: 768 | fsevents "^1.0.0" 769 | 770 | co@^4.6.0: 771 | version "4.6.0" 772 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 773 | 774 | code-point-at@^1.0.0: 775 | version "1.1.0" 776 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 777 | 778 | combined-stream@^1.0.5, combined-stream@~1.0.5: 779 | version "1.0.5" 780 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 781 | dependencies: 782 | delayed-stream "~1.0.0" 783 | 784 | commander@2.9.0, commander@^2.8.1: 785 | version "2.9.0" 786 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 787 | dependencies: 788 | graceful-readlink ">= 1.0.0" 789 | 790 | concat-map@0.0.1: 791 | version "0.0.1" 792 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 793 | 794 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 795 | version "1.1.0" 796 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 797 | 798 | convert-source-map@^1.1.0: 799 | version "1.5.0" 800 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 801 | 802 | core-js@^1.0.0: 803 | version "1.2.7" 804 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 805 | 806 | core-js@^2.4.0: 807 | version "2.4.1" 808 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 809 | 810 | core-util-is@~1.0.0: 811 | version "1.0.2" 812 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 813 | 814 | create-react-class@^15.5.1: 815 | version "15.5.2" 816 | resolved "https://registry.yarnpkg.com/create-react-class/-/create-react-class-15.5.2.tgz#6a8758348df660b88326a0e764d569f274aad681" 817 | dependencies: 818 | fbjs "^0.8.9" 819 | object-assign "^4.1.1" 820 | 821 | cryptiles@2.x.x: 822 | version "2.0.5" 823 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 824 | dependencies: 825 | boom "2.x.x" 826 | 827 | dashdash@^1.12.0: 828 | version "1.14.1" 829 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 830 | dependencies: 831 | assert-plus "^1.0.0" 832 | 833 | debug@2.2.0: 834 | version "2.2.0" 835 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 836 | dependencies: 837 | ms "0.7.1" 838 | 839 | debug@^2.1.1, debug@^2.2.0: 840 | version "2.6.3" 841 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.3.tgz#0f7eb8c30965ec08c72accfa0130c8b79984141d" 842 | dependencies: 843 | ms "0.7.2" 844 | 845 | deep-eql@^0.1.3: 846 | version "0.1.3" 847 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-0.1.3.tgz#ef558acab8de25206cd713906d74e56930eb69f2" 848 | dependencies: 849 | type-detect "0.1.1" 850 | 851 | deep-extend@~0.4.0: 852 | version "0.4.1" 853 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 854 | 855 | delayed-stream@~1.0.0: 856 | version "1.0.0" 857 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 858 | 859 | delegates@^1.0.0: 860 | version "1.0.0" 861 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 862 | 863 | detect-indent@^4.0.0: 864 | version "4.0.0" 865 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 866 | dependencies: 867 | repeating "^2.0.0" 868 | 869 | diff@1.4.0: 870 | version "1.4.0" 871 | resolved "https://registry.yarnpkg.com/diff/-/diff-1.4.0.tgz#7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf" 872 | 873 | ecc-jsbn@~0.1.1: 874 | version "0.1.1" 875 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 876 | dependencies: 877 | jsbn "~0.1.0" 878 | 879 | encoding@^0.1.11: 880 | version "0.1.12" 881 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 882 | dependencies: 883 | iconv-lite "~0.4.13" 884 | 885 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2: 886 | version "1.0.5" 887 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 888 | 889 | esutils@^2.0.0, esutils@^2.0.2: 890 | version "2.0.2" 891 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 892 | 893 | expand-brackets@^0.1.4: 894 | version "0.1.5" 895 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 896 | dependencies: 897 | is-posix-bracket "^0.1.0" 898 | 899 | expand-range@^1.8.1: 900 | version "1.8.2" 901 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 902 | dependencies: 903 | fill-range "^2.1.0" 904 | 905 | extend@~3.0.0: 906 | version "3.0.0" 907 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 908 | 909 | extglob@^0.3.1: 910 | version "0.3.2" 911 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 912 | dependencies: 913 | is-extglob "^1.0.0" 914 | 915 | extsprintf@1.0.2: 916 | version "1.0.2" 917 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 918 | 919 | fbjs@^0.8.9: 920 | version "0.8.12" 921 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.12.tgz#10b5d92f76d45575fd63a217d4ea02bea2f8ed04" 922 | dependencies: 923 | core-js "^1.0.0" 924 | isomorphic-fetch "^2.1.1" 925 | loose-envify "^1.0.0" 926 | object-assign "^4.1.0" 927 | promise "^7.1.1" 928 | setimmediate "^1.0.5" 929 | ua-parser-js "^0.7.9" 930 | 931 | filename-regex@^2.0.0: 932 | version "2.0.0" 933 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 934 | 935 | fill-range@^2.1.0: 936 | version "2.2.3" 937 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 938 | dependencies: 939 | is-number "^2.1.0" 940 | isobject "^2.0.0" 941 | randomatic "^1.1.3" 942 | repeat-element "^1.1.2" 943 | repeat-string "^1.5.2" 944 | 945 | for-in@^1.0.1: 946 | version "1.0.2" 947 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 948 | 949 | for-own@^0.1.4: 950 | version "0.1.5" 951 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 952 | dependencies: 953 | for-in "^1.0.1" 954 | 955 | forever-agent@~0.6.1: 956 | version "0.6.1" 957 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 958 | 959 | form-data@~2.1.1: 960 | version "2.1.4" 961 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 962 | dependencies: 963 | asynckit "^0.4.0" 964 | combined-stream "^1.0.5" 965 | mime-types "^2.1.12" 966 | 967 | fs-readdir-recursive@^1.0.0: 968 | version "1.0.0" 969 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 970 | 971 | fs.realpath@^1.0.0: 972 | version "1.0.0" 973 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 974 | 975 | fsevents@^1.0.0: 976 | version "1.1.1" 977 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff" 978 | dependencies: 979 | nan "^2.3.0" 980 | node-pre-gyp "^0.6.29" 981 | 982 | fstream-ignore@^1.0.5: 983 | version "1.0.5" 984 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 985 | dependencies: 986 | fstream "^1.0.0" 987 | inherits "2" 988 | minimatch "^3.0.0" 989 | 990 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 991 | version "1.0.11" 992 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 993 | dependencies: 994 | graceful-fs "^4.1.2" 995 | inherits "~2.0.0" 996 | mkdirp ">=0.5 0" 997 | rimraf "2" 998 | 999 | gauge@~2.7.1: 1000 | version "2.7.3" 1001 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.3.tgz#1c23855f962f17b3ad3d0dc7443f304542edfe09" 1002 | dependencies: 1003 | aproba "^1.0.3" 1004 | console-control-strings "^1.0.0" 1005 | has-unicode "^2.0.0" 1006 | object-assign "^4.1.0" 1007 | signal-exit "^3.0.0" 1008 | string-width "^1.0.1" 1009 | strip-ansi "^3.0.1" 1010 | wide-align "^1.1.0" 1011 | 1012 | getpass@^0.1.1: 1013 | version "0.1.6" 1014 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 1015 | dependencies: 1016 | assert-plus "^1.0.0" 1017 | 1018 | glob-base@^0.3.0: 1019 | version "0.3.0" 1020 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1021 | dependencies: 1022 | glob-parent "^2.0.0" 1023 | is-glob "^2.0.0" 1024 | 1025 | glob-parent@^2.0.0: 1026 | version "2.0.0" 1027 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1028 | dependencies: 1029 | is-glob "^2.0.0" 1030 | 1031 | glob@7.0.5, glob@^7.0.0, glob@^7.0.5: 1032 | version "7.0.5" 1033 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.0.5.tgz#b4202a69099bbb4d292a7c1b95b6682b67ebdc95" 1034 | dependencies: 1035 | fs.realpath "^1.0.0" 1036 | inflight "^1.0.4" 1037 | inherits "2" 1038 | minimatch "^3.0.2" 1039 | once "^1.3.0" 1040 | path-is-absolute "^1.0.0" 1041 | 1042 | globals@^9.0.0: 1043 | version "9.17.0" 1044 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 1045 | 1046 | graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1047 | version "4.1.11" 1048 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1049 | 1050 | "graceful-readlink@>= 1.0.0": 1051 | version "1.0.1" 1052 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1053 | 1054 | growl@1.9.2: 1055 | version "1.9.2" 1056 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f" 1057 | 1058 | har-schema@^1.0.5: 1059 | version "1.0.5" 1060 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1061 | 1062 | har-validator@~4.2.1: 1063 | version "4.2.1" 1064 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1065 | dependencies: 1066 | ajv "^4.9.1" 1067 | har-schema "^1.0.5" 1068 | 1069 | has-ansi@^2.0.0: 1070 | version "2.0.0" 1071 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1072 | dependencies: 1073 | ansi-regex "^2.0.0" 1074 | 1075 | has-flag@^1.0.0: 1076 | version "1.0.0" 1077 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1078 | 1079 | has-unicode@^2.0.0: 1080 | version "2.0.1" 1081 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1082 | 1083 | hawk@~3.1.3: 1084 | version "3.1.3" 1085 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1086 | dependencies: 1087 | boom "2.x.x" 1088 | cryptiles "2.x.x" 1089 | hoek "2.x.x" 1090 | sntp "1.x.x" 1091 | 1092 | hoek@2.x.x: 1093 | version "2.16.3" 1094 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1095 | 1096 | hoist-non-react-statics@^1.0.3: 1097 | version "1.2.0" 1098 | resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-1.2.0.tgz#aa448cf0986d55cc40773b17174b7dd066cb7cfb" 1099 | 1100 | home-or-tmp@^2.0.0: 1101 | version "2.0.0" 1102 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1103 | dependencies: 1104 | os-homedir "^1.0.0" 1105 | os-tmpdir "^1.0.1" 1106 | 1107 | http-signature@~1.1.0: 1108 | version "1.1.1" 1109 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1110 | dependencies: 1111 | assert-plus "^0.2.0" 1112 | jsprim "^1.2.2" 1113 | sshpk "^1.7.0" 1114 | 1115 | iconv-lite@~0.4.13: 1116 | version "0.4.15" 1117 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.15.tgz#fe265a218ac6a57cfe854927e9d04c19825eddeb" 1118 | 1119 | inflight@^1.0.4: 1120 | version "1.0.6" 1121 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1122 | dependencies: 1123 | once "^1.3.0" 1124 | wrappy "1" 1125 | 1126 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1: 1127 | version "2.0.3" 1128 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1129 | 1130 | ini@~1.3.0: 1131 | version "1.3.4" 1132 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1133 | 1134 | invariant@^2.0.0, invariant@^2.2.0: 1135 | version "2.2.2" 1136 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1137 | dependencies: 1138 | loose-envify "^1.0.0" 1139 | 1140 | is-binary-path@^1.0.0: 1141 | version "1.0.1" 1142 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1143 | dependencies: 1144 | binary-extensions "^1.0.0" 1145 | 1146 | is-buffer@^1.0.2: 1147 | version "1.1.5" 1148 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1149 | 1150 | is-dotfile@^1.0.0: 1151 | version "1.0.2" 1152 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1153 | 1154 | is-equal-shallow@^0.1.3: 1155 | version "0.1.3" 1156 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1157 | dependencies: 1158 | is-primitive "^2.0.0" 1159 | 1160 | is-extendable@^0.1.1: 1161 | version "0.1.1" 1162 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1163 | 1164 | is-extglob@^1.0.0: 1165 | version "1.0.0" 1166 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1167 | 1168 | is-finite@^1.0.0: 1169 | version "1.0.2" 1170 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1171 | dependencies: 1172 | number-is-nan "^1.0.0" 1173 | 1174 | is-fullwidth-code-point@^1.0.0: 1175 | version "1.0.0" 1176 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1177 | dependencies: 1178 | number-is-nan "^1.0.0" 1179 | 1180 | is-glob@^2.0.0, is-glob@^2.0.1: 1181 | version "2.0.1" 1182 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1183 | dependencies: 1184 | is-extglob "^1.0.0" 1185 | 1186 | is-number@^2.0.2, is-number@^2.1.0: 1187 | version "2.1.0" 1188 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1189 | dependencies: 1190 | kind-of "^3.0.2" 1191 | 1192 | is-posix-bracket@^0.1.0: 1193 | version "0.1.1" 1194 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1195 | 1196 | is-primitive@^2.0.0: 1197 | version "2.0.0" 1198 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1199 | 1200 | is-stream@^1.0.1: 1201 | version "1.1.0" 1202 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1203 | 1204 | is-typedarray@~1.0.0: 1205 | version "1.0.0" 1206 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1207 | 1208 | isarray@1.0.0, isarray@~1.0.0: 1209 | version "1.0.0" 1210 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1211 | 1212 | isobject@^2.0.0: 1213 | version "2.1.0" 1214 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1215 | dependencies: 1216 | isarray "1.0.0" 1217 | 1218 | isomorphic-fetch@^2.1.1: 1219 | version "2.2.1" 1220 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" 1221 | dependencies: 1222 | node-fetch "^1.0.1" 1223 | whatwg-fetch ">=0.10.0" 1224 | 1225 | isstream@~0.1.2: 1226 | version "0.1.2" 1227 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1228 | 1229 | jodid25519@^1.0.0: 1230 | version "1.0.2" 1231 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 1232 | dependencies: 1233 | jsbn "~0.1.0" 1234 | 1235 | js-tokens@^3.0.0: 1236 | version "3.0.1" 1237 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 1238 | 1239 | jsbn@~0.1.0: 1240 | version "0.1.1" 1241 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1242 | 1243 | jsesc@^1.3.0: 1244 | version "1.3.0" 1245 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1246 | 1247 | jsesc@~0.5.0: 1248 | version "0.5.0" 1249 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1250 | 1251 | json-schema@0.2.3: 1252 | version "0.2.3" 1253 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1254 | 1255 | json-stable-stringify@^1.0.1: 1256 | version "1.0.1" 1257 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1258 | dependencies: 1259 | jsonify "~0.0.0" 1260 | 1261 | json-stringify-safe@~5.0.1: 1262 | version "5.0.1" 1263 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1264 | 1265 | json3@3.3.2: 1266 | version "3.3.2" 1267 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 1268 | 1269 | json5@^0.5.0: 1270 | version "0.5.1" 1271 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1272 | 1273 | jsonify@~0.0.0: 1274 | version "0.0.0" 1275 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1276 | 1277 | jsprim@^1.2.2: 1278 | version "1.4.0" 1279 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 1280 | dependencies: 1281 | assert-plus "1.0.0" 1282 | extsprintf "1.0.2" 1283 | json-schema "0.2.3" 1284 | verror "1.3.6" 1285 | 1286 | kind-of@^3.0.2: 1287 | version "3.1.0" 1288 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" 1289 | dependencies: 1290 | is-buffer "^1.0.2" 1291 | 1292 | lodash-es@^4.2.0, lodash-es@^4.2.1: 1293 | version "4.17.4" 1294 | resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.4.tgz#dcc1d7552e150a0640073ba9cb31d70f032950e7" 1295 | 1296 | lodash._baseassign@^3.0.0: 1297 | version "3.2.0" 1298 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 1299 | dependencies: 1300 | lodash._basecopy "^3.0.0" 1301 | lodash.keys "^3.0.0" 1302 | 1303 | lodash._basecopy@^3.0.0: 1304 | version "3.0.1" 1305 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 1306 | 1307 | lodash._basecreate@^3.0.0: 1308 | version "3.0.3" 1309 | resolved "https://registry.yarnpkg.com/lodash._basecreate/-/lodash._basecreate-3.0.3.tgz#1bc661614daa7fc311b7d03bf16806a0213cf821" 1310 | 1311 | lodash._getnative@^3.0.0: 1312 | version "3.9.1" 1313 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 1314 | 1315 | lodash._isiterateecall@^3.0.0: 1316 | version "3.0.9" 1317 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 1318 | 1319 | lodash.create@3.1.1: 1320 | version "3.1.1" 1321 | resolved "https://registry.yarnpkg.com/lodash.create/-/lodash.create-3.1.1.tgz#d7f2849f0dbda7e04682bb8cd72ab022461debe7" 1322 | dependencies: 1323 | lodash._baseassign "^3.0.0" 1324 | lodash._basecreate "^3.0.0" 1325 | lodash._isiterateecall "^3.0.0" 1326 | 1327 | lodash.isarguments@^3.0.0: 1328 | version "3.1.0" 1329 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 1330 | 1331 | lodash.isarray@^3.0.0: 1332 | version "3.0.4" 1333 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 1334 | 1335 | lodash.keys@^3.0.0: 1336 | version "3.1.2" 1337 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 1338 | dependencies: 1339 | lodash._getnative "^3.0.0" 1340 | lodash.isarguments "^3.0.0" 1341 | lodash.isarray "^3.0.0" 1342 | 1343 | lodash@^4.2.0, lodash@^4.2.1: 1344 | version "4.17.4" 1345 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1346 | 1347 | loose-envify@^1.0.0, loose-envify@^1.1.0: 1348 | version "1.3.1" 1349 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1350 | dependencies: 1351 | js-tokens "^3.0.0" 1352 | 1353 | micromatch@^2.1.5: 1354 | version "2.3.11" 1355 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1356 | dependencies: 1357 | arr-diff "^2.0.0" 1358 | array-unique "^0.2.1" 1359 | braces "^1.8.2" 1360 | expand-brackets "^0.1.4" 1361 | extglob "^0.3.1" 1362 | filename-regex "^2.0.0" 1363 | is-extglob "^1.0.0" 1364 | is-glob "^2.0.1" 1365 | kind-of "^3.0.2" 1366 | normalize-path "^2.0.1" 1367 | object.omit "^2.0.0" 1368 | parse-glob "^3.0.4" 1369 | regex-cache "^0.4.2" 1370 | 1371 | mime-db@~1.27.0: 1372 | version "1.27.0" 1373 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 1374 | 1375 | mime-types@^2.1.12, mime-types@~2.1.7: 1376 | version "2.1.15" 1377 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 1378 | dependencies: 1379 | mime-db "~1.27.0" 1380 | 1381 | minimatch@^3.0.0, minimatch@^3.0.2: 1382 | version "3.0.3" 1383 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 1384 | dependencies: 1385 | brace-expansion "^1.0.0" 1386 | 1387 | minimist@0.0.8: 1388 | version "0.0.8" 1389 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1390 | 1391 | minimist@^1.2.0: 1392 | version "1.2.0" 1393 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1394 | 1395 | mkdirp@0.5.1, "mkdirp@>=0.5 0", mkdirp@^0.5.1: 1396 | version "0.5.1" 1397 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1398 | dependencies: 1399 | minimist "0.0.8" 1400 | 1401 | mocha@~3.2.0: 1402 | version "3.2.0" 1403 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-3.2.0.tgz#7dc4f45e5088075171a68896814e6ae9eb7a85e3" 1404 | dependencies: 1405 | browser-stdout "1.3.0" 1406 | commander "2.9.0" 1407 | debug "2.2.0" 1408 | diff "1.4.0" 1409 | escape-string-regexp "1.0.5" 1410 | glob "7.0.5" 1411 | growl "1.9.2" 1412 | json3 "3.3.2" 1413 | lodash.create "3.1.1" 1414 | mkdirp "0.5.1" 1415 | supports-color "3.1.2" 1416 | 1417 | ms@0.7.1: 1418 | version "0.7.1" 1419 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 1420 | 1421 | ms@0.7.2: 1422 | version "0.7.2" 1423 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 1424 | 1425 | nan@^2.3.0: 1426 | version "2.6.2" 1427 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45" 1428 | 1429 | node-fetch@^1.0.1: 1430 | version "1.6.3" 1431 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.6.3.tgz#dc234edd6489982d58e8f0db4f695029abcd8c04" 1432 | dependencies: 1433 | encoding "^0.1.11" 1434 | is-stream "^1.0.1" 1435 | 1436 | node-pre-gyp@^0.6.29: 1437 | version "0.6.34" 1438 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.34.tgz#94ad1c798a11d7fc67381b50d47f8cc18d9799f7" 1439 | dependencies: 1440 | mkdirp "^0.5.1" 1441 | nopt "^4.0.1" 1442 | npmlog "^4.0.2" 1443 | rc "^1.1.7" 1444 | request "^2.81.0" 1445 | rimraf "^2.6.1" 1446 | semver "^5.3.0" 1447 | tar "^2.2.1" 1448 | tar-pack "^3.4.0" 1449 | 1450 | nopt@^4.0.1: 1451 | version "4.0.1" 1452 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1453 | dependencies: 1454 | abbrev "1" 1455 | osenv "^0.1.4" 1456 | 1457 | normalize-path@^2.0.1: 1458 | version "2.1.1" 1459 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1460 | dependencies: 1461 | remove-trailing-separator "^1.0.1" 1462 | 1463 | npmlog@^4.0.2: 1464 | version "4.0.2" 1465 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f" 1466 | dependencies: 1467 | are-we-there-yet "~1.1.2" 1468 | console-control-strings "~1.1.0" 1469 | gauge "~2.7.1" 1470 | set-blocking "~2.0.0" 1471 | 1472 | number-is-nan@^1.0.0: 1473 | version "1.0.1" 1474 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1475 | 1476 | oauth-sign@~0.8.1: 1477 | version "0.8.2" 1478 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1479 | 1480 | object-assign@^4.1.0, object-assign@^4.1.1: 1481 | version "4.1.1" 1482 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1483 | 1484 | object.omit@^2.0.0: 1485 | version "2.0.1" 1486 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1487 | dependencies: 1488 | for-own "^0.1.4" 1489 | is-extendable "^0.1.1" 1490 | 1491 | once@^1.3.0, once@^1.3.3: 1492 | version "1.4.0" 1493 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1494 | dependencies: 1495 | wrappy "1" 1496 | 1497 | os-homedir@^1.0.0: 1498 | version "1.0.2" 1499 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1500 | 1501 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 1502 | version "1.0.2" 1503 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1504 | 1505 | osenv@^0.1.4: 1506 | version "0.1.4" 1507 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 1508 | dependencies: 1509 | os-homedir "^1.0.0" 1510 | os-tmpdir "^1.0.0" 1511 | 1512 | output-file-sync@^1.1.0: 1513 | version "1.1.2" 1514 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 1515 | dependencies: 1516 | graceful-fs "^4.1.4" 1517 | mkdirp "^0.5.1" 1518 | object-assign "^4.1.0" 1519 | 1520 | parse-glob@^3.0.4: 1521 | version "3.0.4" 1522 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1523 | dependencies: 1524 | glob-base "^0.3.0" 1525 | is-dotfile "^1.0.0" 1526 | is-extglob "^1.0.0" 1527 | is-glob "^2.0.0" 1528 | 1529 | path-is-absolute@^1.0.0: 1530 | version "1.0.1" 1531 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1532 | 1533 | performance-now@^0.2.0: 1534 | version "0.2.0" 1535 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 1536 | 1537 | preserve@^0.2.0: 1538 | version "0.2.0" 1539 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1540 | 1541 | private@^0.1.6: 1542 | version "0.1.7" 1543 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 1544 | 1545 | process-nextick-args@~1.0.6: 1546 | version "1.0.7" 1547 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1548 | 1549 | promise@^7.1.1: 1550 | version "7.1.1" 1551 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.1.1.tgz#489654c692616b8aa55b0724fa809bb7db49c5bf" 1552 | dependencies: 1553 | asap "~2.0.3" 1554 | 1555 | prop-types@^15.0.0, prop-types@^15.5.7: 1556 | version "15.5.8" 1557 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.5.8.tgz#6b7b2e141083be38c8595aa51fc55775c7199394" 1558 | dependencies: 1559 | fbjs "^0.8.9" 1560 | 1561 | punycode@^1.4.1: 1562 | version "1.4.1" 1563 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1564 | 1565 | qs@~6.4.0: 1566 | version "6.4.0" 1567 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 1568 | 1569 | randomatic@^1.1.3: 1570 | version "1.1.6" 1571 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 1572 | dependencies: 1573 | is-number "^2.0.2" 1574 | kind-of "^3.0.2" 1575 | 1576 | rc@^1.1.7: 1577 | version "1.2.1" 1578 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 1579 | dependencies: 1580 | deep-extend "~0.4.0" 1581 | ini "~1.3.0" 1582 | minimist "^1.2.0" 1583 | strip-json-comments "~2.0.1" 1584 | 1585 | react-redux@~5.0.4: 1586 | version "5.0.4" 1587 | resolved "https://registry.yarnpkg.com/react-redux/-/react-redux-5.0.4.tgz#1563babadcfb2672f57f9ceaa439fb16bf85d55b" 1588 | dependencies: 1589 | create-react-class "^15.5.1" 1590 | hoist-non-react-statics "^1.0.3" 1591 | invariant "^2.0.0" 1592 | lodash "^4.2.0" 1593 | lodash-es "^4.2.0" 1594 | loose-envify "^1.1.0" 1595 | prop-types "^15.0.0" 1596 | 1597 | react@~15.5.4: 1598 | version "15.5.4" 1599 | resolved "https://registry.yarnpkg.com/react/-/react-15.5.4.tgz#fa83eb01506ab237cdc1c8c3b1cea8de012bf047" 1600 | dependencies: 1601 | fbjs "^0.8.9" 1602 | loose-envify "^1.1.0" 1603 | object-assign "^4.1.0" 1604 | prop-types "^15.5.7" 1605 | 1606 | "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.2, readable-stream@^2.1.4: 1607 | version "2.2.9" 1608 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.9.tgz#cf78ec6f4a6d1eb43d26488cac97f042e74b7fc8" 1609 | dependencies: 1610 | buffer-shims "~1.0.0" 1611 | core-util-is "~1.0.0" 1612 | inherits "~2.0.1" 1613 | isarray "~1.0.0" 1614 | process-nextick-args "~1.0.6" 1615 | string_decoder "~1.0.0" 1616 | util-deprecate "~1.0.1" 1617 | 1618 | readdirp@^2.0.0: 1619 | version "2.1.0" 1620 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 1621 | dependencies: 1622 | graceful-fs "^4.1.2" 1623 | minimatch "^3.0.2" 1624 | readable-stream "^2.0.2" 1625 | set-immediate-shim "^1.0.1" 1626 | 1627 | redux@~3.6.0: 1628 | version "3.6.0" 1629 | resolved "https://registry.yarnpkg.com/redux/-/redux-3.6.0.tgz#887c2b3d0b9bd86eca2be70571c27654c19e188d" 1630 | dependencies: 1631 | lodash "^4.2.1" 1632 | lodash-es "^4.2.1" 1633 | loose-envify "^1.1.0" 1634 | symbol-observable "^1.0.2" 1635 | 1636 | regenerate@^1.2.1: 1637 | version "1.3.2" 1638 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 1639 | 1640 | regenerator-runtime@^0.10.0: 1641 | version "0.10.3" 1642 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.3.tgz#8c4367a904b51ea62a908ac310bf99ff90a82a3e" 1643 | 1644 | regenerator-transform@0.9.11: 1645 | version "0.9.11" 1646 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.11.tgz#3a7d067520cb7b7176769eb5ff868691befe1283" 1647 | dependencies: 1648 | babel-runtime "^6.18.0" 1649 | babel-types "^6.19.0" 1650 | private "^0.1.6" 1651 | 1652 | regex-cache@^0.4.2: 1653 | version "0.4.3" 1654 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 1655 | dependencies: 1656 | is-equal-shallow "^0.1.3" 1657 | is-primitive "^2.0.0" 1658 | 1659 | regexpu-core@^2.0.0: 1660 | version "2.0.0" 1661 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 1662 | dependencies: 1663 | regenerate "^1.2.1" 1664 | regjsgen "^0.2.0" 1665 | regjsparser "^0.1.4" 1666 | 1667 | regjsgen@^0.2.0: 1668 | version "0.2.0" 1669 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 1670 | 1671 | regjsparser@^0.1.4: 1672 | version "0.1.5" 1673 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 1674 | dependencies: 1675 | jsesc "~0.5.0" 1676 | 1677 | remove-trailing-separator@^1.0.1: 1678 | version "1.0.1" 1679 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" 1680 | 1681 | repeat-element@^1.1.2: 1682 | version "1.1.2" 1683 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1684 | 1685 | repeat-string@^1.5.2: 1686 | version "1.6.1" 1687 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1688 | 1689 | repeating@^2.0.0: 1690 | version "2.0.1" 1691 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1692 | dependencies: 1693 | is-finite "^1.0.0" 1694 | 1695 | request@^2.81.0: 1696 | version "2.81.0" 1697 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 1698 | dependencies: 1699 | aws-sign2 "~0.6.0" 1700 | aws4 "^1.2.1" 1701 | caseless "~0.12.0" 1702 | combined-stream "~1.0.5" 1703 | extend "~3.0.0" 1704 | forever-agent "~0.6.1" 1705 | form-data "~2.1.1" 1706 | har-validator "~4.2.1" 1707 | hawk "~3.1.3" 1708 | http-signature "~1.1.0" 1709 | is-typedarray "~1.0.0" 1710 | isstream "~0.1.2" 1711 | json-stringify-safe "~5.0.1" 1712 | mime-types "~2.1.7" 1713 | oauth-sign "~0.8.1" 1714 | performance-now "^0.2.0" 1715 | qs "~6.4.0" 1716 | safe-buffer "^5.0.1" 1717 | stringstream "~0.0.4" 1718 | tough-cookie "~2.3.0" 1719 | tunnel-agent "^0.6.0" 1720 | uuid "^3.0.0" 1721 | 1722 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1: 1723 | version "2.6.1" 1724 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 1725 | dependencies: 1726 | glob "^7.0.5" 1727 | 1728 | safe-buffer@^5.0.1: 1729 | version "5.0.1" 1730 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 1731 | 1732 | semver@^5.3.0: 1733 | version "5.3.0" 1734 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 1735 | 1736 | set-blocking@~2.0.0: 1737 | version "2.0.0" 1738 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1739 | 1740 | set-immediate-shim@^1.0.1: 1741 | version "1.0.1" 1742 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 1743 | 1744 | setimmediate@^1.0.5: 1745 | version "1.0.5" 1746 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 1747 | 1748 | signal-exit@^3.0.0: 1749 | version "3.0.2" 1750 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1751 | 1752 | slash@^1.0.0: 1753 | version "1.0.0" 1754 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 1755 | 1756 | sntp@1.x.x: 1757 | version "1.0.9" 1758 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 1759 | dependencies: 1760 | hoek "2.x.x" 1761 | 1762 | source-map-support@^0.4.2: 1763 | version "0.4.14" 1764 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.14.tgz#9d4463772598b86271b4f523f6c1f4e02a7d6aef" 1765 | dependencies: 1766 | source-map "^0.5.6" 1767 | 1768 | source-map@^0.5.0, source-map@^0.5.6: 1769 | version "0.5.6" 1770 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 1771 | 1772 | sshpk@^1.7.0: 1773 | version "1.13.0" 1774 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.0.tgz#ff2a3e4fd04497555fed97b39a0fd82fafb3a33c" 1775 | dependencies: 1776 | asn1 "~0.2.3" 1777 | assert-plus "^1.0.0" 1778 | dashdash "^1.12.0" 1779 | getpass "^0.1.1" 1780 | optionalDependencies: 1781 | bcrypt-pbkdf "^1.0.0" 1782 | ecc-jsbn "~0.1.1" 1783 | jodid25519 "^1.0.0" 1784 | jsbn "~0.1.0" 1785 | tweetnacl "~0.14.0" 1786 | 1787 | string-width@^1.0.1: 1788 | version "1.0.2" 1789 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1790 | dependencies: 1791 | code-point-at "^1.0.0" 1792 | is-fullwidth-code-point "^1.0.0" 1793 | strip-ansi "^3.0.0" 1794 | 1795 | string_decoder@~1.0.0: 1796 | version "1.0.0" 1797 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.0.tgz#f06f41157b664d86069f84bdbdc9b0d8ab281667" 1798 | dependencies: 1799 | buffer-shims "~1.0.0" 1800 | 1801 | stringstream@~0.0.4: 1802 | version "0.0.5" 1803 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 1804 | 1805 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1806 | version "3.0.1" 1807 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1808 | dependencies: 1809 | ansi-regex "^2.0.0" 1810 | 1811 | strip-json-comments@~2.0.1: 1812 | version "2.0.1" 1813 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1814 | 1815 | supports-color@3.1.2: 1816 | version "3.1.2" 1817 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" 1818 | dependencies: 1819 | has-flag "^1.0.0" 1820 | 1821 | supports-color@^2.0.0: 1822 | version "2.0.0" 1823 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1824 | 1825 | symbol-observable@^1.0.2: 1826 | version "1.0.4" 1827 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d" 1828 | 1829 | tar-pack@^3.4.0: 1830 | version "3.4.0" 1831 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 1832 | dependencies: 1833 | debug "^2.2.0" 1834 | fstream "^1.0.10" 1835 | fstream-ignore "^1.0.5" 1836 | once "^1.3.3" 1837 | readable-stream "^2.1.4" 1838 | rimraf "^2.5.1" 1839 | tar "^2.2.1" 1840 | uid-number "^0.0.6" 1841 | 1842 | tar@^2.2.1: 1843 | version "2.2.1" 1844 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 1845 | dependencies: 1846 | block-stream "*" 1847 | fstream "^1.0.2" 1848 | inherits "2" 1849 | 1850 | to-fast-properties@^1.0.1: 1851 | version "1.0.2" 1852 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 1853 | 1854 | tough-cookie@~2.3.0: 1855 | version "2.3.2" 1856 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 1857 | dependencies: 1858 | punycode "^1.4.1" 1859 | 1860 | trim-right@^1.0.1: 1861 | version "1.0.1" 1862 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 1863 | 1864 | tunnel-agent@^0.6.0: 1865 | version "0.6.0" 1866 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 1867 | dependencies: 1868 | safe-buffer "^5.0.1" 1869 | 1870 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 1871 | version "0.14.5" 1872 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 1873 | 1874 | type-detect@0.1.1: 1875 | version "0.1.1" 1876 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-0.1.1.tgz#0ba5ec2a885640e470ea4e8505971900dac58822" 1877 | 1878 | type-detect@^1.0.0: 1879 | version "1.0.0" 1880 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-1.0.0.tgz#762217cc06db258ec48908a1298e8b95121e8ea2" 1881 | 1882 | ua-parser-js@^0.7.9: 1883 | version "0.7.12" 1884 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.12.tgz#04c81a99bdd5dc52263ea29d24c6bf8d4818a4bb" 1885 | 1886 | uid-number@^0.0.6: 1887 | version "0.0.6" 1888 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 1889 | 1890 | user-home@^1.1.1: 1891 | version "1.1.1" 1892 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 1893 | 1894 | util-deprecate@~1.0.1: 1895 | version "1.0.2" 1896 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1897 | 1898 | uuid@^3.0.0: 1899 | version "3.0.1" 1900 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 1901 | 1902 | v8flags@^2.0.10: 1903 | version "2.1.1" 1904 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 1905 | dependencies: 1906 | user-home "^1.1.1" 1907 | 1908 | verror@1.3.6: 1909 | version "1.3.6" 1910 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 1911 | dependencies: 1912 | extsprintf "1.0.2" 1913 | 1914 | whatwg-fetch@>=0.10.0: 1915 | version "2.0.3" 1916 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84" 1917 | 1918 | wide-align@^1.1.0: 1919 | version "1.1.0" 1920 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 1921 | dependencies: 1922 | string-width "^1.0.1" 1923 | 1924 | wrappy@1: 1925 | version "1.0.2" 1926 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1927 | --------------------------------------------------------------------------------