├── .gitignore ├── .prettierrc ├── .travis.yml ├── LICENSE ├── README.md ├── __tests__ └── test.ts ├── jest.config.js ├── package.json ├── scripts └── markdown-toc-all.sh ├── src └── index.ts ├── tsconfig.build.json ├── tsconfig.json ├── tslint.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by https://www.gitignore.io/api/visualstudiocode 2 | 3 | ### VisualStudioCode ### 4 | .vscode/ 5 | 6 | dist/ 7 | node_modules/ 8 | npm-debug.log 9 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "tabWidth": 4, 3 | "trailingComma": "all" 4 | } 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "node" 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 David Philipson 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # TypeScript FSA Reducers 2 | 3 | Fluent syntax for defining typesafe Redux reducers on top of 4 | [typescript-fsa](https://github.com/aikoven/typescript-fsa). 5 | 6 | [![Build 7 | Status](https://travis-ci.org/dphilipson/typescript-fsa-reducers.svg?branch=master)](https://travis-ci.org/dphilipson/typescript-fsa-reducers) 8 | 9 | ## Introduction 10 | 11 | This library will allow you to write typesafe reducers that look like this: 12 | 13 | ```ts 14 | const reducer = reducerWithInitialState(INITIAL_STATE) 15 | .case(setName, setNameHandler) 16 | .case(addBalance, addBalanceHandler) 17 | .case(setIsFrozen, setIsFrozenHandler); 18 | ``` 19 | 20 | It removes the boilerplate normally associated with writing reducers, including 21 | if-else chains, the default case, and the need to pull the payload field off of 22 | the action. 23 | 24 | ## Table of Contents 25 | 26 | 27 | 28 | - [Usage](#usage) 29 | - [Installation](#installation) 30 | - [API](#api) 31 | * [Starting a reducer chain](#starting-a-reducer-chain) 32 | + [`reducerWithInitialState(initialState)`](#reducerwithinitialstateinitialstate) 33 | + [`reducerWithoutInitialState()`](#reducerwithoutinitialstate) 34 | + [`upcastingReducer()`](#upcastingreducer) 35 | * [Reducer chain methods](#reducer-chain-methods) 36 | + [`.case(actionCreator, handler(state, payload) => newState)`](#caseactioncreator-handlerstate-payload--newstate) 37 | + [`.caseWithAction(actionCreator, handler(state, action) => newState)`](#casewithactionactioncreator-handlerstate-action--newstate) 38 | + [`.cases(actionCreators, handler(state, payload) => newState)`](#casesactioncreators-handlerstate-payload--newstate) 39 | + [`.casesWithAction(actionCreators, handler(state, action) => newState)`](#caseswithactionactioncreators-handlerstate-action--newstate) 40 | + [`.withHandling(updateBuilder(builder) => builder)`](#withhandlingupdatebuilderbuilder--builder) 41 | + [`.default(handler(state, action) => newState)`](#defaulthandlerstate-action--newstate) 42 | + [`.build()`](#build) 43 | 44 | 45 | 46 | ## Usage 47 | 48 | This library allows you to define reducers by chaining a series of handlers for 49 | different action types and optionally providing an initial value. It builds on 50 | top of and assumes familiarity with the excellent 51 | [typescript-fsa](https://github.com/aikoven/typescript-fsa). 52 | 53 | Suppose we have used [typescript-fsa](https://github.com/aikoven/typescript-fsa) 54 | to define our state and some actions: 55 | 56 | ```ts 57 | import actionCreatorFactory from "typescript-fsa"; 58 | const actionCreator = actionCreatorFactory(); 59 | 60 | interface State { 61 | name: string; 62 | balance: number; 63 | isFrozen: boolean; 64 | } 65 | 66 | const INITIAL_STATE: State = { 67 | name: "Untitled", 68 | balance: 0, 69 | isFrozen: false, 70 | }; 71 | 72 | const setName = actionCreator("SET_NAME"); 73 | const addBalance = actionCreator("ADD_BALANCE"); 74 | const setIsFrozen = actionCreator("SET_IS_FROZEN"); 75 | ``` 76 | 77 | Using vanilla `typescript-fsa`, we might define a reducer as follows: 78 | 79 | ```ts 80 | import { Action } from "redux"; 81 | import { isType } from "typescript-fsa"; 82 | 83 | function reducer(state = INITIAL_STATE, action: Action): State { 84 | if (isType(action, setName)) { 85 | return { ...state, name: action.payload }; 86 | } else if (isType(action, addBalance)) { 87 | return { 88 | ...state, 89 | balance: state.balance + action.payload, 90 | }; 91 | } else if (isType(action, setIsFrozen)) { 92 | return { ...state, isFrozen: action.payload }; 93 | } else { 94 | return state; 95 | } 96 | } 97 | ``` 98 | 99 | Using this library, the above is exactly equivalent to the following code: 100 | 101 | ```ts 102 | import { reducerWithInitialState } from "typescript-fsa-reducers"; 103 | 104 | const reducer = reducerWithInitialState(INITIAL_STATE) 105 | .case(setName, (state, name) => ({ ...state, name })) 106 | .case(addBalance, (state, amount) => ({ 107 | ...state, 108 | balance: state.balance + amount, 109 | })) 110 | .case(setIsFrozen, (state, isFrozen) => ({ ...state, isFrozen })); 111 | ``` 112 | 113 | Note that unlike the vanilla case, there is no need to pull the payload off of 114 | the action, as it is passed directly to the handler, nor is it necessary to 115 | specify a default case which returns `state` unmodified. 116 | 117 | Everything is typesafe. If the types of the action payload and handler don't 118 | line up, then TypeScript will complain. If you find it easier to read, you can 119 | of course pull out the handlers into separate functions, as shown in the 120 | [Introduction](#introduction). 121 | 122 | If the full action is needed rather than just the payload, `.caseWithAction()` 123 | may be used in place of `.case()`. This may be useful if you intend to pass the 124 | action unchanged to a different reducer, or if you need to read the `meta` field 125 | of the action. For example: 126 | 127 | ```ts 128 | import { Action } from "typescript-fsa"; 129 | 130 | const setText = actionCreator("SET_TEXT"); 131 | 132 | const reducer = reducerWithInitialState({ 133 | text: "", 134 | lastEditBy: "", 135 | }).caseWithAction(incrementCount, (state, { payload, meta }) => ({ 136 | text: payload, 137 | lastEditBy: meta.author, 138 | })); 139 | 140 | // Returns { text: "hello", lastEditBy: "cbrontë" }. 141 | reducer(undefined, setText("hello", { author: "cbrontë" })); 142 | ``` 143 | 144 | Further, a single handler may be assigned to multiple action types at once using 145 | `.cases()` or `.casesWithAction()`: 146 | 147 | ```ts 148 | const reducer = reducerWithInitialState(initialState).cases( 149 | [setName, addBalance], 150 | (state, payload) => { 151 | // Payload has type SetNamePayload | AddBalancePayload. 152 | // ... 153 | 154 | // Make sure to return the updated state, or TypeScript will give you a 155 | // rather unhelpful error message. 156 | return state; 157 | }, 158 | ); 159 | ``` 160 | 161 | The reducer builder chains are mutable. Each call to `.case()` modifies the 162 | callee to respond to the specified action type. If this is undesirable, see the 163 | [`.build()`](#build) method below. 164 | 165 | ## Installation 166 | 167 | For this library to be useful, you will also need 168 | [typescript-fsa](https://github.com/aikoven/typescript-fsa) to define your 169 | actions. 170 | 171 | With Yarn: 172 | 173 | ``` 174 | yarn add typescript-fsa-reducers typescript-fsa 175 | ``` 176 | 177 | Or with NPM: 178 | 179 | ``` 180 | npm install --save typescript-fsa-reducers typescript-fsa 181 | ``` 182 | 183 | ## API 184 | 185 | ### Starting a reducer chain 186 | 187 | #### `reducerWithInitialState(initialState)` 188 | 189 | Starts a reducer builder-chain which uses the provided initial state if passed 190 | `undefined` as its state. For example usage, see the [Usage](#usage) section 191 | above. 192 | 193 | #### `reducerWithoutInitialState()` 194 | 195 | Starts a reducer builder-chain without special logic for an initial state. 196 | `undefined` will be treated like any other value for the state. 197 | 198 | Redux seems to really want you to provide an initial state for your reducers. 199 | Its `createStore` API encourages it and `combineReducers` function enforces it. 200 | For the Redux author's reasoning behind this, see [this 201 | thread](https://github.com/reactjs/redux/issues/514). For this reason, 202 | `reducerWithInitialState` will likely be the more common choice, but the option 203 | to not provide an initial state is there in case you have some means of 204 | composing reducers for which initial state is unnecessary. 205 | 206 | Note that since the type of the state cannot be inferred from the initial state, 207 | it must be provided as a type parameter: 208 | 209 | ```ts 210 | const reducer = reducerWithoutInitialState() 211 | .case(setName, setNameHandler) 212 | .case(addBalance, addBalanceHandler) 213 | .case(setIsFrozen, setIsFrozenHandler); 214 | ``` 215 | 216 | #### `upcastingReducer()` 217 | 218 | Starts a builder-chain which produces a "reducer" whose return type is a 219 | supertype of the input state. This is most useful for handling a state which may 220 | be in one of several "modes", each of which responds differently to actions and 221 | can transition to the other modes. Many applications will not have a use for 222 | this. 223 | 224 | Note that the function produced is technically not a reducer because the initial 225 | and updated states are different types. 226 | 227 | Example usage: 228 | 229 | ```javascript 230 | type State = StoppedState | StartedState; 231 | 232 | interface StoppedState { 233 | type: "STOPPED"; 234 | } 235 | 236 | interface StartedState { 237 | type: "STARTED"; 238 | count: number; 239 | } 240 | 241 | const INITIAL_STATE: State = { type: "STOPPED" }; 242 | 243 | const startWithCount = actionCreator("START_WITH_COUNT"); 244 | const addToCount = actionCreator("ADD_TO_COUNT"); 245 | const stop = actionCreator("STOP"); 246 | 247 | function startWithCountHandler(state: StoppedState, count: number): State { 248 | return { type: "STARTED", count }; 249 | } 250 | 251 | function addToCountHandler(state: StartedState, count: number): State { 252 | return { ...state, count: state.count + count }; 253 | } 254 | 255 | function stopHandler(state: StartedState): State { 256 | return { type: "STOPPED" }; 257 | } 258 | 259 | const stoppedReducer = upcastingReducer() 260 | .case(startWithCount, startWithCountHandler); 261 | 262 | const startedReducer = upcastingReducer() 263 | .case(addToCount, addToCountHandler) 264 | .case(stop, stopHandler); 265 | 266 | function reducer(state = INITIAL_STATE, action: Redux.Action): State { 267 | if (state.type === "STOPPED") { 268 | return stoppedReducer(state, action); 269 | } else if (state.type === "STARTED") { 270 | return startedReducer(state, action); 271 | } else { 272 | throw new Error("Unknown state"); 273 | } 274 | } 275 | ``` 276 | 277 | ### Reducer chain methods 278 | 279 | #### `.case(actionCreator, handler(state, payload) => newState)` 280 | 281 | Mutates the reducer such that it applies `handler` when passed actions matching 282 | the type of `actionCreator`. For examples, see [Usage](#usage). 283 | 284 | #### `.caseWithAction(actionCreator, handler(state, action) => newState)` 285 | 286 | Like `.case()`, except that `handler` receives the entire action as its second 287 | argument rather than just the payload. This is useful if you want to read other 288 | properties of the action, such as `meta` or `error`, or if you want to pass the 289 | entire action unmodified to some other function. For an example, see 290 | [Usage](#usage). 291 | 292 | #### `.cases(actionCreators, handler(state, payload) => newState)` 293 | 294 | Like `.case()`, except that multiple action creators may be provided and the 295 | same handler is applied to all of them. That is, 296 | 297 | ```javascript 298 | reducerWithInitialState(initialState).cases( 299 | [setName, addBalance, setIsFrozen], 300 | handler, 301 | ); 302 | ``` 303 | 304 | is equivalent to 305 | 306 | ```javascript 307 | reducerWithInitialState(initialState) 308 | .case(setName, handler) 309 | .case(addBalance, handler) 310 | .case(setIsFrozen, handler); 311 | ``` 312 | 313 | Note that the payload passed to the handler may be of the type of any of the 314 | listed action types' payloads. In TypeScript terms, this means it has type `P1 | P2 | ...`, where `P1, P2, ...` are the payload types of the listed action 315 | creators. 316 | 317 | The payload type is inferred automatically for up to four action types. After 318 | that, it must be supplied as a type annotation, for example: 319 | 320 | ```javascript 321 | reducerWithInitialState(initialState).cases < 322 | { documentId: number } > 323 | ([ 324 | selectDocument, 325 | editDocument, 326 | deleteDocument, 327 | sendDocument, 328 | archiveDocument, 329 | ], 330 | handler); 331 | ``` 332 | 333 | #### `.casesWithAction(actionCreators, handler(state, action) => newState)` 334 | 335 | Like `.cases()`, except that the handler receives the entire action as its 336 | second argument rather than just the payload. 337 | 338 | #### `.withHandling(updateBuilder(builder) => builder)` 339 | 340 | Convenience method which applies the provided function to the current builder 341 | and returns the result. Useful if you have a sequence of builder updates (calls 342 | to `.case()`, etc.) which you want to reuse across several reducers. 343 | 344 | #### `.default(handler(state, action) => newState)` 345 | 346 | Produces a reducer which applies `handler` when no previously added `.case()`, 347 | `.caseWithAction()`, etc. matched. The handler is similar to the one in 348 | `.caseWithAction()`. Note that `.default()` ends the chain and internally does 349 | the same as [`.build()`](#build), because it is not intended that the chain be 350 | mutated after calling `.default()`. 351 | 352 | This is useful if you have a "delegate" reducer that should be called on any 353 | action after handling a few specific actions in the parent. 354 | 355 | ```ts 356 | const NESTED_STATE = { 357 | someProp: "hello", 358 | }; 359 | 360 | const nestedReducer = reducerWithInitialState(NESTED_STATE) 361 | .case(...); 362 | 363 | const INITIAL_STATE = { 364 | someOtherProp: "world" 365 | nested: NESTED_STATE 366 | }; 367 | 368 | const reducer = reducerWithInitialState(INITIAL_STATE) 369 | .case(...) 370 | .default((state, action) => ({ 371 | ...state, 372 | nested: nestedReducer(state.nested, action), 373 | })); 374 | ``` 375 | 376 | #### `.build()` 377 | 378 | Returns a plain reducer function whose behavior matches the current state of the 379 | reducer chain. Further updates to the chain (through calls to `.case()`) will 380 | have no effect on this function. 381 | 382 | There are two reasons you may want to do this: 383 | 384 | 1. **You want to ensure that the reducer is not modified further** 385 | 386 | Calling `.build()` is an example of defensive coding. It prevents someone 387 | from causing confusing behavior by importing your reducer in an unrelated 388 | file and adding cases to it. 389 | 390 | 2. **You want your package to export a reducer, but not have its types depend 391 | on `typescript-fsa-reducers`** 392 | 393 | If the code that defines a reducer and the code that uses it reside in 394 | separate NPM packages, you may run into type errors since the exported 395 | reducer has type `ReducerBuilder`, which the consuming package does not 396 | recognize unless it also depends on `typescript-fsa-reducers`. This is 397 | avoided by calling `.build()`, whose return type is a plain function 398 | instead. 399 | 400 | Example usage: 401 | 402 | ```javascript 403 | const reducer = reducerWithInitialState(INITIAL_STATE) 404 | .case(setName, setNameHandler) 405 | .case(addBalance, addBalanceHandler) 406 | .case(setIsFrozen, setIsFrozenHandler) 407 | .build(); 408 | ``` 409 | 410 | Copyright © 2017 David Philipson 411 | -------------------------------------------------------------------------------- /__tests__/test.ts: -------------------------------------------------------------------------------- 1 | import actionCreatorFactory from "typescript-fsa"; 2 | import { 3 | ReducerBuilder, 4 | reducerWithInitialState, 5 | reducerWithoutInitialState, 6 | upcastingReducer, 7 | } from "../src/index"; 8 | 9 | const actionCreator = actionCreatorFactory(); 10 | 11 | interface State { 12 | data: string; 13 | } 14 | 15 | interface StateWithCount extends State { 16 | count: number; 17 | } 18 | 19 | const initialState: State = { data: "hello" }; 20 | 21 | const defaultHandlerResult: State = { ...initialState, data: "world" }; 22 | 23 | function defaultHandler(state: State): State { 24 | return { 25 | ...state, 26 | data: "world", 27 | }; 28 | } 29 | 30 | const sliceData = actionCreator("SLICE_DATA"); 31 | function sliceDataHandler(state: State, fromIndex: number): State { 32 | return { data: state.data.slice(fromIndex) }; 33 | } 34 | 35 | const dataToUpperCase = actionCreator("DATA_TO_UPPERCASE"); 36 | function dataToUpperCaseHandler(state: State): State { 37 | return { data: state.data.toUpperCase() }; 38 | } 39 | 40 | const toBasicState = actionCreator("TO_BASIC_STATE"); 41 | function toBasicStateHandler(state: StateWithCount): State { 42 | return { data: state.data }; 43 | } 44 | 45 | describe("reducer builder", () => { 46 | it("should return a no-op reducer if no cases provided", () => { 47 | const reducer = reducerWithoutInitialState(); 48 | expect(reducer(initialState, { type: "UNKNOWN" })).toBe(initialState); 49 | }); 50 | 51 | it("should execute the default handler if no cases provided", () => { 52 | const reducer = reducerWithoutInitialState().default( 53 | defaultHandler, 54 | ); 55 | expect(reducer(initialState, { type: "UNKNOWN" })).toEqual( 56 | defaultHandlerResult, 57 | ); 58 | }); 59 | 60 | it("should no-op on unknown actions if cases provided", () => { 61 | const reducer = reducerWithoutInitialState() 62 | .case(sliceData, sliceDataHandler) 63 | .case(dataToUpperCase, dataToUpperCaseHandler); 64 | expect(reducer(initialState, { type: "UNKNOWN" })).toBe(initialState); 65 | }); 66 | 67 | it("should execute the default handler on unknown actions if cases provided", () => { 68 | const reducer = reducerWithoutInitialState() 69 | .case(sliceData, sliceDataHandler) 70 | .case(dataToUpperCase, dataToUpperCaseHandler) 71 | .default(defaultHandler); 72 | expect(reducer(initialState, { type: "UNKNOWN" })).toEqual( 73 | defaultHandlerResult, 74 | ); 75 | }); 76 | 77 | it("should return an initial value if state is undefined if no cases provided", () => { 78 | const reducer = reducerWithInitialState(initialState); 79 | expect(reducer(undefined, { type: "UNKNOWN" })).toBe(initialState); 80 | }); 81 | 82 | it("should return default handler result if state is undefined if only default handler provided", () => { 83 | const reducer = reducerWithInitialState(initialState).default( 84 | defaultHandler, 85 | ); 86 | expect(reducer(undefined, { type: "UNKNOWN" })).toEqual( 87 | defaultHandlerResult, 88 | ); 89 | }); 90 | 91 | it("should return an initial value if state is undefined if cases provided", () => { 92 | const reducer = reducerWithInitialState(initialState) 93 | .case(sliceData, sliceDataHandler) 94 | .case(dataToUpperCase, dataToUpperCaseHandler); 95 | expect(reducer(undefined, { type: "UNKNOWN" })).toBe(initialState); 96 | }); 97 | 98 | it("should return default handler result if state is undefined if cases and default handler provided", () => { 99 | const reducer = reducerWithInitialState(initialState) 100 | .case(sliceData, sliceDataHandler) 101 | .case(dataToUpperCase, dataToUpperCaseHandler) 102 | .default(defaultHandler); 103 | expect(reducer(undefined, { type: "UNKNOWN" })).toEqual( 104 | defaultHandlerResult, 105 | ); 106 | }); 107 | 108 | it("should call handler on matching action with single handler", () => { 109 | const reducer = reducerWithoutInitialState().case( 110 | sliceData, 111 | sliceDataHandler, 112 | ); 113 | expect(reducer(initialState, sliceData(1))).toEqual({ data: "ello" }); 114 | }); 115 | 116 | it("should call handler on matching action with multiple handlers", () => { 117 | const reducer = reducerWithoutInitialState() 118 | .case(sliceData, sliceDataHandler) 119 | .case(dataToUpperCase, dataToUpperCaseHandler); 120 | expect(reducer(initialState, dataToUpperCase)).toEqual({ 121 | data: "HELLO", 122 | }); 123 | }); 124 | 125 | it("should call handler on matching action with multiple handlers and default handler", () => { 126 | const reducer = reducerWithoutInitialState() 127 | .case(sliceData, sliceDataHandler) 128 | .case(dataToUpperCase, dataToUpperCaseHandler) 129 | .default(defaultHandler); 130 | expect(reducer(initialState, dataToUpperCase)).toEqual({ 131 | data: "HELLO", 132 | }); 133 | }); 134 | 135 | it("should call full-action handler when using .caseWithAction()", () => { 136 | const reducer = reducerWithInitialState(initialState).caseWithAction( 137 | sliceData, 138 | (state, action) => ({ 139 | ...state, 140 | data: state.data.slice(action.payload), 141 | meta: { author: action.meta && action.meta.author }, 142 | }), 143 | ); 144 | expect(reducer(undefined, sliceData(1, { author: "cbrontë" }))).toEqual( 145 | { 146 | data: "ello", 147 | meta: { author: "cbrontë" }, 148 | }, 149 | ); 150 | }); 151 | 152 | it("should call upcasting handler on matching action", () => { 153 | const reducer = upcastingReducer().case( 154 | toBasicState, 155 | toBasicStateHandler, 156 | ); 157 | expect(reducer({ data: "hello", count: 2 }, toBasicState)).toEqual({ 158 | data: "hello", 159 | }); 160 | }); 161 | 162 | it("should be able to call nested reducer when using default handler", () => { 163 | const nestedReducer = reducerWithoutInitialState() 164 | .case(sliceData, sliceDataHandler) 165 | .case(dataToUpperCase, dataToUpperCaseHandler); 166 | 167 | const reducer = reducerWithoutInitialState<{ nested: State }>().default( 168 | (state, action) => ({ 169 | nested: nestedReducer(state.nested, action), 170 | }), 171 | ); 172 | expect(reducer({ nested: initialState }, dataToUpperCase)).toEqual({ 173 | nested: { data: "HELLO" }, 174 | }); 175 | }); 176 | 177 | (() => { 178 | // Scope for shared testing values for .cases() and .casesWithAction(). 179 | 180 | interface PayloadA { 181 | data: string; 182 | x: number; 183 | } 184 | interface PayloadB { 185 | data: string; 186 | y: number; 187 | } 188 | interface PayloadC { 189 | data: string; 190 | z: number; 191 | } 192 | const actionA = actionCreator("ACTION_A"); 193 | const actionB = actionCreator("ACTION_B"); 194 | const actionC = actionCreator("ACTION_C"); 195 | 196 | it("should call handler on any matching action when using .cases()", () => { 197 | const reducer = reducerWithInitialState(initialState).cases( 198 | [actionA, actionB, actionC], 199 | (state, payload) => { 200 | return { ...state, data: payload.data }; 201 | }, 202 | ); 203 | expect( 204 | reducer(initialState, actionA({ data: "from A", x: 0 })), 205 | ).toEqual({ 206 | data: "from A", 207 | }); 208 | expect( 209 | reducer(initialState, actionB({ data: "from B", y: 1 })), 210 | ).toEqual({ 211 | data: "from B", 212 | }); 213 | expect( 214 | reducer(initialState, actionC({ data: "from C", z: 2 })), 215 | ).toEqual({ 216 | data: "from C", 217 | }); 218 | }); 219 | 220 | it("should call handler on any matching action when using .casesWithAction()", () => { 221 | const reducer = reducerWithInitialState( 222 | initialState, 223 | ).casesWithAction([actionA, actionB, actionC], (state, action) => { 224 | return { ...state, data: action.payload.data }; 225 | }); 226 | expect( 227 | reducer(initialState, actionA({ data: "from A", x: 0 })), 228 | ).toEqual({ 229 | data: "from A", 230 | }); 231 | expect( 232 | reducer(initialState, actionB({ data: "from B", y: 1 })), 233 | ).toEqual({ 234 | data: "from B", 235 | }); 236 | expect( 237 | reducer(initialState, actionC({ data: "from C", z: 2 })), 238 | ).toEqual({ 239 | data: "from C", 240 | }); 241 | }); 242 | })(); 243 | 244 | it("should be mutated by .case()", () => { 245 | const reducer = reducerWithInitialState(initialState); 246 | reducer.case(sliceData, sliceDataHandler); 247 | reducer.case(dataToUpperCase, dataToUpperCaseHandler); 248 | expect(reducer(undefined, sliceData(1))).toEqual({ 249 | data: "ello", 250 | }); 251 | }); 252 | 253 | it("should apply handling function to itself in .withHandling()", () => { 254 | const handling = ( 255 | builder: ReducerBuilder, 256 | ): ReducerBuilder => builder.case(sliceData, sliceDataHandler); 257 | const reducer = reducerWithInitialState(initialState).withHandling( 258 | handling, 259 | ); 260 | expect(reducer(undefined, sliceData(1))).toEqual({ 261 | data: "ello", 262 | }); 263 | }); 264 | 265 | describe(".build()", () => { 266 | const reducer = reducerWithInitialState(initialState) 267 | .case(sliceData, sliceDataHandler) 268 | .case(dataToUpperCase, dataToUpperCaseHandler) 269 | .build(); 270 | 271 | it("should return a function with no extra keys", () => { 272 | expect(Object.keys(reducer)).toEqual([]); 273 | }); 274 | 275 | it("should return a function which behaves like the reducer", () => { 276 | expect(reducer(undefined, sliceData(1))).toEqual({ 277 | data: "ello", 278 | }); 279 | }); 280 | 281 | it("should return a function that does not mutate if parent builder mutates", () => { 282 | const builder = reducerWithInitialState(initialState); 283 | const reducer1 = builder.build(); 284 | builder.case(sliceData, sliceDataHandler); 285 | const reducer2 = builder.build(); 286 | expect(reducer1(undefined, sliceData(1))).toEqual({ 287 | data: "hello", 288 | }); 289 | expect(reducer2(undefined, sliceData(1))).toEqual({ 290 | data: "ello", 291 | }); 292 | }); 293 | }); 294 | }); 295 | -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: "ts-jest", 3 | testEnvironment: "node", 4 | }; 5 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "typescript-fsa-reducers", 3 | "version": "1.2.2", 4 | "description": "Fluent syntax for defining typesafe Redux reducers on top of typescript-fsa.", 5 | "main": "dist/index.js", 6 | "types": "dist/index", 7 | "files": [ 8 | "dist/" 9 | ], 10 | "repository": { 11 | "type": "git", 12 | "url": "git://github.com/dphilipson/typescript-fsa-reducers.git" 13 | }, 14 | "keywords": [ 15 | "redux", 16 | "typescript", 17 | "action", 18 | "reducer", 19 | "builder" 20 | ], 21 | "author": "David Philipson (http://dphil.me)", 22 | "license": "MIT", 23 | "bugs": { 24 | "url": "https://github.com/dphilipson/typescript-fsa-reducers/issues" 25 | }, 26 | "homepage": "https://github.com/dphilipson/typescript-fsa-reducers#readme", 27 | "scripts": { 28 | "build": "yarn run clean && tsc -p tsconfig.build.json", 29 | "clean": "rm -rf dist/*", 30 | "format-file": "prettier --write", 31 | "format": "git ls-files | egrep '\\.(js(on)?|scss|tsx?)?$' | xargs yarn run format-file", 32 | "generate-toc": "git ls-files | egrep '\\.md$' | xargs scripts/markdown-toc-all.sh", 33 | "jest": "jest", 34 | "lint-file": "tslint", 35 | "lint": "tslint --project .", 36 | "prepublishOnly": "yarn run test && yarn run build", 37 | "test": "yarn run lint && tsc && yarn run jest" 38 | }, 39 | "husky": { 40 | "hooks": { 41 | "pre-commit": "lint-staged" 42 | } 43 | }, 44 | "lint-staged": { 45 | "**/*.{js,json}": [ 46 | "yarn run format-file", 47 | "git add" 48 | ], 49 | "**/*.ts": [ 50 | "yarn run format-file", 51 | "yarn run lint-file --fix", 52 | "git add" 53 | ], 54 | "*.md": [ 55 | "./scripts/markdown-toc-all.sh", 56 | "git add" 57 | ] 58 | }, 59 | "devDependencies": { 60 | "@types/jest": "^24.0.20", 61 | "husky": "^3.0.9", 62 | "jest": "^24.9.0", 63 | "lint-staged": "^9.4.2", 64 | "markdown-toc": "^1.2.0", 65 | "prettier": "^1.18.2", 66 | "ts-jest": "^24.1.0", 67 | "tslint": "^5.20.0", 68 | "tslint-config-prettier": "^1.18.0", 69 | "typescript": "^3.6.4", 70 | "typescript-fsa": "^3.0.0" 71 | }, 72 | "peerDependencies": { 73 | "typescript-fsa": "*" 74 | } 75 | } 76 | -------------------------------------------------------------------------------- /scripts/markdown-toc-all.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # Needed for lint-staged if multiple .md files are changed since markdown-toc 4 | # only accepts a single file argument. 5 | for var in "$@" 6 | do 7 | yarn markdown-toc -i "$var" 8 | done 9 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | import { Action, ActionCreator, AnyAction } from "typescript-fsa"; 2 | 3 | export interface ReducerBuilder { 4 | case

( 5 | actionCreator: ActionCreator

, 6 | handler: Handler, 7 | ): ReducerBuilder; 8 | caseWithAction

( 9 | actionCreator: ActionCreator

, 10 | handler: Handler>, 11 | ): ReducerBuilder; 12 | 13 | // cases variadic overloads 14 | cases( 15 | actionCreators: [ActionCreator, ActionCreator], 16 | handler: Handler, 17 | ): ReducerBuilder; 18 | cases( 19 | actionCreators: [ 20 | ActionCreator, 21 | ActionCreator, 22 | ActionCreator, 23 | ], 24 | handler: Handler, 25 | ): ReducerBuilder; 26 | cases( 27 | actionCreators: [ 28 | ActionCreator, 29 | ActionCreator, 30 | ActionCreator, 31 | ActionCreator, 32 | ], 33 | handler: Handler, 34 | ): ReducerBuilder; 35 | cases

( 36 | actionCreators: Array>, 37 | handler: Handler, 38 | ): ReducerBuilder; 39 | 40 | // casesWithAction variadic overloads 41 | casesWithAction( 42 | actionCreators: [ActionCreator, ActionCreator], 43 | handler: Handler>, 44 | ): ReducerBuilder; 45 | casesWithAction( 46 | actionCreators: [ 47 | ActionCreator, 48 | ActionCreator, 49 | ActionCreator, 50 | ], 51 | handler: Handler>, 52 | ): ReducerBuilder; 53 | casesWithAction( 54 | actionCreators: [ 55 | ActionCreator, 56 | ActionCreator, 57 | ActionCreator, 58 | ActionCreator, 59 | ], 60 | handler: Handler>, 61 | ): ReducerBuilder; 62 | casesWithAction

( 63 | actionCreators: Array>, 64 | handler: Handler>, 65 | ): ReducerBuilder; 66 | 67 | withHandling( 68 | updateBuilder: ( 69 | builder: ReducerBuilder, 70 | ) => ReducerBuilder, 71 | ): ReducerBuilder; 72 | 73 | // Intentionally avoid AnyAction in return type so packages can export 74 | // reducers created using .default() or .build() without consumers requiring 75 | // a dependency on typescript-fsa. 76 | default( 77 | defaultHandler: Handler, 78 | ): (state: PassedS, action: { type: any }) => OutS; 79 | build(): (state: PassedS, action: { type: any }) => OutS; 80 | (state: PassedS, action: AnyAction): OutS; 81 | } 82 | 83 | export type Handler = (state: InS, payload: P) => OutS; 84 | 85 | export function reducerWithInitialState(initialState: S): ReducerBuilder { 86 | return makeReducer(initialState); 87 | } 88 | 89 | export function reducerWithoutInitialState(): ReducerBuilder { 90 | return makeReducer(); 91 | } 92 | 93 | export function upcastingReducer(): ReducerBuilder< 94 | InS, 95 | OutS, 96 | InS 97 | > { 98 | return makeReducer(); 99 | } 100 | 101 | function makeReducer( 102 | initialState?: InS, 103 | ): ReducerBuilder { 104 | const handlersByActionType: { 105 | [actionType: string]: Handler; 106 | } = {}; 107 | const reducer = getReducerFunction( 108 | initialState, 109 | handlersByActionType, 110 | ) as ReducerBuilder; 111 | 112 | reducer.caseWithAction =

( 113 | actionCreator: ActionCreator

, 114 | handler: Handler>, 115 | ) => { 116 | handlersByActionType[actionCreator.type] = handler; 117 | return reducer; 118 | }; 119 | 120 | reducer.case =

( 121 | actionCreator: ActionCreator

, 122 | handler: Handler, 123 | ) => 124 | reducer.caseWithAction(actionCreator, (state, action) => 125 | handler(state, action.payload), 126 | ); 127 | 128 | reducer.casesWithAction =

( 129 | actionCreators: Array>, 130 | handler: Handler>, 131 | ) => { 132 | for (const actionCreator of actionCreators) { 133 | reducer.caseWithAction(actionCreator, handler); 134 | } 135 | return reducer; 136 | }; 137 | 138 | reducer.cases =

( 139 | actionCreators: Array>, 140 | handler: Handler, 141 | ) => 142 | reducer.casesWithAction(actionCreators, (state, action) => 143 | handler(state, action.payload), 144 | ); 145 | 146 | reducer.withHandling = ( 147 | updateBuilder: ( 148 | builder: ReducerBuilder, 149 | ) => ReducerBuilder, 150 | ) => updateBuilder(reducer); 151 | 152 | reducer.default = (defaultHandler: Handler) => 153 | getReducerFunction( 154 | initialState, 155 | { ...handlersByActionType }, 156 | defaultHandler, 157 | ); 158 | 159 | reducer.build = () => 160 | getReducerFunction(initialState, { ...handlersByActionType }); 161 | 162 | return reducer; 163 | } 164 | 165 | function getReducerFunction( 166 | initialState: InS | undefined, 167 | handlersByActionType: { [actionType: string]: Handler }, 168 | defaultHandler?: Handler, 169 | ) { 170 | return (passedState: PassedS, action: AnyAction) => { 171 | const state = passedState !== undefined ? passedState : initialState; 172 | const handler = handlersByActionType[action.type] || defaultHandler; 173 | return handler 174 | ? handler(state as InS, action) 175 | : ((state as unknown) as OutS); 176 | }; 177 | } 178 | -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "declaration": true, 4 | "inlineSources": true, 5 | "noEmit": false, 6 | "outDir": "dist", 7 | "sourceMap": true 8 | }, 9 | "extends": "./tsconfig.json", 10 | "include": ["src/**/*"] 11 | } 12 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "module": "commonjs", 4 | "noEmit": true, 5 | "noFallthroughCasesInSwitch": true, 6 | "noImplicitReturns": true, 7 | "noUnusedLocals": true, 8 | "noUnusedParameters": true, 9 | "skipLibCheck": true, 10 | "strict": true, 11 | "target": "es5" 12 | }, 13 | "include": ["src/**/*", "__tests__/**/*"] 14 | } 15 | -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["tslint:latest", "tslint-config-prettier"], 3 | "rules": { 4 | "interface-name": [true, "never-prefix"], 5 | "no-bitwise": false, 6 | "no-submodule-imports": false, 7 | "object-literal-sort-keys": false 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /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", "@babel/code-frame@^7.5.5": 6 | version "7.5.5" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49531219699b988f669a8f9d" 8 | integrity sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw== 9 | dependencies: 10 | "@babel/highlight" "^7.0.0" 11 | 12 | "@babel/core@^7.1.0": 13 | version "7.6.4" 14 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.6.4.tgz#6ebd9fe00925f6c3e177bb726a188b5f578088ff" 15 | integrity sha512-Rm0HGw101GY8FTzpWSyRbki/jzq+/PkNQJ+nSulrdY6gFGOsNseCqD6KHRYe2E+EdzuBdr2pxCp6s4Uk6eJ+XQ== 16 | dependencies: 17 | "@babel/code-frame" "^7.5.5" 18 | "@babel/generator" "^7.6.4" 19 | "@babel/helpers" "^7.6.2" 20 | "@babel/parser" "^7.6.4" 21 | "@babel/template" "^7.6.0" 22 | "@babel/traverse" "^7.6.3" 23 | "@babel/types" "^7.6.3" 24 | convert-source-map "^1.1.0" 25 | debug "^4.1.0" 26 | json5 "^2.1.0" 27 | lodash "^4.17.13" 28 | resolve "^1.3.2" 29 | semver "^5.4.1" 30 | source-map "^0.5.0" 31 | 32 | "@babel/generator@^7.4.0", "@babel/generator@^7.6.3", "@babel/generator@^7.6.4": 33 | version "7.6.4" 34 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.6.4.tgz#a4f8437287bf9671b07f483b76e3bb731bc97671" 35 | integrity sha512-jsBuXkFoZxk0yWLyGI9llT9oiQ2FeTASmRFE32U+aaDTfoE92t78eroO7PTpU/OrYq38hlcDM6vbfLDaOLy+7w== 36 | dependencies: 37 | "@babel/types" "^7.6.3" 38 | jsesc "^2.5.1" 39 | lodash "^4.17.13" 40 | source-map "^0.5.0" 41 | 42 | "@babel/helper-function-name@^7.1.0": 43 | version "7.1.0" 44 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz#a0ceb01685f73355d4360c1247f582bfafc8ff53" 45 | integrity sha512-A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw== 46 | dependencies: 47 | "@babel/helper-get-function-arity" "^7.0.0" 48 | "@babel/template" "^7.1.0" 49 | "@babel/types" "^7.0.0" 50 | 51 | "@babel/helper-get-function-arity@^7.0.0": 52 | version "7.0.0" 53 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz#83572d4320e2a4657263734113c42868b64e49c3" 54 | integrity sha512-r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ== 55 | dependencies: 56 | "@babel/types" "^7.0.0" 57 | 58 | "@babel/helper-plugin-utils@^7.0.0": 59 | version "7.0.0" 60 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250" 61 | integrity sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA== 62 | 63 | "@babel/helper-split-export-declaration@^7.4.4": 64 | version "7.4.4" 65 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz#ff94894a340be78f53f06af038b205c49d993677" 66 | integrity sha512-Ro/XkzLf3JFITkW6b+hNxzZ1n5OQ80NvIUdmHspih1XAhtN3vPTuUFT4eQnela+2MaZ5ulH+iyP513KJrxbN7Q== 67 | dependencies: 68 | "@babel/types" "^7.4.4" 69 | 70 | "@babel/helpers@^7.6.2": 71 | version "7.6.2" 72 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.6.2.tgz#681ffe489ea4dcc55f23ce469e58e59c1c045153" 73 | integrity sha512-3/bAUL8zZxYs1cdX2ilEE0WobqbCmKWr/889lf2SS0PpDcpEIY8pb1CCyz0pEcX3pEb+MCbks1jIokz2xLtGTA== 74 | dependencies: 75 | "@babel/template" "^7.6.0" 76 | "@babel/traverse" "^7.6.2" 77 | "@babel/types" "^7.6.0" 78 | 79 | "@babel/highlight@^7.0.0": 80 | version "7.0.0" 81 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0.tgz#f710c38c8d458e6dd9a201afb637fcb781ce99e4" 82 | dependencies: 83 | chalk "^2.0.0" 84 | esutils "^2.0.2" 85 | js-tokens "^4.0.0" 86 | 87 | "@babel/parser@^7.1.0", "@babel/parser@^7.4.3", "@babel/parser@^7.6.0", "@babel/parser@^7.6.3", "@babel/parser@^7.6.4": 88 | version "7.6.4" 89 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.6.4.tgz#cb9b36a7482110282d5cb6dd424ec9262b473d81" 90 | integrity sha512-D8RHPW5qd0Vbyo3qb+YjO5nvUVRTXFLQ/FsDxJU2Nqz4uB5EnUN0ZQSEYpvTIbRuttig1XbHWU5oMeQwQSAA+A== 91 | 92 | "@babel/plugin-syntax-object-rest-spread@^7.0.0": 93 | version "7.2.0" 94 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz#3b7a3e733510c57e820b9142a6579ac8b0dfad2e" 95 | integrity sha512-t0JKGgqk2We+9may3t0xDdmneaXmyxq0xieYcKHxIsrJO64n1OiMWNUtc5gQK1PA0NpdCRrtZp4z+IUaKugrSA== 96 | dependencies: 97 | "@babel/helper-plugin-utils" "^7.0.0" 98 | 99 | "@babel/template@^7.1.0", "@babel/template@^7.4.0", "@babel/template@^7.6.0": 100 | version "7.6.0" 101 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.6.0.tgz#7f0159c7f5012230dad64cca42ec9bdb5c9536e6" 102 | integrity sha512-5AEH2EXD8euCk446b7edmgFdub/qfH1SN6Nii3+fyXP807QRx9Q73A2N5hNwRRslC2H9sNzaFhsPubkS4L8oNQ== 103 | dependencies: 104 | "@babel/code-frame" "^7.0.0" 105 | "@babel/parser" "^7.6.0" 106 | "@babel/types" "^7.6.0" 107 | 108 | "@babel/traverse@^7.1.0", "@babel/traverse@^7.4.3", "@babel/traverse@^7.6.2", "@babel/traverse@^7.6.3": 109 | version "7.6.3" 110 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.6.3.tgz#66d7dba146b086703c0fb10dd588b7364cec47f9" 111 | integrity sha512-unn7P4LGsijIxaAJo/wpoU11zN+2IaClkQAxcJWBNCMS6cmVh802IyLHNkAjQ0iYnRS3nnxk5O3fuXW28IMxTw== 112 | dependencies: 113 | "@babel/code-frame" "^7.5.5" 114 | "@babel/generator" "^7.6.3" 115 | "@babel/helper-function-name" "^7.1.0" 116 | "@babel/helper-split-export-declaration" "^7.4.4" 117 | "@babel/parser" "^7.6.3" 118 | "@babel/types" "^7.6.3" 119 | debug "^4.1.0" 120 | globals "^11.1.0" 121 | lodash "^4.17.13" 122 | 123 | "@babel/types@^7.0.0", "@babel/types@^7.3.0", "@babel/types@^7.4.0", "@babel/types@^7.4.4", "@babel/types@^7.6.0", "@babel/types@^7.6.3": 124 | version "7.6.3" 125 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.6.3.tgz#3f07d96f854f98e2fbd45c64b0cb942d11e8ba09" 126 | integrity sha512-CqbcpTxMcpuQTMhjI37ZHVgjBkysg5icREQIEZ0eG1yCNwg3oy+5AaLiOKmjsCj6nqOsa6Hf0ObjRVwokb7srA== 127 | dependencies: 128 | esutils "^2.0.2" 129 | lodash "^4.17.13" 130 | to-fast-properties "^2.0.0" 131 | 132 | "@cnakazawa/watch@^1.0.3": 133 | version "1.0.3" 134 | resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.3.tgz#099139eaec7ebf07a27c1786a3ff64f39464d2ef" 135 | integrity sha512-r5160ogAvGyHsal38Kux7YYtodEKOj89RGb28ht1jh3SJb08VwRwAKKJL0bGb04Zd/3r9FL3BFIc3bBidYffCA== 136 | dependencies: 137 | exec-sh "^0.3.2" 138 | minimist "^1.2.0" 139 | 140 | "@jest/console@^24.7.1", "@jest/console@^24.9.0": 141 | version "24.9.0" 142 | resolved "https://registry.yarnpkg.com/@jest/console/-/console-24.9.0.tgz#79b1bc06fb74a8cfb01cbdedf945584b1b9707f0" 143 | integrity sha512-Zuj6b8TnKXi3q4ymac8EQfc3ea/uhLeCGThFqXeC8H9/raaH8ARPUTdId+XyGd03Z4In0/VjD2OYFcBF09fNLQ== 144 | dependencies: 145 | "@jest/source-map" "^24.9.0" 146 | chalk "^2.0.1" 147 | slash "^2.0.0" 148 | 149 | "@jest/core@^24.9.0": 150 | version "24.9.0" 151 | resolved "https://registry.yarnpkg.com/@jest/core/-/core-24.9.0.tgz#2ceccd0b93181f9c4850e74f2a9ad43d351369c4" 152 | integrity sha512-Fogg3s4wlAr1VX7q+rhV9RVnUv5tD7VuWfYy1+whMiWUrvl7U3QJSJyWcDio9Lq2prqYsZaeTv2Rz24pWGkJ2A== 153 | dependencies: 154 | "@jest/console" "^24.7.1" 155 | "@jest/reporters" "^24.9.0" 156 | "@jest/test-result" "^24.9.0" 157 | "@jest/transform" "^24.9.0" 158 | "@jest/types" "^24.9.0" 159 | ansi-escapes "^3.0.0" 160 | chalk "^2.0.1" 161 | exit "^0.1.2" 162 | graceful-fs "^4.1.15" 163 | jest-changed-files "^24.9.0" 164 | jest-config "^24.9.0" 165 | jest-haste-map "^24.9.0" 166 | jest-message-util "^24.9.0" 167 | jest-regex-util "^24.3.0" 168 | jest-resolve "^24.9.0" 169 | jest-resolve-dependencies "^24.9.0" 170 | jest-runner "^24.9.0" 171 | jest-runtime "^24.9.0" 172 | jest-snapshot "^24.9.0" 173 | jest-util "^24.9.0" 174 | jest-validate "^24.9.0" 175 | jest-watcher "^24.9.0" 176 | micromatch "^3.1.10" 177 | p-each-series "^1.0.0" 178 | realpath-native "^1.1.0" 179 | rimraf "^2.5.4" 180 | slash "^2.0.0" 181 | strip-ansi "^5.0.0" 182 | 183 | "@jest/environment@^24.9.0": 184 | version "24.9.0" 185 | resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-24.9.0.tgz#21e3afa2d65c0586cbd6cbefe208bafade44ab18" 186 | integrity sha512-5A1QluTPhvdIPFYnO3sZC3smkNeXPVELz7ikPbhUj0bQjB07EoE9qtLrem14ZUYWdVayYbsjVwIiL4WBIMV4aQ== 187 | dependencies: 188 | "@jest/fake-timers" "^24.9.0" 189 | "@jest/transform" "^24.9.0" 190 | "@jest/types" "^24.9.0" 191 | jest-mock "^24.9.0" 192 | 193 | "@jest/fake-timers@^24.9.0": 194 | version "24.9.0" 195 | resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-24.9.0.tgz#ba3e6bf0eecd09a636049896434d306636540c93" 196 | integrity sha512-eWQcNa2YSwzXWIMC5KufBh3oWRIijrQFROsIqt6v/NS9Io/gknw1jsAC9c+ih/RQX4A3O7SeWAhQeN0goKhT9A== 197 | dependencies: 198 | "@jest/types" "^24.9.0" 199 | jest-message-util "^24.9.0" 200 | jest-mock "^24.9.0" 201 | 202 | "@jest/reporters@^24.9.0": 203 | version "24.9.0" 204 | resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-24.9.0.tgz#86660eff8e2b9661d042a8e98a028b8d631a5b43" 205 | integrity sha512-mu4X0yjaHrffOsWmVLzitKmmmWSQ3GGuefgNscUSWNiUNcEOSEQk9k3pERKEQVBb0Cnn88+UESIsZEMH3o88Gw== 206 | dependencies: 207 | "@jest/environment" "^24.9.0" 208 | "@jest/test-result" "^24.9.0" 209 | "@jest/transform" "^24.9.0" 210 | "@jest/types" "^24.9.0" 211 | chalk "^2.0.1" 212 | exit "^0.1.2" 213 | glob "^7.1.2" 214 | istanbul-lib-coverage "^2.0.2" 215 | istanbul-lib-instrument "^3.0.1" 216 | istanbul-lib-report "^2.0.4" 217 | istanbul-lib-source-maps "^3.0.1" 218 | istanbul-reports "^2.2.6" 219 | jest-haste-map "^24.9.0" 220 | jest-resolve "^24.9.0" 221 | jest-runtime "^24.9.0" 222 | jest-util "^24.9.0" 223 | jest-worker "^24.6.0" 224 | node-notifier "^5.4.2" 225 | slash "^2.0.0" 226 | source-map "^0.6.0" 227 | string-length "^2.0.0" 228 | 229 | "@jest/source-map@^24.3.0", "@jest/source-map@^24.9.0": 230 | version "24.9.0" 231 | resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-24.9.0.tgz#0e263a94430be4b41da683ccc1e6bffe2a191714" 232 | integrity sha512-/Xw7xGlsZb4MJzNDgB7PW5crou5JqWiBQaz6xyPd3ArOg2nfn/PunV8+olXbbEZzNl591o5rWKE9BRDaFAuIBg== 233 | dependencies: 234 | callsites "^3.0.0" 235 | graceful-fs "^4.1.15" 236 | source-map "^0.6.0" 237 | 238 | "@jest/test-result@^24.9.0": 239 | version "24.9.0" 240 | resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-24.9.0.tgz#11796e8aa9dbf88ea025757b3152595ad06ba0ca" 241 | integrity sha512-XEFrHbBonBJ8dGp2JmF8kP/nQI/ImPpygKHwQ/SY+es59Z3L5PI4Qb9TQQMAEeYsThG1xF0k6tmG0tIKATNiiA== 242 | dependencies: 243 | "@jest/console" "^24.9.0" 244 | "@jest/types" "^24.9.0" 245 | "@types/istanbul-lib-coverage" "^2.0.0" 246 | 247 | "@jest/test-sequencer@^24.9.0": 248 | version "24.9.0" 249 | resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-24.9.0.tgz#f8f334f35b625a4f2f355f2fe7e6036dad2e6b31" 250 | integrity sha512-6qqsU4o0kW1dvA95qfNog8v8gkRN9ph6Lz7r96IvZpHdNipP2cBcb07J1Z45mz/VIS01OHJ3pY8T5fUY38tg4A== 251 | dependencies: 252 | "@jest/test-result" "^24.9.0" 253 | jest-haste-map "^24.9.0" 254 | jest-runner "^24.9.0" 255 | jest-runtime "^24.9.0" 256 | 257 | "@jest/transform@^24.9.0": 258 | version "24.9.0" 259 | resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-24.9.0.tgz#4ae2768b296553fadab09e9ec119543c90b16c56" 260 | integrity sha512-TcQUmyNRxV94S0QpMOnZl0++6RMiqpbH/ZMccFB/amku6Uwvyb1cjYX7xkp5nGNkbX4QPH/FcB6q1HBTHynLmQ== 261 | dependencies: 262 | "@babel/core" "^7.1.0" 263 | "@jest/types" "^24.9.0" 264 | babel-plugin-istanbul "^5.1.0" 265 | chalk "^2.0.1" 266 | convert-source-map "^1.4.0" 267 | fast-json-stable-stringify "^2.0.0" 268 | graceful-fs "^4.1.15" 269 | jest-haste-map "^24.9.0" 270 | jest-regex-util "^24.9.0" 271 | jest-util "^24.9.0" 272 | micromatch "^3.1.10" 273 | pirates "^4.0.1" 274 | realpath-native "^1.1.0" 275 | slash "^2.0.0" 276 | source-map "^0.6.1" 277 | write-file-atomic "2.4.1" 278 | 279 | "@jest/types@^24.9.0": 280 | version "24.9.0" 281 | resolved "https://registry.yarnpkg.com/@jest/types/-/types-24.9.0.tgz#63cb26cb7500d069e5a389441a7c6ab5e909fc59" 282 | integrity sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw== 283 | dependencies: 284 | "@types/istanbul-lib-coverage" "^2.0.0" 285 | "@types/istanbul-reports" "^1.1.1" 286 | "@types/yargs" "^13.0.0" 287 | 288 | "@nodelib/fs.scandir@2.1.3": 289 | version "2.1.3" 290 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.3.tgz#3a582bdb53804c6ba6d146579c46e52130cf4a3b" 291 | integrity sha512-eGmwYQn3gxo4r7jdQnkrrN6bY478C3P+a/y72IJukF8LjB6ZHeB3c+Ehacj3sYeSmUXGlnA67/PmbM9CVwL7Dw== 292 | dependencies: 293 | "@nodelib/fs.stat" "2.0.3" 294 | run-parallel "^1.1.9" 295 | 296 | "@nodelib/fs.stat@2.0.3", "@nodelib/fs.stat@^2.0.2": 297 | version "2.0.3" 298 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.3.tgz#34dc5f4cabbc720f4e60f75a747e7ecd6c175bd3" 299 | integrity sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA== 300 | 301 | "@nodelib/fs.walk@^1.2.3": 302 | version "1.2.4" 303 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.4.tgz#011b9202a70a6366e436ca5c065844528ab04976" 304 | integrity sha512-1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ== 305 | dependencies: 306 | "@nodelib/fs.scandir" "2.1.3" 307 | fastq "^1.6.0" 308 | 309 | "@samverschueren/stream-to-observable@^0.3.0": 310 | version "0.3.0" 311 | resolved "https://registry.yarnpkg.com/@samverschueren/stream-to-observable/-/stream-to-observable-0.3.0.tgz#ecdf48d532c58ea477acfcab80348424f8d0662f" 312 | dependencies: 313 | any-observable "^0.3.0" 314 | 315 | "@types/babel__core@^7.1.0": 316 | version "7.1.3" 317 | resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.3.tgz#e441ea7df63cd080dfcd02ab199e6d16a735fc30" 318 | integrity sha512-8fBo0UR2CcwWxeX7WIIgJ7lXjasFxoYgRnFHUj+hRvKkpiBJbxhdAPTCY6/ZKM0uxANFVzt4yObSLuTiTnazDA== 319 | dependencies: 320 | "@babel/parser" "^7.1.0" 321 | "@babel/types" "^7.0.0" 322 | "@types/babel__generator" "*" 323 | "@types/babel__template" "*" 324 | "@types/babel__traverse" "*" 325 | 326 | "@types/babel__generator@*": 327 | version "7.6.0" 328 | resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.0.tgz#f1ec1c104d1bb463556ecb724018ab788d0c172a" 329 | integrity sha512-c1mZUu4up5cp9KROs/QAw0gTeHrw/x7m52LcnvMxxOZ03DmLwPV0MlGmlgzV3cnSdjhJOZsj7E7FHeioai+egw== 330 | dependencies: 331 | "@babel/types" "^7.0.0" 332 | 333 | "@types/babel__template@*": 334 | version "7.0.2" 335 | resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.0.2.tgz#4ff63d6b52eddac1de7b975a5223ed32ecea9307" 336 | integrity sha512-/K6zCpeW7Imzgab2bLkLEbz0+1JlFSrUMdw7KoIIu+IUdu51GWaBZpd3y1VXGVXzynvGa4DaIaxNZHiON3GXUg== 337 | dependencies: 338 | "@babel/parser" "^7.1.0" 339 | "@babel/types" "^7.0.0" 340 | 341 | "@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": 342 | version "7.0.7" 343 | resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.0.7.tgz#2496e9ff56196cc1429c72034e07eab6121b6f3f" 344 | integrity sha512-CeBpmX1J8kWLcDEnI3Cl2Eo6RfbGvzUctA+CjZUhOKDFbLfcr7fc4usEqLNWetrlJd7RhAkyYe2czXop4fICpw== 345 | dependencies: 346 | "@babel/types" "^7.3.0" 347 | 348 | "@types/events@*": 349 | version "3.0.0" 350 | resolved "https://registry.yarnpkg.com/@types/events/-/events-3.0.0.tgz#2862f3f58a9a7f7c3e78d79f130dd4d71c25c2a7" 351 | integrity sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g== 352 | 353 | "@types/glob@^7.1.1": 354 | version "7.1.1" 355 | resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.1.tgz#aa59a1c6e3fbc421e07ccd31a944c30eba521575" 356 | integrity sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w== 357 | dependencies: 358 | "@types/events" "*" 359 | "@types/minimatch" "*" 360 | "@types/node" "*" 361 | 362 | "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0": 363 | version "2.0.1" 364 | resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.1.tgz#42995b446db9a48a11a07ec083499a860e9138ff" 365 | integrity sha512-hRJD2ahnnpLgsj6KWMYSrmXkM3rm2Dl1qkx6IOFD5FnuNPXJIG5L0dhgKXCYTRMGzU4n0wImQ/xfmRc4POUFlg== 366 | 367 | "@types/istanbul-lib-report@*": 368 | version "1.1.1" 369 | resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#e5471e7fa33c61358dd38426189c037a58433b8c" 370 | integrity sha512-3BUTyMzbZa2DtDI2BkERNC6jJw2Mr2Y0oGI7mRxYNBPxppbtEK1F66u3bKwU2g+wxwWI7PAoRpJnOY1grJqzHg== 371 | dependencies: 372 | "@types/istanbul-lib-coverage" "*" 373 | 374 | "@types/istanbul-reports@^1.1.1": 375 | version "1.1.1" 376 | resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-1.1.1.tgz#7a8cbf6a406f36c8add871625b278eaf0b0d255a" 377 | integrity sha512-UpYjBi8xefVChsCoBpKShdxTllC9pwISirfoZsUa2AAdQg/Jd2KQGtSbw+ya7GPo7x/wAPlH6JBhKhAsXUEZNA== 378 | dependencies: 379 | "@types/istanbul-lib-coverage" "*" 380 | "@types/istanbul-lib-report" "*" 381 | 382 | "@types/jest-diff@*": 383 | version "20.0.1" 384 | resolved "https://registry.yarnpkg.com/@types/jest-diff/-/jest-diff-20.0.1.tgz#35cc15b9c4f30a18ef21852e255fdb02f6d59b89" 385 | integrity sha512-yALhelO3i0hqZwhjtcr6dYyaLoCHbAMshwtj6cGxTvHZAKXHsYGdff6E8EPw3xLKY0ELUTQ69Q1rQiJENnccMA== 386 | 387 | "@types/jest@^24.0.20": 388 | version "24.0.20" 389 | resolved "https://registry.yarnpkg.com/@types/jest/-/jest-24.0.20.tgz#729d5fe8684e7fb06368d3bd557ac6d91289d861" 390 | integrity sha512-M8ebEkOpykGdLoRrmew7UowTZ1DANeeP0HiSIChl/4DGgmnSC1ntitNtkyNSXjMTsZvXuaxJrxjImEnRWNPsPw== 391 | dependencies: 392 | "@types/jest-diff" "*" 393 | 394 | "@types/minimatch@*": 395 | version "3.0.3" 396 | resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d" 397 | integrity sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA== 398 | 399 | "@types/node@*": 400 | version "12.11.7" 401 | resolved "https://registry.yarnpkg.com/@types/node/-/node-12.11.7.tgz#57682a9771a3f7b09c2497f28129a0462966524a" 402 | integrity sha512-JNbGaHFCLwgHn/iCckiGSOZ1XYHsKFwREtzPwSGCVld1SGhOlmZw2D4ZI94HQCrBHbADzW9m4LER/8olJTRGHA== 403 | 404 | "@types/normalize-package-data@^2.4.0": 405 | version "2.4.0" 406 | resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz#e486d0d97396d79beedd0a6e33f4534ff6b4973e" 407 | integrity sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA== 408 | 409 | "@types/stack-utils@^1.0.1": 410 | version "1.0.1" 411 | resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e" 412 | integrity sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw== 413 | 414 | "@types/yargs-parser@*": 415 | version "13.1.0" 416 | resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-13.1.0.tgz#c563aa192f39350a1d18da36c5a8da382bbd8228" 417 | integrity sha512-gCubfBUZ6KxzoibJ+SCUc/57Ms1jz5NjHe4+dI2krNmU5zCPAphyLJYyTOg06ueIyfj+SaCUqmzun7ImlxDcKg== 418 | 419 | "@types/yargs@^13.0.0": 420 | version "13.0.3" 421 | resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-13.0.3.tgz#76482af3981d4412d65371a318f992d33464a380" 422 | integrity sha512-K8/LfZq2duW33XW/tFwEAfnZlqIfVsoyRB3kfXdPXYhl0nfM8mmh7GS0jg7WrX2Dgq/0Ha/pR1PaR+BvmWwjiQ== 423 | dependencies: 424 | "@types/yargs-parser" "*" 425 | 426 | abab@^2.0.0: 427 | version "2.0.0" 428 | resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.0.tgz#aba0ab4c5eee2d4c79d3487d85450fb2376ebb0f" 429 | 430 | abbrev@1: 431 | version "1.1.1" 432 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 433 | 434 | acorn-globals@^4.1.0: 435 | version "4.3.0" 436 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.0.tgz#e3b6f8da3c1552a95ae627571f7dd6923bb54103" 437 | dependencies: 438 | acorn "^6.0.1" 439 | acorn-walk "^6.0.1" 440 | 441 | acorn-walk@^6.0.1: 442 | version "6.1.0" 443 | resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.1.0.tgz#c957f4a1460da46af4a0388ce28b4c99355b0cbc" 444 | 445 | acorn@^5.5.3: 446 | version "5.7.3" 447 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279" 448 | 449 | acorn@^6.0.1: 450 | version "6.0.2" 451 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.0.2.tgz#6a459041c320ab17592c6317abbfdf4bbaa98ca4" 452 | 453 | aggregate-error@^3.0.0: 454 | version "3.0.1" 455 | resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.0.1.tgz#db2fe7246e536f40d9b5442a39e117d7dd6a24e0" 456 | integrity sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA== 457 | dependencies: 458 | clean-stack "^2.0.0" 459 | indent-string "^4.0.0" 460 | 461 | ajv@^5.3.0: 462 | version "5.5.2" 463 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 464 | dependencies: 465 | co "^4.6.0" 466 | fast-deep-equal "^1.0.0" 467 | fast-json-stable-stringify "^2.0.0" 468 | json-schema-traverse "^0.3.0" 469 | 470 | ansi-escapes@^3.0.0: 471 | version "3.1.0" 472 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30" 473 | 474 | ansi-red@^0.1.1: 475 | version "0.1.1" 476 | resolved "https://registry.yarnpkg.com/ansi-red/-/ansi-red-0.1.1.tgz#8c638f9d1080800a353c9c28c8a81ca4705d946c" 477 | dependencies: 478 | ansi-wrap "0.1.0" 479 | 480 | ansi-regex@^2.0.0: 481 | version "2.1.1" 482 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 483 | 484 | ansi-regex@^3.0.0: 485 | version "3.0.0" 486 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 487 | 488 | ansi-regex@^4.0.0, ansi-regex@^4.1.0: 489 | version "4.1.0" 490 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" 491 | integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== 492 | 493 | ansi-styles@^2.2.1: 494 | version "2.2.1" 495 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 496 | 497 | ansi-styles@^3.2.0, ansi-styles@^3.2.1: 498 | version "3.2.1" 499 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 500 | dependencies: 501 | color-convert "^1.9.0" 502 | 503 | ansi-wrap@0.1.0: 504 | version "0.1.0" 505 | resolved "https://registry.yarnpkg.com/ansi-wrap/-/ansi-wrap-0.1.0.tgz#a82250ddb0015e9a27ca82e82ea603bbfa45efaf" 506 | 507 | any-observable@^0.3.0: 508 | version "0.3.0" 509 | resolved "https://registry.yarnpkg.com/any-observable/-/any-observable-0.3.0.tgz#af933475e5806a67d0d7df090dd5e8bef65d119b" 510 | 511 | anymatch@^2.0.0: 512 | version "2.0.0" 513 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" 514 | dependencies: 515 | micromatch "^3.1.4" 516 | normalize-path "^2.1.1" 517 | 518 | aproba@^1.0.3: 519 | version "1.2.0" 520 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 521 | 522 | are-we-there-yet@~1.1.2: 523 | version "1.1.5" 524 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" 525 | dependencies: 526 | delegates "^1.0.0" 527 | readable-stream "^2.0.6" 528 | 529 | argparse@^1.0.7: 530 | version "1.0.10" 531 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 532 | dependencies: 533 | sprintf-js "~1.0.2" 534 | 535 | argparse@~0.1.15: 536 | version "0.1.16" 537 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-0.1.16.tgz#cfd01e0fbba3d6caed049fbd758d40f65196f57c" 538 | dependencies: 539 | underscore "~1.7.0" 540 | underscore.string "~2.4.0" 541 | 542 | arr-diff@^4.0.0: 543 | version "4.0.0" 544 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 545 | 546 | arr-flatten@^1.1.0: 547 | version "1.1.0" 548 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 549 | 550 | arr-union@^3.1.0: 551 | version "3.1.0" 552 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 553 | 554 | array-equal@^1.0.0: 555 | version "1.0.0" 556 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 557 | 558 | array-union@^2.1.0: 559 | version "2.1.0" 560 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" 561 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== 562 | 563 | array-unique@^0.3.2: 564 | version "0.3.2" 565 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 566 | 567 | asn1@~0.2.3: 568 | version "0.2.4" 569 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" 570 | dependencies: 571 | safer-buffer "~2.1.0" 572 | 573 | assert-plus@1.0.0, assert-plus@^1.0.0: 574 | version "1.0.0" 575 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 576 | 577 | assign-symbols@^1.0.0: 578 | version "1.0.0" 579 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 580 | 581 | astral-regex@^1.0.0: 582 | version "1.0.0" 583 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 584 | 585 | async-limiter@~1.0.0: 586 | version "1.0.0" 587 | resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8" 588 | 589 | asynckit@^0.4.0: 590 | version "0.4.0" 591 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 592 | 593 | atob@^2.1.1: 594 | version "2.1.2" 595 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" 596 | 597 | autolinker@~0.15.0: 598 | version "0.15.3" 599 | resolved "https://registry.yarnpkg.com/autolinker/-/autolinker-0.15.3.tgz#342417d8f2f3461b14cf09088d5edf8791dc9832" 600 | 601 | aws-sign2@~0.7.0: 602 | version "0.7.0" 603 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 604 | 605 | aws4@^1.8.0: 606 | version "1.8.0" 607 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.8.0.tgz#f0e003d9ca9e7f59c7a508945d7b2ef9a04a542f" 608 | 609 | babel-jest@^24.9.0: 610 | version "24.9.0" 611 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-24.9.0.tgz#3fc327cb8467b89d14d7bc70e315104a783ccd54" 612 | integrity sha512-ntuddfyiN+EhMw58PTNL1ph4C9rECiQXjI4nMMBKBaNjXvqLdkXpPRcMSr4iyBrJg/+wz9brFUD6RhOAT6r4Iw== 613 | dependencies: 614 | "@jest/transform" "^24.9.0" 615 | "@jest/types" "^24.9.0" 616 | "@types/babel__core" "^7.1.0" 617 | babel-plugin-istanbul "^5.1.0" 618 | babel-preset-jest "^24.9.0" 619 | chalk "^2.4.2" 620 | slash "^2.0.0" 621 | 622 | babel-plugin-istanbul@^5.1.0: 623 | version "5.2.0" 624 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-5.2.0.tgz#df4ade83d897a92df069c4d9a25cf2671293c854" 625 | integrity sha512-5LphC0USA8t4i1zCtjbbNb6jJj/9+X6P37Qfirc/70EQ34xKlMW+a1RHGwxGI+SwWpNwZ27HqvzAobeqaXwiZw== 626 | dependencies: 627 | "@babel/helper-plugin-utils" "^7.0.0" 628 | find-up "^3.0.0" 629 | istanbul-lib-instrument "^3.3.0" 630 | test-exclude "^5.2.3" 631 | 632 | babel-plugin-jest-hoist@^24.9.0: 633 | version "24.9.0" 634 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-24.9.0.tgz#4f837091eb407e01447c8843cbec546d0002d756" 635 | integrity sha512-2EMA2P8Vp7lG0RAzr4HXqtYwacfMErOuv1U3wrvxHX6rD1sV6xS3WXG3r8TRQ2r6w8OhvSdWt+z41hQNwNm3Xw== 636 | dependencies: 637 | "@types/babel__traverse" "^7.0.6" 638 | 639 | babel-preset-jest@^24.9.0: 640 | version "24.9.0" 641 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-24.9.0.tgz#192b521e2217fb1d1f67cf73f70c336650ad3cdc" 642 | integrity sha512-izTUuhE4TMfTRPF92fFwD2QfdXaZW08qvWTFCI51V8rW5x00UuPgc3ajRoWofXOuxjfcOM5zzSYsQS3H8KGCAg== 643 | dependencies: 644 | "@babel/plugin-syntax-object-rest-spread" "^7.0.0" 645 | babel-plugin-jest-hoist "^24.9.0" 646 | 647 | balanced-match@^1.0.0: 648 | version "1.0.0" 649 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 650 | 651 | base@^0.11.1: 652 | version "0.11.2" 653 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 654 | dependencies: 655 | cache-base "^1.0.1" 656 | class-utils "^0.3.5" 657 | component-emitter "^1.2.1" 658 | define-property "^1.0.0" 659 | isobject "^3.0.1" 660 | mixin-deep "^1.2.0" 661 | pascalcase "^0.1.1" 662 | 663 | bcrypt-pbkdf@^1.0.0: 664 | version "1.0.2" 665 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" 666 | dependencies: 667 | tweetnacl "^0.14.3" 668 | 669 | brace-expansion@^1.1.7: 670 | version "1.1.11" 671 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 672 | dependencies: 673 | balanced-match "^1.0.0" 674 | concat-map "0.0.1" 675 | 676 | braces@^2.3.1: 677 | version "2.3.2" 678 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" 679 | dependencies: 680 | arr-flatten "^1.1.0" 681 | array-unique "^0.3.2" 682 | extend-shallow "^2.0.1" 683 | fill-range "^4.0.0" 684 | isobject "^3.0.1" 685 | repeat-element "^1.1.2" 686 | snapdragon "^0.8.1" 687 | snapdragon-node "^2.0.1" 688 | split-string "^3.0.2" 689 | to-regex "^3.0.1" 690 | 691 | braces@^3.0.1: 692 | version "3.0.2" 693 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 694 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 695 | dependencies: 696 | fill-range "^7.0.1" 697 | 698 | browser-process-hrtime@^0.1.2: 699 | version "0.1.3" 700 | resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-0.1.3.tgz#616f00faef1df7ec1b5bf9cfe2bdc3170f26c7b4" 701 | 702 | browser-resolve@^1.11.3: 703 | version "1.11.3" 704 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.3.tgz#9b7cbb3d0f510e4cb86bdbd796124d28b5890af6" 705 | dependencies: 706 | resolve "1.1.7" 707 | 708 | bs-logger@0.x: 709 | version "0.2.5" 710 | resolved "https://registry.yarnpkg.com/bs-logger/-/bs-logger-0.2.5.tgz#1d82f0cf88864e1341cd9262237f8d0748a49b22" 711 | dependencies: 712 | fast-json-stable-stringify "^2.0.0" 713 | 714 | bser@^2.0.0: 715 | version "2.0.0" 716 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 717 | dependencies: 718 | node-int64 "^0.4.0" 719 | 720 | buffer-from@1.x, buffer-from@^1.0.0: 721 | version "1.1.1" 722 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 723 | 724 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 725 | version "1.1.1" 726 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 727 | 728 | cache-base@^1.0.1: 729 | version "1.0.1" 730 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 731 | dependencies: 732 | collection-visit "^1.0.0" 733 | component-emitter "^1.2.1" 734 | get-value "^2.0.6" 735 | has-value "^1.0.0" 736 | isobject "^3.0.1" 737 | set-value "^2.0.0" 738 | to-object-path "^0.3.0" 739 | union-value "^1.0.0" 740 | unset-value "^1.0.0" 741 | 742 | caller-callsite@^2.0.0: 743 | version "2.0.0" 744 | resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134" 745 | integrity sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ= 746 | dependencies: 747 | callsites "^2.0.0" 748 | 749 | caller-path@^2.0.0: 750 | version "2.0.0" 751 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4" 752 | integrity sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ= 753 | dependencies: 754 | caller-callsite "^2.0.0" 755 | 756 | callsites@^2.0.0: 757 | version "2.0.0" 758 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 759 | 760 | callsites@^3.0.0: 761 | version "3.1.0" 762 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 763 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 764 | 765 | camelcase@^4.1.0: 766 | version "4.1.0" 767 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 768 | 769 | camelcase@^5.0.0, camelcase@^5.3.1: 770 | version "5.3.1" 771 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 772 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 773 | 774 | capture-exit@^2.0.0: 775 | version "2.0.0" 776 | resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4" 777 | integrity sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g== 778 | dependencies: 779 | rsvp "^4.8.4" 780 | 781 | caseless@~0.12.0: 782 | version "0.12.0" 783 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 784 | 785 | chalk@^1.0.0, chalk@^1.1.3: 786 | version "1.1.3" 787 | resolved "http://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 788 | dependencies: 789 | ansi-styles "^2.2.1" 790 | escape-string-regexp "^1.0.2" 791 | has-ansi "^2.0.0" 792 | strip-ansi "^3.0.0" 793 | supports-color "^2.0.0" 794 | 795 | chalk@^2.0.0, chalk@^2.0.1, chalk@^2.3.0: 796 | version "2.4.1" 797 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e" 798 | dependencies: 799 | ansi-styles "^3.2.1" 800 | escape-string-regexp "^1.0.5" 801 | supports-color "^5.3.0" 802 | 803 | chalk@^2.4.1, chalk@^2.4.2: 804 | version "2.4.2" 805 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 806 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 807 | dependencies: 808 | ansi-styles "^3.2.1" 809 | escape-string-regexp "^1.0.5" 810 | supports-color "^5.3.0" 811 | 812 | chownr@^1.0.1: 813 | version "1.1.1" 814 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.1.tgz#54726b8b8fff4df053c42187e801fb4412df1494" 815 | 816 | ci-info@^2.0.0: 817 | version "2.0.0" 818 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" 819 | integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== 820 | 821 | class-utils@^0.3.5: 822 | version "0.3.6" 823 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 824 | dependencies: 825 | arr-union "^3.1.0" 826 | define-property "^0.2.5" 827 | isobject "^3.0.0" 828 | static-extend "^0.1.1" 829 | 830 | clean-stack@^2.0.0: 831 | version "2.2.0" 832 | resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" 833 | integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== 834 | 835 | cli-cursor@^2.0.0, cli-cursor@^2.1.0: 836 | version "2.1.0" 837 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 838 | integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU= 839 | dependencies: 840 | restore-cursor "^2.0.0" 841 | 842 | cli-truncate@^0.2.1: 843 | version "0.2.1" 844 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-0.2.1.tgz#9f15cfbb0705005369216c626ac7d05ab90dd574" 845 | dependencies: 846 | slice-ansi "0.0.4" 847 | string-width "^1.0.1" 848 | 849 | cliui@^5.0.0: 850 | version "5.0.0" 851 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5" 852 | integrity sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA== 853 | dependencies: 854 | string-width "^3.1.0" 855 | strip-ansi "^5.2.0" 856 | wrap-ansi "^5.1.0" 857 | 858 | co@^4.6.0: 859 | version "4.6.0" 860 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 861 | 862 | code-point-at@^1.0.0: 863 | version "1.1.0" 864 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 865 | 866 | coffee-script@^1.12.4: 867 | version "1.12.7" 868 | resolved "https://registry.yarnpkg.com/coffee-script/-/coffee-script-1.12.7.tgz#c05dae0cb79591d05b3070a8433a98c9a89ccc53" 869 | 870 | collection-visit@^1.0.0: 871 | version "1.0.0" 872 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 873 | dependencies: 874 | map-visit "^1.0.0" 875 | object-visit "^1.0.0" 876 | 877 | color-convert@^1.9.0: 878 | version "1.9.3" 879 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 880 | dependencies: 881 | color-name "1.1.3" 882 | 883 | color-name@1.1.3: 884 | version "1.1.3" 885 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 886 | 887 | combined-stream@1.0.6: 888 | version "1.0.6" 889 | resolved "http://registry.npmjs.org/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818" 890 | dependencies: 891 | delayed-stream "~1.0.0" 892 | 893 | combined-stream@~1.0.6: 894 | version "1.0.7" 895 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.7.tgz#2d1d24317afb8abe95d6d2c0b07b57813539d828" 896 | dependencies: 897 | delayed-stream "~1.0.0" 898 | 899 | commander@^2.12.1: 900 | version "2.18.0" 901 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.18.0.tgz#2bf063ddee7c7891176981a2cc798e5754bc6970" 902 | 903 | commander@^2.20.0: 904 | version "2.20.3" 905 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" 906 | integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== 907 | 908 | commander@~2.17.1: 909 | version "2.17.1" 910 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf" 911 | 912 | component-emitter@^1.2.1: 913 | version "1.2.1" 914 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 915 | 916 | concat-map@0.0.1: 917 | version "0.0.1" 918 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 919 | 920 | concat-stream@^1.5.2: 921 | version "1.6.2" 922 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" 923 | dependencies: 924 | buffer-from "^1.0.0" 925 | inherits "^2.0.3" 926 | readable-stream "^2.2.2" 927 | typedarray "^0.0.6" 928 | 929 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 930 | version "1.1.0" 931 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 932 | 933 | convert-source-map@^1.1.0, convert-source-map@^1.4.0: 934 | version "1.6.0" 935 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20" 936 | integrity sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A== 937 | dependencies: 938 | safe-buffer "~5.1.1" 939 | 940 | copy-descriptor@^0.1.0: 941 | version "0.1.1" 942 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 943 | 944 | core-util-is@1.0.2, core-util-is@~1.0.0: 945 | version "1.0.2" 946 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 947 | 948 | cosmiconfig@^5.2.1: 949 | version "5.2.1" 950 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a" 951 | integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA== 952 | dependencies: 953 | import-fresh "^2.0.0" 954 | is-directory "^0.3.1" 955 | js-yaml "^3.13.1" 956 | parse-json "^4.0.0" 957 | 958 | cross-spawn@^6.0.0: 959 | version "6.0.5" 960 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" 961 | integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== 962 | dependencies: 963 | nice-try "^1.0.4" 964 | path-key "^2.0.1" 965 | semver "^5.5.0" 966 | shebang-command "^1.2.0" 967 | which "^1.2.9" 968 | 969 | cross-spawn@^7.0.0: 970 | version "7.0.1" 971 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.1.tgz#0ab56286e0f7c24e153d04cc2aa027e43a9a5d14" 972 | integrity sha512-u7v4o84SwFpD32Z8IIcPZ6z1/ie24O6RU3RbtL5Y316l3KuHVPx9ItBgWQ6VlfAFnRnTtMUrsQ9MUUTuEZjogg== 973 | dependencies: 974 | path-key "^3.1.0" 975 | shebang-command "^2.0.0" 976 | which "^2.0.1" 977 | 978 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 979 | version "0.3.4" 980 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.4.tgz#8cd52e8a3acfd68d3aed38ee0a640177d2f9d797" 981 | 982 | cssstyle@^1.0.0: 983 | version "1.1.1" 984 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-1.1.1.tgz#18b038a9c44d65f7a8e428a653b9f6fe42faf5fb" 985 | dependencies: 986 | cssom "0.3.x" 987 | 988 | dashdash@^1.12.0: 989 | version "1.14.1" 990 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 991 | dependencies: 992 | assert-plus "^1.0.0" 993 | 994 | data-urls@^1.0.0: 995 | version "1.0.1" 996 | resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-1.0.1.tgz#d416ac3896918f29ca84d81085bc3705834da579" 997 | dependencies: 998 | abab "^2.0.0" 999 | whatwg-mimetype "^2.1.0" 1000 | whatwg-url "^7.0.0" 1001 | 1002 | date-fns@^1.27.2: 1003 | version "1.29.0" 1004 | resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.29.0.tgz#12e609cdcb935127311d04d33334e2960a2a54e6" 1005 | 1006 | debug@^2.1.2, debug@^2.2.0, debug@^2.3.3: 1007 | version "2.6.9" 1008 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1009 | dependencies: 1010 | ms "2.0.0" 1011 | 1012 | debug@^4.1.0, debug@^4.1.1: 1013 | version "4.1.1" 1014 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" 1015 | integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== 1016 | dependencies: 1017 | ms "^2.1.1" 1018 | 1019 | decamelize@^1.2.0: 1020 | version "1.2.0" 1021 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1022 | integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= 1023 | 1024 | decode-uri-component@^0.2.0: 1025 | version "0.2.0" 1026 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 1027 | 1028 | dedent@^0.7.0: 1029 | version "0.7.0" 1030 | resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" 1031 | 1032 | deep-extend@^0.6.0: 1033 | version "0.6.0" 1034 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 1035 | 1036 | deep-is@~0.1.3: 1037 | version "0.1.3" 1038 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1039 | 1040 | define-properties@^1.1.2: 1041 | version "1.1.3" 1042 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 1043 | dependencies: 1044 | object-keys "^1.0.12" 1045 | 1046 | define-property@^0.2.5: 1047 | version "0.2.5" 1048 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 1049 | dependencies: 1050 | is-descriptor "^0.1.0" 1051 | 1052 | define-property@^1.0.0: 1053 | version "1.0.0" 1054 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 1055 | dependencies: 1056 | is-descriptor "^1.0.0" 1057 | 1058 | define-property@^2.0.2: 1059 | version "2.0.2" 1060 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 1061 | dependencies: 1062 | is-descriptor "^1.0.2" 1063 | isobject "^3.0.1" 1064 | 1065 | del@^5.0.0: 1066 | version "5.1.0" 1067 | resolved "https://registry.yarnpkg.com/del/-/del-5.1.0.tgz#d9487c94e367410e6eff2925ee58c0c84a75b3a7" 1068 | integrity sha512-wH9xOVHnczo9jN2IW68BabcecVPxacIA3g/7z6vhSU/4stOKQzeCRK0yD0A24WiAAUJmmVpWqrERcTxnLo3AnA== 1069 | dependencies: 1070 | globby "^10.0.1" 1071 | graceful-fs "^4.2.2" 1072 | is-glob "^4.0.1" 1073 | is-path-cwd "^2.2.0" 1074 | is-path-inside "^3.0.1" 1075 | p-map "^3.0.0" 1076 | rimraf "^3.0.0" 1077 | slash "^3.0.0" 1078 | 1079 | delayed-stream@~1.0.0: 1080 | version "1.0.0" 1081 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1082 | 1083 | delegates@^1.0.0: 1084 | version "1.0.0" 1085 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1086 | 1087 | detect-libc@^1.0.2: 1088 | version "1.0.3" 1089 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 1090 | 1091 | detect-newline@^2.1.0: 1092 | version "2.1.0" 1093 | resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2" 1094 | 1095 | diacritics-map@^0.1.0: 1096 | version "0.1.0" 1097 | resolved "https://registry.yarnpkg.com/diacritics-map/-/diacritics-map-0.1.0.tgz#6dfc0ff9d01000a2edf2865371cac316e94977af" 1098 | 1099 | diff-sequences@^24.9.0: 1100 | version "24.9.0" 1101 | resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-24.9.0.tgz#5715d6244e2aa65f48bba0bc972db0b0b11e95b5" 1102 | integrity sha512-Dj6Wk3tWyTE+Fo1rW8v0Xhwk80um6yFYKbuAxc9c3EZxIHFDYwbi34Uk42u1CdnIiVorvt4RmlSDjIPyzGC2ew== 1103 | 1104 | diff@^4.0.1: 1105 | version "4.0.1" 1106 | resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.1.tgz#0c667cb467ebbb5cea7f14f135cc2dba7780a8ff" 1107 | integrity sha512-s2+XdvhPCOF01LRQBC8hf4vhbVmI2CGS5aZnxLJlT5FtdhPCDFq80q++zK2KlrVorVDdL5BOGZ/VfLrVtYNF+Q== 1108 | 1109 | dir-glob@^3.0.1: 1110 | version "3.0.1" 1111 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" 1112 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== 1113 | dependencies: 1114 | path-type "^4.0.0" 1115 | 1116 | domexception@^1.0.1: 1117 | version "1.0.1" 1118 | resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90" 1119 | dependencies: 1120 | webidl-conversions "^4.0.2" 1121 | 1122 | ecc-jsbn@~0.1.1: 1123 | version "0.1.2" 1124 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" 1125 | dependencies: 1126 | jsbn "~0.1.0" 1127 | safer-buffer "^2.1.0" 1128 | 1129 | elegant-spinner@^1.0.1: 1130 | version "1.0.1" 1131 | resolved "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e" 1132 | 1133 | emoji-regex@^7.0.1: 1134 | version "7.0.3" 1135 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" 1136 | integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== 1137 | 1138 | end-of-stream@^1.1.0: 1139 | version "1.4.4" 1140 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" 1141 | integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== 1142 | dependencies: 1143 | once "^1.4.0" 1144 | 1145 | error-ex@^1.3.1: 1146 | version "1.3.2" 1147 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 1148 | dependencies: 1149 | is-arrayish "^0.2.1" 1150 | 1151 | es-abstract@^1.5.1: 1152 | version "1.12.0" 1153 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.12.0.tgz#9dbbdd27c6856f0001421ca18782d786bf8a6165" 1154 | dependencies: 1155 | es-to-primitive "^1.1.1" 1156 | function-bind "^1.1.1" 1157 | has "^1.0.1" 1158 | is-callable "^1.1.3" 1159 | is-regex "^1.0.4" 1160 | 1161 | es-to-primitive@^1.1.1: 1162 | version "1.2.0" 1163 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377" 1164 | dependencies: 1165 | is-callable "^1.1.4" 1166 | is-date-object "^1.0.1" 1167 | is-symbol "^1.0.2" 1168 | 1169 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1170 | version "1.0.5" 1171 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1172 | 1173 | escodegen@^1.9.1: 1174 | version "1.11.0" 1175 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.11.0.tgz#b27a9389481d5bfd5bec76f7bb1eb3f8f4556589" 1176 | dependencies: 1177 | esprima "^3.1.3" 1178 | estraverse "^4.2.0" 1179 | esutils "^2.0.2" 1180 | optionator "^0.8.1" 1181 | optionalDependencies: 1182 | source-map "~0.6.1" 1183 | 1184 | esprima@^3.1.3: 1185 | version "3.1.3" 1186 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1187 | 1188 | esprima@^4.0.0: 1189 | version "4.0.1" 1190 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 1191 | 1192 | estraverse@^4.2.0: 1193 | version "4.2.0" 1194 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1195 | 1196 | esutils@^2.0.2: 1197 | version "2.0.2" 1198 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1199 | 1200 | exec-sh@^0.3.2: 1201 | version "0.3.2" 1202 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.2.tgz#6738de2eb7c8e671d0366aea0b0db8c6f7d7391b" 1203 | integrity sha512-9sLAvzhI5nc8TpuQUh4ahMdCrWT00wPWz7j47/emR5+2qEfoZP5zzUXvx+vdx+H6ohhnsYC31iX04QLYJK8zTg== 1204 | 1205 | execa@^1.0.0: 1206 | version "1.0.0" 1207 | resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" 1208 | integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== 1209 | dependencies: 1210 | cross-spawn "^6.0.0" 1211 | get-stream "^4.0.0" 1212 | is-stream "^1.1.0" 1213 | npm-run-path "^2.0.0" 1214 | p-finally "^1.0.0" 1215 | signal-exit "^3.0.0" 1216 | strip-eof "^1.0.0" 1217 | 1218 | execa@^2.0.3: 1219 | version "2.1.0" 1220 | resolved "https://registry.yarnpkg.com/execa/-/execa-2.1.0.tgz#e5d3ecd837d2a60ec50f3da78fd39767747bbe99" 1221 | integrity sha512-Y/URAVapfbYy2Xp/gb6A0E7iR8xeqOCXsuuaoMn7A5PzrXUK84E1gyiEfq0wQd/GHA6GsoHWwhNq8anb0mleIw== 1222 | dependencies: 1223 | cross-spawn "^7.0.0" 1224 | get-stream "^5.0.0" 1225 | is-stream "^2.0.0" 1226 | merge-stream "^2.0.0" 1227 | npm-run-path "^3.0.0" 1228 | onetime "^5.1.0" 1229 | p-finally "^2.0.0" 1230 | signal-exit "^3.0.2" 1231 | strip-final-newline "^2.0.0" 1232 | 1233 | exit@^0.1.2: 1234 | version "0.1.2" 1235 | resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" 1236 | 1237 | expand-brackets@^2.1.4: 1238 | version "2.1.4" 1239 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 1240 | dependencies: 1241 | debug "^2.3.3" 1242 | define-property "^0.2.5" 1243 | extend-shallow "^2.0.1" 1244 | posix-character-classes "^0.1.0" 1245 | regex-not "^1.0.0" 1246 | snapdragon "^0.8.1" 1247 | to-regex "^3.0.1" 1248 | 1249 | expand-range@^1.8.1: 1250 | version "1.8.2" 1251 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1252 | dependencies: 1253 | fill-range "^2.1.0" 1254 | 1255 | expect@^24.9.0: 1256 | version "24.9.0" 1257 | resolved "https://registry.yarnpkg.com/expect/-/expect-24.9.0.tgz#b75165b4817074fa4a157794f46fe9f1ba15b6ca" 1258 | integrity sha512-wvVAx8XIol3Z5m9zvZXiyZOQ+sRJqNTIm6sGjdWlaZIeupQGO3WbYI+15D/AmEwZywL6wtJkbAbJtzkOfBuR0Q== 1259 | dependencies: 1260 | "@jest/types" "^24.9.0" 1261 | ansi-styles "^3.2.0" 1262 | jest-get-type "^24.9.0" 1263 | jest-matcher-utils "^24.9.0" 1264 | jest-message-util "^24.9.0" 1265 | jest-regex-util "^24.9.0" 1266 | 1267 | extend-shallow@^2.0.1: 1268 | version "2.0.1" 1269 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 1270 | dependencies: 1271 | is-extendable "^0.1.0" 1272 | 1273 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 1274 | version "3.0.2" 1275 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 1276 | dependencies: 1277 | assign-symbols "^1.0.0" 1278 | is-extendable "^1.0.1" 1279 | 1280 | extend@~3.0.2: 1281 | version "3.0.2" 1282 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 1283 | 1284 | extglob@^2.0.4: 1285 | version "2.0.4" 1286 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 1287 | dependencies: 1288 | array-unique "^0.3.2" 1289 | define-property "^1.0.0" 1290 | expand-brackets "^2.1.4" 1291 | extend-shallow "^2.0.1" 1292 | fragment-cache "^0.2.1" 1293 | regex-not "^1.0.0" 1294 | snapdragon "^0.8.1" 1295 | to-regex "^3.0.1" 1296 | 1297 | extsprintf@1.3.0: 1298 | version "1.3.0" 1299 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1300 | 1301 | extsprintf@^1.2.0: 1302 | version "1.4.0" 1303 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 1304 | 1305 | fast-deep-equal@^1.0.0: 1306 | version "1.1.0" 1307 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" 1308 | 1309 | fast-glob@^3.0.3: 1310 | version "3.1.0" 1311 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.1.0.tgz#77375a7e3e6f6fc9b18f061cddd28b8d1eec75ae" 1312 | integrity sha512-TrUz3THiq2Vy3bjfQUB2wNyPdGBeGmdjbzzBLhfHN4YFurYptCKwGq/TfiRavbGywFRzY6U2CdmQ1zmsY5yYaw== 1313 | dependencies: 1314 | "@nodelib/fs.stat" "^2.0.2" 1315 | "@nodelib/fs.walk" "^1.2.3" 1316 | glob-parent "^5.1.0" 1317 | merge2 "^1.3.0" 1318 | micromatch "^4.0.2" 1319 | 1320 | fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0: 1321 | version "2.0.0" 1322 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1323 | 1324 | fast-levenshtein@~2.0.4: 1325 | version "2.0.6" 1326 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1327 | 1328 | fastq@^1.6.0: 1329 | version "1.6.0" 1330 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.6.0.tgz#4ec8a38f4ac25f21492673adb7eae9cfef47d1c2" 1331 | integrity sha512-jmxqQ3Z/nXoeyDmWAzF9kH1aGZSis6e/SbfPmJpUnyZ0ogr6iscHQaml4wsEepEWSdtmpy+eVXmCRIMpxaXqOA== 1332 | dependencies: 1333 | reusify "^1.0.0" 1334 | 1335 | fb-watchman@^2.0.0: 1336 | version "2.0.0" 1337 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 1338 | dependencies: 1339 | bser "^2.0.0" 1340 | 1341 | figures@^1.7.0: 1342 | version "1.7.0" 1343 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1344 | dependencies: 1345 | escape-string-regexp "^1.0.5" 1346 | object-assign "^4.1.0" 1347 | 1348 | figures@^2.0.0: 1349 | version "2.0.0" 1350 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1351 | integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI= 1352 | dependencies: 1353 | escape-string-regexp "^1.0.5" 1354 | 1355 | fill-range@^2.1.0: 1356 | version "2.2.4" 1357 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565" 1358 | dependencies: 1359 | is-number "^2.1.0" 1360 | isobject "^2.0.0" 1361 | randomatic "^3.0.0" 1362 | repeat-element "^1.1.2" 1363 | repeat-string "^1.5.2" 1364 | 1365 | fill-range@^4.0.0: 1366 | version "4.0.0" 1367 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 1368 | dependencies: 1369 | extend-shallow "^2.0.1" 1370 | is-number "^3.0.0" 1371 | repeat-string "^1.6.1" 1372 | to-regex-range "^2.1.0" 1373 | 1374 | fill-range@^7.0.1: 1375 | version "7.0.1" 1376 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 1377 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 1378 | dependencies: 1379 | to-regex-range "^5.0.1" 1380 | 1381 | find-up@^3.0.0: 1382 | version "3.0.0" 1383 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" 1384 | dependencies: 1385 | locate-path "^3.0.0" 1386 | 1387 | find-up@^4.0.0: 1388 | version "4.1.0" 1389 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" 1390 | integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== 1391 | dependencies: 1392 | locate-path "^5.0.0" 1393 | path-exists "^4.0.0" 1394 | 1395 | for-in@^1.0.2: 1396 | version "1.0.2" 1397 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1398 | 1399 | forever-agent@~0.6.1: 1400 | version "0.6.1" 1401 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1402 | 1403 | form-data@~2.3.2: 1404 | version "2.3.2" 1405 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.2.tgz#4970498be604c20c005d4f5c23aecd21d6b49099" 1406 | dependencies: 1407 | asynckit "^0.4.0" 1408 | combined-stream "1.0.6" 1409 | mime-types "^2.1.12" 1410 | 1411 | fragment-cache@^0.2.1: 1412 | version "0.2.1" 1413 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 1414 | dependencies: 1415 | map-cache "^0.2.2" 1416 | 1417 | fs-minipass@^1.2.5: 1418 | version "1.2.5" 1419 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d" 1420 | dependencies: 1421 | minipass "^2.2.1" 1422 | 1423 | fs.realpath@^1.0.0: 1424 | version "1.0.0" 1425 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1426 | 1427 | fsevents@^1.2.7: 1428 | version "1.2.9" 1429 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.9.tgz#3f5ed66583ccd6f400b5a00db6f7e861363e388f" 1430 | integrity sha512-oeyj2H3EjjonWcFjD5NvZNE9Rqe4UW+nQBU2HNeKw0koVLEFIhtyETyAakeAM3de7Z/SW5kcA+fZUait9EApnw== 1431 | dependencies: 1432 | nan "^2.12.1" 1433 | node-pre-gyp "^0.12.0" 1434 | 1435 | function-bind@^1.1.1: 1436 | version "1.1.1" 1437 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1438 | 1439 | gauge@~2.7.3: 1440 | version "2.7.4" 1441 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1442 | dependencies: 1443 | aproba "^1.0.3" 1444 | console-control-strings "^1.0.0" 1445 | has-unicode "^2.0.0" 1446 | object-assign "^4.1.0" 1447 | signal-exit "^3.0.0" 1448 | string-width "^1.0.1" 1449 | strip-ansi "^3.0.1" 1450 | wide-align "^1.1.0" 1451 | 1452 | get-caller-file@^2.0.1: 1453 | version "2.0.5" 1454 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 1455 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 1456 | 1457 | get-own-enumerable-property-symbols@^3.0.0: 1458 | version "3.0.1" 1459 | resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.1.tgz#6f7764f88ea11e0b514bd9bd860a132259992ca4" 1460 | integrity sha512-09/VS4iek66Dh2bctjRkowueRJbY1JDGR1L/zRxO1Qk8Uxs6PnqaNSqalpizPT+CDjre3hnEsuzvhgomz9qYrA== 1461 | 1462 | get-stdin@^7.0.0: 1463 | version "7.0.0" 1464 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-7.0.0.tgz#8d5de98f15171a125c5e516643c7a6d0ea8a96f6" 1465 | integrity sha512-zRKcywvrXlXsA0v0i9Io4KDRaAw7+a1ZpjRwl9Wox8PFlVCCHra7E9c4kqXCoCM9nR5tBkaTTZRBoCm60bFqTQ== 1466 | 1467 | get-stream@^4.0.0: 1468 | version "4.1.0" 1469 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" 1470 | integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== 1471 | dependencies: 1472 | pump "^3.0.0" 1473 | 1474 | get-stream@^5.0.0: 1475 | version "5.1.0" 1476 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.1.0.tgz#01203cdc92597f9b909067c3e656cc1f4d3c4dc9" 1477 | integrity sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw== 1478 | dependencies: 1479 | pump "^3.0.0" 1480 | 1481 | get-value@^2.0.3, get-value@^2.0.6: 1482 | version "2.0.6" 1483 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 1484 | 1485 | getpass@^0.1.1: 1486 | version "0.1.7" 1487 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1488 | dependencies: 1489 | assert-plus "^1.0.0" 1490 | 1491 | glob-parent@^5.1.0: 1492 | version "5.1.0" 1493 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.0.tgz#5f4c1d1e748d30cd73ad2944b3577a81b081e8c2" 1494 | integrity sha512-qjtRgnIVmOfnKUE3NJAQEdk+lKrxfw8t5ke7SXtfMTHcjsBfOfWXCQfdb30zfDoZQ2IRSIiidmjtbHZPZ++Ihw== 1495 | dependencies: 1496 | is-glob "^4.0.1" 1497 | 1498 | glob@^7.0.5, glob@^7.1.1, glob@^7.1.2: 1499 | version "7.1.3" 1500 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1" 1501 | dependencies: 1502 | fs.realpath "^1.0.0" 1503 | inflight "^1.0.4" 1504 | inherits "2" 1505 | minimatch "^3.0.4" 1506 | once "^1.3.0" 1507 | path-is-absolute "^1.0.0" 1508 | 1509 | glob@^7.1.3: 1510 | version "7.1.5" 1511 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.5.tgz#6714c69bee20f3c3e64c4dd905553e532b40cdc0" 1512 | integrity sha512-J9dlskqUXK1OeTOYBEn5s8aMukWMwWfs+rPTn/jn50Ux4MNXVhubL1wu/j2t+H4NVI+cXEcCaYellqaPVGXNqQ== 1513 | dependencies: 1514 | fs.realpath "^1.0.0" 1515 | inflight "^1.0.4" 1516 | inherits "2" 1517 | minimatch "^3.0.4" 1518 | once "^1.3.0" 1519 | path-is-absolute "^1.0.0" 1520 | 1521 | globals@^11.1.0: 1522 | version "11.12.0" 1523 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 1524 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 1525 | 1526 | globby@^10.0.1: 1527 | version "10.0.1" 1528 | resolved "https://registry.yarnpkg.com/globby/-/globby-10.0.1.tgz#4782c34cb75dd683351335c5829cc3420e606b22" 1529 | integrity sha512-sSs4inE1FB2YQiymcmTv6NWENryABjUNPeWhOvmn4SjtKybglsyPZxFB3U1/+L1bYi0rNZDqCLlHyLYDl1Pq5A== 1530 | dependencies: 1531 | "@types/glob" "^7.1.1" 1532 | array-union "^2.1.0" 1533 | dir-glob "^3.0.1" 1534 | fast-glob "^3.0.3" 1535 | glob "^7.1.3" 1536 | ignore "^5.1.1" 1537 | merge2 "^1.2.3" 1538 | slash "^3.0.0" 1539 | 1540 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 1541 | version "4.1.11" 1542 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1543 | 1544 | graceful-fs@^4.1.15, graceful-fs@^4.2.2: 1545 | version "4.2.3" 1546 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423" 1547 | integrity sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ== 1548 | 1549 | gray-matter@^2.1.0: 1550 | version "2.1.1" 1551 | resolved "https://registry.yarnpkg.com/gray-matter/-/gray-matter-2.1.1.tgz#3042d9adec2a1ded6a7707a9ed2380f8a17a430e" 1552 | dependencies: 1553 | ansi-red "^0.1.1" 1554 | coffee-script "^1.12.4" 1555 | extend-shallow "^2.0.1" 1556 | js-yaml "^3.8.1" 1557 | toml "^2.3.2" 1558 | 1559 | growly@^1.3.0: 1560 | version "1.3.0" 1561 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1562 | 1563 | handlebars@^4.1.2: 1564 | version "4.5.1" 1565 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.5.1.tgz#8a01c382c180272260d07f2d1aa3ae745715c7ba" 1566 | integrity sha512-C29UoFzHe9yM61lOsIlCE5/mQVGrnIOrOq7maQl76L7tYPCgC1og0Ajt6uWnX4ZTxBPnjw+CUvawphwCfJgUnA== 1567 | dependencies: 1568 | neo-async "^2.6.0" 1569 | optimist "^0.6.1" 1570 | source-map "^0.6.1" 1571 | optionalDependencies: 1572 | uglify-js "^3.1.4" 1573 | 1574 | har-schema@^2.0.0: 1575 | version "2.0.0" 1576 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 1577 | 1578 | har-validator@~5.1.0: 1579 | version "5.1.0" 1580 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.0.tgz#44657f5688a22cfd4b72486e81b3a3fb11742c29" 1581 | dependencies: 1582 | ajv "^5.3.0" 1583 | har-schema "^2.0.0" 1584 | 1585 | has-ansi@^2.0.0: 1586 | version "2.0.0" 1587 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1588 | dependencies: 1589 | ansi-regex "^2.0.0" 1590 | 1591 | has-flag@^3.0.0: 1592 | version "3.0.0" 1593 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1594 | 1595 | has-symbols@^1.0.0: 1596 | version "1.0.0" 1597 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" 1598 | 1599 | has-unicode@^2.0.0: 1600 | version "2.0.1" 1601 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1602 | 1603 | has-value@^0.3.1: 1604 | version "0.3.1" 1605 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 1606 | dependencies: 1607 | get-value "^2.0.3" 1608 | has-values "^0.1.4" 1609 | isobject "^2.0.0" 1610 | 1611 | has-value@^1.0.0: 1612 | version "1.0.0" 1613 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 1614 | dependencies: 1615 | get-value "^2.0.6" 1616 | has-values "^1.0.0" 1617 | isobject "^3.0.0" 1618 | 1619 | has-values@^0.1.4: 1620 | version "0.1.4" 1621 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 1622 | 1623 | has-values@^1.0.0: 1624 | version "1.0.0" 1625 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 1626 | dependencies: 1627 | is-number "^3.0.0" 1628 | kind-of "^4.0.0" 1629 | 1630 | has@^1.0.1: 1631 | version "1.0.3" 1632 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1633 | dependencies: 1634 | function-bind "^1.1.1" 1635 | 1636 | hosted-git-info@^2.1.4: 1637 | version "2.7.1" 1638 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.7.1.tgz#97f236977bd6e125408930ff6de3eec6281ec047" 1639 | 1640 | html-encoding-sniffer@^1.0.2: 1641 | version "1.0.2" 1642 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" 1643 | dependencies: 1644 | whatwg-encoding "^1.0.1" 1645 | 1646 | http-signature@~1.2.0: 1647 | version "1.2.0" 1648 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 1649 | dependencies: 1650 | assert-plus "^1.0.0" 1651 | jsprim "^1.2.2" 1652 | sshpk "^1.7.0" 1653 | 1654 | husky@^3.0.9: 1655 | version "3.0.9" 1656 | resolved "https://registry.yarnpkg.com/husky/-/husky-3.0.9.tgz#a2c3e9829bfd6b4957509a9500d2eef5dbfc8044" 1657 | integrity sha512-Yolhupm7le2/MqC1VYLk/cNmYxsSsqKkTyBhzQHhPK1jFnC89mmmNVuGtLNabjDI6Aj8UNIr0KpRNuBkiC4+sg== 1658 | dependencies: 1659 | chalk "^2.4.2" 1660 | ci-info "^2.0.0" 1661 | cosmiconfig "^5.2.1" 1662 | execa "^1.0.0" 1663 | get-stdin "^7.0.0" 1664 | opencollective-postinstall "^2.0.2" 1665 | pkg-dir "^4.2.0" 1666 | please-upgrade-node "^3.2.0" 1667 | read-pkg "^5.2.0" 1668 | run-node "^1.0.0" 1669 | slash "^3.0.0" 1670 | 1671 | iconv-lite@0.4.24, iconv-lite@^0.4.4: 1672 | version "0.4.24" 1673 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 1674 | dependencies: 1675 | safer-buffer ">= 2.1.2 < 3" 1676 | 1677 | ignore-walk@^3.0.1: 1678 | version "3.0.1" 1679 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" 1680 | dependencies: 1681 | minimatch "^3.0.4" 1682 | 1683 | ignore@^5.1.1: 1684 | version "5.1.4" 1685 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.4.tgz#84b7b3dbe64552b6ef0eca99f6743dbec6d97adf" 1686 | integrity sha512-MzbUSahkTW1u7JpKKjY7LCARd1fU5W2rLdxlM4kdkayuCwZImjkpluF9CM1aLewYJguPDqewLam18Y6AU69A8A== 1687 | 1688 | import-fresh@^2.0.0: 1689 | version "2.0.0" 1690 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546" 1691 | integrity sha1-2BNVwVYS04bGH53dOSLUMEgipUY= 1692 | dependencies: 1693 | caller-path "^2.0.0" 1694 | resolve-from "^3.0.0" 1695 | 1696 | import-local@^2.0.0: 1697 | version "2.0.0" 1698 | resolved "https://registry.yarnpkg.com/import-local/-/import-local-2.0.0.tgz#55070be38a5993cf18ef6db7e961f5bee5c5a09d" 1699 | integrity sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ== 1700 | dependencies: 1701 | pkg-dir "^3.0.0" 1702 | resolve-cwd "^2.0.0" 1703 | 1704 | imurmurhash@^0.1.4: 1705 | version "0.1.4" 1706 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1707 | 1708 | indent-string@^3.0.0: 1709 | version "3.2.0" 1710 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" 1711 | 1712 | indent-string@^4.0.0: 1713 | version "4.0.0" 1714 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" 1715 | integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== 1716 | 1717 | inflight@^1.0.4: 1718 | version "1.0.6" 1719 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1720 | dependencies: 1721 | once "^1.3.0" 1722 | wrappy "1" 1723 | 1724 | inherits@2, inherits@^2.0.3, inherits@~2.0.3: 1725 | version "2.0.3" 1726 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1727 | 1728 | ini@~1.3.0: 1729 | version "1.3.5" 1730 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1731 | 1732 | invariant@^2.2.4: 1733 | version "2.2.4" 1734 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 1735 | dependencies: 1736 | loose-envify "^1.0.0" 1737 | 1738 | is-accessor-descriptor@^0.1.6: 1739 | version "0.1.6" 1740 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 1741 | dependencies: 1742 | kind-of "^3.0.2" 1743 | 1744 | is-accessor-descriptor@^1.0.0: 1745 | version "1.0.0" 1746 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 1747 | dependencies: 1748 | kind-of "^6.0.0" 1749 | 1750 | is-arrayish@^0.2.1: 1751 | version "0.2.1" 1752 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1753 | 1754 | is-buffer@^1.1.5: 1755 | version "1.1.6" 1756 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1757 | 1758 | is-builtin-module@^1.0.0: 1759 | version "1.0.0" 1760 | resolved "http://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1761 | dependencies: 1762 | builtin-modules "^1.0.0" 1763 | 1764 | is-callable@^1.1.3, is-callable@^1.1.4: 1765 | version "1.1.4" 1766 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" 1767 | 1768 | is-ci@^2.0.0: 1769 | version "2.0.0" 1770 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c" 1771 | integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w== 1772 | dependencies: 1773 | ci-info "^2.0.0" 1774 | 1775 | is-data-descriptor@^0.1.4: 1776 | version "0.1.4" 1777 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 1778 | dependencies: 1779 | kind-of "^3.0.2" 1780 | 1781 | is-data-descriptor@^1.0.0: 1782 | version "1.0.0" 1783 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 1784 | dependencies: 1785 | kind-of "^6.0.0" 1786 | 1787 | is-date-object@^1.0.1: 1788 | version "1.0.1" 1789 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1790 | 1791 | is-descriptor@^0.1.0: 1792 | version "0.1.6" 1793 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 1794 | dependencies: 1795 | is-accessor-descriptor "^0.1.6" 1796 | is-data-descriptor "^0.1.4" 1797 | kind-of "^5.0.0" 1798 | 1799 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 1800 | version "1.0.2" 1801 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 1802 | dependencies: 1803 | is-accessor-descriptor "^1.0.0" 1804 | is-data-descriptor "^1.0.0" 1805 | kind-of "^6.0.2" 1806 | 1807 | is-directory@^0.3.1: 1808 | version "0.3.1" 1809 | resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" 1810 | 1811 | is-extendable@^0.1.0, is-extendable@^0.1.1: 1812 | version "0.1.1" 1813 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1814 | 1815 | is-extendable@^1.0.1: 1816 | version "1.0.1" 1817 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 1818 | dependencies: 1819 | is-plain-object "^2.0.4" 1820 | 1821 | is-extglob@^2.1.1: 1822 | version "2.1.1" 1823 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1824 | 1825 | is-fullwidth-code-point@^1.0.0: 1826 | version "1.0.0" 1827 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1828 | dependencies: 1829 | number-is-nan "^1.0.0" 1830 | 1831 | is-fullwidth-code-point@^2.0.0: 1832 | version "2.0.0" 1833 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1834 | 1835 | is-generator-fn@^2.0.0: 1836 | version "2.1.0" 1837 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" 1838 | integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== 1839 | 1840 | is-glob@^4.0.1: 1841 | version "4.0.1" 1842 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" 1843 | integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== 1844 | dependencies: 1845 | is-extglob "^2.1.1" 1846 | 1847 | is-number@^2.1.0: 1848 | version "2.1.0" 1849 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1850 | dependencies: 1851 | kind-of "^3.0.2" 1852 | 1853 | is-number@^3.0.0: 1854 | version "3.0.0" 1855 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1856 | dependencies: 1857 | kind-of "^3.0.2" 1858 | 1859 | is-number@^4.0.0: 1860 | version "4.0.0" 1861 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" 1862 | 1863 | is-number@^7.0.0: 1864 | version "7.0.0" 1865 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 1866 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1867 | 1868 | is-obj@^1.0.1: 1869 | version "1.0.1" 1870 | resolved "http://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 1871 | 1872 | is-observable@^1.1.0: 1873 | version "1.1.0" 1874 | resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-1.1.0.tgz#b3e986c8f44de950867cab5403f5a3465005975e" 1875 | dependencies: 1876 | symbol-observable "^1.1.0" 1877 | 1878 | is-path-cwd@^2.2.0: 1879 | version "2.2.0" 1880 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-2.2.0.tgz#67d43b82664a7b5191fd9119127eb300048a9fdb" 1881 | integrity sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ== 1882 | 1883 | is-path-inside@^3.0.1: 1884 | version "3.0.2" 1885 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.2.tgz#f5220fc82a3e233757291dddc9c5877f2a1f3017" 1886 | integrity sha512-/2UGPSgmtqwo1ktx8NDHjuPwZWmHhO+gj0f93EkhLB5RgW9RZevWYYlIkS6zePc6U2WpOdQYIwHe9YC4DWEBVg== 1887 | 1888 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: 1889 | version "2.0.4" 1890 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 1891 | dependencies: 1892 | isobject "^3.0.1" 1893 | 1894 | is-promise@^2.1.0: 1895 | version "2.1.0" 1896 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1897 | 1898 | is-regex@^1.0.4: 1899 | version "1.0.4" 1900 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 1901 | dependencies: 1902 | has "^1.0.1" 1903 | 1904 | is-regexp@^1.0.0: 1905 | version "1.0.0" 1906 | resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069" 1907 | 1908 | is-stream@^1.1.0: 1909 | version "1.1.0" 1910 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1911 | 1912 | is-stream@^2.0.0: 1913 | version "2.0.0" 1914 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3" 1915 | integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw== 1916 | 1917 | is-symbol@^1.0.2: 1918 | version "1.0.2" 1919 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38" 1920 | dependencies: 1921 | has-symbols "^1.0.0" 1922 | 1923 | is-typedarray@~1.0.0: 1924 | version "1.0.0" 1925 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1926 | 1927 | is-windows@^1.0.2: 1928 | version "1.0.2" 1929 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 1930 | 1931 | is-wsl@^1.1.0: 1932 | version "1.1.0" 1933 | resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" 1934 | integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0= 1935 | 1936 | isarray@1.0.0, isarray@~1.0.0: 1937 | version "1.0.0" 1938 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1939 | 1940 | isexe@^2.0.0: 1941 | version "2.0.0" 1942 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1943 | 1944 | isobject@^2.0.0: 1945 | version "2.1.0" 1946 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1947 | dependencies: 1948 | isarray "1.0.0" 1949 | 1950 | isobject@^3.0.0, isobject@^3.0.1: 1951 | version "3.0.1" 1952 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 1953 | 1954 | isstream@~0.1.2: 1955 | version "0.1.2" 1956 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1957 | 1958 | istanbul-lib-coverage@^2.0.2, istanbul-lib-coverage@^2.0.5: 1959 | version "2.0.5" 1960 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz#675f0ab69503fad4b1d849f736baaca803344f49" 1961 | integrity sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA== 1962 | 1963 | istanbul-lib-instrument@^3.0.1, istanbul-lib-instrument@^3.3.0: 1964 | version "3.3.0" 1965 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-3.3.0.tgz#a5f63d91f0bbc0c3e479ef4c5de027335ec6d630" 1966 | integrity sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA== 1967 | dependencies: 1968 | "@babel/generator" "^7.4.0" 1969 | "@babel/parser" "^7.4.3" 1970 | "@babel/template" "^7.4.0" 1971 | "@babel/traverse" "^7.4.3" 1972 | "@babel/types" "^7.4.0" 1973 | istanbul-lib-coverage "^2.0.5" 1974 | semver "^6.0.0" 1975 | 1976 | istanbul-lib-report@^2.0.4: 1977 | version "2.0.8" 1978 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-2.0.8.tgz#5a8113cd746d43c4889eba36ab10e7d50c9b4f33" 1979 | integrity sha512-fHBeG573EIihhAblwgxrSenp0Dby6tJMFR/HvlerBsrCTD5bkUuoNtn3gVh29ZCS824cGGBPn7Sg7cNk+2xUsQ== 1980 | dependencies: 1981 | istanbul-lib-coverage "^2.0.5" 1982 | make-dir "^2.1.0" 1983 | supports-color "^6.1.0" 1984 | 1985 | istanbul-lib-source-maps@^3.0.1: 1986 | version "3.0.6" 1987 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.6.tgz#284997c48211752ec486253da97e3879defba8c8" 1988 | integrity sha512-R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw== 1989 | dependencies: 1990 | debug "^4.1.1" 1991 | istanbul-lib-coverage "^2.0.5" 1992 | make-dir "^2.1.0" 1993 | rimraf "^2.6.3" 1994 | source-map "^0.6.1" 1995 | 1996 | istanbul-reports@^2.2.6: 1997 | version "2.2.6" 1998 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-2.2.6.tgz#7b4f2660d82b29303a8fe6091f8ca4bf058da1af" 1999 | integrity sha512-SKi4rnMyLBKe0Jy2uUdx28h8oG7ph2PPuQPvIAh31d+Ci+lSiEu4C+h3oBPuJ9+mPKhOyW0M8gY4U5NM1WLeXA== 2000 | dependencies: 2001 | handlebars "^4.1.2" 2002 | 2003 | jest-changed-files@^24.9.0: 2004 | version "24.9.0" 2005 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-24.9.0.tgz#08d8c15eb79a7fa3fc98269bc14b451ee82f8039" 2006 | integrity sha512-6aTWpe2mHF0DhL28WjdkO8LyGjs3zItPET4bMSeXU6T3ub4FPMw+mcOcbdGXQOAfmLcxofD23/5Bl9Z4AkFwqg== 2007 | dependencies: 2008 | "@jest/types" "^24.9.0" 2009 | execa "^1.0.0" 2010 | throat "^4.0.0" 2011 | 2012 | jest-cli@^24.9.0: 2013 | version "24.9.0" 2014 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-24.9.0.tgz#ad2de62d07472d419c6abc301fc432b98b10d2af" 2015 | integrity sha512-+VLRKyitT3BWoMeSUIHRxV/2g8y9gw91Jh5z2UmXZzkZKpbC08CSehVxgHUwTpy+HwGcns/tqafQDJW7imYvGg== 2016 | dependencies: 2017 | "@jest/core" "^24.9.0" 2018 | "@jest/test-result" "^24.9.0" 2019 | "@jest/types" "^24.9.0" 2020 | chalk "^2.0.1" 2021 | exit "^0.1.2" 2022 | import-local "^2.0.0" 2023 | is-ci "^2.0.0" 2024 | jest-config "^24.9.0" 2025 | jest-util "^24.9.0" 2026 | jest-validate "^24.9.0" 2027 | prompts "^2.0.1" 2028 | realpath-native "^1.1.0" 2029 | yargs "^13.3.0" 2030 | 2031 | jest-config@^24.9.0: 2032 | version "24.9.0" 2033 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-24.9.0.tgz#fb1bbc60c73a46af03590719efa4825e6e4dd1b5" 2034 | integrity sha512-RATtQJtVYQrp7fvWg6f5y3pEFj9I+H8sWw4aKxnDZ96mob5i5SD6ZEGWgMLXQ4LE8UurrjbdlLWdUeo+28QpfQ== 2035 | dependencies: 2036 | "@babel/core" "^7.1.0" 2037 | "@jest/test-sequencer" "^24.9.0" 2038 | "@jest/types" "^24.9.0" 2039 | babel-jest "^24.9.0" 2040 | chalk "^2.0.1" 2041 | glob "^7.1.1" 2042 | jest-environment-jsdom "^24.9.0" 2043 | jest-environment-node "^24.9.0" 2044 | jest-get-type "^24.9.0" 2045 | jest-jasmine2 "^24.9.0" 2046 | jest-regex-util "^24.3.0" 2047 | jest-resolve "^24.9.0" 2048 | jest-util "^24.9.0" 2049 | jest-validate "^24.9.0" 2050 | micromatch "^3.1.10" 2051 | pretty-format "^24.9.0" 2052 | realpath-native "^1.1.0" 2053 | 2054 | jest-diff@^24.9.0: 2055 | version "24.9.0" 2056 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-24.9.0.tgz#931b7d0d5778a1baf7452cb816e325e3724055da" 2057 | integrity sha512-qMfrTs8AdJE2iqrTp0hzh7kTd2PQWrsFyj9tORoKmu32xjPjeE4NyjVRDz8ybYwqS2ik8N4hsIpiVTyFeo2lBQ== 2058 | dependencies: 2059 | chalk "^2.0.1" 2060 | diff-sequences "^24.9.0" 2061 | jest-get-type "^24.9.0" 2062 | pretty-format "^24.9.0" 2063 | 2064 | jest-docblock@^24.3.0: 2065 | version "24.9.0" 2066 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-24.9.0.tgz#7970201802ba560e1c4092cc25cbedf5af5a8ce2" 2067 | integrity sha512-F1DjdpDMJMA1cN6He0FNYNZlo3yYmOtRUnktrT9Q37njYzC5WEaDdmbynIgy0L/IvXvvgsG8OsqhLPXTpfmZAA== 2068 | dependencies: 2069 | detect-newline "^2.1.0" 2070 | 2071 | jest-each@^24.9.0: 2072 | version "24.9.0" 2073 | resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-24.9.0.tgz#eb2da602e2a610898dbc5f1f6df3ba86b55f8b05" 2074 | integrity sha512-ONi0R4BvW45cw8s2Lrx8YgbeXL1oCQ/wIDwmsM3CqM/nlblNCPmnC3IPQlMbRFZu3wKdQ2U8BqM6lh3LJ5Bsog== 2075 | dependencies: 2076 | "@jest/types" "^24.9.0" 2077 | chalk "^2.0.1" 2078 | jest-get-type "^24.9.0" 2079 | jest-util "^24.9.0" 2080 | pretty-format "^24.9.0" 2081 | 2082 | jest-environment-jsdom@^24.9.0: 2083 | version "24.9.0" 2084 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-24.9.0.tgz#4b0806c7fc94f95edb369a69cc2778eec2b7375b" 2085 | integrity sha512-Zv9FV9NBRzLuALXjvRijO2351DRQeLYXtpD4xNvfoVFw21IOKNhZAEUKcbiEtjTkm2GsJ3boMVgkaR7rN8qetA== 2086 | dependencies: 2087 | "@jest/environment" "^24.9.0" 2088 | "@jest/fake-timers" "^24.9.0" 2089 | "@jest/types" "^24.9.0" 2090 | jest-mock "^24.9.0" 2091 | jest-util "^24.9.0" 2092 | jsdom "^11.5.1" 2093 | 2094 | jest-environment-node@^24.9.0: 2095 | version "24.9.0" 2096 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-24.9.0.tgz#333d2d2796f9687f2aeebf0742b519f33c1cbfd3" 2097 | integrity sha512-6d4V2f4nxzIzwendo27Tr0aFm+IXWa0XEUnaH6nU0FMaozxovt+sfRvh4J47wL1OvF83I3SSTu0XK+i4Bqe7uA== 2098 | dependencies: 2099 | "@jest/environment" "^24.9.0" 2100 | "@jest/fake-timers" "^24.9.0" 2101 | "@jest/types" "^24.9.0" 2102 | jest-mock "^24.9.0" 2103 | jest-util "^24.9.0" 2104 | 2105 | jest-get-type@^24.9.0: 2106 | version "24.9.0" 2107 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-24.9.0.tgz#1684a0c8a50f2e4901b6644ae861f579eed2ef0e" 2108 | integrity sha512-lUseMzAley4LhIcpSP9Jf+fTrQ4a1yHQwLNeeVa2cEmbCGeoZAtYPOIv8JaxLD/sUpKxetKGP+gsHl8f8TSj8Q== 2109 | 2110 | jest-haste-map@^24.9.0: 2111 | version "24.9.0" 2112 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-24.9.0.tgz#b38a5d64274934e21fa417ae9a9fbeb77ceaac7d" 2113 | integrity sha512-kfVFmsuWui2Sj1Rp1AJ4D9HqJwE4uwTlS/vO+eRUaMmd54BFpli2XhMQnPC2k4cHFVbB2Q2C+jtI1AGLgEnCjQ== 2114 | dependencies: 2115 | "@jest/types" "^24.9.0" 2116 | anymatch "^2.0.0" 2117 | fb-watchman "^2.0.0" 2118 | graceful-fs "^4.1.15" 2119 | invariant "^2.2.4" 2120 | jest-serializer "^24.9.0" 2121 | jest-util "^24.9.0" 2122 | jest-worker "^24.9.0" 2123 | micromatch "^3.1.10" 2124 | sane "^4.0.3" 2125 | walker "^1.0.7" 2126 | optionalDependencies: 2127 | fsevents "^1.2.7" 2128 | 2129 | jest-jasmine2@^24.9.0: 2130 | version "24.9.0" 2131 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-24.9.0.tgz#1f7b1bd3242c1774e62acabb3646d96afc3be6a0" 2132 | integrity sha512-Cq7vkAgaYKp+PsX+2/JbTarrk0DmNhsEtqBXNwUHkdlbrTBLtMJINADf2mf5FkowNsq8evbPc07/qFO0AdKTzw== 2133 | dependencies: 2134 | "@babel/traverse" "^7.1.0" 2135 | "@jest/environment" "^24.9.0" 2136 | "@jest/test-result" "^24.9.0" 2137 | "@jest/types" "^24.9.0" 2138 | chalk "^2.0.1" 2139 | co "^4.6.0" 2140 | expect "^24.9.0" 2141 | is-generator-fn "^2.0.0" 2142 | jest-each "^24.9.0" 2143 | jest-matcher-utils "^24.9.0" 2144 | jest-message-util "^24.9.0" 2145 | jest-runtime "^24.9.0" 2146 | jest-snapshot "^24.9.0" 2147 | jest-util "^24.9.0" 2148 | pretty-format "^24.9.0" 2149 | throat "^4.0.0" 2150 | 2151 | jest-leak-detector@^24.9.0: 2152 | version "24.9.0" 2153 | resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-24.9.0.tgz#b665dea7c77100c5c4f7dfcb153b65cf07dcf96a" 2154 | integrity sha512-tYkFIDsiKTGwb2FG1w8hX9V0aUb2ot8zY/2nFg087dUageonw1zrLMP4W6zsRO59dPkTSKie+D4rhMuP9nRmrA== 2155 | dependencies: 2156 | jest-get-type "^24.9.0" 2157 | pretty-format "^24.9.0" 2158 | 2159 | jest-matcher-utils@^24.9.0: 2160 | version "24.9.0" 2161 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-24.9.0.tgz#f5b3661d5e628dffe6dd65251dfdae0e87c3a073" 2162 | integrity sha512-OZz2IXsu6eaiMAwe67c1T+5tUAtQyQx27/EMEkbFAGiw52tB9em+uGbzpcgYVpA8wl0hlxKPZxrly4CXU/GjHA== 2163 | dependencies: 2164 | chalk "^2.0.1" 2165 | jest-diff "^24.9.0" 2166 | jest-get-type "^24.9.0" 2167 | pretty-format "^24.9.0" 2168 | 2169 | jest-message-util@^24.9.0: 2170 | version "24.9.0" 2171 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-24.9.0.tgz#527f54a1e380f5e202a8d1149b0ec872f43119e3" 2172 | integrity sha512-oCj8FiZ3U0hTP4aSui87P4L4jC37BtQwUMqk+zk/b11FR19BJDeZsZAvIHutWnmtw7r85UmR3CEWZ0HWU2mAlw== 2173 | dependencies: 2174 | "@babel/code-frame" "^7.0.0" 2175 | "@jest/test-result" "^24.9.0" 2176 | "@jest/types" "^24.9.0" 2177 | "@types/stack-utils" "^1.0.1" 2178 | chalk "^2.0.1" 2179 | micromatch "^3.1.10" 2180 | slash "^2.0.0" 2181 | stack-utils "^1.0.1" 2182 | 2183 | jest-mock@^24.9.0: 2184 | version "24.9.0" 2185 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-24.9.0.tgz#c22835541ee379b908673ad51087a2185c13f1c6" 2186 | integrity sha512-3BEYN5WbSq9wd+SyLDES7AHnjH9A/ROBwmz7l2y+ol+NtSFO8DYiEBzoO1CeFc9a8DYy10EO4dDFVv/wN3zl1w== 2187 | dependencies: 2188 | "@jest/types" "^24.9.0" 2189 | 2190 | jest-pnp-resolver@^1.2.1: 2191 | version "1.2.1" 2192 | resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.1.tgz#ecdae604c077a7fbc70defb6d517c3c1c898923a" 2193 | integrity sha512-pgFw2tm54fzgYvc/OHrnysABEObZCUNFnhjoRjaVOCN8NYc032/gVjPaHD4Aq6ApkSieWtfKAFQtmDKAmhupnQ== 2194 | 2195 | jest-regex-util@^24.3.0, jest-regex-util@^24.9.0: 2196 | version "24.9.0" 2197 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-24.9.0.tgz#c13fb3380bde22bf6575432c493ea8fe37965636" 2198 | integrity sha512-05Cmb6CuxaA+Ys6fjr3PhvV3bGQmO+2p2La4hFbU+W5uOc479f7FdLXUWXw4pYMAhhSZIuKHwSXSu6CsSBAXQA== 2199 | 2200 | jest-resolve-dependencies@^24.9.0: 2201 | version "24.9.0" 2202 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-24.9.0.tgz#ad055198959c4cfba8a4f066c673a3f0786507ab" 2203 | integrity sha512-Fm7b6AlWnYhT0BXy4hXpactHIqER7erNgIsIozDXWl5dVm+k8XdGVe1oTg1JyaFnOxarMEbax3wyRJqGP2Pq+g== 2204 | dependencies: 2205 | "@jest/types" "^24.9.0" 2206 | jest-regex-util "^24.3.0" 2207 | jest-snapshot "^24.9.0" 2208 | 2209 | jest-resolve@^24.9.0: 2210 | version "24.9.0" 2211 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-24.9.0.tgz#dff04c7687af34c4dd7e524892d9cf77e5d17321" 2212 | integrity sha512-TaLeLVL1l08YFZAt3zaPtjiVvyy4oSA6CRe+0AFPPVX3Q/VI0giIWWoAvoS5L96vj9Dqxj4fB5p2qrHCmTU/MQ== 2213 | dependencies: 2214 | "@jest/types" "^24.9.0" 2215 | browser-resolve "^1.11.3" 2216 | chalk "^2.0.1" 2217 | jest-pnp-resolver "^1.2.1" 2218 | realpath-native "^1.1.0" 2219 | 2220 | jest-runner@^24.9.0: 2221 | version "24.9.0" 2222 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-24.9.0.tgz#574fafdbd54455c2b34b4bdf4365a23857fcdf42" 2223 | integrity sha512-KksJQyI3/0mhcfspnxxEOBueGrd5E4vV7ADQLT9ESaCzz02WnbdbKWIf5Mkaucoaj7obQckYPVX6JJhgUcoWWg== 2224 | dependencies: 2225 | "@jest/console" "^24.7.1" 2226 | "@jest/environment" "^24.9.0" 2227 | "@jest/test-result" "^24.9.0" 2228 | "@jest/types" "^24.9.0" 2229 | chalk "^2.4.2" 2230 | exit "^0.1.2" 2231 | graceful-fs "^4.1.15" 2232 | jest-config "^24.9.0" 2233 | jest-docblock "^24.3.0" 2234 | jest-haste-map "^24.9.0" 2235 | jest-jasmine2 "^24.9.0" 2236 | jest-leak-detector "^24.9.0" 2237 | jest-message-util "^24.9.0" 2238 | jest-resolve "^24.9.0" 2239 | jest-runtime "^24.9.0" 2240 | jest-util "^24.9.0" 2241 | jest-worker "^24.6.0" 2242 | source-map-support "^0.5.6" 2243 | throat "^4.0.0" 2244 | 2245 | jest-runtime@^24.9.0: 2246 | version "24.9.0" 2247 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-24.9.0.tgz#9f14583af6a4f7314a6a9d9f0226e1a781c8e4ac" 2248 | integrity sha512-8oNqgnmF3v2J6PVRM2Jfuj8oX3syKmaynlDMMKQ4iyzbQzIG6th5ub/lM2bCMTmoTKM3ykcUYI2Pw9xwNtjMnw== 2249 | dependencies: 2250 | "@jest/console" "^24.7.1" 2251 | "@jest/environment" "^24.9.0" 2252 | "@jest/source-map" "^24.3.0" 2253 | "@jest/transform" "^24.9.0" 2254 | "@jest/types" "^24.9.0" 2255 | "@types/yargs" "^13.0.0" 2256 | chalk "^2.0.1" 2257 | exit "^0.1.2" 2258 | glob "^7.1.3" 2259 | graceful-fs "^4.1.15" 2260 | jest-config "^24.9.0" 2261 | jest-haste-map "^24.9.0" 2262 | jest-message-util "^24.9.0" 2263 | jest-mock "^24.9.0" 2264 | jest-regex-util "^24.3.0" 2265 | jest-resolve "^24.9.0" 2266 | jest-snapshot "^24.9.0" 2267 | jest-util "^24.9.0" 2268 | jest-validate "^24.9.0" 2269 | realpath-native "^1.1.0" 2270 | slash "^2.0.0" 2271 | strip-bom "^3.0.0" 2272 | yargs "^13.3.0" 2273 | 2274 | jest-serializer@^24.9.0: 2275 | version "24.9.0" 2276 | resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-24.9.0.tgz#e6d7d7ef96d31e8b9079a714754c5d5c58288e73" 2277 | integrity sha512-DxYipDr8OvfrKH3Kel6NdED3OXxjvxXZ1uIY2I9OFbGg+vUkkg7AGvi65qbhbWNPvDckXmzMPbK3u3HaDO49bQ== 2278 | 2279 | jest-snapshot@^24.9.0: 2280 | version "24.9.0" 2281 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-24.9.0.tgz#ec8e9ca4f2ec0c5c87ae8f925cf97497b0e951ba" 2282 | integrity sha512-uI/rszGSs73xCM0l+up7O7a40o90cnrk429LOiK3aeTvfC0HHmldbd81/B7Ix81KSFe1lwkbl7GnBGG4UfuDew== 2283 | dependencies: 2284 | "@babel/types" "^7.0.0" 2285 | "@jest/types" "^24.9.0" 2286 | chalk "^2.0.1" 2287 | expect "^24.9.0" 2288 | jest-diff "^24.9.0" 2289 | jest-get-type "^24.9.0" 2290 | jest-matcher-utils "^24.9.0" 2291 | jest-message-util "^24.9.0" 2292 | jest-resolve "^24.9.0" 2293 | mkdirp "^0.5.1" 2294 | natural-compare "^1.4.0" 2295 | pretty-format "^24.9.0" 2296 | semver "^6.2.0" 2297 | 2298 | jest-util@^24.9.0: 2299 | version "24.9.0" 2300 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-24.9.0.tgz#7396814e48536d2e85a37de3e4c431d7cb140162" 2301 | integrity sha512-x+cZU8VRmOJxbA1K5oDBdxQmdq0OIdADarLxk0Mq+3XS4jgvhG/oKGWcIDCtPG0HgjxOYvF+ilPJQsAyXfbNOg== 2302 | dependencies: 2303 | "@jest/console" "^24.9.0" 2304 | "@jest/fake-timers" "^24.9.0" 2305 | "@jest/source-map" "^24.9.0" 2306 | "@jest/test-result" "^24.9.0" 2307 | "@jest/types" "^24.9.0" 2308 | callsites "^3.0.0" 2309 | chalk "^2.0.1" 2310 | graceful-fs "^4.1.15" 2311 | is-ci "^2.0.0" 2312 | mkdirp "^0.5.1" 2313 | slash "^2.0.0" 2314 | source-map "^0.6.0" 2315 | 2316 | jest-validate@^24.9.0: 2317 | version "24.9.0" 2318 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-24.9.0.tgz#0775c55360d173cd854e40180756d4ff52def8ab" 2319 | integrity sha512-HPIt6C5ACwiqSiwi+OfSSHbK8sG7akG8eATl+IPKaeIjtPOeBUd/g3J7DghugzxrGjI93qS/+RPKe1H6PqvhRQ== 2320 | dependencies: 2321 | "@jest/types" "^24.9.0" 2322 | camelcase "^5.3.1" 2323 | chalk "^2.0.1" 2324 | jest-get-type "^24.9.0" 2325 | leven "^3.1.0" 2326 | pretty-format "^24.9.0" 2327 | 2328 | jest-watcher@^24.9.0: 2329 | version "24.9.0" 2330 | resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-24.9.0.tgz#4b56e5d1ceff005f5b88e528dc9afc8dd4ed2b3b" 2331 | integrity sha512-+/fLOfKPXXYJDYlks62/4R4GoT+GU1tYZed99JSCOsmzkkF7727RqKrjNAxtfO4YpGv11wybgRvCjR73lK2GZw== 2332 | dependencies: 2333 | "@jest/test-result" "^24.9.0" 2334 | "@jest/types" "^24.9.0" 2335 | "@types/yargs" "^13.0.0" 2336 | ansi-escapes "^3.0.0" 2337 | chalk "^2.0.1" 2338 | jest-util "^24.9.0" 2339 | string-length "^2.0.0" 2340 | 2341 | jest-worker@^24.6.0, jest-worker@^24.9.0: 2342 | version "24.9.0" 2343 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-24.9.0.tgz#5dbfdb5b2d322e98567898238a9697bcce67b3e5" 2344 | integrity sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw== 2345 | dependencies: 2346 | merge-stream "^2.0.0" 2347 | supports-color "^6.1.0" 2348 | 2349 | jest@^24.9.0: 2350 | version "24.9.0" 2351 | resolved "https://registry.yarnpkg.com/jest/-/jest-24.9.0.tgz#987d290c05a08b52c56188c1002e368edb007171" 2352 | integrity sha512-YvkBL1Zm7d2B1+h5fHEOdyjCG+sGMz4f8D86/0HiqJ6MB4MnDc8FgP5vdWsGnemOQro7lnYo8UakZ3+5A0jxGw== 2353 | dependencies: 2354 | import-local "^2.0.0" 2355 | jest-cli "^24.9.0" 2356 | 2357 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: 2358 | version "4.0.0" 2359 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 2360 | 2361 | js-yaml@^3.13.1: 2362 | version "3.13.1" 2363 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" 2364 | integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw== 2365 | dependencies: 2366 | argparse "^1.0.7" 2367 | esprima "^4.0.0" 2368 | 2369 | js-yaml@^3.8.1: 2370 | version "3.12.0" 2371 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.0.tgz#eaed656ec8344f10f527c6bfa1b6e2244de167d1" 2372 | dependencies: 2373 | argparse "^1.0.7" 2374 | esprima "^4.0.0" 2375 | 2376 | jsbn@~0.1.0: 2377 | version "0.1.1" 2378 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2379 | 2380 | jsdom@^11.5.1: 2381 | version "11.12.0" 2382 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-11.12.0.tgz#1a80d40ddd378a1de59656e9e6dc5a3ba8657bc8" 2383 | dependencies: 2384 | abab "^2.0.0" 2385 | acorn "^5.5.3" 2386 | acorn-globals "^4.1.0" 2387 | array-equal "^1.0.0" 2388 | cssom ">= 0.3.2 < 0.4.0" 2389 | cssstyle "^1.0.0" 2390 | data-urls "^1.0.0" 2391 | domexception "^1.0.1" 2392 | escodegen "^1.9.1" 2393 | html-encoding-sniffer "^1.0.2" 2394 | left-pad "^1.3.0" 2395 | nwsapi "^2.0.7" 2396 | parse5 "4.0.0" 2397 | pn "^1.1.0" 2398 | request "^2.87.0" 2399 | request-promise-native "^1.0.5" 2400 | sax "^1.2.4" 2401 | symbol-tree "^3.2.2" 2402 | tough-cookie "^2.3.4" 2403 | w3c-hr-time "^1.0.1" 2404 | webidl-conversions "^4.0.2" 2405 | whatwg-encoding "^1.0.3" 2406 | whatwg-mimetype "^2.1.0" 2407 | whatwg-url "^6.4.1" 2408 | ws "^5.2.0" 2409 | xml-name-validator "^3.0.0" 2410 | 2411 | jsesc@^2.5.1: 2412 | version "2.5.2" 2413 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 2414 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 2415 | 2416 | json-parse-better-errors@^1.0.1: 2417 | version "1.0.2" 2418 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" 2419 | 2420 | json-schema-traverse@^0.3.0: 2421 | version "0.3.1" 2422 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 2423 | 2424 | json-schema@0.2.3: 2425 | version "0.2.3" 2426 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2427 | 2428 | json-stringify-safe@~5.0.1: 2429 | version "5.0.1" 2430 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2431 | 2432 | json5@2.x: 2433 | version "2.1.0" 2434 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.0.tgz#e7a0c62c48285c628d20a10b85c89bb807c32850" 2435 | dependencies: 2436 | minimist "^1.2.0" 2437 | 2438 | json5@^2.1.0: 2439 | version "2.1.1" 2440 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.1.tgz#81b6cb04e9ba496f1c7005d07b4368a2638f90b6" 2441 | integrity sha512-l+3HXD0GEI3huGq1njuqtzYK8OYJyXMkOLtQ53pjWh89tvWS2h6l+1zMkYWqlb57+SiQodKZyvMEFb2X+KrFhQ== 2442 | dependencies: 2443 | minimist "^1.2.0" 2444 | 2445 | jsprim@^1.2.2: 2446 | version "1.4.1" 2447 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 2448 | dependencies: 2449 | assert-plus "1.0.0" 2450 | extsprintf "1.3.0" 2451 | json-schema "0.2.3" 2452 | verror "1.10.0" 2453 | 2454 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 2455 | version "3.2.2" 2456 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2457 | dependencies: 2458 | is-buffer "^1.1.5" 2459 | 2460 | kind-of@^4.0.0: 2461 | version "4.0.0" 2462 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2463 | dependencies: 2464 | is-buffer "^1.1.5" 2465 | 2466 | kind-of@^5.0.0: 2467 | version "5.1.0" 2468 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 2469 | 2470 | kind-of@^6.0.0, kind-of@^6.0.2: 2471 | version "6.0.2" 2472 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 2473 | 2474 | kleur@^3.0.3: 2475 | version "3.0.3" 2476 | resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" 2477 | integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== 2478 | 2479 | lazy-cache@^2.0.2: 2480 | version "2.0.2" 2481 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-2.0.2.tgz#b9190a4f913354694840859f8a8f7084d8822264" 2482 | dependencies: 2483 | set-getter "^0.1.0" 2484 | 2485 | left-pad@^1.3.0: 2486 | version "1.3.0" 2487 | resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e" 2488 | 2489 | leven@^3.1.0: 2490 | version "3.1.0" 2491 | resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" 2492 | integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== 2493 | 2494 | levn@~0.3.0: 2495 | version "0.3.0" 2496 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2497 | dependencies: 2498 | prelude-ls "~1.1.2" 2499 | type-check "~0.3.2" 2500 | 2501 | lines-and-columns@^1.1.6: 2502 | version "1.1.6" 2503 | resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" 2504 | integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= 2505 | 2506 | lint-staged@^9.4.2: 2507 | version "9.4.2" 2508 | resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-9.4.2.tgz#14cb577a9512f520691f8b5aefce6a8f7ead6c04" 2509 | integrity sha512-OFyGokJSWTn2M6vngnlLXjaHhi8n83VIZZ5/1Z26SULRUWgR3ITWpAEQC9Pnm3MC/EpCxlwts/mQWDHNji2+zA== 2510 | dependencies: 2511 | chalk "^2.4.2" 2512 | commander "^2.20.0" 2513 | cosmiconfig "^5.2.1" 2514 | debug "^4.1.1" 2515 | dedent "^0.7.0" 2516 | del "^5.0.0" 2517 | execa "^2.0.3" 2518 | listr "^0.14.3" 2519 | log-symbols "^3.0.0" 2520 | micromatch "^4.0.2" 2521 | normalize-path "^3.0.0" 2522 | please-upgrade-node "^3.1.1" 2523 | string-argv "^0.3.0" 2524 | stringify-object "^3.3.0" 2525 | 2526 | list-item@^1.1.1: 2527 | version "1.1.1" 2528 | resolved "https://registry.yarnpkg.com/list-item/-/list-item-1.1.1.tgz#0c65d00e287cb663ccb3cb3849a77e89ec268a56" 2529 | dependencies: 2530 | expand-range "^1.8.1" 2531 | extend-shallow "^2.0.1" 2532 | is-number "^2.1.0" 2533 | repeat-string "^1.5.2" 2534 | 2535 | listr-silent-renderer@^1.1.1: 2536 | version "1.1.1" 2537 | resolved "https://registry.yarnpkg.com/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz#924b5a3757153770bf1a8e3fbf74b8bbf3f9242e" 2538 | 2539 | listr-update-renderer@^0.5.0: 2540 | version "0.5.0" 2541 | resolved "https://registry.yarnpkg.com/listr-update-renderer/-/listr-update-renderer-0.5.0.tgz#4ea8368548a7b8aecb7e06d8c95cb45ae2ede6a2" 2542 | integrity sha512-tKRsZpKz8GSGqoI/+caPmfrypiaq+OQCbd+CovEC24uk1h952lVj5sC7SqyFUm+OaJ5HN/a1YLt5cit2FMNsFA== 2543 | dependencies: 2544 | chalk "^1.1.3" 2545 | cli-truncate "^0.2.1" 2546 | elegant-spinner "^1.0.1" 2547 | figures "^1.7.0" 2548 | indent-string "^3.0.0" 2549 | log-symbols "^1.0.2" 2550 | log-update "^2.3.0" 2551 | strip-ansi "^3.0.1" 2552 | 2553 | listr-verbose-renderer@^0.5.0: 2554 | version "0.5.0" 2555 | resolved "https://registry.yarnpkg.com/listr-verbose-renderer/-/listr-verbose-renderer-0.5.0.tgz#f1132167535ea4c1261102b9f28dac7cba1e03db" 2556 | integrity sha512-04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw== 2557 | dependencies: 2558 | chalk "^2.4.1" 2559 | cli-cursor "^2.1.0" 2560 | date-fns "^1.27.2" 2561 | figures "^2.0.0" 2562 | 2563 | listr@^0.14.3: 2564 | version "0.14.3" 2565 | resolved "https://registry.yarnpkg.com/listr/-/listr-0.14.3.tgz#2fea909604e434be464c50bddba0d496928fa586" 2566 | integrity sha512-RmAl7su35BFd/xoMamRjpIE4j3v+L28o8CT5YhAXQJm1fD+1l9ngXY8JAQRJ+tFK2i5njvi0iRUKV09vPwA0iA== 2567 | dependencies: 2568 | "@samverschueren/stream-to-observable" "^0.3.0" 2569 | is-observable "^1.1.0" 2570 | is-promise "^2.1.0" 2571 | is-stream "^1.1.0" 2572 | listr-silent-renderer "^1.1.1" 2573 | listr-update-renderer "^0.5.0" 2574 | listr-verbose-renderer "^0.5.0" 2575 | p-map "^2.0.0" 2576 | rxjs "^6.3.3" 2577 | 2578 | load-json-file@^4.0.0: 2579 | version "4.0.0" 2580 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" 2581 | integrity sha1-L19Fq5HjMhYjT9U62rZo607AmTs= 2582 | dependencies: 2583 | graceful-fs "^4.1.2" 2584 | parse-json "^4.0.0" 2585 | pify "^3.0.0" 2586 | strip-bom "^3.0.0" 2587 | 2588 | locate-path@^3.0.0: 2589 | version "3.0.0" 2590 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" 2591 | dependencies: 2592 | p-locate "^3.0.0" 2593 | path-exists "^3.0.0" 2594 | 2595 | locate-path@^5.0.0: 2596 | version "5.0.0" 2597 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" 2598 | integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== 2599 | dependencies: 2600 | p-locate "^4.1.0" 2601 | 2602 | lodash.memoize@4.x: 2603 | version "4.1.2" 2604 | resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" 2605 | integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4= 2606 | 2607 | lodash.sortby@^4.7.0: 2608 | version "4.7.0" 2609 | resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" 2610 | 2611 | lodash@^4.13.1: 2612 | version "4.17.11" 2613 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d" 2614 | 2615 | lodash@^4.17.13: 2616 | version "4.17.15" 2617 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" 2618 | integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A== 2619 | 2620 | log-symbols@^1.0.2: 2621 | version "1.0.2" 2622 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" 2623 | dependencies: 2624 | chalk "^1.0.0" 2625 | 2626 | log-symbols@^3.0.0: 2627 | version "3.0.0" 2628 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-3.0.0.tgz#f3a08516a5dea893336a7dee14d18a1cfdab77c4" 2629 | integrity sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ== 2630 | dependencies: 2631 | chalk "^2.4.2" 2632 | 2633 | log-update@^2.3.0: 2634 | version "2.3.0" 2635 | resolved "https://registry.yarnpkg.com/log-update/-/log-update-2.3.0.tgz#88328fd7d1ce7938b29283746f0b1bc126b24708" 2636 | integrity sha1-iDKP19HOeTiykoN0bwsbwSayRwg= 2637 | dependencies: 2638 | ansi-escapes "^3.0.0" 2639 | cli-cursor "^2.0.0" 2640 | wrap-ansi "^3.0.1" 2641 | 2642 | loose-envify@^1.0.0: 2643 | version "1.4.0" 2644 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 2645 | dependencies: 2646 | js-tokens "^3.0.0 || ^4.0.0" 2647 | 2648 | make-dir@^2.1.0: 2649 | version "2.1.0" 2650 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" 2651 | integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== 2652 | dependencies: 2653 | pify "^4.0.1" 2654 | semver "^5.6.0" 2655 | 2656 | make-error@1.x: 2657 | version "1.3.5" 2658 | resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.5.tgz#efe4e81f6db28cadd605c70f29c831b58ef776c8" 2659 | 2660 | makeerror@1.0.x: 2661 | version "1.0.11" 2662 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2663 | dependencies: 2664 | tmpl "1.0.x" 2665 | 2666 | map-cache@^0.2.2: 2667 | version "0.2.2" 2668 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 2669 | 2670 | map-visit@^1.0.0: 2671 | version "1.0.0" 2672 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 2673 | dependencies: 2674 | object-visit "^1.0.0" 2675 | 2676 | markdown-link@^0.1.1: 2677 | version "0.1.1" 2678 | resolved "https://registry.yarnpkg.com/markdown-link/-/markdown-link-0.1.1.tgz#32c5c65199a6457316322d1e4229d13407c8c7cf" 2679 | 2680 | markdown-toc@^1.2.0: 2681 | version "1.2.0" 2682 | resolved "https://registry.yarnpkg.com/markdown-toc/-/markdown-toc-1.2.0.tgz#44a15606844490314afc0444483f9e7b1122c339" 2683 | dependencies: 2684 | concat-stream "^1.5.2" 2685 | diacritics-map "^0.1.0" 2686 | gray-matter "^2.1.0" 2687 | lazy-cache "^2.0.2" 2688 | list-item "^1.1.1" 2689 | markdown-link "^0.1.1" 2690 | minimist "^1.2.0" 2691 | mixin-deep "^1.1.3" 2692 | object.pick "^1.2.0" 2693 | remarkable "^1.7.1" 2694 | repeat-string "^1.6.1" 2695 | strip-color "^0.1.0" 2696 | 2697 | math-random@^1.0.1: 2698 | version "1.0.1" 2699 | resolved "https://registry.yarnpkg.com/math-random/-/math-random-1.0.1.tgz#8b3aac588b8a66e4975e3cdea67f7bb329601fac" 2700 | 2701 | merge-stream@^2.0.0: 2702 | version "2.0.0" 2703 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" 2704 | integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== 2705 | 2706 | merge2@^1.2.3, merge2@^1.3.0: 2707 | version "1.3.0" 2708 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.3.0.tgz#5b366ee83b2f1582c48f87e47cf1a9352103ca81" 2709 | integrity sha512-2j4DAdlBOkiSZIsaXk4mTE3sRS02yBHAtfy127xRV3bQUFqXkjHCHLW6Scv7DwNRbIWNHH8zpnz9zMaKXIdvYw== 2710 | 2711 | micromatch@^3.1.10, micromatch@^3.1.4: 2712 | version "3.1.10" 2713 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 2714 | integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== 2715 | dependencies: 2716 | arr-diff "^4.0.0" 2717 | array-unique "^0.3.2" 2718 | braces "^2.3.1" 2719 | define-property "^2.0.2" 2720 | extend-shallow "^3.0.2" 2721 | extglob "^2.0.4" 2722 | fragment-cache "^0.2.1" 2723 | kind-of "^6.0.2" 2724 | nanomatch "^1.2.9" 2725 | object.pick "^1.3.0" 2726 | regex-not "^1.0.0" 2727 | snapdragon "^0.8.1" 2728 | to-regex "^3.0.2" 2729 | 2730 | micromatch@^4.0.2: 2731 | version "4.0.2" 2732 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.2.tgz#4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259" 2733 | integrity sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q== 2734 | dependencies: 2735 | braces "^3.0.1" 2736 | picomatch "^2.0.5" 2737 | 2738 | mime-db@~1.36.0: 2739 | version "1.36.0" 2740 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.36.0.tgz#5020478db3c7fe93aad7bbcc4dcf869c43363397" 2741 | 2742 | mime-types@^2.1.12, mime-types@~2.1.19: 2743 | version "2.1.20" 2744 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.20.tgz#930cb719d571e903738520f8470911548ca2cc19" 2745 | dependencies: 2746 | mime-db "~1.36.0" 2747 | 2748 | mimic-fn@^1.0.0: 2749 | version "1.2.0" 2750 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 2751 | 2752 | mimic-fn@^2.1.0: 2753 | version "2.1.0" 2754 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" 2755 | integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== 2756 | 2757 | minimatch@^3.0.4: 2758 | version "3.0.4" 2759 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2760 | dependencies: 2761 | brace-expansion "^1.1.7" 2762 | 2763 | minimist@0.0.8: 2764 | version "0.0.8" 2765 | resolved "http://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2766 | 2767 | minimist@^1.1.1, minimist@^1.2.0: 2768 | version "1.2.0" 2769 | resolved "http://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2770 | 2771 | minimist@~0.0.1: 2772 | version "0.0.10" 2773 | resolved "http://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 2774 | 2775 | minipass@^2.2.1, minipass@^2.3.3: 2776 | version "2.3.4" 2777 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.4.tgz#4768d7605ed6194d6d576169b9e12ef71e9d9957" 2778 | dependencies: 2779 | safe-buffer "^5.1.2" 2780 | yallist "^3.0.0" 2781 | 2782 | minizlib@^1.1.0: 2783 | version "1.1.0" 2784 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.1.0.tgz#11e13658ce46bc3a70a267aac58359d1e0c29ceb" 2785 | dependencies: 2786 | minipass "^2.2.1" 2787 | 2788 | mixin-deep@^1.1.3, mixin-deep@^1.2.0: 2789 | version "1.3.1" 2790 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe" 2791 | dependencies: 2792 | for-in "^1.0.2" 2793 | is-extendable "^1.0.1" 2794 | 2795 | mkdirp@0.x, mkdirp@^0.5.0, mkdirp@^0.5.1: 2796 | version "0.5.1" 2797 | resolved "http://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2798 | dependencies: 2799 | minimist "0.0.8" 2800 | 2801 | ms@2.0.0: 2802 | version "2.0.0" 2803 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2804 | 2805 | ms@^2.1.1: 2806 | version "2.1.1" 2807 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" 2808 | 2809 | nan@^2.12.1: 2810 | version "2.14.0" 2811 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c" 2812 | integrity sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg== 2813 | 2814 | nanomatch@^1.2.9: 2815 | version "1.2.13" 2816 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" 2817 | dependencies: 2818 | arr-diff "^4.0.0" 2819 | array-unique "^0.3.2" 2820 | define-property "^2.0.2" 2821 | extend-shallow "^3.0.2" 2822 | fragment-cache "^0.2.1" 2823 | is-windows "^1.0.2" 2824 | kind-of "^6.0.2" 2825 | object.pick "^1.3.0" 2826 | regex-not "^1.0.0" 2827 | snapdragon "^0.8.1" 2828 | to-regex "^3.0.1" 2829 | 2830 | natural-compare@^1.4.0: 2831 | version "1.4.0" 2832 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2833 | 2834 | needle@^2.2.1: 2835 | version "2.2.4" 2836 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.4.tgz#51931bff82533b1928b7d1d69e01f1b00ffd2a4e" 2837 | dependencies: 2838 | debug "^2.1.2" 2839 | iconv-lite "^0.4.4" 2840 | sax "^1.2.4" 2841 | 2842 | neo-async@^2.6.0: 2843 | version "2.6.1" 2844 | resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c" 2845 | integrity sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw== 2846 | 2847 | nice-try@^1.0.4: 2848 | version "1.0.5" 2849 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" 2850 | integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== 2851 | 2852 | node-int64@^0.4.0: 2853 | version "0.4.0" 2854 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2855 | 2856 | node-modules-regexp@^1.0.0: 2857 | version "1.0.0" 2858 | resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40" 2859 | integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA= 2860 | 2861 | node-notifier@^5.4.2: 2862 | version "5.4.3" 2863 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.4.3.tgz#cb72daf94c93904098e28b9c590fd866e464bd50" 2864 | integrity sha512-M4UBGcs4jeOK9CjTsYwkvH6/MzuUmGCyTW+kCY7uO+1ZVr0+FHGdPdIf5CCLqAaxnRrWidyoQlNkMIIVwbKB8Q== 2865 | dependencies: 2866 | growly "^1.3.0" 2867 | is-wsl "^1.1.0" 2868 | semver "^5.5.0" 2869 | shellwords "^0.1.1" 2870 | which "^1.3.0" 2871 | 2872 | node-pre-gyp@^0.12.0: 2873 | version "0.12.0" 2874 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.12.0.tgz#39ba4bb1439da030295f899e3b520b7785766149" 2875 | integrity sha512-4KghwV8vH5k+g2ylT+sLTjy5wmUOb9vPhnM8NHvRf9dHmnW/CndrFXy2aRPaPST6dugXSdHXfeaHQm77PIz/1A== 2876 | dependencies: 2877 | detect-libc "^1.0.2" 2878 | mkdirp "^0.5.1" 2879 | needle "^2.2.1" 2880 | nopt "^4.0.1" 2881 | npm-packlist "^1.1.6" 2882 | npmlog "^4.0.2" 2883 | rc "^1.2.7" 2884 | rimraf "^2.6.1" 2885 | semver "^5.3.0" 2886 | tar "^4" 2887 | 2888 | nopt@^4.0.1: 2889 | version "4.0.1" 2890 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2891 | dependencies: 2892 | abbrev "1" 2893 | osenv "^0.1.4" 2894 | 2895 | normalize-package-data@^2.3.2: 2896 | version "2.4.0" 2897 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2898 | dependencies: 2899 | hosted-git-info "^2.1.4" 2900 | is-builtin-module "^1.0.0" 2901 | semver "2 || 3 || 4 || 5" 2902 | validate-npm-package-license "^3.0.1" 2903 | 2904 | normalize-package-data@^2.5.0: 2905 | version "2.5.0" 2906 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" 2907 | integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== 2908 | dependencies: 2909 | hosted-git-info "^2.1.4" 2910 | resolve "^1.10.0" 2911 | semver "2 || 3 || 4 || 5" 2912 | validate-npm-package-license "^3.0.1" 2913 | 2914 | normalize-path@^2.1.1: 2915 | version "2.1.1" 2916 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2917 | dependencies: 2918 | remove-trailing-separator "^1.0.1" 2919 | 2920 | normalize-path@^3.0.0: 2921 | version "3.0.0" 2922 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 2923 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 2924 | 2925 | npm-bundled@^1.0.1: 2926 | version "1.0.5" 2927 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.5.tgz#3c1732b7ba936b3a10325aef616467c0ccbcc979" 2928 | 2929 | npm-packlist@^1.1.6: 2930 | version "1.1.11" 2931 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.1.11.tgz#84e8c683cbe7867d34b1d357d893ce29e28a02de" 2932 | dependencies: 2933 | ignore-walk "^3.0.1" 2934 | npm-bundled "^1.0.1" 2935 | 2936 | npm-run-path@^2.0.0: 2937 | version "2.0.2" 2938 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2939 | dependencies: 2940 | path-key "^2.0.0" 2941 | 2942 | npm-run-path@^3.0.0: 2943 | version "3.1.0" 2944 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-3.1.0.tgz#7f91be317f6a466efed3c9f2980ad8a4ee8b0fa5" 2945 | integrity sha512-Dbl4A/VfiVGLgQv29URL9xshU8XDY1GeLy+fsaZ1AA8JDSfjvr5P5+pzRbWqRSBxk6/DW7MIh8lTM/PaGnP2kg== 2946 | dependencies: 2947 | path-key "^3.0.0" 2948 | 2949 | npmlog@^4.0.2: 2950 | version "4.1.2" 2951 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2952 | dependencies: 2953 | are-we-there-yet "~1.1.2" 2954 | console-control-strings "~1.1.0" 2955 | gauge "~2.7.3" 2956 | set-blocking "~2.0.0" 2957 | 2958 | number-is-nan@^1.0.0: 2959 | version "1.0.1" 2960 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2961 | 2962 | nwsapi@^2.0.7: 2963 | version "2.0.9" 2964 | resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.0.9.tgz#77ac0cdfdcad52b6a1151a84e73254edc33ed016" 2965 | 2966 | oauth-sign@~0.9.0: 2967 | version "0.9.0" 2968 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" 2969 | 2970 | object-assign@^4.1.0: 2971 | version "4.1.1" 2972 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2973 | 2974 | object-copy@^0.1.0: 2975 | version "0.1.0" 2976 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 2977 | dependencies: 2978 | copy-descriptor "^0.1.0" 2979 | define-property "^0.2.5" 2980 | kind-of "^3.0.3" 2981 | 2982 | object-keys@^1.0.12: 2983 | version "1.0.12" 2984 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.12.tgz#09c53855377575310cca62f55bb334abff7b3ed2" 2985 | 2986 | object-visit@^1.0.0: 2987 | version "1.0.1" 2988 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 2989 | dependencies: 2990 | isobject "^3.0.0" 2991 | 2992 | object.getownpropertydescriptors@^2.0.3: 2993 | version "2.0.3" 2994 | resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" 2995 | dependencies: 2996 | define-properties "^1.1.2" 2997 | es-abstract "^1.5.1" 2998 | 2999 | object.pick@^1.2.0, object.pick@^1.3.0: 3000 | version "1.3.0" 3001 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 3002 | dependencies: 3003 | isobject "^3.0.1" 3004 | 3005 | once@^1.3.0, once@^1.3.1, once@^1.4.0: 3006 | version "1.4.0" 3007 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 3008 | dependencies: 3009 | wrappy "1" 3010 | 3011 | onetime@^2.0.0: 3012 | version "2.0.1" 3013 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 3014 | integrity sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ= 3015 | dependencies: 3016 | mimic-fn "^1.0.0" 3017 | 3018 | onetime@^5.1.0: 3019 | version "5.1.0" 3020 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.0.tgz#fff0f3c91617fe62bb50189636e99ac8a6df7be5" 3021 | integrity sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q== 3022 | dependencies: 3023 | mimic-fn "^2.1.0" 3024 | 3025 | opencollective-postinstall@^2.0.2: 3026 | version "2.0.2" 3027 | resolved "https://registry.yarnpkg.com/opencollective-postinstall/-/opencollective-postinstall-2.0.2.tgz#5657f1bede69b6e33a45939b061eb53d3c6c3a89" 3028 | integrity sha512-pVOEP16TrAO2/fjej1IdOyupJY8KDUM1CvsaScRbw6oddvpQoOfGk4ywha0HKKVAD6RkW4x6Q+tNBwhf3Bgpuw== 3029 | 3030 | optimist@^0.6.1: 3031 | version "0.6.1" 3032 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 3033 | dependencies: 3034 | minimist "~0.0.1" 3035 | wordwrap "~0.0.2" 3036 | 3037 | optionator@^0.8.1: 3038 | version "0.8.2" 3039 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 3040 | dependencies: 3041 | deep-is "~0.1.3" 3042 | fast-levenshtein "~2.0.4" 3043 | levn "~0.3.0" 3044 | prelude-ls "~1.1.2" 3045 | type-check "~0.3.2" 3046 | wordwrap "~1.0.0" 3047 | 3048 | os-homedir@^1.0.0: 3049 | version "1.0.2" 3050 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 3051 | 3052 | os-tmpdir@^1.0.0: 3053 | version "1.0.2" 3054 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 3055 | 3056 | osenv@^0.1.4: 3057 | version "0.1.5" 3058 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 3059 | dependencies: 3060 | os-homedir "^1.0.0" 3061 | os-tmpdir "^1.0.0" 3062 | 3063 | p-each-series@^1.0.0: 3064 | version "1.0.0" 3065 | resolved "https://registry.yarnpkg.com/p-each-series/-/p-each-series-1.0.0.tgz#930f3d12dd1f50e7434457a22cd6f04ac6ad7f71" 3066 | integrity sha1-kw89Et0fUOdDRFeiLNbwSsatf3E= 3067 | dependencies: 3068 | p-reduce "^1.0.0" 3069 | 3070 | p-finally@^1.0.0: 3071 | version "1.0.0" 3072 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 3073 | 3074 | p-finally@^2.0.0: 3075 | version "2.0.1" 3076 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-2.0.1.tgz#bd6fcaa9c559a096b680806f4d657b3f0f240561" 3077 | integrity sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw== 3078 | 3079 | p-limit@^2.0.0: 3080 | version "2.0.0" 3081 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.0.0.tgz#e624ed54ee8c460a778b3c9f3670496ff8a57aec" 3082 | dependencies: 3083 | p-try "^2.0.0" 3084 | 3085 | p-limit@^2.2.0: 3086 | version "2.2.1" 3087 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.1.tgz#aa07a788cc3151c939b5131f63570f0dd2009537" 3088 | integrity sha512-85Tk+90UCVWvbDavCLKPOLC9vvY8OwEX/RtKF+/1OADJMVlFfEHOiMTPVyxg7mk/dKa+ipdHm0OUkTvCpMTuwg== 3089 | dependencies: 3090 | p-try "^2.0.0" 3091 | 3092 | p-locate@^3.0.0: 3093 | version "3.0.0" 3094 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" 3095 | dependencies: 3096 | p-limit "^2.0.0" 3097 | 3098 | p-locate@^4.1.0: 3099 | version "4.1.0" 3100 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" 3101 | integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== 3102 | dependencies: 3103 | p-limit "^2.2.0" 3104 | 3105 | p-map@^2.0.0: 3106 | version "2.1.0" 3107 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-2.1.0.tgz#310928feef9c9ecc65b68b17693018a665cea175" 3108 | integrity sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw== 3109 | 3110 | p-map@^3.0.0: 3111 | version "3.0.0" 3112 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-3.0.0.tgz#d704d9af8a2ba684e2600d9a215983d4141a979d" 3113 | integrity sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ== 3114 | dependencies: 3115 | aggregate-error "^3.0.0" 3116 | 3117 | p-reduce@^1.0.0: 3118 | version "1.0.0" 3119 | resolved "https://registry.yarnpkg.com/p-reduce/-/p-reduce-1.0.0.tgz#18c2b0dd936a4690a529f8231f58a0fdb6a47dfa" 3120 | integrity sha1-GMKw3ZNqRpClKfgjH1ig/bakffo= 3121 | 3122 | p-try@^2.0.0: 3123 | version "2.0.0" 3124 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.0.0.tgz#85080bb87c64688fa47996fe8f7dfbe8211760b1" 3125 | 3126 | parse-json@^4.0.0: 3127 | version "4.0.0" 3128 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" 3129 | dependencies: 3130 | error-ex "^1.3.1" 3131 | json-parse-better-errors "^1.0.1" 3132 | 3133 | parse-json@^5.0.0: 3134 | version "5.0.0" 3135 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.0.0.tgz#73e5114c986d143efa3712d4ea24db9a4266f60f" 3136 | integrity sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw== 3137 | dependencies: 3138 | "@babel/code-frame" "^7.0.0" 3139 | error-ex "^1.3.1" 3140 | json-parse-better-errors "^1.0.1" 3141 | lines-and-columns "^1.1.6" 3142 | 3143 | parse5@4.0.0: 3144 | version "4.0.0" 3145 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608" 3146 | 3147 | pascalcase@^0.1.1: 3148 | version "0.1.1" 3149 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 3150 | 3151 | path-exists@^3.0.0: 3152 | version "3.0.0" 3153 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 3154 | 3155 | path-exists@^4.0.0: 3156 | version "4.0.0" 3157 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 3158 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 3159 | 3160 | path-is-absolute@^1.0.0: 3161 | version "1.0.1" 3162 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 3163 | 3164 | path-key@^2.0.0, path-key@^2.0.1: 3165 | version "2.0.1" 3166 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 3167 | 3168 | path-key@^3.0.0, path-key@^3.1.0: 3169 | version "3.1.0" 3170 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.0.tgz#99a10d870a803bdd5ee6f0470e58dfcd2f9a54d3" 3171 | integrity sha512-8cChqz0RP6SHJkMt48FW0A7+qUOn+OsnOsVtzI59tZ8m+5bCSk7hzwET0pulwOM2YMn9J1efb07KB9l9f30SGg== 3172 | 3173 | path-parse@^1.0.5, path-parse@^1.0.6: 3174 | version "1.0.6" 3175 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 3176 | integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== 3177 | 3178 | path-type@^3.0.0: 3179 | version "3.0.0" 3180 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" 3181 | integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== 3182 | dependencies: 3183 | pify "^3.0.0" 3184 | 3185 | path-type@^4.0.0: 3186 | version "4.0.0" 3187 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" 3188 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 3189 | 3190 | performance-now@^2.1.0: 3191 | version "2.1.0" 3192 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 3193 | 3194 | picomatch@^2.0.5: 3195 | version "2.0.7" 3196 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.0.7.tgz#514169d8c7cd0bdbeecc8a2609e34a7163de69f6" 3197 | integrity sha512-oLHIdio3tZ0qH76NybpeneBhYVj0QFTfXEFTc/B3zKQspYfYYkWYgFsmzo+4kvId/bQRcNkVeguI3y+CD22BtA== 3198 | 3199 | pify@^3.0.0: 3200 | version "3.0.0" 3201 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 3202 | 3203 | pify@^4.0.1: 3204 | version "4.0.1" 3205 | resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" 3206 | integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== 3207 | 3208 | pirates@^4.0.1: 3209 | version "4.0.1" 3210 | resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87" 3211 | integrity sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA== 3212 | dependencies: 3213 | node-modules-regexp "^1.0.0" 3214 | 3215 | pkg-dir@^3.0.0: 3216 | version "3.0.0" 3217 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3" 3218 | dependencies: 3219 | find-up "^3.0.0" 3220 | 3221 | pkg-dir@^4.2.0: 3222 | version "4.2.0" 3223 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" 3224 | integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== 3225 | dependencies: 3226 | find-up "^4.0.0" 3227 | 3228 | please-upgrade-node@^3.1.1: 3229 | version "3.1.1" 3230 | resolved "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.1.1.tgz#ed320051dfcc5024fae696712c8288993595e8ac" 3231 | dependencies: 3232 | semver-compare "^1.0.0" 3233 | 3234 | please-upgrade-node@^3.2.0: 3235 | version "3.2.0" 3236 | resolved "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz#aeddd3f994c933e4ad98b99d9a556efa0e2fe942" 3237 | integrity sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg== 3238 | dependencies: 3239 | semver-compare "^1.0.0" 3240 | 3241 | pn@^1.1.0: 3242 | version "1.1.0" 3243 | resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb" 3244 | 3245 | posix-character-classes@^0.1.0: 3246 | version "0.1.1" 3247 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 3248 | 3249 | prelude-ls@~1.1.2: 3250 | version "1.1.2" 3251 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 3252 | 3253 | prettier@^1.18.2: 3254 | version "1.18.2" 3255 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.18.2.tgz#6823e7c5900017b4bd3acf46fe9ac4b4d7bda9ea" 3256 | integrity sha512-OeHeMc0JhFE9idD4ZdtNibzY0+TPHSpSSb9h8FqtP+YnoZZ1sl8Vc9b1sasjfymH3SonAF4QcA2+mzHPhMvIiw== 3257 | 3258 | pretty-format@^24.9.0: 3259 | version "24.9.0" 3260 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-24.9.0.tgz#12fac31b37019a4eea3c11aa9a959eb7628aa7c9" 3261 | integrity sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA== 3262 | dependencies: 3263 | "@jest/types" "^24.9.0" 3264 | ansi-regex "^4.0.0" 3265 | ansi-styles "^3.2.0" 3266 | react-is "^16.8.4" 3267 | 3268 | process-nextick-args@~2.0.0: 3269 | version "2.0.0" 3270 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 3271 | 3272 | prompts@^2.0.1: 3273 | version "2.2.1" 3274 | resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.2.1.tgz#f901dd2a2dfee080359c0e20059b24188d75ad35" 3275 | integrity sha512-VObPvJiWPhpZI6C5m60XOzTfnYg/xc/an+r9VYymj9WJW3B/DIH+REzjpAACPf8brwPeP+7vz3bIim3S+AaMjw== 3276 | dependencies: 3277 | kleur "^3.0.3" 3278 | sisteransi "^1.0.3" 3279 | 3280 | psl@^1.1.24: 3281 | version "1.1.29" 3282 | resolved "https://registry.yarnpkg.com/psl/-/psl-1.1.29.tgz#60f580d360170bb722a797cc704411e6da850c67" 3283 | 3284 | pump@^3.0.0: 3285 | version "3.0.0" 3286 | resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" 3287 | integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== 3288 | dependencies: 3289 | end-of-stream "^1.1.0" 3290 | once "^1.3.1" 3291 | 3292 | punycode@^1.4.1: 3293 | version "1.4.1" 3294 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 3295 | 3296 | punycode@^2.1.0: 3297 | version "2.1.1" 3298 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 3299 | 3300 | qs@~6.5.2: 3301 | version "6.5.2" 3302 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" 3303 | 3304 | randomatic@^3.0.0: 3305 | version "3.1.0" 3306 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-3.1.0.tgz#36f2ca708e9e567f5ed2ec01949026d50aa10116" 3307 | dependencies: 3308 | is-number "^4.0.0" 3309 | kind-of "^6.0.0" 3310 | math-random "^1.0.1" 3311 | 3312 | rc@^1.2.7: 3313 | version "1.2.8" 3314 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 3315 | dependencies: 3316 | deep-extend "^0.6.0" 3317 | ini "~1.3.0" 3318 | minimist "^1.2.0" 3319 | strip-json-comments "~2.0.1" 3320 | 3321 | react-is@^16.8.4: 3322 | version "16.11.0" 3323 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.11.0.tgz#b85dfecd48ad1ce469ff558a882ca8e8313928fa" 3324 | integrity sha512-gbBVYR2p8mnriqAwWx9LbuUrShnAuSCNnuPGyc7GJrMVQtPDAh8iLpv7FRuMPFb56KkaVZIYSz1PrjI9q0QPCw== 3325 | 3326 | read-pkg-up@^4.0.0: 3327 | version "4.0.0" 3328 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-4.0.0.tgz#1b221c6088ba7799601c808f91161c66e58f8978" 3329 | integrity sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA== 3330 | dependencies: 3331 | find-up "^3.0.0" 3332 | read-pkg "^3.0.0" 3333 | 3334 | read-pkg@^3.0.0: 3335 | version "3.0.0" 3336 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" 3337 | integrity sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k= 3338 | dependencies: 3339 | load-json-file "^4.0.0" 3340 | normalize-package-data "^2.3.2" 3341 | path-type "^3.0.0" 3342 | 3343 | read-pkg@^5.2.0: 3344 | version "5.2.0" 3345 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc" 3346 | integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== 3347 | dependencies: 3348 | "@types/normalize-package-data" "^2.4.0" 3349 | normalize-package-data "^2.5.0" 3350 | parse-json "^5.0.0" 3351 | type-fest "^0.6.0" 3352 | 3353 | readable-stream@^2.0.6, readable-stream@^2.2.2: 3354 | version "2.3.6" 3355 | resolved "http://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 3356 | dependencies: 3357 | core-util-is "~1.0.0" 3358 | inherits "~2.0.3" 3359 | isarray "~1.0.0" 3360 | process-nextick-args "~2.0.0" 3361 | safe-buffer "~5.1.1" 3362 | string_decoder "~1.1.1" 3363 | util-deprecate "~1.0.1" 3364 | 3365 | realpath-native@^1.1.0: 3366 | version "1.1.0" 3367 | resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.1.0.tgz#2003294fea23fb0672f2476ebe22fcf498a2d65c" 3368 | integrity sha512-wlgPA6cCIIg9gKz0fgAPjnzh4yR/LnXovwuo9hvyGvx3h8nX4+/iLZplfUWasXpqD8BdnGnP5njOFjkUwPzvjA== 3369 | dependencies: 3370 | util.promisify "^1.0.0" 3371 | 3372 | regex-not@^1.0.0, regex-not@^1.0.2: 3373 | version "1.0.2" 3374 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 3375 | dependencies: 3376 | extend-shallow "^3.0.2" 3377 | safe-regex "^1.1.0" 3378 | 3379 | remarkable@^1.7.1: 3380 | version "1.7.1" 3381 | resolved "https://registry.yarnpkg.com/remarkable/-/remarkable-1.7.1.tgz#aaca4972100b66a642a63a1021ca4bac1be3bff6" 3382 | dependencies: 3383 | argparse "~0.1.15" 3384 | autolinker "~0.15.0" 3385 | 3386 | remove-trailing-separator@^1.0.1: 3387 | version "1.1.0" 3388 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 3389 | 3390 | repeat-element@^1.1.2: 3391 | version "1.1.3" 3392 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" 3393 | 3394 | repeat-string@^1.5.2, repeat-string@^1.6.1: 3395 | version "1.6.1" 3396 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3397 | 3398 | request-promise-core@1.1.1: 3399 | version "1.1.1" 3400 | resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6" 3401 | dependencies: 3402 | lodash "^4.13.1" 3403 | 3404 | request-promise-native@^1.0.5: 3405 | version "1.0.5" 3406 | resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.5.tgz#5281770f68e0c9719e5163fd3fab482215f4fda5" 3407 | dependencies: 3408 | request-promise-core "1.1.1" 3409 | stealthy-require "^1.1.0" 3410 | tough-cookie ">=2.3.3" 3411 | 3412 | request@^2.87.0: 3413 | version "2.88.0" 3414 | resolved "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef" 3415 | dependencies: 3416 | aws-sign2 "~0.7.0" 3417 | aws4 "^1.8.0" 3418 | caseless "~0.12.0" 3419 | combined-stream "~1.0.6" 3420 | extend "~3.0.2" 3421 | forever-agent "~0.6.1" 3422 | form-data "~2.3.2" 3423 | har-validator "~5.1.0" 3424 | http-signature "~1.2.0" 3425 | is-typedarray "~1.0.0" 3426 | isstream "~0.1.2" 3427 | json-stringify-safe "~5.0.1" 3428 | mime-types "~2.1.19" 3429 | oauth-sign "~0.9.0" 3430 | performance-now "^2.1.0" 3431 | qs "~6.5.2" 3432 | safe-buffer "^5.1.2" 3433 | tough-cookie "~2.4.3" 3434 | tunnel-agent "^0.6.0" 3435 | uuid "^3.3.2" 3436 | 3437 | require-directory@^2.1.1: 3438 | version "2.1.1" 3439 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3440 | 3441 | require-main-filename@^2.0.0: 3442 | version "2.0.0" 3443 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" 3444 | integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== 3445 | 3446 | resolve-cwd@^2.0.0: 3447 | version "2.0.0" 3448 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" 3449 | dependencies: 3450 | resolve-from "^3.0.0" 3451 | 3452 | resolve-from@^3.0.0: 3453 | version "3.0.0" 3454 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" 3455 | 3456 | resolve-url@^0.2.1: 3457 | version "0.2.1" 3458 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 3459 | 3460 | resolve@1.1.7: 3461 | version "1.1.7" 3462 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 3463 | 3464 | resolve@1.x, resolve@^1.10.0: 3465 | version "1.12.0" 3466 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.12.0.tgz#3fc644a35c84a48554609ff26ec52b66fa577df6" 3467 | integrity sha512-B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w== 3468 | dependencies: 3469 | path-parse "^1.0.6" 3470 | 3471 | resolve@^1.3.2: 3472 | version "1.8.1" 3473 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.8.1.tgz#82f1ec19a423ac1fbd080b0bab06ba36e84a7a26" 3474 | dependencies: 3475 | path-parse "^1.0.5" 3476 | 3477 | restore-cursor@^2.0.0: 3478 | version "2.0.0" 3479 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 3480 | integrity sha1-n37ih/gv0ybU/RYpI9YhKe7g368= 3481 | dependencies: 3482 | onetime "^2.0.0" 3483 | signal-exit "^3.0.2" 3484 | 3485 | ret@~0.1.10: 3486 | version "0.1.15" 3487 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 3488 | 3489 | reusify@^1.0.0: 3490 | version "1.0.4" 3491 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" 3492 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 3493 | 3494 | rimraf@^2.5.4, rimraf@^2.6.1: 3495 | version "2.6.2" 3496 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 3497 | dependencies: 3498 | glob "^7.0.5" 3499 | 3500 | rimraf@^2.6.3: 3501 | version "2.7.1" 3502 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" 3503 | integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== 3504 | dependencies: 3505 | glob "^7.1.3" 3506 | 3507 | rimraf@^3.0.0: 3508 | version "3.0.0" 3509 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.0.tgz#614176d4b3010b75e5c390eb0ee96f6dc0cebb9b" 3510 | integrity sha512-NDGVxTsjqfunkds7CqsOiEnxln4Bo7Nddl3XhS4pXg5OzwkLqJ971ZVAAnB+DDLnF76N+VnDEiBHaVV8I06SUg== 3511 | dependencies: 3512 | glob "^7.1.3" 3513 | 3514 | rsvp@^4.8.4: 3515 | version "4.8.5" 3516 | resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.5.tgz#c8f155311d167f68f21e168df71ec5b083113734" 3517 | integrity sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA== 3518 | 3519 | run-node@^1.0.0: 3520 | version "1.0.0" 3521 | resolved "https://registry.yarnpkg.com/run-node/-/run-node-1.0.0.tgz#46b50b946a2aa2d4947ae1d886e9856fd9cabe5e" 3522 | 3523 | run-parallel@^1.1.9: 3524 | version "1.1.9" 3525 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.1.9.tgz#c9dd3a7cf9f4b2c4b6244e173a6ed866e61dd679" 3526 | integrity sha512-DEqnSRTDw/Tc3FXf49zedI638Z9onwUotBMiUFKmrO2sdFKIbXamXGQ3Axd4qgphxKB4kw/qP1w5kTxnfU1B9Q== 3527 | 3528 | rxjs@^6.3.3: 3529 | version "6.5.3" 3530 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.3.tgz#510e26317f4db91a7eb1de77d9dd9ba0a4899a3a" 3531 | integrity sha512-wuYsAYYFdWTAnAaPoKGNhfpWwKZbJW+HgAJ+mImp+Epl7BG8oNWBCTyRM8gba9k4lk8BgWdoYm21Mo/RYhhbgA== 3532 | dependencies: 3533 | tslib "^1.9.0" 3534 | 3535 | safe-buffer@^5.0.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 3536 | version "5.1.2" 3537 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 3538 | 3539 | safe-regex@^1.1.0: 3540 | version "1.1.0" 3541 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 3542 | dependencies: 3543 | ret "~0.1.10" 3544 | 3545 | "safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: 3546 | version "2.1.2" 3547 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 3548 | 3549 | sane@^4.0.3: 3550 | version "4.1.0" 3551 | resolved "https://registry.yarnpkg.com/sane/-/sane-4.1.0.tgz#ed881fd922733a6c461bc189dc2b6c006f3ffded" 3552 | integrity sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA== 3553 | dependencies: 3554 | "@cnakazawa/watch" "^1.0.3" 3555 | anymatch "^2.0.0" 3556 | capture-exit "^2.0.0" 3557 | exec-sh "^0.3.2" 3558 | execa "^1.0.0" 3559 | fb-watchman "^2.0.0" 3560 | micromatch "^3.1.4" 3561 | minimist "^1.1.1" 3562 | walker "~1.0.5" 3563 | 3564 | sax@^1.2.4: 3565 | version "1.2.4" 3566 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 3567 | 3568 | semver-compare@^1.0.0: 3569 | version "1.0.0" 3570 | resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" 3571 | 3572 | "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5, semver@^5.5.0: 3573 | version "5.5.1" 3574 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.1.tgz#7dfdd8814bdb7cabc7be0fb1d734cfb66c940477" 3575 | 3576 | semver@^5.6.0: 3577 | version "5.7.1" 3578 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 3579 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 3580 | 3581 | semver@^6.0.0, semver@^6.2.0: 3582 | version "6.3.0" 3583 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 3584 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 3585 | 3586 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3587 | version "2.0.0" 3588 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3589 | 3590 | set-getter@^0.1.0: 3591 | version "0.1.0" 3592 | resolved "https://registry.yarnpkg.com/set-getter/-/set-getter-0.1.0.tgz#d769c182c9d5a51f409145f2fba82e5e86e80376" 3593 | dependencies: 3594 | to-object-path "^0.3.0" 3595 | 3596 | set-value@^0.4.3: 3597 | version "0.4.3" 3598 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" 3599 | dependencies: 3600 | extend-shallow "^2.0.1" 3601 | is-extendable "^0.1.1" 3602 | is-plain-object "^2.0.1" 3603 | to-object-path "^0.3.0" 3604 | 3605 | set-value@^2.0.0: 3606 | version "2.0.0" 3607 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" 3608 | dependencies: 3609 | extend-shallow "^2.0.1" 3610 | is-extendable "^0.1.1" 3611 | is-plain-object "^2.0.3" 3612 | split-string "^3.0.1" 3613 | 3614 | shebang-command@^1.2.0: 3615 | version "1.2.0" 3616 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3617 | dependencies: 3618 | shebang-regex "^1.0.0" 3619 | 3620 | shebang-command@^2.0.0: 3621 | version "2.0.0" 3622 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 3623 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 3624 | dependencies: 3625 | shebang-regex "^3.0.0" 3626 | 3627 | shebang-regex@^1.0.0: 3628 | version "1.0.0" 3629 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3630 | 3631 | shebang-regex@^3.0.0: 3632 | version "3.0.0" 3633 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 3634 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 3635 | 3636 | shellwords@^0.1.1: 3637 | version "0.1.1" 3638 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" 3639 | 3640 | signal-exit@^3.0.0, signal-exit@^3.0.2: 3641 | version "3.0.2" 3642 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3643 | 3644 | sisteransi@^1.0.3: 3645 | version "1.0.3" 3646 | resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.3.tgz#98168d62b79e3a5e758e27ae63c4a053d748f4eb" 3647 | integrity sha512-SbEG75TzH8G7eVXFSN5f9EExILKfly7SUvVY5DhhYLvfhKqhDFY0OzevWa/zwak0RLRfWS5AvfMWpd9gJvr5Yg== 3648 | 3649 | slash@^2.0.0: 3650 | version "2.0.0" 3651 | resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44" 3652 | 3653 | slash@^3.0.0: 3654 | version "3.0.0" 3655 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 3656 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 3657 | 3658 | slice-ansi@0.0.4: 3659 | version "0.0.4" 3660 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 3661 | 3662 | snapdragon-node@^2.0.1: 3663 | version "2.1.1" 3664 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 3665 | dependencies: 3666 | define-property "^1.0.0" 3667 | isobject "^3.0.0" 3668 | snapdragon-util "^3.0.1" 3669 | 3670 | snapdragon-util@^3.0.1: 3671 | version "3.0.1" 3672 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 3673 | dependencies: 3674 | kind-of "^3.2.0" 3675 | 3676 | snapdragon@^0.8.1: 3677 | version "0.8.2" 3678 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 3679 | dependencies: 3680 | base "^0.11.1" 3681 | debug "^2.2.0" 3682 | define-property "^0.2.5" 3683 | extend-shallow "^2.0.1" 3684 | map-cache "^0.2.2" 3685 | source-map "^0.5.6" 3686 | source-map-resolve "^0.5.0" 3687 | use "^3.1.0" 3688 | 3689 | source-map-resolve@^0.5.0: 3690 | version "0.5.2" 3691 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" 3692 | dependencies: 3693 | atob "^2.1.1" 3694 | decode-uri-component "^0.2.0" 3695 | resolve-url "^0.2.1" 3696 | source-map-url "^0.4.0" 3697 | urix "^0.1.0" 3698 | 3699 | source-map-support@^0.5.6: 3700 | version "0.5.9" 3701 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.9.tgz#41bc953b2534267ea2d605bccfa7bfa3111ced5f" 3702 | dependencies: 3703 | buffer-from "^1.0.0" 3704 | source-map "^0.6.0" 3705 | 3706 | source-map-url@^0.4.0: 3707 | version "0.4.0" 3708 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 3709 | 3710 | source-map@^0.5.0, source-map@^0.5.6: 3711 | version "0.5.7" 3712 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3713 | 3714 | source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: 3715 | version "0.6.1" 3716 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 3717 | 3718 | spdx-correct@^3.0.0: 3719 | version "3.0.2" 3720 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.0.2.tgz#19bb409e91b47b1ad54159243f7312a858db3c2e" 3721 | dependencies: 3722 | spdx-expression-parse "^3.0.0" 3723 | spdx-license-ids "^3.0.0" 3724 | 3725 | spdx-exceptions@^2.1.0: 3726 | version "2.2.0" 3727 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz#2ea450aee74f2a89bfb94519c07fcd6f41322977" 3728 | 3729 | spdx-expression-parse@^3.0.0: 3730 | version "3.0.0" 3731 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" 3732 | dependencies: 3733 | spdx-exceptions "^2.1.0" 3734 | spdx-license-ids "^3.0.0" 3735 | 3736 | spdx-license-ids@^3.0.0: 3737 | version "3.0.1" 3738 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.1.tgz#e2a303236cac54b04031fa7a5a79c7e701df852f" 3739 | 3740 | split-string@^3.0.1, split-string@^3.0.2: 3741 | version "3.1.0" 3742 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 3743 | dependencies: 3744 | extend-shallow "^3.0.0" 3745 | 3746 | sprintf-js@~1.0.2: 3747 | version "1.0.3" 3748 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3749 | 3750 | sshpk@^1.7.0: 3751 | version "1.14.2" 3752 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.14.2.tgz#c6fc61648a3d9c4e764fd3fcdf4ea105e492ba98" 3753 | dependencies: 3754 | asn1 "~0.2.3" 3755 | assert-plus "^1.0.0" 3756 | dashdash "^1.12.0" 3757 | getpass "^0.1.1" 3758 | safer-buffer "^2.0.2" 3759 | optionalDependencies: 3760 | bcrypt-pbkdf "^1.0.0" 3761 | ecc-jsbn "~0.1.1" 3762 | jsbn "~0.1.0" 3763 | tweetnacl "~0.14.0" 3764 | 3765 | stack-utils@^1.0.1: 3766 | version "1.0.1" 3767 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.1.tgz#d4f33ab54e8e38778b0ca5cfd3b3afb12db68620" 3768 | 3769 | static-extend@^0.1.1: 3770 | version "0.1.2" 3771 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 3772 | dependencies: 3773 | define-property "^0.2.5" 3774 | object-copy "^0.1.0" 3775 | 3776 | stealthy-require@^1.1.0: 3777 | version "1.1.1" 3778 | resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" 3779 | 3780 | string-argv@^0.3.0: 3781 | version "0.3.1" 3782 | resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da" 3783 | integrity sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg== 3784 | 3785 | string-length@^2.0.0: 3786 | version "2.0.0" 3787 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed" 3788 | dependencies: 3789 | astral-regex "^1.0.0" 3790 | strip-ansi "^4.0.0" 3791 | 3792 | string-width@^1.0.1: 3793 | version "1.0.2" 3794 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3795 | dependencies: 3796 | code-point-at "^1.0.0" 3797 | is-fullwidth-code-point "^1.0.0" 3798 | strip-ansi "^3.0.0" 3799 | 3800 | "string-width@^1.0.2 || 2", string-width@^2.1.1: 3801 | version "2.1.1" 3802 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3803 | dependencies: 3804 | is-fullwidth-code-point "^2.0.0" 3805 | strip-ansi "^4.0.0" 3806 | 3807 | string-width@^3.0.0, string-width@^3.1.0: 3808 | version "3.1.0" 3809 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" 3810 | integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== 3811 | dependencies: 3812 | emoji-regex "^7.0.1" 3813 | is-fullwidth-code-point "^2.0.0" 3814 | strip-ansi "^5.1.0" 3815 | 3816 | string_decoder@~1.1.1: 3817 | version "1.1.1" 3818 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 3819 | dependencies: 3820 | safe-buffer "~5.1.0" 3821 | 3822 | stringify-object@^3.3.0: 3823 | version "3.3.0" 3824 | resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.3.0.tgz#703065aefca19300d3ce88af4f5b3956d7556629" 3825 | integrity sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw== 3826 | dependencies: 3827 | get-own-enumerable-property-symbols "^3.0.0" 3828 | is-obj "^1.0.1" 3829 | is-regexp "^1.0.0" 3830 | 3831 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3832 | version "3.0.1" 3833 | resolved "http://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3834 | dependencies: 3835 | ansi-regex "^2.0.0" 3836 | 3837 | strip-ansi@^4.0.0: 3838 | version "4.0.0" 3839 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3840 | dependencies: 3841 | ansi-regex "^3.0.0" 3842 | 3843 | strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: 3844 | version "5.2.0" 3845 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" 3846 | integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== 3847 | dependencies: 3848 | ansi-regex "^4.1.0" 3849 | 3850 | strip-bom@^3.0.0: 3851 | version "3.0.0" 3852 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3853 | integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= 3854 | 3855 | strip-color@^0.1.0: 3856 | version "0.1.0" 3857 | resolved "https://registry.yarnpkg.com/strip-color/-/strip-color-0.1.0.tgz#106f65d3d3e6a2d9401cac0eb0ce8b8a702b4f7b" 3858 | 3859 | strip-eof@^1.0.0: 3860 | version "1.0.0" 3861 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3862 | 3863 | strip-final-newline@^2.0.0: 3864 | version "2.0.0" 3865 | resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" 3866 | integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== 3867 | 3868 | strip-json-comments@~2.0.1: 3869 | version "2.0.1" 3870 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3871 | 3872 | supports-color@^2.0.0: 3873 | version "2.0.0" 3874 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3875 | 3876 | supports-color@^5.3.0: 3877 | version "5.5.0" 3878 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 3879 | dependencies: 3880 | has-flag "^3.0.0" 3881 | 3882 | supports-color@^6.1.0: 3883 | version "6.1.0" 3884 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3" 3885 | integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ== 3886 | dependencies: 3887 | has-flag "^3.0.0" 3888 | 3889 | symbol-observable@^1.1.0: 3890 | version "1.2.0" 3891 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804" 3892 | 3893 | symbol-tree@^3.2.2: 3894 | version "3.2.2" 3895 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 3896 | 3897 | tar@^4: 3898 | version "4.4.6" 3899 | resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.6.tgz#63110f09c00b4e60ac8bcfe1bf3c8660235fbc9b" 3900 | dependencies: 3901 | chownr "^1.0.1" 3902 | fs-minipass "^1.2.5" 3903 | minipass "^2.3.3" 3904 | minizlib "^1.1.0" 3905 | mkdirp "^0.5.0" 3906 | safe-buffer "^5.1.2" 3907 | yallist "^3.0.2" 3908 | 3909 | test-exclude@^5.2.3: 3910 | version "5.2.3" 3911 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-5.2.3.tgz#c3d3e1e311eb7ee405e092dac10aefd09091eac0" 3912 | integrity sha512-M+oxtseCFO3EDtAaGH7iiej3CBkzXqFMbzqYAACdzKui4eZA+pq3tZEwChvOdNfa7xxy8BfbmgJSIr43cC/+2g== 3913 | dependencies: 3914 | glob "^7.1.3" 3915 | minimatch "^3.0.4" 3916 | read-pkg-up "^4.0.0" 3917 | require-main-filename "^2.0.0" 3918 | 3919 | throat@^4.0.0: 3920 | version "4.1.0" 3921 | resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a" 3922 | 3923 | tmpl@1.0.x: 3924 | version "1.0.4" 3925 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 3926 | 3927 | to-fast-properties@^2.0.0: 3928 | version "2.0.0" 3929 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 3930 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= 3931 | 3932 | to-object-path@^0.3.0: 3933 | version "0.3.0" 3934 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 3935 | dependencies: 3936 | kind-of "^3.0.2" 3937 | 3938 | to-regex-range@^2.1.0: 3939 | version "2.1.1" 3940 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 3941 | dependencies: 3942 | is-number "^3.0.0" 3943 | repeat-string "^1.6.1" 3944 | 3945 | to-regex-range@^5.0.1: 3946 | version "5.0.1" 3947 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 3948 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 3949 | dependencies: 3950 | is-number "^7.0.0" 3951 | 3952 | to-regex@^3.0.1, to-regex@^3.0.2: 3953 | version "3.0.2" 3954 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 3955 | dependencies: 3956 | define-property "^2.0.2" 3957 | extend-shallow "^3.0.2" 3958 | regex-not "^1.0.2" 3959 | safe-regex "^1.1.0" 3960 | 3961 | toml@^2.3.2: 3962 | version "2.3.3" 3963 | resolved "https://registry.yarnpkg.com/toml/-/toml-2.3.3.tgz#8d683d729577cb286231dfc7a8affe58d31728fb" 3964 | 3965 | tough-cookie@>=2.3.3, tough-cookie@^2.3.4, tough-cookie@~2.4.3: 3966 | version "2.4.3" 3967 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781" 3968 | dependencies: 3969 | psl "^1.1.24" 3970 | punycode "^1.4.1" 3971 | 3972 | tr46@^1.0.1: 3973 | version "1.0.1" 3974 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" 3975 | dependencies: 3976 | punycode "^2.1.0" 3977 | 3978 | ts-jest@^24.1.0: 3979 | version "24.1.0" 3980 | resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-24.1.0.tgz#2eaa813271a2987b7e6c3fefbda196301c131734" 3981 | integrity sha512-HEGfrIEAZKfu1pkaxB9au17b1d9b56YZSqz5eCVE8mX68+5reOvlM93xGOzzCREIov9mdH7JBG+s0UyNAqr0tQ== 3982 | dependencies: 3983 | bs-logger "0.x" 3984 | buffer-from "1.x" 3985 | fast-json-stable-stringify "2.x" 3986 | json5 "2.x" 3987 | lodash.memoize "4.x" 3988 | make-error "1.x" 3989 | mkdirp "0.x" 3990 | resolve "1.x" 3991 | semver "^5.5" 3992 | yargs-parser "10.x" 3993 | 3994 | tslib@^1.8.0, tslib@^1.8.1, tslib@^1.9.0: 3995 | version "1.9.3" 3996 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.3.tgz#d7e4dd79245d85428c4d7e4822a79917954ca286" 3997 | 3998 | tslint-config-prettier@^1.18.0: 3999 | version "1.18.0" 4000 | resolved "https://registry.yarnpkg.com/tslint-config-prettier/-/tslint-config-prettier-1.18.0.tgz#75f140bde947d35d8f0d238e0ebf809d64592c37" 4001 | integrity sha512-xPw9PgNPLG3iKRxmK7DWr+Ea/SzrvfHtjFt5LBl61gk2UBG/DB9kCXRjv+xyIU1rUtnayLeMUVJBcMX8Z17nDg== 4002 | 4003 | tslint@^5.20.0: 4004 | version "5.20.0" 4005 | resolved "https://registry.yarnpkg.com/tslint/-/tslint-5.20.0.tgz#fac93bfa79568a5a24e7be9cdde5e02b02d00ec1" 4006 | integrity sha512-2vqIvkMHbnx8acMogAERQ/IuINOq6DFqgF8/VDvhEkBqQh/x6SP0Y+OHnKth9/ZcHQSroOZwUQSN18v8KKF0/g== 4007 | dependencies: 4008 | "@babel/code-frame" "^7.0.0" 4009 | builtin-modules "^1.1.1" 4010 | chalk "^2.3.0" 4011 | commander "^2.12.1" 4012 | diff "^4.0.1" 4013 | glob "^7.1.1" 4014 | js-yaml "^3.13.1" 4015 | minimatch "^3.0.4" 4016 | mkdirp "^0.5.1" 4017 | resolve "^1.3.2" 4018 | semver "^5.3.0" 4019 | tslib "^1.8.0" 4020 | tsutils "^2.29.0" 4021 | 4022 | tsutils@^2.29.0: 4023 | version "2.29.0" 4024 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-2.29.0.tgz#32b488501467acbedd4b85498673a0812aca0b99" 4025 | integrity sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA== 4026 | dependencies: 4027 | tslib "^1.8.1" 4028 | 4029 | tunnel-agent@^0.6.0: 4030 | version "0.6.0" 4031 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 4032 | dependencies: 4033 | safe-buffer "^5.0.1" 4034 | 4035 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 4036 | version "0.14.5" 4037 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 4038 | 4039 | type-check@~0.3.2: 4040 | version "0.3.2" 4041 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 4042 | dependencies: 4043 | prelude-ls "~1.1.2" 4044 | 4045 | type-fest@^0.6.0: 4046 | version "0.6.0" 4047 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" 4048 | integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== 4049 | 4050 | typedarray@^0.0.6: 4051 | version "0.0.6" 4052 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 4053 | 4054 | typescript-fsa@^3.0.0: 4055 | version "3.0.0" 4056 | resolved "https://registry.yarnpkg.com/typescript-fsa/-/typescript-fsa-3.0.0.tgz#3ad1cb915a67338e013fc21f67c9b3e0e110c912" 4057 | integrity sha512-xiXAib35i0QHl/+wMobzPibjAH5TJLDj+qGq5jwVLG9qR4FUswZURBw2qihBm0m06tHoyb3FzpnJs1GRhRwVag== 4058 | 4059 | typescript@^3.6.4: 4060 | version "3.6.4" 4061 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.6.4.tgz#b18752bb3792bc1a0281335f7f6ebf1bbfc5b91d" 4062 | integrity sha512-unoCll1+l+YK4i4F8f22TaNVPRHcD9PA3yCuZ8g5e0qGqlVlJ/8FSateOLLSagn+Yg5+ZwuPkL8LFUc0Jcvksg== 4063 | 4064 | uglify-js@^3.1.4: 4065 | version "3.4.9" 4066 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.4.9.tgz#af02f180c1207d76432e473ed24a28f4a782bae3" 4067 | dependencies: 4068 | commander "~2.17.1" 4069 | source-map "~0.6.1" 4070 | 4071 | underscore.string@~2.4.0: 4072 | version "2.4.0" 4073 | resolved "http://registry.npmjs.org/underscore.string/-/underscore.string-2.4.0.tgz#8cdd8fbac4e2d2ea1e7e2e8097c42f442280f85b" 4074 | 4075 | underscore@~1.7.0: 4076 | version "1.7.0" 4077 | resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.7.0.tgz#6bbaf0877500d36be34ecaa584e0db9fef035209" 4078 | 4079 | union-value@^1.0.0: 4080 | version "1.0.0" 4081 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" 4082 | dependencies: 4083 | arr-union "^3.1.0" 4084 | get-value "^2.0.6" 4085 | is-extendable "^0.1.1" 4086 | set-value "^0.4.3" 4087 | 4088 | unset-value@^1.0.0: 4089 | version "1.0.0" 4090 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 4091 | dependencies: 4092 | has-value "^0.3.1" 4093 | isobject "^3.0.0" 4094 | 4095 | urix@^0.1.0: 4096 | version "0.1.0" 4097 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 4098 | 4099 | use@^3.1.0: 4100 | version "3.1.1" 4101 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" 4102 | 4103 | util-deprecate@~1.0.1: 4104 | version "1.0.2" 4105 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 4106 | 4107 | util.promisify@^1.0.0: 4108 | version "1.0.0" 4109 | resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" 4110 | dependencies: 4111 | define-properties "^1.1.2" 4112 | object.getownpropertydescriptors "^2.0.3" 4113 | 4114 | uuid@^3.3.2: 4115 | version "3.3.2" 4116 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131" 4117 | 4118 | validate-npm-package-license@^3.0.1: 4119 | version "3.0.4" 4120 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 4121 | dependencies: 4122 | spdx-correct "^3.0.0" 4123 | spdx-expression-parse "^3.0.0" 4124 | 4125 | verror@1.10.0: 4126 | version "1.10.0" 4127 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 4128 | dependencies: 4129 | assert-plus "^1.0.0" 4130 | core-util-is "1.0.2" 4131 | extsprintf "^1.2.0" 4132 | 4133 | w3c-hr-time@^1.0.1: 4134 | version "1.0.1" 4135 | resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz#82ac2bff63d950ea9e3189a58a65625fedf19045" 4136 | dependencies: 4137 | browser-process-hrtime "^0.1.2" 4138 | 4139 | walker@^1.0.7, walker@~1.0.5: 4140 | version "1.0.7" 4141 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 4142 | dependencies: 4143 | makeerror "1.0.x" 4144 | 4145 | webidl-conversions@^4.0.2: 4146 | version "4.0.2" 4147 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" 4148 | 4149 | whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3: 4150 | version "1.0.5" 4151 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0" 4152 | dependencies: 4153 | iconv-lite "0.4.24" 4154 | 4155 | whatwg-mimetype@^2.1.0: 4156 | version "2.2.0" 4157 | resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.2.0.tgz#a3d58ef10b76009b042d03e25591ece89b88d171" 4158 | 4159 | whatwg-url@^6.4.1: 4160 | version "6.5.0" 4161 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.5.0.tgz#f2df02bff176fd65070df74ad5ccbb5a199965a8" 4162 | dependencies: 4163 | lodash.sortby "^4.7.0" 4164 | tr46 "^1.0.1" 4165 | webidl-conversions "^4.0.2" 4166 | 4167 | whatwg-url@^7.0.0: 4168 | version "7.0.0" 4169 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.0.0.tgz#fde926fa54a599f3adf82dff25a9f7be02dc6edd" 4170 | dependencies: 4171 | lodash.sortby "^4.7.0" 4172 | tr46 "^1.0.1" 4173 | webidl-conversions "^4.0.2" 4174 | 4175 | which-module@^2.0.0: 4176 | version "2.0.0" 4177 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 4178 | 4179 | which@^1.2.9, which@^1.3.0: 4180 | version "1.3.1" 4181 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 4182 | dependencies: 4183 | isexe "^2.0.0" 4184 | 4185 | which@^2.0.1: 4186 | version "2.0.1" 4187 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.1.tgz#f1cf94d07a8e571b6ff006aeb91d0300c47ef0a4" 4188 | integrity sha512-N7GBZOTswtB9lkQBZA4+zAXrjEIWAUOB93AvzUiudRzRxhUdLURQ7D/gAIMY1gatT/LTbmbcv8SiYazy3eYB7w== 4189 | dependencies: 4190 | isexe "^2.0.0" 4191 | 4192 | wide-align@^1.1.0: 4193 | version "1.1.3" 4194 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 4195 | dependencies: 4196 | string-width "^1.0.2 || 2" 4197 | 4198 | wordwrap@~0.0.2: 4199 | version "0.0.3" 4200 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 4201 | 4202 | wordwrap@~1.0.0: 4203 | version "1.0.0" 4204 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 4205 | 4206 | wrap-ansi@^3.0.1: 4207 | version "3.0.1" 4208 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-3.0.1.tgz#288a04d87eda5c286e060dfe8f135ce8d007f8ba" 4209 | integrity sha1-KIoE2H7aXChuBg3+jxNc6NAH+Lo= 4210 | dependencies: 4211 | string-width "^2.1.1" 4212 | strip-ansi "^4.0.0" 4213 | 4214 | wrap-ansi@^5.1.0: 4215 | version "5.1.0" 4216 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09" 4217 | integrity sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q== 4218 | dependencies: 4219 | ansi-styles "^3.2.0" 4220 | string-width "^3.0.0" 4221 | strip-ansi "^5.0.0" 4222 | 4223 | wrappy@1: 4224 | version "1.0.2" 4225 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 4226 | 4227 | write-file-atomic@2.4.1: 4228 | version "2.4.1" 4229 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.1.tgz#d0b05463c188ae804396fd5ab2a370062af87529" 4230 | integrity sha512-TGHFeZEZMnv+gBFRfjAcxL5bPHrsGKtnb4qsFAws7/vlh+QfwAaySIw4AXP9ZskTTh5GWu3FLuJhsWVdiJPGvg== 4231 | dependencies: 4232 | graceful-fs "^4.1.11" 4233 | imurmurhash "^0.1.4" 4234 | signal-exit "^3.0.2" 4235 | 4236 | ws@^5.2.0: 4237 | version "5.2.2" 4238 | resolved "https://registry.yarnpkg.com/ws/-/ws-5.2.2.tgz#dffef14866b8e8dc9133582514d1befaf96e980f" 4239 | dependencies: 4240 | async-limiter "~1.0.0" 4241 | 4242 | xml-name-validator@^3.0.0: 4243 | version "3.0.0" 4244 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" 4245 | 4246 | y18n@^4.0.0: 4247 | version "4.0.0" 4248 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" 4249 | integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w== 4250 | 4251 | yallist@^3.0.0, yallist@^3.0.2: 4252 | version "3.0.2" 4253 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.2.tgz#8452b4bb7e83c7c188d8041c1a837c773d6d8bb9" 4254 | 4255 | yargs-parser@10.x: 4256 | version "10.1.0" 4257 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-10.1.0.tgz#7202265b89f7e9e9f2e5765e0fe735a905edbaa8" 4258 | dependencies: 4259 | camelcase "^4.1.0" 4260 | 4261 | yargs-parser@^13.1.1: 4262 | version "13.1.1" 4263 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.1.tgz#d26058532aa06d365fe091f6a1fc06b2f7e5eca0" 4264 | integrity sha512-oVAVsHz6uFrg3XQheFII8ESO2ssAf9luWuAd6Wexsu4F3OtIW0o8IribPXYrD4WC24LWtPrJlGy87y5udK+dxQ== 4265 | dependencies: 4266 | camelcase "^5.0.0" 4267 | decamelize "^1.2.0" 4268 | 4269 | yargs@^13.3.0: 4270 | version "13.3.0" 4271 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.3.0.tgz#4c657a55e07e5f2cf947f8a366567c04a0dedc83" 4272 | integrity sha512-2eehun/8ALW8TLoIl7MVaRUrg+yCnenu8B4kBlRxj3GJGDKU1Og7sMXPNm1BYyM1DOJmTZ4YeN/Nwxv+8XJsUA== 4273 | dependencies: 4274 | cliui "^5.0.0" 4275 | find-up "^3.0.0" 4276 | get-caller-file "^2.0.1" 4277 | require-directory "^2.1.1" 4278 | require-main-filename "^2.0.0" 4279 | set-blocking "^2.0.0" 4280 | string-width "^3.0.0" 4281 | which-module "^2.0.0" 4282 | y18n "^4.0.0" 4283 | yargs-parser "^13.1.1" 4284 | --------------------------------------------------------------------------------