├── .circleci └── config.yml ├── .eslintrc ├── .flowconfig ├── .gitignore ├── .nvmrc ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Readme.md ├── flow-typed └── npm │ └── jest_v22.x.x.js ├── package.json ├── src ├── __tests__ │ └── jest-sandbox.test.js └── index.js └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | jobs: 3 | build: 4 | docker: 5 | - image: circleci/node:6.13.0 6 | 7 | steps: 8 | - checkout 9 | 10 | - restore_cache: 11 | keys: 12 | - v1-dependencies-{{ checksum "yarn.lock" }} 13 | - v1-dependencies- 14 | 15 | - run: | 16 | yarn global add greenkeeper-lockfile@1 17 | yarn install 18 | 19 | - save_cache: 20 | paths: 21 | - node_modules 22 | key: v1-dependencies-{{ checksum "yarn.lock" }} 23 | 24 | - run: | 25 | $HOME/.config/yarn/global/node_modules/.bin/greenkeeper-lockfile-update 26 | yarn test 27 | $HOME/.config/yarn/global/node_modules/.bin/greenkeeper-lockfile-upload 28 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@colony/eslint-config-colony", 3 | "env": { 4 | "node": true 5 | }, 6 | "settings": { 7 | "import/resolver": { 8 | "node": {} 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | 3 | [include] 4 | 5 | [libs] 6 | flow-typed 7 | 8 | [lints] 9 | 10 | [options] 11 | 12 | [strict] 13 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | coverage 2 | lib 3 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 6.13.0 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## eslint-import-resolver-jest changelog 2 | 3 | ### [ [>](https://github.com/JoinColony/jest-sandbox/tree/v1.1.2) ] 1.1.2 / 19.02.2018 4 | * Some tooling improvements 5 | * Added a changelog 6 | * Added code of conduct 7 | 8 | ### [ [>](https://github.com/JoinColony/jest-sandbox/tree/v1.1.1) ] 1.1.1 / 03.08.2017 9 | * Add forgotten build to package 10 | 11 | ### [ [>](https://github.com/JoinColony/jest-sandbox/tree/v1.1.0) ] 1.1.0 / 25.06.2017 12 | * Support mockRestore() function 13 | 14 | ### [ [>](https://github.com/JoinColony/jest-sandbox/tree/v2.1.0) ] 1.0.1 / 17.04.2017 15 | * package.json additions 16 | 17 | ### [ [>](https://github.com/chmanie/webdriverajax/tree/v1.0.0) ] 1.0.0 / 16.04.2017 18 | * Initial release 19 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as 6 | contributors and maintainers pledge to making participation in our project and 7 | our community a harassment-free experience for everyone, regardless of age, body 8 | size, disability, ethnicity, gender identity and expression, level of experience, 9 | nationality, personal appearance, race, religion, or sexual identity and 10 | orientation. 11 | 12 | ## Our Standards 13 | 14 | Examples of behavior that contributes to creating a positive environment 15 | include: 16 | 17 | * Using welcoming and inclusive language 18 | * Being respectful of differing viewpoints and experiences 19 | * Gracefully accepting constructive criticism 20 | * Focusing on what is best for the community 21 | * Showing empathy towards other community members 22 | 23 | Examples of unacceptable behavior by participants include: 24 | 25 | * The use of sexualized language or imagery and unwelcome sexual attention or 26 | advances 27 | * Trolling, insulting/derogatory comments, and personal or political attacks 28 | * Public or private harassment 29 | * Publishing others' private information, such as a physical or electronic 30 | address, without explicit permission 31 | * Other conduct which could reasonably be considered inappropriate in a 32 | professional setting 33 | 34 | ## Our Responsibilities 35 | 36 | Project maintainers are responsible for clarifying the standards of acceptable 37 | behavior and are expected to take appropriate and fair corrective action in 38 | response to any instances of unacceptable behavior. 39 | 40 | Project maintainers have the right and responsibility to remove, edit, or 41 | reject comments, commits, code, wiki edits, issues, and other contributions 42 | that are not aligned to this Code of Conduct, or to ban temporarily or 43 | permanently any contributor for other behaviors that they deem inappropriate, 44 | threatening, offensive, or harmful. 45 | 46 | ## Scope 47 | 48 | This Code of Conduct applies both within project spaces and in public spaces 49 | when an individual is representing the project or its community. Examples of 50 | representing a project or community include using an official project e-mail 51 | address, posting via an official social media account, or acting as an appointed 52 | representative at an online or offline event. Representation of a project may be 53 | further defined and clarified by project maintainers. 54 | 55 | ## Enforcement 56 | 57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 58 | reported by contacting the project team at [developers@colony.io](mailto:developers@colony.io). All 59 | complaints will be reviewed and investigated and will result in a response that 60 | is deemed necessary and appropriate to the circumstances. The project team is 61 | obligated to maintain confidentiality with regard to the reporter of an incident. 62 | Further details of specific enforcement policies may be posted separately. 63 | 64 | Project maintainers who do not follow or enforce the Code of Conduct in good 65 | faith may face temporary or permanent repercussions as determined by other 66 | members of the project's leadership. 67 | 68 | ## Attribution 69 | 70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, 71 | available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html 72 | 73 | [homepage]: https://www.contributor-covenant.org 74 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2016 Alex Rea 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- 1 | # jest-sandbox 2 | 3 | [![Greenkeeper badge](https://badges.greenkeeper.io/JoinColony/jest-sandbox.svg)](https://greenkeeper.io/) 4 | 5 | Track jest spies and stubs easily. 6 | 7 | [![CircleCI](https://circleci.com/gh/JoinColony/jest-sandbox.svg?style=svg)](https://circleci.com/gh/JoinColony/jest-sandbox) 8 | 9 | The one feature I really missed when switching from [sinon.js](http://sinonjs.org) to jest spies and mocks was _[sandboxes](http://sinonjs.org/releases/v2.1.0/sandbox/)_. They allow you to create as many spies and stubs as you want without having to track them all and clear them manually. 10 | 11 | ### Meet jest-sandbox: 12 | 13 | ```javascript 14 | import createSandbox from 'jest-sandbox'; 15 | 16 | import cow from './moo.js'; 17 | 18 | describe('A cow 🐄', () => { 19 | const sandbox = createSandbox(); 20 | 21 | // Create as many spies as you like 22 | const spyStomach = sandbox.fn(); 23 | const spyPoop = sandbox.spyOn(cow, 'poop'); 24 | 25 | // Clear 'em all with one call 26 | beforeEach(() => sandbox.clear()); 27 | 28 | test('Eats grass', () => { 29 | return cow.eatGrass.then(spyStomach).then(() => { 30 | expect(spyStomach).toHaveBeenCalledWith('🌱'); 31 | expect(spyPoop).toHaveBeenCalledTimes(0); 32 | }); 33 | }); 34 | 35 | test('Sometimes poops', () => { 36 | return cow.digest().then(() => { 37 | expect(spyStomach).toHaveBeenCalledTimes(0); 38 | expect(spyPoop).toHaveBeenCalledWith('💩'); 39 | }); 40 | }); 41 | }); 42 | ``` 43 | 44 | ### Install 45 | 46 | ```shell 47 | yarn add jest-sandbox -D 48 | ``` 49 | 50 | Some people prefer `npm`; 51 | ```shell 52 | npm i jest-sandbox -D 53 | ``` 54 | 55 | ### API 56 | 57 | Make a sandbox: 58 | 59 | ```javascript 60 | import createSandbox from 'jest-sandbox'; 61 | 62 | const sandbox = createSandbox(); 63 | ``` 64 | 65 | #### `sandbox.fn([implementation])` 66 | 67 | Returns a new [mock function](https://facebook.github.io/jest/docs/mock-function-api.html) and keeps track of it. Similar to calling `jest.fn([implementation])`. 68 | 69 | #### `sandbox.spyOn(object, methodName)` 70 | 71 | Spies on a method and returns a the wrapped [mock function](https://facebook.github.io/jest/docs/mock-function-api.html). Similar to calling `jest.spyOn(object, methodName)`. 72 | 73 | #### `sandbox.clear()` 74 | 75 | Clears all spies in the sandbox. Actually calls `.mockClear()` on every spy it keeps track of. 76 | 77 | #### `sandbox.reset()` 78 | 79 | Resets all spies in the sandbox. Actually calls `.mockReset()` on every spy it keeps track of. 80 | 81 | #### `sandbox.restore()` 82 | 83 | Restores all spies in the sandbox. Actually calls `.mockRestore()` on every spy it keeps track of. 84 | 85 | #### Note 86 | Keep in mind that you can still clear, reset and restore the single spies manually, like you're used to. 87 | 88 | ### Contribute 89 | 90 | I'm happy for every feature request, bugfix and / or PR. 91 | 92 | Run tests: 93 | 94 | ```shell 95 | yarn test # npm test is also ok 96 | ``` 97 | 98 | Build the whole shebang: 99 | 100 | ```shell 101 | yarn build # npm build works as well 102 | ``` 103 | -------------------------------------------------------------------------------- /flow-typed/npm/jest_v22.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: 6e1fc0a644aa956f79029fec0709e597 2 | // flow-typed version: 07ebad4796/jest_v22.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 | Array): 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 | Class | RegExp): void, 275 | toThrowError(message?: string | Error | Class | 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 | * Restores all mocks back to their original value. 315 | */ 316 | restoreAllMocks(): JestObjectType, 317 | /** 318 | * Removes any pending timers from the timer system. 319 | */ 320 | clearAllTimers(): void, 321 | /** 322 | * The same as `mock` but not moved to the top of the expectation by 323 | * babel-jest. 324 | */ 325 | doMock(moduleName: string, moduleFactory?: any): JestObjectType, 326 | /** 327 | * The same as `unmock` but not moved to the top of the expectation by 328 | * babel-jest. 329 | */ 330 | dontMock(moduleName: string): JestObjectType, 331 | /** 332 | * Returns a new, unused mock function. Optionally takes a mock 333 | * implementation. 334 | */ 335 | fn, TReturn>( 336 | implementation?: (...args: TArguments) => TReturn 337 | ): JestMockFn, 338 | /** 339 | * Determines if the given function is a mocked function. 340 | */ 341 | isMockFunction(fn: Function): boolean, 342 | /** 343 | * Given the name of a module, use the automatic mocking system to generate a 344 | * mocked version of the module for you. 345 | */ 346 | genMockFromModule(moduleName: string): any, 347 | /** 348 | * Mocks a module with an auto-mocked version when it is being required. 349 | * 350 | * The second argument can be used to specify an explicit module factory that 351 | * is being run instead of using Jest's automocking feature. 352 | * 353 | * The third argument can be used to create virtual mocks -- mocks of modules 354 | * that don't exist anywhere in the system. 355 | */ 356 | mock( 357 | moduleName: string, 358 | moduleFactory?: any, 359 | options?: Object 360 | ): JestObjectType, 361 | /** 362 | * Returns the actual module instead of a mock, bypassing all checks on 363 | * whether the module should receive a mock implementation or not. 364 | */ 365 | requireActual(moduleName: string): any, 366 | /** 367 | * Returns a mock module instead of the actual module, bypassing all checks 368 | * on whether the module should be required normally or not. 369 | */ 370 | requireMock(moduleName: string): any, 371 | /** 372 | * Resets the module registry - the cache of all required modules. This is 373 | * useful to isolate modules where local state might conflict between tests. 374 | */ 375 | resetModules(): JestObjectType, 376 | /** 377 | * Exhausts the micro-task queue (usually interfaced in node via 378 | * process.nextTick). 379 | */ 380 | runAllTicks(): void, 381 | /** 382 | * Exhausts the macro-task queue (i.e., all tasks queued by setTimeout(), 383 | * setInterval(), and setImmediate()). 384 | */ 385 | runAllTimers(): void, 386 | /** 387 | * Exhausts all tasks queued by setImmediate(). 388 | */ 389 | runAllImmediates(): void, 390 | /** 391 | * Executes only the macro task queue (i.e. all tasks queued by setTimeout() 392 | * or setInterval() and setImmediate()). 393 | */ 394 | runTimersToTime(msToRun: number): void, 395 | /** 396 | * Executes only the macro-tasks that are currently pending (i.e., only the 397 | * tasks that have been queued by setTimeout() or setInterval() up to this 398 | * point) 399 | */ 400 | runOnlyPendingTimers(): void, 401 | /** 402 | * Explicitly supplies the mock object that the module system should return 403 | * for the specified module. Note: It is recommended to use jest.mock() 404 | * instead. 405 | */ 406 | setMock(moduleName: string, moduleExports: any): JestObjectType, 407 | /** 408 | * Indicates that the module system should never return a mocked version of 409 | * the specified module from require() (e.g. that it should always return the 410 | * real module). 411 | */ 412 | unmock(moduleName: string): JestObjectType, 413 | /** 414 | * Instructs Jest to use fake versions of the standard timer functions 415 | * (setTimeout, setInterval, clearTimeout, clearInterval, nextTick, 416 | * setImmediate and clearImmediate). 417 | */ 418 | useFakeTimers(): JestObjectType, 419 | /** 420 | * Instructs Jest to use the real versions of the standard timer functions. 421 | */ 422 | useRealTimers(): JestObjectType, 423 | /** 424 | * Creates a mock function similar to jest.fn but also tracks calls to 425 | * object[methodName]. 426 | */ 427 | spyOn(object: Object, methodName: string): JestMockFn, 428 | /** 429 | * Set the default timeout interval for tests and before/after hooks in milliseconds. 430 | * Note: The default timeout interval is 5 seconds if this method is not called. 431 | */ 432 | setTimeout(timeout: number): JestObjectType 433 | }; 434 | 435 | type JestSpyType = { 436 | calls: JestCallsType 437 | }; 438 | 439 | /** Runs this function after every test inside this context */ 440 | declare function afterEach( 441 | fn: (done: () => void) => ?Promise, 442 | timeout?: number 443 | ): void; 444 | /** Runs this function before every test inside this context */ 445 | declare function beforeEach( 446 | fn: (done: () => void) => ?Promise, 447 | timeout?: number 448 | ): void; 449 | /** Runs this function after all tests have finished inside this context */ 450 | declare function afterAll( 451 | fn: (done: () => void) => ?Promise, 452 | timeout?: number 453 | ): void; 454 | /** Runs this function before any tests have started inside this context */ 455 | declare function beforeAll( 456 | fn: (done: () => void) => ?Promise, 457 | timeout?: number 458 | ): void; 459 | 460 | /** A context for grouping tests together */ 461 | declare var describe: { 462 | /** 463 | * Creates a block that groups together several related tests in one "test suite" 464 | */ 465 | (name: string, fn: () => void): void, 466 | 467 | /** 468 | * Only run this describe block 469 | */ 470 | only(name: string, fn: () => void): void, 471 | 472 | /** 473 | * Skip running this describe block 474 | */ 475 | skip(name: string, fn: () => void): void 476 | }; 477 | 478 | /** An individual test unit */ 479 | declare var it: { 480 | /** 481 | * An individual test unit 482 | * 483 | * @param {string} Name of Test 484 | * @param {Function} Test 485 | * @param {number} Timeout for the test, in milliseconds. 486 | */ 487 | ( 488 | name: string, 489 | fn?: (done: () => void) => ?Promise, 490 | timeout?: number 491 | ): void, 492 | /** 493 | * Only run this test 494 | * 495 | * @param {string} Name of Test 496 | * @param {Function} Test 497 | * @param {number} Timeout for the test, in milliseconds. 498 | */ 499 | only( 500 | name: string, 501 | fn?: (done: () => void) => ?Promise, 502 | timeout?: number 503 | ): void, 504 | /** 505 | * Skip running this test 506 | * 507 | * @param {string} Name of Test 508 | * @param {Function} Test 509 | * @param {number} Timeout for the test, in milliseconds. 510 | */ 511 | skip( 512 | name: string, 513 | fn?: (done: () => void) => ?Promise, 514 | timeout?: number 515 | ): void, 516 | /** 517 | * Run the test concurrently 518 | * 519 | * @param {string} Name of Test 520 | * @param {Function} Test 521 | * @param {number} Timeout for the test, in milliseconds. 522 | */ 523 | concurrent( 524 | name: string, 525 | fn?: (done: () => void) => ?Promise, 526 | timeout?: number 527 | ): void 528 | }; 529 | declare function fit( 530 | name: string, 531 | fn: (done: () => void) => ?Promise, 532 | timeout?: number 533 | ): void; 534 | /** An individual test unit */ 535 | declare var test: typeof it; 536 | /** A disabled group of tests */ 537 | declare var xdescribe: typeof describe; 538 | /** A focused group of tests */ 539 | declare var fdescribe: typeof describe; 540 | /** A disabled individual test */ 541 | declare var xit: typeof it; 542 | /** A disabled individual test */ 543 | declare var xtest: typeof it; 544 | 545 | /** The expect function is used every time you want to test a value */ 546 | declare var expect: { 547 | /** The object that you want to make assertions against */ 548 | (value: any): JestExpectType & JestPromiseType & EnzymeMatchersType, 549 | /** Add additional Jasmine matchers to Jest's roster */ 550 | extend(matchers: { [name: string]: JestMatcher }): void, 551 | /** Add a module that formats application-specific data structures. */ 552 | addSnapshotSerializer(serializer: (input: Object) => string): void, 553 | assertions(expectedAssertions: number): void, 554 | hasAssertions(): void, 555 | any(value: mixed): JestAsymmetricEqualityType, 556 | anything(): void, 557 | arrayContaining(value: Array): void, 558 | objectContaining(value: Object): void, 559 | /** Matches any received string that contains the exact expected string. */ 560 | stringContaining(value: string): void, 561 | stringMatching(value: string | RegExp): void 562 | }; 563 | 564 | // TODO handle return type 565 | // http://jasmine.github.io/2.4/introduction.html#section-Spies 566 | declare function spyOn(value: mixed, method: string): Object; 567 | 568 | /** Holds all functions related to manipulating test runner */ 569 | declare var jest: JestObjectType; 570 | 571 | /** 572 | * The global Jasmine object, this is generally not exposed as the public API, 573 | * using features inside here could break in later versions of Jest. 574 | */ 575 | declare var jasmine: { 576 | DEFAULT_TIMEOUT_INTERVAL: number, 577 | any(value: mixed): JestAsymmetricEqualityType, 578 | anything(): void, 579 | arrayContaining(value: Array): void, 580 | clock(): JestClockType, 581 | createSpy(name: string): JestSpyType, 582 | createSpyObj( 583 | baseName: string, 584 | methodNames: Array 585 | ): { [methodName: string]: JestSpyType }, 586 | objectContaining(value: Object): void, 587 | stringMatching(value: string): void 588 | }; 589 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jest-sandbox", 3 | "version": "1.1.2", 4 | "description": "Simple sinon like sandbox for jest", 5 | "main": "lib/index.js", 6 | "scripts": { 7 | "build": "yarn run build:flow && yarn run build:lib", 8 | "build:flow": "flow-copy-source src lib --ignore '__tests__/*.js'", 9 | "build:lib": "flow-remove-types src/index.js > lib/index.js", 10 | "flow": "flow check", 11 | "lint": "eslint src", 12 | "test": "yarn run flow && yarn run lint && yarn run test:unit", 13 | "test:unit": "jest" 14 | }, 15 | "files": [ 16 | "lib", 17 | "LICENSE", 18 | "Readme.md", 19 | "CODE_OF_CONDUCT.md", 20 | "CHANGELOG.md" 21 | ], 22 | "keywords": [ 23 | "jest", 24 | "sinon", 25 | "sandbox", 26 | "testing" 27 | ], 28 | "repository": { 29 | "type": "git", 30 | "url": "git+https://github.com/JoinColony/jest-sandbox.git" 31 | }, 32 | "bugs": { 33 | "url": "https://github.com/JoinColony/jest-sandbox/issues" 34 | }, 35 | "homepage": "https://github.com/JoinColony/jest-sandbox", 36 | "author": "Christian Maniewski ", 37 | "license": "MIT", 38 | "devDependencies": { 39 | "@colony/eslint-config-colony": "^4.0.1", 40 | "babel-eslint": "^8.2.1", 41 | "babel-jest": "^22.4.0", 42 | "eslint": "^4.17.0", 43 | "eslint-config-airbnb-base": "^12.1.0", 44 | "eslint-config-prettier": "^2.9.0", 45 | "eslint-plugin-flowtype": "^2.44.0", 46 | "eslint-plugin-import": "^2.8.0", 47 | "eslint-plugin-prettier": "^2.6.0", 48 | "flow-bin": "^0.66.0", 49 | "flow-copy-source": "^1.3.0", 50 | "flow-remove-types": "^1.2.3", 51 | "jest": "^22.4.0", 52 | "jest-flow-transform": "^1.0.1", 53 | "prettier": "^1.10.2" 54 | }, 55 | "jest": { 56 | "testEnvironment": "node", 57 | "collectCoverage": true, 58 | "transform": { 59 | "^.+\\.js(?:\\.flow)?$": "jest-flow-transform" 60 | } 61 | } 62 | } 63 | -------------------------------------------------------------------------------- /src/__tests__/jest-sandbox.test.js: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | /* eslint-env jest */ 3 | /* eslint-disable no-underscore-dangle, class-methods-use-this */ 4 | 5 | const createSandbox = require('..'); 6 | 7 | test('Initialises correctly', () => { 8 | const sandbox = createSandbox(); 9 | expect(sandbox._mocks).toEqual([]); 10 | }); 11 | 12 | test('Initialisation shortcut', () => { 13 | const sandbox = createSandbox(); 14 | expect(sandbox._mocks).toEqual([]); 15 | }); 16 | 17 | test('Provides jest mocks', () => { 18 | const sandbox = createSandbox(); 19 | const mock = sandbox.fn(); 20 | mock('a'); 21 | expect(jest.isMockFunction(mock)).toBeTruthy(); 22 | expect(mock).toBeCalledWith('a'); 23 | }); 24 | 25 | test('Keeps track of mocks', () => { 26 | const sandbox = createSandbox(); 27 | const mock = sandbox.fn(); 28 | expect(sandbox._mocks[0]).toBe(mock); 29 | }); 30 | 31 | test('Supports spyOn', () => { 32 | const sandbox = createSandbox(); 33 | class CoolClass { 34 | hello() { 35 | return 'hello'; 36 | } 37 | } 38 | const mock = sandbox.spyOn(CoolClass.prototype, 'hello'); 39 | const cool = new CoolClass(); 40 | cool.hello(); 41 | expect(mock).toHaveBeenCalled(); 42 | sandbox.clear(); 43 | expect(mock.mock.calls).toHaveLength(0); 44 | }); 45 | 46 | test('Clears all mocks', () => { 47 | const sandbox = createSandbox(); 48 | const mockA = sandbox.fn(); 49 | const mockB = sandbox.fn(); 50 | mockA('a'); 51 | mockB('b'); 52 | expect(mockA).toBeCalledWith('a'); 53 | expect(mockB).toBeCalledWith('b'); 54 | sandbox.clear(); 55 | expect(mockA.mock.calls).toHaveLength(0); 56 | expect(mockB.mock.calls).toHaveLength(0); 57 | }); 58 | 59 | test('Resets all mocks', () => { 60 | const sandbox = createSandbox(); 61 | const mockA = sandbox.fn(() => 'a'); 62 | const mockB = sandbox.fn(() => 'b'); 63 | const a = mockA(); 64 | const b = mockB(); 65 | expect(a).toEqual('a'); 66 | expect(b).toEqual('b'); 67 | sandbox.reset(); 68 | const x = mockA(); 69 | const y = mockB(); 70 | expect(x).toBeUndefined(); 71 | expect(y).toBeUndefined(); 72 | }); 73 | 74 | test('Restores all spies', () => { 75 | const sandbox = createSandbox(); 76 | class CoolClass { 77 | hello() { 78 | return 'hello'; 79 | } 80 | } 81 | sandbox 82 | .spyOn(CoolClass.prototype, 'hello') 83 | .mockImplementation(() => 'yo, homie'); 84 | const cool = new CoolClass(); 85 | expect(cool.hello()).toBe('yo, homie'); 86 | sandbox.restore(); 87 | expect(cool.hello()).toBe('hello'); 88 | }); 89 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | /* eslint-env jest */ 3 | /* global JestMockFn */ 4 | 5 | class JestSandbox { 6 | _mocks: Array>; 7 | constructor() { 8 | this._mocks = []; 9 | } 10 | _each(method: string, ...args: Array): void { 11 | this._mocks.forEach(mock => mock[method](...args)); 12 | } 13 | fn(...args: Array): Function { 14 | const mock = jest.fn(...args); 15 | this._mocks.push(mock); 16 | return mock; 17 | } 18 | spyOn(...args: Array): Function { 19 | const mock = jest.spyOn(...args); 20 | this._mocks.push(mock); 21 | return mock; 22 | } 23 | clear(): void { 24 | this._each('mockClear'); 25 | } 26 | reset(): void { 27 | this._each('mockReset'); 28 | } 29 | restore(): void { 30 | this._each('mockRestore'); 31 | } 32 | } 33 | 34 | const createSandbox = () => new JestSandbox(); 35 | 36 | module.exports = createSandbox; 37 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@7.0.0-beta.36": 6 | version "7.0.0-beta.36" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0-beta.36.tgz#2349d7ec04b3a06945ae173280ef8579b63728e4" 8 | dependencies: 9 | chalk "^2.0.0" 10 | esutils "^2.0.2" 11 | js-tokens "^3.0.0" 12 | 13 | "@babel/helper-function-name@7.0.0-beta.36": 14 | version "7.0.0-beta.36" 15 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.0.0-beta.36.tgz#366e3bc35147721b69009f803907c4d53212e88d" 16 | dependencies: 17 | "@babel/helper-get-function-arity" "7.0.0-beta.36" 18 | "@babel/template" "7.0.0-beta.36" 19 | "@babel/types" "7.0.0-beta.36" 20 | 21 | "@babel/helper-get-function-arity@7.0.0-beta.36": 22 | version "7.0.0-beta.36" 23 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0-beta.36.tgz#f5383bac9a96b274828b10d98900e84ee43e32b8" 24 | dependencies: 25 | "@babel/types" "7.0.0-beta.36" 26 | 27 | "@babel/template@7.0.0-beta.36": 28 | version "7.0.0-beta.36" 29 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.0.0-beta.36.tgz#02e903de5d68bd7899bce3c5b5447e59529abb00" 30 | dependencies: 31 | "@babel/code-frame" "7.0.0-beta.36" 32 | "@babel/types" "7.0.0-beta.36" 33 | babylon "7.0.0-beta.36" 34 | lodash "^4.2.0" 35 | 36 | "@babel/traverse@7.0.0-beta.36": 37 | version "7.0.0-beta.36" 38 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.0.0-beta.36.tgz#1dc6f8750e89b6b979de5fe44aa993b1a2192261" 39 | dependencies: 40 | "@babel/code-frame" "7.0.0-beta.36" 41 | "@babel/helper-function-name" "7.0.0-beta.36" 42 | "@babel/types" "7.0.0-beta.36" 43 | babylon "7.0.0-beta.36" 44 | debug "^3.0.1" 45 | globals "^11.1.0" 46 | invariant "^2.2.0" 47 | lodash "^4.2.0" 48 | 49 | "@babel/types@7.0.0-beta.36": 50 | version "7.0.0-beta.36" 51 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.0.0-beta.36.tgz#64f2004353de42adb72f9ebb4665fc35b5499d23" 52 | dependencies: 53 | esutils "^2.0.2" 54 | lodash "^4.2.0" 55 | to-fast-properties "^2.0.0" 56 | 57 | "@colony/eslint-config-colony@^4.0.1": 58 | version "4.0.1" 59 | resolved "https://registry.yarnpkg.com/@colony/eslint-config-colony/-/eslint-config-colony-4.0.1.tgz#74495655bf461ef196edc262983c471b42cf2d75" 60 | 61 | abab@^1.0.3: 62 | version "1.0.3" 63 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.3.tgz#b81de5f7274ec4e756d797cd834f303642724e5d" 64 | 65 | abbrev@1: 66 | version "1.1.1" 67 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 68 | 69 | acorn-globals@^3.1.0: 70 | version "3.1.0" 71 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 72 | dependencies: 73 | acorn "^4.0.4" 74 | 75 | acorn-jsx@^3.0.0: 76 | version "3.0.1" 77 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 78 | dependencies: 79 | acorn "^3.0.4" 80 | 81 | acorn@^3.0.4: 82 | version "3.3.0" 83 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 84 | 85 | acorn@^4.0.4: 86 | version "4.0.11" 87 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.11.tgz#edcda3bd937e7556410d42ed5860f67399c794c0" 88 | 89 | acorn@^5.4.0: 90 | version "5.4.1" 91 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.4.1.tgz#fdc58d9d17f4a4e98d102ded826a9b9759125102" 92 | 93 | ajv-keywords@^2.1.0: 94 | version "2.1.1" 95 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762" 96 | 97 | ajv@^4.9.1: 98 | version "4.11.6" 99 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.6.tgz#947e93049790942b2a2d60a8289b28924d39f987" 100 | dependencies: 101 | co "^4.6.0" 102 | json-stable-stringify "^1.0.1" 103 | 104 | ajv@^5.2.3, ajv@^5.3.0: 105 | version "5.5.2" 106 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 107 | dependencies: 108 | co "^4.6.0" 109 | fast-deep-equal "^1.0.0" 110 | fast-json-stable-stringify "^2.0.0" 111 | json-schema-traverse "^0.3.0" 112 | 113 | align-text@^0.1.1, align-text@^0.1.3: 114 | version "0.1.4" 115 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 116 | dependencies: 117 | kind-of "^3.0.2" 118 | longest "^1.0.1" 119 | repeat-string "^1.5.2" 120 | 121 | amdefine@>=0.0.4: 122 | version "1.0.1" 123 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 124 | 125 | ansi-escapes@^1.4.0: 126 | version "1.4.0" 127 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 128 | 129 | ansi-escapes@^3.0.0: 130 | version "3.0.0" 131 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92" 132 | 133 | ansi-regex@^2.0.0: 134 | version "2.1.1" 135 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 136 | 137 | ansi-regex@^3.0.0: 138 | version "3.0.0" 139 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 140 | 141 | ansi-styles@^2.2.1: 142 | version "2.2.1" 143 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 144 | 145 | ansi-styles@^3.0.0: 146 | version "3.0.0" 147 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.0.0.tgz#5404e93a544c4fec7f048262977bebfe3155e0c1" 148 | dependencies: 149 | color-convert "^1.0.0" 150 | 151 | ansi-styles@^3.2.0: 152 | version "3.2.0" 153 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 154 | dependencies: 155 | color-convert "^1.9.0" 156 | 157 | anymatch@^1.3.0: 158 | version "1.3.0" 159 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 160 | dependencies: 161 | arrify "^1.0.0" 162 | micromatch "^2.1.5" 163 | 164 | anymatch@^2.0.0: 165 | version "2.0.0" 166 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" 167 | dependencies: 168 | micromatch "^3.1.4" 169 | normalize-path "^2.1.1" 170 | 171 | append-transform@^0.4.0: 172 | version "0.4.0" 173 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 174 | dependencies: 175 | default-require-extensions "^1.0.0" 176 | 177 | aproba@^1.0.3: 178 | version "1.2.0" 179 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 180 | 181 | are-we-there-yet@~1.1.2: 182 | version "1.1.4" 183 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 184 | dependencies: 185 | delegates "^1.0.0" 186 | readable-stream "^2.0.6" 187 | 188 | argparse@^1.0.7: 189 | version "1.0.9" 190 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 191 | dependencies: 192 | sprintf-js "~1.0.2" 193 | 194 | arr-diff@^2.0.0: 195 | version "2.0.0" 196 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 197 | dependencies: 198 | arr-flatten "^1.0.1" 199 | 200 | arr-diff@^4.0.0: 201 | version "4.0.0" 202 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 203 | 204 | arr-flatten@^1.0.1: 205 | version "1.0.1" 206 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 207 | 208 | arr-flatten@^1.1.0: 209 | version "1.1.0" 210 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 211 | 212 | arr-union@^3.1.0: 213 | version "3.1.0" 214 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 215 | 216 | array-equal@^1.0.0: 217 | version "1.0.0" 218 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 219 | 220 | array-union@^1.0.1: 221 | version "1.0.2" 222 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 223 | dependencies: 224 | array-uniq "^1.0.1" 225 | 226 | array-uniq@^1.0.1: 227 | version "1.0.3" 228 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 229 | 230 | array-unique@^0.2.1: 231 | version "0.2.1" 232 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 233 | 234 | array-unique@^0.3.2: 235 | version "0.3.2" 236 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 237 | 238 | arrify@^1.0.0, arrify@^1.0.1: 239 | version "1.0.1" 240 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 241 | 242 | asn1@~0.2.3: 243 | version "0.2.3" 244 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 245 | 246 | assert-plus@1.0.0, assert-plus@^1.0.0: 247 | version "1.0.0" 248 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 249 | 250 | assert-plus@^0.2.0: 251 | version "0.2.0" 252 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 253 | 254 | assign-symbols@^1.0.0: 255 | version "1.0.0" 256 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 257 | 258 | async-each@^1.0.0: 259 | version "1.0.1" 260 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 261 | 262 | async@^1.4.0: 263 | version "1.5.2" 264 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 265 | 266 | async@^2.1.4: 267 | version "2.3.0" 268 | resolved "https://registry.yarnpkg.com/async/-/async-2.3.0.tgz#1013d1051047dd320fe24e494d5c66ecaf6147d9" 269 | dependencies: 270 | lodash "^4.14.0" 271 | 272 | asynckit@^0.4.0: 273 | version "0.4.0" 274 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 275 | 276 | atob@^2.0.0: 277 | version "2.0.3" 278 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.0.3.tgz#19c7a760473774468f20b2d2d03372ad7d4cbf5d" 279 | 280 | aws-sign2@~0.6.0: 281 | version "0.6.0" 282 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 283 | 284 | aws4@^1.2.1: 285 | version "1.6.0" 286 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 287 | 288 | babel-code-frame@^6.22.0: 289 | version "6.22.0" 290 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 291 | dependencies: 292 | chalk "^1.1.0" 293 | esutils "^2.0.2" 294 | js-tokens "^3.0.0" 295 | 296 | babel-core@^6.0.0, babel-core@^6.24.1: 297 | version "6.24.1" 298 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.1.tgz#8c428564dce1e1f41fb337ec34f4c3b022b5ad83" 299 | dependencies: 300 | babel-code-frame "^6.22.0" 301 | babel-generator "^6.24.1" 302 | babel-helpers "^6.24.1" 303 | babel-messages "^6.23.0" 304 | babel-register "^6.24.1" 305 | babel-runtime "^6.22.0" 306 | babel-template "^6.24.1" 307 | babel-traverse "^6.24.1" 308 | babel-types "^6.24.1" 309 | babylon "^6.11.0" 310 | convert-source-map "^1.1.0" 311 | debug "^2.1.1" 312 | json5 "^0.5.0" 313 | lodash "^4.2.0" 314 | minimatch "^3.0.2" 315 | path-is-absolute "^1.0.0" 316 | private "^0.1.6" 317 | slash "^1.0.0" 318 | source-map "^0.5.0" 319 | 320 | babel-eslint@^8.2.1: 321 | version "8.2.1" 322 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-8.2.1.tgz#136888f3c109edc65376c23ebf494f36a3e03951" 323 | dependencies: 324 | "@babel/code-frame" "7.0.0-beta.36" 325 | "@babel/traverse" "7.0.0-beta.36" 326 | "@babel/types" "7.0.0-beta.36" 327 | babylon "7.0.0-beta.36" 328 | eslint-scope "~3.7.1" 329 | eslint-visitor-keys "^1.0.0" 330 | 331 | babel-generator@^6.18.0, babel-generator@^6.24.1: 332 | version "6.24.1" 333 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.1.tgz#e715f486c58ded25649d888944d52aa07c5d9497" 334 | dependencies: 335 | babel-messages "^6.23.0" 336 | babel-runtime "^6.22.0" 337 | babel-types "^6.24.1" 338 | detect-indent "^4.0.0" 339 | jsesc "^1.3.0" 340 | lodash "^4.2.0" 341 | source-map "^0.5.0" 342 | trim-right "^1.0.1" 343 | 344 | babel-helpers@^6.24.1: 345 | version "6.24.1" 346 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 347 | dependencies: 348 | babel-runtime "^6.22.0" 349 | babel-template "^6.24.1" 350 | 351 | babel-jest@^19.0.0: 352 | version "19.0.0" 353 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-19.0.0.tgz#59323ced99a3a84d359da219ca881074ffc6ce3f" 354 | dependencies: 355 | babel-core "^6.0.0" 356 | babel-plugin-istanbul "^4.0.0" 357 | babel-preset-jest "^19.0.0" 358 | 359 | babel-messages@^6.23.0: 360 | version "6.23.0" 361 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 362 | dependencies: 363 | babel-runtime "^6.22.0" 364 | 365 | babel-plugin-istanbul@^4.0.0: 366 | version "4.1.1" 367 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.1.tgz#c12de0fc6fe42adfb16be56f1ad11e4a9782eca9" 368 | dependencies: 369 | find-up "^2.1.0" 370 | istanbul-lib-instrument "^1.6.2" 371 | test-exclude "^4.0.3" 372 | 373 | babel-plugin-jest-hoist@^19.0.0: 374 | version "19.0.0" 375 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-19.0.0.tgz#4ae2a04ea612a6e73651f3fde52c178991304bea" 376 | 377 | babel-preset-jest@^19.0.0: 378 | version "19.0.0" 379 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-19.0.0.tgz#22d67201d02324a195811288eb38294bb3cac396" 380 | dependencies: 381 | babel-plugin-jest-hoist "^19.0.0" 382 | 383 | babel-register@^6.24.1: 384 | version "6.24.1" 385 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 386 | dependencies: 387 | babel-core "^6.24.1" 388 | babel-runtime "^6.22.0" 389 | core-js "^2.4.0" 390 | home-or-tmp "^2.0.0" 391 | lodash "^4.2.0" 392 | mkdirp "^0.5.1" 393 | source-map-support "^0.4.2" 394 | 395 | babel-runtime@^6.22.0: 396 | version "6.23.0" 397 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 398 | dependencies: 399 | core-js "^2.4.0" 400 | regenerator-runtime "^0.10.0" 401 | 402 | babel-template@^6.16.0, babel-template@^6.24.1: 403 | version "6.24.1" 404 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333" 405 | dependencies: 406 | babel-runtime "^6.22.0" 407 | babel-traverse "^6.24.1" 408 | babel-types "^6.24.1" 409 | babylon "^6.11.0" 410 | lodash "^4.2.0" 411 | 412 | babel-traverse@^6.18.0, babel-traverse@^6.24.1: 413 | version "6.24.1" 414 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695" 415 | dependencies: 416 | babel-code-frame "^6.22.0" 417 | babel-messages "^6.23.0" 418 | babel-runtime "^6.22.0" 419 | babel-types "^6.24.1" 420 | babylon "^6.15.0" 421 | debug "^2.2.0" 422 | globals "^9.0.0" 423 | invariant "^2.2.0" 424 | lodash "^4.2.0" 425 | 426 | babel-types@^6.18.0, babel-types@^6.24.1: 427 | version "6.24.1" 428 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975" 429 | dependencies: 430 | babel-runtime "^6.22.0" 431 | esutils "^2.0.2" 432 | lodash "^4.2.0" 433 | to-fast-properties "^1.0.1" 434 | 435 | babylon@7.0.0-beta.36: 436 | version "7.0.0-beta.36" 437 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-7.0.0-beta.36.tgz#3a3683ba6a9a1e02b0aa507c8e63435e39305b9e" 438 | 439 | babylon@^6.11.0, babylon@^6.13.0, babylon@^6.15.0: 440 | version "6.16.1" 441 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.16.1.tgz#30c5a22f481978a9e7f8cdfdf496b11d94b404d3" 442 | 443 | balanced-match@^0.4.1: 444 | version "0.4.2" 445 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 446 | 447 | balanced-match@^1.0.0: 448 | version "1.0.0" 449 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 450 | 451 | base@^0.11.1: 452 | version "0.11.2" 453 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 454 | dependencies: 455 | cache-base "^1.0.1" 456 | class-utils "^0.3.5" 457 | component-emitter "^1.2.1" 458 | define-property "^1.0.0" 459 | isobject "^3.0.1" 460 | mixin-deep "^1.2.0" 461 | pascalcase "^0.1.1" 462 | 463 | bcrypt-pbkdf@^1.0.0: 464 | version "1.0.1" 465 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 466 | dependencies: 467 | tweetnacl "^0.14.3" 468 | 469 | binary-extensions@^1.0.0: 470 | version "1.11.0" 471 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 472 | 473 | block-stream@*: 474 | version "0.0.9" 475 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 476 | dependencies: 477 | inherits "~2.0.0" 478 | 479 | boom@2.x.x: 480 | version "2.10.1" 481 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 482 | dependencies: 483 | hoek "2.x.x" 484 | 485 | brace-expansion@^1.0.0: 486 | version "1.1.7" 487 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.7.tgz#3effc3c50e000531fb720eaff80f0ae8ef23cf59" 488 | dependencies: 489 | balanced-match "^0.4.1" 490 | concat-map "0.0.1" 491 | 492 | brace-expansion@^1.1.7: 493 | version "1.1.11" 494 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 495 | dependencies: 496 | balanced-match "^1.0.0" 497 | concat-map "0.0.1" 498 | 499 | braces@^1.8.2: 500 | version "1.8.5" 501 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 502 | dependencies: 503 | expand-range "^1.8.1" 504 | preserve "^0.2.0" 505 | repeat-element "^1.1.2" 506 | 507 | braces@^2.3.0, braces@^2.3.1: 508 | version "2.3.1" 509 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.1.tgz#7086c913b4e5a08dbe37ac0ee6a2500c4ba691bb" 510 | dependencies: 511 | arr-flatten "^1.1.0" 512 | array-unique "^0.3.2" 513 | define-property "^1.0.0" 514 | extend-shallow "^2.0.1" 515 | fill-range "^4.0.0" 516 | isobject "^3.0.1" 517 | kind-of "^6.0.2" 518 | repeat-element "^1.1.2" 519 | snapdragon "^0.8.1" 520 | snapdragon-node "^2.0.1" 521 | split-string "^3.0.2" 522 | to-regex "^3.0.1" 523 | 524 | browser-resolve@^1.11.2: 525 | version "1.11.2" 526 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 527 | dependencies: 528 | resolve "1.1.7" 529 | 530 | bser@1.0.2: 531 | version "1.0.2" 532 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" 533 | dependencies: 534 | node-int64 "^0.4.0" 535 | 536 | bser@^2.0.0: 537 | version "2.0.0" 538 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 539 | dependencies: 540 | node-int64 "^0.4.0" 541 | 542 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 543 | version "1.1.1" 544 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 545 | 546 | cache-base@^1.0.1: 547 | version "1.0.1" 548 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 549 | dependencies: 550 | collection-visit "^1.0.0" 551 | component-emitter "^1.2.1" 552 | get-value "^2.0.6" 553 | has-value "^1.0.0" 554 | isobject "^3.0.1" 555 | set-value "^2.0.0" 556 | to-object-path "^0.3.0" 557 | union-value "^1.0.0" 558 | unset-value "^1.0.0" 559 | 560 | caller-path@^0.1.0: 561 | version "0.1.0" 562 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 563 | dependencies: 564 | callsites "^0.2.0" 565 | 566 | callsites@^0.2.0: 567 | version "0.2.0" 568 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 569 | 570 | callsites@^2.0.0: 571 | version "2.0.0" 572 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 573 | 574 | camelcase@^1.0.2: 575 | version "1.2.1" 576 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 577 | 578 | camelcase@^3.0.0: 579 | version "3.0.0" 580 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 581 | 582 | camelcase@^4.1.0: 583 | version "4.1.0" 584 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 585 | 586 | caseless@~0.12.0: 587 | version "0.12.0" 588 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 589 | 590 | center-align@^0.1.1: 591 | version "0.1.3" 592 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 593 | dependencies: 594 | align-text "^0.1.3" 595 | lazy-cache "^1.0.3" 596 | 597 | chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 598 | version "1.1.3" 599 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 600 | dependencies: 601 | ansi-styles "^2.2.1" 602 | escape-string-regexp "^1.0.2" 603 | has-ansi "^2.0.0" 604 | strip-ansi "^3.0.0" 605 | supports-color "^2.0.0" 606 | 607 | chalk@^2.0.0, chalk@^2.1.0: 608 | version "2.3.1" 609 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.1.tgz#523fe2678aec7b04e8041909292fe8b17059b796" 610 | dependencies: 611 | ansi-styles "^3.2.0" 612 | escape-string-regexp "^1.0.5" 613 | supports-color "^5.2.0" 614 | 615 | chardet@^0.4.0: 616 | version "0.4.2" 617 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" 618 | 619 | chokidar@^2.0.0: 620 | version "2.0.2" 621 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.0.2.tgz#4dc65139eeb2714977735b6a35d06e97b494dfd7" 622 | dependencies: 623 | anymatch "^2.0.0" 624 | async-each "^1.0.0" 625 | braces "^2.3.0" 626 | glob-parent "^3.1.0" 627 | inherits "^2.0.1" 628 | is-binary-path "^1.0.0" 629 | is-glob "^4.0.0" 630 | normalize-path "^2.1.1" 631 | path-is-absolute "^1.0.0" 632 | readdirp "^2.0.0" 633 | upath "^1.0.0" 634 | optionalDependencies: 635 | fsevents "^1.0.0" 636 | 637 | ci-info@^1.0.0: 638 | version "1.0.0" 639 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 640 | 641 | circular-json@^0.3.1: 642 | version "0.3.3" 643 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" 644 | 645 | class-utils@^0.3.5: 646 | version "0.3.6" 647 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 648 | dependencies: 649 | arr-union "^3.1.0" 650 | define-property "^0.2.5" 651 | isobject "^3.0.0" 652 | static-extend "^0.1.1" 653 | 654 | cli-cursor@^2.1.0: 655 | version "2.1.0" 656 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 657 | dependencies: 658 | restore-cursor "^2.0.0" 659 | 660 | cli-width@^2.0.0: 661 | version "2.2.0" 662 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 663 | 664 | cliui@^2.1.0: 665 | version "2.1.0" 666 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 667 | dependencies: 668 | center-align "^0.1.1" 669 | right-align "^0.1.1" 670 | wordwrap "0.0.2" 671 | 672 | cliui@^3.2.0: 673 | version "3.2.0" 674 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 675 | dependencies: 676 | string-width "^1.0.1" 677 | strip-ansi "^3.0.1" 678 | wrap-ansi "^2.0.0" 679 | 680 | cliui@^4.0.0: 681 | version "4.0.0" 682 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.0.0.tgz#743d4650e05f36d1ed2575b59638d87322bfbbcc" 683 | dependencies: 684 | string-width "^2.1.1" 685 | strip-ansi "^4.0.0" 686 | wrap-ansi "^2.0.0" 687 | 688 | co@^4.6.0: 689 | version "4.6.0" 690 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 691 | 692 | code-point-at@^1.0.0: 693 | version "1.1.0" 694 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 695 | 696 | collection-visit@^1.0.0: 697 | version "1.0.0" 698 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 699 | dependencies: 700 | map-visit "^1.0.0" 701 | object-visit "^1.0.0" 702 | 703 | color-convert@^1.0.0: 704 | version "1.9.0" 705 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 706 | dependencies: 707 | color-name "^1.1.1" 708 | 709 | color-convert@^1.9.0: 710 | version "1.9.1" 711 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 712 | dependencies: 713 | color-name "^1.1.1" 714 | 715 | color-name@^1.1.1: 716 | version "1.1.2" 717 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.2.tgz#5c8ab72b64bd2215d617ae9559ebb148475cf98d" 718 | 719 | combined-stream@^1.0.5, combined-stream@~1.0.5: 720 | version "1.0.5" 721 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 722 | dependencies: 723 | delayed-stream "~1.0.0" 724 | 725 | component-emitter@^1.2.1: 726 | version "1.2.1" 727 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 728 | 729 | concat-map@0.0.1: 730 | version "0.0.1" 731 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 732 | 733 | concat-stream@^1.6.0: 734 | version "1.6.0" 735 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 736 | dependencies: 737 | inherits "^2.0.3" 738 | readable-stream "^2.2.2" 739 | typedarray "^0.0.6" 740 | 741 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 742 | version "1.1.0" 743 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 744 | 745 | contains-path@^0.1.0: 746 | version "0.1.0" 747 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 748 | 749 | content-type-parser@^1.0.1: 750 | version "1.0.1" 751 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 752 | 753 | convert-source-map@^1.1.0: 754 | version "1.5.0" 755 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 756 | 757 | copy-descriptor@^0.1.0: 758 | version "0.1.1" 759 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 760 | 761 | core-js@^2.4.0: 762 | version "2.4.1" 763 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 764 | 765 | core-util-is@~1.0.0: 766 | version "1.0.2" 767 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 768 | 769 | cross-spawn@^5.0.1, cross-spawn@^5.1.0: 770 | version "5.1.0" 771 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 772 | dependencies: 773 | lru-cache "^4.0.1" 774 | shebang-command "^1.2.0" 775 | which "^1.2.9" 776 | 777 | cryptiles@2.x.x: 778 | version "2.0.5" 779 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 780 | dependencies: 781 | boom "2.x.x" 782 | 783 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 784 | version "0.3.2" 785 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 786 | 787 | "cssstyle@>= 0.2.37 < 0.3.0": 788 | version "0.2.37" 789 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 790 | dependencies: 791 | cssom "0.3.x" 792 | 793 | dashdash@^1.12.0: 794 | version "1.14.1" 795 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 796 | dependencies: 797 | assert-plus "^1.0.0" 798 | 799 | debug@^2.1.1, debug@^2.2.0: 800 | version "2.6.3" 801 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.3.tgz#0f7eb8c30965ec08c72accfa0130c8b79984141d" 802 | dependencies: 803 | ms "0.7.2" 804 | 805 | debug@^2.3.3, debug@^2.6.8, debug@^2.6.9: 806 | version "2.6.9" 807 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 808 | dependencies: 809 | ms "2.0.0" 810 | 811 | debug@^3.0.1, debug@^3.1.0: 812 | version "3.1.0" 813 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 814 | dependencies: 815 | ms "2.0.0" 816 | 817 | decamelize@^1.0.0, decamelize@^1.1.1: 818 | version "1.2.0" 819 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 820 | 821 | decode-uri-component@^0.2.0: 822 | version "0.2.0" 823 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 824 | 825 | deep-extend@~0.4.0: 826 | version "0.4.2" 827 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 828 | 829 | deep-is@~0.1.3: 830 | version "0.1.3" 831 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 832 | 833 | default-require-extensions@^1.0.0: 834 | version "1.0.0" 835 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 836 | dependencies: 837 | strip-bom "^2.0.0" 838 | 839 | define-property@^0.2.5: 840 | version "0.2.5" 841 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 842 | dependencies: 843 | is-descriptor "^0.1.0" 844 | 845 | define-property@^1.0.0: 846 | version "1.0.0" 847 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 848 | dependencies: 849 | is-descriptor "^1.0.0" 850 | 851 | define-property@^2.0.2: 852 | version "2.0.2" 853 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 854 | dependencies: 855 | is-descriptor "^1.0.2" 856 | isobject "^3.0.1" 857 | 858 | del@^2.0.2: 859 | version "2.2.2" 860 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 861 | dependencies: 862 | globby "^5.0.0" 863 | is-path-cwd "^1.0.0" 864 | is-path-in-cwd "^1.0.0" 865 | object-assign "^4.0.1" 866 | pify "^2.0.0" 867 | pinkie-promise "^2.0.0" 868 | rimraf "^2.2.8" 869 | 870 | delayed-stream@~1.0.0: 871 | version "1.0.0" 872 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 873 | 874 | delegates@^1.0.0: 875 | version "1.0.0" 876 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 877 | 878 | detect-indent@^4.0.0: 879 | version "4.0.0" 880 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 881 | dependencies: 882 | repeating "^2.0.0" 883 | 884 | detect-libc@^1.0.2: 885 | version "1.0.3" 886 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 887 | 888 | diff@^3.0.0: 889 | version "3.2.0" 890 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 891 | 892 | doctrine@1.5.0: 893 | version "1.5.0" 894 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 895 | dependencies: 896 | esutils "^2.0.2" 897 | isarray "^1.0.0" 898 | 899 | doctrine@^2.1.0: 900 | version "2.1.0" 901 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 902 | dependencies: 903 | esutils "^2.0.2" 904 | 905 | ecc-jsbn@~0.1.1: 906 | version "0.1.1" 907 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 908 | dependencies: 909 | jsbn "~0.1.0" 910 | 911 | "errno@>=0.1.1 <0.2.0-0": 912 | version "0.1.4" 913 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 914 | dependencies: 915 | prr "~0.0.0" 916 | 917 | error-ex@^1.2.0: 918 | version "1.3.1" 919 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 920 | dependencies: 921 | is-arrayish "^0.2.1" 922 | 923 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 924 | version "1.0.5" 925 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 926 | 927 | escodegen@^1.6.1: 928 | version "1.8.1" 929 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 930 | dependencies: 931 | esprima "^2.7.1" 932 | estraverse "^1.9.1" 933 | esutils "^2.0.2" 934 | optionator "^0.8.1" 935 | optionalDependencies: 936 | source-map "~0.2.0" 937 | 938 | eslint-config-airbnb-base@^12.1.0: 939 | version "12.1.0" 940 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-12.1.0.tgz#386441e54a12ccd957b0a92564a4bafebd747944" 941 | dependencies: 942 | eslint-restricted-globals "^0.1.1" 943 | 944 | eslint-config-prettier@^2.9.0: 945 | version "2.9.0" 946 | resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-2.9.0.tgz#5ecd65174d486c22dff389fe036febf502d468a3" 947 | dependencies: 948 | get-stdin "^5.0.1" 949 | 950 | eslint-import-resolver-node@^0.3.1: 951 | version "0.3.2" 952 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz#58f15fb839b8d0576ca980413476aab2472db66a" 953 | dependencies: 954 | debug "^2.6.9" 955 | resolve "^1.5.0" 956 | 957 | eslint-module-utils@^2.1.1: 958 | version "2.1.1" 959 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.1.1.tgz#abaec824177613b8a95b299639e1b6facf473449" 960 | dependencies: 961 | debug "^2.6.8" 962 | pkg-dir "^1.0.0" 963 | 964 | eslint-plugin-flowtype@^2.44.0: 965 | version "2.45.0" 966 | resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-2.45.0.tgz#20d8b15d1e1e71ea4e9498e8be3fc62c0752fcbf" 967 | dependencies: 968 | lodash "^4.15.0" 969 | 970 | eslint-plugin-import@^2.8.0: 971 | version "2.8.0" 972 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.8.0.tgz#fa1b6ef31fcb3c501c09859c1b86f1fc5b986894" 973 | dependencies: 974 | builtin-modules "^1.1.1" 975 | contains-path "^0.1.0" 976 | debug "^2.6.8" 977 | doctrine "1.5.0" 978 | eslint-import-resolver-node "^0.3.1" 979 | eslint-module-utils "^2.1.1" 980 | has "^1.0.1" 981 | lodash.cond "^4.3.0" 982 | minimatch "^3.0.3" 983 | read-pkg-up "^2.0.0" 984 | 985 | eslint-plugin-prettier@^2.6.0: 986 | version "2.6.0" 987 | resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-2.6.0.tgz#33e4e228bdb06142d03c560ce04ec23f6c767dd7" 988 | dependencies: 989 | fast-diff "^1.1.1" 990 | jest-docblock "^21.0.0" 991 | 992 | eslint-restricted-globals@^0.1.1: 993 | version "0.1.1" 994 | resolved "https://registry.yarnpkg.com/eslint-restricted-globals/-/eslint-restricted-globals-0.1.1.tgz#35f0d5cbc64c2e3ed62e93b4b1a7af05ba7ed4d7" 995 | 996 | eslint-scope@^3.7.1, eslint-scope@~3.7.1: 997 | version "3.7.1" 998 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" 999 | dependencies: 1000 | esrecurse "^4.1.0" 1001 | estraverse "^4.1.1" 1002 | 1003 | eslint-visitor-keys@^1.0.0: 1004 | version "1.0.0" 1005 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d" 1006 | 1007 | eslint@^4.17.0: 1008 | version "4.18.0" 1009 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.18.0.tgz#ebd0ba795af6dc59aa5cee17938160af5950e051" 1010 | dependencies: 1011 | ajv "^5.3.0" 1012 | babel-code-frame "^6.22.0" 1013 | chalk "^2.1.0" 1014 | concat-stream "^1.6.0" 1015 | cross-spawn "^5.1.0" 1016 | debug "^3.1.0" 1017 | doctrine "^2.1.0" 1018 | eslint-scope "^3.7.1" 1019 | eslint-visitor-keys "^1.0.0" 1020 | espree "^3.5.2" 1021 | esquery "^1.0.0" 1022 | esutils "^2.0.2" 1023 | file-entry-cache "^2.0.0" 1024 | functional-red-black-tree "^1.0.1" 1025 | glob "^7.1.2" 1026 | globals "^11.0.1" 1027 | ignore "^3.3.3" 1028 | imurmurhash "^0.1.4" 1029 | inquirer "^3.0.6" 1030 | is-resolvable "^1.0.0" 1031 | js-yaml "^3.9.1" 1032 | json-stable-stringify-without-jsonify "^1.0.1" 1033 | levn "^0.3.0" 1034 | lodash "^4.17.4" 1035 | minimatch "^3.0.2" 1036 | mkdirp "^0.5.1" 1037 | natural-compare "^1.4.0" 1038 | optionator "^0.8.2" 1039 | path-is-inside "^1.0.2" 1040 | pluralize "^7.0.0" 1041 | progress "^2.0.0" 1042 | require-uncached "^1.0.3" 1043 | semver "^5.3.0" 1044 | strip-ansi "^4.0.0" 1045 | strip-json-comments "~2.0.1" 1046 | table "^4.0.1" 1047 | text-table "~0.2.0" 1048 | 1049 | espree@^3.5.2: 1050 | version "3.5.3" 1051 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.3.tgz#931e0af64e7fbbed26b050a29daad1fc64799fa6" 1052 | dependencies: 1053 | acorn "^5.4.0" 1054 | acorn-jsx "^3.0.0" 1055 | 1056 | esprima@^2.7.1: 1057 | version "2.7.3" 1058 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1059 | 1060 | esprima@^3.1.1: 1061 | version "3.1.3" 1062 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1063 | 1064 | esprima@^4.0.0: 1065 | version "4.0.0" 1066 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1067 | 1068 | esquery@^1.0.0: 1069 | version "1.0.0" 1070 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 1071 | dependencies: 1072 | estraverse "^4.0.0" 1073 | 1074 | esrecurse@^4.1.0: 1075 | version "4.2.0" 1076 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" 1077 | dependencies: 1078 | estraverse "^4.1.0" 1079 | object-assign "^4.0.1" 1080 | 1081 | estraverse@^1.9.1: 1082 | version "1.9.3" 1083 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 1084 | 1085 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1: 1086 | version "4.2.0" 1087 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1088 | 1089 | esutils@^2.0.2: 1090 | version "2.0.2" 1091 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1092 | 1093 | exec-sh@^0.2.0: 1094 | version "0.2.0" 1095 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" 1096 | dependencies: 1097 | merge "^1.1.3" 1098 | 1099 | execa@^0.7.0: 1100 | version "0.7.0" 1101 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1102 | dependencies: 1103 | cross-spawn "^5.0.1" 1104 | get-stream "^3.0.0" 1105 | is-stream "^1.1.0" 1106 | npm-run-path "^2.0.0" 1107 | p-finally "^1.0.0" 1108 | signal-exit "^3.0.0" 1109 | strip-eof "^1.0.0" 1110 | 1111 | expand-brackets@^0.1.4: 1112 | version "0.1.5" 1113 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1114 | dependencies: 1115 | is-posix-bracket "^0.1.0" 1116 | 1117 | expand-brackets@^2.1.4: 1118 | version "2.1.4" 1119 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 1120 | dependencies: 1121 | debug "^2.3.3" 1122 | define-property "^0.2.5" 1123 | extend-shallow "^2.0.1" 1124 | posix-character-classes "^0.1.0" 1125 | regex-not "^1.0.0" 1126 | snapdragon "^0.8.1" 1127 | to-regex "^3.0.1" 1128 | 1129 | expand-range@^1.8.1: 1130 | version "1.8.2" 1131 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1132 | dependencies: 1133 | fill-range "^2.1.0" 1134 | 1135 | extend-shallow@^2.0.1: 1136 | version "2.0.1" 1137 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 1138 | dependencies: 1139 | is-extendable "^0.1.0" 1140 | 1141 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 1142 | version "3.0.2" 1143 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 1144 | dependencies: 1145 | assign-symbols "^1.0.0" 1146 | is-extendable "^1.0.1" 1147 | 1148 | extend@~3.0.0: 1149 | version "3.0.0" 1150 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 1151 | 1152 | external-editor@^2.0.4: 1153 | version "2.1.0" 1154 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.1.0.tgz#3d026a21b7f95b5726387d4200ac160d372c3b48" 1155 | dependencies: 1156 | chardet "^0.4.0" 1157 | iconv-lite "^0.4.17" 1158 | tmp "^0.0.33" 1159 | 1160 | extglob@^0.3.1: 1161 | version "0.3.2" 1162 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1163 | dependencies: 1164 | is-extglob "^1.0.0" 1165 | 1166 | extglob@^2.0.4: 1167 | version "2.0.4" 1168 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 1169 | dependencies: 1170 | array-unique "^0.3.2" 1171 | define-property "^1.0.0" 1172 | expand-brackets "^2.1.4" 1173 | extend-shallow "^2.0.1" 1174 | fragment-cache "^0.2.1" 1175 | regex-not "^1.0.0" 1176 | snapdragon "^0.8.1" 1177 | to-regex "^3.0.1" 1178 | 1179 | extsprintf@1.0.2: 1180 | version "1.0.2" 1181 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1182 | 1183 | fast-deep-equal@^1.0.0: 1184 | version "1.0.0" 1185 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 1186 | 1187 | fast-diff@^1.1.1: 1188 | version "1.1.2" 1189 | resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.1.2.tgz#4b62c42b8e03de3f848460b639079920695d0154" 1190 | 1191 | fast-json-stable-stringify@^2.0.0: 1192 | version "2.0.0" 1193 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1194 | 1195 | fast-levenshtein@~2.0.4: 1196 | version "2.0.6" 1197 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1198 | 1199 | fb-watchman@^1.8.0: 1200 | version "1.9.2" 1201 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383" 1202 | dependencies: 1203 | bser "1.0.2" 1204 | 1205 | fb-watchman@^2.0.0: 1206 | version "2.0.0" 1207 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 1208 | dependencies: 1209 | bser "^2.0.0" 1210 | 1211 | figures@^2.0.0: 1212 | version "2.0.0" 1213 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1214 | dependencies: 1215 | escape-string-regexp "^1.0.5" 1216 | 1217 | file-entry-cache@^2.0.0: 1218 | version "2.0.0" 1219 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1220 | dependencies: 1221 | flat-cache "^1.2.1" 1222 | object-assign "^4.0.1" 1223 | 1224 | filename-regex@^2.0.0: 1225 | version "2.0.0" 1226 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 1227 | 1228 | fileset@^2.0.2: 1229 | version "2.0.3" 1230 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 1231 | dependencies: 1232 | glob "^7.0.3" 1233 | minimatch "^3.0.3" 1234 | 1235 | fill-range@^2.1.0: 1236 | version "2.2.3" 1237 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1238 | dependencies: 1239 | is-number "^2.1.0" 1240 | isobject "^2.0.0" 1241 | randomatic "^1.1.3" 1242 | repeat-element "^1.1.2" 1243 | repeat-string "^1.5.2" 1244 | 1245 | fill-range@^4.0.0: 1246 | version "4.0.0" 1247 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 1248 | dependencies: 1249 | extend-shallow "^2.0.1" 1250 | is-number "^3.0.0" 1251 | repeat-string "^1.6.1" 1252 | to-regex-range "^2.1.0" 1253 | 1254 | find-up@^1.0.0: 1255 | version "1.1.2" 1256 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1257 | dependencies: 1258 | path-exists "^2.0.0" 1259 | pinkie-promise "^2.0.0" 1260 | 1261 | find-up@^2.0.0, find-up@^2.1.0: 1262 | version "2.1.0" 1263 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1264 | dependencies: 1265 | locate-path "^2.0.0" 1266 | 1267 | flat-cache@^1.2.1: 1268 | version "1.3.0" 1269 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481" 1270 | dependencies: 1271 | circular-json "^0.3.1" 1272 | del "^2.0.2" 1273 | graceful-fs "^4.1.2" 1274 | write "^0.2.1" 1275 | 1276 | flow-bin@^0.66.0: 1277 | version "0.66.0" 1278 | resolved "https://registry.yarnpkg.com/flow-bin/-/flow-bin-0.66.0.tgz#a96dde7015dc3343fd552a7b4963c02be705ca26" 1279 | 1280 | flow-copy-source@^1.3.0: 1281 | version "1.3.0" 1282 | resolved "https://registry.yarnpkg.com/flow-copy-source/-/flow-copy-source-1.3.0.tgz#591b153f5c01e8fc566c64a97290ea9103b7f1ea" 1283 | dependencies: 1284 | chokidar "^2.0.0" 1285 | fs-extra "^5.0.0" 1286 | glob "^7.0.0" 1287 | kefir "^3.7.3" 1288 | yargs "^11.0.0" 1289 | 1290 | flow-remove-types@^1.2.1, flow-remove-types@^1.2.3: 1291 | version "1.2.3" 1292 | resolved "https://registry.yarnpkg.com/flow-remove-types/-/flow-remove-types-1.2.3.tgz#6131aefc7da43364bb8b479758c9dec7735d1a18" 1293 | dependencies: 1294 | babylon "^6.15.0" 1295 | vlq "^0.2.1" 1296 | 1297 | for-in@^1.0.1, for-in@^1.0.2: 1298 | version "1.0.2" 1299 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1300 | 1301 | for-own@^0.1.4: 1302 | version "0.1.5" 1303 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1304 | dependencies: 1305 | for-in "^1.0.1" 1306 | 1307 | forever-agent@~0.6.1: 1308 | version "0.6.1" 1309 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1310 | 1311 | form-data@~2.1.1: 1312 | version "2.1.4" 1313 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1314 | dependencies: 1315 | asynckit "^0.4.0" 1316 | combined-stream "^1.0.5" 1317 | mime-types "^2.1.12" 1318 | 1319 | fragment-cache@^0.2.1: 1320 | version "0.2.1" 1321 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 1322 | dependencies: 1323 | map-cache "^0.2.2" 1324 | 1325 | fs-extra@^5.0.0: 1326 | version "5.0.0" 1327 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-5.0.0.tgz#414d0110cdd06705734d055652c5411260c31abd" 1328 | dependencies: 1329 | graceful-fs "^4.1.2" 1330 | jsonfile "^4.0.0" 1331 | universalify "^0.1.0" 1332 | 1333 | fs.realpath@^1.0.0: 1334 | version "1.0.0" 1335 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1336 | 1337 | fsevents@^1.0.0: 1338 | version "1.1.3" 1339 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8" 1340 | dependencies: 1341 | nan "^2.3.0" 1342 | node-pre-gyp "^0.6.39" 1343 | 1344 | fstream-ignore@^1.0.5: 1345 | version "1.0.5" 1346 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1347 | dependencies: 1348 | fstream "^1.0.0" 1349 | inherits "2" 1350 | minimatch "^3.0.0" 1351 | 1352 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1353 | version "1.0.11" 1354 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1355 | dependencies: 1356 | graceful-fs "^4.1.2" 1357 | inherits "~2.0.0" 1358 | mkdirp ">=0.5 0" 1359 | rimraf "2" 1360 | 1361 | function-bind@^1.0.2: 1362 | version "1.1.1" 1363 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1364 | 1365 | functional-red-black-tree@^1.0.1: 1366 | version "1.0.1" 1367 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 1368 | 1369 | gauge@~2.7.3: 1370 | version "2.7.4" 1371 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1372 | dependencies: 1373 | aproba "^1.0.3" 1374 | console-control-strings "^1.0.0" 1375 | has-unicode "^2.0.0" 1376 | object-assign "^4.1.0" 1377 | signal-exit "^3.0.0" 1378 | string-width "^1.0.1" 1379 | strip-ansi "^3.0.1" 1380 | wide-align "^1.1.0" 1381 | 1382 | get-caller-file@^1.0.1: 1383 | version "1.0.2" 1384 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1385 | 1386 | get-stdin@^5.0.1: 1387 | version "5.0.1" 1388 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" 1389 | 1390 | get-stream@^3.0.0: 1391 | version "3.0.0" 1392 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1393 | 1394 | get-value@^2.0.3, get-value@^2.0.6: 1395 | version "2.0.6" 1396 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 1397 | 1398 | getpass@^0.1.1: 1399 | version "0.1.6" 1400 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 1401 | dependencies: 1402 | assert-plus "^1.0.0" 1403 | 1404 | glob-base@^0.3.0: 1405 | version "0.3.0" 1406 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1407 | dependencies: 1408 | glob-parent "^2.0.0" 1409 | is-glob "^2.0.0" 1410 | 1411 | glob-parent@^2.0.0: 1412 | version "2.0.0" 1413 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1414 | dependencies: 1415 | is-glob "^2.0.0" 1416 | 1417 | glob-parent@^3.1.0: 1418 | version "3.1.0" 1419 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" 1420 | dependencies: 1421 | is-glob "^3.1.0" 1422 | path-dirname "^1.0.0" 1423 | 1424 | glob@^7.0.0, glob@^7.1.2: 1425 | version "7.1.2" 1426 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1427 | dependencies: 1428 | fs.realpath "^1.0.0" 1429 | inflight "^1.0.4" 1430 | inherits "2" 1431 | minimatch "^3.0.4" 1432 | once "^1.3.0" 1433 | path-is-absolute "^1.0.0" 1434 | 1435 | glob@^7.0.3, glob@^7.0.5: 1436 | version "7.1.1" 1437 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1438 | dependencies: 1439 | fs.realpath "^1.0.0" 1440 | inflight "^1.0.4" 1441 | inherits "2" 1442 | minimatch "^3.0.2" 1443 | once "^1.3.0" 1444 | path-is-absolute "^1.0.0" 1445 | 1446 | globals@^11.0.1, globals@^11.1.0: 1447 | version "11.3.0" 1448 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.3.0.tgz#e04fdb7b9796d8adac9c8f64c14837b2313378b0" 1449 | 1450 | globals@^9.0.0: 1451 | version "9.17.0" 1452 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 1453 | 1454 | globby@^5.0.0: 1455 | version "5.0.0" 1456 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1457 | dependencies: 1458 | array-union "^1.0.1" 1459 | arrify "^1.0.0" 1460 | glob "^7.0.3" 1461 | object-assign "^4.0.1" 1462 | pify "^2.0.0" 1463 | pinkie-promise "^2.0.0" 1464 | 1465 | graceful-fs@^4.1.2, graceful-fs@^4.1.6: 1466 | version "4.1.11" 1467 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1468 | 1469 | growly@^1.3.0: 1470 | version "1.3.0" 1471 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1472 | 1473 | handlebars@^4.0.3: 1474 | version "4.0.6" 1475 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.6.tgz#2ce4484850537f9c97a8026d5399b935c4ed4ed7" 1476 | dependencies: 1477 | async "^1.4.0" 1478 | optimist "^0.6.1" 1479 | source-map "^0.4.4" 1480 | optionalDependencies: 1481 | uglify-js "^2.6" 1482 | 1483 | har-schema@^1.0.5: 1484 | version "1.0.5" 1485 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1486 | 1487 | har-validator@~4.2.1: 1488 | version "4.2.1" 1489 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1490 | dependencies: 1491 | ajv "^4.9.1" 1492 | har-schema "^1.0.5" 1493 | 1494 | has-ansi@^2.0.0: 1495 | version "2.0.0" 1496 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1497 | dependencies: 1498 | ansi-regex "^2.0.0" 1499 | 1500 | has-flag@^1.0.0: 1501 | version "1.0.0" 1502 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1503 | 1504 | has-flag@^3.0.0: 1505 | version "3.0.0" 1506 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1507 | 1508 | has-unicode@^2.0.0: 1509 | version "2.0.1" 1510 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1511 | 1512 | has-value@^0.3.1: 1513 | version "0.3.1" 1514 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 1515 | dependencies: 1516 | get-value "^2.0.3" 1517 | has-values "^0.1.4" 1518 | isobject "^2.0.0" 1519 | 1520 | has-value@^1.0.0: 1521 | version "1.0.0" 1522 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 1523 | dependencies: 1524 | get-value "^2.0.6" 1525 | has-values "^1.0.0" 1526 | isobject "^3.0.0" 1527 | 1528 | has-values@^0.1.4: 1529 | version "0.1.4" 1530 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 1531 | 1532 | has-values@^1.0.0: 1533 | version "1.0.0" 1534 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 1535 | dependencies: 1536 | is-number "^3.0.0" 1537 | kind-of "^4.0.0" 1538 | 1539 | has@^1.0.1: 1540 | version "1.0.1" 1541 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1542 | dependencies: 1543 | function-bind "^1.0.2" 1544 | 1545 | hawk@3.1.3, hawk@~3.1.3: 1546 | version "3.1.3" 1547 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1548 | dependencies: 1549 | boom "2.x.x" 1550 | cryptiles "2.x.x" 1551 | hoek "2.x.x" 1552 | sntp "1.x.x" 1553 | 1554 | hoek@2.x.x: 1555 | version "2.16.3" 1556 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1557 | 1558 | home-or-tmp@^2.0.0: 1559 | version "2.0.0" 1560 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1561 | dependencies: 1562 | os-homedir "^1.0.0" 1563 | os-tmpdir "^1.0.1" 1564 | 1565 | hosted-git-info@^2.1.4: 1566 | version "2.4.1" 1567 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.1.tgz#4b0445e41c004a8bd1337773a4ff790ca40318c8" 1568 | 1569 | html-encoding-sniffer@^1.0.1: 1570 | version "1.0.1" 1571 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 1572 | dependencies: 1573 | whatwg-encoding "^1.0.1" 1574 | 1575 | http-signature@~1.1.0: 1576 | version "1.1.1" 1577 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1578 | dependencies: 1579 | assert-plus "^0.2.0" 1580 | jsprim "^1.2.2" 1581 | sshpk "^1.7.0" 1582 | 1583 | iconv-lite@0.4.13: 1584 | version "0.4.13" 1585 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 1586 | 1587 | iconv-lite@^0.4.17: 1588 | version "0.4.19" 1589 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 1590 | 1591 | ignore@^3.3.3: 1592 | version "3.3.7" 1593 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.7.tgz#612289bfb3c220e186a58118618d5be8c1bab021" 1594 | 1595 | imurmurhash@^0.1.4: 1596 | version "0.1.4" 1597 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1598 | 1599 | inflight@^1.0.4: 1600 | version "1.0.6" 1601 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1602 | dependencies: 1603 | once "^1.3.0" 1604 | wrappy "1" 1605 | 1606 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.3: 1607 | version "2.0.3" 1608 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1609 | 1610 | ini@~1.3.0: 1611 | version "1.3.5" 1612 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1613 | 1614 | inquirer@^3.0.6: 1615 | version "3.3.0" 1616 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" 1617 | dependencies: 1618 | ansi-escapes "^3.0.0" 1619 | chalk "^2.0.0" 1620 | cli-cursor "^2.1.0" 1621 | cli-width "^2.0.0" 1622 | external-editor "^2.0.4" 1623 | figures "^2.0.0" 1624 | lodash "^4.3.0" 1625 | mute-stream "0.0.7" 1626 | run-async "^2.2.0" 1627 | rx-lite "^4.0.8" 1628 | rx-lite-aggregates "^4.0.8" 1629 | string-width "^2.1.0" 1630 | strip-ansi "^4.0.0" 1631 | through "^2.3.6" 1632 | 1633 | invariant@^2.2.0: 1634 | version "2.2.2" 1635 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1636 | dependencies: 1637 | loose-envify "^1.0.0" 1638 | 1639 | invert-kv@^1.0.0: 1640 | version "1.0.0" 1641 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1642 | 1643 | is-accessor-descriptor@^0.1.6: 1644 | version "0.1.6" 1645 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 1646 | dependencies: 1647 | kind-of "^3.0.2" 1648 | 1649 | is-accessor-descriptor@^1.0.0: 1650 | version "1.0.0" 1651 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 1652 | dependencies: 1653 | kind-of "^6.0.0" 1654 | 1655 | is-arrayish@^0.2.1: 1656 | version "0.2.1" 1657 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1658 | 1659 | is-binary-path@^1.0.0: 1660 | version "1.0.1" 1661 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1662 | dependencies: 1663 | binary-extensions "^1.0.0" 1664 | 1665 | is-buffer@^1.0.2: 1666 | version "1.1.5" 1667 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1668 | 1669 | is-buffer@^1.1.5: 1670 | version "1.1.6" 1671 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1672 | 1673 | is-builtin-module@^1.0.0: 1674 | version "1.0.0" 1675 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1676 | dependencies: 1677 | builtin-modules "^1.0.0" 1678 | 1679 | is-ci@^1.0.9: 1680 | version "1.0.10" 1681 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1682 | dependencies: 1683 | ci-info "^1.0.0" 1684 | 1685 | is-data-descriptor@^0.1.4: 1686 | version "0.1.4" 1687 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 1688 | dependencies: 1689 | kind-of "^3.0.2" 1690 | 1691 | is-data-descriptor@^1.0.0: 1692 | version "1.0.0" 1693 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 1694 | dependencies: 1695 | kind-of "^6.0.0" 1696 | 1697 | is-descriptor@^0.1.0: 1698 | version "0.1.6" 1699 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 1700 | dependencies: 1701 | is-accessor-descriptor "^0.1.6" 1702 | is-data-descriptor "^0.1.4" 1703 | kind-of "^5.0.0" 1704 | 1705 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 1706 | version "1.0.2" 1707 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 1708 | dependencies: 1709 | is-accessor-descriptor "^1.0.0" 1710 | is-data-descriptor "^1.0.0" 1711 | kind-of "^6.0.2" 1712 | 1713 | is-dotfile@^1.0.0: 1714 | version "1.0.2" 1715 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1716 | 1717 | is-equal-shallow@^0.1.3: 1718 | version "0.1.3" 1719 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1720 | dependencies: 1721 | is-primitive "^2.0.0" 1722 | 1723 | is-extendable@^0.1.0, is-extendable@^0.1.1: 1724 | version "0.1.1" 1725 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1726 | 1727 | is-extendable@^1.0.1: 1728 | version "1.0.1" 1729 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 1730 | dependencies: 1731 | is-plain-object "^2.0.4" 1732 | 1733 | is-extglob@^1.0.0: 1734 | version "1.0.0" 1735 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1736 | 1737 | is-extglob@^2.1.0, is-extglob@^2.1.1: 1738 | version "2.1.1" 1739 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1740 | 1741 | is-finite@^1.0.0: 1742 | version "1.0.2" 1743 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1744 | dependencies: 1745 | number-is-nan "^1.0.0" 1746 | 1747 | is-fullwidth-code-point@^1.0.0: 1748 | version "1.0.0" 1749 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1750 | dependencies: 1751 | number-is-nan "^1.0.0" 1752 | 1753 | is-fullwidth-code-point@^2.0.0: 1754 | version "2.0.0" 1755 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1756 | 1757 | is-glob@^2.0.0, is-glob@^2.0.1: 1758 | version "2.0.1" 1759 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1760 | dependencies: 1761 | is-extglob "^1.0.0" 1762 | 1763 | is-glob@^3.1.0: 1764 | version "3.1.0" 1765 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 1766 | dependencies: 1767 | is-extglob "^2.1.0" 1768 | 1769 | is-glob@^4.0.0: 1770 | version "4.0.0" 1771 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.0.tgz#9521c76845cc2610a85203ddf080a958c2ffabc0" 1772 | dependencies: 1773 | is-extglob "^2.1.1" 1774 | 1775 | is-number@^2.0.2, is-number@^2.1.0: 1776 | version "2.1.0" 1777 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1778 | dependencies: 1779 | kind-of "^3.0.2" 1780 | 1781 | is-number@^3.0.0: 1782 | version "3.0.0" 1783 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1784 | dependencies: 1785 | kind-of "^3.0.2" 1786 | 1787 | is-number@^4.0.0: 1788 | version "4.0.0" 1789 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" 1790 | 1791 | is-odd@^2.0.0: 1792 | version "2.0.0" 1793 | resolved "https://registry.yarnpkg.com/is-odd/-/is-odd-2.0.0.tgz#7646624671fd7ea558ccd9a2795182f2958f1b24" 1794 | dependencies: 1795 | is-number "^4.0.0" 1796 | 1797 | is-path-cwd@^1.0.0: 1798 | version "1.0.0" 1799 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1800 | 1801 | is-path-in-cwd@^1.0.0: 1802 | version "1.0.0" 1803 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1804 | dependencies: 1805 | is-path-inside "^1.0.0" 1806 | 1807 | is-path-inside@^1.0.0: 1808 | version "1.0.1" 1809 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" 1810 | dependencies: 1811 | path-is-inside "^1.0.1" 1812 | 1813 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: 1814 | version "2.0.4" 1815 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 1816 | dependencies: 1817 | isobject "^3.0.1" 1818 | 1819 | is-posix-bracket@^0.1.0: 1820 | version "0.1.1" 1821 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1822 | 1823 | is-primitive@^2.0.0: 1824 | version "2.0.0" 1825 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1826 | 1827 | is-promise@^2.1.0: 1828 | version "2.1.0" 1829 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1830 | 1831 | is-resolvable@^1.0.0: 1832 | version "1.1.0" 1833 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" 1834 | 1835 | is-stream@^1.1.0: 1836 | version "1.1.0" 1837 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1838 | 1839 | is-typedarray@~1.0.0: 1840 | version "1.0.0" 1841 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1842 | 1843 | is-utf8@^0.2.0: 1844 | version "0.2.1" 1845 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1846 | 1847 | is-windows@^1.0.2: 1848 | version "1.0.2" 1849 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 1850 | 1851 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1852 | version "1.0.0" 1853 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1854 | 1855 | isexe@^2.0.0: 1856 | version "2.0.0" 1857 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1858 | 1859 | isobject@^2.0.0: 1860 | version "2.1.0" 1861 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1862 | dependencies: 1863 | isarray "1.0.0" 1864 | 1865 | isobject@^3.0.0, isobject@^3.0.1: 1866 | version "3.0.1" 1867 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 1868 | 1869 | isstream@~0.1.2: 1870 | version "0.1.2" 1871 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1872 | 1873 | istanbul-api@^1.1.0-alpha.1: 1874 | version "1.1.7" 1875 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.7.tgz#f6f37f09f8002b130f891c646b70ee4a8e7345ae" 1876 | dependencies: 1877 | async "^2.1.4" 1878 | fileset "^2.0.2" 1879 | istanbul-lib-coverage "^1.0.2" 1880 | istanbul-lib-hook "^1.0.5" 1881 | istanbul-lib-instrument "^1.7.0" 1882 | istanbul-lib-report "^1.0.0" 1883 | istanbul-lib-source-maps "^1.1.1" 1884 | istanbul-reports "^1.0.2" 1885 | js-yaml "^3.7.0" 1886 | mkdirp "^0.5.1" 1887 | once "^1.4.0" 1888 | 1889 | istanbul-lib-coverage@^1.0.0, istanbul-lib-coverage@^1.0.2: 1890 | version "1.0.2" 1891 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.0.2.tgz#87a0c015b6910651cb3b184814dfb339337e25e1" 1892 | 1893 | istanbul-lib-hook@^1.0.5: 1894 | version "1.0.5" 1895 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.5.tgz#6ca3d16d60c5f4082da39f7c5cd38ea8a772b88e" 1896 | dependencies: 1897 | append-transform "^0.4.0" 1898 | 1899 | istanbul-lib-instrument@^1.1.1, istanbul-lib-instrument@^1.6.2, istanbul-lib-instrument@^1.7.0: 1900 | version "1.7.0" 1901 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.0.tgz#b8e0dc25709bb44e17336ab47b7bb5c97c23f659" 1902 | dependencies: 1903 | babel-generator "^6.18.0" 1904 | babel-template "^6.16.0" 1905 | babel-traverse "^6.18.0" 1906 | babel-types "^6.18.0" 1907 | babylon "^6.13.0" 1908 | istanbul-lib-coverage "^1.0.2" 1909 | semver "^5.3.0" 1910 | 1911 | istanbul-lib-report@^1.0.0: 1912 | version "1.0.0" 1913 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.0.0.tgz#d83dac7f26566b521585569367fe84ccfc7aaecb" 1914 | dependencies: 1915 | istanbul-lib-coverage "^1.0.2" 1916 | mkdirp "^0.5.1" 1917 | path-parse "^1.0.5" 1918 | supports-color "^3.1.2" 1919 | 1920 | istanbul-lib-source-maps@^1.1.1: 1921 | version "1.1.1" 1922 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.1.1.tgz#f8c8c2e8f2160d1d91526d97e5bd63b2079af71c" 1923 | dependencies: 1924 | istanbul-lib-coverage "^1.0.2" 1925 | mkdirp "^0.5.1" 1926 | rimraf "^2.4.4" 1927 | source-map "^0.5.3" 1928 | 1929 | istanbul-reports@^1.0.2: 1930 | version "1.0.2" 1931 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.0.2.tgz#4e8366abe6fa746cc1cd6633f108de12cc6ac6fa" 1932 | dependencies: 1933 | handlebars "^4.0.3" 1934 | 1935 | jest-changed-files@^19.0.2: 1936 | version "19.0.2" 1937 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-19.0.2.tgz#16c54c84c3270be408e06d2e8af3f3e37a885824" 1938 | 1939 | jest-cli@^19.0.2: 1940 | version "19.0.2" 1941 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-19.0.2.tgz#cc3620b62acac5f2d93a548cb6ef697d4ec85443" 1942 | dependencies: 1943 | ansi-escapes "^1.4.0" 1944 | callsites "^2.0.0" 1945 | chalk "^1.1.1" 1946 | graceful-fs "^4.1.6" 1947 | is-ci "^1.0.9" 1948 | istanbul-api "^1.1.0-alpha.1" 1949 | istanbul-lib-coverage "^1.0.0" 1950 | istanbul-lib-instrument "^1.1.1" 1951 | jest-changed-files "^19.0.2" 1952 | jest-config "^19.0.2" 1953 | jest-environment-jsdom "^19.0.2" 1954 | jest-haste-map "^19.0.0" 1955 | jest-jasmine2 "^19.0.2" 1956 | jest-message-util "^19.0.0" 1957 | jest-regex-util "^19.0.0" 1958 | jest-resolve-dependencies "^19.0.0" 1959 | jest-runtime "^19.0.2" 1960 | jest-snapshot "^19.0.2" 1961 | jest-util "^19.0.2" 1962 | micromatch "^2.3.11" 1963 | node-notifier "^5.0.1" 1964 | slash "^1.0.0" 1965 | string-length "^1.0.1" 1966 | throat "^3.0.0" 1967 | which "^1.1.1" 1968 | worker-farm "^1.3.1" 1969 | yargs "^6.3.0" 1970 | 1971 | jest-config@^19.0.2: 1972 | version "19.0.2" 1973 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-19.0.2.tgz#1b9bd2db0ddd16df61c2b10a54009e1768da6411" 1974 | dependencies: 1975 | chalk "^1.1.1" 1976 | jest-environment-jsdom "^19.0.2" 1977 | jest-environment-node "^19.0.2" 1978 | jest-jasmine2 "^19.0.2" 1979 | jest-regex-util "^19.0.0" 1980 | jest-resolve "^19.0.2" 1981 | jest-validate "^19.0.2" 1982 | pretty-format "^19.0.0" 1983 | 1984 | jest-diff@^19.0.0: 1985 | version "19.0.0" 1986 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-19.0.0.tgz#d1563cfc56c8b60232988fbc05d4d16ed90f063c" 1987 | dependencies: 1988 | chalk "^1.1.3" 1989 | diff "^3.0.0" 1990 | jest-matcher-utils "^19.0.0" 1991 | pretty-format "^19.0.0" 1992 | 1993 | jest-docblock@^21.0.0: 1994 | version "21.2.0" 1995 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-21.2.0.tgz#51529c3b30d5fd159da60c27ceedc195faf8d414" 1996 | 1997 | jest-environment-jsdom@^19.0.2: 1998 | version "19.0.2" 1999 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-19.0.2.tgz#ceda859c4a4b94ab35e4de7dab54b926f293e4a3" 2000 | dependencies: 2001 | jest-mock "^19.0.0" 2002 | jest-util "^19.0.2" 2003 | jsdom "^9.11.0" 2004 | 2005 | jest-environment-node@^19.0.2: 2006 | version "19.0.2" 2007 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-19.0.2.tgz#6e84079db87ed21d0c05e1f9669f207b116fe99b" 2008 | dependencies: 2009 | jest-mock "^19.0.0" 2010 | jest-util "^19.0.2" 2011 | 2012 | jest-file-exists@^19.0.0: 2013 | version "19.0.0" 2014 | resolved "https://registry.yarnpkg.com/jest-file-exists/-/jest-file-exists-19.0.0.tgz#cca2e587a11ec92e24cfeab3f8a94d657f3fceb8" 2015 | 2016 | jest-flow-transform@^1.0.1: 2017 | version "1.0.1" 2018 | resolved "https://registry.yarnpkg.com/jest-flow-transform/-/jest-flow-transform-1.0.1.tgz#2e0d73a8856924afc5710b6ab662898ae70651ec" 2019 | dependencies: 2020 | flow-remove-types "^1.2.1" 2021 | 2022 | jest-haste-map@^19.0.0: 2023 | version "19.0.0" 2024 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-19.0.0.tgz#adde00b62b1fe04432a104b3254fc5004514b55e" 2025 | dependencies: 2026 | fb-watchman "^2.0.0" 2027 | graceful-fs "^4.1.6" 2028 | micromatch "^2.3.11" 2029 | sane "~1.5.0" 2030 | worker-farm "^1.3.1" 2031 | 2032 | jest-jasmine2@^19.0.2: 2033 | version "19.0.2" 2034 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-19.0.2.tgz#167991ac825981fb1a800af126e83afcca832c73" 2035 | dependencies: 2036 | graceful-fs "^4.1.6" 2037 | jest-matcher-utils "^19.0.0" 2038 | jest-matchers "^19.0.0" 2039 | jest-message-util "^19.0.0" 2040 | jest-snapshot "^19.0.2" 2041 | 2042 | jest-matcher-utils@^19.0.0: 2043 | version "19.0.0" 2044 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-19.0.0.tgz#5ecd9b63565d2b001f61fbf7ec4c7f537964564d" 2045 | dependencies: 2046 | chalk "^1.1.3" 2047 | pretty-format "^19.0.0" 2048 | 2049 | jest-matchers@^19.0.0: 2050 | version "19.0.0" 2051 | resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-19.0.0.tgz#c74ecc6ebfec06f384767ba4d6fa4a42d6755754" 2052 | dependencies: 2053 | jest-diff "^19.0.0" 2054 | jest-matcher-utils "^19.0.0" 2055 | jest-message-util "^19.0.0" 2056 | jest-regex-util "^19.0.0" 2057 | 2058 | jest-message-util@^19.0.0: 2059 | version "19.0.0" 2060 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-19.0.0.tgz#721796b89c0e4d761606f9ba8cb828a3b6246416" 2061 | dependencies: 2062 | chalk "^1.1.1" 2063 | micromatch "^2.3.11" 2064 | 2065 | jest-mock@^19.0.0: 2066 | version "19.0.0" 2067 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-19.0.0.tgz#67038641e9607ab2ce08ec4a8cb83aabbc899d01" 2068 | 2069 | jest-regex-util@^19.0.0: 2070 | version "19.0.0" 2071 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-19.0.0.tgz#b7754587112aede1456510bb1f6afe74ef598691" 2072 | 2073 | jest-resolve-dependencies@^19.0.0: 2074 | version "19.0.0" 2075 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-19.0.0.tgz#a741ad1fa094140e64ecf2642a504f834ece22ee" 2076 | dependencies: 2077 | jest-file-exists "^19.0.0" 2078 | 2079 | jest-resolve@^19.0.2: 2080 | version "19.0.2" 2081 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-19.0.2.tgz#5793575de4f07aec32f7d7ff0c6c181963eefb3c" 2082 | dependencies: 2083 | browser-resolve "^1.11.2" 2084 | jest-haste-map "^19.0.0" 2085 | resolve "^1.2.0" 2086 | 2087 | jest-runtime@^19.0.2: 2088 | version "19.0.2" 2089 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-19.0.2.tgz#d9a43e72de416d27d196fd9c7940d98fe6685407" 2090 | dependencies: 2091 | babel-core "^6.0.0" 2092 | babel-jest "^19.0.0" 2093 | babel-plugin-istanbul "^4.0.0" 2094 | chalk "^1.1.3" 2095 | graceful-fs "^4.1.6" 2096 | jest-config "^19.0.2" 2097 | jest-file-exists "^19.0.0" 2098 | jest-haste-map "^19.0.0" 2099 | jest-regex-util "^19.0.0" 2100 | jest-resolve "^19.0.2" 2101 | jest-util "^19.0.2" 2102 | json-stable-stringify "^1.0.1" 2103 | micromatch "^2.3.11" 2104 | strip-bom "3.0.0" 2105 | yargs "^6.3.0" 2106 | 2107 | jest-snapshot@^19.0.2: 2108 | version "19.0.2" 2109 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-19.0.2.tgz#9c1b216214f7187c38bfd5c70b1efab16b0ff50b" 2110 | dependencies: 2111 | chalk "^1.1.3" 2112 | jest-diff "^19.0.0" 2113 | jest-file-exists "^19.0.0" 2114 | jest-matcher-utils "^19.0.0" 2115 | jest-util "^19.0.2" 2116 | natural-compare "^1.4.0" 2117 | pretty-format "^19.0.0" 2118 | 2119 | jest-util@^19.0.2: 2120 | version "19.0.2" 2121 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-19.0.2.tgz#e0a0232a2ab9e6b2b53668bdb3534c2b5977ed41" 2122 | dependencies: 2123 | chalk "^1.1.1" 2124 | graceful-fs "^4.1.6" 2125 | jest-file-exists "^19.0.0" 2126 | jest-message-util "^19.0.0" 2127 | jest-mock "^19.0.0" 2128 | jest-validate "^19.0.2" 2129 | leven "^2.0.0" 2130 | mkdirp "^0.5.1" 2131 | 2132 | jest-validate@^19.0.2: 2133 | version "19.0.2" 2134 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-19.0.2.tgz#dc534df5f1278d5b63df32b14241d4dbf7244c0c" 2135 | dependencies: 2136 | chalk "^1.1.1" 2137 | jest-matcher-utils "^19.0.0" 2138 | leven "^2.0.0" 2139 | pretty-format "^19.0.0" 2140 | 2141 | jest@^19.0.2: 2142 | version "19.0.2" 2143 | resolved "https://registry.yarnpkg.com/jest/-/jest-19.0.2.tgz#b794faaf8ff461e7388f28beef559a54f20b2c10" 2144 | dependencies: 2145 | jest-cli "^19.0.2" 2146 | 2147 | jodid25519@^1.0.0: 2148 | version "1.0.2" 2149 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 2150 | dependencies: 2151 | jsbn "~0.1.0" 2152 | 2153 | js-tokens@^3.0.0: 2154 | version "3.0.1" 2155 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 2156 | 2157 | js-yaml@^3.7.0: 2158 | version "3.8.3" 2159 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.3.tgz#33a05ec481c850c8875929166fe1beb61c728766" 2160 | dependencies: 2161 | argparse "^1.0.7" 2162 | esprima "^3.1.1" 2163 | 2164 | js-yaml@^3.9.1: 2165 | version "3.10.0" 2166 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 2167 | dependencies: 2168 | argparse "^1.0.7" 2169 | esprima "^4.0.0" 2170 | 2171 | jsbn@~0.1.0: 2172 | version "0.1.1" 2173 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2174 | 2175 | jsdom@^9.11.0: 2176 | version "9.12.0" 2177 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 2178 | dependencies: 2179 | abab "^1.0.3" 2180 | acorn "^4.0.4" 2181 | acorn-globals "^3.1.0" 2182 | array-equal "^1.0.0" 2183 | content-type-parser "^1.0.1" 2184 | cssom ">= 0.3.2 < 0.4.0" 2185 | cssstyle ">= 0.2.37 < 0.3.0" 2186 | escodegen "^1.6.1" 2187 | html-encoding-sniffer "^1.0.1" 2188 | nwmatcher ">= 1.3.9 < 2.0.0" 2189 | parse5 "^1.5.1" 2190 | request "^2.79.0" 2191 | sax "^1.2.1" 2192 | symbol-tree "^3.2.1" 2193 | tough-cookie "^2.3.2" 2194 | webidl-conversions "^4.0.0" 2195 | whatwg-encoding "^1.0.1" 2196 | whatwg-url "^4.3.0" 2197 | xml-name-validator "^2.0.1" 2198 | 2199 | jsesc@^1.3.0: 2200 | version "1.3.0" 2201 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2202 | 2203 | json-schema-traverse@^0.3.0: 2204 | version "0.3.1" 2205 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 2206 | 2207 | json-schema@0.2.3: 2208 | version "0.2.3" 2209 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2210 | 2211 | json-stable-stringify-without-jsonify@^1.0.1: 2212 | version "1.0.1" 2213 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 2214 | 2215 | json-stable-stringify@^1.0.1: 2216 | version "1.0.1" 2217 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2218 | dependencies: 2219 | jsonify "~0.0.0" 2220 | 2221 | json-stringify-safe@~5.0.1: 2222 | version "5.0.1" 2223 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2224 | 2225 | json5@^0.5.0: 2226 | version "0.5.1" 2227 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2228 | 2229 | jsonfile@^4.0.0: 2230 | version "4.0.0" 2231 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" 2232 | optionalDependencies: 2233 | graceful-fs "^4.1.6" 2234 | 2235 | jsonify@~0.0.0: 2236 | version "0.0.0" 2237 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2238 | 2239 | jsprim@^1.2.2: 2240 | version "1.4.0" 2241 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 2242 | dependencies: 2243 | assert-plus "1.0.0" 2244 | extsprintf "1.0.2" 2245 | json-schema "0.2.3" 2246 | verror "1.3.6" 2247 | 2248 | kefir@^3.7.3: 2249 | version "3.8.1" 2250 | resolved "https://registry.yarnpkg.com/kefir/-/kefir-3.8.1.tgz#6b202bc78c01ed4aa1c329e885b43631bf62ec0c" 2251 | dependencies: 2252 | symbol-observable "1.0.4" 2253 | 2254 | kind-of@^3.0.2: 2255 | version "3.1.0" 2256 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" 2257 | dependencies: 2258 | is-buffer "^1.0.2" 2259 | 2260 | kind-of@^3.0.3, kind-of@^3.2.0: 2261 | version "3.2.2" 2262 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2263 | dependencies: 2264 | is-buffer "^1.1.5" 2265 | 2266 | kind-of@^4.0.0: 2267 | version "4.0.0" 2268 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2269 | dependencies: 2270 | is-buffer "^1.1.5" 2271 | 2272 | kind-of@^5.0.0: 2273 | version "5.1.0" 2274 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 2275 | 2276 | kind-of@^6.0.0, kind-of@^6.0.2: 2277 | version "6.0.2" 2278 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 2279 | 2280 | lazy-cache@^1.0.3: 2281 | version "1.0.4" 2282 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2283 | 2284 | lazy-cache@^2.0.2: 2285 | version "2.0.2" 2286 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-2.0.2.tgz#b9190a4f913354694840859f8a8f7084d8822264" 2287 | dependencies: 2288 | set-getter "^0.1.0" 2289 | 2290 | lcid@^1.0.0: 2291 | version "1.0.0" 2292 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2293 | dependencies: 2294 | invert-kv "^1.0.0" 2295 | 2296 | leven@^2.0.0: 2297 | version "2.1.0" 2298 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 2299 | 2300 | levn@^0.3.0, levn@~0.3.0: 2301 | version "0.3.0" 2302 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2303 | dependencies: 2304 | prelude-ls "~1.1.2" 2305 | type-check "~0.3.2" 2306 | 2307 | load-json-file@^1.0.0: 2308 | version "1.1.0" 2309 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2310 | dependencies: 2311 | graceful-fs "^4.1.2" 2312 | parse-json "^2.2.0" 2313 | pify "^2.0.0" 2314 | pinkie-promise "^2.0.0" 2315 | strip-bom "^2.0.0" 2316 | 2317 | load-json-file@^2.0.0: 2318 | version "2.0.0" 2319 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2320 | dependencies: 2321 | graceful-fs "^4.1.2" 2322 | parse-json "^2.2.0" 2323 | pify "^2.0.0" 2324 | strip-bom "^3.0.0" 2325 | 2326 | locate-path@^2.0.0: 2327 | version "2.0.0" 2328 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2329 | dependencies: 2330 | p-locate "^2.0.0" 2331 | path-exists "^3.0.0" 2332 | 2333 | lodash.cond@^4.3.0: 2334 | version "4.5.2" 2335 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" 2336 | 2337 | lodash.endswith@^4.2.1: 2338 | version "4.2.1" 2339 | resolved "https://registry.yarnpkg.com/lodash.endswith/-/lodash.endswith-4.2.1.tgz#fed59ac1738ed3e236edd7064ec456448b37bc09" 2340 | 2341 | lodash.isfunction@^3.0.8: 2342 | version "3.0.9" 2343 | resolved "https://registry.yarnpkg.com/lodash.isfunction/-/lodash.isfunction-3.0.9.tgz#06de25df4db327ac931981d1bdb067e5af68d051" 2344 | 2345 | lodash.isstring@^4.0.1: 2346 | version "4.0.1" 2347 | resolved "https://registry.yarnpkg.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451" 2348 | 2349 | lodash.startswith@^4.2.1: 2350 | version "4.2.1" 2351 | resolved "https://registry.yarnpkg.com/lodash.startswith/-/lodash.startswith-4.2.1.tgz#c598c4adce188a27e53145731cdc6c0e7177600c" 2352 | 2353 | lodash@^4.14.0, lodash@^4.2.0: 2354 | version "4.17.4" 2355 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2356 | 2357 | lodash@^4.15.0, lodash@^4.17.4, lodash@^4.3.0: 2358 | version "4.17.5" 2359 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.5.tgz#99a92d65c0272debe8c96b6057bc8fbfa3bed511" 2360 | 2361 | longest@^1.0.1: 2362 | version "1.0.1" 2363 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2364 | 2365 | loose-envify@^1.0.0: 2366 | version "1.3.1" 2367 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2368 | dependencies: 2369 | js-tokens "^3.0.0" 2370 | 2371 | lru-cache@^4.0.1: 2372 | version "4.1.1" 2373 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 2374 | dependencies: 2375 | pseudomap "^1.0.2" 2376 | yallist "^2.1.2" 2377 | 2378 | makeerror@1.0.x: 2379 | version "1.0.11" 2380 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2381 | dependencies: 2382 | tmpl "1.0.x" 2383 | 2384 | map-cache@^0.2.2: 2385 | version "0.2.2" 2386 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 2387 | 2388 | map-visit@^1.0.0: 2389 | version "1.0.0" 2390 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 2391 | dependencies: 2392 | object-visit "^1.0.0" 2393 | 2394 | mem@^1.1.0: 2395 | version "1.1.0" 2396 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 2397 | dependencies: 2398 | mimic-fn "^1.0.0" 2399 | 2400 | merge@^1.1.3: 2401 | version "1.2.0" 2402 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 2403 | 2404 | micromatch@^2.1.5, micromatch@^2.3.11: 2405 | version "2.3.11" 2406 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2407 | dependencies: 2408 | arr-diff "^2.0.0" 2409 | array-unique "^0.2.1" 2410 | braces "^1.8.2" 2411 | expand-brackets "^0.1.4" 2412 | extglob "^0.3.1" 2413 | filename-regex "^2.0.0" 2414 | is-extglob "^1.0.0" 2415 | is-glob "^2.0.1" 2416 | kind-of "^3.0.2" 2417 | normalize-path "^2.0.1" 2418 | object.omit "^2.0.0" 2419 | parse-glob "^3.0.4" 2420 | regex-cache "^0.4.2" 2421 | 2422 | micromatch@^3.1.4: 2423 | version "3.1.6" 2424 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.6.tgz#8d7c043b48156f408ca07a4715182b79b99420bf" 2425 | dependencies: 2426 | arr-diff "^4.0.0" 2427 | array-unique "^0.3.2" 2428 | braces "^2.3.1" 2429 | define-property "^2.0.2" 2430 | extend-shallow "^3.0.2" 2431 | extglob "^2.0.4" 2432 | fragment-cache "^0.2.1" 2433 | kind-of "^6.0.2" 2434 | nanomatch "^1.2.9" 2435 | object.pick "^1.3.0" 2436 | regex-not "^1.0.0" 2437 | snapdragon "^0.8.1" 2438 | to-regex "^3.0.1" 2439 | 2440 | mime-db@~1.27.0: 2441 | version "1.27.0" 2442 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 2443 | 2444 | mime-types@^2.1.12, mime-types@~2.1.7: 2445 | version "2.1.15" 2446 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 2447 | dependencies: 2448 | mime-db "~1.27.0" 2449 | 2450 | mimic-fn@^1.0.0: 2451 | version "1.2.0" 2452 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 2453 | 2454 | minimatch@^3.0.0, minimatch@^3.0.4: 2455 | version "3.0.4" 2456 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2457 | dependencies: 2458 | brace-expansion "^1.1.7" 2459 | 2460 | minimatch@^3.0.2, minimatch@^3.0.3: 2461 | version "3.0.3" 2462 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 2463 | dependencies: 2464 | brace-expansion "^1.0.0" 2465 | 2466 | minimist@0.0.8, minimist@~0.0.1: 2467 | version "0.0.8" 2468 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2469 | 2470 | minimist@^1.1.1, minimist@^1.2.0: 2471 | version "1.2.0" 2472 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2473 | 2474 | mixin-deep@^1.2.0: 2475 | version "1.3.1" 2476 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe" 2477 | dependencies: 2478 | for-in "^1.0.2" 2479 | is-extendable "^1.0.1" 2480 | 2481 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 2482 | version "0.5.1" 2483 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2484 | dependencies: 2485 | minimist "0.0.8" 2486 | 2487 | ms@0.7.2: 2488 | version "0.7.2" 2489 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 2490 | 2491 | ms@2.0.0: 2492 | version "2.0.0" 2493 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2494 | 2495 | mute-stream@0.0.7: 2496 | version "0.0.7" 2497 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 2498 | 2499 | nan@^2.3.0: 2500 | version "2.8.0" 2501 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.8.0.tgz#ed715f3fe9de02b57a5e6252d90a96675e1f085a" 2502 | 2503 | nanomatch@^1.2.9: 2504 | version "1.2.9" 2505 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.9.tgz#879f7150cb2dab7a471259066c104eee6e0fa7c2" 2506 | dependencies: 2507 | arr-diff "^4.0.0" 2508 | array-unique "^0.3.2" 2509 | define-property "^2.0.2" 2510 | extend-shallow "^3.0.2" 2511 | fragment-cache "^0.2.1" 2512 | is-odd "^2.0.0" 2513 | is-windows "^1.0.2" 2514 | kind-of "^6.0.2" 2515 | object.pick "^1.3.0" 2516 | regex-not "^1.0.0" 2517 | snapdragon "^0.8.1" 2518 | to-regex "^3.0.1" 2519 | 2520 | natural-compare@^1.4.0: 2521 | version "1.4.0" 2522 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2523 | 2524 | node-int64@^0.4.0: 2525 | version "0.4.0" 2526 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2527 | 2528 | node-notifier@^5.0.1: 2529 | version "5.1.2" 2530 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 2531 | dependencies: 2532 | growly "^1.3.0" 2533 | semver "^5.3.0" 2534 | shellwords "^0.1.0" 2535 | which "^1.2.12" 2536 | 2537 | node-pre-gyp@^0.6.39: 2538 | version "0.6.39" 2539 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 2540 | dependencies: 2541 | detect-libc "^1.0.2" 2542 | hawk "3.1.3" 2543 | mkdirp "^0.5.1" 2544 | nopt "^4.0.1" 2545 | npmlog "^4.0.2" 2546 | rc "^1.1.7" 2547 | request "2.81.0" 2548 | rimraf "^2.6.1" 2549 | semver "^5.3.0" 2550 | tar "^2.2.1" 2551 | tar-pack "^3.4.0" 2552 | 2553 | nopt@^4.0.1: 2554 | version "4.0.1" 2555 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2556 | dependencies: 2557 | abbrev "1" 2558 | osenv "^0.1.4" 2559 | 2560 | normalize-package-data@^2.3.2: 2561 | version "2.3.6" 2562 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.6.tgz#498fa420c96401f787402ba21e600def9f981fff" 2563 | dependencies: 2564 | hosted-git-info "^2.1.4" 2565 | is-builtin-module "^1.0.0" 2566 | semver "2 || 3 || 4 || 5" 2567 | validate-npm-package-license "^3.0.1" 2568 | 2569 | normalize-path@^2.0.1, normalize-path@^2.1.1: 2570 | version "2.1.1" 2571 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2572 | dependencies: 2573 | remove-trailing-separator "^1.0.1" 2574 | 2575 | npm-run-path@^2.0.0: 2576 | version "2.0.2" 2577 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2578 | dependencies: 2579 | path-key "^2.0.0" 2580 | 2581 | npmlog@^4.0.2: 2582 | version "4.1.2" 2583 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2584 | dependencies: 2585 | are-we-there-yet "~1.1.2" 2586 | console-control-strings "~1.1.0" 2587 | gauge "~2.7.3" 2588 | set-blocking "~2.0.0" 2589 | 2590 | number-is-nan@^1.0.0: 2591 | version "1.0.1" 2592 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2593 | 2594 | "nwmatcher@>= 1.3.9 < 2.0.0": 2595 | version "1.3.9" 2596 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.3.9.tgz#8bab486ff7fa3dfd086656bbe8b17116d3692d2a" 2597 | 2598 | oauth-sign@~0.8.1: 2599 | version "0.8.2" 2600 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2601 | 2602 | object-assign@^4.0.1, object-assign@^4.1.0: 2603 | version "4.1.1" 2604 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2605 | 2606 | object-copy@^0.1.0: 2607 | version "0.1.0" 2608 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 2609 | dependencies: 2610 | copy-descriptor "^0.1.0" 2611 | define-property "^0.2.5" 2612 | kind-of "^3.0.3" 2613 | 2614 | object-visit@^1.0.0: 2615 | version "1.0.1" 2616 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 2617 | dependencies: 2618 | isobject "^3.0.0" 2619 | 2620 | object.omit@^2.0.0: 2621 | version "2.0.1" 2622 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2623 | dependencies: 2624 | for-own "^0.1.4" 2625 | is-extendable "^0.1.1" 2626 | 2627 | object.pick@^1.3.0: 2628 | version "1.3.0" 2629 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 2630 | dependencies: 2631 | isobject "^3.0.1" 2632 | 2633 | once@^1.3.0, once@^1.3.3, once@^1.4.0: 2634 | version "1.4.0" 2635 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2636 | dependencies: 2637 | wrappy "1" 2638 | 2639 | onetime@^2.0.0: 2640 | version "2.0.1" 2641 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2642 | dependencies: 2643 | mimic-fn "^1.0.0" 2644 | 2645 | optimist@^0.6.1: 2646 | version "0.6.1" 2647 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2648 | dependencies: 2649 | minimist "~0.0.1" 2650 | wordwrap "~0.0.2" 2651 | 2652 | optionator@^0.8.1, optionator@^0.8.2: 2653 | version "0.8.2" 2654 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2655 | dependencies: 2656 | deep-is "~0.1.3" 2657 | fast-levenshtein "~2.0.4" 2658 | levn "~0.3.0" 2659 | prelude-ls "~1.1.2" 2660 | type-check "~0.3.2" 2661 | wordwrap "~1.0.0" 2662 | 2663 | os-homedir@^1.0.0: 2664 | version "1.0.2" 2665 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2666 | 2667 | os-locale@^1.4.0: 2668 | version "1.4.0" 2669 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2670 | dependencies: 2671 | lcid "^1.0.0" 2672 | 2673 | os-locale@^2.0.0: 2674 | version "2.1.0" 2675 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 2676 | dependencies: 2677 | execa "^0.7.0" 2678 | lcid "^1.0.0" 2679 | mem "^1.1.0" 2680 | 2681 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.2: 2682 | version "1.0.2" 2683 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2684 | 2685 | osenv@^0.1.4: 2686 | version "0.1.5" 2687 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 2688 | dependencies: 2689 | os-homedir "^1.0.0" 2690 | os-tmpdir "^1.0.0" 2691 | 2692 | p-finally@^1.0.0: 2693 | version "1.0.0" 2694 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2695 | 2696 | p-limit@^1.1.0: 2697 | version "1.1.0" 2698 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2699 | 2700 | p-locate@^2.0.0: 2701 | version "2.0.0" 2702 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2703 | dependencies: 2704 | p-limit "^1.1.0" 2705 | 2706 | parse-glob@^3.0.4: 2707 | version "3.0.4" 2708 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2709 | dependencies: 2710 | glob-base "^0.3.0" 2711 | is-dotfile "^1.0.0" 2712 | is-extglob "^1.0.0" 2713 | is-glob "^2.0.0" 2714 | 2715 | parse-json@^2.2.0: 2716 | version "2.2.0" 2717 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2718 | dependencies: 2719 | error-ex "^1.2.0" 2720 | 2721 | parse5@^1.5.1: 2722 | version "1.5.1" 2723 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 2724 | 2725 | pascalcase@^0.1.1: 2726 | version "0.1.1" 2727 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 2728 | 2729 | path-dirname@^1.0.0: 2730 | version "1.0.2" 2731 | resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" 2732 | 2733 | path-exists@^2.0.0: 2734 | version "2.1.0" 2735 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2736 | dependencies: 2737 | pinkie-promise "^2.0.0" 2738 | 2739 | path-exists@^3.0.0: 2740 | version "3.0.0" 2741 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2742 | 2743 | path-is-absolute@^1.0.0: 2744 | version "1.0.1" 2745 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2746 | 2747 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 2748 | version "1.0.2" 2749 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2750 | 2751 | path-key@^2.0.0: 2752 | version "2.0.1" 2753 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2754 | 2755 | path-parse@^1.0.5: 2756 | version "1.0.5" 2757 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2758 | 2759 | path-type@^1.0.0: 2760 | version "1.1.0" 2761 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2762 | dependencies: 2763 | graceful-fs "^4.1.2" 2764 | pify "^2.0.0" 2765 | pinkie-promise "^2.0.0" 2766 | 2767 | path-type@^2.0.0: 2768 | version "2.0.0" 2769 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 2770 | dependencies: 2771 | pify "^2.0.0" 2772 | 2773 | performance-now@^0.2.0: 2774 | version "0.2.0" 2775 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2776 | 2777 | pify@^2.0.0: 2778 | version "2.3.0" 2779 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2780 | 2781 | pinkie-promise@^2.0.0: 2782 | version "2.0.1" 2783 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2784 | dependencies: 2785 | pinkie "^2.0.0" 2786 | 2787 | pinkie@^2.0.0: 2788 | version "2.0.4" 2789 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2790 | 2791 | pkg-dir@^1.0.0: 2792 | version "1.0.0" 2793 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 2794 | dependencies: 2795 | find-up "^1.0.0" 2796 | 2797 | pluralize@^7.0.0: 2798 | version "7.0.0" 2799 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" 2800 | 2801 | posix-character-classes@^0.1.0: 2802 | version "0.1.1" 2803 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 2804 | 2805 | prelude-ls@~1.1.2: 2806 | version "1.1.2" 2807 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2808 | 2809 | preserve@^0.2.0: 2810 | version "0.2.0" 2811 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2812 | 2813 | prettier@^1.10.2: 2814 | version "1.10.2" 2815 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.10.2.tgz#1af8356d1842276a99a5b5529c82dd9e9ad3cc93" 2816 | 2817 | pretty-format@^19.0.0: 2818 | version "19.0.0" 2819 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-19.0.0.tgz#56530d32acb98a3fa4851c4e2b9d37b420684c84" 2820 | dependencies: 2821 | ansi-styles "^3.0.0" 2822 | 2823 | private@^0.1.6: 2824 | version "0.1.7" 2825 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2826 | 2827 | process-nextick-args@~2.0.0: 2828 | version "2.0.0" 2829 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 2830 | 2831 | progress@^2.0.0: 2832 | version "2.0.0" 2833 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 2834 | 2835 | prr@~0.0.0: 2836 | version "0.0.0" 2837 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 2838 | 2839 | pseudomap@^1.0.2: 2840 | version "1.0.2" 2841 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2842 | 2843 | punycode@^1.4.1: 2844 | version "1.4.1" 2845 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2846 | 2847 | qs@~6.4.0: 2848 | version "6.4.0" 2849 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2850 | 2851 | randomatic@^1.1.3: 2852 | version "1.1.6" 2853 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 2854 | dependencies: 2855 | is-number "^2.0.2" 2856 | kind-of "^3.0.2" 2857 | 2858 | rc@^1.1.7: 2859 | version "1.2.5" 2860 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.5.tgz#275cd687f6e3b36cc756baa26dfee80a790301fd" 2861 | dependencies: 2862 | deep-extend "~0.4.0" 2863 | ini "~1.3.0" 2864 | minimist "^1.2.0" 2865 | strip-json-comments "~2.0.1" 2866 | 2867 | read-pkg-up@^1.0.1: 2868 | version "1.0.1" 2869 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2870 | dependencies: 2871 | find-up "^1.0.0" 2872 | read-pkg "^1.0.0" 2873 | 2874 | read-pkg-up@^2.0.0: 2875 | version "2.0.0" 2876 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 2877 | dependencies: 2878 | find-up "^2.0.0" 2879 | read-pkg "^2.0.0" 2880 | 2881 | read-pkg@^1.0.0: 2882 | version "1.1.0" 2883 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2884 | dependencies: 2885 | load-json-file "^1.0.0" 2886 | normalize-package-data "^2.3.2" 2887 | path-type "^1.0.0" 2888 | 2889 | read-pkg@^2.0.0: 2890 | version "2.0.0" 2891 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 2892 | dependencies: 2893 | load-json-file "^2.0.0" 2894 | normalize-package-data "^2.3.2" 2895 | path-type "^2.0.0" 2896 | 2897 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.2: 2898 | version "2.3.4" 2899 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.4.tgz#c946c3f47fa7d8eabc0b6150f4a12f69a4574071" 2900 | dependencies: 2901 | core-util-is "~1.0.0" 2902 | inherits "~2.0.3" 2903 | isarray "~1.0.0" 2904 | process-nextick-args "~2.0.0" 2905 | safe-buffer "~5.1.1" 2906 | string_decoder "~1.0.3" 2907 | util-deprecate "~1.0.1" 2908 | 2909 | readdirp@^2.0.0: 2910 | version "2.1.0" 2911 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2912 | dependencies: 2913 | graceful-fs "^4.1.2" 2914 | minimatch "^3.0.2" 2915 | readable-stream "^2.0.2" 2916 | set-immediate-shim "^1.0.1" 2917 | 2918 | regenerator-runtime@^0.10.0: 2919 | version "0.10.3" 2920 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.3.tgz#8c4367a904b51ea62a908ac310bf99ff90a82a3e" 2921 | 2922 | regex-cache@^0.4.2: 2923 | version "0.4.3" 2924 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2925 | dependencies: 2926 | is-equal-shallow "^0.1.3" 2927 | is-primitive "^2.0.0" 2928 | 2929 | regex-not@^1.0.0: 2930 | version "1.0.0" 2931 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.0.tgz#42f83e39771622df826b02af176525d6a5f157f9" 2932 | dependencies: 2933 | extend-shallow "^2.0.1" 2934 | 2935 | remove-trailing-separator@^1.0.1: 2936 | version "1.0.1" 2937 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" 2938 | 2939 | repeat-element@^1.1.2: 2940 | version "1.1.2" 2941 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2942 | 2943 | repeat-string@^1.5.2, repeat-string@^1.6.1: 2944 | version "1.6.1" 2945 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2946 | 2947 | repeating@^2.0.0: 2948 | version "2.0.1" 2949 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2950 | dependencies: 2951 | is-finite "^1.0.0" 2952 | 2953 | request@2.81.0, request@^2.79.0: 2954 | version "2.81.0" 2955 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2956 | dependencies: 2957 | aws-sign2 "~0.6.0" 2958 | aws4 "^1.2.1" 2959 | caseless "~0.12.0" 2960 | combined-stream "~1.0.5" 2961 | extend "~3.0.0" 2962 | forever-agent "~0.6.1" 2963 | form-data "~2.1.1" 2964 | har-validator "~4.2.1" 2965 | hawk "~3.1.3" 2966 | http-signature "~1.1.0" 2967 | is-typedarray "~1.0.0" 2968 | isstream "~0.1.2" 2969 | json-stringify-safe "~5.0.1" 2970 | mime-types "~2.1.7" 2971 | oauth-sign "~0.8.1" 2972 | performance-now "^0.2.0" 2973 | qs "~6.4.0" 2974 | safe-buffer "^5.0.1" 2975 | stringstream "~0.0.4" 2976 | tough-cookie "~2.3.0" 2977 | tunnel-agent "^0.6.0" 2978 | uuid "^3.0.0" 2979 | 2980 | require-directory@^2.1.1: 2981 | version "2.1.1" 2982 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2983 | 2984 | require-main-filename@^1.0.1: 2985 | version "1.0.1" 2986 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2987 | 2988 | require-uncached@^1.0.3: 2989 | version "1.0.3" 2990 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 2991 | dependencies: 2992 | caller-path "^0.1.0" 2993 | resolve-from "^1.0.0" 2994 | 2995 | resolve-from@^1.0.0: 2996 | version "1.0.1" 2997 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 2998 | 2999 | resolve-url@^0.2.1: 3000 | version "0.2.1" 3001 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 3002 | 3003 | resolve@1.1.7: 3004 | version "1.1.7" 3005 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 3006 | 3007 | resolve@^1.2.0: 3008 | version "1.3.2" 3009 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.2.tgz#1f0442c9e0cbb8136e87b9305f932f46c7f28235" 3010 | dependencies: 3011 | path-parse "^1.0.5" 3012 | 3013 | resolve@^1.5.0: 3014 | version "1.5.0" 3015 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36" 3016 | dependencies: 3017 | path-parse "^1.0.5" 3018 | 3019 | restore-cursor@^2.0.0: 3020 | version "2.0.0" 3021 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 3022 | dependencies: 3023 | onetime "^2.0.0" 3024 | signal-exit "^3.0.2" 3025 | 3026 | right-align@^0.1.1: 3027 | version "0.1.3" 3028 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3029 | dependencies: 3030 | align-text "^0.1.1" 3031 | 3032 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1: 3033 | version "2.6.2" 3034 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 3035 | dependencies: 3036 | glob "^7.0.5" 3037 | 3038 | rimraf@^2.4.4: 3039 | version "2.6.1" 3040 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 3041 | dependencies: 3042 | glob "^7.0.5" 3043 | 3044 | run-async@^2.2.0: 3045 | version "2.3.0" 3046 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 3047 | dependencies: 3048 | is-promise "^2.1.0" 3049 | 3050 | rx-lite-aggregates@^4.0.8: 3051 | version "4.0.8" 3052 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 3053 | dependencies: 3054 | rx-lite "*" 3055 | 3056 | rx-lite@*, rx-lite@^4.0.8: 3057 | version "4.0.8" 3058 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 3059 | 3060 | safe-buffer@^5.0.1: 3061 | version "5.0.1" 3062 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 3063 | 3064 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 3065 | version "5.1.1" 3066 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 3067 | 3068 | sane@~1.5.0: 3069 | version "1.5.0" 3070 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.5.0.tgz#a4adeae764d048621ecb27d5f9ecf513101939f3" 3071 | dependencies: 3072 | anymatch "^1.3.0" 3073 | exec-sh "^0.2.0" 3074 | fb-watchman "^1.8.0" 3075 | minimatch "^3.0.2" 3076 | minimist "^1.1.1" 3077 | walker "~1.0.5" 3078 | watch "~0.10.0" 3079 | 3080 | sax@^1.2.1: 3081 | version "1.2.2" 3082 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.2.tgz#fd8631a23bc7826bef5d871bdb87378c95647828" 3083 | 3084 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 3085 | version "5.3.0" 3086 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 3087 | 3088 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3089 | version "2.0.0" 3090 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3091 | 3092 | set-getter@^0.1.0: 3093 | version "0.1.0" 3094 | resolved "https://registry.yarnpkg.com/set-getter/-/set-getter-0.1.0.tgz#d769c182c9d5a51f409145f2fba82e5e86e80376" 3095 | dependencies: 3096 | to-object-path "^0.3.0" 3097 | 3098 | set-immediate-shim@^1.0.1: 3099 | version "1.0.1" 3100 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3101 | 3102 | set-value@^0.4.3: 3103 | version "0.4.3" 3104 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" 3105 | dependencies: 3106 | extend-shallow "^2.0.1" 3107 | is-extendable "^0.1.1" 3108 | is-plain-object "^2.0.1" 3109 | to-object-path "^0.3.0" 3110 | 3111 | set-value@^2.0.0: 3112 | version "2.0.0" 3113 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" 3114 | dependencies: 3115 | extend-shallow "^2.0.1" 3116 | is-extendable "^0.1.1" 3117 | is-plain-object "^2.0.3" 3118 | split-string "^3.0.1" 3119 | 3120 | shebang-command@^1.2.0: 3121 | version "1.2.0" 3122 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3123 | dependencies: 3124 | shebang-regex "^1.0.0" 3125 | 3126 | shebang-regex@^1.0.0: 3127 | version "1.0.0" 3128 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3129 | 3130 | shellwords@^0.1.0: 3131 | version "0.1.0" 3132 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.0.tgz#66afd47b6a12932d9071cbfd98a52e785cd0ba14" 3133 | 3134 | signal-exit@^3.0.0, signal-exit@^3.0.2: 3135 | version "3.0.2" 3136 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3137 | 3138 | slash@^1.0.0: 3139 | version "1.0.0" 3140 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3141 | 3142 | slice-ansi@1.0.0: 3143 | version "1.0.0" 3144 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" 3145 | dependencies: 3146 | is-fullwidth-code-point "^2.0.0" 3147 | 3148 | snapdragon-node@^2.0.1: 3149 | version "2.1.1" 3150 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 3151 | dependencies: 3152 | define-property "^1.0.0" 3153 | isobject "^3.0.0" 3154 | snapdragon-util "^3.0.1" 3155 | 3156 | snapdragon-util@^3.0.1: 3157 | version "3.0.1" 3158 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 3159 | dependencies: 3160 | kind-of "^3.2.0" 3161 | 3162 | snapdragon@^0.8.1: 3163 | version "0.8.1" 3164 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.1.tgz#e12b5487faded3e3dea0ac91e9400bf75b401370" 3165 | dependencies: 3166 | base "^0.11.1" 3167 | debug "^2.2.0" 3168 | define-property "^0.2.5" 3169 | extend-shallow "^2.0.1" 3170 | map-cache "^0.2.2" 3171 | source-map "^0.5.6" 3172 | source-map-resolve "^0.5.0" 3173 | use "^2.0.0" 3174 | 3175 | sntp@1.x.x: 3176 | version "1.0.9" 3177 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3178 | dependencies: 3179 | hoek "2.x.x" 3180 | 3181 | source-map-resolve@^0.5.0: 3182 | version "0.5.1" 3183 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.1.tgz#7ad0f593f2281598e854df80f19aae4b92d7a11a" 3184 | dependencies: 3185 | atob "^2.0.0" 3186 | decode-uri-component "^0.2.0" 3187 | resolve-url "^0.2.1" 3188 | source-map-url "^0.4.0" 3189 | urix "^0.1.0" 3190 | 3191 | source-map-support@^0.4.2: 3192 | version "0.4.14" 3193 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.14.tgz#9d4463772598b86271b4f523f6c1f4e02a7d6aef" 3194 | dependencies: 3195 | source-map "^0.5.6" 3196 | 3197 | source-map-url@^0.4.0: 3198 | version "0.4.0" 3199 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 3200 | 3201 | source-map@^0.4.4: 3202 | version "0.4.4" 3203 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3204 | dependencies: 3205 | amdefine ">=0.0.4" 3206 | 3207 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 3208 | version "0.5.6" 3209 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 3210 | 3211 | source-map@~0.2.0: 3212 | version "0.2.0" 3213 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 3214 | dependencies: 3215 | amdefine ">=0.0.4" 3216 | 3217 | spdx-correct@~1.0.0: 3218 | version "1.0.2" 3219 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3220 | dependencies: 3221 | spdx-license-ids "^1.0.2" 3222 | 3223 | spdx-expression-parse@~1.0.0: 3224 | version "1.0.4" 3225 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3226 | 3227 | spdx-license-ids@^1.0.2: 3228 | version "1.2.2" 3229 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3230 | 3231 | split-string@^3.0.1, split-string@^3.0.2: 3232 | version "3.1.0" 3233 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 3234 | dependencies: 3235 | extend-shallow "^3.0.0" 3236 | 3237 | sprintf-js@~1.0.2: 3238 | version "1.0.3" 3239 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3240 | 3241 | sshpk@^1.7.0: 3242 | version "1.13.0" 3243 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.0.tgz#ff2a3e4fd04497555fed97b39a0fd82fafb3a33c" 3244 | dependencies: 3245 | asn1 "~0.2.3" 3246 | assert-plus "^1.0.0" 3247 | dashdash "^1.12.0" 3248 | getpass "^0.1.1" 3249 | optionalDependencies: 3250 | bcrypt-pbkdf "^1.0.0" 3251 | ecc-jsbn "~0.1.1" 3252 | jodid25519 "^1.0.0" 3253 | jsbn "~0.1.0" 3254 | tweetnacl "~0.14.0" 3255 | 3256 | static-extend@^0.1.1: 3257 | version "0.1.2" 3258 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 3259 | dependencies: 3260 | define-property "^0.2.5" 3261 | object-copy "^0.1.0" 3262 | 3263 | string-length@^1.0.1: 3264 | version "1.0.1" 3265 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 3266 | dependencies: 3267 | strip-ansi "^3.0.0" 3268 | 3269 | string-width@^1.0.1, string-width@^1.0.2: 3270 | version "1.0.2" 3271 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3272 | dependencies: 3273 | code-point-at "^1.0.0" 3274 | is-fullwidth-code-point "^1.0.0" 3275 | strip-ansi "^3.0.0" 3276 | 3277 | string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: 3278 | version "2.1.1" 3279 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3280 | dependencies: 3281 | is-fullwidth-code-point "^2.0.0" 3282 | strip-ansi "^4.0.0" 3283 | 3284 | string_decoder@~1.0.3: 3285 | version "1.0.3" 3286 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 3287 | dependencies: 3288 | safe-buffer "~5.1.0" 3289 | 3290 | stringstream@~0.0.4: 3291 | version "0.0.5" 3292 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3293 | 3294 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3295 | version "3.0.1" 3296 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3297 | dependencies: 3298 | ansi-regex "^2.0.0" 3299 | 3300 | strip-ansi@^4.0.0: 3301 | version "4.0.0" 3302 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3303 | dependencies: 3304 | ansi-regex "^3.0.0" 3305 | 3306 | strip-bom@3.0.0, strip-bom@^3.0.0: 3307 | version "3.0.0" 3308 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3309 | 3310 | strip-bom@^2.0.0: 3311 | version "2.0.0" 3312 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3313 | dependencies: 3314 | is-utf8 "^0.2.0" 3315 | 3316 | strip-eof@^1.0.0: 3317 | version "1.0.0" 3318 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3319 | 3320 | strip-json-comments@~2.0.1: 3321 | version "2.0.1" 3322 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3323 | 3324 | supports-color@^2.0.0: 3325 | version "2.0.0" 3326 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3327 | 3328 | supports-color@^3.1.2: 3329 | version "3.2.3" 3330 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3331 | dependencies: 3332 | has-flag "^1.0.0" 3333 | 3334 | supports-color@^5.2.0: 3335 | version "5.2.0" 3336 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.2.0.tgz#b0d5333b1184dd3666cbe5aa0b45c5ac7ac17a4a" 3337 | dependencies: 3338 | has-flag "^3.0.0" 3339 | 3340 | symbol-observable@1.0.4: 3341 | version "1.0.4" 3342 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d" 3343 | 3344 | symbol-tree@^3.2.1: 3345 | version "3.2.2" 3346 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 3347 | 3348 | table@^4.0.1: 3349 | version "4.0.2" 3350 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36" 3351 | dependencies: 3352 | ajv "^5.2.3" 3353 | ajv-keywords "^2.1.0" 3354 | chalk "^2.1.0" 3355 | lodash "^4.17.4" 3356 | slice-ansi "1.0.0" 3357 | string-width "^2.1.1" 3358 | 3359 | tar-pack@^3.4.0: 3360 | version "3.4.1" 3361 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 3362 | dependencies: 3363 | debug "^2.2.0" 3364 | fstream "^1.0.10" 3365 | fstream-ignore "^1.0.5" 3366 | once "^1.3.3" 3367 | readable-stream "^2.1.4" 3368 | rimraf "^2.5.1" 3369 | tar "^2.2.1" 3370 | uid-number "^0.0.6" 3371 | 3372 | tar@^2.2.1: 3373 | version "2.2.1" 3374 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3375 | dependencies: 3376 | block-stream "*" 3377 | fstream "^1.0.2" 3378 | inherits "2" 3379 | 3380 | test-exclude@^4.0.3: 3381 | version "4.0.3" 3382 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.0.3.tgz#86a13ce3effcc60e6c90403cf31a27a60ac6c4e7" 3383 | dependencies: 3384 | arrify "^1.0.1" 3385 | micromatch "^2.3.11" 3386 | object-assign "^4.1.0" 3387 | read-pkg-up "^1.0.1" 3388 | require-main-filename "^1.0.1" 3389 | 3390 | text-table@~0.2.0: 3391 | version "0.2.0" 3392 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3393 | 3394 | throat@^3.0.0: 3395 | version "3.0.0" 3396 | resolved "https://registry.yarnpkg.com/throat/-/throat-3.0.0.tgz#e7c64c867cbb3845f10877642f7b60055b8ec0d6" 3397 | 3398 | through@^2.3.6: 3399 | version "2.3.8" 3400 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3401 | 3402 | tmp@^0.0.33: 3403 | version "0.0.33" 3404 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 3405 | dependencies: 3406 | os-tmpdir "~1.0.2" 3407 | 3408 | tmpl@1.0.x: 3409 | version "1.0.4" 3410 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 3411 | 3412 | to-fast-properties@^1.0.1: 3413 | version "1.0.2" 3414 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 3415 | 3416 | to-fast-properties@^2.0.0: 3417 | version "2.0.0" 3418 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 3419 | 3420 | to-object-path@^0.3.0: 3421 | version "0.3.0" 3422 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 3423 | dependencies: 3424 | kind-of "^3.0.2" 3425 | 3426 | to-regex-range@^2.1.0: 3427 | version "2.1.1" 3428 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 3429 | dependencies: 3430 | is-number "^3.0.0" 3431 | repeat-string "^1.6.1" 3432 | 3433 | to-regex@^3.0.1: 3434 | version "3.0.1" 3435 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.1.tgz#15358bee4a2c83bd76377ba1dc049d0f18837aae" 3436 | dependencies: 3437 | define-property "^0.2.5" 3438 | extend-shallow "^2.0.1" 3439 | regex-not "^1.0.0" 3440 | 3441 | tough-cookie@^2.3.2, tough-cookie@~2.3.0: 3442 | version "2.3.2" 3443 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3444 | dependencies: 3445 | punycode "^1.4.1" 3446 | 3447 | tr46@~0.0.3: 3448 | version "0.0.3" 3449 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 3450 | 3451 | trim-right@^1.0.1: 3452 | version "1.0.1" 3453 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3454 | 3455 | tunnel-agent@^0.6.0: 3456 | version "0.6.0" 3457 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3458 | dependencies: 3459 | safe-buffer "^5.0.1" 3460 | 3461 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3462 | version "0.14.5" 3463 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3464 | 3465 | type-check@~0.3.2: 3466 | version "0.3.2" 3467 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3468 | dependencies: 3469 | prelude-ls "~1.1.2" 3470 | 3471 | typedarray@^0.0.6: 3472 | version "0.0.6" 3473 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3474 | 3475 | uglify-js@^2.6: 3476 | version "2.8.22" 3477 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.22.tgz#d54934778a8da14903fa29a326fb24c0ab51a1a0" 3478 | dependencies: 3479 | source-map "~0.5.1" 3480 | yargs "~3.10.0" 3481 | optionalDependencies: 3482 | uglify-to-browserify "~1.0.0" 3483 | 3484 | uglify-to-browserify@~1.0.0: 3485 | version "1.0.2" 3486 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3487 | 3488 | uid-number@^0.0.6: 3489 | version "0.0.6" 3490 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3491 | 3492 | union-value@^1.0.0: 3493 | version "1.0.0" 3494 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" 3495 | dependencies: 3496 | arr-union "^3.1.0" 3497 | get-value "^2.0.6" 3498 | is-extendable "^0.1.1" 3499 | set-value "^0.4.3" 3500 | 3501 | universalify@^0.1.0: 3502 | version "0.1.1" 3503 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.1.tgz#fa71badd4437af4c148841e3b3b165f9e9e590b7" 3504 | 3505 | unset-value@^1.0.0: 3506 | version "1.0.0" 3507 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 3508 | dependencies: 3509 | has-value "^0.3.1" 3510 | isobject "^3.0.0" 3511 | 3512 | upath@^1.0.0: 3513 | version "1.0.2" 3514 | resolved "https://registry.yarnpkg.com/upath/-/upath-1.0.2.tgz#80aaae5395abc5fd402933ae2f58694f0860204c" 3515 | dependencies: 3516 | lodash.endswith "^4.2.1" 3517 | lodash.isfunction "^3.0.8" 3518 | lodash.isstring "^4.0.1" 3519 | lodash.startswith "^4.2.1" 3520 | 3521 | urix@^0.1.0: 3522 | version "0.1.0" 3523 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 3524 | 3525 | use@^2.0.0: 3526 | version "2.0.2" 3527 | resolved "https://registry.yarnpkg.com/use/-/use-2.0.2.tgz#ae28a0d72f93bf22422a18a2e379993112dec8e8" 3528 | dependencies: 3529 | define-property "^0.2.5" 3530 | isobject "^3.0.0" 3531 | lazy-cache "^2.0.2" 3532 | 3533 | util-deprecate@~1.0.1: 3534 | version "1.0.2" 3535 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3536 | 3537 | uuid@^3.0.0: 3538 | version "3.0.1" 3539 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 3540 | 3541 | validate-npm-package-license@^3.0.1: 3542 | version "3.0.1" 3543 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3544 | dependencies: 3545 | spdx-correct "~1.0.0" 3546 | spdx-expression-parse "~1.0.0" 3547 | 3548 | verror@1.3.6: 3549 | version "1.3.6" 3550 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 3551 | dependencies: 3552 | extsprintf "1.0.2" 3553 | 3554 | vlq@^0.2.1: 3555 | version "0.2.3" 3556 | resolved "https://registry.yarnpkg.com/vlq/-/vlq-0.2.3.tgz#8f3e4328cf63b1540c0d67e1b2778386f8975b26" 3557 | 3558 | walker@~1.0.5: 3559 | version "1.0.7" 3560 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 3561 | dependencies: 3562 | makeerror "1.0.x" 3563 | 3564 | watch@~0.10.0: 3565 | version "0.10.0" 3566 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 3567 | 3568 | webidl-conversions@^3.0.0: 3569 | version "3.0.1" 3570 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 3571 | 3572 | webidl-conversions@^4.0.0: 3573 | version "4.0.1" 3574 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.1.tgz#8015a17ab83e7e1b311638486ace81da6ce206a0" 3575 | 3576 | whatwg-encoding@^1.0.1: 3577 | version "1.0.1" 3578 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 3579 | dependencies: 3580 | iconv-lite "0.4.13" 3581 | 3582 | whatwg-url@^4.3.0: 3583 | version "4.7.0" 3584 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.7.0.tgz#202035ac1955b087cdd20fa8b58ded3ab1cd2af5" 3585 | dependencies: 3586 | tr46 "~0.0.3" 3587 | webidl-conversions "^3.0.0" 3588 | 3589 | which-module@^1.0.0: 3590 | version "1.0.0" 3591 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 3592 | 3593 | which-module@^2.0.0: 3594 | version "2.0.0" 3595 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 3596 | 3597 | which@^1.1.1, which@^1.2.12: 3598 | version "1.2.14" 3599 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 3600 | dependencies: 3601 | isexe "^2.0.0" 3602 | 3603 | which@^1.2.9: 3604 | version "1.3.0" 3605 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 3606 | dependencies: 3607 | isexe "^2.0.0" 3608 | 3609 | wide-align@^1.1.0: 3610 | version "1.1.2" 3611 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3612 | dependencies: 3613 | string-width "^1.0.2" 3614 | 3615 | window-size@0.1.0: 3616 | version "0.1.0" 3617 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3618 | 3619 | wordwrap@0.0.2: 3620 | version "0.0.2" 3621 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3622 | 3623 | wordwrap@~0.0.2: 3624 | version "0.0.3" 3625 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3626 | 3627 | wordwrap@~1.0.0: 3628 | version "1.0.0" 3629 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3630 | 3631 | worker-farm@^1.3.1: 3632 | version "1.3.1" 3633 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.3.1.tgz#4333112bb49b17aa050b87895ca6b2cacf40e5ff" 3634 | dependencies: 3635 | errno ">=0.1.1 <0.2.0-0" 3636 | xtend ">=4.0.0 <4.1.0-0" 3637 | 3638 | wrap-ansi@^2.0.0: 3639 | version "2.1.0" 3640 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3641 | dependencies: 3642 | string-width "^1.0.1" 3643 | strip-ansi "^3.0.1" 3644 | 3645 | wrappy@1: 3646 | version "1.0.2" 3647 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3648 | 3649 | write@^0.2.1: 3650 | version "0.2.1" 3651 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 3652 | dependencies: 3653 | mkdirp "^0.5.1" 3654 | 3655 | xml-name-validator@^2.0.1: 3656 | version "2.0.1" 3657 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 3658 | 3659 | "xtend@>=4.0.0 <4.1.0-0": 3660 | version "4.0.1" 3661 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3662 | 3663 | y18n@^3.2.1: 3664 | version "3.2.1" 3665 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3666 | 3667 | yallist@^2.1.2: 3668 | version "2.1.2" 3669 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3670 | 3671 | yargs-parser@^4.2.0: 3672 | version "4.2.1" 3673 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" 3674 | dependencies: 3675 | camelcase "^3.0.0" 3676 | 3677 | yargs-parser@^9.0.2: 3678 | version "9.0.2" 3679 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-9.0.2.tgz#9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077" 3680 | dependencies: 3681 | camelcase "^4.1.0" 3682 | 3683 | yargs@^11.0.0: 3684 | version "11.0.0" 3685 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-11.0.0.tgz#c052931006c5eee74610e5fc0354bedfd08a201b" 3686 | dependencies: 3687 | cliui "^4.0.0" 3688 | decamelize "^1.1.1" 3689 | find-up "^2.1.0" 3690 | get-caller-file "^1.0.1" 3691 | os-locale "^2.0.0" 3692 | require-directory "^2.1.1" 3693 | require-main-filename "^1.0.1" 3694 | set-blocking "^2.0.0" 3695 | string-width "^2.0.0" 3696 | which-module "^2.0.0" 3697 | y18n "^3.2.1" 3698 | yargs-parser "^9.0.2" 3699 | 3700 | yargs@^6.3.0: 3701 | version "6.6.0" 3702 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" 3703 | dependencies: 3704 | camelcase "^3.0.0" 3705 | cliui "^3.2.0" 3706 | decamelize "^1.1.1" 3707 | get-caller-file "^1.0.1" 3708 | os-locale "^1.4.0" 3709 | read-pkg-up "^1.0.1" 3710 | require-directory "^2.1.1" 3711 | require-main-filename "^1.0.1" 3712 | set-blocking "^2.0.0" 3713 | string-width "^1.0.2" 3714 | which-module "^1.0.0" 3715 | y18n "^3.2.1" 3716 | yargs-parser "^4.2.0" 3717 | 3718 | yargs@~3.10.0: 3719 | version "3.10.0" 3720 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3721 | dependencies: 3722 | camelcase "^1.0.2" 3723 | cliui "^2.1.0" 3724 | decamelize "^1.0.0" 3725 | window-size "0.1.0" 3726 | --------------------------------------------------------------------------------