├── .babelrc ├── .circleci └── config.yml ├── .editorconfig ├── .eslintrc ├── .flowconfig ├── .gitignore ├── LICENSE ├── Readme.md ├── flow-typed └── npm │ └── jest_v20.x.x.js ├── jest └── setup.js ├── package.json ├── src ├── __tests__ │ └── index.test.js ├── index.android.js ├── index.ios.js ├── index.js ├── index.mobile.js └── types.js ├── yarn-error.log └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | "env", 4 | "flow" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- 1 | aliases: 2 | - &restore-cache 3 | keys: 4 | - dependencies-{{ checksum "package.json" }} 5 | # Fallback in case checksum fails 6 | - dependencies- 7 | 8 | - &save-cache 9 | paths: 10 | - node_modules 11 | key: dependencies-{{ checksum "package.json" }} 12 | 13 | version: 2 14 | jobs: 15 | build: 16 | docker: 17 | - image: circleci/node:6.10.3 18 | steps: 19 | - checkout 20 | - restore-cache: *restore-cache 21 | - run: yarn install 22 | - save-cache: *save-cache 23 | - run: yarn run lint 24 | - run: yarn run flow 25 | - run: yarn test -- --coverage 26 | - store_artifacts: 27 | path: coverage 28 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # top-most EditorConfig file 2 | root = true 3 | 4 | # Unix-style newlines with a newline ending every file 5 | [*] 6 | end_of_line = lf 7 | insert_final_newline = true 8 | 9 | # Indentation override for all JS under lib directory 10 | [*/**.js] 11 | charset = utf-8 12 | indent_style = space 13 | indent_size = 2 14 | 15 | # Matches the exact files either package.json or .travis.yml 16 | [{package.json}] 17 | indent_style = space 18 | indent_size = 2 19 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "callstack-io", 3 | "env": { 4 | "jest": true 5 | }, 6 | 7 | "globals": { 8 | "__DEV__": true 9 | }, 10 | 11 | "rules": { 12 | "strict": 0, 13 | 14 | "import/no-duplicates": 0, 15 | "import/no-unresolved": 0, 16 | 17 | "react/jsx-no-bind": 0, 18 | "react/jsx-filename-extension": 0, 19 | "react/forbid-prop-types": 0, 20 | "react/prefer-stateless-function": 0, 21 | "react/sort-comp": 0, 22 | 23 | "jsx-a11y/href-no-hash": "off" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | 3 | # We fork some components by platform. 4 | .*/*.android.js 5 | 6 | # Ignore templates with `@flow` in header 7 | .*/local-cli/generator.* 8 | 9 | # Ignore malformed json 10 | .*/node_modules/y18n/test/.*\.json 11 | 12 | # Ignore BUCK generated dirs 13 | .*/node_modules/\.buckd/ 14 | 15 | # Ignore unexpected extra @providesModule 16 | .*/node_modules/commoner/test/source/widget/share.js 17 | .*/node_modules/fbemitter/node_modules/.* 18 | .*/node_modules/@react-native-community/async-storage/.* 19 | .*/node_modules/metro-bundler/.* 20 | .*/node_modules/jest-runtime/build/__tests__/.* 21 | 22 | /example/.* 23 | 24 | [libs] 25 | flow-typed/.* 26 | 27 | [options] 28 | module.system=haste 29 | 30 | esproposal.decorators=ignore 31 | esproposal.class_static_fields=enable 32 | esproposal.class_instance_fields=enable 33 | esproposal.export_star_as=enable 34 | 35 | experimental.strict_type_args=true 36 | 37 | munge_underscores=true 38 | 39 | suppress_type=$FlowIssue 40 | suppress_type=$FlowFixMe 41 | suppress_type=$FlowIgnore 42 | suppress_type=$FixMe 43 | 44 | module.name_mapper='@react-native-community/async-storage' -> 'emptyObject' 45 | 46 | unsafe.enable_getters_and_setters=true 47 | 48 | [version] 49 | ^0.54.0 50 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OSX 2 | # 3 | .vscode 4 | .DS_Store 5 | 6 | # Xcode 7 | # 8 | build/ 9 | *.pbxuser 10 | !default.pbxuser 11 | *.mode1v3 12 | !default.mode1v3 13 | *.mode2v3 14 | !default.mode2v3 15 | *.perspectivev3 16 | !default.perspectivev3 17 | xcuserdata 18 | *.xccheckout 19 | *.moved-aside 20 | DerivedData 21 | *.hmap 22 | *.ipa 23 | *.xcuserstate 24 | project.xcworkspace 25 | 26 | # Android/IJ 27 | # 28 | *.iml 29 | .idea 30 | .gradle 31 | local.properties 32 | 33 | # node.js 34 | # 35 | node_modules/ 36 | npm-debug.log 37 | 38 | # BUCK 39 | buck-out/ 40 | \.buckd/ 41 | android/app/libs 42 | android/keystores/debug.keystore 43 | 44 | # Jest 45 | coverage/ 46 | 47 | # build 48 | lib/ 49 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2018 Callstack 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- 1 | [![Version][version-badge]][package] 2 | [![Build Status][build-badge]][build] 3 | 4 | @callstack/async-storage 5 | ================================== 6 | 7 | > Cross platform local storage with React Native - like API. 8 | 9 | 10 | Check out working [web example](https://codesandbox.io/s/r9l9ljr04) 💻 and [mobile](https://snack.expo.io/@happiryu/@callstack-async-storage-example) 📱 11 | 12 | In order to use it, just import from either web or native: 13 | 14 | ```js 15 | import AsyncStorage from '@callstack/async-storage'; 16 | ``` 17 | 18 | and call any of the methods available [here](https://facebook.github.io/react-native/docs/asyncstorage.html). The API is 100% compatible, 19 | including the errors that can be thrown. 20 | 21 | ```js 22 | AsyncStorage.setItem('key', 'value') 23 | .then(() => {}) 24 | .catch(() => {}) 25 | ``` 26 | 27 | ~**Warning:** Unlike React Native AsyncStorage, this module doesn't accept callbacks. If you are already using Promises or async/await, this warning can be ignored.~ 28 | 29 | Sice the version 1.1.0 we do support **callbacks** (along with promises) for methods `setItem`, `getItem`, `removeItem` and `getAllKeys`. That's mean that this library now plays well with e.g. [redux-persist](https://github.com/rt2zz/redux-persist). :rocket: 30 | 31 | 32 | [version-badge]: https://img.shields.io/npm/v/@callstack/async-storage.svg?style=flat-square 33 | [package]: https://www.npmjs.com/package/@callstack/async-storage 34 | [build-badge]: https://img.shields.io/circleci/project/github/callstack/async-storage/master.svg?style=flat-square 35 | [build]: https://circleci.com/gh/callstack-io/async-storage 36 | 37 | -------------------------------------------------------------------------------- /flow-typed/npm/jest_v20.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: 5960ed076fe29ecf92f57584d68acf98 2 | // flow-typed version: b2a49dc910/jest_v20.x.x/flow_>=v0.39.x 3 | 4 | type JestMockFn, TReturn> = { 5 | (...args: TArguments): TReturn, 6 | /** 7 | * An object for introspecting mock calls 8 | */ 9 | mock: { 10 | /** 11 | * An array that represents all calls that have been made into this mock 12 | * function. Each call is represented by an array of arguments that were 13 | * passed during the call. 14 | */ 15 | calls: Array, 16 | /** 17 | * An array that contains all the object instances that have been 18 | * instantiated from this mock function. 19 | */ 20 | instances: Array 21 | }, 22 | /** 23 | * Resets all information stored in the mockFn.mock.calls and 24 | * mockFn.mock.instances arrays. Often this is useful when you want to clean 25 | * up a mock's usage data between two assertions. 26 | */ 27 | mockClear(): void, 28 | /** 29 | * Resets all information stored in the mock. This is useful when you want to 30 | * completely restore a mock back to its initial state. 31 | */ 32 | mockReset(): void, 33 | /** 34 | * Removes the mock and restores the initial implementation. This is useful 35 | * when you want to mock functions in certain test cases and restore the 36 | * original implementation in others. Beware that mockFn.mockRestore only 37 | * works when mock was created with jest.spyOn. Thus you have to take care of 38 | * restoration yourself when manually assigning jest.fn(). 39 | */ 40 | mockRestore(): void, 41 | /** 42 | * Accepts a function that should be used as the implementation of the mock. 43 | * The mock itself will still record all calls that go into and instances 44 | * that come from itself -- the only difference is that the implementation 45 | * will also be executed when the mock is called. 46 | */ 47 | mockImplementation( 48 | fn: (...args: TArguments) => TReturn, 49 | ): JestMockFn, 50 | /** 51 | * Accepts a function that will be used as an implementation of the mock for 52 | * one call to the mocked function. Can be chained so that multiple function 53 | * calls produce different results. 54 | */ 55 | mockImplementationOnce( 56 | fn: (...args: TArguments) => TReturn, 57 | ): JestMockFn, 58 | /** 59 | * Just a simple sugar function for returning `this` 60 | */ 61 | mockReturnThis(): void, 62 | /** 63 | * Deprecated: use jest.fn(() => value) instead 64 | */ 65 | mockReturnValue(value: TReturn): JestMockFn, 66 | /** 67 | * Sugar for only returning a value once inside your mock 68 | */ 69 | mockReturnValueOnce(value: TReturn): JestMockFn 70 | }; 71 | 72 | type JestAsymmetricEqualityType = { 73 | /** 74 | * A custom Jasmine equality tester 75 | */ 76 | asymmetricMatch(value: mixed): boolean 77 | }; 78 | 79 | type JestCallsType = { 80 | allArgs(): mixed, 81 | all(): mixed, 82 | any(): boolean, 83 | count(): number, 84 | first(): mixed, 85 | mostRecent(): mixed, 86 | reset(): void 87 | }; 88 | 89 | type JestClockType = { 90 | install(): void, 91 | mockDate(date: Date): void, 92 | tick(milliseconds?: number): void, 93 | uninstall(): void 94 | }; 95 | 96 | type JestMatcherResult = { 97 | message?: string | (() => string), 98 | pass: boolean 99 | }; 100 | 101 | type JestMatcher = (actual: any, expected: any) => JestMatcherResult; 102 | 103 | type JestPromiseType = { 104 | /** 105 | * Use rejects to unwrap the reason of a rejected promise so any other 106 | * matcher can be chained. If the promise is fulfilled the assertion fails. 107 | */ 108 | rejects: JestExpectType, 109 | /** 110 | * Use resolves to unwrap the value of a fulfilled promise so any other 111 | * matcher can be chained. If the promise is rejected the assertion fails. 112 | */ 113 | resolves: JestExpectType 114 | }; 115 | 116 | /** 117 | * Plugin: jest-enzyme 118 | */ 119 | type EnzymeMatchersType = { 120 | toBeChecked(): void, 121 | toBeDisabled(): void, 122 | toBeEmpty(): void, 123 | toBePresent(): void, 124 | toContainReact(element: React$Element): void, 125 | toHaveClassName(className: string): void, 126 | toHaveHTML(html: string): void, 127 | toHaveProp(propKey: string, propValue?: any): void, 128 | toHaveRef(refName: string): void, 129 | toHaveState(stateKey: string, stateValue?: any): void, 130 | toHaveStyle(styleKey: string, styleValue?: any): void, 131 | toHaveTagName(tagName: string): void, 132 | toHaveText(text: string): void, 133 | toIncludeText(text: string): void, 134 | toHaveValue(value: any): void, 135 | toMatchElement(element: React$Element): void, 136 | toMatchSelector(selector: string): void, 137 | }; 138 | 139 | type JestExpectType = { 140 | not: JestExpectType & EnzymeMatchersType, 141 | /** 142 | * If you have a mock function, you can use .lastCalledWith to test what 143 | * arguments it was last called with. 144 | */ 145 | lastCalledWith(...args: Array): void, 146 | /** 147 | * toBe just checks that a value is what you expect. It uses === to check 148 | * strict equality. 149 | */ 150 | toBe(value: any): void, 151 | /** 152 | * Use .toHaveBeenCalled to ensure that a mock function got called. 153 | */ 154 | toBeCalled(): void, 155 | /** 156 | * Use .toBeCalledWith to ensure that a mock function was called with 157 | * specific arguments. 158 | */ 159 | toBeCalledWith(...args: Array): void, 160 | /** 161 | * Using exact equality with floating point numbers is a bad idea. Rounding 162 | * means that intuitive things fail. 163 | */ 164 | toBeCloseTo(num: number, delta: any): void, 165 | /** 166 | * Use .toBeDefined to check that a variable is not undefined. 167 | */ 168 | toBeDefined(): void, 169 | /** 170 | * Use .toBeFalsy when you don't care what a value is, you just want to 171 | * ensure a value is false in a boolean context. 172 | */ 173 | toBeFalsy(): void, 174 | /** 175 | * To compare floating point numbers, you can use toBeGreaterThan. 176 | */ 177 | toBeGreaterThan(number: number): void, 178 | /** 179 | * To compare floating point numbers, you can use toBeGreaterThanOrEqual. 180 | */ 181 | toBeGreaterThanOrEqual(number: number): void, 182 | /** 183 | * To compare floating point numbers, you can use toBeLessThan. 184 | */ 185 | toBeLessThan(number: number): void, 186 | /** 187 | * To compare floating point numbers, you can use toBeLessThanOrEqual. 188 | */ 189 | toBeLessThanOrEqual(number: number): void, 190 | /** 191 | * Use .toBeInstanceOf(Class) to check that an object is an instance of a 192 | * class. 193 | */ 194 | toBeInstanceOf(cls: Class<*>): void, 195 | /** 196 | * .toBeNull() is the same as .toBe(null) but the error messages are a bit 197 | * nicer. 198 | */ 199 | toBeNull(): void, 200 | /** 201 | * Use .toBeTruthy when you don't care what a value is, you just want to 202 | * ensure a value is true in a boolean context. 203 | */ 204 | toBeTruthy(): void, 205 | /** 206 | * Use .toBeUndefined to check that a variable is undefined. 207 | */ 208 | toBeUndefined(): void, 209 | /** 210 | * Use .toContain when you want to check that an item is in a list. For 211 | * testing the items in the list, this uses ===, a strict equality check. 212 | */ 213 | toContain(item: any): void, 214 | /** 215 | * Use .toContainEqual when you want to check that an item is in a list. For 216 | * testing the items in the list, this matcher recursively checks the 217 | * equality of all fields, rather than checking for object identity. 218 | */ 219 | toContainEqual(item: any): void, 220 | /** 221 | * Use .toEqual when you want to check that two objects have the same value. 222 | * This matcher recursively checks the equality of all fields, rather than 223 | * checking for object identity. 224 | */ 225 | toEqual(value: any): void, 226 | /** 227 | * Use .toHaveBeenCalled to ensure that a mock function got called. 228 | */ 229 | toHaveBeenCalled(): void, 230 | /** 231 | * Use .toHaveBeenCalledTimes to ensure that a mock function got called exact 232 | * number of times. 233 | */ 234 | toHaveBeenCalledTimes(number: number): void, 235 | /** 236 | * Use .toHaveBeenCalledWith to ensure that a mock function was called with 237 | * specific arguments. 238 | */ 239 | toHaveBeenCalledWith(...args: Array): void, 240 | /** 241 | * Use .toHaveBeenLastCalledWith to ensure that a mock function was last called 242 | * with specific arguments. 243 | */ 244 | toHaveBeenLastCalledWith(...args: Array): void, 245 | /** 246 | * Check that an object has a .length property and it is set to a certain 247 | * numeric value. 248 | */ 249 | toHaveLength(number: number): void, 250 | /** 251 | * 252 | */ 253 | toHaveProperty(propPath: string, value?: any): void, 254 | /** 255 | * Use .toMatch to check that a string matches a regular expression or string. 256 | */ 257 | toMatch(regexpOrString: RegExp | string): void, 258 | /** 259 | * Use .toMatchObject to check that a javascript object matches a subset of the properties of an object. 260 | */ 261 | toMatchObject(object: Object): void, 262 | /** 263 | * This ensures that a React component matches the most recent snapshot. 264 | */ 265 | toMatchSnapshot(name?: string): void, 266 | /** 267 | * Use .toThrow to test that a function throws when it is called. 268 | * If you want to test that a specific error gets thrown, you can provide an 269 | * argument to toThrow. The argument can be a string for the error message, 270 | * a class for the error, or a regex that should match the error. 271 | * 272 | * Alias: .toThrowError 273 | */ 274 | toThrow(message?: string | Error | RegExp): void, 275 | toThrowError(message?: string | Error | RegExp): void, 276 | /** 277 | * Use .toThrowErrorMatchingSnapshot to test that a function throws a error 278 | * matching the most recent snapshot when it is called. 279 | */ 280 | toThrowErrorMatchingSnapshot(): void 281 | }; 282 | 283 | type JestObjectType = { 284 | /** 285 | * Disables automatic mocking in the module loader. 286 | * 287 | * After this method is called, all `require()`s will return the real 288 | * versions of each module (rather than a mocked version). 289 | */ 290 | disableAutomock(): JestObjectType, 291 | /** 292 | * An un-hoisted version of disableAutomock 293 | */ 294 | autoMockOff(): JestObjectType, 295 | /** 296 | * Enables automatic mocking in the module loader. 297 | */ 298 | enableAutomock(): JestObjectType, 299 | /** 300 | * An un-hoisted version of enableAutomock 301 | */ 302 | autoMockOn(): JestObjectType, 303 | /** 304 | * Clears the mock.calls and mock.instances properties of all mocks. 305 | * Equivalent to calling .mockClear() on every mocked function. 306 | */ 307 | clearAllMocks(): JestObjectType, 308 | /** 309 | * Resets the state of all mocks. Equivalent to calling .mockReset() on every 310 | * mocked function. 311 | */ 312 | resetAllMocks(): JestObjectType, 313 | /** 314 | * Removes any pending timers from the timer system. 315 | */ 316 | clearAllTimers(): void, 317 | /** 318 | * The same as `mock` but not moved to the top of the expectation by 319 | * babel-jest. 320 | */ 321 | doMock(moduleName: string, moduleFactory?: any): JestObjectType, 322 | /** 323 | * The same as `unmock` but not moved to the top of the expectation by 324 | * babel-jest. 325 | */ 326 | dontMock(moduleName: string): JestObjectType, 327 | /** 328 | * Returns a new, unused mock function. Optionally takes a mock 329 | * implementation. 330 | */ 331 | fn, TReturn>( 332 | implementation?: (...args: TArguments) => TReturn, 333 | ): JestMockFn, 334 | /** 335 | * Determines if the given function is a mocked function. 336 | */ 337 | isMockFunction(fn: Function): boolean, 338 | /** 339 | * Given the name of a module, use the automatic mocking system to generate a 340 | * mocked version of the module for you. 341 | */ 342 | genMockFromModule(moduleName: string): any, 343 | /** 344 | * Mocks a module with an auto-mocked version when it is being required. 345 | * 346 | * The second argument can be used to specify an explicit module factory that 347 | * is being run instead of using Jest's automocking feature. 348 | * 349 | * The third argument can be used to create virtual mocks -- mocks of modules 350 | * that don't exist anywhere in the system. 351 | */ 352 | mock( 353 | moduleName: string, 354 | moduleFactory?: any, 355 | options?: Object 356 | ): JestObjectType, 357 | /** 358 | * Resets the module registry - the cache of all required modules. This is 359 | * useful to isolate modules where local state might conflict between tests. 360 | */ 361 | resetModules(): JestObjectType, 362 | /** 363 | * Exhausts the micro-task queue (usually interfaced in node via 364 | * process.nextTick). 365 | */ 366 | runAllTicks(): void, 367 | /** 368 | * Exhausts the macro-task queue (i.e., all tasks queued by setTimeout(), 369 | * setInterval(), and setImmediate()). 370 | */ 371 | runAllTimers(): void, 372 | /** 373 | * Exhausts all tasks queued by setImmediate(). 374 | */ 375 | runAllImmediates(): void, 376 | /** 377 | * Executes only the macro task queue (i.e. all tasks queued by setTimeout() 378 | * or setInterval() and setImmediate()). 379 | */ 380 | runTimersToTime(msToRun: number): void, 381 | /** 382 | * Executes only the macro-tasks that are currently pending (i.e., only the 383 | * tasks that have been queued by setTimeout() or setInterval() up to this 384 | * point) 385 | */ 386 | runOnlyPendingTimers(): void, 387 | /** 388 | * Explicitly supplies the mock object that the module system should return 389 | * for the specified module. Note: It is recommended to use jest.mock() 390 | * instead. 391 | */ 392 | setMock(moduleName: string, moduleExports: any): JestObjectType, 393 | /** 394 | * Indicates that the module system should never return a mocked version of 395 | * the specified module from require() (e.g. that it should always return the 396 | * real module). 397 | */ 398 | unmock(moduleName: string): JestObjectType, 399 | /** 400 | * Instructs Jest to use fake versions of the standard timer functions 401 | * (setTimeout, setInterval, clearTimeout, clearInterval, nextTick, 402 | * setImmediate and clearImmediate). 403 | */ 404 | useFakeTimers(): JestObjectType, 405 | /** 406 | * Instructs Jest to use the real versions of the standard timer functions. 407 | */ 408 | useRealTimers(): JestObjectType, 409 | /** 410 | * Creates a mock function similar to jest.fn but also tracks calls to 411 | * object[methodName]. 412 | */ 413 | spyOn(object: Object, methodName: string): JestMockFn 414 | }; 415 | 416 | type JestSpyType = { 417 | calls: JestCallsType 418 | }; 419 | 420 | /** Runs this function after every test inside this context */ 421 | declare function afterEach(fn: (done: () => void) => ?Promise, timeout?: number): void; 422 | /** Runs this function before every test inside this context */ 423 | declare function beforeEach(fn: (done: () => void) => ?Promise, timeout?: number): void; 424 | /** Runs this function after all tests have finished inside this context */ 425 | declare function afterAll(fn: (done: () => void) => ?Promise, timeout?: number): void; 426 | /** Runs this function before any tests have started inside this context */ 427 | declare function beforeAll(fn: (done: () => void) => ?Promise, timeout?: number): void; 428 | 429 | /** A context for grouping tests together */ 430 | declare var describe: { 431 | /** 432 | * Creates a block that groups together several related tests in one "test suite" 433 | */ 434 | (name: string, fn: () => void): void, 435 | 436 | /** 437 | * Only run this describe block 438 | */ 439 | only(name: string, fn: () => void): void, 440 | 441 | /** 442 | * Skip running this describe block 443 | */ 444 | skip(name: string, fn: () => void): void, 445 | }; 446 | 447 | 448 | /** An individual test unit */ 449 | declare var it: { 450 | /** 451 | * An individual test unit 452 | * 453 | * @param {string} Name of Test 454 | * @param {Function} Test 455 | * @param {number} Timeout for the test, in milliseconds. 456 | */ 457 | (name: string, fn?: (done: () => void) => ?Promise, timeout?: number): void, 458 | /** 459 | * Only run this test 460 | * 461 | * @param {string} Name of Test 462 | * @param {Function} Test 463 | * @param {number} Timeout for the test, in milliseconds. 464 | */ 465 | only(name: string, fn?: (done: () => void) => ?Promise, timeout?: number): void, 466 | /** 467 | * Skip running this test 468 | * 469 | * @param {string} Name of Test 470 | * @param {Function} Test 471 | * @param {number} Timeout for the test, in milliseconds. 472 | */ 473 | skip(name: string, fn?: (done: () => void) => ?Promise, timeout?: number): void, 474 | /** 475 | * Run the test concurrently 476 | * 477 | * @param {string} Name of Test 478 | * @param {Function} Test 479 | * @param {number} Timeout for the test, in milliseconds. 480 | */ 481 | concurrent(name: string, fn?: (done: () => void) => ?Promise, timeout?: number): void, 482 | }; 483 | declare function fit( 484 | name: string, 485 | fn: (done: () => void) => ?Promise, 486 | timeout?: number, 487 | ): void; 488 | /** An individual test unit */ 489 | declare var test: typeof it; 490 | /** A disabled group of tests */ 491 | declare var xdescribe: typeof describe; 492 | /** A focused group of tests */ 493 | declare var fdescribe: typeof describe; 494 | /** A disabled individual test */ 495 | declare var xit: typeof it; 496 | /** A disabled individual test */ 497 | declare var xtest: typeof it; 498 | 499 | /** The expect function is used every time you want to test a value */ 500 | declare var expect: { 501 | /** The object that you want to make assertions against */ 502 | (value: any): JestExpectType & JestPromiseType & EnzymeMatchersType, 503 | /** Add additional Jasmine matchers to Jest's roster */ 504 | extend(matchers: { [name: string]: JestMatcher }): void, 505 | /** Add a module that formats application-specific data structures. */ 506 | addSnapshotSerializer(serializer: (input: Object) => string): void, 507 | assertions(expectedAssertions: number): void, 508 | hasAssertions(): void, 509 | any(value: mixed): JestAsymmetricEqualityType, 510 | anything(): void, 511 | arrayContaining(value: Array): void, 512 | objectContaining(value: Object): void, 513 | /** Matches any received string that contains the exact expected string. */ 514 | stringContaining(value: string): void, 515 | stringMatching(value: string | RegExp): void 516 | }; 517 | 518 | // TODO handle return type 519 | // http://jasmine.github.io/2.4/introduction.html#section-Spies 520 | declare function spyOn(value: mixed, method: string): Object; 521 | 522 | /** Holds all functions related to manipulating test runner */ 523 | declare var jest: JestObjectType; 524 | 525 | /** 526 | * The global Jamine object, this is generally not exposed as the public API, 527 | * using features inside here could break in later versions of Jest. 528 | */ 529 | declare var jasmine: { 530 | DEFAULT_TIMEOUT_INTERVAL: number, 531 | any(value: mixed): JestAsymmetricEqualityType, 532 | anything(): void, 533 | arrayContaining(value: Array): void, 534 | clock(): JestClockType, 535 | createSpy(name: string): JestSpyType, 536 | createSpyObj( 537 | baseName: string, 538 | methodNames: Array 539 | ): { [methodName: string]: JestSpyType }, 540 | objectContaining(value: Object): void, 541 | stringMatching(value: string): void 542 | }; 543 | -------------------------------------------------------------------------------- /jest/setup.js: -------------------------------------------------------------------------------- 1 | /** 2 | * setup.js 3 | * react-native-cross-platform-storage 4 | * 5 | * Created by Ferran Negre on 13/12/16. 6 | * Copyright © 2016 Callstack.io. All rights reserved. 7 | * 8 | * @flow 9 | */ 10 | 11 | const createLocalStorage = () => { 12 | const store = {}; 13 | 14 | // $FlowFixMe https://github.com/facebook/flow/issues/285 15 | Object.defineProperties(store, { 16 | getItem: { 17 | get: () => (key: string) => store[key] || null, 18 | }, 19 | setItem: { 20 | get: () => (key: string, value: string) => { 21 | store[key] = value; 22 | }, 23 | }, 24 | removeItem: { 25 | get: () => (key: string) => { 26 | delete store[key]; 27 | }, 28 | }, 29 | clear: { 30 | get: () => () => { 31 | Object.keys(store).forEach((key: string) => { 32 | store.removeItem(key); 33 | }); 34 | }, 35 | }, 36 | }); 37 | 38 | return store; 39 | }; 40 | 41 | window.localStorage = createLocalStorage(); 42 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@callstack/async-storage", 3 | "version": "2.0.3", 4 | "description": "Cross platform storage for React Native and Web, built on top of React Native", 5 | "main": "lib", 6 | "files": [ 7 | "lib/index.android.js", 8 | "lib/index.ios.js", 9 | "lib/index.js", 10 | "lib/index.mobile.js", 11 | "lib/types.js" 12 | ], 13 | "repository": { 14 | "type": "git", 15 | "url": "git+https://github.com/callstack-io/react-native-cross-platform-storage.git" 16 | }, 17 | "bugs": { 18 | "url": "https://github.com/callstack-io/react-native-cross-platform-storage/issues" 19 | }, 20 | "homepage": "https://github.com/callstack-io/react-native-cross-platform-storage#readme", 21 | "author": "Mike Grabowski ", 22 | "license": "MIT", 23 | "scripts": { 24 | "lint": "eslint src", 25 | "flow": "flow src", 26 | "build": "cpx \"src/**/!(*.test.js)\" lib && babel src/index.js -o lib/index.js", 27 | "jest": "jest", 28 | "test": "flow src && eslint src && jest" 29 | }, 30 | "dependencies": { 31 | "lodash.merge": "^4.6.0" 32 | }, 33 | "peerDependencies": { 34 | "@react-native-community/async-storage": "^1.5.0" 35 | }, 36 | "devDependencies": { 37 | "babel-cli": "6.26.0", 38 | "babel-core": "6.26.0", 39 | "babel-eslint": "8.0.0", 40 | "babel-jest": "21.0.2", 41 | "babel-polyfill": "6.26.0", 42 | "babel-preset-env": "1.6.0", 43 | "babel-preset-flow": "6.23.0", 44 | "cpx": "1.5.0", 45 | "eslint": "4.7.0", 46 | "eslint-config-callstack-io": "0.4.1", 47 | "flow-bin": "0.54.1", 48 | "jest": "21.1.0" 49 | }, 50 | "jest": { 51 | "setupFiles": [ 52 | "./jest/setup.js" 53 | ] 54 | }, 55 | "eslintConfig": { 56 | "extends": "callstack-io", 57 | "rules": { 58 | "import/no-unresolved": 0 59 | }, 60 | "settings": { 61 | "import/resolver": { 62 | "node": { 63 | "extensions": [ 64 | ".js", 65 | ".android.js", 66 | ".ios.js" 67 | ] 68 | } 69 | } 70 | } 71 | } 72 | } 73 | -------------------------------------------------------------------------------- /src/__tests__/index.test.js: -------------------------------------------------------------------------------- 1 | /** 2 | * index-test.js 3 | * react-native-cross-platform-storage 4 | * 5 | * Created by Ferran Negre on 13/12/16. 6 | * Copyright © 2016 Callstack.io. All rights reserved. 7 | * 8 | * @flow 9 | */ 10 | 11 | import AsyncStorage from '../'; 12 | 13 | describe('AsyncStorage promises', () => { 14 | beforeEach(async () => { 15 | AsyncStorage.clear(); 16 | }); 17 | 18 | test('setItem & getItem', async () => { 19 | await AsyncStorage.setItem('k1', 'v1'); 20 | expect(await AsyncStorage.getItem('k1')).toEqual('v1'); 21 | }); 22 | 23 | test('removeItem', async () => { 24 | await AsyncStorage.setItem('k1', 'v1'); 25 | await AsyncStorage.removeItem('k1'); 26 | 27 | expect(await AsyncStorage.getItem('k1')).toBeNull(); 28 | }); 29 | 30 | test('multiSet & multiGet', async () => { 31 | const arr = [['k1', 'v1'], ['k2', 'v2']]; 32 | await AsyncStorage.multiSet(arr); 33 | 34 | expect(await AsyncStorage.multiGet(['k1', 'k2'])).toEqual(arr); 35 | }); 36 | 37 | test('getAllKeys', async () => { 38 | const arr = [['k1', 'v1'], ['k2', 'v2']]; 39 | await AsyncStorage.multiSet(arr); 40 | const keys = await AsyncStorage.getAllKeys(); 41 | 42 | expect(keys.length).toBe(2); 43 | }); 44 | 45 | test('clear', async () => { 46 | const arr = [['k1', 'v1'], ['k2', 'v2']]; 47 | await AsyncStorage.multiSet(arr); 48 | await AsyncStorage.clear(); 49 | const keys = await AsyncStorage.getAllKeys(); 50 | 51 | expect(keys.length).toBe(0); 52 | }); 53 | 54 | test('multiRemove', async () => { 55 | await AsyncStorage.setItem('k1', 'v1'); 56 | await AsyncStorage.setItem('k2', 'v2'); 57 | await AsyncStorage.setItem('k3', 'v3'); 58 | await AsyncStorage.multiRemove(['k1', 'k3']); 59 | 60 | expect(await AsyncStorage.getAllKeys()).toEqual(['k2']); 61 | }); 62 | 63 | test('mergeItem', async () => { 64 | await AsyncStorage.setItem('k1', JSON.stringify({ v1: 'foo' })); 65 | await AsyncStorage.mergeItem('k1', JSON.stringify({ v2: 'bar' })); 66 | 67 | expect(await AsyncStorage.getItem('k1')).toEqual( 68 | JSON.stringify({ 69 | v1: 'foo', 70 | v2: 'bar', 71 | }) 72 | ); 73 | }); 74 | 75 | test('multiMerge', async () => { 76 | await AsyncStorage.setItem('k1', JSON.stringify({ v1: 'foo' })); 77 | await AsyncStorage.setItem('k2', JSON.stringify({ v1: 'foo' })); 78 | await AsyncStorage.multiMerge([ 79 | ['k1', JSON.stringify({ v2: 'bar' })], 80 | ['k2', JSON.stringify({ v2: 'bar' })], 81 | ]); 82 | 83 | expect(await AsyncStorage.getItem('k1')).toEqual( 84 | JSON.stringify({ 85 | v1: 'foo', 86 | v2: 'bar', 87 | }) 88 | ); 89 | expect(await AsyncStorage.getItem('k2')).toEqual( 90 | JSON.stringify({ 91 | v1: 'foo', 92 | v2: 'bar', 93 | }) 94 | ); 95 | }); 96 | }); 97 | 98 | describe('AsyncStorage callbacks', () => { 99 | beforeEach(async () => { 100 | AsyncStorage.clear(); 101 | }); 102 | 103 | test('setItem', done => { 104 | AsyncStorage.setItem('k1', 'v1', err => { 105 | expect(err).toBeNull(); 106 | done(); 107 | }); 108 | }); 109 | 110 | test('getItem', async done => { 111 | const testValue = JSON.stringify({ v1: 'foo' }); 112 | await AsyncStorage.setItem('k1', testValue); 113 | 114 | AsyncStorage.getItem('k1', (err, value) => { 115 | expect(err).toBeNull(); 116 | expect(value).toEqual(testValue); 117 | done(); 118 | }); 119 | }); 120 | 121 | test('removeItem', async done => { 122 | await AsyncStorage.setItem('k1', JSON.stringify({ v1: 'foo' })); 123 | 124 | AsyncStorage.removeItem('k1', (err, value) => { 125 | expect(err).toBeNull(); 126 | expect(value).toEqual(); 127 | done(); 128 | }); 129 | }); 130 | 131 | test('removeItem', async done => { 132 | await AsyncStorage.setItem('k1', JSON.stringify({ v1: 'foo' })); 133 | await AsyncStorage.setItem('k2', JSON.stringify({ v2: 'boo' })); 134 | 135 | AsyncStorage.getAllKeys((err, value) => { 136 | expect(err).toBeNull(); 137 | expect(value).toEqual(['k1', 'k2']); 138 | done(); 139 | }); 140 | }); 141 | }); 142 | 143 | describe.skip('AsyncStorage errors', () => { 144 | beforeEach(async () => { 145 | AsyncStorage.clear(); 146 | }); 147 | // TODO 148 | }); 149 | -------------------------------------------------------------------------------- /src/index.android.js: -------------------------------------------------------------------------------- 1 | export { default } from './index.mobile'; 2 | -------------------------------------------------------------------------------- /src/index.ios.js: -------------------------------------------------------------------------------- 1 | export { default } from './index.mobile'; 2 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * index.js 3 | * react-native-cross-platform-storage 4 | * 5 | * Created by Mike Grabowski on 12/12/16. 6 | * Copyright © 2016 Callstack.io. All rights reserved. 7 | * 8 | * @flow 9 | */ 10 | 11 | import merge from 'lodash.merge'; 12 | 13 | import type { TAsyncStorage, Callback } from './types'; 14 | 15 | const API: TAsyncStorage = { 16 | getItem: (key, cb?: Callback) => 17 | API.multiGet([key]) 18 | .then(values => values[0][1]) 19 | .then(data => { 20 | cb && cb(null, data); 21 | return data; 22 | }) 23 | .catch(err => { 24 | cb && cb(err, null); 25 | return err; 26 | }), 27 | setItem: (key, value, cb?: Callback) => 28 | API.multiSet([[key, value]]) 29 | .then(data => { 30 | cb && cb(null, data); 31 | return data; 32 | }) 33 | .catch(err => { 34 | cb && cb(err, null); 35 | return err; 36 | }), 37 | getAllKeys: (cb?: Callback) => 38 | Promise.resolve(Object.keys(localStorage)) 39 | .then(data => { 40 | cb && cb(null, data); 41 | return data; 42 | }) 43 | .catch(err => { 44 | cb && cb(err, null); 45 | return err; 46 | }), 47 | removeItem: (key, cb?: Callback) => 48 | API.multiRemove([key]) 49 | .then(() => { 50 | cb && cb(null); 51 | }) 52 | .catch(err => { 53 | cb && cb(err, null); 54 | }), 55 | clear: () => 56 | new Promise(resolve => { 57 | window.localStorage.clear(); 58 | resolve(); 59 | }), 60 | mergeItem: (key, value) => API.multiMerge([[key, value]]), 61 | multiGet: keys => 62 | new Promise(resolve => { 63 | const keyValues = keys.reduce( 64 | (acc, key) => acc.concat([[key, localStorage.getItem(key)]]), 65 | [] 66 | ); 67 | resolve(keyValues); 68 | }), 69 | multiSet: kvPairs => 70 | new Promise((resolve, reject) => { 71 | const errors = []; 72 | 73 | kvPairs.forEach(([key, value]) => { 74 | try { 75 | localStorage.setItem(key, value); 76 | } catch (error) { 77 | errors.push(error); 78 | } 79 | }); 80 | 81 | return errors.length > 0 ? reject(errors) : resolve(); 82 | }), 83 | multiMerge: kvPairs => 84 | new Promise((resolve, reject) => { 85 | const errors = []; 86 | 87 | kvPairs.forEach(([key, value]) => { 88 | const rawValue = localStorage.getItem(key); 89 | 90 | if (!rawValue) { 91 | return; 92 | } 93 | 94 | try { 95 | localStorage.setItem( 96 | key, 97 | JSON.stringify(merge(JSON.parse(rawValue), JSON.parse(value))) 98 | ); 99 | } catch (error) { 100 | errors.push(error); 101 | } 102 | }); 103 | 104 | return errors.length > 0 ? reject(errors) : resolve(); 105 | }), 106 | multiRemove: keys => 107 | new Promise(resolve => { 108 | keys.forEach(key => window.localStorage.removeItem(key)); 109 | resolve(); 110 | }), 111 | flushGetRequests: () => { 112 | // eslint-disable-next-line 113 | console.warn('AsyncStorage.flushGetRequests: Not supported on `web`'); 114 | }, 115 | }; 116 | 117 | export default API; 118 | -------------------------------------------------------------------------------- /src/index.mobile.js: -------------------------------------------------------------------------------- 1 | /** 2 | * index.mobile.js 3 | * react-native-cross-platform-storage 4 | * 5 | * Created by Mike Grabowski on 12/12/16. 6 | * Copyright © 2016 Callstack.io. All rights reserved. 7 | * 8 | * @flow 9 | */ 10 | 11 | import AsyncStorage from '@react-native-community/async-storage'; 12 | import type { TAsyncStorage } from './types'; 13 | 14 | const API: TAsyncStorage = { 15 | getItem: (key, cb) => AsyncStorage.getItem(key, cb), 16 | setItem: (key, value, cb) => AsyncStorage.setItem(key, value, cb), 17 | removeItem: (key, cb) => AsyncStorage.removeItem(key, cb), 18 | getAllKeys: cb => AsyncStorage.getAllKeys(cb), 19 | 20 | clear: () => AsyncStorage.clear(), 21 | multiGet: keys => AsyncStorage.multiGet(keys), 22 | mergeItem: key => AsyncStorage.mergeItem(key), 23 | flushGetRequests: () => AsyncStorage.flushGetRequests(), 24 | multiSet: kvPairs => AsyncStorage.multiSet(kvPairs), 25 | multiRemove: keys => AsyncStorage.multiRemove(keys), 26 | multiMerge: kvPairs => AsyncStorage.multiMerge(kvPairs), 27 | }; 28 | 29 | export default API; 30 | -------------------------------------------------------------------------------- /src/types.js: -------------------------------------------------------------------------------- 1 | /** 2 | * types.js 3 | * react-native-cross-platform-storage 4 | * 5 | * Created by Mike Grabowski on 12/12/16. 6 | * Copyright © 2016 Callstack.io. All rights reserved. 7 | * 8 | * @flow 9 | */ 10 | 11 | export type Callback = (err: ?Error, value: any) => void; 12 | 13 | /** 14 | * Describes `AsyncStorage` interface as in React Native 15 | */ 16 | export type TAsyncStorage = {| 17 | setItem: (key: string, value: string, cb?: Callback) => Promise, 18 | getItem: (key: string, cb?: Callback) => Promise, 19 | getAllKeys: (cb?: Callback) => Promise>, 20 | removeItem: (key: string, cb?: Callback) => Promise, 21 | 22 | clear: () => Promise, 23 | multiGet: (keys: Array) => Promise>, 24 | multiSet: (kvPairs: Array<[string, string]>) => Promise, 25 | multiMerge: (kvPairs: Array<[string, string]>) => Promise, 26 | multiRemove: (keys: Array) => Promise, 27 | mergeItem: (key: string, value: string) => Promise, 28 | flushGetRequests: () => void, 29 | |}; 30 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abab@^1.0.3: 6 | version "1.0.3" 7 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.3.tgz#b81de5f7274ec4e756d797cd834f303642724e5d" 8 | 9 | abbrev@1: 10 | version "1.1.0" 11 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 12 | 13 | acorn-globals@^3.1.0: 14 | version "3.1.0" 15 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 16 | dependencies: 17 | acorn "^4.0.4" 18 | 19 | acorn-jsx@^3.0.0: 20 | version "3.0.1" 21 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 22 | dependencies: 23 | acorn "^3.0.4" 24 | 25 | acorn@^3.0.4: 26 | version "3.3.0" 27 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 28 | 29 | acorn@^4.0.4: 30 | version "4.0.13" 31 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 32 | 33 | acorn@^5.1.1: 34 | version "5.1.2" 35 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.1.2.tgz#911cb53e036807cf0fa778dc5d370fbd864246d7" 36 | 37 | ajv-keywords@^1.0.0: 38 | version "1.5.1" 39 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 40 | 41 | ajv@^4.7.0, ajv@^4.9.1: 42 | version "4.11.8" 43 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 44 | dependencies: 45 | co "^4.6.0" 46 | json-stable-stringify "^1.0.1" 47 | 48 | ajv@^5.2.0: 49 | version "5.2.2" 50 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.2.2.tgz#47c68d69e86f5d953103b0074a9430dc63da5e39" 51 | dependencies: 52 | co "^4.6.0" 53 | fast-deep-equal "^1.0.0" 54 | json-schema-traverse "^0.3.0" 55 | json-stable-stringify "^1.0.1" 56 | 57 | align-text@^0.1.1, align-text@^0.1.3: 58 | version "0.1.4" 59 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 60 | dependencies: 61 | kind-of "^3.0.2" 62 | longest "^1.0.1" 63 | repeat-string "^1.5.2" 64 | 65 | amdefine@>=0.0.4: 66 | version "1.0.1" 67 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 68 | 69 | ansi-escapes@^2.0.0: 70 | version "2.0.0" 71 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-2.0.0.tgz#5bae52be424878dd9783e8910e3fc2922e83c81b" 72 | 73 | ansi-escapes@^3.0.0: 74 | version "3.0.0" 75 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92" 76 | 77 | ansi-regex@^2.0.0: 78 | version "2.1.1" 79 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 80 | 81 | ansi-regex@^3.0.0: 82 | version "3.0.0" 83 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 84 | 85 | ansi-styles@^2.2.1: 86 | version "2.2.1" 87 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 88 | 89 | ansi-styles@^3.1.0, ansi-styles@^3.2.0: 90 | version "3.2.0" 91 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 92 | dependencies: 93 | color-convert "^1.9.0" 94 | 95 | anymatch@^1.3.0: 96 | version "1.3.2" 97 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 98 | dependencies: 99 | micromatch "^2.1.5" 100 | normalize-path "^2.0.0" 101 | 102 | append-transform@^0.4.0: 103 | version "0.4.0" 104 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 105 | dependencies: 106 | default-require-extensions "^1.0.0" 107 | 108 | aproba@^1.0.3: 109 | version "1.1.2" 110 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.2.tgz#45c6629094de4e96f693ef7eab74ae079c240fc1" 111 | 112 | are-we-there-yet@~1.1.2: 113 | version "1.1.4" 114 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 115 | dependencies: 116 | delegates "^1.0.0" 117 | readable-stream "^2.0.6" 118 | 119 | argparse@^1.0.7: 120 | version "1.0.9" 121 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 122 | dependencies: 123 | sprintf-js "~1.0.2" 124 | 125 | aria-query@^0.7.0: 126 | version "0.7.0" 127 | resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-0.7.0.tgz#4af10a1e61573ddea0cf3b99b51c52c05b424d24" 128 | dependencies: 129 | ast-types-flow "0.0.7" 130 | 131 | arr-diff@^2.0.0: 132 | version "2.0.0" 133 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 134 | dependencies: 135 | arr-flatten "^1.0.1" 136 | 137 | arr-flatten@^1.0.1: 138 | version "1.1.0" 139 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 140 | 141 | array-equal@^1.0.0: 142 | version "1.0.0" 143 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 144 | 145 | array-filter@~0.0.0: 146 | version "0.0.1" 147 | resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" 148 | 149 | array-includes@^3.0.3: 150 | version "3.0.3" 151 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.0.3.tgz#184b48f62d92d7452bb31b323165c7f8bd02266d" 152 | dependencies: 153 | define-properties "^1.1.2" 154 | es-abstract "^1.7.0" 155 | 156 | array-map@~0.0.0: 157 | version "0.0.0" 158 | resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" 159 | 160 | array-reduce@~0.0.0: 161 | version "0.0.0" 162 | resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b" 163 | 164 | array-union@^1.0.1: 165 | version "1.0.2" 166 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 167 | dependencies: 168 | array-uniq "^1.0.1" 169 | 170 | array-uniq@^1.0.1: 171 | version "1.0.3" 172 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 173 | 174 | array-unique@^0.2.1: 175 | version "0.2.1" 176 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 177 | 178 | arrify@^1.0.0, arrify@^1.0.1: 179 | version "1.0.1" 180 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 181 | 182 | asap@~2.0.3: 183 | version "2.0.6" 184 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" 185 | 186 | asn1@~0.2.3: 187 | version "0.2.3" 188 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 189 | 190 | assert-plus@1.0.0, assert-plus@^1.0.0: 191 | version "1.0.0" 192 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 193 | 194 | assert-plus@^0.2.0: 195 | version "0.2.0" 196 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 197 | 198 | ast-types-flow@0.0.7: 199 | version "0.0.7" 200 | resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" 201 | 202 | astral-regex@^1.0.0: 203 | version "1.0.0" 204 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 205 | 206 | async-each@^1.0.0: 207 | version "1.0.1" 208 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 209 | 210 | async@^1.4.0: 211 | version "1.5.2" 212 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 213 | 214 | async@^2.1.4: 215 | version "2.5.0" 216 | resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d" 217 | dependencies: 218 | lodash "^4.14.0" 219 | 220 | asynckit@^0.4.0: 221 | version "0.4.0" 222 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 223 | 224 | aws-sign2@~0.6.0: 225 | version "0.6.0" 226 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 227 | 228 | aws4@^1.2.1: 229 | version "1.6.0" 230 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 231 | 232 | axobject-query@^0.1.0: 233 | version "0.1.0" 234 | resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-0.1.0.tgz#62f59dbc59c9f9242759ca349960e7a2fe3c36c0" 235 | dependencies: 236 | ast-types-flow "0.0.7" 237 | 238 | babel-cli@6.26.0: 239 | version "6.26.0" 240 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1" 241 | dependencies: 242 | babel-core "^6.26.0" 243 | babel-polyfill "^6.26.0" 244 | babel-register "^6.26.0" 245 | babel-runtime "^6.26.0" 246 | commander "^2.11.0" 247 | convert-source-map "^1.5.0" 248 | fs-readdir-recursive "^1.0.0" 249 | glob "^7.1.2" 250 | lodash "^4.17.4" 251 | output-file-sync "^1.1.2" 252 | path-is-absolute "^1.0.1" 253 | slash "^1.0.0" 254 | source-map "^0.5.6" 255 | v8flags "^2.1.1" 256 | optionalDependencies: 257 | chokidar "^1.6.1" 258 | 259 | babel-code-frame@7.0.0-beta.0: 260 | version "7.0.0-beta.0" 261 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-7.0.0-beta.0.tgz#418a7b5f3f7dc9a4670e61b1158b4c5661bec98d" 262 | dependencies: 263 | chalk "^2.0.0" 264 | esutils "^2.0.2" 265 | js-tokens "^3.0.0" 266 | 267 | babel-code-frame@^6.22.0, babel-code-frame@^6.26.0: 268 | version "6.26.0" 269 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 270 | dependencies: 271 | chalk "^1.1.3" 272 | esutils "^2.0.2" 273 | js-tokens "^3.0.2" 274 | 275 | babel-core@6.26.0, babel-core@^6.0.0, babel-core@^6.26.0: 276 | version "6.26.0" 277 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 278 | dependencies: 279 | babel-code-frame "^6.26.0" 280 | babel-generator "^6.26.0" 281 | babel-helpers "^6.24.1" 282 | babel-messages "^6.23.0" 283 | babel-register "^6.26.0" 284 | babel-runtime "^6.26.0" 285 | babel-template "^6.26.0" 286 | babel-traverse "^6.26.0" 287 | babel-types "^6.26.0" 288 | babylon "^6.18.0" 289 | convert-source-map "^1.5.0" 290 | debug "^2.6.8" 291 | json5 "^0.5.1" 292 | lodash "^4.17.4" 293 | minimatch "^3.0.4" 294 | path-is-absolute "^1.0.1" 295 | private "^0.1.7" 296 | slash "^1.0.0" 297 | source-map "^0.5.6" 298 | 299 | babel-eslint@8.0.0: 300 | version "8.0.0" 301 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-8.0.0.tgz#ce06f385bdfb5b6d7e603f06222f891abd14c240" 302 | dependencies: 303 | babel-code-frame "7.0.0-beta.0" 304 | babel-traverse "7.0.0-beta.0" 305 | babel-types "7.0.0-beta.0" 306 | babylon "7.0.0-beta.22" 307 | 308 | babel-eslint@^7.2.3: 309 | version "7.2.3" 310 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.2.3.tgz#b2fe2d80126470f5c19442dc757253a897710827" 311 | dependencies: 312 | babel-code-frame "^6.22.0" 313 | babel-traverse "^6.23.1" 314 | babel-types "^6.23.0" 315 | babylon "^6.17.0" 316 | 317 | babel-generator@^6.18.0, babel-generator@^6.26.0: 318 | version "6.26.0" 319 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 320 | dependencies: 321 | babel-messages "^6.23.0" 322 | babel-runtime "^6.26.0" 323 | babel-types "^6.26.0" 324 | detect-indent "^4.0.0" 325 | jsesc "^1.3.0" 326 | lodash "^4.17.4" 327 | source-map "^0.5.6" 328 | trim-right "^1.0.1" 329 | 330 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 331 | version "6.24.1" 332 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 333 | dependencies: 334 | babel-helper-explode-assignable-expression "^6.24.1" 335 | babel-runtime "^6.22.0" 336 | babel-types "^6.24.1" 337 | 338 | babel-helper-call-delegate@^6.24.1: 339 | version "6.24.1" 340 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 341 | dependencies: 342 | babel-helper-hoist-variables "^6.24.1" 343 | babel-runtime "^6.22.0" 344 | babel-traverse "^6.24.1" 345 | babel-types "^6.24.1" 346 | 347 | babel-helper-define-map@^6.24.1: 348 | version "6.26.0" 349 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 350 | dependencies: 351 | babel-helper-function-name "^6.24.1" 352 | babel-runtime "^6.26.0" 353 | babel-types "^6.26.0" 354 | lodash "^4.17.4" 355 | 356 | babel-helper-explode-assignable-expression@^6.24.1: 357 | version "6.24.1" 358 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 359 | dependencies: 360 | babel-runtime "^6.22.0" 361 | babel-traverse "^6.24.1" 362 | babel-types "^6.24.1" 363 | 364 | babel-helper-function-name@7.0.0-beta.0: 365 | version "7.0.0-beta.0" 366 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-7.0.0-beta.0.tgz#d1b6779b647e5c5c31ebeb05e13b998e4d352d56" 367 | dependencies: 368 | babel-helper-get-function-arity "7.0.0-beta.0" 369 | babel-template "7.0.0-beta.0" 370 | babel-traverse "7.0.0-beta.0" 371 | babel-types "7.0.0-beta.0" 372 | 373 | babel-helper-function-name@^6.24.1: 374 | version "6.24.1" 375 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 376 | dependencies: 377 | babel-helper-get-function-arity "^6.24.1" 378 | babel-runtime "^6.22.0" 379 | babel-template "^6.24.1" 380 | babel-traverse "^6.24.1" 381 | babel-types "^6.24.1" 382 | 383 | babel-helper-get-function-arity@7.0.0-beta.0: 384 | version "7.0.0-beta.0" 385 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-7.0.0-beta.0.tgz#9d1ab7213bb5efe1ef1638a8ea1489969b5a8b6e" 386 | dependencies: 387 | babel-types "7.0.0-beta.0" 388 | 389 | babel-helper-get-function-arity@^6.24.1: 390 | version "6.24.1" 391 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 392 | dependencies: 393 | babel-runtime "^6.22.0" 394 | babel-types "^6.24.1" 395 | 396 | babel-helper-hoist-variables@^6.24.1: 397 | version "6.24.1" 398 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 399 | dependencies: 400 | babel-runtime "^6.22.0" 401 | babel-types "^6.24.1" 402 | 403 | babel-helper-optimise-call-expression@^6.24.1: 404 | version "6.24.1" 405 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 406 | dependencies: 407 | babel-runtime "^6.22.0" 408 | babel-types "^6.24.1" 409 | 410 | babel-helper-regex@^6.24.1: 411 | version "6.26.0" 412 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 413 | dependencies: 414 | babel-runtime "^6.26.0" 415 | babel-types "^6.26.0" 416 | lodash "^4.17.4" 417 | 418 | babel-helper-remap-async-to-generator@^6.24.1: 419 | version "6.24.1" 420 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 421 | dependencies: 422 | babel-helper-function-name "^6.24.1" 423 | babel-runtime "^6.22.0" 424 | babel-template "^6.24.1" 425 | babel-traverse "^6.24.1" 426 | babel-types "^6.24.1" 427 | 428 | babel-helper-replace-supers@^6.24.1: 429 | version "6.24.1" 430 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 431 | dependencies: 432 | babel-helper-optimise-call-expression "^6.24.1" 433 | babel-messages "^6.23.0" 434 | babel-runtime "^6.22.0" 435 | babel-template "^6.24.1" 436 | babel-traverse "^6.24.1" 437 | babel-types "^6.24.1" 438 | 439 | babel-helpers@^6.24.1: 440 | version "6.24.1" 441 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 442 | dependencies: 443 | babel-runtime "^6.22.0" 444 | babel-template "^6.24.1" 445 | 446 | babel-jest@21.0.2, babel-jest@^21.0.2: 447 | version "21.0.2" 448 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-21.0.2.tgz#817ea52c23f1c6c4b684d6960968416b6a9e9c6c" 449 | dependencies: 450 | babel-plugin-istanbul "^4.0.0" 451 | babel-preset-jest "^21.0.2" 452 | 453 | babel-messages@7.0.0-beta.0: 454 | version "7.0.0-beta.0" 455 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-7.0.0-beta.0.tgz#6df01296e49fc8fbd0637394326a167f36da817b" 456 | 457 | babel-messages@^6.23.0: 458 | version "6.23.0" 459 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 460 | dependencies: 461 | babel-runtime "^6.22.0" 462 | 463 | babel-plugin-check-es2015-constants@^6.22.0: 464 | version "6.22.0" 465 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 466 | dependencies: 467 | babel-runtime "^6.22.0" 468 | 469 | babel-plugin-istanbul@^4.0.0: 470 | version "4.1.4" 471 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.4.tgz#18dde84bf3ce329fddf3f4103fae921456d8e587" 472 | dependencies: 473 | find-up "^2.1.0" 474 | istanbul-lib-instrument "^1.7.2" 475 | test-exclude "^4.1.1" 476 | 477 | babel-plugin-jest-hoist@^21.0.2: 478 | version "21.0.2" 479 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-21.0.2.tgz#cfdce5bca40d772a056cb8528ad159c7bb4bb03d" 480 | 481 | babel-plugin-syntax-async-functions@^6.8.0: 482 | version "6.13.0" 483 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 484 | 485 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 486 | version "6.13.0" 487 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 488 | 489 | babel-plugin-syntax-flow@^6.18.0: 490 | version "6.18.0" 491 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 492 | 493 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 494 | version "6.22.0" 495 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 496 | 497 | babel-plugin-transform-async-to-generator@^6.22.0: 498 | version "6.24.1" 499 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 500 | dependencies: 501 | babel-helper-remap-async-to-generator "^6.24.1" 502 | babel-plugin-syntax-async-functions "^6.8.0" 503 | babel-runtime "^6.22.0" 504 | 505 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 506 | version "6.22.0" 507 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 508 | dependencies: 509 | babel-runtime "^6.22.0" 510 | 511 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 512 | version "6.22.0" 513 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 514 | dependencies: 515 | babel-runtime "^6.22.0" 516 | 517 | babel-plugin-transform-es2015-block-scoping@^6.23.0: 518 | version "6.26.0" 519 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 520 | dependencies: 521 | babel-runtime "^6.26.0" 522 | babel-template "^6.26.0" 523 | babel-traverse "^6.26.0" 524 | babel-types "^6.26.0" 525 | lodash "^4.17.4" 526 | 527 | babel-plugin-transform-es2015-classes@^6.23.0: 528 | version "6.24.1" 529 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 530 | dependencies: 531 | babel-helper-define-map "^6.24.1" 532 | babel-helper-function-name "^6.24.1" 533 | babel-helper-optimise-call-expression "^6.24.1" 534 | babel-helper-replace-supers "^6.24.1" 535 | babel-messages "^6.23.0" 536 | babel-runtime "^6.22.0" 537 | babel-template "^6.24.1" 538 | babel-traverse "^6.24.1" 539 | babel-types "^6.24.1" 540 | 541 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 542 | version "6.24.1" 543 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 544 | dependencies: 545 | babel-runtime "^6.22.0" 546 | babel-template "^6.24.1" 547 | 548 | babel-plugin-transform-es2015-destructuring@^6.23.0: 549 | version "6.23.0" 550 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 551 | dependencies: 552 | babel-runtime "^6.22.0" 553 | 554 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 555 | version "6.24.1" 556 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 557 | dependencies: 558 | babel-runtime "^6.22.0" 559 | babel-types "^6.24.1" 560 | 561 | babel-plugin-transform-es2015-for-of@^6.23.0: 562 | version "6.23.0" 563 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 564 | dependencies: 565 | babel-runtime "^6.22.0" 566 | 567 | babel-plugin-transform-es2015-function-name@^6.22.0: 568 | version "6.24.1" 569 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 570 | dependencies: 571 | babel-helper-function-name "^6.24.1" 572 | babel-runtime "^6.22.0" 573 | babel-types "^6.24.1" 574 | 575 | babel-plugin-transform-es2015-literals@^6.22.0: 576 | version "6.22.0" 577 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 578 | dependencies: 579 | babel-runtime "^6.22.0" 580 | 581 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 582 | version "6.24.1" 583 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 584 | dependencies: 585 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 586 | babel-runtime "^6.22.0" 587 | babel-template "^6.24.1" 588 | 589 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 590 | version "6.26.0" 591 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" 592 | dependencies: 593 | babel-plugin-transform-strict-mode "^6.24.1" 594 | babel-runtime "^6.26.0" 595 | babel-template "^6.26.0" 596 | babel-types "^6.26.0" 597 | 598 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0: 599 | version "6.24.1" 600 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 601 | dependencies: 602 | babel-helper-hoist-variables "^6.24.1" 603 | babel-runtime "^6.22.0" 604 | babel-template "^6.24.1" 605 | 606 | babel-plugin-transform-es2015-modules-umd@^6.23.0: 607 | version "6.24.1" 608 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 609 | dependencies: 610 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 611 | babel-runtime "^6.22.0" 612 | babel-template "^6.24.1" 613 | 614 | babel-plugin-transform-es2015-object-super@^6.22.0: 615 | version "6.24.1" 616 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 617 | dependencies: 618 | babel-helper-replace-supers "^6.24.1" 619 | babel-runtime "^6.22.0" 620 | 621 | babel-plugin-transform-es2015-parameters@^6.23.0: 622 | version "6.24.1" 623 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 624 | dependencies: 625 | babel-helper-call-delegate "^6.24.1" 626 | babel-helper-get-function-arity "^6.24.1" 627 | babel-runtime "^6.22.0" 628 | babel-template "^6.24.1" 629 | babel-traverse "^6.24.1" 630 | babel-types "^6.24.1" 631 | 632 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 633 | version "6.24.1" 634 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 635 | dependencies: 636 | babel-runtime "^6.22.0" 637 | babel-types "^6.24.1" 638 | 639 | babel-plugin-transform-es2015-spread@^6.22.0: 640 | version "6.22.0" 641 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 642 | dependencies: 643 | babel-runtime "^6.22.0" 644 | 645 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 646 | version "6.24.1" 647 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 648 | dependencies: 649 | babel-helper-regex "^6.24.1" 650 | babel-runtime "^6.22.0" 651 | babel-types "^6.24.1" 652 | 653 | babel-plugin-transform-es2015-template-literals@^6.22.0: 654 | version "6.22.0" 655 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 656 | dependencies: 657 | babel-runtime "^6.22.0" 658 | 659 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 660 | version "6.23.0" 661 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 662 | dependencies: 663 | babel-runtime "^6.22.0" 664 | 665 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 666 | version "6.24.1" 667 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 668 | dependencies: 669 | babel-helper-regex "^6.24.1" 670 | babel-runtime "^6.22.0" 671 | regexpu-core "^2.0.0" 672 | 673 | babel-plugin-transform-exponentiation-operator@^6.22.0: 674 | version "6.24.1" 675 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 676 | dependencies: 677 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 678 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 679 | babel-runtime "^6.22.0" 680 | 681 | babel-plugin-transform-flow-strip-types@^6.22.0: 682 | version "6.22.0" 683 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" 684 | dependencies: 685 | babel-plugin-syntax-flow "^6.18.0" 686 | babel-runtime "^6.22.0" 687 | 688 | babel-plugin-transform-regenerator@^6.22.0: 689 | version "6.26.0" 690 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 691 | dependencies: 692 | regenerator-transform "^0.10.0" 693 | 694 | babel-plugin-transform-strict-mode@^6.24.1: 695 | version "6.24.1" 696 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 697 | dependencies: 698 | babel-runtime "^6.22.0" 699 | babel-types "^6.24.1" 700 | 701 | babel-polyfill@6.26.0, babel-polyfill@^6.26.0: 702 | version "6.26.0" 703 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" 704 | dependencies: 705 | babel-runtime "^6.26.0" 706 | core-js "^2.5.0" 707 | regenerator-runtime "^0.10.5" 708 | 709 | babel-preset-env@1.6.0: 710 | version "1.6.0" 711 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.6.0.tgz#2de1c782a780a0a5d605d199c957596da43c44e4" 712 | dependencies: 713 | babel-plugin-check-es2015-constants "^6.22.0" 714 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 715 | babel-plugin-transform-async-to-generator "^6.22.0" 716 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 717 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 718 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 719 | babel-plugin-transform-es2015-classes "^6.23.0" 720 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 721 | babel-plugin-transform-es2015-destructuring "^6.23.0" 722 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 723 | babel-plugin-transform-es2015-for-of "^6.23.0" 724 | babel-plugin-transform-es2015-function-name "^6.22.0" 725 | babel-plugin-transform-es2015-literals "^6.22.0" 726 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 727 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 728 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 729 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 730 | babel-plugin-transform-es2015-object-super "^6.22.0" 731 | babel-plugin-transform-es2015-parameters "^6.23.0" 732 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 733 | babel-plugin-transform-es2015-spread "^6.22.0" 734 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 735 | babel-plugin-transform-es2015-template-literals "^6.22.0" 736 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 737 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 738 | babel-plugin-transform-exponentiation-operator "^6.22.0" 739 | babel-plugin-transform-regenerator "^6.22.0" 740 | browserslist "^2.1.2" 741 | invariant "^2.2.2" 742 | semver "^5.3.0" 743 | 744 | babel-preset-flow@6.23.0: 745 | version "6.23.0" 746 | resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d" 747 | dependencies: 748 | babel-plugin-transform-flow-strip-types "^6.22.0" 749 | 750 | babel-preset-jest@^21.0.2: 751 | version "21.0.2" 752 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-21.0.2.tgz#9db25def2329f49eace3f5ea0de42a0b898d12cc" 753 | dependencies: 754 | babel-plugin-jest-hoist "^21.0.2" 755 | 756 | babel-register@^6.26.0: 757 | version "6.26.0" 758 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 759 | dependencies: 760 | babel-core "^6.26.0" 761 | babel-runtime "^6.26.0" 762 | core-js "^2.5.0" 763 | home-or-tmp "^2.0.0" 764 | lodash "^4.17.4" 765 | mkdirp "^0.5.1" 766 | source-map-support "^0.4.15" 767 | 768 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0, babel-runtime@^6.9.2: 769 | version "6.26.0" 770 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 771 | dependencies: 772 | core-js "^2.4.0" 773 | regenerator-runtime "^0.11.0" 774 | 775 | babel-template@7.0.0-beta.0: 776 | version "7.0.0-beta.0" 777 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-7.0.0-beta.0.tgz#85083cf9e4395d5e48bf5154d7a8d6991cafecfb" 778 | dependencies: 779 | babel-traverse "7.0.0-beta.0" 780 | babel-types "7.0.0-beta.0" 781 | babylon "7.0.0-beta.22" 782 | lodash "^4.2.0" 783 | 784 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0: 785 | version "6.26.0" 786 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 787 | dependencies: 788 | babel-runtime "^6.26.0" 789 | babel-traverse "^6.26.0" 790 | babel-types "^6.26.0" 791 | babylon "^6.18.0" 792 | lodash "^4.17.4" 793 | 794 | babel-traverse@7.0.0-beta.0: 795 | version "7.0.0-beta.0" 796 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-7.0.0-beta.0.tgz#da14be9b762f62a2f060db464eaafdd8cd072a41" 797 | dependencies: 798 | babel-code-frame "7.0.0-beta.0" 799 | babel-helper-function-name "7.0.0-beta.0" 800 | babel-messages "7.0.0-beta.0" 801 | babel-types "7.0.0-beta.0" 802 | babylon "7.0.0-beta.22" 803 | debug "^3.0.1" 804 | globals "^10.0.0" 805 | invariant "^2.2.0" 806 | lodash "^4.2.0" 807 | 808 | babel-traverse@^6.18.0, babel-traverse@^6.23.1, babel-traverse@^6.24.1, babel-traverse@^6.26.0: 809 | version "6.26.0" 810 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 811 | dependencies: 812 | babel-code-frame "^6.26.0" 813 | babel-messages "^6.23.0" 814 | babel-runtime "^6.26.0" 815 | babel-types "^6.26.0" 816 | babylon "^6.18.0" 817 | debug "^2.6.8" 818 | globals "^9.18.0" 819 | invariant "^2.2.2" 820 | lodash "^4.17.4" 821 | 822 | babel-types@7.0.0-beta.0: 823 | version "7.0.0-beta.0" 824 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-7.0.0-beta.0.tgz#eb8b6e556470e6dcc4aef982d79ad229469b5169" 825 | dependencies: 826 | esutils "^2.0.2" 827 | lodash "^4.2.0" 828 | to-fast-properties "^2.0.0" 829 | 830 | babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.23.0, babel-types@^6.24.1, babel-types@^6.26.0: 831 | version "6.26.0" 832 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 833 | dependencies: 834 | babel-runtime "^6.26.0" 835 | esutils "^2.0.2" 836 | lodash "^4.17.4" 837 | to-fast-properties "^1.0.3" 838 | 839 | babylon@7.0.0-beta.22: 840 | version "7.0.0-beta.22" 841 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-7.0.0-beta.22.tgz#74f0ad82ed7c7c3cfeab74cf684f815104161b65" 842 | 843 | babylon@^6.17.0, babylon@^6.18.0: 844 | version "6.18.0" 845 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 846 | 847 | balanced-match@^1.0.0: 848 | version "1.0.0" 849 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 850 | 851 | bcrypt-pbkdf@^1.0.0: 852 | version "1.0.1" 853 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 854 | dependencies: 855 | tweetnacl "^0.14.3" 856 | 857 | binary-extensions@^1.0.0: 858 | version "1.10.0" 859 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.10.0.tgz#9aeb9a6c5e88638aad171e167f5900abe24835d0" 860 | 861 | block-stream@*: 862 | version "0.0.9" 863 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 864 | dependencies: 865 | inherits "~2.0.0" 866 | 867 | boom@2.x.x: 868 | version "2.10.1" 869 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 870 | dependencies: 871 | hoek "2.x.x" 872 | 873 | brace-expansion@^1.1.7: 874 | version "1.1.8" 875 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 876 | dependencies: 877 | balanced-match "^1.0.0" 878 | concat-map "0.0.1" 879 | 880 | braces@^1.8.2: 881 | version "1.8.5" 882 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 883 | dependencies: 884 | expand-range "^1.8.1" 885 | preserve "^0.2.0" 886 | repeat-element "^1.1.2" 887 | 888 | browser-resolve@^1.11.2: 889 | version "1.11.2" 890 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 891 | dependencies: 892 | resolve "1.1.7" 893 | 894 | browserslist@^2.1.2: 895 | version "2.4.0" 896 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.4.0.tgz#693ee93d01e66468a6348da5498e011f578f87f8" 897 | dependencies: 898 | caniuse-lite "^1.0.30000718" 899 | electron-to-chromium "^1.3.18" 900 | 901 | bser@^2.0.0: 902 | version "2.0.0" 903 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 904 | dependencies: 905 | node-int64 "^0.4.0" 906 | 907 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 908 | version "1.1.1" 909 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 910 | 911 | caller-path@^0.1.0: 912 | version "0.1.0" 913 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 914 | dependencies: 915 | callsites "^0.2.0" 916 | 917 | callsites@^0.2.0: 918 | version "0.2.0" 919 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 920 | 921 | callsites@^2.0.0: 922 | version "2.0.0" 923 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 924 | 925 | camelcase@^1.0.2: 926 | version "1.2.1" 927 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 928 | 929 | camelcase@^4.1.0: 930 | version "4.1.0" 931 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 932 | 933 | caniuse-lite@^1.0.30000718: 934 | version "1.0.30000730" 935 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000730.tgz#26a14ff1b3bfc1f1cb4da75c2c73451b3f1ade1a" 936 | 937 | caseless@~0.12.0: 938 | version "0.12.0" 939 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 940 | 941 | center-align@^0.1.1: 942 | version "0.1.3" 943 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 944 | dependencies: 945 | align-text "^0.1.3" 946 | lazy-cache "^1.0.3" 947 | 948 | chalk@^1.1.1, chalk@^1.1.3: 949 | version "1.1.3" 950 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 951 | dependencies: 952 | ansi-styles "^2.2.1" 953 | escape-string-regexp "^1.0.2" 954 | has-ansi "^2.0.0" 955 | strip-ansi "^3.0.0" 956 | supports-color "^2.0.0" 957 | 958 | chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0: 959 | version "2.1.0" 960 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.1.0.tgz#ac5becf14fa21b99c6c92ca7a7d7cfd5b17e743e" 961 | dependencies: 962 | ansi-styles "^3.1.0" 963 | escape-string-regexp "^1.0.5" 964 | supports-color "^4.0.0" 965 | 966 | chokidar@^1.6.0, chokidar@^1.6.1: 967 | version "1.7.0" 968 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 969 | dependencies: 970 | anymatch "^1.3.0" 971 | async-each "^1.0.0" 972 | glob-parent "^2.0.0" 973 | inherits "^2.0.1" 974 | is-binary-path "^1.0.0" 975 | is-glob "^2.0.0" 976 | path-is-absolute "^1.0.0" 977 | readdirp "^2.0.0" 978 | optionalDependencies: 979 | fsevents "^1.0.0" 980 | 981 | ci-info@^1.0.0: 982 | version "1.1.1" 983 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.1.tgz#47b44df118c48d2597b56d342e7e25791060171a" 984 | 985 | circular-json@^0.3.1: 986 | version "0.3.3" 987 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" 988 | 989 | cli-cursor@^2.1.0: 990 | version "2.1.0" 991 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 992 | dependencies: 993 | restore-cursor "^2.0.0" 994 | 995 | cli-width@^2.0.0: 996 | version "2.2.0" 997 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 998 | 999 | cliui@^2.1.0: 1000 | version "2.1.0" 1001 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 1002 | dependencies: 1003 | center-align "^0.1.1" 1004 | right-align "^0.1.1" 1005 | wordwrap "0.0.2" 1006 | 1007 | cliui@^3.2.0: 1008 | version "3.2.0" 1009 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 1010 | dependencies: 1011 | string-width "^1.0.1" 1012 | strip-ansi "^3.0.1" 1013 | wrap-ansi "^2.0.0" 1014 | 1015 | co@^4.6.0: 1016 | version "4.6.0" 1017 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1018 | 1019 | code-point-at@^1.0.0: 1020 | version "1.1.0" 1021 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1022 | 1023 | color-convert@^1.9.0: 1024 | version "1.9.0" 1025 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 1026 | dependencies: 1027 | color-name "^1.1.1" 1028 | 1029 | color-name@^1.1.1: 1030 | version "1.1.3" 1031 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 1032 | 1033 | combined-stream@^1.0.5, combined-stream@~1.0.5: 1034 | version "1.0.5" 1035 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 1036 | dependencies: 1037 | delayed-stream "~1.0.0" 1038 | 1039 | commander@^2.11.0: 1040 | version "2.11.0" 1041 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" 1042 | 1043 | concat-map@0.0.1: 1044 | version "0.0.1" 1045 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1046 | 1047 | concat-stream@^1.6.0: 1048 | version "1.6.0" 1049 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 1050 | dependencies: 1051 | inherits "^2.0.3" 1052 | readable-stream "^2.2.2" 1053 | typedarray "^0.0.6" 1054 | 1055 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1056 | version "1.1.0" 1057 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1058 | 1059 | contains-path@^0.1.0: 1060 | version "0.1.0" 1061 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 1062 | 1063 | content-type-parser@^1.0.1: 1064 | version "1.0.1" 1065 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 1066 | 1067 | convert-source-map@^1.4.0, convert-source-map@^1.5.0: 1068 | version "1.5.0" 1069 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 1070 | 1071 | core-js@^1.0.0: 1072 | version "1.2.7" 1073 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 1074 | 1075 | core-js@^2.4.0, core-js@^2.5.0: 1076 | version "2.5.1" 1077 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.1.tgz#ae6874dc66937789b80754ff5428df66819ca50b" 1078 | 1079 | core-util-is@1.0.2, core-util-is@~1.0.0: 1080 | version "1.0.2" 1081 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1082 | 1083 | cpx@1.5.0: 1084 | version "1.5.0" 1085 | resolved "https://registry.yarnpkg.com/cpx/-/cpx-1.5.0.tgz#185be018511d87270dedccc293171e37655ab88f" 1086 | dependencies: 1087 | babel-runtime "^6.9.2" 1088 | chokidar "^1.6.0" 1089 | duplexer "^0.1.1" 1090 | glob "^7.0.5" 1091 | glob2base "^0.0.12" 1092 | minimatch "^3.0.2" 1093 | mkdirp "^0.5.1" 1094 | resolve "^1.1.7" 1095 | safe-buffer "^5.0.1" 1096 | shell-quote "^1.6.1" 1097 | subarg "^1.0.0" 1098 | 1099 | cross-spawn@^5.0.1, cross-spawn@^5.1.0: 1100 | version "5.1.0" 1101 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 1102 | dependencies: 1103 | lru-cache "^4.0.1" 1104 | shebang-command "^1.2.0" 1105 | which "^1.2.9" 1106 | 1107 | cryptiles@2.x.x: 1108 | version "2.0.5" 1109 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1110 | dependencies: 1111 | boom "2.x.x" 1112 | 1113 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 1114 | version "0.3.2" 1115 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 1116 | 1117 | "cssstyle@>= 0.2.37 < 0.3.0": 1118 | version "0.2.37" 1119 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 1120 | dependencies: 1121 | cssom "0.3.x" 1122 | 1123 | damerau-levenshtein@^1.0.0: 1124 | version "1.0.4" 1125 | resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.4.tgz#03191c432cb6eea168bb77f3a55ffdccb8978514" 1126 | 1127 | dashdash@^1.12.0: 1128 | version "1.14.1" 1129 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1130 | dependencies: 1131 | assert-plus "^1.0.0" 1132 | 1133 | debug@^2.2.0, debug@^2.6.3, debug@^2.6.8: 1134 | version "2.6.8" 1135 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 1136 | dependencies: 1137 | ms "2.0.0" 1138 | 1139 | debug@^3.0.1: 1140 | version "3.0.1" 1141 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.0.1.tgz#0564c612b521dc92d9f2988f0549e34f9c98db64" 1142 | dependencies: 1143 | ms "2.0.0" 1144 | 1145 | decamelize@^1.0.0, decamelize@^1.1.1: 1146 | version "1.2.0" 1147 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1148 | 1149 | deep-equal@~1.0.1: 1150 | version "1.0.1" 1151 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" 1152 | 1153 | deep-extend@~0.4.0: 1154 | version "0.4.2" 1155 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1156 | 1157 | deep-is@~0.1.3: 1158 | version "0.1.3" 1159 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1160 | 1161 | default-require-extensions@^1.0.0: 1162 | version "1.0.0" 1163 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 1164 | dependencies: 1165 | strip-bom "^2.0.0" 1166 | 1167 | define-properties@^1.1.2: 1168 | version "1.1.2" 1169 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 1170 | dependencies: 1171 | foreach "^2.0.5" 1172 | object-keys "^1.0.8" 1173 | 1174 | defined@~1.0.0: 1175 | version "1.0.0" 1176 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 1177 | 1178 | del@^2.0.2: 1179 | version "2.2.2" 1180 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1181 | dependencies: 1182 | globby "^5.0.0" 1183 | is-path-cwd "^1.0.0" 1184 | is-path-in-cwd "^1.0.0" 1185 | object-assign "^4.0.1" 1186 | pify "^2.0.0" 1187 | pinkie-promise "^2.0.0" 1188 | rimraf "^2.2.8" 1189 | 1190 | delayed-stream@~1.0.0: 1191 | version "1.0.0" 1192 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1193 | 1194 | delegates@^1.0.0: 1195 | version "1.0.0" 1196 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1197 | 1198 | detect-indent@^4.0.0: 1199 | version "4.0.0" 1200 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1201 | dependencies: 1202 | repeating "^2.0.0" 1203 | 1204 | diff@^3.2.0: 1205 | version "3.3.1" 1206 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.3.1.tgz#aa8567a6eed03c531fc89d3f711cd0e5259dec75" 1207 | 1208 | doctrine@1.5.0: 1209 | version "1.5.0" 1210 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 1211 | dependencies: 1212 | esutils "^2.0.2" 1213 | isarray "^1.0.0" 1214 | 1215 | doctrine@^2.0.0: 1216 | version "2.0.0" 1217 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" 1218 | dependencies: 1219 | esutils "^2.0.2" 1220 | isarray "^1.0.0" 1221 | 1222 | duplexer@^0.1.1: 1223 | version "0.1.1" 1224 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" 1225 | 1226 | ecc-jsbn@~0.1.1: 1227 | version "0.1.1" 1228 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1229 | dependencies: 1230 | jsbn "~0.1.0" 1231 | 1232 | electron-to-chromium@^1.3.18: 1233 | version "1.3.21" 1234 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.21.tgz#a967ebdcfe8ed0083fc244d1894022a8e8113ea2" 1235 | 1236 | emoji-regex@^6.1.0: 1237 | version "6.5.1" 1238 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-6.5.1.tgz#9baea929b155565c11ea41c6626eaa65cef992c2" 1239 | 1240 | encoding@^0.1.11: 1241 | version "0.1.12" 1242 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 1243 | dependencies: 1244 | iconv-lite "~0.4.13" 1245 | 1246 | errno@^0.1.4: 1247 | version "0.1.4" 1248 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 1249 | dependencies: 1250 | prr "~0.0.0" 1251 | 1252 | error-ex@^1.2.0: 1253 | version "1.3.1" 1254 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1255 | dependencies: 1256 | is-arrayish "^0.2.1" 1257 | 1258 | es-abstract@^1.5.0, es-abstract@^1.7.0: 1259 | version "1.8.2" 1260 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.8.2.tgz#25103263dc4decbda60e0c737ca32313518027ee" 1261 | dependencies: 1262 | es-to-primitive "^1.1.1" 1263 | function-bind "^1.1.1" 1264 | has "^1.0.1" 1265 | is-callable "^1.1.3" 1266 | is-regex "^1.0.4" 1267 | 1268 | es-to-primitive@^1.1.1: 1269 | version "1.1.1" 1270 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 1271 | dependencies: 1272 | is-callable "^1.1.1" 1273 | is-date-object "^1.0.1" 1274 | is-symbol "^1.0.1" 1275 | 1276 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1277 | version "1.0.5" 1278 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1279 | 1280 | escodegen@^1.6.1: 1281 | version "1.9.0" 1282 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.9.0.tgz#9811a2f265dc1cd3894420ee3717064b632b8852" 1283 | dependencies: 1284 | esprima "^3.1.3" 1285 | estraverse "^4.2.0" 1286 | esutils "^2.0.2" 1287 | optionator "^0.8.1" 1288 | optionalDependencies: 1289 | source-map "~0.5.6" 1290 | 1291 | eslint-config-airbnb-base@^11.3.0: 1292 | version "11.3.2" 1293 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-11.3.2.tgz#8703b11abe3c88ac7ec2b745b7fdf52e00ae680a" 1294 | dependencies: 1295 | eslint-restricted-globals "^0.1.1" 1296 | 1297 | eslint-config-airbnb@^15.1.0: 1298 | version "15.1.0" 1299 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb/-/eslint-config-airbnb-15.1.0.tgz#fd432965a906e30139001ba830f58f73aeddae8e" 1300 | dependencies: 1301 | eslint-config-airbnb-base "^11.3.0" 1302 | 1303 | eslint-config-callstack-io@0.4.1: 1304 | version "0.4.1" 1305 | resolved "https://registry.yarnpkg.com/eslint-config-callstack-io/-/eslint-config-callstack-io-0.4.1.tgz#e47298a106f85de59b5b65a67875181cb558b8c6" 1306 | dependencies: 1307 | babel-eslint "^7.2.3" 1308 | eslint-config-airbnb "^15.1.0" 1309 | eslint-config-prettier "^2.3.0" 1310 | eslint-plugin-flowtype "^2.35.0" 1311 | eslint-plugin-import "^2.7.0" 1312 | eslint-plugin-jest "^20.0.3" 1313 | eslint-plugin-jsx-a11y "^5.1.1" 1314 | eslint-plugin-prettier "^2.1.2" 1315 | eslint-plugin-react "^7.1.0" 1316 | prettier "^1.5.3" 1317 | 1318 | eslint-config-prettier@^2.3.0: 1319 | version "2.5.0" 1320 | resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-2.5.0.tgz#9ecb9296bae4e2e59a3ce361a96c9f825fe67b75" 1321 | dependencies: 1322 | get-stdin "^5.0.1" 1323 | 1324 | eslint-import-resolver-node@^0.3.1: 1325 | version "0.3.1" 1326 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.1.tgz#4422574cde66a9a7b099938ee4d508a199e0e3cc" 1327 | dependencies: 1328 | debug "^2.6.8" 1329 | resolve "^1.2.0" 1330 | 1331 | eslint-module-utils@^2.1.1: 1332 | version "2.1.1" 1333 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.1.1.tgz#abaec824177613b8a95b299639e1b6facf473449" 1334 | dependencies: 1335 | debug "^2.6.8" 1336 | pkg-dir "^1.0.0" 1337 | 1338 | eslint-plugin-flowtype@^2.35.0: 1339 | version "2.35.1" 1340 | resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-2.35.1.tgz#9ad98181b467a3645fbd2a8d430393cc17a4ea63" 1341 | dependencies: 1342 | lodash "^4.15.0" 1343 | 1344 | eslint-plugin-import@^2.7.0: 1345 | version "2.7.0" 1346 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.7.0.tgz#21de33380b9efb55f5ef6d2e210ec0e07e7fa69f" 1347 | dependencies: 1348 | builtin-modules "^1.1.1" 1349 | contains-path "^0.1.0" 1350 | debug "^2.6.8" 1351 | doctrine "1.5.0" 1352 | eslint-import-resolver-node "^0.3.1" 1353 | eslint-module-utils "^2.1.1" 1354 | has "^1.0.1" 1355 | lodash.cond "^4.3.0" 1356 | minimatch "^3.0.3" 1357 | read-pkg-up "^2.0.0" 1358 | 1359 | eslint-plugin-jest@^20.0.3: 1360 | version "20.0.3" 1361 | resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-20.0.3.tgz#ec15eba6ac0ab44a67ebf6e02672ca9d7e7cba29" 1362 | 1363 | eslint-plugin-jsx-a11y@^5.1.1: 1364 | version "5.1.1" 1365 | resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-5.1.1.tgz#5c96bb5186ca14e94db1095ff59b3e2bd94069b1" 1366 | dependencies: 1367 | aria-query "^0.7.0" 1368 | array-includes "^3.0.3" 1369 | ast-types-flow "0.0.7" 1370 | axobject-query "^0.1.0" 1371 | damerau-levenshtein "^1.0.0" 1372 | emoji-regex "^6.1.0" 1373 | jsx-ast-utils "^1.4.0" 1374 | 1375 | eslint-plugin-prettier@^2.1.2: 1376 | version "2.3.0" 1377 | resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-2.3.0.tgz#520a6e57c178c608ed04b75c79a4e7960a91bd2f" 1378 | dependencies: 1379 | fast-diff "^1.1.1" 1380 | jest-docblock "^21.0.0" 1381 | 1382 | eslint-plugin-react@^7.1.0: 1383 | version "7.3.0" 1384 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.3.0.tgz#ca9368da36f733fbdc05718ae4e91f778f38e344" 1385 | dependencies: 1386 | doctrine "^2.0.0" 1387 | has "^1.0.1" 1388 | jsx-ast-utils "^2.0.0" 1389 | prop-types "^15.5.10" 1390 | 1391 | eslint-restricted-globals@^0.1.1: 1392 | version "0.1.1" 1393 | resolved "https://registry.yarnpkg.com/eslint-restricted-globals/-/eslint-restricted-globals-0.1.1.tgz#35f0d5cbc64c2e3ed62e93b4b1a7af05ba7ed4d7" 1394 | 1395 | eslint-scope@^3.7.1: 1396 | version "3.7.1" 1397 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" 1398 | dependencies: 1399 | esrecurse "^4.1.0" 1400 | estraverse "^4.1.1" 1401 | 1402 | eslint@4.7.0: 1403 | version "4.7.0" 1404 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.7.0.tgz#d35fc07c472520be3de85b3da11e99c576afd515" 1405 | dependencies: 1406 | ajv "^5.2.0" 1407 | babel-code-frame "^6.22.0" 1408 | chalk "^2.1.0" 1409 | concat-stream "^1.6.0" 1410 | cross-spawn "^5.1.0" 1411 | debug "^3.0.1" 1412 | doctrine "^2.0.0" 1413 | eslint-scope "^3.7.1" 1414 | espree "^3.5.1" 1415 | esquery "^1.0.0" 1416 | estraverse "^4.2.0" 1417 | esutils "^2.0.2" 1418 | file-entry-cache "^2.0.0" 1419 | functional-red-black-tree "^1.0.1" 1420 | glob "^7.1.2" 1421 | globals "^9.17.0" 1422 | ignore "^3.3.3" 1423 | imurmurhash "^0.1.4" 1424 | inquirer "^3.0.6" 1425 | is-resolvable "^1.0.0" 1426 | js-yaml "^3.9.1" 1427 | json-stable-stringify "^1.0.1" 1428 | levn "^0.3.0" 1429 | lodash "^4.17.4" 1430 | minimatch "^3.0.2" 1431 | mkdirp "^0.5.1" 1432 | natural-compare "^1.4.0" 1433 | optionator "^0.8.2" 1434 | path-is-inside "^1.0.2" 1435 | pluralize "^7.0.0" 1436 | progress "^2.0.0" 1437 | require-uncached "^1.0.3" 1438 | semver "^5.3.0" 1439 | strip-ansi "^4.0.0" 1440 | strip-json-comments "~2.0.1" 1441 | table "^4.0.1" 1442 | text-table "~0.2.0" 1443 | 1444 | espree@^3.5.1: 1445 | version "3.5.1" 1446 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.1.tgz#0c988b8ab46db53100a1954ae4ba995ddd27d87e" 1447 | dependencies: 1448 | acorn "^5.1.1" 1449 | acorn-jsx "^3.0.0" 1450 | 1451 | esprima@^3.1.3: 1452 | version "3.1.3" 1453 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1454 | 1455 | esprima@^4.0.0: 1456 | version "4.0.0" 1457 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1458 | 1459 | esquery@^1.0.0: 1460 | version "1.0.0" 1461 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 1462 | dependencies: 1463 | estraverse "^4.0.0" 1464 | 1465 | esrecurse@^4.1.0: 1466 | version "4.2.0" 1467 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" 1468 | dependencies: 1469 | estraverse "^4.1.0" 1470 | object-assign "^4.0.1" 1471 | 1472 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: 1473 | version "4.2.0" 1474 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1475 | 1476 | esutils@^2.0.2: 1477 | version "2.0.2" 1478 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1479 | 1480 | exec-sh@^0.2.0: 1481 | version "0.2.1" 1482 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.1.tgz#163b98a6e89e6b65b47c2a28d215bc1f63989c38" 1483 | dependencies: 1484 | merge "^1.1.3" 1485 | 1486 | execa@^0.7.0: 1487 | version "0.7.0" 1488 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1489 | dependencies: 1490 | cross-spawn "^5.0.1" 1491 | get-stream "^3.0.0" 1492 | is-stream "^1.1.0" 1493 | npm-run-path "^2.0.0" 1494 | p-finally "^1.0.0" 1495 | signal-exit "^3.0.0" 1496 | strip-eof "^1.0.0" 1497 | 1498 | expand-brackets@^0.1.4: 1499 | version "0.1.5" 1500 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1501 | dependencies: 1502 | is-posix-bracket "^0.1.0" 1503 | 1504 | expand-range@^1.8.1: 1505 | version "1.8.2" 1506 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1507 | dependencies: 1508 | fill-range "^2.1.0" 1509 | 1510 | expect@^21.1.0: 1511 | version "21.1.0" 1512 | resolved "https://registry.yarnpkg.com/expect/-/expect-21.1.0.tgz#1c138ec803c72d28cbd10dfe97104966d967c24a" 1513 | dependencies: 1514 | ansi-styles "^3.2.0" 1515 | jest-diff "^21.1.0" 1516 | jest-get-type "^21.0.2" 1517 | jest-matcher-utils "^21.1.0" 1518 | jest-message-util "^21.1.0" 1519 | jest-regex-util "^21.1.0" 1520 | 1521 | extend@~3.0.0: 1522 | version "3.0.1" 1523 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1524 | 1525 | external-editor@^2.0.4: 1526 | version "2.0.4" 1527 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.0.4.tgz#1ed9199da9cbfe2ef2f7a31b2fde8b0d12368972" 1528 | dependencies: 1529 | iconv-lite "^0.4.17" 1530 | jschardet "^1.4.2" 1531 | tmp "^0.0.31" 1532 | 1533 | extglob@^0.3.1: 1534 | version "0.3.2" 1535 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1536 | dependencies: 1537 | is-extglob "^1.0.0" 1538 | 1539 | extsprintf@1.3.0, extsprintf@^1.2.0: 1540 | version "1.3.0" 1541 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1542 | 1543 | fast-deep-equal@^1.0.0: 1544 | version "1.0.0" 1545 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 1546 | 1547 | fast-diff@^1.1.1: 1548 | version "1.1.2" 1549 | resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.1.2.tgz#4b62c42b8e03de3f848460b639079920695d0154" 1550 | 1551 | fast-levenshtein@~2.0.4: 1552 | version "2.0.6" 1553 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1554 | 1555 | fb-watchman@^2.0.0: 1556 | version "2.0.0" 1557 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 1558 | dependencies: 1559 | bser "^2.0.0" 1560 | 1561 | fbjs@^0.8.9: 1562 | version "0.8.15" 1563 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.15.tgz#4f0695fdfcc16c37c0b07facec8cb4c4091685b9" 1564 | dependencies: 1565 | core-js "^1.0.0" 1566 | isomorphic-fetch "^2.1.1" 1567 | loose-envify "^1.0.0" 1568 | object-assign "^4.1.0" 1569 | promise "^7.1.1" 1570 | setimmediate "^1.0.5" 1571 | ua-parser-js "^0.7.9" 1572 | 1573 | figures@^2.0.0: 1574 | version "2.0.0" 1575 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1576 | dependencies: 1577 | escape-string-regexp "^1.0.5" 1578 | 1579 | file-entry-cache@^2.0.0: 1580 | version "2.0.0" 1581 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1582 | dependencies: 1583 | flat-cache "^1.2.1" 1584 | object-assign "^4.0.1" 1585 | 1586 | filename-regex@^2.0.0: 1587 | version "2.0.1" 1588 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1589 | 1590 | fileset@^2.0.2: 1591 | version "2.0.3" 1592 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 1593 | dependencies: 1594 | glob "^7.0.3" 1595 | minimatch "^3.0.3" 1596 | 1597 | fill-range@^2.1.0: 1598 | version "2.2.3" 1599 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1600 | dependencies: 1601 | is-number "^2.1.0" 1602 | isobject "^2.0.0" 1603 | randomatic "^1.1.3" 1604 | repeat-element "^1.1.2" 1605 | repeat-string "^1.5.2" 1606 | 1607 | find-index@^0.1.1: 1608 | version "0.1.1" 1609 | resolved "https://registry.yarnpkg.com/find-index/-/find-index-0.1.1.tgz#675d358b2ca3892d795a1ab47232f8b6e2e0dde4" 1610 | 1611 | find-up@^1.0.0: 1612 | version "1.1.2" 1613 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1614 | dependencies: 1615 | path-exists "^2.0.0" 1616 | pinkie-promise "^2.0.0" 1617 | 1618 | find-up@^2.0.0, find-up@^2.1.0: 1619 | version "2.1.0" 1620 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1621 | dependencies: 1622 | locate-path "^2.0.0" 1623 | 1624 | flat-cache@^1.2.1: 1625 | version "1.2.2" 1626 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 1627 | dependencies: 1628 | circular-json "^0.3.1" 1629 | del "^2.0.2" 1630 | graceful-fs "^4.1.2" 1631 | write "^0.2.1" 1632 | 1633 | flow-bin@0.54.1: 1634 | version "0.54.1" 1635 | resolved "https://registry.yarnpkg.com/flow-bin/-/flow-bin-0.54.1.tgz#7101bcccf006dc0652714a8aef0c72078a760510" 1636 | 1637 | for-each@~0.3.2: 1638 | version "0.3.2" 1639 | resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.2.tgz#2c40450b9348e97f281322593ba96704b9abd4d4" 1640 | dependencies: 1641 | is-function "~1.0.0" 1642 | 1643 | for-in@^1.0.1: 1644 | version "1.0.2" 1645 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1646 | 1647 | for-own@^0.1.4: 1648 | version "0.1.5" 1649 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1650 | dependencies: 1651 | for-in "^1.0.1" 1652 | 1653 | foreach@^2.0.5: 1654 | version "2.0.5" 1655 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1656 | 1657 | forever-agent@~0.6.1: 1658 | version "0.6.1" 1659 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1660 | 1661 | form-data@~2.1.1: 1662 | version "2.1.4" 1663 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1664 | dependencies: 1665 | asynckit "^0.4.0" 1666 | combined-stream "^1.0.5" 1667 | mime-types "^2.1.12" 1668 | 1669 | fs-readdir-recursive@^1.0.0: 1670 | version "1.0.0" 1671 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1672 | 1673 | fs.realpath@^1.0.0: 1674 | version "1.0.0" 1675 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1676 | 1677 | fsevents@^1.0.0, fsevents@^1.1.1: 1678 | version "1.1.2" 1679 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4" 1680 | dependencies: 1681 | nan "^2.3.0" 1682 | node-pre-gyp "^0.6.36" 1683 | 1684 | fstream-ignore@^1.0.5: 1685 | version "1.0.5" 1686 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1687 | dependencies: 1688 | fstream "^1.0.0" 1689 | inherits "2" 1690 | minimatch "^3.0.0" 1691 | 1692 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1693 | version "1.0.11" 1694 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1695 | dependencies: 1696 | graceful-fs "^4.1.2" 1697 | inherits "~2.0.0" 1698 | mkdirp ">=0.5 0" 1699 | rimraf "2" 1700 | 1701 | function-bind@^1.0.2, function-bind@^1.1.1, function-bind@~1.1.0: 1702 | version "1.1.1" 1703 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1704 | 1705 | functional-red-black-tree@^1.0.1: 1706 | version "1.0.1" 1707 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 1708 | 1709 | gauge@~2.7.3: 1710 | version "2.7.4" 1711 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1712 | dependencies: 1713 | aproba "^1.0.3" 1714 | console-control-strings "^1.0.0" 1715 | has-unicode "^2.0.0" 1716 | object-assign "^4.1.0" 1717 | signal-exit "^3.0.0" 1718 | string-width "^1.0.1" 1719 | strip-ansi "^3.0.1" 1720 | wide-align "^1.1.0" 1721 | 1722 | get-caller-file@^1.0.1: 1723 | version "1.0.2" 1724 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1725 | 1726 | get-stdin@^5.0.1: 1727 | version "5.0.1" 1728 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" 1729 | 1730 | get-stream@^3.0.0: 1731 | version "3.0.0" 1732 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1733 | 1734 | getpass@^0.1.1: 1735 | version "0.1.7" 1736 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1737 | dependencies: 1738 | assert-plus "^1.0.0" 1739 | 1740 | glob-base@^0.3.0: 1741 | version "0.3.0" 1742 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1743 | dependencies: 1744 | glob-parent "^2.0.0" 1745 | is-glob "^2.0.0" 1746 | 1747 | glob-parent@^2.0.0: 1748 | version "2.0.0" 1749 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1750 | dependencies: 1751 | is-glob "^2.0.0" 1752 | 1753 | glob2base@^0.0.12: 1754 | version "0.0.12" 1755 | resolved "https://registry.yarnpkg.com/glob2base/-/glob2base-0.0.12.tgz#9d419b3e28f12e83a362164a277055922c9c0d56" 1756 | dependencies: 1757 | find-index "^0.1.1" 1758 | 1759 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2, glob@~7.1.2: 1760 | version "7.1.2" 1761 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1762 | dependencies: 1763 | fs.realpath "^1.0.0" 1764 | inflight "^1.0.4" 1765 | inherits "2" 1766 | minimatch "^3.0.4" 1767 | once "^1.3.0" 1768 | path-is-absolute "^1.0.0" 1769 | 1770 | globals@^10.0.0: 1771 | version "10.1.0" 1772 | resolved "https://registry.yarnpkg.com/globals/-/globals-10.1.0.tgz#4425a1881be0d336b4a823a82a7be725d5dd987c" 1773 | 1774 | globals@^9.17.0, globals@^9.18.0: 1775 | version "9.18.0" 1776 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1777 | 1778 | globby@^5.0.0: 1779 | version "5.0.0" 1780 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1781 | dependencies: 1782 | array-union "^1.0.1" 1783 | arrify "^1.0.0" 1784 | glob "^7.0.3" 1785 | object-assign "^4.0.1" 1786 | pify "^2.0.0" 1787 | pinkie-promise "^2.0.0" 1788 | 1789 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1790 | version "4.1.11" 1791 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1792 | 1793 | growly@^1.3.0: 1794 | version "1.3.0" 1795 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1796 | 1797 | handlebars@^4.0.3: 1798 | version "4.0.10" 1799 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.10.tgz#3d30c718b09a3d96f23ea4cc1f403c4d3ba9ff4f" 1800 | dependencies: 1801 | async "^1.4.0" 1802 | optimist "^0.6.1" 1803 | source-map "^0.4.4" 1804 | optionalDependencies: 1805 | uglify-js "^2.6" 1806 | 1807 | har-schema@^1.0.5: 1808 | version "1.0.5" 1809 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1810 | 1811 | har-validator@~4.2.1: 1812 | version "4.2.1" 1813 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1814 | dependencies: 1815 | ajv "^4.9.1" 1816 | har-schema "^1.0.5" 1817 | 1818 | has-ansi@^2.0.0: 1819 | version "2.0.0" 1820 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1821 | dependencies: 1822 | ansi-regex "^2.0.0" 1823 | 1824 | has-flag@^1.0.0: 1825 | version "1.0.0" 1826 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1827 | 1828 | has-flag@^2.0.0: 1829 | version "2.0.0" 1830 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1831 | 1832 | has-unicode@^2.0.0: 1833 | version "2.0.1" 1834 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1835 | 1836 | has@^1.0.1, has@~1.0.1: 1837 | version "1.0.1" 1838 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1839 | dependencies: 1840 | function-bind "^1.0.2" 1841 | 1842 | hawk@~3.1.3: 1843 | version "3.1.3" 1844 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1845 | dependencies: 1846 | boom "2.x.x" 1847 | cryptiles "2.x.x" 1848 | hoek "2.x.x" 1849 | sntp "1.x.x" 1850 | 1851 | hoek@2.x.x: 1852 | version "2.16.3" 1853 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1854 | 1855 | home-or-tmp@^2.0.0: 1856 | version "2.0.0" 1857 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1858 | dependencies: 1859 | os-homedir "^1.0.0" 1860 | os-tmpdir "^1.0.1" 1861 | 1862 | hosted-git-info@^2.1.4: 1863 | version "2.5.0" 1864 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 1865 | 1866 | html-encoding-sniffer@^1.0.1: 1867 | version "1.0.1" 1868 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 1869 | dependencies: 1870 | whatwg-encoding "^1.0.1" 1871 | 1872 | http-signature@~1.1.0: 1873 | version "1.1.1" 1874 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1875 | dependencies: 1876 | assert-plus "^0.2.0" 1877 | jsprim "^1.2.2" 1878 | sshpk "^1.7.0" 1879 | 1880 | iconv-lite@0.4.13: 1881 | version "0.4.13" 1882 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 1883 | 1884 | iconv-lite@^0.4.17, iconv-lite@~0.4.13: 1885 | version "0.4.19" 1886 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 1887 | 1888 | ignore@^3.3.3: 1889 | version "3.3.5" 1890 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.5.tgz#c4e715455f6073a8d7e5dae72d2fc9d71663dba6" 1891 | 1892 | imurmurhash@^0.1.4: 1893 | version "0.1.4" 1894 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1895 | 1896 | inflight@^1.0.4: 1897 | version "1.0.6" 1898 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1899 | dependencies: 1900 | once "^1.3.0" 1901 | wrappy "1" 1902 | 1903 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.3: 1904 | version "2.0.3" 1905 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1906 | 1907 | ini@~1.3.0: 1908 | version "1.3.4" 1909 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1910 | 1911 | inquirer@^3.0.6: 1912 | version "3.2.3" 1913 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.2.3.tgz#1c7b1731cf77b934ec47d22c9ac5aa8fe7fbe095" 1914 | dependencies: 1915 | ansi-escapes "^2.0.0" 1916 | chalk "^2.0.0" 1917 | cli-cursor "^2.1.0" 1918 | cli-width "^2.0.0" 1919 | external-editor "^2.0.4" 1920 | figures "^2.0.0" 1921 | lodash "^4.3.0" 1922 | mute-stream "0.0.7" 1923 | run-async "^2.2.0" 1924 | rx-lite "^4.0.8" 1925 | rx-lite-aggregates "^4.0.8" 1926 | string-width "^2.1.0" 1927 | strip-ansi "^4.0.0" 1928 | through "^2.3.6" 1929 | 1930 | invariant@^2.2.0, invariant@^2.2.2: 1931 | version "2.2.2" 1932 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1933 | dependencies: 1934 | loose-envify "^1.0.0" 1935 | 1936 | invert-kv@^1.0.0: 1937 | version "1.0.0" 1938 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1939 | 1940 | is-arrayish@^0.2.1: 1941 | version "0.2.1" 1942 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1943 | 1944 | is-binary-path@^1.0.0: 1945 | version "1.0.1" 1946 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1947 | dependencies: 1948 | binary-extensions "^1.0.0" 1949 | 1950 | is-buffer@^1.1.5: 1951 | version "1.1.5" 1952 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1953 | 1954 | is-builtin-module@^1.0.0: 1955 | version "1.0.0" 1956 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1957 | dependencies: 1958 | builtin-modules "^1.0.0" 1959 | 1960 | is-callable@^1.1.1, is-callable@^1.1.3: 1961 | version "1.1.3" 1962 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 1963 | 1964 | is-ci@^1.0.10: 1965 | version "1.0.10" 1966 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1967 | dependencies: 1968 | ci-info "^1.0.0" 1969 | 1970 | is-date-object@^1.0.1: 1971 | version "1.0.1" 1972 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1973 | 1974 | is-dotfile@^1.0.0: 1975 | version "1.0.3" 1976 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1977 | 1978 | is-equal-shallow@^0.1.3: 1979 | version "0.1.3" 1980 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1981 | dependencies: 1982 | is-primitive "^2.0.0" 1983 | 1984 | is-extendable@^0.1.1: 1985 | version "0.1.1" 1986 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1987 | 1988 | is-extglob@^1.0.0: 1989 | version "1.0.0" 1990 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1991 | 1992 | is-finite@^1.0.0: 1993 | version "1.0.2" 1994 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1995 | dependencies: 1996 | number-is-nan "^1.0.0" 1997 | 1998 | is-fullwidth-code-point@^1.0.0: 1999 | version "1.0.0" 2000 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 2001 | dependencies: 2002 | number-is-nan "^1.0.0" 2003 | 2004 | is-fullwidth-code-point@^2.0.0: 2005 | version "2.0.0" 2006 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 2007 | 2008 | is-function@~1.0.0: 2009 | version "1.0.1" 2010 | resolved "https://registry.yarnpkg.com/is-function/-/is-function-1.0.1.tgz#12cfb98b65b57dd3d193a3121f5f6e2f437602b5" 2011 | 2012 | is-glob@^2.0.0, is-glob@^2.0.1: 2013 | version "2.0.1" 2014 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 2015 | dependencies: 2016 | is-extglob "^1.0.0" 2017 | 2018 | is-number@^2.1.0: 2019 | version "2.1.0" 2020 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 2021 | dependencies: 2022 | kind-of "^3.0.2" 2023 | 2024 | is-number@^3.0.0: 2025 | version "3.0.0" 2026 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 2027 | dependencies: 2028 | kind-of "^3.0.2" 2029 | 2030 | is-path-cwd@^1.0.0: 2031 | version "1.0.0" 2032 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 2033 | 2034 | is-path-in-cwd@^1.0.0: 2035 | version "1.0.0" 2036 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 2037 | dependencies: 2038 | is-path-inside "^1.0.0" 2039 | 2040 | is-path-inside@^1.0.0: 2041 | version "1.0.0" 2042 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 2043 | dependencies: 2044 | path-is-inside "^1.0.1" 2045 | 2046 | is-posix-bracket@^0.1.0: 2047 | version "0.1.1" 2048 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2049 | 2050 | is-primitive@^2.0.0: 2051 | version "2.0.0" 2052 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2053 | 2054 | is-promise@^2.1.0: 2055 | version "2.1.0" 2056 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 2057 | 2058 | is-regex@^1.0.4: 2059 | version "1.0.4" 2060 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 2061 | dependencies: 2062 | has "^1.0.1" 2063 | 2064 | is-resolvable@^1.0.0: 2065 | version "1.0.0" 2066 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 2067 | dependencies: 2068 | tryit "^1.0.1" 2069 | 2070 | is-stream@^1.0.1, is-stream@^1.1.0: 2071 | version "1.1.0" 2072 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2073 | 2074 | is-symbol@^1.0.1: 2075 | version "1.0.1" 2076 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 2077 | 2078 | is-typedarray@~1.0.0: 2079 | version "1.0.0" 2080 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2081 | 2082 | is-utf8@^0.2.0: 2083 | version "0.2.1" 2084 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 2085 | 2086 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2087 | version "1.0.0" 2088 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2089 | 2090 | isexe@^2.0.0: 2091 | version "2.0.0" 2092 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2093 | 2094 | isobject@^2.0.0: 2095 | version "2.1.0" 2096 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2097 | dependencies: 2098 | isarray "1.0.0" 2099 | 2100 | isomorphic-fetch@^2.1.1: 2101 | version "2.2.1" 2102 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" 2103 | dependencies: 2104 | node-fetch "^1.0.1" 2105 | whatwg-fetch ">=0.10.0" 2106 | 2107 | isstream@~0.1.2: 2108 | version "0.1.2" 2109 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2110 | 2111 | istanbul-api@^1.1.1: 2112 | version "1.1.14" 2113 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.14.tgz#25bc5701f7c680c0ffff913de46e3619a3a6e680" 2114 | dependencies: 2115 | async "^2.1.4" 2116 | fileset "^2.0.2" 2117 | istanbul-lib-coverage "^1.1.1" 2118 | istanbul-lib-hook "^1.0.7" 2119 | istanbul-lib-instrument "^1.8.0" 2120 | istanbul-lib-report "^1.1.1" 2121 | istanbul-lib-source-maps "^1.2.1" 2122 | istanbul-reports "^1.1.2" 2123 | js-yaml "^3.7.0" 2124 | mkdirp "^0.5.1" 2125 | once "^1.4.0" 2126 | 2127 | istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.1.1: 2128 | version "1.1.1" 2129 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" 2130 | 2131 | istanbul-lib-hook@^1.0.7: 2132 | version "1.0.7" 2133 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.7.tgz#dd6607f03076578fe7d6f2a630cf143b49bacddc" 2134 | dependencies: 2135 | append-transform "^0.4.0" 2136 | 2137 | istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.7.2, istanbul-lib-instrument@^1.8.0: 2138 | version "1.8.0" 2139 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.8.0.tgz#66f6c9421cc9ec4704f76f2db084ba9078a2b532" 2140 | dependencies: 2141 | babel-generator "^6.18.0" 2142 | babel-template "^6.16.0" 2143 | babel-traverse "^6.18.0" 2144 | babel-types "^6.18.0" 2145 | babylon "^6.18.0" 2146 | istanbul-lib-coverage "^1.1.1" 2147 | semver "^5.3.0" 2148 | 2149 | istanbul-lib-report@^1.1.1: 2150 | version "1.1.1" 2151 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#f0e55f56655ffa34222080b7a0cd4760e1405fc9" 2152 | dependencies: 2153 | istanbul-lib-coverage "^1.1.1" 2154 | mkdirp "^0.5.1" 2155 | path-parse "^1.0.5" 2156 | supports-color "^3.1.2" 2157 | 2158 | istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.1: 2159 | version "1.2.1" 2160 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.1.tgz#a6fe1acba8ce08eebc638e572e294d267008aa0c" 2161 | dependencies: 2162 | debug "^2.6.3" 2163 | istanbul-lib-coverage "^1.1.1" 2164 | mkdirp "^0.5.1" 2165 | rimraf "^2.6.1" 2166 | source-map "^0.5.3" 2167 | 2168 | istanbul-reports@^1.1.2: 2169 | version "1.1.2" 2170 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.2.tgz#0fb2e3f6aa9922bd3ce45d05d8ab4d5e8e07bd4f" 2171 | dependencies: 2172 | handlebars "^4.0.3" 2173 | 2174 | jest-changed-files@^21.1.0: 2175 | version "21.1.0" 2176 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-21.1.0.tgz#e70f6b33b75d5987f4eae07e35bea5525635f92a" 2177 | dependencies: 2178 | throat "^4.0.0" 2179 | 2180 | jest-cli@^21.1.0: 2181 | version "21.1.0" 2182 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-21.1.0.tgz#4f671885ea3521803c96a1fd95baaa6a1ba8d70f" 2183 | dependencies: 2184 | ansi-escapes "^3.0.0" 2185 | chalk "^2.0.1" 2186 | glob "^7.1.2" 2187 | graceful-fs "^4.1.11" 2188 | is-ci "^1.0.10" 2189 | istanbul-api "^1.1.1" 2190 | istanbul-lib-coverage "^1.0.1" 2191 | istanbul-lib-instrument "^1.4.2" 2192 | istanbul-lib-source-maps "^1.1.0" 2193 | jest-changed-files "^21.1.0" 2194 | jest-config "^21.1.0" 2195 | jest-environment-jsdom "^21.1.0" 2196 | jest-haste-map "^21.1.0" 2197 | jest-message-util "^21.1.0" 2198 | jest-regex-util "^21.1.0" 2199 | jest-resolve-dependencies "^21.1.0" 2200 | jest-runner "^21.1.0" 2201 | jest-runtime "^21.1.0" 2202 | jest-snapshot "^21.1.0" 2203 | jest-util "^21.1.0" 2204 | micromatch "^2.3.11" 2205 | node-notifier "^5.0.2" 2206 | pify "^3.0.0" 2207 | slash "^1.0.0" 2208 | string-length "^2.0.0" 2209 | strip-ansi "^4.0.0" 2210 | which "^1.2.12" 2211 | worker-farm "^1.3.1" 2212 | yargs "^9.0.0" 2213 | 2214 | jest-config@^21.1.0: 2215 | version "21.1.0" 2216 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-21.1.0.tgz#7ef8778af679de30dad75e355a0dfbb0330b8d2f" 2217 | dependencies: 2218 | chalk "^2.0.1" 2219 | glob "^7.1.1" 2220 | jest-environment-jsdom "^21.1.0" 2221 | jest-environment-node "^21.1.0" 2222 | jest-get-type "^21.0.2" 2223 | jest-jasmine2 "^21.1.0" 2224 | jest-regex-util "^21.1.0" 2225 | jest-resolve "^21.1.0" 2226 | jest-util "^21.1.0" 2227 | jest-validate "^21.1.0" 2228 | pretty-format "^21.1.0" 2229 | 2230 | jest-diff@^21.1.0: 2231 | version "21.1.0" 2232 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-21.1.0.tgz#ca4c9d40272a6901dcde6c4c0bb2f568c363cc42" 2233 | dependencies: 2234 | chalk "^2.0.1" 2235 | diff "^3.2.0" 2236 | jest-get-type "^21.0.2" 2237 | pretty-format "^21.1.0" 2238 | 2239 | jest-docblock@^21.0.0, jest-docblock@^21.1.0: 2240 | version "21.1.0" 2241 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-21.1.0.tgz#43154be2441fb91403e36bb35cb791a5017cea81" 2242 | 2243 | jest-environment-jsdom@^21.1.0: 2244 | version "21.1.0" 2245 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-21.1.0.tgz#40729a60cd4544625f7d3a33c32bdaad63e57db7" 2246 | dependencies: 2247 | jest-mock "^21.1.0" 2248 | jest-util "^21.1.0" 2249 | jsdom "^9.12.0" 2250 | 2251 | jest-environment-node@^21.1.0: 2252 | version "21.1.0" 2253 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-21.1.0.tgz#a11fd611e8ae6c3e02b785aa1b12a3009f4fd0f1" 2254 | dependencies: 2255 | jest-mock "^21.1.0" 2256 | jest-util "^21.1.0" 2257 | 2258 | jest-get-type@^21.0.2: 2259 | version "21.0.2" 2260 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-21.0.2.tgz#304e6b816dd33cd1f47aba0597bcad258a509fc6" 2261 | 2262 | jest-haste-map@^21.1.0: 2263 | version "21.1.0" 2264 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-21.1.0.tgz#08e7a8c584008d4b790b8dddf7dd3e3db03b75d3" 2265 | dependencies: 2266 | fb-watchman "^2.0.0" 2267 | graceful-fs "^4.1.11" 2268 | jest-docblock "^21.1.0" 2269 | micromatch "^2.3.11" 2270 | sane "^2.0.0" 2271 | worker-farm "^1.3.1" 2272 | 2273 | jest-jasmine2@^21.1.0: 2274 | version "21.1.0" 2275 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-21.1.0.tgz#975c3cd3ecd9d50d385bfe3c680dd61979f50c9c" 2276 | dependencies: 2277 | chalk "^2.0.1" 2278 | expect "^21.1.0" 2279 | graceful-fs "^4.1.11" 2280 | jest-diff "^21.1.0" 2281 | jest-matcher-utils "^21.1.0" 2282 | jest-message-util "^21.1.0" 2283 | jest-snapshot "^21.1.0" 2284 | p-cancelable "^0.3.0" 2285 | 2286 | jest-matcher-utils@^21.1.0: 2287 | version "21.1.0" 2288 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-21.1.0.tgz#b02e237b287c58915ce9a5bf3c7138dba95125a7" 2289 | dependencies: 2290 | chalk "^2.0.1" 2291 | jest-get-type "^21.0.2" 2292 | pretty-format "^21.1.0" 2293 | 2294 | jest-message-util@^21.1.0: 2295 | version "21.1.0" 2296 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-21.1.0.tgz#7f9a52535d1a640af0d4c800edde737e14ea0526" 2297 | dependencies: 2298 | chalk "^2.0.1" 2299 | micromatch "^2.3.11" 2300 | slash "^1.0.0" 2301 | 2302 | jest-mock@^21.1.0: 2303 | version "21.1.0" 2304 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-21.1.0.tgz#c4dddfa893a0b120b72b5ae87c7506745213a790" 2305 | 2306 | jest-regex-util@^21.1.0: 2307 | version "21.1.0" 2308 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-21.1.0.tgz#59e4bad74f5ffd62a3835225f9bc1ee3796b5adb" 2309 | 2310 | jest-resolve-dependencies@^21.1.0: 2311 | version "21.1.0" 2312 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-21.1.0.tgz#9f78852e65d864d04ad0919ac8226b3f1434e7b0" 2313 | dependencies: 2314 | jest-regex-util "^21.1.0" 2315 | 2316 | jest-resolve@^21.1.0: 2317 | version "21.1.0" 2318 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-21.1.0.tgz#6bb806ca5ad876c250044fe62f298321d2da5c06" 2319 | dependencies: 2320 | browser-resolve "^1.11.2" 2321 | chalk "^2.0.1" 2322 | is-builtin-module "^1.0.0" 2323 | 2324 | jest-runner@^21.1.0: 2325 | version "21.1.0" 2326 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-21.1.0.tgz#d7ea7e2fa10ed673d4dd25ba2f3faae2efb89a07" 2327 | dependencies: 2328 | jest-config "^21.1.0" 2329 | jest-docblock "^21.1.0" 2330 | jest-haste-map "^21.1.0" 2331 | jest-jasmine2 "^21.1.0" 2332 | jest-message-util "^21.1.0" 2333 | jest-runtime "^21.1.0" 2334 | jest-util "^21.1.0" 2335 | pify "^3.0.0" 2336 | throat "^4.0.0" 2337 | worker-farm "^1.3.1" 2338 | 2339 | jest-runtime@^21.1.0: 2340 | version "21.1.0" 2341 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-21.1.0.tgz#c9a180a9e06ef046d0ad157dea52355abb7cbad4" 2342 | dependencies: 2343 | babel-core "^6.0.0" 2344 | babel-jest "^21.0.2" 2345 | babel-plugin-istanbul "^4.0.0" 2346 | chalk "^2.0.1" 2347 | convert-source-map "^1.4.0" 2348 | graceful-fs "^4.1.11" 2349 | jest-config "^21.1.0" 2350 | jest-haste-map "^21.1.0" 2351 | jest-regex-util "^21.1.0" 2352 | jest-resolve "^21.1.0" 2353 | jest-util "^21.1.0" 2354 | json-stable-stringify "^1.0.1" 2355 | micromatch "^2.3.11" 2356 | slash "^1.0.0" 2357 | strip-bom "3.0.0" 2358 | write-file-atomic "^2.1.0" 2359 | yargs "^9.0.0" 2360 | 2361 | jest-snapshot@^21.1.0: 2362 | version "21.1.0" 2363 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-21.1.0.tgz#a5fa9d52847d8f52e19a1df6ccae9de699193ccc" 2364 | dependencies: 2365 | chalk "^2.0.1" 2366 | jest-diff "^21.1.0" 2367 | jest-matcher-utils "^21.1.0" 2368 | mkdirp "^0.5.1" 2369 | natural-compare "^1.4.0" 2370 | pretty-format "^21.1.0" 2371 | 2372 | jest-util@^21.1.0: 2373 | version "21.1.0" 2374 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-21.1.0.tgz#f92ff756422cc0609ddf5a9bfa4d34b2835d8c30" 2375 | dependencies: 2376 | callsites "^2.0.0" 2377 | chalk "^2.0.1" 2378 | graceful-fs "^4.1.11" 2379 | jest-message-util "^21.1.0" 2380 | jest-mock "^21.1.0" 2381 | jest-validate "^21.1.0" 2382 | mkdirp "^0.5.1" 2383 | 2384 | jest-validate@^21.1.0: 2385 | version "21.1.0" 2386 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-21.1.0.tgz#39d01115544a758bce49f221a5fcbb24ebdecc65" 2387 | dependencies: 2388 | chalk "^2.0.1" 2389 | jest-get-type "^21.0.2" 2390 | leven "^2.1.0" 2391 | pretty-format "^21.1.0" 2392 | 2393 | jest@21.1.0: 2394 | version "21.1.0" 2395 | resolved "https://registry.yarnpkg.com/jest/-/jest-21.1.0.tgz#77c7baa8aa9e8bace7fe41a30d748ab56e89476a" 2396 | dependencies: 2397 | jest-cli "^21.1.0" 2398 | 2399 | js-tokens@^3.0.0, js-tokens@^3.0.2: 2400 | version "3.0.2" 2401 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 2402 | 2403 | js-yaml@^3.7.0, js-yaml@^3.9.1: 2404 | version "3.10.0" 2405 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 2406 | dependencies: 2407 | argparse "^1.0.7" 2408 | esprima "^4.0.0" 2409 | 2410 | jsbn@~0.1.0: 2411 | version "0.1.1" 2412 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2413 | 2414 | jschardet@^1.4.2: 2415 | version "1.5.1" 2416 | resolved "https://registry.yarnpkg.com/jschardet/-/jschardet-1.5.1.tgz#c519f629f86b3a5bedba58a88d311309eec097f9" 2417 | 2418 | jsdom@^9.12.0: 2419 | version "9.12.0" 2420 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 2421 | dependencies: 2422 | abab "^1.0.3" 2423 | acorn "^4.0.4" 2424 | acorn-globals "^3.1.0" 2425 | array-equal "^1.0.0" 2426 | content-type-parser "^1.0.1" 2427 | cssom ">= 0.3.2 < 0.4.0" 2428 | cssstyle ">= 0.2.37 < 0.3.0" 2429 | escodegen "^1.6.1" 2430 | html-encoding-sniffer "^1.0.1" 2431 | nwmatcher ">= 1.3.9 < 2.0.0" 2432 | parse5 "^1.5.1" 2433 | request "^2.79.0" 2434 | sax "^1.2.1" 2435 | symbol-tree "^3.2.1" 2436 | tough-cookie "^2.3.2" 2437 | webidl-conversions "^4.0.0" 2438 | whatwg-encoding "^1.0.1" 2439 | whatwg-url "^4.3.0" 2440 | xml-name-validator "^2.0.1" 2441 | 2442 | jsesc@^1.3.0: 2443 | version "1.3.0" 2444 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2445 | 2446 | jsesc@~0.5.0: 2447 | version "0.5.0" 2448 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2449 | 2450 | json-schema-traverse@^0.3.0: 2451 | version "0.3.1" 2452 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 2453 | 2454 | json-schema@0.2.3: 2455 | version "0.2.3" 2456 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2457 | 2458 | json-stable-stringify@^1.0.1: 2459 | version "1.0.1" 2460 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2461 | dependencies: 2462 | jsonify "~0.0.0" 2463 | 2464 | json-stringify-safe@~5.0.1: 2465 | version "5.0.1" 2466 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2467 | 2468 | json5@^0.5.1: 2469 | version "0.5.1" 2470 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2471 | 2472 | jsonify@~0.0.0: 2473 | version "0.0.0" 2474 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2475 | 2476 | jsprim@^1.2.2: 2477 | version "1.4.1" 2478 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 2479 | dependencies: 2480 | assert-plus "1.0.0" 2481 | extsprintf "1.3.0" 2482 | json-schema "0.2.3" 2483 | verror "1.10.0" 2484 | 2485 | jsx-ast-utils@^1.4.0: 2486 | version "1.4.1" 2487 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-1.4.1.tgz#3867213e8dd79bf1e8f2300c0cfc1efb182c0df1" 2488 | 2489 | jsx-ast-utils@^2.0.0: 2490 | version "2.0.1" 2491 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.0.1.tgz#e801b1b39985e20fffc87b40e3748080e2dcac7f" 2492 | dependencies: 2493 | array-includes "^3.0.3" 2494 | 2495 | kind-of@^3.0.2: 2496 | version "3.2.2" 2497 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2498 | dependencies: 2499 | is-buffer "^1.1.5" 2500 | 2501 | kind-of@^4.0.0: 2502 | version "4.0.0" 2503 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2504 | dependencies: 2505 | is-buffer "^1.1.5" 2506 | 2507 | lazy-cache@^1.0.3: 2508 | version "1.0.4" 2509 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2510 | 2511 | lcid@^1.0.0: 2512 | version "1.0.0" 2513 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2514 | dependencies: 2515 | invert-kv "^1.0.0" 2516 | 2517 | leven@^2.1.0: 2518 | version "2.1.0" 2519 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 2520 | 2521 | levn@^0.3.0, levn@~0.3.0: 2522 | version "0.3.0" 2523 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2524 | dependencies: 2525 | prelude-ls "~1.1.2" 2526 | type-check "~0.3.2" 2527 | 2528 | load-json-file@^1.0.0: 2529 | version "1.1.0" 2530 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2531 | dependencies: 2532 | graceful-fs "^4.1.2" 2533 | parse-json "^2.2.0" 2534 | pify "^2.0.0" 2535 | pinkie-promise "^2.0.0" 2536 | strip-bom "^2.0.0" 2537 | 2538 | load-json-file@^2.0.0: 2539 | version "2.0.0" 2540 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2541 | dependencies: 2542 | graceful-fs "^4.1.2" 2543 | parse-json "^2.2.0" 2544 | pify "^2.0.0" 2545 | strip-bom "^3.0.0" 2546 | 2547 | locate-path@^2.0.0: 2548 | version "2.0.0" 2549 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2550 | dependencies: 2551 | p-locate "^2.0.0" 2552 | path-exists "^3.0.0" 2553 | 2554 | lodash.cond@^4.3.0: 2555 | version "4.5.2" 2556 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" 2557 | 2558 | lodash.merge@^4.6.0: 2559 | version "4.6.0" 2560 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.0.tgz#69884ba144ac33fe699737a6086deffadd0f89c5" 2561 | 2562 | lodash@^4.0.0, lodash@^4.14.0, lodash@^4.15.0, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.3.0: 2563 | version "4.17.4" 2564 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2565 | 2566 | longest@^1.0.1: 2567 | version "1.0.1" 2568 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2569 | 2570 | loose-envify@^1.0.0, loose-envify@^1.3.1: 2571 | version "1.3.1" 2572 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2573 | dependencies: 2574 | js-tokens "^3.0.0" 2575 | 2576 | lru-cache@^4.0.1: 2577 | version "4.1.1" 2578 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 2579 | dependencies: 2580 | pseudomap "^1.0.2" 2581 | yallist "^2.1.2" 2582 | 2583 | makeerror@1.0.x: 2584 | version "1.0.11" 2585 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2586 | dependencies: 2587 | tmpl "1.0.x" 2588 | 2589 | mem@^1.1.0: 2590 | version "1.1.0" 2591 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 2592 | dependencies: 2593 | mimic-fn "^1.0.0" 2594 | 2595 | merge@^1.1.3: 2596 | version "1.2.0" 2597 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 2598 | 2599 | micromatch@^2.1.5, micromatch@^2.3.11: 2600 | version "2.3.11" 2601 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2602 | dependencies: 2603 | arr-diff "^2.0.0" 2604 | array-unique "^0.2.1" 2605 | braces "^1.8.2" 2606 | expand-brackets "^0.1.4" 2607 | extglob "^0.3.1" 2608 | filename-regex "^2.0.0" 2609 | is-extglob "^1.0.0" 2610 | is-glob "^2.0.1" 2611 | kind-of "^3.0.2" 2612 | normalize-path "^2.0.1" 2613 | object.omit "^2.0.0" 2614 | parse-glob "^3.0.4" 2615 | regex-cache "^0.4.2" 2616 | 2617 | mime-db@~1.30.0: 2618 | version "1.30.0" 2619 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 2620 | 2621 | mime-types@^2.1.12, mime-types@~2.1.7: 2622 | version "2.1.17" 2623 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 2624 | dependencies: 2625 | mime-db "~1.30.0" 2626 | 2627 | mimic-fn@^1.0.0: 2628 | version "1.1.0" 2629 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 2630 | 2631 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 2632 | version "3.0.4" 2633 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2634 | dependencies: 2635 | brace-expansion "^1.1.7" 2636 | 2637 | minimist@0.0.8: 2638 | version "0.0.8" 2639 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2640 | 2641 | minimist@^1.1.0, minimist@^1.1.1, minimist@^1.2.0, minimist@~1.2.0: 2642 | version "1.2.0" 2643 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2644 | 2645 | minimist@~0.0.1: 2646 | version "0.0.10" 2647 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 2648 | 2649 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 2650 | version "0.5.1" 2651 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2652 | dependencies: 2653 | minimist "0.0.8" 2654 | 2655 | ms@2.0.0: 2656 | version "2.0.0" 2657 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2658 | 2659 | mute-stream@0.0.7: 2660 | version "0.0.7" 2661 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 2662 | 2663 | nan@^2.3.0: 2664 | version "2.7.0" 2665 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.7.0.tgz#d95bf721ec877e08db276ed3fc6eb78f9083ad46" 2666 | 2667 | natural-compare@^1.4.0: 2668 | version "1.4.0" 2669 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2670 | 2671 | node-fetch@^1.0.1: 2672 | version "1.7.3" 2673 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" 2674 | dependencies: 2675 | encoding "^0.1.11" 2676 | is-stream "^1.0.1" 2677 | 2678 | node-int64@^0.4.0: 2679 | version "0.4.0" 2680 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2681 | 2682 | node-notifier@^5.0.2: 2683 | version "5.1.2" 2684 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 2685 | dependencies: 2686 | growly "^1.3.0" 2687 | semver "^5.3.0" 2688 | shellwords "^0.1.0" 2689 | which "^1.2.12" 2690 | 2691 | node-pre-gyp@^0.6.36: 2692 | version "0.6.37" 2693 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.37.tgz#3c872b236b2e266e4140578fe1ee88f693323a05" 2694 | dependencies: 2695 | mkdirp "^0.5.1" 2696 | nopt "^4.0.1" 2697 | npmlog "^4.0.2" 2698 | rc "^1.1.7" 2699 | request "^2.81.0" 2700 | rimraf "^2.6.1" 2701 | semver "^5.3.0" 2702 | tape "^4.6.3" 2703 | tar "^2.2.1" 2704 | tar-pack "^3.4.0" 2705 | 2706 | nopt@^4.0.1: 2707 | version "4.0.1" 2708 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2709 | dependencies: 2710 | abbrev "1" 2711 | osenv "^0.1.4" 2712 | 2713 | normalize-package-data@^2.3.2: 2714 | version "2.4.0" 2715 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2716 | dependencies: 2717 | hosted-git-info "^2.1.4" 2718 | is-builtin-module "^1.0.0" 2719 | semver "2 || 3 || 4 || 5" 2720 | validate-npm-package-license "^3.0.1" 2721 | 2722 | normalize-path@^2.0.0, normalize-path@^2.0.1: 2723 | version "2.1.1" 2724 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2725 | dependencies: 2726 | remove-trailing-separator "^1.0.1" 2727 | 2728 | npm-run-path@^2.0.0: 2729 | version "2.0.2" 2730 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2731 | dependencies: 2732 | path-key "^2.0.0" 2733 | 2734 | npmlog@^4.0.2: 2735 | version "4.1.2" 2736 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2737 | dependencies: 2738 | are-we-there-yet "~1.1.2" 2739 | console-control-strings "~1.1.0" 2740 | gauge "~2.7.3" 2741 | set-blocking "~2.0.0" 2742 | 2743 | number-is-nan@^1.0.0: 2744 | version "1.0.1" 2745 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2746 | 2747 | "nwmatcher@>= 1.3.9 < 2.0.0": 2748 | version "1.4.1" 2749 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.1.tgz#7ae9b07b0ea804db7e25f05cb5fe4097d4e4949f" 2750 | 2751 | oauth-sign@~0.8.1: 2752 | version "0.8.2" 2753 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2754 | 2755 | object-assign@^4.0.1, object-assign@^4.1.0: 2756 | version "4.1.1" 2757 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2758 | 2759 | object-inspect@~1.3.0: 2760 | version "1.3.0" 2761 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.3.0.tgz#5b1eb8e6742e2ee83342a637034d844928ba2f6d" 2762 | 2763 | object-keys@^1.0.8: 2764 | version "1.0.11" 2765 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 2766 | 2767 | object.omit@^2.0.0: 2768 | version "2.0.1" 2769 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2770 | dependencies: 2771 | for-own "^0.1.4" 2772 | is-extendable "^0.1.1" 2773 | 2774 | once@^1.3.0, once@^1.3.3, once@^1.4.0: 2775 | version "1.4.0" 2776 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2777 | dependencies: 2778 | wrappy "1" 2779 | 2780 | onetime@^2.0.0: 2781 | version "2.0.1" 2782 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2783 | dependencies: 2784 | mimic-fn "^1.0.0" 2785 | 2786 | optimist@^0.6.1: 2787 | version "0.6.1" 2788 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2789 | dependencies: 2790 | minimist "~0.0.1" 2791 | wordwrap "~0.0.2" 2792 | 2793 | optionator@^0.8.1, optionator@^0.8.2: 2794 | version "0.8.2" 2795 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2796 | dependencies: 2797 | deep-is "~0.1.3" 2798 | fast-levenshtein "~2.0.4" 2799 | levn "~0.3.0" 2800 | prelude-ls "~1.1.2" 2801 | type-check "~0.3.2" 2802 | wordwrap "~1.0.0" 2803 | 2804 | os-homedir@^1.0.0: 2805 | version "1.0.2" 2806 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2807 | 2808 | os-locale@^2.0.0: 2809 | version "2.1.0" 2810 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 2811 | dependencies: 2812 | execa "^0.7.0" 2813 | lcid "^1.0.0" 2814 | mem "^1.1.0" 2815 | 2816 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.1: 2817 | version "1.0.2" 2818 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2819 | 2820 | osenv@^0.1.4: 2821 | version "0.1.4" 2822 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2823 | dependencies: 2824 | os-homedir "^1.0.0" 2825 | os-tmpdir "^1.0.0" 2826 | 2827 | output-file-sync@^1.1.2: 2828 | version "1.1.2" 2829 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2830 | dependencies: 2831 | graceful-fs "^4.1.4" 2832 | mkdirp "^0.5.1" 2833 | object-assign "^4.1.0" 2834 | 2835 | p-cancelable@^0.3.0: 2836 | version "0.3.0" 2837 | resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-0.3.0.tgz#b9e123800bcebb7ac13a479be195b507b98d30fa" 2838 | 2839 | p-finally@^1.0.0: 2840 | version "1.0.0" 2841 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2842 | 2843 | p-limit@^1.1.0: 2844 | version "1.1.0" 2845 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2846 | 2847 | p-locate@^2.0.0: 2848 | version "2.0.0" 2849 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2850 | dependencies: 2851 | p-limit "^1.1.0" 2852 | 2853 | parse-glob@^3.0.4: 2854 | version "3.0.4" 2855 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2856 | dependencies: 2857 | glob-base "^0.3.0" 2858 | is-dotfile "^1.0.0" 2859 | is-extglob "^1.0.0" 2860 | is-glob "^2.0.0" 2861 | 2862 | parse-json@^2.2.0: 2863 | version "2.2.0" 2864 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2865 | dependencies: 2866 | error-ex "^1.2.0" 2867 | 2868 | parse5@^1.5.1: 2869 | version "1.5.1" 2870 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 2871 | 2872 | path-exists@^2.0.0: 2873 | version "2.1.0" 2874 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2875 | dependencies: 2876 | pinkie-promise "^2.0.0" 2877 | 2878 | path-exists@^3.0.0: 2879 | version "3.0.0" 2880 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2881 | 2882 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 2883 | version "1.0.1" 2884 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2885 | 2886 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 2887 | version "1.0.2" 2888 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2889 | 2890 | path-key@^2.0.0: 2891 | version "2.0.1" 2892 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2893 | 2894 | path-parse@^1.0.5: 2895 | version "1.0.5" 2896 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2897 | 2898 | path-type@^1.0.0: 2899 | version "1.1.0" 2900 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2901 | dependencies: 2902 | graceful-fs "^4.1.2" 2903 | pify "^2.0.0" 2904 | pinkie-promise "^2.0.0" 2905 | 2906 | path-type@^2.0.0: 2907 | version "2.0.0" 2908 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 2909 | dependencies: 2910 | pify "^2.0.0" 2911 | 2912 | performance-now@^0.2.0: 2913 | version "0.2.0" 2914 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2915 | 2916 | pify@^2.0.0: 2917 | version "2.3.0" 2918 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2919 | 2920 | pify@^3.0.0: 2921 | version "3.0.0" 2922 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 2923 | 2924 | pinkie-promise@^2.0.0: 2925 | version "2.0.1" 2926 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2927 | dependencies: 2928 | pinkie "^2.0.0" 2929 | 2930 | pinkie@^2.0.0: 2931 | version "2.0.4" 2932 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2933 | 2934 | pkg-dir@^1.0.0: 2935 | version "1.0.0" 2936 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 2937 | dependencies: 2938 | find-up "^1.0.0" 2939 | 2940 | pluralize@^7.0.0: 2941 | version "7.0.0" 2942 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" 2943 | 2944 | prelude-ls@~1.1.2: 2945 | version "1.1.2" 2946 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2947 | 2948 | preserve@^0.2.0: 2949 | version "0.2.0" 2950 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2951 | 2952 | prettier@^1.5.3: 2953 | version "1.7.0" 2954 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.7.0.tgz#47481588f41f7c90f63938feb202ac82554e7150" 2955 | 2956 | pretty-format@^21.1.0: 2957 | version "21.1.0" 2958 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-21.1.0.tgz#557428254323832ee8b7c971cb613442bea67f61" 2959 | dependencies: 2960 | ansi-regex "^3.0.0" 2961 | ansi-styles "^3.2.0" 2962 | 2963 | private@^0.1.6, private@^0.1.7: 2964 | version "0.1.7" 2965 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2966 | 2967 | process-nextick-args@~1.0.6: 2968 | version "1.0.7" 2969 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2970 | 2971 | progress@^2.0.0: 2972 | version "2.0.0" 2973 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 2974 | 2975 | promise@^7.1.1: 2976 | version "7.3.1" 2977 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" 2978 | dependencies: 2979 | asap "~2.0.3" 2980 | 2981 | prop-types@^15.5.10: 2982 | version "15.5.10" 2983 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.5.10.tgz#2797dfc3126182e3a95e3dfbb2e893ddd7456154" 2984 | dependencies: 2985 | fbjs "^0.8.9" 2986 | loose-envify "^1.3.1" 2987 | 2988 | prr@~0.0.0: 2989 | version "0.0.0" 2990 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 2991 | 2992 | pseudomap@^1.0.2: 2993 | version "1.0.2" 2994 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2995 | 2996 | punycode@^1.4.1: 2997 | version "1.4.1" 2998 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2999 | 3000 | qs@~6.4.0: 3001 | version "6.4.0" 3002 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 3003 | 3004 | randomatic@^1.1.3: 3005 | version "1.1.7" 3006 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 3007 | dependencies: 3008 | is-number "^3.0.0" 3009 | kind-of "^4.0.0" 3010 | 3011 | rc@^1.1.7: 3012 | version "1.2.1" 3013 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 3014 | dependencies: 3015 | deep-extend "~0.4.0" 3016 | ini "~1.3.0" 3017 | minimist "^1.2.0" 3018 | strip-json-comments "~2.0.1" 3019 | 3020 | read-pkg-up@^1.0.1: 3021 | version "1.0.1" 3022 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 3023 | dependencies: 3024 | find-up "^1.0.0" 3025 | read-pkg "^1.0.0" 3026 | 3027 | read-pkg-up@^2.0.0: 3028 | version "2.0.0" 3029 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 3030 | dependencies: 3031 | find-up "^2.0.0" 3032 | read-pkg "^2.0.0" 3033 | 3034 | read-pkg@^1.0.0: 3035 | version "1.1.0" 3036 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 3037 | dependencies: 3038 | load-json-file "^1.0.0" 3039 | normalize-package-data "^2.3.2" 3040 | path-type "^1.0.0" 3041 | 3042 | read-pkg@^2.0.0: 3043 | version "2.0.0" 3044 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 3045 | dependencies: 3046 | load-json-file "^2.0.0" 3047 | normalize-package-data "^2.3.2" 3048 | path-type "^2.0.0" 3049 | 3050 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.2: 3051 | version "2.3.3" 3052 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 3053 | dependencies: 3054 | core-util-is "~1.0.0" 3055 | inherits "~2.0.3" 3056 | isarray "~1.0.0" 3057 | process-nextick-args "~1.0.6" 3058 | safe-buffer "~5.1.1" 3059 | string_decoder "~1.0.3" 3060 | util-deprecate "~1.0.1" 3061 | 3062 | readdirp@^2.0.0: 3063 | version "2.1.0" 3064 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 3065 | dependencies: 3066 | graceful-fs "^4.1.2" 3067 | minimatch "^3.0.2" 3068 | readable-stream "^2.0.2" 3069 | set-immediate-shim "^1.0.1" 3070 | 3071 | regenerate@^1.2.1: 3072 | version "1.3.2" 3073 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 3074 | 3075 | regenerator-runtime@^0.10.5: 3076 | version "0.10.5" 3077 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 3078 | 3079 | regenerator-runtime@^0.11.0: 3080 | version "0.11.0" 3081 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1" 3082 | 3083 | regenerator-transform@^0.10.0: 3084 | version "0.10.1" 3085 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 3086 | dependencies: 3087 | babel-runtime "^6.18.0" 3088 | babel-types "^6.19.0" 3089 | private "^0.1.6" 3090 | 3091 | regex-cache@^0.4.2: 3092 | version "0.4.4" 3093 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 3094 | dependencies: 3095 | is-equal-shallow "^0.1.3" 3096 | 3097 | regexpu-core@^2.0.0: 3098 | version "2.0.0" 3099 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 3100 | dependencies: 3101 | regenerate "^1.2.1" 3102 | regjsgen "^0.2.0" 3103 | regjsparser "^0.1.4" 3104 | 3105 | regjsgen@^0.2.0: 3106 | version "0.2.0" 3107 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 3108 | 3109 | regjsparser@^0.1.4: 3110 | version "0.1.5" 3111 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 3112 | dependencies: 3113 | jsesc "~0.5.0" 3114 | 3115 | remove-trailing-separator@^1.0.1: 3116 | version "1.1.0" 3117 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 3118 | 3119 | repeat-element@^1.1.2: 3120 | version "1.1.2" 3121 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3122 | 3123 | repeat-string@^1.5.2: 3124 | version "1.6.1" 3125 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3126 | 3127 | repeating@^2.0.0: 3128 | version "2.0.1" 3129 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3130 | dependencies: 3131 | is-finite "^1.0.0" 3132 | 3133 | request@^2.79.0, request@^2.81.0: 3134 | version "2.81.0" 3135 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 3136 | dependencies: 3137 | aws-sign2 "~0.6.0" 3138 | aws4 "^1.2.1" 3139 | caseless "~0.12.0" 3140 | combined-stream "~1.0.5" 3141 | extend "~3.0.0" 3142 | forever-agent "~0.6.1" 3143 | form-data "~2.1.1" 3144 | har-validator "~4.2.1" 3145 | hawk "~3.1.3" 3146 | http-signature "~1.1.0" 3147 | is-typedarray "~1.0.0" 3148 | isstream "~0.1.2" 3149 | json-stringify-safe "~5.0.1" 3150 | mime-types "~2.1.7" 3151 | oauth-sign "~0.8.1" 3152 | performance-now "^0.2.0" 3153 | qs "~6.4.0" 3154 | safe-buffer "^5.0.1" 3155 | stringstream "~0.0.4" 3156 | tough-cookie "~2.3.0" 3157 | tunnel-agent "^0.6.0" 3158 | uuid "^3.0.0" 3159 | 3160 | require-directory@^2.1.1: 3161 | version "2.1.1" 3162 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3163 | 3164 | require-main-filename@^1.0.1: 3165 | version "1.0.1" 3166 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3167 | 3168 | require-uncached@^1.0.3: 3169 | version "1.0.3" 3170 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 3171 | dependencies: 3172 | caller-path "^0.1.0" 3173 | resolve-from "^1.0.0" 3174 | 3175 | resolve-from@^1.0.0: 3176 | version "1.0.1" 3177 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 3178 | 3179 | resolve@1.1.7: 3180 | version "1.1.7" 3181 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 3182 | 3183 | resolve@^1.1.7, resolve@^1.2.0, resolve@~1.4.0: 3184 | version "1.4.0" 3185 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.4.0.tgz#a75be01c53da25d934a98ebd0e4c4a7312f92a86" 3186 | dependencies: 3187 | path-parse "^1.0.5" 3188 | 3189 | restore-cursor@^2.0.0: 3190 | version "2.0.0" 3191 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 3192 | dependencies: 3193 | onetime "^2.0.0" 3194 | signal-exit "^3.0.2" 3195 | 3196 | resumer@~0.0.0: 3197 | version "0.0.0" 3198 | resolved "https://registry.yarnpkg.com/resumer/-/resumer-0.0.0.tgz#f1e8f461e4064ba39e82af3cdc2a8c893d076759" 3199 | dependencies: 3200 | through "~2.3.4" 3201 | 3202 | right-align@^0.1.1: 3203 | version "0.1.3" 3204 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3205 | dependencies: 3206 | align-text "^0.1.1" 3207 | 3208 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1: 3209 | version "2.6.2" 3210 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 3211 | dependencies: 3212 | glob "^7.0.5" 3213 | 3214 | run-async@^2.2.0: 3215 | version "2.3.0" 3216 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 3217 | dependencies: 3218 | is-promise "^2.1.0" 3219 | 3220 | rx-lite-aggregates@^4.0.8: 3221 | version "4.0.8" 3222 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 3223 | dependencies: 3224 | rx-lite "*" 3225 | 3226 | rx-lite@*, rx-lite@^4.0.8: 3227 | version "4.0.8" 3228 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 3229 | 3230 | safe-buffer@^5.0.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 3231 | version "5.1.1" 3232 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 3233 | 3234 | sane@^2.0.0: 3235 | version "2.0.0" 3236 | resolved "https://registry.yarnpkg.com/sane/-/sane-2.0.0.tgz#99cb79f21f4a53a69d4d0cd957c2db04024b8eb2" 3237 | dependencies: 3238 | anymatch "^1.3.0" 3239 | exec-sh "^0.2.0" 3240 | fb-watchman "^2.0.0" 3241 | minimatch "^3.0.2" 3242 | minimist "^1.1.1" 3243 | walker "~1.0.5" 3244 | watch "~0.10.0" 3245 | optionalDependencies: 3246 | fsevents "^1.1.1" 3247 | 3248 | sax@^1.2.1: 3249 | version "1.2.4" 3250 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 3251 | 3252 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 3253 | version "5.4.1" 3254 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 3255 | 3256 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3257 | version "2.0.0" 3258 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3259 | 3260 | set-immediate-shim@^1.0.1: 3261 | version "1.0.1" 3262 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3263 | 3264 | setimmediate@^1.0.5: 3265 | version "1.0.5" 3266 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 3267 | 3268 | shebang-command@^1.2.0: 3269 | version "1.2.0" 3270 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3271 | dependencies: 3272 | shebang-regex "^1.0.0" 3273 | 3274 | shebang-regex@^1.0.0: 3275 | version "1.0.0" 3276 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3277 | 3278 | shell-quote@^1.6.1: 3279 | version "1.6.1" 3280 | resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767" 3281 | dependencies: 3282 | array-filter "~0.0.0" 3283 | array-map "~0.0.0" 3284 | array-reduce "~0.0.0" 3285 | jsonify "~0.0.0" 3286 | 3287 | shellwords@^0.1.0: 3288 | version "0.1.1" 3289 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" 3290 | 3291 | signal-exit@^3.0.0, signal-exit@^3.0.2: 3292 | version "3.0.2" 3293 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3294 | 3295 | slash@^1.0.0: 3296 | version "1.0.0" 3297 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3298 | 3299 | slice-ansi@0.0.4: 3300 | version "0.0.4" 3301 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 3302 | 3303 | sntp@1.x.x: 3304 | version "1.0.9" 3305 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3306 | dependencies: 3307 | hoek "2.x.x" 3308 | 3309 | source-map-support@^0.4.15: 3310 | version "0.4.18" 3311 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 3312 | dependencies: 3313 | source-map "^0.5.6" 3314 | 3315 | source-map@^0.4.4: 3316 | version "0.4.4" 3317 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3318 | dependencies: 3319 | amdefine ">=0.0.4" 3320 | 3321 | source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1, source-map@~0.5.6: 3322 | version "0.5.7" 3323 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3324 | 3325 | spdx-correct@~1.0.0: 3326 | version "1.0.2" 3327 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3328 | dependencies: 3329 | spdx-license-ids "^1.0.2" 3330 | 3331 | spdx-expression-parse@~1.0.0: 3332 | version "1.0.4" 3333 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3334 | 3335 | spdx-license-ids@^1.0.2: 3336 | version "1.2.2" 3337 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3338 | 3339 | sprintf-js@~1.0.2: 3340 | version "1.0.3" 3341 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3342 | 3343 | sshpk@^1.7.0: 3344 | version "1.13.1" 3345 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 3346 | dependencies: 3347 | asn1 "~0.2.3" 3348 | assert-plus "^1.0.0" 3349 | dashdash "^1.12.0" 3350 | getpass "^0.1.1" 3351 | optionalDependencies: 3352 | bcrypt-pbkdf "^1.0.0" 3353 | ecc-jsbn "~0.1.1" 3354 | jsbn "~0.1.0" 3355 | tweetnacl "~0.14.0" 3356 | 3357 | string-length@^2.0.0: 3358 | version "2.0.0" 3359 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed" 3360 | dependencies: 3361 | astral-regex "^1.0.0" 3362 | strip-ansi "^4.0.0" 3363 | 3364 | string-width@^1.0.1, string-width@^1.0.2: 3365 | version "1.0.2" 3366 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3367 | dependencies: 3368 | code-point-at "^1.0.0" 3369 | is-fullwidth-code-point "^1.0.0" 3370 | strip-ansi "^3.0.0" 3371 | 3372 | string-width@^2.0.0, string-width@^2.1.0: 3373 | version "2.1.1" 3374 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3375 | dependencies: 3376 | is-fullwidth-code-point "^2.0.0" 3377 | strip-ansi "^4.0.0" 3378 | 3379 | string.prototype.trim@~1.1.2: 3380 | version "1.1.2" 3381 | resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.1.2.tgz#d04de2c89e137f4d7d206f086b5ed2fae6be8cea" 3382 | dependencies: 3383 | define-properties "^1.1.2" 3384 | es-abstract "^1.5.0" 3385 | function-bind "^1.0.2" 3386 | 3387 | string_decoder@~1.0.3: 3388 | version "1.0.3" 3389 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 3390 | dependencies: 3391 | safe-buffer "~5.1.0" 3392 | 3393 | stringstream@~0.0.4: 3394 | version "0.0.5" 3395 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3396 | 3397 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3398 | version "3.0.1" 3399 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3400 | dependencies: 3401 | ansi-regex "^2.0.0" 3402 | 3403 | strip-ansi@^4.0.0: 3404 | version "4.0.0" 3405 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3406 | dependencies: 3407 | ansi-regex "^3.0.0" 3408 | 3409 | strip-bom@3.0.0, strip-bom@^3.0.0: 3410 | version "3.0.0" 3411 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3412 | 3413 | strip-bom@^2.0.0: 3414 | version "2.0.0" 3415 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3416 | dependencies: 3417 | is-utf8 "^0.2.0" 3418 | 3419 | strip-eof@^1.0.0: 3420 | version "1.0.0" 3421 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3422 | 3423 | strip-json-comments@~2.0.1: 3424 | version "2.0.1" 3425 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3426 | 3427 | subarg@^1.0.0: 3428 | version "1.0.0" 3429 | resolved "https://registry.yarnpkg.com/subarg/-/subarg-1.0.0.tgz#f62cf17581e996b48fc965699f54c06ae268b8d2" 3430 | dependencies: 3431 | minimist "^1.1.0" 3432 | 3433 | supports-color@^2.0.0: 3434 | version "2.0.0" 3435 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3436 | 3437 | supports-color@^3.1.2: 3438 | version "3.2.3" 3439 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3440 | dependencies: 3441 | has-flag "^1.0.0" 3442 | 3443 | supports-color@^4.0.0: 3444 | version "4.4.0" 3445 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.4.0.tgz#883f7ddabc165142b2a61427f3352ded195d1a3e" 3446 | dependencies: 3447 | has-flag "^2.0.0" 3448 | 3449 | symbol-tree@^3.2.1: 3450 | version "3.2.2" 3451 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 3452 | 3453 | table@^4.0.1: 3454 | version "4.0.1" 3455 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.1.tgz#a8116c133fac2c61f4a420ab6cdf5c4d61f0e435" 3456 | dependencies: 3457 | ajv "^4.7.0" 3458 | ajv-keywords "^1.0.0" 3459 | chalk "^1.1.1" 3460 | lodash "^4.0.0" 3461 | slice-ansi "0.0.4" 3462 | string-width "^2.0.0" 3463 | 3464 | tape@^4.6.3: 3465 | version "4.8.0" 3466 | resolved "https://registry.yarnpkg.com/tape/-/tape-4.8.0.tgz#f6a9fec41cc50a1de50fa33603ab580991f6068e" 3467 | dependencies: 3468 | deep-equal "~1.0.1" 3469 | defined "~1.0.0" 3470 | for-each "~0.3.2" 3471 | function-bind "~1.1.0" 3472 | glob "~7.1.2" 3473 | has "~1.0.1" 3474 | inherits "~2.0.3" 3475 | minimist "~1.2.0" 3476 | object-inspect "~1.3.0" 3477 | resolve "~1.4.0" 3478 | resumer "~0.0.0" 3479 | string.prototype.trim "~1.1.2" 3480 | through "~2.3.8" 3481 | 3482 | tar-pack@^3.4.0: 3483 | version "3.4.0" 3484 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 3485 | dependencies: 3486 | debug "^2.2.0" 3487 | fstream "^1.0.10" 3488 | fstream-ignore "^1.0.5" 3489 | once "^1.3.3" 3490 | readable-stream "^2.1.4" 3491 | rimraf "^2.5.1" 3492 | tar "^2.2.1" 3493 | uid-number "^0.0.6" 3494 | 3495 | tar@^2.2.1: 3496 | version "2.2.1" 3497 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3498 | dependencies: 3499 | block-stream "*" 3500 | fstream "^1.0.2" 3501 | inherits "2" 3502 | 3503 | test-exclude@^4.1.1: 3504 | version "4.1.1" 3505 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26" 3506 | dependencies: 3507 | arrify "^1.0.1" 3508 | micromatch "^2.3.11" 3509 | object-assign "^4.1.0" 3510 | read-pkg-up "^1.0.1" 3511 | require-main-filename "^1.0.1" 3512 | 3513 | text-table@~0.2.0: 3514 | version "0.2.0" 3515 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3516 | 3517 | throat@^4.0.0: 3518 | version "4.1.0" 3519 | resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a" 3520 | 3521 | through@^2.3.6, through@~2.3.4, through@~2.3.8: 3522 | version "2.3.8" 3523 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3524 | 3525 | tmp@^0.0.31: 3526 | version "0.0.31" 3527 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.31.tgz#8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7" 3528 | dependencies: 3529 | os-tmpdir "~1.0.1" 3530 | 3531 | tmpl@1.0.x: 3532 | version "1.0.4" 3533 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 3534 | 3535 | to-fast-properties@^1.0.3: 3536 | version "1.0.3" 3537 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3538 | 3539 | to-fast-properties@^2.0.0: 3540 | version "2.0.0" 3541 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 3542 | 3543 | tough-cookie@^2.3.2, tough-cookie@~2.3.0: 3544 | version "2.3.2" 3545 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3546 | dependencies: 3547 | punycode "^1.4.1" 3548 | 3549 | tr46@~0.0.3: 3550 | version "0.0.3" 3551 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 3552 | 3553 | trim-right@^1.0.1: 3554 | version "1.0.1" 3555 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3556 | 3557 | tryit@^1.0.1: 3558 | version "1.0.3" 3559 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 3560 | 3561 | tunnel-agent@^0.6.0: 3562 | version "0.6.0" 3563 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3564 | dependencies: 3565 | safe-buffer "^5.0.1" 3566 | 3567 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3568 | version "0.14.5" 3569 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3570 | 3571 | type-check@~0.3.2: 3572 | version "0.3.2" 3573 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3574 | dependencies: 3575 | prelude-ls "~1.1.2" 3576 | 3577 | typedarray@^0.0.6: 3578 | version "0.0.6" 3579 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3580 | 3581 | ua-parser-js@^0.7.9: 3582 | version "0.7.14" 3583 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.14.tgz#110d53fa4c3f326c121292bbeac904d2e03387ca" 3584 | 3585 | uglify-js@^2.6: 3586 | version "2.8.29" 3587 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 3588 | dependencies: 3589 | source-map "~0.5.1" 3590 | yargs "~3.10.0" 3591 | optionalDependencies: 3592 | uglify-to-browserify "~1.0.0" 3593 | 3594 | uglify-to-browserify@~1.0.0: 3595 | version "1.0.2" 3596 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3597 | 3598 | uid-number@^0.0.6: 3599 | version "0.0.6" 3600 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3601 | 3602 | user-home@^1.1.1: 3603 | version "1.1.1" 3604 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 3605 | 3606 | util-deprecate@~1.0.1: 3607 | version "1.0.2" 3608 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3609 | 3610 | uuid@^3.0.0: 3611 | version "3.1.0" 3612 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 3613 | 3614 | v8flags@^2.1.1: 3615 | version "2.1.1" 3616 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 3617 | dependencies: 3618 | user-home "^1.1.1" 3619 | 3620 | validate-npm-package-license@^3.0.1: 3621 | version "3.0.1" 3622 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3623 | dependencies: 3624 | spdx-correct "~1.0.0" 3625 | spdx-expression-parse "~1.0.0" 3626 | 3627 | verror@1.10.0: 3628 | version "1.10.0" 3629 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 3630 | dependencies: 3631 | assert-plus "^1.0.0" 3632 | core-util-is "1.0.2" 3633 | extsprintf "^1.2.0" 3634 | 3635 | walker@~1.0.5: 3636 | version "1.0.7" 3637 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 3638 | dependencies: 3639 | makeerror "1.0.x" 3640 | 3641 | watch@~0.10.0: 3642 | version "0.10.0" 3643 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 3644 | 3645 | webidl-conversions@^3.0.0: 3646 | version "3.0.1" 3647 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 3648 | 3649 | webidl-conversions@^4.0.0: 3650 | version "4.0.2" 3651 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" 3652 | 3653 | whatwg-encoding@^1.0.1: 3654 | version "1.0.1" 3655 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 3656 | dependencies: 3657 | iconv-lite "0.4.13" 3658 | 3659 | whatwg-fetch@>=0.10.0: 3660 | version "2.0.3" 3661 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84" 3662 | 3663 | whatwg-url@^4.3.0: 3664 | version "4.8.0" 3665 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0" 3666 | dependencies: 3667 | tr46 "~0.0.3" 3668 | webidl-conversions "^3.0.0" 3669 | 3670 | which-module@^2.0.0: 3671 | version "2.0.0" 3672 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 3673 | 3674 | which@^1.2.12, which@^1.2.9: 3675 | version "1.3.0" 3676 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 3677 | dependencies: 3678 | isexe "^2.0.0" 3679 | 3680 | wide-align@^1.1.0: 3681 | version "1.1.2" 3682 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3683 | dependencies: 3684 | string-width "^1.0.2" 3685 | 3686 | window-size@0.1.0: 3687 | version "0.1.0" 3688 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3689 | 3690 | wordwrap@0.0.2: 3691 | version "0.0.2" 3692 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3693 | 3694 | wordwrap@~0.0.2: 3695 | version "0.0.3" 3696 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3697 | 3698 | wordwrap@~1.0.0: 3699 | version "1.0.0" 3700 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3701 | 3702 | worker-farm@^1.3.1: 3703 | version "1.5.0" 3704 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.5.0.tgz#adfdf0cd40581465ed0a1f648f9735722afd5c8d" 3705 | dependencies: 3706 | errno "^0.1.4" 3707 | xtend "^4.0.1" 3708 | 3709 | wrap-ansi@^2.0.0: 3710 | version "2.1.0" 3711 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3712 | dependencies: 3713 | string-width "^1.0.1" 3714 | strip-ansi "^3.0.1" 3715 | 3716 | wrappy@1: 3717 | version "1.0.2" 3718 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3719 | 3720 | write-file-atomic@^2.1.0: 3721 | version "2.3.0" 3722 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 3723 | dependencies: 3724 | graceful-fs "^4.1.11" 3725 | imurmurhash "^0.1.4" 3726 | signal-exit "^3.0.2" 3727 | 3728 | write@^0.2.1: 3729 | version "0.2.1" 3730 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 3731 | dependencies: 3732 | mkdirp "^0.5.1" 3733 | 3734 | xml-name-validator@^2.0.1: 3735 | version "2.0.1" 3736 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 3737 | 3738 | xtend@^4.0.1: 3739 | version "4.0.1" 3740 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3741 | 3742 | y18n@^3.2.1: 3743 | version "3.2.1" 3744 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3745 | 3746 | yallist@^2.1.2: 3747 | version "2.1.2" 3748 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3749 | 3750 | yargs-parser@^7.0.0: 3751 | version "7.0.0" 3752 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" 3753 | dependencies: 3754 | camelcase "^4.1.0" 3755 | 3756 | yargs@^9.0.0: 3757 | version "9.0.1" 3758 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-9.0.1.tgz#52acc23feecac34042078ee78c0c007f5085db4c" 3759 | dependencies: 3760 | camelcase "^4.1.0" 3761 | cliui "^3.2.0" 3762 | decamelize "^1.1.1" 3763 | get-caller-file "^1.0.1" 3764 | os-locale "^2.0.0" 3765 | read-pkg-up "^2.0.0" 3766 | require-directory "^2.1.1" 3767 | require-main-filename "^1.0.1" 3768 | set-blocking "^2.0.0" 3769 | string-width "^2.0.0" 3770 | which-module "^2.0.0" 3771 | y18n "^3.2.1" 3772 | yargs-parser "^7.0.0" 3773 | 3774 | yargs@~3.10.0: 3775 | version "3.10.0" 3776 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3777 | dependencies: 3778 | camelcase "^1.0.2" 3779 | cliui "^2.1.0" 3780 | decamelize "^1.0.0" 3781 | window-size "0.1.0" 3782 | --------------------------------------------------------------------------------