├── .gitignore ├── .npmignore ├── LICENSE.md ├── README.md ├── index.d.ts ├── index.js ├── package.json ├── src ├── components.js ├── context.js ├── hooks.js └── shallow-compare.js ├── uss-logo.png ├── webpack.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | lib 4 | yarn-error.log 5 | .cache 6 | .DS_Store -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | yarn.lock 2 | yarn-error.log 3 | uss-logo.png 4 | src/ 5 | index.js 6 | webpack.config.js 7 | .cache 8 | .DS_Store -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | ===================== 3 | 4 | Copyright © `` `` 5 | 6 | Permission is hereby granted, free of charge, to any person 7 | obtaining a copy of this software and associated documentation 8 | files (the “Software”), to deal in the Software without 9 | restriction, including without limitation the rights to use, 10 | copy, modify, merge, publish, distribute, sublicense, and/or sell 11 | copies of the Software, and to permit persons to whom the 12 | Software is furnished to do so, subject to the following 13 | conditions: 14 | 15 | The above copyright notice and this permission notice shall be 16 | included in all copies or substantial portions of the Software. 17 | 18 | THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, 19 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 20 | OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 21 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 22 | HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 23 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 24 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 25 | OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 2 | 3 | A simple, lightweight (*3kb*), dependency-free state manager for React, built using hooks. 4 | 5 | *Note: requires react and react-dom @ 16.7.0-alpha.2 or higher* 6 | 7 | * [Installation](#installation) 8 | * [Getting Started](#getting-started) 9 | * [API](#api) 10 | 11 | ## Installation 12 | Install the package using yarn or npm: 13 | ``` 14 | yarn add use-simple-state 15 | npm install use-simple-state --save 16 | ``` 17 | 18 | ## Getting Started 19 | Before we get started, we first need an initial state, as well as some actions and at least one reducer: 20 | 21 | ```js 22 | const initialState = { count: 0 }; 23 | 24 | const addOne = () => ({ type: 'ADD_ONE' }); 25 | const minusOne = () => ({ type: 'MINUS_ONE' }); 26 | 27 | const countReducer = (state, action) => { 28 | switch (action.type) { 29 | case 'ADD_ONE': 30 | return { count: state.count + 1 }; 31 | case 'MINUS_ONE': 32 | return { count: state.count - 1 }; 33 | } 34 | ``` 35 | 36 | Lastly, we simply import `SimpleStateProvider`, pass our reducers and initial state, then wrap our app's root component: 37 | 38 | ```js 39 | import React from 'react'; 40 | import { SimpleStateProvider } from 'use-simple-state'; 41 | import App from './App'; 42 | 43 | export default function Root () { 44 | return ( 45 | 46 | 47 | 48 | ); 49 | } 50 | ``` 51 | 52 | And that's it. 53 | 54 | Now whenever we want to access or update our state, we just import the `useSimpleState` hook: 55 | 56 | ```js 57 | import React from 'react'; 58 | import { useSimpleState } from 'use-simple-state'; 59 | import { addOne, minusOne } from './store'; 60 | 61 | export default function Counter () { 62 | const [state, dispatch] = useSimpleState(); 63 | return ( 64 | <> 65 |

Count: {state.count}

66 | 67 | 68 | 69 | ); 70 | } 71 | ``` 72 | 73 | ## Caveat 74 | Hooks don't yet provide a way for us to bail out of rendering, *although it currently looks as though this may be added in a future release (you can [follow the dicussion here](https://github.com/facebook/react/issues/14110))*. 75 | 76 | In the meantime I've provided a `SimpleStateConsumer` to consume our state using a consumer similar to the default one returned by `React.createContext`. This means our connected components won't re-render on 77 | every state change, but rather will only update when the specific part of the store they're subscribed to changes. 78 | 79 | ```js 80 | import { SimpleStateConsumer } from 'use-simple-state'; 81 | 82 | export default function Counter () { 83 | return ( 84 | ({ count })}> 85 | {({ state, dispatch }) => ( 86 | <> 87 |

Count: {state.count}

88 | 89 | 90 | 91 | )} 92 |
93 | ); 94 | } 95 | ``` 96 | 97 | ## Async Actions 98 | Comes with built-in support for asynchronous actions by providing an API similar to `redux-thunk`. 99 | 100 | If a function is passed to `dispatch` it will be called with `dispatch` and `state` as parameters. This allows us to handle async tasks, like the following example of an action used to authenticate a user: 101 | 102 | ```js 103 | // Some synchronous actions 104 | const logInRequest = () => ({ type: 'LOG_IN_REQUEST' }); 105 | const logInSuccess = ({ user }) => ({ type: 'LOG_IN_SUCCESS', payload: user }); 106 | const logInError = ({ error }) => ({ type: 'LOG_IN_ERROR', payload: error }); 107 | 108 | // Our asynchronous action 109 | const logIn = ({ email, password }) => async (dispatch, state) => { 110 | dispatch(logInRequest()); 111 | try { 112 | const user = await api.authenticateUser({ email, password }); 113 | dispatch(logInSuccess({ user })); 114 | } catch (error) { 115 | dispatch(logInError({ error })); 116 | } 117 | }; 118 | 119 | // Dispatch logIn like any other action 120 | dispatch(logIn({ email, password })); 121 | ``` 122 | 123 | *Note: `dispatch` will return the result of any async actions, opening up possibilities like chaining promises from `dispatch`*: 124 | 125 | ```js 126 | dispatch(logIn({ email, password })).then(() => { 127 | // Do stuff... 128 | }); 129 | ``` 130 | 131 | ## API 132 | ### `useSimpleState` 133 | A custom [React hook](https://reactjs.org/docs/hooks-intro.html) that lets us access our state and `dispatch` function from inside components. 134 | 135 | ```js 136 | useSimpleState(mapState?: Function, mapDispatch?: Function): Array 137 | ``` 138 | 139 | ###### Usage: 140 | ```js 141 | const [state, dispatch] = useSimpleState(); 142 | ``` 143 | 144 | Returns an array containing a `state` object and a `dispatch` function. 145 | 146 | `useSimpleState` has two optional parameters: `mapState` and `mapDispatch`: 147 | 148 | ##### `mapState` 149 | If `mapState` is passed, it will be used to compute the output state and the result will be passed to the first element of the array returned by `useSimpleState`. 150 | 151 | ```js 152 | mapState(state: Object): Object 153 | ``` 154 | 155 | ###### Usage 156 | ```js 157 | const mapState = state => ({ total: state.countA + state.countB }); 158 | const [computedState, dispatch] = useSimpleState(mapState); 159 | ``` 160 | 161 | *Note: `null` can also be passed if you want to use `mapDispatch` but have no use for a `mapState` function.* 162 | 163 | ##### `mapDispatch` 164 | `mapDispatch` can be used to pre-wrap actions in `dispatch`. If `mapDispatch` is passed, the result will be given as the second element of the array returned by `useSimpleState`. 165 | 166 | ```js 167 | mapDispatch(dispatch: Function): * 168 | ``` 169 | 170 | ###### Usage 171 | ```js 172 | const mapDispatch = dispatch => ({ 173 | dispatchA: () => dispatch(actionA()), 174 | dispatchB: () => dispatch(actionB()), 175 | dispatchC: () => dispatch(actionC()) 176 | }); 177 | const [state, computedDispatch] = useSimpleState(null, mapDispatch); 178 | 179 | computedDispatch.dispatchA(); 180 | ``` 181 | 182 | ### `SimpleStateProvider` 183 | A React component that wraps an app's root component and makes state available to our React app. 184 | 185 | ###### Usage 186 | ```js 187 | const Root = () => ( 188 | 189 | 190 | 191 | ); 192 | ``` 193 | 194 | Has two mandatory props: `initialState` and `reducers`, as well as an optional prop: `middleware` 195 | 196 | ##### `initialState` 197 | An object representing the initial state of our app. 198 | 199 | ##### `reducers` 200 | An array of reducers. 201 | 202 | Reducers take an action as well as the current state and use these to derive a new state. If a reducer returns `undefined` there will be no state update. 203 | 204 | Reducers should have the following API: 205 | ```js 206 | (state, action) => nextState 207 | ``` 208 | 209 | ##### `middleware` 210 | 211 | An array of middleware functions. 212 | 213 | Middleware functions are used to handle side effects in our app. 214 | 215 | A middleware function is given two parameters: `state` and `action`. 216 | 217 | If any middleware returns `null`, the triggering `action` will be blocked from reaching our `reducers` and the state will not be updated. 218 | 219 | ###### Usage 220 | ```js 221 | function myMiddleware (action, state) { 222 | if (action.type === 'ADD') { 223 | console.log(`${state.count} + ${action.payload} = ${state.count + action.payload}`); 224 | } 225 | } 226 | ``` 227 | 228 | ### `SimpleStateConsumer` 229 | A React component that is used to access the state context with a similar API to the `useSimpleState` hook. 230 | 231 | *Note: this component is a temporary workaround to be used until hooks are able to bail us out of the rendering process.* 232 | 233 | ###### Usage 234 | ```js 235 | const Greeting = () => ( 236 | 237 | {({ state, dispatch }) => ( 238 | <> 239 |

{state.greeting}

240 | 241 | 242 | )} 243 |
244 | ); 245 | ``` 246 | 247 | Has two optional props: `mapState` and `mapDispatch`. Use of `mapState` is strongly encouraged so that each consumer only 248 | subscribes to specific changes in the state. If no `mapState` is passed, your consumer will re-render on every single state change. 249 | 250 | The following props are identical to those of `useSimpleState`. 251 | 252 | ##### `mapState` 253 | If `mapState` is passed, it will be used to compute the output state and the result will be passed to the `state` key of `SimpleStateConsumer`'s render prop. 254 | 255 | ```js 256 | mapState(state: Object): Object 257 | ``` 258 | 259 | ###### Usage 260 | ```js 261 | const mapState = state => ({ total: state.countA + state.countB }); 262 | 263 | const Total = () => ( 264 | 265 | {({ state }) => ( 266 | Total: {state.total} 267 | )} 268 | 269 | ); 270 | ``` 271 | 272 | ##### `mapDispatch` 273 | `mapDispatch` can be used to pre-wrap actions in `dispatch`. If `mapDispatch` is passed, the result will be passed to the `dispatch` property of `SimpleStateConsumer`'s render prop. 274 | 275 | ```js 276 | mapDispatch(dispatch: Function): * 277 | ``` 278 | 279 | ###### Usage 280 | ```js 281 | const mapDispatch = dispatch => ({ 282 | dispatchA: () => dispatch(actionA()), 283 | dispatchB: () => dispatch(actionB()), 284 | dispatchC: () => dispatch(actionC()) 285 | }); 286 | 287 | const Dispatcher = () => ( 288 | 289 | {({ dispatch }) => ( 290 | <> 291 | 292 | 293 | 294 | 295 | )} 296 | 297 | ); 298 | ``` 299 | 300 | -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- 1 | interface IAction { 2 | type: any; 3 | payload?: any; 4 | } 5 | 6 | type IReducer = ( 7 | state: State, 8 | action: Action 9 | ) => State; 10 | 11 | type IMiddleware = ( 12 | action: Action, 13 | state: State 14 | ) => void | null; 15 | 16 | type IDispatch = (action: Action) => void; 17 | type IMappedDispatch = { [key: string]: () => void }; 18 | 19 | interface IProviderProps { 20 | initialState: State; 21 | reducers: IReducer[]; 22 | middleware?: IMiddleware[]; 23 | children?: React.ReactElement | React.ReactElement[]; 24 | } 25 | 26 | interface IConsumerProps< 27 | State = unknown, 28 | MappedState = State, 29 | MappedDispatch extends IMappedDispatch = {} 30 | > { 31 | mapState?: (state: State) => MappedState; 32 | mapDispatch?: (dispatch: IDispatch) => MappedDispatch; 33 | children: React.FunctionComponent<{ 34 | state: MappedState; 35 | dispatch: MappedDispatch; 36 | }>; 37 | } 38 | 39 | declare module "use-simple-state" { 40 | import React from "react"; 41 | 42 | export function SimpleStateProvider( 43 | props: IProviderProps 44 | ): React.FunctionComponentElement>>; 45 | 46 | export function SimpleStateConsumer( 47 | props: IConsumerProps 48 | ): React.FunctionComponentElement< 49 | React.ConsumerProps> 50 | >; 51 | 52 | export function useSimpleState< 53 | State = unknown, 54 | Action = unknown, 55 | MappedState = State, 56 | MappedDispatch extends IMappedDispatch = {} 57 | >( 58 | mapState?: (state: State) => MappedState, 59 | mapDispatch?: (dispatch: IDispatch) => MappedDispatch 60 | ): [MappedState, MappedDispatch]; 61 | } 62 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | export { StateContext } from './src/context'; 2 | export { useSimpleState } from './src/hooks'; 3 | export { SimpleStateProvider, SimpleStateConsumer } from './src/components'; 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "use-simple-state", 3 | "version": "0.0.32", 4 | "description": "A simple, dependency-free state manager for React using hooks.", 5 | "scripts": { 6 | "build": "webpack --config webpack.config.js", 7 | "release": "yarn build && yarn publish" 8 | }, 9 | "main": "lib/main.js", 10 | "typings": "lib/main.d.ts", 11 | "author": "Josh Jahans", 12 | "license": "MIT", 13 | "private": false, 14 | "keywords": [ 15 | "react", 16 | "state", 17 | "simple", 18 | "hooks", 19 | "redux" 20 | ], 21 | "peerDependencies": { 22 | "react": "^16.7.0" 23 | }, 24 | "devDependencies": { 25 | "@babel/core": "^7.2.0", 26 | "@babel/plugin-proposal-class-properties": "^7.2.1", 27 | "babel-loader": "^8.0.4", 28 | "copy-webpack-plugin": "^5.0.5", 29 | "typescript": "^3.7.3", 30 | "webpack": "^4.27.1", 31 | "webpack-cli": "^3.1.2" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /src/components.js: -------------------------------------------------------------------------------- 1 | import { createElement, Component } from 'react'; 2 | import { StateContext } from './context'; 3 | import { useStateProvider } from './hooks'; 4 | import { shallowCompare } from './shallow-compare'; 5 | 6 | export function SimpleStateProvider ({ initialState, reducers, middleware, children }) { 7 | return createElement( 8 | StateContext.Provider, 9 | { value: useStateProvider({ initialState, reducers, middleware }) }, 10 | children 11 | ); 12 | } 13 | 14 | export function SimpleStateConsumer ({ mapState, mapDispatch, children }) { 15 | return createElement( 16 | StateContext.Consumer, 17 | null, 18 | ({ state, dispatch }) => createElement( 19 | ConnectState, 20 | { state, dispatch, mapState, mapDispatch }, 21 | children 22 | ) 23 | ); 24 | } 25 | 26 | class ConnectState extends Component { 27 | state = {}; 28 | 29 | static getDerivedStateFromProps ({ state, mapState = s => s }) { 30 | return mapState(state); 31 | } 32 | 33 | shouldComponentUpdate (nextProps, nextState) { 34 | return shallowCompare(this.state, nextState); 35 | } 36 | 37 | render () { 38 | return this.props.children({ 39 | state: this.state, 40 | dispatch: this.props.mapDispatch ? this.props.mapDispatch(this.props.dispatch) : this.props.dispatch 41 | }); 42 | } 43 | } -------------------------------------------------------------------------------- /src/context.js: -------------------------------------------------------------------------------- 1 | import { createContext } from 'react'; 2 | 3 | export const StateContext = createContext(null); -------------------------------------------------------------------------------- /src/hooks.js: -------------------------------------------------------------------------------- 1 | import { useContext, useReducer } from 'react'; 2 | import { StateContext } from './context'; 3 | 4 | export function useSimpleState (mapState, mapDispatch) { 5 | const { state, dispatch } = useContext(StateContext); 6 | return [ 7 | mapState ? mapState(state) : state, 8 | mapDispatch ? mapDispatch(dispatch) : dispatch 9 | ]; 10 | } 11 | 12 | function reduceState (reducers, state, action) { 13 | return reducers.reduce((nextState, reducer) => reducer(nextState, action) || nextState, state); 14 | } 15 | 16 | export function useStateProvider ({ initialState, reducers, middleware = [] }) { 17 | const [state, _dispatch] = useReducer((state, action) => reduceState(reducers, state, action), initialState); 18 | 19 | function dispatch (action) { 20 | if (typeof action === 'function') { 21 | return action(dispatch, state); 22 | } 23 | 24 | const continueUpdate = middleware.reduce((result, middleware) => { 25 | return result !== null ? middleware(action, state, () => reduceState(reducers, state, action)) : result; 26 | }, undefined); 27 | 28 | if (continueUpdate !== null) { 29 | _dispatch(action); 30 | } 31 | } 32 | 33 | return { state, dispatch }; 34 | } -------------------------------------------------------------------------------- /src/shallow-compare.js: -------------------------------------------------------------------------------- 1 | export function shallowCompare (state, nextState) { 2 | if ( 3 | typeof state !== 'object' 4 | || state === null 5 | || typeof nextState !== 'object' 6 | || nextState === null 7 | ) { 8 | return true; 9 | } 10 | 11 | for (const [key, value] of Object.entries(nextState)) { 12 | if (value !== state[key]) { 13 | return true; 14 | } 15 | } 16 | 17 | return false; 18 | } -------------------------------------------------------------------------------- /uss-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jahans3/use-simple-state/e49d98fbdf43304b14b3fac3898d61b32e0aedfb/uss-logo.png -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- 1 | const path = require('path'); 2 | const webpack = require('webpack'); 3 | const CopyPlugin = require('copy-webpack-plugin'); 4 | 5 | module.exports = { 6 | mode: 'production', 7 | entry: './index.js', 8 | output: { 9 | path: path.resolve(__dirname, 'lib'), 10 | filename: 'main.js', 11 | library: 'use-simple-state', 12 | libraryTarget: 'umd', 13 | umdNamedDefine: true 14 | }, 15 | module: { 16 | rules: [ 17 | { 18 | test: /\.js$/, 19 | exclude: /(node_modules|bower_components)/, 20 | use: { 21 | loader: 'babel-loader', 22 | options: { 23 | plugins: ['@babel/plugin-proposal-class-properties'] 24 | } 25 | } 26 | } 27 | ] 28 | }, 29 | plugins: [new CopyPlugin([{ from: './index.d.ts', to: './main.d.ts' }])], 30 | externals: { 31 | react: { 32 | root: 'React', 33 | commonjs2: 'react', 34 | commonjs: 'react', 35 | amd: 'react', 36 | umd: 'react' 37 | } 38 | } 39 | }; 40 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.0.0": 6 | version "7.0.0" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0.tgz#06e2ab19bdb535385559aabb5ba59729482800f8" 8 | dependencies: 9 | "@babel/highlight" "^7.0.0" 10 | 11 | "@babel/core@^7.2.0": 12 | version "7.2.0" 13 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.2.0.tgz#a4dd3814901998e93340f0086e9867fefa163ada" 14 | dependencies: 15 | "@babel/code-frame" "^7.0.0" 16 | "@babel/generator" "^7.2.0" 17 | "@babel/helpers" "^7.2.0" 18 | "@babel/parser" "^7.2.0" 19 | "@babel/template" "^7.1.2" 20 | "@babel/traverse" "^7.1.6" 21 | "@babel/types" "^7.2.0" 22 | convert-source-map "^1.1.0" 23 | debug "^4.1.0" 24 | json5 "^2.1.0" 25 | lodash "^4.17.10" 26 | resolve "^1.3.2" 27 | semver "^5.4.1" 28 | source-map "^0.5.0" 29 | 30 | "@babel/generator@^7.1.6", "@babel/generator@^7.2.0": 31 | version "7.2.0" 32 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.2.0.tgz#eaf3821fa0301d9d4aef88e63d4bcc19b73ba16c" 33 | dependencies: 34 | "@babel/types" "^7.2.0" 35 | jsesc "^2.5.1" 36 | lodash "^4.17.10" 37 | source-map "^0.5.0" 38 | trim-right "^1.0.1" 39 | 40 | "@babel/helper-create-class-features-plugin@^7.2.1": 41 | version "7.2.1" 42 | resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.2.1.tgz#f6e8027291669ef64433220dc8327531233f1161" 43 | dependencies: 44 | "@babel/helper-function-name" "^7.1.0" 45 | "@babel/helper-member-expression-to-functions" "^7.0.0" 46 | "@babel/helper-optimise-call-expression" "^7.0.0" 47 | "@babel/helper-plugin-utils" "^7.0.0" 48 | "@babel/helper-replace-supers" "^7.1.0" 49 | 50 | "@babel/helper-function-name@^7.1.0": 51 | version "7.1.0" 52 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz#a0ceb01685f73355d4360c1247f582bfafc8ff53" 53 | dependencies: 54 | "@babel/helper-get-function-arity" "^7.0.0" 55 | "@babel/template" "^7.1.0" 56 | "@babel/types" "^7.0.0" 57 | 58 | "@babel/helper-get-function-arity@^7.0.0": 59 | version "7.0.0" 60 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz#83572d4320e2a4657263734113c42868b64e49c3" 61 | dependencies: 62 | "@babel/types" "^7.0.0" 63 | 64 | "@babel/helper-member-expression-to-functions@^7.0.0": 65 | version "7.0.0" 66 | resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.0.0.tgz#8cd14b0a0df7ff00f009e7d7a436945f47c7a16f" 67 | dependencies: 68 | "@babel/types" "^7.0.0" 69 | 70 | "@babel/helper-optimise-call-expression@^7.0.0": 71 | version "7.0.0" 72 | resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.0.0.tgz#a2920c5702b073c15de51106200aa8cad20497d5" 73 | dependencies: 74 | "@babel/types" "^7.0.0" 75 | 76 | "@babel/helper-plugin-utils@^7.0.0": 77 | version "7.0.0" 78 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250" 79 | 80 | "@babel/helper-replace-supers@^7.1.0": 81 | version "7.1.0" 82 | resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.1.0.tgz#5fc31de522ec0ef0899dc9b3e7cf6a5dd655f362" 83 | dependencies: 84 | "@babel/helper-member-expression-to-functions" "^7.0.0" 85 | "@babel/helper-optimise-call-expression" "^7.0.0" 86 | "@babel/traverse" "^7.1.0" 87 | "@babel/types" "^7.0.0" 88 | 89 | "@babel/helper-split-export-declaration@^7.0.0": 90 | version "7.0.0" 91 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.0.0.tgz#3aae285c0311c2ab095d997b8c9a94cad547d813" 92 | dependencies: 93 | "@babel/types" "^7.0.0" 94 | 95 | "@babel/helpers@^7.2.0": 96 | version "7.2.0" 97 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.2.0.tgz#8335f3140f3144270dc63c4732a4f8b0a50b7a21" 98 | dependencies: 99 | "@babel/template" "^7.1.2" 100 | "@babel/traverse" "^7.1.5" 101 | "@babel/types" "^7.2.0" 102 | 103 | "@babel/highlight@^7.0.0": 104 | version "7.0.0" 105 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0.tgz#f710c38c8d458e6dd9a201afb637fcb781ce99e4" 106 | dependencies: 107 | chalk "^2.0.0" 108 | esutils "^2.0.2" 109 | js-tokens "^4.0.0" 110 | 111 | "@babel/parser@^7.1.2", "@babel/parser@^7.1.6", "@babel/parser@^7.2.0": 112 | version "7.2.0" 113 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.2.0.tgz#02d01dbc330b6cbf36b76ac93c50752c69027065" 114 | 115 | "@babel/plugin-proposal-class-properties@^7.2.1": 116 | version "7.2.1" 117 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.2.1.tgz#c734a53e0a1ec40fe5c22ee5069d26da3b187d05" 118 | dependencies: 119 | "@babel/helper-create-class-features-plugin" "^7.2.1" 120 | "@babel/helper-plugin-utils" "^7.0.0" 121 | 122 | "@babel/template@^7.1.0", "@babel/template@^7.1.2": 123 | version "7.1.2" 124 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.1.2.tgz#090484a574fef5a2d2d7726a674eceda5c5b5644" 125 | dependencies: 126 | "@babel/code-frame" "^7.0.0" 127 | "@babel/parser" "^7.1.2" 128 | "@babel/types" "^7.1.2" 129 | 130 | "@babel/traverse@^7.1.0", "@babel/traverse@^7.1.5", "@babel/traverse@^7.1.6": 131 | version "7.1.6" 132 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.1.6.tgz#c8db9963ab4ce5b894222435482bd8ea854b7b5c" 133 | dependencies: 134 | "@babel/code-frame" "^7.0.0" 135 | "@babel/generator" "^7.1.6" 136 | "@babel/helper-function-name" "^7.1.0" 137 | "@babel/helper-split-export-declaration" "^7.0.0" 138 | "@babel/parser" "^7.1.6" 139 | "@babel/types" "^7.1.6" 140 | debug "^4.1.0" 141 | globals "^11.1.0" 142 | lodash "^4.17.10" 143 | 144 | "@babel/types@^7.0.0", "@babel/types@^7.1.2", "@babel/types@^7.1.6", "@babel/types@^7.2.0": 145 | version "7.2.0" 146 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.2.0.tgz#7941c5b2d8060e06f9601d6be7c223eef906d5d8" 147 | dependencies: 148 | esutils "^2.0.2" 149 | lodash "^4.17.10" 150 | to-fast-properties "^2.0.0" 151 | 152 | "@webassemblyjs/ast@1.7.11": 153 | version "1.7.11" 154 | resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.7.11.tgz#b988582cafbb2b095e8b556526f30c90d057cace" 155 | dependencies: 156 | "@webassemblyjs/helper-module-context" "1.7.11" 157 | "@webassemblyjs/helper-wasm-bytecode" "1.7.11" 158 | "@webassemblyjs/wast-parser" "1.7.11" 159 | 160 | "@webassemblyjs/floating-point-hex-parser@1.7.11": 161 | version "1.7.11" 162 | resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.7.11.tgz#a69f0af6502eb9a3c045555b1a6129d3d3f2e313" 163 | 164 | "@webassemblyjs/helper-api-error@1.7.11": 165 | version "1.7.11" 166 | resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.7.11.tgz#c7b6bb8105f84039511a2b39ce494f193818a32a" 167 | 168 | "@webassemblyjs/helper-buffer@1.7.11": 169 | version "1.7.11" 170 | resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.7.11.tgz#3122d48dcc6c9456ed982debe16c8f37101df39b" 171 | 172 | "@webassemblyjs/helper-code-frame@1.7.11": 173 | version "1.7.11" 174 | resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.7.11.tgz#cf8f106e746662a0da29bdef635fcd3d1248364b" 175 | dependencies: 176 | "@webassemblyjs/wast-printer" "1.7.11" 177 | 178 | "@webassemblyjs/helper-fsm@1.7.11": 179 | version "1.7.11" 180 | resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.7.11.tgz#df38882a624080d03f7503f93e3f17ac5ac01181" 181 | 182 | "@webassemblyjs/helper-module-context@1.7.11": 183 | version "1.7.11" 184 | resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.7.11.tgz#d874d722e51e62ac202476935d649c802fa0e209" 185 | 186 | "@webassemblyjs/helper-wasm-bytecode@1.7.11": 187 | version "1.7.11" 188 | resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.7.11.tgz#dd9a1e817f1c2eb105b4cf1013093cb9f3c9cb06" 189 | 190 | "@webassemblyjs/helper-wasm-section@1.7.11": 191 | version "1.7.11" 192 | resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.7.11.tgz#9c9ac41ecf9fbcfffc96f6d2675e2de33811e68a" 193 | dependencies: 194 | "@webassemblyjs/ast" "1.7.11" 195 | "@webassemblyjs/helper-buffer" "1.7.11" 196 | "@webassemblyjs/helper-wasm-bytecode" "1.7.11" 197 | "@webassemblyjs/wasm-gen" "1.7.11" 198 | 199 | "@webassemblyjs/ieee754@1.7.11": 200 | version "1.7.11" 201 | resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.7.11.tgz#c95839eb63757a31880aaec7b6512d4191ac640b" 202 | dependencies: 203 | "@xtuc/ieee754" "^1.2.0" 204 | 205 | "@webassemblyjs/leb128@1.7.11": 206 | version "1.7.11" 207 | resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.7.11.tgz#d7267a1ee9c4594fd3f7e37298818ec65687db63" 208 | dependencies: 209 | "@xtuc/long" "4.2.1" 210 | 211 | "@webassemblyjs/utf8@1.7.11": 212 | version "1.7.11" 213 | resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.7.11.tgz#06d7218ea9fdc94a6793aa92208160db3d26ee82" 214 | 215 | "@webassemblyjs/wasm-edit@1.7.11": 216 | version "1.7.11" 217 | resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.7.11.tgz#8c74ca474d4f951d01dbae9bd70814ee22a82005" 218 | dependencies: 219 | "@webassemblyjs/ast" "1.7.11" 220 | "@webassemblyjs/helper-buffer" "1.7.11" 221 | "@webassemblyjs/helper-wasm-bytecode" "1.7.11" 222 | "@webassemblyjs/helper-wasm-section" "1.7.11" 223 | "@webassemblyjs/wasm-gen" "1.7.11" 224 | "@webassemblyjs/wasm-opt" "1.7.11" 225 | "@webassemblyjs/wasm-parser" "1.7.11" 226 | "@webassemblyjs/wast-printer" "1.7.11" 227 | 228 | "@webassemblyjs/wasm-gen@1.7.11": 229 | version "1.7.11" 230 | resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.7.11.tgz#9bbba942f22375686a6fb759afcd7ac9c45da1a8" 231 | dependencies: 232 | "@webassemblyjs/ast" "1.7.11" 233 | "@webassemblyjs/helper-wasm-bytecode" "1.7.11" 234 | "@webassemblyjs/ieee754" "1.7.11" 235 | "@webassemblyjs/leb128" "1.7.11" 236 | "@webassemblyjs/utf8" "1.7.11" 237 | 238 | "@webassemblyjs/wasm-opt@1.7.11": 239 | version "1.7.11" 240 | resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.7.11.tgz#b331e8e7cef8f8e2f007d42c3a36a0580a7d6ca7" 241 | dependencies: 242 | "@webassemblyjs/ast" "1.7.11" 243 | "@webassemblyjs/helper-buffer" "1.7.11" 244 | "@webassemblyjs/wasm-gen" "1.7.11" 245 | "@webassemblyjs/wasm-parser" "1.7.11" 246 | 247 | "@webassemblyjs/wasm-parser@1.7.11": 248 | version "1.7.11" 249 | resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.7.11.tgz#6e3d20fa6a3519f6b084ef9391ad58211efb0a1a" 250 | dependencies: 251 | "@webassemblyjs/ast" "1.7.11" 252 | "@webassemblyjs/helper-api-error" "1.7.11" 253 | "@webassemblyjs/helper-wasm-bytecode" "1.7.11" 254 | "@webassemblyjs/ieee754" "1.7.11" 255 | "@webassemblyjs/leb128" "1.7.11" 256 | "@webassemblyjs/utf8" "1.7.11" 257 | 258 | "@webassemblyjs/wast-parser@1.7.11": 259 | version "1.7.11" 260 | resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.7.11.tgz#25bd117562ca8c002720ff8116ef9072d9ca869c" 261 | dependencies: 262 | "@webassemblyjs/ast" "1.7.11" 263 | "@webassemblyjs/floating-point-hex-parser" "1.7.11" 264 | "@webassemblyjs/helper-api-error" "1.7.11" 265 | "@webassemblyjs/helper-code-frame" "1.7.11" 266 | "@webassemblyjs/helper-fsm" "1.7.11" 267 | "@xtuc/long" "4.2.1" 268 | 269 | "@webassemblyjs/wast-printer@1.7.11": 270 | version "1.7.11" 271 | resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.7.11.tgz#c4245b6de242cb50a2cc950174fdbf65c78d7813" 272 | dependencies: 273 | "@webassemblyjs/ast" "1.7.11" 274 | "@webassemblyjs/wast-parser" "1.7.11" 275 | "@xtuc/long" "4.2.1" 276 | 277 | "@xtuc/ieee754@^1.2.0": 278 | version "1.2.0" 279 | resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790" 280 | 281 | "@xtuc/long@4.2.1": 282 | version "4.2.1" 283 | resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.1.tgz#5c85d662f76fa1d34575766c5dcd6615abcd30d8" 284 | 285 | abbrev@1: 286 | version "1.1.1" 287 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 288 | 289 | acorn-dynamic-import@^3.0.0: 290 | version "3.0.0" 291 | resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-3.0.0.tgz#901ceee4c7faaef7e07ad2a47e890675da50a278" 292 | dependencies: 293 | acorn "^5.0.0" 294 | 295 | acorn@^5.0.0, acorn@^5.6.2: 296 | version "5.7.4" 297 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.4.tgz#3e8d8a9947d0599a1796d10225d7432f4a4acf5e" 298 | integrity sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg== 299 | 300 | ajv-errors@^1.0.0: 301 | version "1.0.0" 302 | resolved "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.0.tgz#ecf021fa108fd17dfb5e6b383f2dd233e31ffc59" 303 | 304 | ajv-keywords@^3.1.0: 305 | version "3.2.0" 306 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.2.0.tgz#e86b819c602cf8821ad637413698f1dec021847a" 307 | 308 | ajv@^6.1.0: 309 | version "6.6.1" 310 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.6.1.tgz#6360f5ed0d80f232cc2b294c362d5dc2e538dd61" 311 | dependencies: 312 | fast-deep-equal "^2.0.1" 313 | fast-json-stable-stringify "^2.0.0" 314 | json-schema-traverse "^0.4.1" 315 | uri-js "^4.2.2" 316 | 317 | ansi-colors@^3.0.0: 318 | version "3.2.4" 319 | resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.4.tgz#e3a3da4bfbae6c86a9c285625de124a234026fbf" 320 | integrity sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA== 321 | 322 | ansi-regex@^2.0.0: 323 | version "2.1.1" 324 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 325 | 326 | ansi-regex@^3.0.0: 327 | version "3.0.0" 328 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 329 | 330 | ansi-styles@^3.2.1: 331 | version "3.2.1" 332 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 333 | dependencies: 334 | color-convert "^1.9.0" 335 | 336 | anymatch@^2.0.0: 337 | version "2.0.0" 338 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" 339 | dependencies: 340 | micromatch "^3.1.4" 341 | normalize-path "^2.1.1" 342 | 343 | aproba@^1.0.3, aproba@^1.1.1: 344 | version "1.2.0" 345 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 346 | 347 | are-we-there-yet@~1.1.2: 348 | version "1.1.5" 349 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" 350 | dependencies: 351 | delegates "^1.0.0" 352 | readable-stream "^2.0.6" 353 | 354 | arr-diff@^4.0.0: 355 | version "4.0.0" 356 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 357 | 358 | arr-flatten@^1.1.0: 359 | version "1.1.0" 360 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 361 | 362 | arr-union@^3.1.0: 363 | version "3.1.0" 364 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 365 | 366 | array-union@^1.0.1: 367 | version "1.0.2" 368 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 369 | integrity sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk= 370 | dependencies: 371 | array-uniq "^1.0.1" 372 | 373 | array-uniq@^1.0.1: 374 | version "1.0.3" 375 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 376 | integrity sha1-r2rId6Jcx/dOBYiUdThY39sk/bY= 377 | 378 | array-unique@^0.3.2: 379 | version "0.3.2" 380 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 381 | 382 | asn1.js@^4.0.0: 383 | version "4.10.1" 384 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0" 385 | dependencies: 386 | bn.js "^4.0.0" 387 | inherits "^2.0.1" 388 | minimalistic-assert "^1.0.0" 389 | 390 | assert@^1.1.1: 391 | version "1.4.1" 392 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 393 | dependencies: 394 | util "0.10.3" 395 | 396 | assign-symbols@^1.0.0: 397 | version "1.0.0" 398 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 399 | 400 | async-each@^1.0.0: 401 | version "1.0.1" 402 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 403 | 404 | atob@^2.1.1: 405 | version "2.1.2" 406 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" 407 | 408 | babel-loader@^8.0.4: 409 | version "8.0.4" 410 | resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.0.4.tgz#7bbf20cbe4560629e2e41534147692d3fecbdce6" 411 | dependencies: 412 | find-cache-dir "^1.0.0" 413 | loader-utils "^1.0.2" 414 | mkdirp "^0.5.1" 415 | util.promisify "^1.0.0" 416 | 417 | balanced-match@^1.0.0: 418 | version "1.0.0" 419 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 420 | 421 | base64-js@^1.0.2: 422 | version "1.3.0" 423 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.0.tgz#cab1e6118f051095e58b5281aea8c1cd22bfc0e3" 424 | 425 | base@^0.11.1: 426 | version "0.11.2" 427 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 428 | dependencies: 429 | cache-base "^1.0.1" 430 | class-utils "^0.3.5" 431 | component-emitter "^1.2.1" 432 | define-property "^1.0.0" 433 | isobject "^3.0.1" 434 | mixin-deep "^1.2.0" 435 | pascalcase "^0.1.1" 436 | 437 | big.js@^3.1.3: 438 | version "3.2.0" 439 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.2.0.tgz#a5fc298b81b9e0dca2e458824784b65c52ba588e" 440 | 441 | big.js@^5.2.2: 442 | version "5.2.2" 443 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" 444 | integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== 445 | 446 | binary-extensions@^1.0.0: 447 | version "1.12.0" 448 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.12.0.tgz#c2d780f53d45bba8317a8902d4ceeaf3a6385b14" 449 | 450 | bluebird@^3.5.1: 451 | version "3.5.3" 452 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.3.tgz#7d01c6f9616c9a51ab0f8c549a79dfe6ec33efa7" 453 | 454 | bluebird@^3.5.5: 455 | version "3.7.2" 456 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" 457 | integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== 458 | 459 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: 460 | version "4.11.9" 461 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.9.tgz#26d556829458f9d1e81fc48952493d0ba3507828" 462 | integrity sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw== 463 | 464 | brace-expansion@^1.1.7: 465 | version "1.1.11" 466 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 467 | dependencies: 468 | balanced-match "^1.0.0" 469 | concat-map "0.0.1" 470 | 471 | braces@^2.3.0, braces@^2.3.1: 472 | version "2.3.2" 473 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" 474 | dependencies: 475 | arr-flatten "^1.1.0" 476 | array-unique "^0.3.2" 477 | extend-shallow "^2.0.1" 478 | fill-range "^4.0.0" 479 | isobject "^3.0.1" 480 | repeat-element "^1.1.2" 481 | snapdragon "^0.8.1" 482 | snapdragon-node "^2.0.1" 483 | split-string "^3.0.2" 484 | to-regex "^3.0.1" 485 | 486 | brorand@^1.0.1: 487 | version "1.1.0" 488 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 489 | integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8= 490 | 491 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 492 | version "1.2.0" 493 | resolved "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" 494 | dependencies: 495 | buffer-xor "^1.0.3" 496 | cipher-base "^1.0.0" 497 | create-hash "^1.1.0" 498 | evp_bytestokey "^1.0.3" 499 | inherits "^2.0.1" 500 | safe-buffer "^5.0.1" 501 | 502 | browserify-cipher@^1.0.0: 503 | version "1.0.1" 504 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0" 505 | dependencies: 506 | browserify-aes "^1.0.4" 507 | browserify-des "^1.0.0" 508 | evp_bytestokey "^1.0.0" 509 | 510 | browserify-des@^1.0.0: 511 | version "1.0.2" 512 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c" 513 | dependencies: 514 | cipher-base "^1.0.1" 515 | des.js "^1.0.0" 516 | inherits "^2.0.1" 517 | safe-buffer "^5.1.2" 518 | 519 | browserify-rsa@^4.0.0: 520 | version "4.0.1" 521 | resolved "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 522 | dependencies: 523 | bn.js "^4.1.0" 524 | randombytes "^2.0.1" 525 | 526 | browserify-sign@^4.0.0: 527 | version "4.0.4" 528 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" 529 | dependencies: 530 | bn.js "^4.1.1" 531 | browserify-rsa "^4.0.0" 532 | create-hash "^1.1.0" 533 | create-hmac "^1.1.2" 534 | elliptic "^6.0.0" 535 | inherits "^2.0.1" 536 | parse-asn1 "^5.0.0" 537 | 538 | browserify-zlib@^0.2.0: 539 | version "0.2.0" 540 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" 541 | dependencies: 542 | pako "~1.0.5" 543 | 544 | buffer-from@^1.0.0: 545 | version "1.1.1" 546 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 547 | 548 | buffer-xor@^1.0.3: 549 | version "1.0.3" 550 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 551 | 552 | buffer@^4.3.0: 553 | version "4.9.1" 554 | resolved "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 555 | dependencies: 556 | base64-js "^1.0.2" 557 | ieee754 "^1.1.4" 558 | isarray "^1.0.0" 559 | 560 | builtin-status-codes@^3.0.0: 561 | version "3.0.0" 562 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 563 | 564 | cacache@^11.0.2: 565 | version "11.3.1" 566 | resolved "https://registry.yarnpkg.com/cacache/-/cacache-11.3.1.tgz#d09d25f6c4aca7a6d305d141ae332613aa1d515f" 567 | dependencies: 568 | bluebird "^3.5.1" 569 | chownr "^1.0.1" 570 | figgy-pudding "^3.1.0" 571 | glob "^7.1.2" 572 | graceful-fs "^4.1.11" 573 | lru-cache "^4.1.3" 574 | mississippi "^3.0.0" 575 | mkdirp "^0.5.1" 576 | move-concurrently "^1.0.1" 577 | promise-inflight "^1.0.1" 578 | rimraf "^2.6.2" 579 | ssri "^6.0.0" 580 | unique-filename "^1.1.0" 581 | y18n "^4.0.0" 582 | 583 | cacache@^12.0.3: 584 | version "12.0.3" 585 | resolved "https://registry.yarnpkg.com/cacache/-/cacache-12.0.3.tgz#be99abba4e1bf5df461cd5a2c1071fc432573390" 586 | integrity sha512-kqdmfXEGFepesTuROHMs3MpFLWrPkSSpRqOw80RCflZXy/khxaArvFrQ7uJxSUduzAufc6G0g1VUCOZXxWavPw== 587 | dependencies: 588 | bluebird "^3.5.5" 589 | chownr "^1.1.1" 590 | figgy-pudding "^3.5.1" 591 | glob "^7.1.4" 592 | graceful-fs "^4.1.15" 593 | infer-owner "^1.0.3" 594 | lru-cache "^5.1.1" 595 | mississippi "^3.0.0" 596 | mkdirp "^0.5.1" 597 | move-concurrently "^1.0.1" 598 | promise-inflight "^1.0.1" 599 | rimraf "^2.6.3" 600 | ssri "^6.0.1" 601 | unique-filename "^1.1.1" 602 | y18n "^4.0.0" 603 | 604 | cache-base@^1.0.1: 605 | version "1.0.1" 606 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 607 | dependencies: 608 | collection-visit "^1.0.0" 609 | component-emitter "^1.2.1" 610 | get-value "^2.0.6" 611 | has-value "^1.0.0" 612 | isobject "^3.0.1" 613 | set-value "^2.0.0" 614 | to-object-path "^0.3.0" 615 | union-value "^1.0.0" 616 | unset-value "^1.0.0" 617 | 618 | camelcase@^5.0.0: 619 | version "5.0.0" 620 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.0.0.tgz#03295527d58bd3cd4aa75363f35b2e8d97be2f42" 621 | 622 | chalk@^2.0.0, chalk@^2.4.1: 623 | version "2.4.1" 624 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e" 625 | dependencies: 626 | ansi-styles "^3.2.1" 627 | escape-string-regexp "^1.0.5" 628 | supports-color "^5.3.0" 629 | 630 | chokidar@^2.0.2: 631 | version "2.0.4" 632 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.0.4.tgz#356ff4e2b0e8e43e322d18a372460bbcf3accd26" 633 | dependencies: 634 | anymatch "^2.0.0" 635 | async-each "^1.0.0" 636 | braces "^2.3.0" 637 | glob-parent "^3.1.0" 638 | inherits "^2.0.1" 639 | is-binary-path "^1.0.0" 640 | is-glob "^4.0.0" 641 | lodash.debounce "^4.0.8" 642 | normalize-path "^2.1.1" 643 | path-is-absolute "^1.0.0" 644 | readdirp "^2.0.0" 645 | upath "^1.0.5" 646 | optionalDependencies: 647 | fsevents "^1.2.2" 648 | 649 | chownr@^1.0.1, chownr@^1.1.1: 650 | version "1.1.1" 651 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.1.tgz#54726b8b8fff4df053c42187e801fb4412df1494" 652 | 653 | chrome-trace-event@^1.0.0: 654 | version "1.0.0" 655 | resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.0.tgz#45a91bd2c20c9411f0963b5aaeb9a1b95e09cc48" 656 | dependencies: 657 | tslib "^1.9.0" 658 | 659 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: 660 | version "1.0.4" 661 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" 662 | dependencies: 663 | inherits "^2.0.1" 664 | safe-buffer "^5.0.1" 665 | 666 | class-utils@^0.3.5: 667 | version "0.3.6" 668 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 669 | dependencies: 670 | arr-union "^3.1.0" 671 | define-property "^0.2.5" 672 | isobject "^3.0.0" 673 | static-extend "^0.1.1" 674 | 675 | cliui@^4.0.0: 676 | version "4.1.0" 677 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49" 678 | dependencies: 679 | string-width "^2.1.1" 680 | strip-ansi "^4.0.0" 681 | wrap-ansi "^2.0.0" 682 | 683 | code-point-at@^1.0.0: 684 | version "1.1.0" 685 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 686 | 687 | collection-visit@^1.0.0: 688 | version "1.0.0" 689 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 690 | dependencies: 691 | map-visit "^1.0.0" 692 | object-visit "^1.0.0" 693 | 694 | color-convert@^1.9.0: 695 | version "1.9.3" 696 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 697 | dependencies: 698 | color-name "1.1.3" 699 | 700 | color-name@1.1.3: 701 | version "1.1.3" 702 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 703 | 704 | commander@~2.17.1: 705 | version "2.17.1" 706 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf" 707 | 708 | commondir@^1.0.1: 709 | version "1.0.1" 710 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 711 | 712 | component-emitter@^1.2.1: 713 | version "1.2.1" 714 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 715 | 716 | concat-map@0.0.1: 717 | version "0.0.1" 718 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 719 | 720 | concat-stream@^1.5.0: 721 | version "1.6.2" 722 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" 723 | dependencies: 724 | buffer-from "^1.0.0" 725 | inherits "^2.0.3" 726 | readable-stream "^2.2.2" 727 | typedarray "^0.0.6" 728 | 729 | console-browserify@^1.1.0: 730 | version "1.1.0" 731 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 732 | dependencies: 733 | date-now "^0.1.4" 734 | 735 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 736 | version "1.1.0" 737 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 738 | 739 | constants-browserify@^1.0.0: 740 | version "1.0.0" 741 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 742 | 743 | convert-source-map@^1.1.0: 744 | version "1.6.0" 745 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20" 746 | dependencies: 747 | safe-buffer "~5.1.1" 748 | 749 | copy-concurrently@^1.0.0: 750 | version "1.0.5" 751 | resolved "https://registry.yarnpkg.com/copy-concurrently/-/copy-concurrently-1.0.5.tgz#92297398cae34937fcafd6ec8139c18051f0b5e0" 752 | dependencies: 753 | aproba "^1.1.1" 754 | fs-write-stream-atomic "^1.0.8" 755 | iferr "^0.1.5" 756 | mkdirp "^0.5.1" 757 | rimraf "^2.5.4" 758 | run-queue "^1.0.0" 759 | 760 | copy-descriptor@^0.1.0: 761 | version "0.1.1" 762 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 763 | 764 | copy-webpack-plugin@^5.0.5: 765 | version "5.0.5" 766 | resolved "https://registry.yarnpkg.com/copy-webpack-plugin/-/copy-webpack-plugin-5.0.5.tgz#731df6a837a2ef0f8f8e2345bdfe9b7c62a2da68" 767 | integrity sha512-7N68eIoQTyudAuxkfPT7HzGoQ+TsmArN/I3HFwG+lVE3FNzqvZKIiaxtYh4o3BIznioxUvx9j26+Rtsc9htQUQ== 768 | dependencies: 769 | cacache "^12.0.3" 770 | find-cache-dir "^2.1.0" 771 | glob-parent "^3.1.0" 772 | globby "^7.1.1" 773 | is-glob "^4.0.1" 774 | loader-utils "^1.2.3" 775 | minimatch "^3.0.4" 776 | normalize-path "^3.0.0" 777 | p-limit "^2.2.1" 778 | schema-utils "^1.0.0" 779 | serialize-javascript "^2.1.0" 780 | webpack-log "^2.0.0" 781 | 782 | core-util-is@~1.0.0: 783 | version "1.0.2" 784 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 785 | 786 | create-ecdh@^4.0.0: 787 | version "4.0.3" 788 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.3.tgz#c9111b6f33045c4697f144787f9254cdc77c45ff" 789 | dependencies: 790 | bn.js "^4.1.0" 791 | elliptic "^6.0.0" 792 | 793 | create-hash@^1.1.0, create-hash@^1.1.2: 794 | version "1.2.0" 795 | resolved "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" 796 | dependencies: 797 | cipher-base "^1.0.1" 798 | inherits "^2.0.1" 799 | md5.js "^1.3.4" 800 | ripemd160 "^2.0.1" 801 | sha.js "^2.4.0" 802 | 803 | create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: 804 | version "1.1.7" 805 | resolved "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" 806 | dependencies: 807 | cipher-base "^1.0.3" 808 | create-hash "^1.1.0" 809 | inherits "^2.0.1" 810 | ripemd160 "^2.0.0" 811 | safe-buffer "^5.0.1" 812 | sha.js "^2.4.8" 813 | 814 | cross-spawn@^6.0.0, cross-spawn@^6.0.5: 815 | version "6.0.5" 816 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" 817 | dependencies: 818 | nice-try "^1.0.4" 819 | path-key "^2.0.1" 820 | semver "^5.5.0" 821 | shebang-command "^1.2.0" 822 | which "^1.2.9" 823 | 824 | crypto-browserify@^3.11.0: 825 | version "3.12.0" 826 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" 827 | dependencies: 828 | browserify-cipher "^1.0.0" 829 | browserify-sign "^4.0.0" 830 | create-ecdh "^4.0.0" 831 | create-hash "^1.1.0" 832 | create-hmac "^1.1.0" 833 | diffie-hellman "^5.0.0" 834 | inherits "^2.0.1" 835 | pbkdf2 "^3.0.3" 836 | public-encrypt "^4.0.0" 837 | randombytes "^2.0.0" 838 | randomfill "^1.0.3" 839 | 840 | cyclist@~0.2.2: 841 | version "0.2.2" 842 | resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-0.2.2.tgz#1b33792e11e914a2fd6d6ed6447464444e5fa640" 843 | 844 | date-now@^0.1.4: 845 | version "0.1.4" 846 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 847 | 848 | debug@^2.1.2, debug@^2.2.0, debug@^2.3.3: 849 | version "2.6.9" 850 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 851 | dependencies: 852 | ms "2.0.0" 853 | 854 | debug@^4.1.0: 855 | version "4.1.0" 856 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.0.tgz#373687bffa678b38b1cd91f861b63850035ddc87" 857 | dependencies: 858 | ms "^2.1.1" 859 | 860 | decamelize@^1.2.0: 861 | version "1.2.0" 862 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 863 | 864 | decode-uri-component@^0.2.0: 865 | version "0.2.0" 866 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 867 | 868 | deep-extend@^0.6.0: 869 | version "0.6.0" 870 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 871 | 872 | define-properties@^1.1.2: 873 | version "1.1.3" 874 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 875 | dependencies: 876 | object-keys "^1.0.12" 877 | 878 | define-property@^0.2.5: 879 | version "0.2.5" 880 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 881 | dependencies: 882 | is-descriptor "^0.1.0" 883 | 884 | define-property@^1.0.0: 885 | version "1.0.0" 886 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 887 | dependencies: 888 | is-descriptor "^1.0.0" 889 | 890 | define-property@^2.0.2: 891 | version "2.0.2" 892 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 893 | dependencies: 894 | is-descriptor "^1.0.2" 895 | isobject "^3.0.1" 896 | 897 | delegates@^1.0.0: 898 | version "1.0.0" 899 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 900 | 901 | des.js@^1.0.0: 902 | version "1.0.0" 903 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" 904 | dependencies: 905 | inherits "^2.0.1" 906 | minimalistic-assert "^1.0.0" 907 | 908 | detect-libc@^1.0.2: 909 | version "1.0.3" 910 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 911 | 912 | diffie-hellman@^5.0.0: 913 | version "5.0.3" 914 | resolved "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875" 915 | dependencies: 916 | bn.js "^4.1.0" 917 | miller-rabin "^4.0.0" 918 | randombytes "^2.0.0" 919 | 920 | dir-glob@^2.0.0: 921 | version "2.2.2" 922 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-2.2.2.tgz#fa09f0694153c8918b18ba0deafae94769fc50c4" 923 | integrity sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw== 924 | dependencies: 925 | path-type "^3.0.0" 926 | 927 | domain-browser@^1.1.1: 928 | version "1.2.0" 929 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" 930 | 931 | duplexify@^3.4.2, duplexify@^3.6.0: 932 | version "3.6.1" 933 | resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.6.1.tgz#b1a7a29c4abfd639585efaecce80d666b1e34125" 934 | dependencies: 935 | end-of-stream "^1.0.0" 936 | inherits "^2.0.1" 937 | readable-stream "^2.0.0" 938 | stream-shift "^1.0.0" 939 | 940 | elliptic@^6.0.0: 941 | version "6.5.3" 942 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.3.tgz#cb59eb2efdaf73a0bd78ccd7015a62ad6e0f93d6" 943 | integrity sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw== 944 | dependencies: 945 | bn.js "^4.4.0" 946 | brorand "^1.0.1" 947 | hash.js "^1.0.0" 948 | hmac-drbg "^1.0.0" 949 | inherits "^2.0.1" 950 | minimalistic-assert "^1.0.0" 951 | minimalistic-crypto-utils "^1.0.0" 952 | 953 | emojis-list@^2.0.0: 954 | version "2.1.0" 955 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" 956 | 957 | end-of-stream@^1.0.0, end-of-stream@^1.1.0: 958 | version "1.4.1" 959 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.1.tgz#ed29634d19baba463b6ce6b80a37213eab71ec43" 960 | dependencies: 961 | once "^1.4.0" 962 | 963 | enhanced-resolve@^4.1.0: 964 | version "4.1.0" 965 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.1.0.tgz#41c7e0bfdfe74ac1ffe1e57ad6a5c6c9f3742a7f" 966 | dependencies: 967 | graceful-fs "^4.1.2" 968 | memory-fs "^0.4.0" 969 | tapable "^1.0.0" 970 | 971 | errno@^0.1.3, errno@~0.1.7: 972 | version "0.1.7" 973 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618" 974 | dependencies: 975 | prr "~1.0.1" 976 | 977 | es-abstract@^1.5.1: 978 | version "1.12.0" 979 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.12.0.tgz#9dbbdd27c6856f0001421ca18782d786bf8a6165" 980 | dependencies: 981 | es-to-primitive "^1.1.1" 982 | function-bind "^1.1.1" 983 | has "^1.0.1" 984 | is-callable "^1.1.3" 985 | is-regex "^1.0.4" 986 | 987 | es-to-primitive@^1.1.1: 988 | version "1.2.0" 989 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377" 990 | dependencies: 991 | is-callable "^1.1.4" 992 | is-date-object "^1.0.1" 993 | is-symbol "^1.0.2" 994 | 995 | escape-string-regexp@^1.0.5: 996 | version "1.0.5" 997 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 998 | 999 | eslint-scope@^4.0.0: 1000 | version "4.0.0" 1001 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.0.tgz#50bf3071e9338bcdc43331794a0cb533f0136172" 1002 | dependencies: 1003 | esrecurse "^4.1.0" 1004 | estraverse "^4.1.1" 1005 | 1006 | esrecurse@^4.1.0: 1007 | version "4.2.1" 1008 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" 1009 | dependencies: 1010 | estraverse "^4.1.0" 1011 | 1012 | estraverse@^4.1.0, estraverse@^4.1.1: 1013 | version "4.2.0" 1014 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1015 | 1016 | esutils@^2.0.2: 1017 | version "2.0.2" 1018 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1019 | 1020 | events@^1.0.0: 1021 | version "1.1.1" 1022 | resolved "https://registry.npmjs.org/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 1023 | 1024 | evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: 1025 | version "1.0.3" 1026 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" 1027 | dependencies: 1028 | md5.js "^1.3.4" 1029 | safe-buffer "^5.1.1" 1030 | 1031 | execa@^0.10.0: 1032 | version "0.10.0" 1033 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.10.0.tgz#ff456a8f53f90f8eccc71a96d11bdfc7f082cb50" 1034 | dependencies: 1035 | cross-spawn "^6.0.0" 1036 | get-stream "^3.0.0" 1037 | is-stream "^1.1.0" 1038 | npm-run-path "^2.0.0" 1039 | p-finally "^1.0.0" 1040 | signal-exit "^3.0.0" 1041 | strip-eof "^1.0.0" 1042 | 1043 | expand-brackets@^2.1.4: 1044 | version "2.1.4" 1045 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 1046 | dependencies: 1047 | debug "^2.3.3" 1048 | define-property "^0.2.5" 1049 | extend-shallow "^2.0.1" 1050 | posix-character-classes "^0.1.0" 1051 | regex-not "^1.0.0" 1052 | snapdragon "^0.8.1" 1053 | to-regex "^3.0.1" 1054 | 1055 | extend-shallow@^2.0.1: 1056 | version "2.0.1" 1057 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 1058 | dependencies: 1059 | is-extendable "^0.1.0" 1060 | 1061 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 1062 | version "3.0.2" 1063 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 1064 | dependencies: 1065 | assign-symbols "^1.0.0" 1066 | is-extendable "^1.0.1" 1067 | 1068 | extglob@^2.0.4: 1069 | version "2.0.4" 1070 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 1071 | dependencies: 1072 | array-unique "^0.3.2" 1073 | define-property "^1.0.0" 1074 | expand-brackets "^2.1.4" 1075 | extend-shallow "^2.0.1" 1076 | fragment-cache "^0.2.1" 1077 | regex-not "^1.0.0" 1078 | snapdragon "^0.8.1" 1079 | to-regex "^3.0.1" 1080 | 1081 | fast-deep-equal@^2.0.1: 1082 | version "2.0.1" 1083 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" 1084 | 1085 | fast-json-stable-stringify@^2.0.0: 1086 | version "2.0.0" 1087 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1088 | 1089 | figgy-pudding@^3.1.0, figgy-pudding@^3.5.1: 1090 | version "3.5.1" 1091 | resolved "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.1.tgz#862470112901c727a0e495a80744bd5baa1d6790" 1092 | 1093 | fill-range@^4.0.0: 1094 | version "4.0.0" 1095 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 1096 | dependencies: 1097 | extend-shallow "^2.0.1" 1098 | is-number "^3.0.0" 1099 | repeat-string "^1.6.1" 1100 | to-regex-range "^2.1.0" 1101 | 1102 | find-cache-dir@^1.0.0: 1103 | version "1.0.0" 1104 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-1.0.0.tgz#9288e3e9e3cc3748717d39eade17cf71fc30ee6f" 1105 | dependencies: 1106 | commondir "^1.0.1" 1107 | make-dir "^1.0.0" 1108 | pkg-dir "^2.0.0" 1109 | 1110 | find-cache-dir@^2.0.0: 1111 | version "2.0.0" 1112 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.0.0.tgz#4c1faed59f45184530fb9d7fa123a4d04a98472d" 1113 | dependencies: 1114 | commondir "^1.0.1" 1115 | make-dir "^1.0.0" 1116 | pkg-dir "^3.0.0" 1117 | 1118 | find-cache-dir@^2.1.0: 1119 | version "2.1.0" 1120 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7" 1121 | integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ== 1122 | dependencies: 1123 | commondir "^1.0.1" 1124 | make-dir "^2.0.0" 1125 | pkg-dir "^3.0.0" 1126 | 1127 | find-up@^2.1.0: 1128 | version "2.1.0" 1129 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1130 | dependencies: 1131 | locate-path "^2.0.0" 1132 | 1133 | find-up@^3.0.0: 1134 | version "3.0.0" 1135 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" 1136 | dependencies: 1137 | locate-path "^3.0.0" 1138 | 1139 | flush-write-stream@^1.0.0: 1140 | version "1.0.3" 1141 | resolved "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.0.3.tgz#c5d586ef38af6097650b49bc41b55fabb19f35bd" 1142 | dependencies: 1143 | inherits "^2.0.1" 1144 | readable-stream "^2.0.4" 1145 | 1146 | for-in@^1.0.2: 1147 | version "1.0.2" 1148 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1149 | 1150 | fragment-cache@^0.2.1: 1151 | version "0.2.1" 1152 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 1153 | dependencies: 1154 | map-cache "^0.2.2" 1155 | 1156 | from2@^2.1.0: 1157 | version "2.3.0" 1158 | resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af" 1159 | dependencies: 1160 | inherits "^2.0.1" 1161 | readable-stream "^2.0.0" 1162 | 1163 | fs-minipass@^1.2.5: 1164 | version "1.2.5" 1165 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d" 1166 | dependencies: 1167 | minipass "^2.2.1" 1168 | 1169 | fs-write-stream-atomic@^1.0.8: 1170 | version "1.0.10" 1171 | resolved "https://registry.yarnpkg.com/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9" 1172 | dependencies: 1173 | graceful-fs "^4.1.2" 1174 | iferr "^0.1.5" 1175 | imurmurhash "^0.1.4" 1176 | readable-stream "1 || 2" 1177 | 1178 | fs.realpath@^1.0.0: 1179 | version "1.0.0" 1180 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1181 | 1182 | fsevents@^1.2.2: 1183 | version "1.2.4" 1184 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.4.tgz#f41dcb1af2582af3692da36fc55cbd8e1041c426" 1185 | dependencies: 1186 | nan "^2.9.2" 1187 | node-pre-gyp "^0.10.0" 1188 | 1189 | function-bind@^1.1.1: 1190 | version "1.1.1" 1191 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1192 | 1193 | gauge@~2.7.3: 1194 | version "2.7.4" 1195 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1196 | dependencies: 1197 | aproba "^1.0.3" 1198 | console-control-strings "^1.0.0" 1199 | has-unicode "^2.0.0" 1200 | object-assign "^4.1.0" 1201 | signal-exit "^3.0.0" 1202 | string-width "^1.0.1" 1203 | strip-ansi "^3.0.1" 1204 | wide-align "^1.1.0" 1205 | 1206 | get-caller-file@^1.0.1: 1207 | version "1.0.3" 1208 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" 1209 | 1210 | get-stream@^3.0.0: 1211 | version "3.0.0" 1212 | resolved "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1213 | 1214 | get-value@^2.0.3, get-value@^2.0.6: 1215 | version "2.0.6" 1216 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 1217 | 1218 | glob-parent@^3.1.0: 1219 | version "3.1.0" 1220 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" 1221 | dependencies: 1222 | is-glob "^3.1.0" 1223 | path-dirname "^1.0.0" 1224 | 1225 | glob@^7.0.5, glob@^7.1.2: 1226 | version "7.1.3" 1227 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1" 1228 | dependencies: 1229 | fs.realpath "^1.0.0" 1230 | inflight "^1.0.4" 1231 | inherits "2" 1232 | minimatch "^3.0.4" 1233 | once "^1.3.0" 1234 | path-is-absolute "^1.0.0" 1235 | 1236 | glob@^7.1.3, glob@^7.1.4: 1237 | version "7.1.6" 1238 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 1239 | integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== 1240 | dependencies: 1241 | fs.realpath "^1.0.0" 1242 | inflight "^1.0.4" 1243 | inherits "2" 1244 | minimatch "^3.0.4" 1245 | once "^1.3.0" 1246 | path-is-absolute "^1.0.0" 1247 | 1248 | global-modules-path@^2.3.0: 1249 | version "2.3.1" 1250 | resolved "https://registry.yarnpkg.com/global-modules-path/-/global-modules-path-2.3.1.tgz#e541f4c800a1a8514a990477b267ac67525b9931" 1251 | 1252 | globals@^11.1.0: 1253 | version "11.9.0" 1254 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.9.0.tgz#bde236808e987f290768a93d065060d78e6ab249" 1255 | 1256 | globby@^7.1.1: 1257 | version "7.1.1" 1258 | resolved "https://registry.yarnpkg.com/globby/-/globby-7.1.1.tgz#fb2ccff9401f8600945dfada97440cca972b8680" 1259 | integrity sha1-+yzP+UAfhgCUXfral0QMypcrhoA= 1260 | dependencies: 1261 | array-union "^1.0.1" 1262 | dir-glob "^2.0.0" 1263 | glob "^7.1.2" 1264 | ignore "^3.3.5" 1265 | pify "^3.0.0" 1266 | slash "^1.0.0" 1267 | 1268 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 1269 | version "4.1.15" 1270 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00" 1271 | 1272 | graceful-fs@^4.1.15: 1273 | version "4.2.3" 1274 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423" 1275 | integrity sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ== 1276 | 1277 | has-flag@^3.0.0: 1278 | version "3.0.0" 1279 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1280 | 1281 | has-symbols@^1.0.0: 1282 | version "1.0.0" 1283 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" 1284 | 1285 | has-unicode@^2.0.0: 1286 | version "2.0.1" 1287 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1288 | 1289 | has-value@^0.3.1: 1290 | version "0.3.1" 1291 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 1292 | dependencies: 1293 | get-value "^2.0.3" 1294 | has-values "^0.1.4" 1295 | isobject "^2.0.0" 1296 | 1297 | has-value@^1.0.0: 1298 | version "1.0.0" 1299 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 1300 | dependencies: 1301 | get-value "^2.0.6" 1302 | has-values "^1.0.0" 1303 | isobject "^3.0.0" 1304 | 1305 | has-values@^0.1.4: 1306 | version "0.1.4" 1307 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 1308 | 1309 | has-values@^1.0.0: 1310 | version "1.0.0" 1311 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 1312 | dependencies: 1313 | is-number "^3.0.0" 1314 | kind-of "^4.0.0" 1315 | 1316 | has@^1.0.1: 1317 | version "1.0.3" 1318 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1319 | dependencies: 1320 | function-bind "^1.1.1" 1321 | 1322 | hash-base@^3.0.0: 1323 | version "3.0.4" 1324 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" 1325 | dependencies: 1326 | inherits "^2.0.1" 1327 | safe-buffer "^5.0.1" 1328 | 1329 | hash.js@^1.0.0, hash.js@^1.0.3: 1330 | version "1.1.7" 1331 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" 1332 | integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== 1333 | dependencies: 1334 | inherits "^2.0.3" 1335 | minimalistic-assert "^1.0.1" 1336 | 1337 | hmac-drbg@^1.0.0: 1338 | version "1.0.1" 1339 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 1340 | integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE= 1341 | dependencies: 1342 | hash.js "^1.0.3" 1343 | minimalistic-assert "^1.0.0" 1344 | minimalistic-crypto-utils "^1.0.1" 1345 | 1346 | https-browserify@^1.0.0: 1347 | version "1.0.0" 1348 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" 1349 | 1350 | iconv-lite@^0.4.4: 1351 | version "0.4.24" 1352 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 1353 | dependencies: 1354 | safer-buffer ">= 2.1.2 < 3" 1355 | 1356 | ieee754@^1.1.4: 1357 | version "1.1.12" 1358 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.12.tgz#50bf24e5b9c8bb98af4964c941cdb0918da7b60b" 1359 | 1360 | iferr@^0.1.5: 1361 | version "0.1.5" 1362 | resolved "https://registry.yarnpkg.com/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501" 1363 | 1364 | ignore-walk@^3.0.1: 1365 | version "3.0.1" 1366 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" 1367 | dependencies: 1368 | minimatch "^3.0.4" 1369 | 1370 | ignore@^3.3.5: 1371 | version "3.3.10" 1372 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043" 1373 | integrity sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug== 1374 | 1375 | import-local@^2.0.0: 1376 | version "2.0.0" 1377 | resolved "https://registry.yarnpkg.com/import-local/-/import-local-2.0.0.tgz#55070be38a5993cf18ef6db7e961f5bee5c5a09d" 1378 | dependencies: 1379 | pkg-dir "^3.0.0" 1380 | resolve-cwd "^2.0.0" 1381 | 1382 | imurmurhash@^0.1.4: 1383 | version "0.1.4" 1384 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1385 | 1386 | indexof@0.0.1: 1387 | version "0.0.1" 1388 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 1389 | 1390 | infer-owner@^1.0.3: 1391 | version "1.0.4" 1392 | resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467" 1393 | integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A== 1394 | 1395 | inflight@^1.0.4: 1396 | version "1.0.6" 1397 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1398 | dependencies: 1399 | once "^1.3.0" 1400 | wrappy "1" 1401 | 1402 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.1, inherits@~2.0.3: 1403 | version "2.0.4" 1404 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1405 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1406 | 1407 | inherits@2.0.1: 1408 | version "2.0.1" 1409 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 1410 | 1411 | inherits@2.0.3: 1412 | version "2.0.3" 1413 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1414 | 1415 | ini@~1.3.0: 1416 | version "1.3.5" 1417 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1418 | 1419 | interpret@^1.1.0: 1420 | version "1.1.0" 1421 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.1.0.tgz#7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614" 1422 | 1423 | invert-kv@^2.0.0: 1424 | version "2.0.0" 1425 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-2.0.0.tgz#7393f5afa59ec9ff5f67a27620d11c226e3eec02" 1426 | 1427 | is-accessor-descriptor@^0.1.6: 1428 | version "0.1.6" 1429 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 1430 | dependencies: 1431 | kind-of "^3.0.2" 1432 | 1433 | is-accessor-descriptor@^1.0.0: 1434 | version "1.0.0" 1435 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 1436 | dependencies: 1437 | kind-of "^6.0.0" 1438 | 1439 | is-binary-path@^1.0.0: 1440 | version "1.0.1" 1441 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1442 | dependencies: 1443 | binary-extensions "^1.0.0" 1444 | 1445 | is-buffer@^1.1.5: 1446 | version "1.1.6" 1447 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1448 | 1449 | is-callable@^1.1.3, is-callable@^1.1.4: 1450 | version "1.1.4" 1451 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" 1452 | 1453 | is-data-descriptor@^0.1.4: 1454 | version "0.1.4" 1455 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 1456 | dependencies: 1457 | kind-of "^3.0.2" 1458 | 1459 | is-data-descriptor@^1.0.0: 1460 | version "1.0.0" 1461 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 1462 | dependencies: 1463 | kind-of "^6.0.0" 1464 | 1465 | is-date-object@^1.0.1: 1466 | version "1.0.1" 1467 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1468 | 1469 | is-descriptor@^0.1.0: 1470 | version "0.1.6" 1471 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 1472 | dependencies: 1473 | is-accessor-descriptor "^0.1.6" 1474 | is-data-descriptor "^0.1.4" 1475 | kind-of "^5.0.0" 1476 | 1477 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 1478 | version "1.0.2" 1479 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 1480 | dependencies: 1481 | is-accessor-descriptor "^1.0.0" 1482 | is-data-descriptor "^1.0.0" 1483 | kind-of "^6.0.2" 1484 | 1485 | is-extendable@^0.1.0, is-extendable@^0.1.1: 1486 | version "0.1.1" 1487 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1488 | 1489 | is-extendable@^1.0.1: 1490 | version "1.0.1" 1491 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 1492 | dependencies: 1493 | is-plain-object "^2.0.4" 1494 | 1495 | is-extglob@^2.1.0, is-extglob@^2.1.1: 1496 | version "2.1.1" 1497 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1498 | 1499 | is-fullwidth-code-point@^1.0.0: 1500 | version "1.0.0" 1501 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1502 | dependencies: 1503 | number-is-nan "^1.0.0" 1504 | 1505 | is-fullwidth-code-point@^2.0.0: 1506 | version "2.0.0" 1507 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1508 | 1509 | is-glob@^3.1.0: 1510 | version "3.1.0" 1511 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 1512 | dependencies: 1513 | is-extglob "^2.1.0" 1514 | 1515 | is-glob@^4.0.0: 1516 | version "4.0.0" 1517 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.0.tgz#9521c76845cc2610a85203ddf080a958c2ffabc0" 1518 | dependencies: 1519 | is-extglob "^2.1.1" 1520 | 1521 | is-glob@^4.0.1: 1522 | version "4.0.1" 1523 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" 1524 | integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== 1525 | dependencies: 1526 | is-extglob "^2.1.1" 1527 | 1528 | is-number@^3.0.0: 1529 | version "3.0.0" 1530 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1531 | dependencies: 1532 | kind-of "^3.0.2" 1533 | 1534 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: 1535 | version "2.0.4" 1536 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 1537 | dependencies: 1538 | isobject "^3.0.1" 1539 | 1540 | is-regex@^1.0.4: 1541 | version "1.0.4" 1542 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 1543 | dependencies: 1544 | has "^1.0.1" 1545 | 1546 | is-stream@^1.1.0: 1547 | version "1.1.0" 1548 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1549 | 1550 | is-symbol@^1.0.2: 1551 | version "1.0.2" 1552 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38" 1553 | dependencies: 1554 | has-symbols "^1.0.0" 1555 | 1556 | is-windows@^1.0.2: 1557 | version "1.0.2" 1558 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 1559 | 1560 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1561 | version "1.0.0" 1562 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1563 | 1564 | isexe@^2.0.0: 1565 | version "2.0.0" 1566 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1567 | 1568 | isobject@^2.0.0: 1569 | version "2.1.0" 1570 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1571 | dependencies: 1572 | isarray "1.0.0" 1573 | 1574 | isobject@^3.0.0, isobject@^3.0.1: 1575 | version "3.0.1" 1576 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 1577 | 1578 | js-tokens@^4.0.0: 1579 | version "4.0.0" 1580 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1581 | 1582 | jsesc@^2.5.1: 1583 | version "2.5.2" 1584 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 1585 | 1586 | json-parse-better-errors@^1.0.2: 1587 | version "1.0.2" 1588 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" 1589 | 1590 | json-schema-traverse@^0.4.1: 1591 | version "0.4.1" 1592 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 1593 | 1594 | json5@^0.5.0: 1595 | version "0.5.1" 1596 | resolved "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1597 | 1598 | json5@^1.0.1: 1599 | version "1.0.1" 1600 | resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" 1601 | integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== 1602 | dependencies: 1603 | minimist "^1.2.0" 1604 | 1605 | json5@^2.1.0: 1606 | version "2.1.0" 1607 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.0.tgz#e7a0c62c48285c628d20a10b85c89bb807c32850" 1608 | dependencies: 1609 | minimist "^1.2.0" 1610 | 1611 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 1612 | version "3.2.2" 1613 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1614 | dependencies: 1615 | is-buffer "^1.1.5" 1616 | 1617 | kind-of@^4.0.0: 1618 | version "4.0.0" 1619 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1620 | dependencies: 1621 | is-buffer "^1.1.5" 1622 | 1623 | kind-of@^5.0.0: 1624 | version "5.1.0" 1625 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 1626 | 1627 | kind-of@^6.0.0, kind-of@^6.0.2: 1628 | version "6.0.2" 1629 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 1630 | 1631 | lcid@^2.0.0: 1632 | version "2.0.0" 1633 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-2.0.0.tgz#6ef5d2df60e52f82eb228a4c373e8d1f397253cf" 1634 | dependencies: 1635 | invert-kv "^2.0.0" 1636 | 1637 | loader-runner@^2.3.0: 1638 | version "2.3.1" 1639 | resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.1.tgz#026f12fe7c3115992896ac02ba022ba92971b979" 1640 | 1641 | loader-utils@^1.0.2, loader-utils@^1.1.0: 1642 | version "1.1.0" 1643 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd" 1644 | dependencies: 1645 | big.js "^3.1.3" 1646 | emojis-list "^2.0.0" 1647 | json5 "^0.5.0" 1648 | 1649 | loader-utils@^1.2.3: 1650 | version "1.2.3" 1651 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.2.3.tgz#1ff5dc6911c9f0a062531a4c04b609406108c2c7" 1652 | integrity sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA== 1653 | dependencies: 1654 | big.js "^5.2.2" 1655 | emojis-list "^2.0.0" 1656 | json5 "^1.0.1" 1657 | 1658 | locate-path@^2.0.0: 1659 | version "2.0.0" 1660 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1661 | dependencies: 1662 | p-locate "^2.0.0" 1663 | path-exists "^3.0.0" 1664 | 1665 | locate-path@^3.0.0: 1666 | version "3.0.0" 1667 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" 1668 | dependencies: 1669 | p-locate "^3.0.0" 1670 | path-exists "^3.0.0" 1671 | 1672 | lodash.debounce@^4.0.8: 1673 | version "4.0.8" 1674 | resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" 1675 | 1676 | lodash@^4.17.10: 1677 | version "4.17.19" 1678 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.19.tgz#e48ddedbe30b3321783c5b4301fbd353bc1e4a4b" 1679 | integrity sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ== 1680 | 1681 | lru-cache@^4.1.3: 1682 | version "4.1.5" 1683 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" 1684 | dependencies: 1685 | pseudomap "^1.0.2" 1686 | yallist "^2.1.2" 1687 | 1688 | lru-cache@^5.1.1: 1689 | version "5.1.1" 1690 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" 1691 | integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== 1692 | dependencies: 1693 | yallist "^3.0.2" 1694 | 1695 | make-dir@^1.0.0: 1696 | version "1.3.0" 1697 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c" 1698 | dependencies: 1699 | pify "^3.0.0" 1700 | 1701 | make-dir@^2.0.0: 1702 | version "2.1.0" 1703 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" 1704 | integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== 1705 | dependencies: 1706 | pify "^4.0.1" 1707 | semver "^5.6.0" 1708 | 1709 | map-age-cleaner@^0.1.1: 1710 | version "0.1.3" 1711 | resolved "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a" 1712 | dependencies: 1713 | p-defer "^1.0.0" 1714 | 1715 | map-cache@^0.2.2: 1716 | version "0.2.2" 1717 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 1718 | 1719 | map-visit@^1.0.0: 1720 | version "1.0.0" 1721 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 1722 | dependencies: 1723 | object-visit "^1.0.0" 1724 | 1725 | md5.js@^1.3.4: 1726 | version "1.3.5" 1727 | resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f" 1728 | dependencies: 1729 | hash-base "^3.0.0" 1730 | inherits "^2.0.1" 1731 | safe-buffer "^5.1.2" 1732 | 1733 | mem@^4.0.0: 1734 | version "4.0.0" 1735 | resolved "https://registry.yarnpkg.com/mem/-/mem-4.0.0.tgz#6437690d9471678f6cc83659c00cbafcd6b0cdaf" 1736 | dependencies: 1737 | map-age-cleaner "^0.1.1" 1738 | mimic-fn "^1.0.0" 1739 | p-is-promise "^1.1.0" 1740 | 1741 | memory-fs@^0.4.0, memory-fs@~0.4.1: 1742 | version "0.4.1" 1743 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" 1744 | dependencies: 1745 | errno "^0.1.3" 1746 | readable-stream "^2.0.1" 1747 | 1748 | micromatch@^3.1.10, micromatch@^3.1.4, micromatch@^3.1.8: 1749 | version "3.1.10" 1750 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 1751 | dependencies: 1752 | arr-diff "^4.0.0" 1753 | array-unique "^0.3.2" 1754 | braces "^2.3.1" 1755 | define-property "^2.0.2" 1756 | extend-shallow "^3.0.2" 1757 | extglob "^2.0.4" 1758 | fragment-cache "^0.2.1" 1759 | kind-of "^6.0.2" 1760 | nanomatch "^1.2.9" 1761 | object.pick "^1.3.0" 1762 | regex-not "^1.0.0" 1763 | snapdragon "^0.8.1" 1764 | to-regex "^3.0.2" 1765 | 1766 | miller-rabin@^4.0.0: 1767 | version "4.0.1" 1768 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" 1769 | dependencies: 1770 | bn.js "^4.0.0" 1771 | brorand "^1.0.1" 1772 | 1773 | mimic-fn@^1.0.0: 1774 | version "1.2.0" 1775 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 1776 | 1777 | minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: 1778 | version "1.0.1" 1779 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" 1780 | integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== 1781 | 1782 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: 1783 | version "1.0.1" 1784 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 1785 | integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo= 1786 | 1787 | minimatch@^3.0.4: 1788 | version "3.0.4" 1789 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1790 | dependencies: 1791 | brace-expansion "^1.1.7" 1792 | 1793 | minimist@0.0.8: 1794 | version "0.0.8" 1795 | resolved "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1796 | 1797 | minimist@^1.2.0: 1798 | version "1.2.0" 1799 | resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1800 | 1801 | minipass@^2.2.1, minipass@^2.3.4: 1802 | version "2.3.5" 1803 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.5.tgz#cacebe492022497f656b0f0f51e2682a9ed2d848" 1804 | dependencies: 1805 | safe-buffer "^5.1.2" 1806 | yallist "^3.0.0" 1807 | 1808 | minizlib@^1.1.1: 1809 | version "1.1.1" 1810 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.1.1.tgz#6734acc045a46e61d596a43bb9d9cd326e19cc42" 1811 | dependencies: 1812 | minipass "^2.2.1" 1813 | 1814 | mississippi@^3.0.0: 1815 | version "3.0.0" 1816 | resolved "https://registry.yarnpkg.com/mississippi/-/mississippi-3.0.0.tgz#ea0a3291f97e0b5e8776b363d5f0a12d94c67022" 1817 | dependencies: 1818 | concat-stream "^1.5.0" 1819 | duplexify "^3.4.2" 1820 | end-of-stream "^1.1.0" 1821 | flush-write-stream "^1.0.0" 1822 | from2 "^2.1.0" 1823 | parallel-transform "^1.1.0" 1824 | pump "^3.0.0" 1825 | pumpify "^1.3.3" 1826 | stream-each "^1.1.0" 1827 | through2 "^2.0.0" 1828 | 1829 | mixin-deep@^1.2.0: 1830 | version "1.3.2" 1831 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" 1832 | dependencies: 1833 | for-in "^1.0.2" 1834 | is-extendable "^1.0.1" 1835 | 1836 | mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0: 1837 | version "0.5.1" 1838 | resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1839 | dependencies: 1840 | minimist "0.0.8" 1841 | 1842 | move-concurrently@^1.0.1: 1843 | version "1.0.1" 1844 | resolved "https://registry.yarnpkg.com/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92" 1845 | dependencies: 1846 | aproba "^1.1.1" 1847 | copy-concurrently "^1.0.0" 1848 | fs-write-stream-atomic "^1.0.8" 1849 | mkdirp "^0.5.1" 1850 | rimraf "^2.5.4" 1851 | run-queue "^1.0.3" 1852 | 1853 | ms@2.0.0: 1854 | version "2.0.0" 1855 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1856 | 1857 | ms@^2.1.1: 1858 | version "2.1.1" 1859 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" 1860 | 1861 | nan@^2.9.2: 1862 | version "2.11.1" 1863 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.11.1.tgz#90e22bccb8ca57ea4cd37cc83d3819b52eea6766" 1864 | 1865 | nanomatch@^1.2.9: 1866 | version "1.2.13" 1867 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" 1868 | dependencies: 1869 | arr-diff "^4.0.0" 1870 | array-unique "^0.3.2" 1871 | define-property "^2.0.2" 1872 | extend-shallow "^3.0.2" 1873 | fragment-cache "^0.2.1" 1874 | is-windows "^1.0.2" 1875 | kind-of "^6.0.2" 1876 | object.pick "^1.3.0" 1877 | regex-not "^1.0.0" 1878 | snapdragon "^0.8.1" 1879 | to-regex "^3.0.1" 1880 | 1881 | needle@^2.2.1: 1882 | version "2.2.4" 1883 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.4.tgz#51931bff82533b1928b7d1d69e01f1b00ffd2a4e" 1884 | dependencies: 1885 | debug "^2.1.2" 1886 | iconv-lite "^0.4.4" 1887 | sax "^1.2.4" 1888 | 1889 | neo-async@^2.5.0: 1890 | version "2.6.0" 1891 | resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.0.tgz#b9d15e4d71c6762908654b5183ed38b753340835" 1892 | 1893 | nice-try@^1.0.4: 1894 | version "1.0.5" 1895 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" 1896 | 1897 | node-libs-browser@^2.0.0: 1898 | version "2.1.0" 1899 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.1.0.tgz#5f94263d404f6e44767d726901fff05478d600df" 1900 | dependencies: 1901 | assert "^1.1.1" 1902 | browserify-zlib "^0.2.0" 1903 | buffer "^4.3.0" 1904 | console-browserify "^1.1.0" 1905 | constants-browserify "^1.0.0" 1906 | crypto-browserify "^3.11.0" 1907 | domain-browser "^1.1.1" 1908 | events "^1.0.0" 1909 | https-browserify "^1.0.0" 1910 | os-browserify "^0.3.0" 1911 | path-browserify "0.0.0" 1912 | process "^0.11.10" 1913 | punycode "^1.2.4" 1914 | querystring-es3 "^0.2.0" 1915 | readable-stream "^2.3.3" 1916 | stream-browserify "^2.0.1" 1917 | stream-http "^2.7.2" 1918 | string_decoder "^1.0.0" 1919 | timers-browserify "^2.0.4" 1920 | tty-browserify "0.0.0" 1921 | url "^0.11.0" 1922 | util "^0.10.3" 1923 | vm-browserify "0.0.4" 1924 | 1925 | node-pre-gyp@^0.10.0: 1926 | version "0.10.3" 1927 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.10.3.tgz#3070040716afdc778747b61b6887bf78880b80fc" 1928 | dependencies: 1929 | detect-libc "^1.0.2" 1930 | mkdirp "^0.5.1" 1931 | needle "^2.2.1" 1932 | nopt "^4.0.1" 1933 | npm-packlist "^1.1.6" 1934 | npmlog "^4.0.2" 1935 | rc "^1.2.7" 1936 | rimraf "^2.6.1" 1937 | semver "^5.3.0" 1938 | tar "^4" 1939 | 1940 | nopt@^4.0.1: 1941 | version "4.0.1" 1942 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1943 | dependencies: 1944 | abbrev "1" 1945 | osenv "^0.1.4" 1946 | 1947 | normalize-path@^2.1.1: 1948 | version "2.1.1" 1949 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1950 | dependencies: 1951 | remove-trailing-separator "^1.0.1" 1952 | 1953 | normalize-path@^3.0.0: 1954 | version "3.0.0" 1955 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 1956 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 1957 | 1958 | npm-bundled@^1.0.1: 1959 | version "1.0.5" 1960 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.5.tgz#3c1732b7ba936b3a10325aef616467c0ccbcc979" 1961 | 1962 | npm-packlist@^1.1.6: 1963 | version "1.1.12" 1964 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.1.12.tgz#22bde2ebc12e72ca482abd67afc51eb49377243a" 1965 | dependencies: 1966 | ignore-walk "^3.0.1" 1967 | npm-bundled "^1.0.1" 1968 | 1969 | npm-run-path@^2.0.0: 1970 | version "2.0.2" 1971 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 1972 | dependencies: 1973 | path-key "^2.0.0" 1974 | 1975 | npmlog@^4.0.2: 1976 | version "4.1.2" 1977 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1978 | dependencies: 1979 | are-we-there-yet "~1.1.2" 1980 | console-control-strings "~1.1.0" 1981 | gauge "~2.7.3" 1982 | set-blocking "~2.0.0" 1983 | 1984 | number-is-nan@^1.0.0: 1985 | version "1.0.1" 1986 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1987 | 1988 | object-assign@^4.1.0: 1989 | version "4.1.1" 1990 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1991 | 1992 | object-copy@^0.1.0: 1993 | version "0.1.0" 1994 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 1995 | dependencies: 1996 | copy-descriptor "^0.1.0" 1997 | define-property "^0.2.5" 1998 | kind-of "^3.0.3" 1999 | 2000 | object-keys@^1.0.12: 2001 | version "1.0.12" 2002 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.12.tgz#09c53855377575310cca62f55bb334abff7b3ed2" 2003 | 2004 | object-visit@^1.0.0: 2005 | version "1.0.1" 2006 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 2007 | dependencies: 2008 | isobject "^3.0.0" 2009 | 2010 | object.getownpropertydescriptors@^2.0.3: 2011 | version "2.0.3" 2012 | resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" 2013 | dependencies: 2014 | define-properties "^1.1.2" 2015 | es-abstract "^1.5.1" 2016 | 2017 | object.pick@^1.3.0: 2018 | version "1.3.0" 2019 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 2020 | dependencies: 2021 | isobject "^3.0.1" 2022 | 2023 | once@^1.3.0, once@^1.3.1, once@^1.4.0: 2024 | version "1.4.0" 2025 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2026 | dependencies: 2027 | wrappy "1" 2028 | 2029 | os-browserify@^0.3.0: 2030 | version "0.3.0" 2031 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" 2032 | 2033 | os-homedir@^1.0.0: 2034 | version "1.0.2" 2035 | resolved "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2036 | 2037 | os-locale@^3.0.0: 2038 | version "3.0.1" 2039 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-3.0.1.tgz#3b014fbf01d87f60a1e5348d80fe870dc82c4620" 2040 | dependencies: 2041 | execa "^0.10.0" 2042 | lcid "^2.0.0" 2043 | mem "^4.0.0" 2044 | 2045 | os-tmpdir@^1.0.0: 2046 | version "1.0.2" 2047 | resolved "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2048 | 2049 | osenv@^0.1.4: 2050 | version "0.1.5" 2051 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 2052 | dependencies: 2053 | os-homedir "^1.0.0" 2054 | os-tmpdir "^1.0.0" 2055 | 2056 | p-defer@^1.0.0: 2057 | version "1.0.0" 2058 | resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c" 2059 | 2060 | p-finally@^1.0.0: 2061 | version "1.0.0" 2062 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2063 | 2064 | p-is-promise@^1.1.0: 2065 | version "1.1.0" 2066 | resolved "https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz#9c9456989e9f6588017b0434d56097675c3da05e" 2067 | 2068 | p-limit@^1.1.0: 2069 | version "1.3.0" 2070 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" 2071 | dependencies: 2072 | p-try "^1.0.0" 2073 | 2074 | p-limit@^2.0.0: 2075 | version "2.0.0" 2076 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.0.0.tgz#e624ed54ee8c460a778b3c9f3670496ff8a57aec" 2077 | dependencies: 2078 | p-try "^2.0.0" 2079 | 2080 | p-limit@^2.2.1: 2081 | version "2.2.1" 2082 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.1.tgz#aa07a788cc3151c939b5131f63570f0dd2009537" 2083 | integrity sha512-85Tk+90UCVWvbDavCLKPOLC9vvY8OwEX/RtKF+/1OADJMVlFfEHOiMTPVyxg7mk/dKa+ipdHm0OUkTvCpMTuwg== 2084 | dependencies: 2085 | p-try "^2.0.0" 2086 | 2087 | p-locate@^2.0.0: 2088 | version "2.0.0" 2089 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2090 | dependencies: 2091 | p-limit "^1.1.0" 2092 | 2093 | p-locate@^3.0.0: 2094 | version "3.0.0" 2095 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" 2096 | dependencies: 2097 | p-limit "^2.0.0" 2098 | 2099 | p-try@^1.0.0: 2100 | version "1.0.0" 2101 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 2102 | 2103 | p-try@^2.0.0: 2104 | version "2.0.0" 2105 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.0.0.tgz#85080bb87c64688fa47996fe8f7dfbe8211760b1" 2106 | 2107 | pako@~1.0.5: 2108 | version "1.0.7" 2109 | resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.7.tgz#2473439021b57f1516c82f58be7275ad8ef1bb27" 2110 | 2111 | parallel-transform@^1.1.0: 2112 | version "1.1.0" 2113 | resolved "https://registry.yarnpkg.com/parallel-transform/-/parallel-transform-1.1.0.tgz#d410f065b05da23081fcd10f28854c29bda33b06" 2114 | dependencies: 2115 | cyclist "~0.2.2" 2116 | inherits "^2.0.3" 2117 | readable-stream "^2.1.5" 2118 | 2119 | parse-asn1@^5.0.0: 2120 | version "5.1.1" 2121 | resolved "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.1.tgz#f6bf293818332bd0dab54efb16087724745e6ca8" 2122 | dependencies: 2123 | asn1.js "^4.0.0" 2124 | browserify-aes "^1.0.0" 2125 | create-hash "^1.1.0" 2126 | evp_bytestokey "^1.0.0" 2127 | pbkdf2 "^3.0.3" 2128 | 2129 | pascalcase@^0.1.1: 2130 | version "0.1.1" 2131 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 2132 | 2133 | path-browserify@0.0.0: 2134 | version "0.0.0" 2135 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 2136 | 2137 | path-dirname@^1.0.0: 2138 | version "1.0.2" 2139 | resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" 2140 | 2141 | path-exists@^3.0.0: 2142 | version "3.0.0" 2143 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2144 | 2145 | path-is-absolute@^1.0.0: 2146 | version "1.0.1" 2147 | resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2148 | 2149 | path-key@^2.0.0, path-key@^2.0.1: 2150 | version "2.0.1" 2151 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2152 | 2153 | path-parse@^1.0.5: 2154 | version "1.0.6" 2155 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 2156 | 2157 | path-type@^3.0.0: 2158 | version "3.0.0" 2159 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" 2160 | integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== 2161 | dependencies: 2162 | pify "^3.0.0" 2163 | 2164 | pbkdf2@^3.0.3: 2165 | version "3.0.17" 2166 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.17.tgz#976c206530617b14ebb32114239f7b09336e93a6" 2167 | dependencies: 2168 | create-hash "^1.1.2" 2169 | create-hmac "^1.1.4" 2170 | ripemd160 "^2.0.1" 2171 | safe-buffer "^5.0.1" 2172 | sha.js "^2.4.8" 2173 | 2174 | pify@^3.0.0: 2175 | version "3.0.0" 2176 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 2177 | 2178 | pify@^4.0.1: 2179 | version "4.0.1" 2180 | resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" 2181 | integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== 2182 | 2183 | pkg-dir@^2.0.0: 2184 | version "2.0.0" 2185 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" 2186 | dependencies: 2187 | find-up "^2.1.0" 2188 | 2189 | pkg-dir@^3.0.0: 2190 | version "3.0.0" 2191 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3" 2192 | dependencies: 2193 | find-up "^3.0.0" 2194 | 2195 | posix-character-classes@^0.1.0: 2196 | version "0.1.1" 2197 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 2198 | 2199 | process-nextick-args@~2.0.0: 2200 | version "2.0.0" 2201 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 2202 | 2203 | process@^0.11.10: 2204 | version "0.11.10" 2205 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" 2206 | 2207 | promise-inflight@^1.0.1: 2208 | version "1.0.1" 2209 | resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" 2210 | 2211 | prr@~1.0.1: 2212 | version "1.0.1" 2213 | resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" 2214 | 2215 | pseudomap@^1.0.2: 2216 | version "1.0.2" 2217 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2218 | 2219 | public-encrypt@^4.0.0: 2220 | version "4.0.3" 2221 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0" 2222 | dependencies: 2223 | bn.js "^4.1.0" 2224 | browserify-rsa "^4.0.0" 2225 | create-hash "^1.1.0" 2226 | parse-asn1 "^5.0.0" 2227 | randombytes "^2.0.1" 2228 | safe-buffer "^5.1.2" 2229 | 2230 | pump@^2.0.0: 2231 | version "2.0.1" 2232 | resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909" 2233 | dependencies: 2234 | end-of-stream "^1.1.0" 2235 | once "^1.3.1" 2236 | 2237 | pump@^3.0.0: 2238 | version "3.0.0" 2239 | resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" 2240 | dependencies: 2241 | end-of-stream "^1.1.0" 2242 | once "^1.3.1" 2243 | 2244 | pumpify@^1.3.3: 2245 | version "1.5.1" 2246 | resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce" 2247 | dependencies: 2248 | duplexify "^3.6.0" 2249 | inherits "^2.0.3" 2250 | pump "^2.0.0" 2251 | 2252 | punycode@1.3.2: 2253 | version "1.3.2" 2254 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 2255 | 2256 | punycode@^1.2.4: 2257 | version "1.4.1" 2258 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2259 | 2260 | punycode@^2.1.0: 2261 | version "2.1.1" 2262 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 2263 | 2264 | querystring-es3@^0.2.0: 2265 | version "0.2.1" 2266 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 2267 | 2268 | querystring@0.2.0: 2269 | version "0.2.0" 2270 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 2271 | 2272 | randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: 2273 | version "2.0.6" 2274 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.6.tgz#d302c522948588848a8d300c932b44c24231da80" 2275 | dependencies: 2276 | safe-buffer "^5.1.0" 2277 | 2278 | randomfill@^1.0.3: 2279 | version "1.0.4" 2280 | resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458" 2281 | dependencies: 2282 | randombytes "^2.0.5" 2283 | safe-buffer "^5.1.0" 2284 | 2285 | rc@^1.2.7: 2286 | version "1.2.8" 2287 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 2288 | dependencies: 2289 | deep-extend "^0.6.0" 2290 | ini "~1.3.0" 2291 | minimist "^1.2.0" 2292 | strip-json-comments "~2.0.1" 2293 | 2294 | "readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.4, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.6, readable-stream@~2.3.6: 2295 | version "2.3.6" 2296 | resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 2297 | dependencies: 2298 | core-util-is "~1.0.0" 2299 | inherits "~2.0.3" 2300 | isarray "~1.0.0" 2301 | process-nextick-args "~2.0.0" 2302 | safe-buffer "~5.1.1" 2303 | string_decoder "~1.1.1" 2304 | util-deprecate "~1.0.1" 2305 | 2306 | readdirp@^2.0.0: 2307 | version "2.2.1" 2308 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525" 2309 | dependencies: 2310 | graceful-fs "^4.1.11" 2311 | micromatch "^3.1.10" 2312 | readable-stream "^2.0.2" 2313 | 2314 | regex-not@^1.0.0, regex-not@^1.0.2: 2315 | version "1.0.2" 2316 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 2317 | dependencies: 2318 | extend-shallow "^3.0.2" 2319 | safe-regex "^1.1.0" 2320 | 2321 | remove-trailing-separator@^1.0.1: 2322 | version "1.1.0" 2323 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2324 | 2325 | repeat-element@^1.1.2: 2326 | version "1.1.3" 2327 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" 2328 | 2329 | repeat-string@^1.6.1: 2330 | version "1.6.1" 2331 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2332 | 2333 | require-directory@^2.1.1: 2334 | version "2.1.1" 2335 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2336 | 2337 | require-main-filename@^1.0.1: 2338 | version "1.0.1" 2339 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2340 | 2341 | resolve-cwd@^2.0.0: 2342 | version "2.0.0" 2343 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" 2344 | dependencies: 2345 | resolve-from "^3.0.0" 2346 | 2347 | resolve-from@^3.0.0: 2348 | version "3.0.0" 2349 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" 2350 | 2351 | resolve-url@^0.2.1: 2352 | version "0.2.1" 2353 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 2354 | 2355 | resolve@^1.3.2: 2356 | version "1.8.1" 2357 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.8.1.tgz#82f1ec19a423ac1fbd080b0bab06ba36e84a7a26" 2358 | dependencies: 2359 | path-parse "^1.0.5" 2360 | 2361 | ret@~0.1.10: 2362 | version "0.1.15" 2363 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 2364 | 2365 | rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.2: 2366 | version "2.6.2" 2367 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2368 | dependencies: 2369 | glob "^7.0.5" 2370 | 2371 | rimraf@^2.6.3: 2372 | version "2.7.1" 2373 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" 2374 | integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== 2375 | dependencies: 2376 | glob "^7.1.3" 2377 | 2378 | ripemd160@^2.0.0, ripemd160@^2.0.1: 2379 | version "2.0.2" 2380 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" 2381 | dependencies: 2382 | hash-base "^3.0.0" 2383 | inherits "^2.0.1" 2384 | 2385 | run-queue@^1.0.0, run-queue@^1.0.3: 2386 | version "1.0.3" 2387 | resolved "https://registry.yarnpkg.com/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47" 2388 | dependencies: 2389 | aproba "^1.1.1" 2390 | 2391 | safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2392 | version "5.1.2" 2393 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 2394 | 2395 | safe-regex@^1.1.0: 2396 | version "1.1.0" 2397 | resolved "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 2398 | dependencies: 2399 | ret "~0.1.10" 2400 | 2401 | "safer-buffer@>= 2.1.2 < 3": 2402 | version "2.1.2" 2403 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 2404 | 2405 | sax@^1.2.4: 2406 | version "1.2.4" 2407 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2408 | 2409 | schema-utils@^0.4.4: 2410 | version "0.4.7" 2411 | resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-0.4.7.tgz#ba74f597d2be2ea880131746ee17d0a093c68187" 2412 | dependencies: 2413 | ajv "^6.1.0" 2414 | ajv-keywords "^3.1.0" 2415 | 2416 | schema-utils@^1.0.0: 2417 | version "1.0.0" 2418 | resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-1.0.0.tgz#0b79a93204d7b600d4b2850d1f66c2a34951c770" 2419 | dependencies: 2420 | ajv "^6.1.0" 2421 | ajv-errors "^1.0.0" 2422 | ajv-keywords "^3.1.0" 2423 | 2424 | semver@^5.3.0, semver@^5.4.1, semver@^5.5.0: 2425 | version "5.6.0" 2426 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.6.0.tgz#7e74256fbaa49c75aa7c7a205cc22799cac80004" 2427 | 2428 | semver@^5.6.0: 2429 | version "5.7.1" 2430 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 2431 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 2432 | 2433 | serialize-javascript@^1.4.0: 2434 | version "1.5.0" 2435 | resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-1.5.0.tgz#1aa336162c88a890ddad5384baebc93a655161fe" 2436 | 2437 | serialize-javascript@^2.1.0: 2438 | version "2.1.0" 2439 | resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-2.1.0.tgz#9310276819efd0eb128258bb341957f6eb2fc570" 2440 | integrity sha512-a/mxFfU00QT88umAJQsNWOnUKckhNCqOl028N48e7wFmo2/EHpTo9Wso+iJJCMrQnmFvcjto5RJdAHEvVhcyUQ== 2441 | 2442 | set-blocking@^2.0.0, set-blocking@~2.0.0: 2443 | version "2.0.0" 2444 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2445 | 2446 | set-value@^0.4.3: 2447 | version "0.4.3" 2448 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" 2449 | dependencies: 2450 | extend-shallow "^2.0.1" 2451 | is-extendable "^0.1.1" 2452 | is-plain-object "^2.0.1" 2453 | to-object-path "^0.3.0" 2454 | 2455 | set-value@^2.0.0: 2456 | version "2.0.0" 2457 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" 2458 | dependencies: 2459 | extend-shallow "^2.0.1" 2460 | is-extendable "^0.1.1" 2461 | is-plain-object "^2.0.3" 2462 | split-string "^3.0.1" 2463 | 2464 | setimmediate@^1.0.4: 2465 | version "1.0.5" 2466 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 2467 | 2468 | sha.js@^2.4.0, sha.js@^2.4.8: 2469 | version "2.4.11" 2470 | resolved "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" 2471 | dependencies: 2472 | inherits "^2.0.1" 2473 | safe-buffer "^5.0.1" 2474 | 2475 | shebang-command@^1.2.0: 2476 | version "1.2.0" 2477 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2478 | dependencies: 2479 | shebang-regex "^1.0.0" 2480 | 2481 | shebang-regex@^1.0.0: 2482 | version "1.0.0" 2483 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2484 | 2485 | signal-exit@^3.0.0: 2486 | version "3.0.2" 2487 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2488 | 2489 | slash@^1.0.0: 2490 | version "1.0.0" 2491 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2492 | integrity sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU= 2493 | 2494 | snapdragon-node@^2.0.1: 2495 | version "2.1.1" 2496 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 2497 | dependencies: 2498 | define-property "^1.0.0" 2499 | isobject "^3.0.0" 2500 | snapdragon-util "^3.0.1" 2501 | 2502 | snapdragon-util@^3.0.1: 2503 | version "3.0.1" 2504 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 2505 | dependencies: 2506 | kind-of "^3.2.0" 2507 | 2508 | snapdragon@^0.8.1: 2509 | version "0.8.2" 2510 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 2511 | dependencies: 2512 | base "^0.11.1" 2513 | debug "^2.2.0" 2514 | define-property "^0.2.5" 2515 | extend-shallow "^2.0.1" 2516 | map-cache "^0.2.2" 2517 | source-map "^0.5.6" 2518 | source-map-resolve "^0.5.0" 2519 | use "^3.1.0" 2520 | 2521 | source-list-map@^2.0.0: 2522 | version "2.0.1" 2523 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34" 2524 | 2525 | source-map-resolve@^0.5.0: 2526 | version "0.5.2" 2527 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" 2528 | dependencies: 2529 | atob "^2.1.1" 2530 | decode-uri-component "^0.2.0" 2531 | resolve-url "^0.2.1" 2532 | source-map-url "^0.4.0" 2533 | urix "^0.1.0" 2534 | 2535 | source-map-support@~0.5.6: 2536 | version "0.5.9" 2537 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.9.tgz#41bc953b2534267ea2d605bccfa7bfa3111ced5f" 2538 | dependencies: 2539 | buffer-from "^1.0.0" 2540 | source-map "^0.6.0" 2541 | 2542 | source-map-url@^0.4.0: 2543 | version "0.4.0" 2544 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 2545 | 2546 | source-map@^0.5.0, source-map@^0.5.6: 2547 | version "0.5.7" 2548 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2549 | 2550 | source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: 2551 | version "0.6.1" 2552 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2553 | 2554 | split-string@^3.0.1, split-string@^3.0.2: 2555 | version "3.1.0" 2556 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 2557 | dependencies: 2558 | extend-shallow "^3.0.0" 2559 | 2560 | ssri@^6.0.0, ssri@^6.0.1: 2561 | version "6.0.1" 2562 | resolved "https://registry.yarnpkg.com/ssri/-/ssri-6.0.1.tgz#2a3c41b28dd45b62b63676ecb74001265ae9edd8" 2563 | dependencies: 2564 | figgy-pudding "^3.5.1" 2565 | 2566 | static-extend@^0.1.1: 2567 | version "0.1.2" 2568 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 2569 | dependencies: 2570 | define-property "^0.2.5" 2571 | object-copy "^0.1.0" 2572 | 2573 | stream-browserify@^2.0.1: 2574 | version "2.0.1" 2575 | resolved "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" 2576 | dependencies: 2577 | inherits "~2.0.1" 2578 | readable-stream "^2.0.2" 2579 | 2580 | stream-each@^1.1.0: 2581 | version "1.2.3" 2582 | resolved "https://registry.yarnpkg.com/stream-each/-/stream-each-1.2.3.tgz#ebe27a0c389b04fbcc233642952e10731afa9bae" 2583 | dependencies: 2584 | end-of-stream "^1.1.0" 2585 | stream-shift "^1.0.0" 2586 | 2587 | stream-http@^2.7.2: 2588 | version "2.8.3" 2589 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc" 2590 | dependencies: 2591 | builtin-status-codes "^3.0.0" 2592 | inherits "^2.0.1" 2593 | readable-stream "^2.3.6" 2594 | to-arraybuffer "^1.0.0" 2595 | xtend "^4.0.0" 2596 | 2597 | stream-shift@^1.0.0: 2598 | version "1.0.0" 2599 | resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" 2600 | 2601 | string-width@^1.0.1: 2602 | version "1.0.2" 2603 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2604 | dependencies: 2605 | code-point-at "^1.0.0" 2606 | is-fullwidth-code-point "^1.0.0" 2607 | strip-ansi "^3.0.0" 2608 | 2609 | "string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.1: 2610 | version "2.1.1" 2611 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2612 | dependencies: 2613 | is-fullwidth-code-point "^2.0.0" 2614 | strip-ansi "^4.0.0" 2615 | 2616 | string_decoder@^1.0.0: 2617 | version "1.2.0" 2618 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.2.0.tgz#fe86e738b19544afe70469243b2a1ee9240eae8d" 2619 | dependencies: 2620 | safe-buffer "~5.1.0" 2621 | 2622 | string_decoder@~1.1.1: 2623 | version "1.1.1" 2624 | resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 2625 | dependencies: 2626 | safe-buffer "~5.1.0" 2627 | 2628 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2629 | version "3.0.1" 2630 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2631 | dependencies: 2632 | ansi-regex "^2.0.0" 2633 | 2634 | strip-ansi@^4.0.0: 2635 | version "4.0.0" 2636 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2637 | dependencies: 2638 | ansi-regex "^3.0.0" 2639 | 2640 | strip-eof@^1.0.0: 2641 | version "1.0.0" 2642 | resolved "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 2643 | 2644 | strip-json-comments@~2.0.1: 2645 | version "2.0.1" 2646 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2647 | 2648 | supports-color@^5.3.0, supports-color@^5.5.0: 2649 | version "5.5.0" 2650 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 2651 | dependencies: 2652 | has-flag "^3.0.0" 2653 | 2654 | tapable@^1.0.0, tapable@^1.1.0: 2655 | version "1.1.1" 2656 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.1.tgz#4d297923c5a72a42360de2ab52dadfaaec00018e" 2657 | 2658 | tar@^4: 2659 | version "4.4.8" 2660 | resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.8.tgz#b19eec3fde2a96e64666df9fdb40c5ca1bc3747d" 2661 | dependencies: 2662 | chownr "^1.1.1" 2663 | fs-minipass "^1.2.5" 2664 | minipass "^2.3.4" 2665 | minizlib "^1.1.1" 2666 | mkdirp "^0.5.0" 2667 | safe-buffer "^5.1.2" 2668 | yallist "^3.0.2" 2669 | 2670 | terser-webpack-plugin@^1.1.0: 2671 | version "1.1.0" 2672 | resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.1.0.tgz#cf7c25a1eee25bf121f4a587bb9e004e3f80e528" 2673 | dependencies: 2674 | cacache "^11.0.2" 2675 | find-cache-dir "^2.0.0" 2676 | schema-utils "^1.0.0" 2677 | serialize-javascript "^1.4.0" 2678 | source-map "^0.6.1" 2679 | terser "^3.8.1" 2680 | webpack-sources "^1.1.0" 2681 | worker-farm "^1.5.2" 2682 | 2683 | terser@^3.8.1: 2684 | version "3.11.0" 2685 | resolved "https://registry.yarnpkg.com/terser/-/terser-3.11.0.tgz#60782893e1f4d6788acc696351f40636d0e37af0" 2686 | dependencies: 2687 | commander "~2.17.1" 2688 | source-map "~0.6.1" 2689 | source-map-support "~0.5.6" 2690 | 2691 | through2@^2.0.0: 2692 | version "2.0.5" 2693 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" 2694 | dependencies: 2695 | readable-stream "~2.3.6" 2696 | xtend "~4.0.1" 2697 | 2698 | timers-browserify@^2.0.4: 2699 | version "2.0.10" 2700 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.10.tgz#1d28e3d2aadf1d5a5996c4e9f95601cd053480ae" 2701 | dependencies: 2702 | setimmediate "^1.0.4" 2703 | 2704 | to-arraybuffer@^1.0.0: 2705 | version "1.0.1" 2706 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 2707 | 2708 | to-fast-properties@^2.0.0: 2709 | version "2.0.0" 2710 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 2711 | 2712 | to-object-path@^0.3.0: 2713 | version "0.3.0" 2714 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 2715 | dependencies: 2716 | kind-of "^3.0.2" 2717 | 2718 | to-regex-range@^2.1.0: 2719 | version "2.1.1" 2720 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 2721 | dependencies: 2722 | is-number "^3.0.0" 2723 | repeat-string "^1.6.1" 2724 | 2725 | to-regex@^3.0.1, to-regex@^3.0.2: 2726 | version "3.0.2" 2727 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 2728 | dependencies: 2729 | define-property "^2.0.2" 2730 | extend-shallow "^3.0.2" 2731 | regex-not "^1.0.2" 2732 | safe-regex "^1.1.0" 2733 | 2734 | trim-right@^1.0.1: 2735 | version "1.0.1" 2736 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2737 | 2738 | tslib@^1.9.0: 2739 | version "1.9.3" 2740 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.3.tgz#d7e4dd79245d85428c4d7e4822a79917954ca286" 2741 | 2742 | tty-browserify@0.0.0: 2743 | version "0.0.0" 2744 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 2745 | 2746 | typedarray@^0.0.6: 2747 | version "0.0.6" 2748 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 2749 | 2750 | typescript@^3.7.3: 2751 | version "3.7.3" 2752 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.7.3.tgz#b36840668a16458a7025b9eabfad11b66ab85c69" 2753 | integrity sha512-Mcr/Qk7hXqFBXMN7p7Lusj1ktCBydylfQM/FZCk5glCNQJrCUKPkMHdo9R0MTFWsC/4kPFvDS0fDPvukfCkFsw== 2754 | 2755 | union-value@^1.0.0: 2756 | version "1.0.0" 2757 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" 2758 | dependencies: 2759 | arr-union "^3.1.0" 2760 | get-value "^2.0.6" 2761 | is-extendable "^0.1.1" 2762 | set-value "^0.4.3" 2763 | 2764 | unique-filename@^1.1.0, unique-filename@^1.1.1: 2765 | version "1.1.1" 2766 | resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230" 2767 | dependencies: 2768 | unique-slug "^2.0.0" 2769 | 2770 | unique-slug@^2.0.0: 2771 | version "2.0.1" 2772 | resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.1.tgz#5e9edc6d1ce8fb264db18a507ef9bd8544451ca6" 2773 | dependencies: 2774 | imurmurhash "^0.1.4" 2775 | 2776 | unset-value@^1.0.0: 2777 | version "1.0.0" 2778 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 2779 | dependencies: 2780 | has-value "^0.3.1" 2781 | isobject "^3.0.0" 2782 | 2783 | upath@^1.0.5: 2784 | version "1.1.0" 2785 | resolved "https://registry.yarnpkg.com/upath/-/upath-1.1.0.tgz#35256597e46a581db4793d0ce47fa9aebfc9fabd" 2786 | 2787 | uri-js@^4.2.2: 2788 | version "4.2.2" 2789 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" 2790 | dependencies: 2791 | punycode "^2.1.0" 2792 | 2793 | urix@^0.1.0: 2794 | version "0.1.0" 2795 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 2796 | 2797 | url@^0.11.0: 2798 | version "0.11.0" 2799 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 2800 | dependencies: 2801 | punycode "1.3.2" 2802 | querystring "0.2.0" 2803 | 2804 | use@^3.1.0: 2805 | version "3.1.1" 2806 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" 2807 | 2808 | util-deprecate@~1.0.1: 2809 | version "1.0.2" 2810 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2811 | 2812 | util.promisify@^1.0.0: 2813 | version "1.0.0" 2814 | resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" 2815 | dependencies: 2816 | define-properties "^1.1.2" 2817 | object.getownpropertydescriptors "^2.0.3" 2818 | 2819 | util@0.10.3: 2820 | version "0.10.3" 2821 | resolved "https://registry.npmjs.org/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 2822 | dependencies: 2823 | inherits "2.0.1" 2824 | 2825 | util@^0.10.3: 2826 | version "0.10.4" 2827 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.4.tgz#3aa0125bfe668a4672de58857d3ace27ecb76901" 2828 | dependencies: 2829 | inherits "2.0.3" 2830 | 2831 | uuid@^3.3.2: 2832 | version "3.3.3" 2833 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.3.tgz#4568f0216e78760ee1dbf3a4d2cf53e224112866" 2834 | integrity sha512-pW0No1RGHgzlpHJO1nsVrHKpOEIxkGg1xB+v0ZmdNH5OAeAwzAVrCnI2/6Mtx+Uys6iaylxa+D3g4j63IKKjSQ== 2835 | 2836 | v8-compile-cache@^2.0.2: 2837 | version "2.0.2" 2838 | resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.0.2.tgz#a428b28bb26790734c4fc8bc9fa106fccebf6a6c" 2839 | 2840 | vm-browserify@0.0.4: 2841 | version "0.0.4" 2842 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 2843 | dependencies: 2844 | indexof "0.0.1" 2845 | 2846 | watchpack@^1.5.0: 2847 | version "1.6.0" 2848 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.6.0.tgz#4bc12c2ebe8aa277a71f1d3f14d685c7b446cd00" 2849 | dependencies: 2850 | chokidar "^2.0.2" 2851 | graceful-fs "^4.1.2" 2852 | neo-async "^2.5.0" 2853 | 2854 | webpack-cli@^3.1.2: 2855 | version "3.1.2" 2856 | resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-3.1.2.tgz#17d7e01b77f89f884a2bbf9db545f0f6a648e746" 2857 | dependencies: 2858 | chalk "^2.4.1" 2859 | cross-spawn "^6.0.5" 2860 | enhanced-resolve "^4.1.0" 2861 | global-modules-path "^2.3.0" 2862 | import-local "^2.0.0" 2863 | interpret "^1.1.0" 2864 | loader-utils "^1.1.0" 2865 | supports-color "^5.5.0" 2866 | v8-compile-cache "^2.0.2" 2867 | yargs "^12.0.2" 2868 | 2869 | webpack-log@^2.0.0: 2870 | version "2.0.0" 2871 | resolved "https://registry.yarnpkg.com/webpack-log/-/webpack-log-2.0.0.tgz#5b7928e0637593f119d32f6227c1e0ac31e1b47f" 2872 | integrity sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg== 2873 | dependencies: 2874 | ansi-colors "^3.0.0" 2875 | uuid "^3.3.2" 2876 | 2877 | webpack-sources@^1.1.0, webpack-sources@^1.3.0: 2878 | version "1.3.0" 2879 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.3.0.tgz#2a28dcb9f1f45fe960d8f1493252b5ee6530fa85" 2880 | dependencies: 2881 | source-list-map "^2.0.0" 2882 | source-map "~0.6.1" 2883 | 2884 | webpack@^4.27.1: 2885 | version "4.27.1" 2886 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.27.1.tgz#5f2e2db446d2266376fa15d7d2277a1a9c2e12bb" 2887 | dependencies: 2888 | "@webassemblyjs/ast" "1.7.11" 2889 | "@webassemblyjs/helper-module-context" "1.7.11" 2890 | "@webassemblyjs/wasm-edit" "1.7.11" 2891 | "@webassemblyjs/wasm-parser" "1.7.11" 2892 | acorn "^5.6.2" 2893 | acorn-dynamic-import "^3.0.0" 2894 | ajv "^6.1.0" 2895 | ajv-keywords "^3.1.0" 2896 | chrome-trace-event "^1.0.0" 2897 | enhanced-resolve "^4.1.0" 2898 | eslint-scope "^4.0.0" 2899 | json-parse-better-errors "^1.0.2" 2900 | loader-runner "^2.3.0" 2901 | loader-utils "^1.1.0" 2902 | memory-fs "~0.4.1" 2903 | micromatch "^3.1.8" 2904 | mkdirp "~0.5.0" 2905 | neo-async "^2.5.0" 2906 | node-libs-browser "^2.0.0" 2907 | schema-utils "^0.4.4" 2908 | tapable "^1.1.0" 2909 | terser-webpack-plugin "^1.1.0" 2910 | watchpack "^1.5.0" 2911 | webpack-sources "^1.3.0" 2912 | 2913 | which-module@^2.0.0: 2914 | version "2.0.0" 2915 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 2916 | 2917 | which@^1.2.9: 2918 | version "1.3.1" 2919 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 2920 | dependencies: 2921 | isexe "^2.0.0" 2922 | 2923 | wide-align@^1.1.0: 2924 | version "1.1.3" 2925 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 2926 | dependencies: 2927 | string-width "^1.0.2 || 2" 2928 | 2929 | worker-farm@^1.5.2: 2930 | version "1.6.0" 2931 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.6.0.tgz#aecc405976fab5a95526180846f0dba288f3a4a0" 2932 | dependencies: 2933 | errno "~0.1.7" 2934 | 2935 | wrap-ansi@^2.0.0: 2936 | version "2.1.0" 2937 | resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 2938 | dependencies: 2939 | string-width "^1.0.1" 2940 | strip-ansi "^3.0.1" 2941 | 2942 | wrappy@1: 2943 | version "1.0.2" 2944 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2945 | 2946 | xtend@^4.0.0, xtend@~4.0.1: 2947 | version "4.0.1" 2948 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2949 | 2950 | "y18n@^3.2.1 || ^4.0.0", y18n@^4.0.0: 2951 | version "4.0.0" 2952 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" 2953 | 2954 | yallist@^2.1.2: 2955 | version "2.1.2" 2956 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 2957 | 2958 | yallist@^3.0.0, yallist@^3.0.2: 2959 | version "3.0.3" 2960 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.3.tgz#b4b049e314be545e3ce802236d6cd22cd91c3de9" 2961 | 2962 | yargs-parser@^11.1.1: 2963 | version "11.1.1" 2964 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-11.1.1.tgz#879a0865973bca9f6bab5cbdf3b1c67ec7d3bcf4" 2965 | dependencies: 2966 | camelcase "^5.0.0" 2967 | decamelize "^1.2.0" 2968 | 2969 | yargs@^12.0.2: 2970 | version "12.0.5" 2971 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-12.0.5.tgz#05f5997b609647b64f66b81e3b4b10a368e7ad13" 2972 | dependencies: 2973 | cliui "^4.0.0" 2974 | decamelize "^1.2.0" 2975 | find-up "^3.0.0" 2976 | get-caller-file "^1.0.1" 2977 | os-locale "^3.0.0" 2978 | require-directory "^2.1.1" 2979 | require-main-filename "^1.0.1" 2980 | set-blocking "^2.0.0" 2981 | string-width "^2.0.0" 2982 | which-module "^2.0.0" 2983 | y18n "^3.2.1 || ^4.0.0" 2984 | yargs-parser "^11.1.1" 2985 | --------------------------------------------------------------------------------