├── .gitignore ├── .flowconfig ├── package.json ├── LICENSE ├── index.js ├── README.md ├── test.js ├── flow-typed └── npm │ └── jest_v20.x.x.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | 3 | [include] 4 | 5 | [libs] 6 | 7 | [lints] 8 | 9 | [options] 10 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jest-in-case", 3 | "version": "1.0.2", 4 | "description": "Jest utility for creating variations of the same test", 5 | "main": "index.js", 6 | "repository": "Thinkmill/jest-in-case", 7 | "author": "James Kyle ", 8 | "license": "MIT", 9 | "engines": { 10 | "node": ">=4" 11 | }, 12 | "files": [ 13 | "index.js" 14 | ], 15 | "keywords": [ 16 | "jest", 17 | "test", 18 | "testing" 19 | ], 20 | "scripts": { 21 | "test": "jest" 22 | }, 23 | "devDependencies": { 24 | "flow-bin": "^0.53.1", 25 | "jest": "^20.0.4" 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2017-present James Kyle 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in all 11 | copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 19 | SOFTWARE. 20 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | // @flow 4 | 5 | /*:: 6 | type Config = { name?: string, only?: boolean, skip?: boolean, [key: string | number]: mixed }; 7 | type Tester = (opts: Opts, done?: () => void) => ?Promise; 8 | type TestCases = Array | { [name: string]: Opts }; 9 | */ 10 | 11 | function cases /*:: */(title /*: string */, tester /*: Tester */, testCases /*: TestCases */) /*: void */ { 12 | let normalized; 13 | 14 | if (Array.isArray(testCases)) { 15 | normalized = testCases; 16 | } else { 17 | const safeRef = testCases; 18 | normalized = Object.keys(testCases).map(name => { 19 | return Object.assign({}, { name }, safeRef[name]); 20 | }); 21 | } 22 | 23 | describe(title, () => { 24 | normalized.forEach((testCase, index) => { 25 | let name = testCase.name || `case: ${index + 1}`; 26 | 27 | let testFn; 28 | if (testCase.only) { 29 | testFn = test.only; 30 | } else if (testCase.skip) { 31 | testFn = test.skip; 32 | } else { 33 | testFn = test; 34 | } 35 | 36 | let cb; 37 | if (tester.length > 1) { 38 | cb = done => tester(testCase, done); 39 | } else { 40 | cb = () => tester(testCase); 41 | } 42 | 43 | testFn(name, cb); 44 | }); 45 | }); 46 | } 47 | 48 | module.exports = cases; 49 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # jest-in-case 2 | 3 | > [Jest](https://facebook.github.io/jest/) utility for creating variations of 4 | > the same test 5 | 6 | ## Example 7 | 8 | ```js 9 | import { add, subtract } from './math'; 10 | import cases from 'jest-in-case'; 11 | 12 | cases('add(augend, addend)', opts => { 13 | expect(add(opts.augend, opts.addend)).toBe(opts.total); 14 | }, [ 15 | { name: '1 + 1 = 2', augend: 1, addend: 1, total: 2 }, 16 | { name: '2 + 1 = 3', augend: 2, addend: 1, total: 3 }, 17 | { name: '3 + 1 = 4', augend: 3, addend: 1, total: 4 }, 18 | ]); 19 | ``` 20 | 21 | ## Installation 22 | 23 | ```sh 24 | yarn add --dev jest-in-case 25 | ``` 26 | 27 | ## Usage 28 | 29 | In your [Jest](https://facebook.github.io/jest/) tests, import `cases` from 30 | `jest-in-case`. 31 | 32 | ```js 33 | import cases from 'jest-in-case'; 34 | // or 35 | const cases = require('jest-in-case'); 36 | ``` 37 | 38 | Then you can call `cases` with a `title`, a `tester`, and some `testCases`. 39 | 40 | ```js 41 | cases(title, tester, testCases); 42 | ``` 43 | 44 | `testCases` can either be an array of objects with a `name` property: 45 | 46 | ```js 47 | cases('add(augend, addend)', opts => { 48 | expect(add(opts.augend, opts.addend)).toBe(opts.total); 49 | }, [ 50 | { name: '1 + 1 = 2', augend: 1, addend: 1, total: 2 }, 51 | { name: '2 + 1 = 3', augend: 2, addend: 1, total: 3 }, 52 | { name: '3 + 1 = 4', augend: 3, addend: 1, total: 4 }, 53 | ]); 54 | ``` 55 | 56 | Or an object of objects with the names as the keys: 57 | 58 | ```js 59 | cases('subtract(minuend, subtrahend)', opts => { 60 | expect(subtract(opts.minuend, opts.subtrahend)).toBe(opts.difference); 61 | }, { 62 | '1 - 1 = 0': { minuend: 1, subtrahend: 1, difference: 0 }, 63 | '2 - 1 = 1': { minuend: 2, subtrahend: 1, difference: 1 }, 64 | '3 - 1 = 2': { minuend: 3, subtrahend: 1, difference: 2 }, 65 | }); 66 | ``` 67 | 68 | Inside of a test case you can put whatever properties you want, except for 69 | `name`, `only`, or `skip`: 70 | 71 | ```js 72 | cases('title', fn, [ 73 | { name: 'reserved 1', only: true, skip: true, whatever: 'you', want: 'here' }, 74 | { name: 'reserved 2', only: true, skip: true, whatever: 'you', want: 'here' }, 75 | { name: 'reserved 3', only: true, skip: true, whatever: 'you', want: 'here' }, 76 | ]); 77 | ``` 78 | 79 | - `name` is passed to `test(name, fn)` to become the name of your test 80 | - When `only` is set to `true` it will use Jest's `test.only` function 81 | - When `skip` is set to `true` it will use Jest's `test.skip` function 82 | 83 | The `tester` function is called on each test case with your options: 84 | 85 | ```js 86 | cases('title', opts => { 87 | console.log('passed: ', opts); 88 | }, { 89 | 'test 1': { foo: 1 }, 90 | 'test 2': { bar: 2 }, 91 | 'test 3': { baz: 3 }, 92 | }); 93 | 94 | // passed: { foo: 1 } 95 | // passed: { bar: 2 } 96 | // passed: { baz: 3 } 97 | ``` 98 | 99 | Your tester function works just like functions passed to Jest's `test` function 100 | do (Just with a prepended argument): 101 | 102 | ```js 103 | cases('async functions', async opts => { 104 | let result = await somethingAsync(opts.input); 105 | expect(result).toEqual(opts.result); 106 | }, { 107 | 'test 1': { ... }, 108 | 'test 2': { ... }, 109 | }); 110 | 111 | cases('done callback', (opts, done) => { 112 | somethingAsync(opts.input, result => { 113 | expect(result).toEqual(result); 114 | done(); 115 | }); 116 | }, { 117 | 'test 1': { ... }, 118 | 'test 2': { ... }, 119 | }); 120 | ``` 121 | -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | // @flow 4 | const cases = require('./'); 5 | 6 | function add(augend, addend) { 7 | return augend + addend; 8 | } 9 | 10 | function subtract(minuend, subtrahend) { 11 | return minuend - subtrahend; 12 | } 13 | 14 | beforeEach(() => { 15 | jest.spyOn(global, 'describe').mockImplementation((title, fn) => fn()); 16 | jest.spyOn(global, 'test').mockImplementation((name, fn) => fn()); 17 | global.test.skip = jest.fn((name, fn) => fn()); 18 | global.test.only = jest.fn((name, fn) => fn()); 19 | }); 20 | 21 | afterEach(() => { 22 | global.describe.mockRestore(); 23 | global.test.mockRestore(); 24 | }); 25 | 26 | test('array', () => { 27 | let title = 'add(augend, addend)'; 28 | 29 | let tester = jest.fn(opts => { 30 | expect(add(opts.augend, opts.addend)).toBe(opts.total); 31 | }); 32 | 33 | let testCases = [ 34 | { name: '1 + 1 = 2', augend: 1, addend: 1, total: 2 }, 35 | { name: '2 + 1 = 3', augend: 2, addend: 1, total: 3 }, 36 | { name: '3 + 1 = 4', augend: 3, addend: 1, total: 4 }, 37 | ]; 38 | 39 | cases(title, tester, testCases); 40 | 41 | expect(global.describe).toHaveBeenCalledTimes(1); 42 | expect(global.test).toHaveBeenCalledTimes(3); 43 | expect(tester).toHaveBeenCalledTimes(3); 44 | 45 | expect(global.describe.mock.calls[0][0]).toBe(title); 46 | expect(global.test.mock.calls[0][0]).toBe(testCases[0].name); 47 | expect(global.test.mock.calls[1][0]).toBe(testCases[1].name); 48 | expect(global.test.mock.calls[2][0]).toBe(testCases[2].name); 49 | expect(global.test.mock.calls[0][1]).toHaveLength(0); 50 | expect(global.test.mock.calls[1][1]).toHaveLength(0); 51 | expect(global.test.mock.calls[2][1]).toHaveLength(0); 52 | expect(tester).toHaveBeenCalledWith(testCases[0]); 53 | expect(tester).toHaveBeenCalledWith(testCases[1]); 54 | expect(tester).toHaveBeenCalledWith(testCases[2]); 55 | }); 56 | 57 | test('object', () => { 58 | jest.spyOn(global, 'describe').mockImplementation((title, fn) => fn()); 59 | jest.spyOn(global, 'test').mockImplementation((name, fn) => fn()); 60 | 61 | let title = 'add(augend, addend)'; 62 | 63 | let tester = jest.fn(opts => { 64 | expect(subtract(opts.minuend, opts.subtrahend)).toBe(opts.difference); 65 | }); 66 | 67 | let testCases = { 68 | '1 - 1 = 0': { minuend: 1, subtrahend: 1, difference: 0 }, 69 | '2 - 1 = 1': { minuend: 2, subtrahend: 1, difference: 1 }, 70 | '3 - 1 = 2': { minuend: 3, subtrahend: 1, difference: 2 }, 71 | }; 72 | 73 | cases(title, tester, testCases); 74 | 75 | expect(global.describe).toHaveBeenCalledTimes(1); 76 | expect(global.test).toHaveBeenCalledTimes(3); 77 | expect(tester).toHaveBeenCalledTimes(3); 78 | 79 | expect(global.describe.mock.calls[0][0]).toBe(title); 80 | expect(global.test.mock.calls[0][0]).toBe('1 - 1 = 0'); 81 | expect(global.test.mock.calls[1][0]).toBe('2 - 1 = 1'); 82 | expect(global.test.mock.calls[2][0]).toBe('3 - 1 = 2'); 83 | expect(global.test.mock.calls[0][1]).toHaveLength(0); 84 | expect(global.test.mock.calls[1][1]).toHaveLength(0); 85 | expect(global.test.mock.calls[2][1]).toHaveLength(0); 86 | expect(tester.mock.calls[0][0]).toMatchObject(testCases['1 - 1 = 0']); 87 | expect(tester.mock.calls[1][0]).toMatchObject(testCases['2 - 1 = 1']); 88 | expect(tester.mock.calls[2][0]).toMatchObject(testCases['3 - 1 = 2']); 89 | }); 90 | 91 | test('no names', () => { 92 | cases('foo', () => {}, [ 93 | {}, 94 | {}, 95 | ]); 96 | 97 | expect(global.test.mock.calls[0][0]).toBe('case: 1'); 98 | expect(global.test.mock.calls[1][0]).toBe('case: 2'); 99 | }); 100 | 101 | test('only', () => { 102 | cases('foo', () => {}, [ 103 | {}, 104 | { only: true }, 105 | ]); 106 | 107 | expect(global.test.mock.calls[0][0]).toBe('case: 1'); 108 | expect(global.test.only.mock.calls[0][0]).toBe('case: 2'); 109 | }); 110 | 111 | test('skip', () => { 112 | cases('foo', () => {}, [ 113 | {}, 114 | { skip: true }, 115 | ]); 116 | 117 | expect(global.test.mock.calls[0][0]).toBe('case: 1'); 118 | expect(global.test.skip.mock.calls[0][0]).toBe('case: 2'); 119 | }); 120 | -------------------------------------------------------------------------------- /flow-typed/npm/jest_v20.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: 5960ed076fe29ecf92f57584d68acf98 2 | // flow-typed version: b2a49dc910/jest_v20.x.x/flow_>=v0.39.x 3 | 4 | type JestMockFn, TReturn> = { 5 | (...args: TArguments): TReturn, 6 | /** 7 | * An object for introspecting mock calls 8 | */ 9 | mock: { 10 | /** 11 | * An array that represents all calls that have been made into this mock 12 | * function. Each call is represented by an array of arguments that were 13 | * passed during the call. 14 | */ 15 | calls: Array, 16 | /** 17 | * An array that contains all the object instances that have been 18 | * instantiated from this mock function. 19 | */ 20 | instances: Array 21 | }, 22 | /** 23 | * Resets all information stored in the mockFn.mock.calls and 24 | * mockFn.mock.instances arrays. Often this is useful when you want to clean 25 | * up a mock's usage data between two assertions. 26 | */ 27 | mockClear(): void, 28 | /** 29 | * Resets all information stored in the mock. This is useful when you want to 30 | * completely restore a mock back to its initial state. 31 | */ 32 | mockReset(): void, 33 | /** 34 | * Removes the mock and restores the initial implementation. This is useful 35 | * when you want to mock functions in certain test cases and restore the 36 | * original implementation in others. Beware that mockFn.mockRestore only 37 | * works when mock was created with jest.spyOn. Thus you have to take care of 38 | * restoration yourself when manually assigning jest.fn(). 39 | */ 40 | mockRestore(): void, 41 | /** 42 | * Accepts a function that should be used as the implementation of the mock. 43 | * The mock itself will still record all calls that go into and instances 44 | * that come from itself -- the only difference is that the implementation 45 | * will also be executed when the mock is called. 46 | */ 47 | mockImplementation( 48 | fn: (...args: TArguments) => TReturn, 49 | ): JestMockFn, 50 | /** 51 | * Accepts a function that will be used as an implementation of the mock for 52 | * one call to the mocked function. Can be chained so that multiple function 53 | * calls produce different results. 54 | */ 55 | mockImplementationOnce( 56 | fn: (...args: TArguments) => TReturn, 57 | ): JestMockFn, 58 | /** 59 | * Just a simple sugar function for returning `this` 60 | */ 61 | mockReturnThis(): void, 62 | /** 63 | * Deprecated: use jest.fn(() => value) instead 64 | */ 65 | mockReturnValue(value: TReturn): JestMockFn, 66 | /** 67 | * Sugar for only returning a value once inside your mock 68 | */ 69 | mockReturnValueOnce(value: TReturn): JestMockFn 70 | }; 71 | 72 | type JestAsymmetricEqualityType = { 73 | /** 74 | * A custom Jasmine equality tester 75 | */ 76 | asymmetricMatch(value: mixed): boolean 77 | }; 78 | 79 | type JestCallsType = { 80 | allArgs(): mixed, 81 | all(): mixed, 82 | any(): boolean, 83 | count(): number, 84 | first(): mixed, 85 | mostRecent(): mixed, 86 | reset(): void 87 | }; 88 | 89 | type JestClockType = { 90 | install(): void, 91 | mockDate(date: Date): void, 92 | tick(milliseconds?: number): void, 93 | uninstall(): void 94 | }; 95 | 96 | type JestMatcherResult = { 97 | message?: string | (() => string), 98 | pass: boolean 99 | }; 100 | 101 | type JestMatcher = (actual: any, expected: any) => JestMatcherResult; 102 | 103 | type JestPromiseType = { 104 | /** 105 | * Use rejects to unwrap the reason of a rejected promise so any other 106 | * matcher can be chained. If the promise is fulfilled the assertion fails. 107 | */ 108 | rejects: JestExpectType, 109 | /** 110 | * Use resolves to unwrap the value of a fulfilled promise so any other 111 | * matcher can be chained. If the promise is rejected the assertion fails. 112 | */ 113 | resolves: JestExpectType 114 | }; 115 | 116 | /** 117 | * Plugin: jest-enzyme 118 | */ 119 | type EnzymeMatchersType = { 120 | toBeChecked(): void, 121 | toBeDisabled(): void, 122 | toBeEmpty(): void, 123 | toBePresent(): void, 124 | toContainReact(element: React$Element): void, 125 | toHaveClassName(className: string): void, 126 | toHaveHTML(html: string): void, 127 | toHaveProp(propKey: string, propValue?: any): void, 128 | toHaveRef(refName: string): void, 129 | toHaveState(stateKey: string, stateValue?: any): void, 130 | toHaveStyle(styleKey: string, styleValue?: any): void, 131 | toHaveTagName(tagName: string): void, 132 | toHaveText(text: string): void, 133 | toIncludeText(text: string): void, 134 | toHaveValue(value: any): void, 135 | toMatchElement(element: React$Element): void, 136 | toMatchSelector(selector: string): void, 137 | }; 138 | 139 | type JestExpectType = { 140 | not: JestExpectType & EnzymeMatchersType, 141 | /** 142 | * If you have a mock function, you can use .lastCalledWith to test what 143 | * arguments it was last called with. 144 | */ 145 | lastCalledWith(...args: Array): void, 146 | /** 147 | * toBe just checks that a value is what you expect. It uses === to check 148 | * strict equality. 149 | */ 150 | toBe(value: any): void, 151 | /** 152 | * Use .toHaveBeenCalled to ensure that a mock function got called. 153 | */ 154 | toBeCalled(): void, 155 | /** 156 | * Use .toBeCalledWith to ensure that a mock function was called with 157 | * specific arguments. 158 | */ 159 | toBeCalledWith(...args: Array): void, 160 | /** 161 | * Using exact equality with floating point numbers is a bad idea. Rounding 162 | * means that intuitive things fail. 163 | */ 164 | toBeCloseTo(num: number, delta: any): void, 165 | /** 166 | * Use .toBeDefined to check that a variable is not undefined. 167 | */ 168 | toBeDefined(): void, 169 | /** 170 | * Use .toBeFalsy when you don't care what a value is, you just want to 171 | * ensure a value is false in a boolean context. 172 | */ 173 | toBeFalsy(): void, 174 | /** 175 | * To compare floating point numbers, you can use toBeGreaterThan. 176 | */ 177 | toBeGreaterThan(number: number): void, 178 | /** 179 | * To compare floating point numbers, you can use toBeGreaterThanOrEqual. 180 | */ 181 | toBeGreaterThanOrEqual(number: number): void, 182 | /** 183 | * To compare floating point numbers, you can use toBeLessThan. 184 | */ 185 | toBeLessThan(number: number): void, 186 | /** 187 | * To compare floating point numbers, you can use toBeLessThanOrEqual. 188 | */ 189 | toBeLessThanOrEqual(number: number): void, 190 | /** 191 | * Use .toBeInstanceOf(Class) to check that an object is an instance of a 192 | * class. 193 | */ 194 | toBeInstanceOf(cls: Class<*>): void, 195 | /** 196 | * .toBeNull() is the same as .toBe(null) but the error messages are a bit 197 | * nicer. 198 | */ 199 | toBeNull(): void, 200 | /** 201 | * Use .toBeTruthy when you don't care what a value is, you just want to 202 | * ensure a value is true in a boolean context. 203 | */ 204 | toBeTruthy(): void, 205 | /** 206 | * Use .toBeUndefined to check that a variable is undefined. 207 | */ 208 | toBeUndefined(): void, 209 | /** 210 | * Use .toContain when you want to check that an item is in a list. For 211 | * testing the items in the list, this uses ===, a strict equality check. 212 | */ 213 | toContain(item: any): void, 214 | /** 215 | * Use .toContainEqual when you want to check that an item is in a list. For 216 | * testing the items in the list, this matcher recursively checks the 217 | * equality of all fields, rather than checking for object identity. 218 | */ 219 | toContainEqual(item: any): void, 220 | /** 221 | * Use .toEqual when you want to check that two objects have the same value. 222 | * This matcher recursively checks the equality of all fields, rather than 223 | * checking for object identity. 224 | */ 225 | toEqual(value: any): void, 226 | /** 227 | * Use .toHaveBeenCalled to ensure that a mock function got called. 228 | */ 229 | toHaveBeenCalled(): void, 230 | /** 231 | * Use .toHaveBeenCalledTimes to ensure that a mock function got called exact 232 | * number of times. 233 | */ 234 | toHaveBeenCalledTimes(number: number): void, 235 | /** 236 | * Use .toHaveBeenCalledWith to ensure that a mock function was called with 237 | * specific arguments. 238 | */ 239 | toHaveBeenCalledWith(...args: Array): void, 240 | /** 241 | * Use .toHaveBeenLastCalledWith to ensure that a mock function was last called 242 | * with specific arguments. 243 | */ 244 | toHaveBeenLastCalledWith(...args: Array): void, 245 | /** 246 | * Check that an object has a .length property and it is set to a certain 247 | * numeric value. 248 | */ 249 | toHaveLength(number: number): void, 250 | /** 251 | * 252 | */ 253 | toHaveProperty(propPath: string, value?: any): void, 254 | /** 255 | * Use .toMatch to check that a string matches a regular expression or string. 256 | */ 257 | toMatch(regexpOrString: RegExp | string): void, 258 | /** 259 | * Use .toMatchObject to check that a javascript object matches a subset of the properties of an object. 260 | */ 261 | toMatchObject(object: Object): void, 262 | /** 263 | * This ensures that a React component matches the most recent snapshot. 264 | */ 265 | toMatchSnapshot(name?: string): void, 266 | /** 267 | * Use .toThrow to test that a function throws when it is called. 268 | * If you want to test that a specific error gets thrown, you can provide an 269 | * argument to toThrow. The argument can be a string for the error message, 270 | * a class for the error, or a regex that should match the error. 271 | * 272 | * Alias: .toThrowError 273 | */ 274 | toThrow(message?: string | Error | RegExp): void, 275 | toThrowError(message?: string | Error | RegExp): void, 276 | /** 277 | * Use .toThrowErrorMatchingSnapshot to test that a function throws a error 278 | * matching the most recent snapshot when it is called. 279 | */ 280 | toThrowErrorMatchingSnapshot(): void 281 | }; 282 | 283 | type JestObjectType = { 284 | /** 285 | * Disables automatic mocking in the module loader. 286 | * 287 | * After this method is called, all `require()`s will return the real 288 | * versions of each module (rather than a mocked version). 289 | */ 290 | disableAutomock(): JestObjectType, 291 | /** 292 | * An un-hoisted version of disableAutomock 293 | */ 294 | autoMockOff(): JestObjectType, 295 | /** 296 | * Enables automatic mocking in the module loader. 297 | */ 298 | enableAutomock(): JestObjectType, 299 | /** 300 | * An un-hoisted version of enableAutomock 301 | */ 302 | autoMockOn(): JestObjectType, 303 | /** 304 | * Clears the mock.calls and mock.instances properties of all mocks. 305 | * Equivalent to calling .mockClear() on every mocked function. 306 | */ 307 | clearAllMocks(): JestObjectType, 308 | /** 309 | * Resets the state of all mocks. Equivalent to calling .mockReset() on every 310 | * mocked function. 311 | */ 312 | resetAllMocks(): JestObjectType, 313 | /** 314 | * Removes any pending timers from the timer system. 315 | */ 316 | clearAllTimers(): void, 317 | /** 318 | * The same as `mock` but not moved to the top of the expectation by 319 | * babel-jest. 320 | */ 321 | doMock(moduleName: string, moduleFactory?: any): JestObjectType, 322 | /** 323 | * The same as `unmock` but not moved to the top of the expectation by 324 | * babel-jest. 325 | */ 326 | dontMock(moduleName: string): JestObjectType, 327 | /** 328 | * Returns a new, unused mock function. Optionally takes a mock 329 | * implementation. 330 | */ 331 | fn, TReturn>( 332 | implementation?: (...args: TArguments) => TReturn, 333 | ): JestMockFn, 334 | /** 335 | * Determines if the given function is a mocked function. 336 | */ 337 | isMockFunction(fn: Function): boolean, 338 | /** 339 | * Given the name of a module, use the automatic mocking system to generate a 340 | * mocked version of the module for you. 341 | */ 342 | genMockFromModule(moduleName: string): any, 343 | /** 344 | * Mocks a module with an auto-mocked version when it is being required. 345 | * 346 | * The second argument can be used to specify an explicit module factory that 347 | * is being run instead of using Jest's automocking feature. 348 | * 349 | * The third argument can be used to create virtual mocks -- mocks of modules 350 | * that don't exist anywhere in the system. 351 | */ 352 | mock( 353 | moduleName: string, 354 | moduleFactory?: any, 355 | options?: Object 356 | ): JestObjectType, 357 | /** 358 | * Resets the module registry - the cache of all required modules. This is 359 | * useful to isolate modules where local state might conflict between tests. 360 | */ 361 | resetModules(): JestObjectType, 362 | /** 363 | * Exhausts the micro-task queue (usually interfaced in node via 364 | * process.nextTick). 365 | */ 366 | runAllTicks(): void, 367 | /** 368 | * Exhausts the macro-task queue (i.e., all tasks queued by setTimeout(), 369 | * setInterval(), and setImmediate()). 370 | */ 371 | runAllTimers(): void, 372 | /** 373 | * Exhausts all tasks queued by setImmediate(). 374 | */ 375 | runAllImmediates(): void, 376 | /** 377 | * Executes only the macro task queue (i.e. all tasks queued by setTimeout() 378 | * or setInterval() and setImmediate()). 379 | */ 380 | runTimersToTime(msToRun: number): void, 381 | /** 382 | * Executes only the macro-tasks that are currently pending (i.e., only the 383 | * tasks that have been queued by setTimeout() or setInterval() up to this 384 | * point) 385 | */ 386 | runOnlyPendingTimers(): void, 387 | /** 388 | * Explicitly supplies the mock object that the module system should return 389 | * for the specified module. Note: It is recommended to use jest.mock() 390 | * instead. 391 | */ 392 | setMock(moduleName: string, moduleExports: any): JestObjectType, 393 | /** 394 | * Indicates that the module system should never return a mocked version of 395 | * the specified module from require() (e.g. that it should always return the 396 | * real module). 397 | */ 398 | unmock(moduleName: string): JestObjectType, 399 | /** 400 | * Instructs Jest to use fake versions of the standard timer functions 401 | * (setTimeout, setInterval, clearTimeout, clearInterval, nextTick, 402 | * setImmediate and clearImmediate). 403 | */ 404 | useFakeTimers(): JestObjectType, 405 | /** 406 | * Instructs Jest to use the real versions of the standard timer functions. 407 | */ 408 | useRealTimers(): JestObjectType, 409 | /** 410 | * Creates a mock function similar to jest.fn but also tracks calls to 411 | * object[methodName]. 412 | */ 413 | spyOn(object: Object, methodName: string): JestMockFn 414 | }; 415 | 416 | type JestSpyType = { 417 | calls: JestCallsType 418 | }; 419 | 420 | /** Runs this function after every test inside this context */ 421 | declare function afterEach(fn: (done: () => void) => ?Promise, timeout?: number): void; 422 | /** Runs this function before every test inside this context */ 423 | declare function beforeEach(fn: (done: () => void) => ?Promise, timeout?: number): void; 424 | /** Runs this function after all tests have finished inside this context */ 425 | declare function afterAll(fn: (done: () => void) => ?Promise, timeout?: number): void; 426 | /** Runs this function before any tests have started inside this context */ 427 | declare function beforeAll(fn: (done: () => void) => ?Promise, timeout?: number): void; 428 | 429 | /** A context for grouping tests together */ 430 | declare var describe: { 431 | /** 432 | * Creates a block that groups together several related tests in one "test suite" 433 | */ 434 | (name: string, fn: () => void): void, 435 | 436 | /** 437 | * Only run this describe block 438 | */ 439 | only(name: string, fn: () => void): void, 440 | 441 | /** 442 | * Skip running this describe block 443 | */ 444 | skip(name: string, fn: () => void): void, 445 | }; 446 | 447 | 448 | /** An individual test unit */ 449 | declare var it: { 450 | /** 451 | * An individual test unit 452 | * 453 | * @param {string} Name of Test 454 | * @param {Function} Test 455 | * @param {number} Timeout for the test, in milliseconds. 456 | */ 457 | (name: string, fn?: (done: () => void) => ?Promise, timeout?: number): void, 458 | /** 459 | * Only run this test 460 | * 461 | * @param {string} Name of Test 462 | * @param {Function} Test 463 | * @param {number} Timeout for the test, in milliseconds. 464 | */ 465 | only(name: string, fn?: (done: () => void) => ?Promise, timeout?: number): void, 466 | /** 467 | * Skip running this test 468 | * 469 | * @param {string} Name of Test 470 | * @param {Function} Test 471 | * @param {number} Timeout for the test, in milliseconds. 472 | */ 473 | skip(name: string, fn?: (done: () => void) => ?Promise, timeout?: number): void, 474 | /** 475 | * Run the test concurrently 476 | * 477 | * @param {string} Name of Test 478 | * @param {Function} Test 479 | * @param {number} Timeout for the test, in milliseconds. 480 | */ 481 | concurrent(name: string, fn?: (done: () => void) => ?Promise, timeout?: number): void, 482 | }; 483 | declare function fit( 484 | name: string, 485 | fn: (done: () => void) => ?Promise, 486 | timeout?: number, 487 | ): void; 488 | /** An individual test unit */ 489 | declare var test: typeof it; 490 | /** A disabled group of tests */ 491 | declare var xdescribe: typeof describe; 492 | /** A focused group of tests */ 493 | declare var fdescribe: typeof describe; 494 | /** A disabled individual test */ 495 | declare var xit: typeof it; 496 | /** A disabled individual test */ 497 | declare var xtest: typeof it; 498 | 499 | /** The expect function is used every time you want to test a value */ 500 | declare var expect: { 501 | /** The object that you want to make assertions against */ 502 | (value: any): JestExpectType & JestPromiseType & EnzymeMatchersType, 503 | /** Add additional Jasmine matchers to Jest's roster */ 504 | extend(matchers: { [name: string]: JestMatcher }): void, 505 | /** Add a module that formats application-specific data structures. */ 506 | addSnapshotSerializer(serializer: (input: Object) => string): void, 507 | assertions(expectedAssertions: number): void, 508 | hasAssertions(): void, 509 | any(value: mixed): JestAsymmetricEqualityType, 510 | anything(): void, 511 | arrayContaining(value: Array): void, 512 | objectContaining(value: Object): void, 513 | /** Matches any received string that contains the exact expected string. */ 514 | stringContaining(value: string): void, 515 | stringMatching(value: string | RegExp): void 516 | }; 517 | 518 | // TODO handle return type 519 | // http://jasmine.github.io/2.4/introduction.html#section-Spies 520 | declare function spyOn(value: mixed, method: string): Object; 521 | 522 | /** Holds all functions related to manipulating test runner */ 523 | declare var jest: JestObjectType; 524 | 525 | /** 526 | * The global Jamine object, this is generally not exposed as the public API, 527 | * using features inside here could break in later versions of Jest. 528 | */ 529 | declare var jasmine: { 530 | DEFAULT_TIMEOUT_INTERVAL: number, 531 | any(value: mixed): JestAsymmetricEqualityType, 532 | anything(): void, 533 | arrayContaining(value: Array): void, 534 | clock(): JestClockType, 535 | createSpy(name: string): JestSpyType, 536 | createSpyObj( 537 | baseName: string, 538 | methodNames: Array 539 | ): { [methodName: string]: JestSpyType }, 540 | objectContaining(value: Object): void, 541 | stringMatching(value: string): void 542 | }; 543 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abab@^1.0.3: 6 | version "1.0.3" 7 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.3.tgz#b81de5f7274ec4e756d797cd834f303642724e5d" 8 | 9 | acorn-globals@^3.1.0: 10 | version "3.1.0" 11 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 12 | dependencies: 13 | acorn "^4.0.4" 14 | 15 | acorn@^4.0.4: 16 | version "4.0.13" 17 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 18 | 19 | ajv@^4.9.1: 20 | version "4.11.8" 21 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 22 | dependencies: 23 | co "^4.6.0" 24 | json-stable-stringify "^1.0.1" 25 | 26 | align-text@^0.1.1, align-text@^0.1.3: 27 | version "0.1.4" 28 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 29 | dependencies: 30 | kind-of "^3.0.2" 31 | longest "^1.0.1" 32 | repeat-string "^1.5.2" 33 | 34 | amdefine@>=0.0.4: 35 | version "1.0.1" 36 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 37 | 38 | ansi-escapes@^1.4.0: 39 | version "1.4.0" 40 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 41 | 42 | ansi-regex@^2.0.0, ansi-regex@^2.1.1: 43 | version "2.1.1" 44 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 45 | 46 | ansi-styles@^2.2.1: 47 | version "2.2.1" 48 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 49 | 50 | ansi-styles@^3.0.0: 51 | version "3.2.0" 52 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 53 | dependencies: 54 | color-convert "^1.9.0" 55 | 56 | anymatch@^1.3.0: 57 | version "1.3.2" 58 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 59 | dependencies: 60 | micromatch "^2.1.5" 61 | normalize-path "^2.0.0" 62 | 63 | append-transform@^0.4.0: 64 | version "0.4.0" 65 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 66 | dependencies: 67 | default-require-extensions "^1.0.0" 68 | 69 | argparse@^1.0.7: 70 | version "1.0.9" 71 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 72 | dependencies: 73 | sprintf-js "~1.0.2" 74 | 75 | arr-diff@^2.0.0: 76 | version "2.0.0" 77 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 78 | dependencies: 79 | arr-flatten "^1.0.1" 80 | 81 | arr-flatten@^1.0.1: 82 | version "1.1.0" 83 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 84 | 85 | array-equal@^1.0.0: 86 | version "1.0.0" 87 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 88 | 89 | array-unique@^0.2.1: 90 | version "0.2.1" 91 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 92 | 93 | arrify@^1.0.1: 94 | version "1.0.1" 95 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 96 | 97 | asn1@~0.2.3: 98 | version "0.2.3" 99 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 100 | 101 | assert-plus@1.0.0, assert-plus@^1.0.0: 102 | version "1.0.0" 103 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 104 | 105 | assert-plus@^0.2.0: 106 | version "0.2.0" 107 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 108 | 109 | async@^1.4.0: 110 | version "1.5.2" 111 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 112 | 113 | async@^2.1.4: 114 | version "2.5.0" 115 | resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d" 116 | dependencies: 117 | lodash "^4.14.0" 118 | 119 | asynckit@^0.4.0: 120 | version "0.4.0" 121 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 122 | 123 | aws-sign2@~0.6.0: 124 | version "0.6.0" 125 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 126 | 127 | aws4@^1.2.1: 128 | version "1.6.0" 129 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 130 | 131 | babel-code-frame@^6.26.0: 132 | version "6.26.0" 133 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 134 | dependencies: 135 | chalk "^1.1.3" 136 | esutils "^2.0.2" 137 | js-tokens "^3.0.2" 138 | 139 | babel-core@^6.0.0, babel-core@^6.26.0: 140 | version "6.26.0" 141 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 142 | dependencies: 143 | babel-code-frame "^6.26.0" 144 | babel-generator "^6.26.0" 145 | babel-helpers "^6.24.1" 146 | babel-messages "^6.23.0" 147 | babel-register "^6.26.0" 148 | babel-runtime "^6.26.0" 149 | babel-template "^6.26.0" 150 | babel-traverse "^6.26.0" 151 | babel-types "^6.26.0" 152 | babylon "^6.18.0" 153 | convert-source-map "^1.5.0" 154 | debug "^2.6.8" 155 | json5 "^0.5.1" 156 | lodash "^4.17.4" 157 | minimatch "^3.0.4" 158 | path-is-absolute "^1.0.1" 159 | private "^0.1.7" 160 | slash "^1.0.0" 161 | source-map "^0.5.6" 162 | 163 | babel-generator@^6.18.0, babel-generator@^6.26.0: 164 | version "6.26.0" 165 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 166 | dependencies: 167 | babel-messages "^6.23.0" 168 | babel-runtime "^6.26.0" 169 | babel-types "^6.26.0" 170 | detect-indent "^4.0.0" 171 | jsesc "^1.3.0" 172 | lodash "^4.17.4" 173 | source-map "^0.5.6" 174 | trim-right "^1.0.1" 175 | 176 | babel-helpers@^6.24.1: 177 | version "6.24.1" 178 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 179 | dependencies: 180 | babel-runtime "^6.22.0" 181 | babel-template "^6.24.1" 182 | 183 | babel-jest@^20.0.3: 184 | version "20.0.3" 185 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-20.0.3.tgz#e4a03b13dc10389e140fc645d09ffc4ced301671" 186 | dependencies: 187 | babel-core "^6.0.0" 188 | babel-plugin-istanbul "^4.0.0" 189 | babel-preset-jest "^20.0.3" 190 | 191 | babel-messages@^6.23.0: 192 | version "6.23.0" 193 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 194 | dependencies: 195 | babel-runtime "^6.22.0" 196 | 197 | babel-plugin-istanbul@^4.0.0: 198 | version "4.1.4" 199 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.4.tgz#18dde84bf3ce329fddf3f4103fae921456d8e587" 200 | dependencies: 201 | find-up "^2.1.0" 202 | istanbul-lib-instrument "^1.7.2" 203 | test-exclude "^4.1.1" 204 | 205 | babel-plugin-jest-hoist@^20.0.3: 206 | version "20.0.3" 207 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-20.0.3.tgz#afedc853bd3f8dc3548ea671fbe69d03cc2c1767" 208 | 209 | babel-preset-jest@^20.0.3: 210 | version "20.0.3" 211 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-20.0.3.tgz#cbacaadecb5d689ca1e1de1360ebfc66862c178a" 212 | dependencies: 213 | babel-plugin-jest-hoist "^20.0.3" 214 | 215 | babel-register@^6.26.0: 216 | version "6.26.0" 217 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 218 | dependencies: 219 | babel-core "^6.26.0" 220 | babel-runtime "^6.26.0" 221 | core-js "^2.5.0" 222 | home-or-tmp "^2.0.0" 223 | lodash "^4.17.4" 224 | mkdirp "^0.5.1" 225 | source-map-support "^0.4.15" 226 | 227 | babel-runtime@^6.22.0, babel-runtime@^6.26.0: 228 | version "6.26.0" 229 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 230 | dependencies: 231 | core-js "^2.4.0" 232 | regenerator-runtime "^0.11.0" 233 | 234 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0: 235 | version "6.26.0" 236 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 237 | dependencies: 238 | babel-runtime "^6.26.0" 239 | babel-traverse "^6.26.0" 240 | babel-types "^6.26.0" 241 | babylon "^6.18.0" 242 | lodash "^4.17.4" 243 | 244 | babel-traverse@^6.18.0, babel-traverse@^6.26.0: 245 | version "6.26.0" 246 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 247 | dependencies: 248 | babel-code-frame "^6.26.0" 249 | babel-messages "^6.23.0" 250 | babel-runtime "^6.26.0" 251 | babel-types "^6.26.0" 252 | babylon "^6.18.0" 253 | debug "^2.6.8" 254 | globals "^9.18.0" 255 | invariant "^2.2.2" 256 | lodash "^4.17.4" 257 | 258 | babel-types@^6.18.0, babel-types@^6.26.0: 259 | version "6.26.0" 260 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 261 | dependencies: 262 | babel-runtime "^6.26.0" 263 | esutils "^2.0.2" 264 | lodash "^4.17.4" 265 | to-fast-properties "^1.0.3" 266 | 267 | babylon@^6.17.4, babylon@^6.18.0: 268 | version "6.18.0" 269 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 270 | 271 | balanced-match@^1.0.0: 272 | version "1.0.0" 273 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 274 | 275 | bcrypt-pbkdf@^1.0.0: 276 | version "1.0.1" 277 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 278 | dependencies: 279 | tweetnacl "^0.14.3" 280 | 281 | boom@2.x.x: 282 | version "2.10.1" 283 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 284 | dependencies: 285 | hoek "2.x.x" 286 | 287 | brace-expansion@^1.1.7: 288 | version "1.1.8" 289 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 290 | dependencies: 291 | balanced-match "^1.0.0" 292 | concat-map "0.0.1" 293 | 294 | braces@^1.8.2: 295 | version "1.8.5" 296 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 297 | dependencies: 298 | expand-range "^1.8.1" 299 | preserve "^0.2.0" 300 | repeat-element "^1.1.2" 301 | 302 | browser-resolve@^1.11.2: 303 | version "1.11.2" 304 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 305 | dependencies: 306 | resolve "1.1.7" 307 | 308 | bser@1.0.2: 309 | version "1.0.2" 310 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" 311 | dependencies: 312 | node-int64 "^0.4.0" 313 | 314 | bser@^2.0.0: 315 | version "2.0.0" 316 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 317 | dependencies: 318 | node-int64 "^0.4.0" 319 | 320 | builtin-modules@^1.0.0: 321 | version "1.1.1" 322 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 323 | 324 | callsites@^2.0.0: 325 | version "2.0.0" 326 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 327 | 328 | camelcase@^1.0.2: 329 | version "1.2.1" 330 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 331 | 332 | camelcase@^3.0.0: 333 | version "3.0.0" 334 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 335 | 336 | caseless@~0.12.0: 337 | version "0.12.0" 338 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 339 | 340 | center-align@^0.1.1: 341 | version "0.1.3" 342 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 343 | dependencies: 344 | align-text "^0.1.3" 345 | lazy-cache "^1.0.3" 346 | 347 | chalk@^1.1.3: 348 | version "1.1.3" 349 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 350 | dependencies: 351 | ansi-styles "^2.2.1" 352 | escape-string-regexp "^1.0.2" 353 | has-ansi "^2.0.0" 354 | strip-ansi "^3.0.0" 355 | supports-color "^2.0.0" 356 | 357 | ci-info@^1.0.0: 358 | version "1.0.0" 359 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 360 | 361 | cliui@^2.1.0: 362 | version "2.1.0" 363 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 364 | dependencies: 365 | center-align "^0.1.1" 366 | right-align "^0.1.1" 367 | wordwrap "0.0.2" 368 | 369 | cliui@^3.2.0: 370 | version "3.2.0" 371 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 372 | dependencies: 373 | string-width "^1.0.1" 374 | strip-ansi "^3.0.1" 375 | wrap-ansi "^2.0.0" 376 | 377 | co@^4.6.0: 378 | version "4.6.0" 379 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 380 | 381 | code-point-at@^1.0.0: 382 | version "1.1.0" 383 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 384 | 385 | color-convert@^1.9.0: 386 | version "1.9.0" 387 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 388 | dependencies: 389 | color-name "^1.1.1" 390 | 391 | color-name@^1.1.1: 392 | version "1.1.3" 393 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 394 | 395 | combined-stream@^1.0.5, combined-stream@~1.0.5: 396 | version "1.0.5" 397 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 398 | dependencies: 399 | delayed-stream "~1.0.0" 400 | 401 | concat-map@0.0.1: 402 | version "0.0.1" 403 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 404 | 405 | content-type-parser@^1.0.1: 406 | version "1.0.1" 407 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 408 | 409 | convert-source-map@^1.4.0, convert-source-map@^1.5.0: 410 | version "1.5.0" 411 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 412 | 413 | core-js@^2.4.0, core-js@^2.5.0: 414 | version "2.5.0" 415 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.0.tgz#569c050918be6486b3837552028ae0466b717086" 416 | 417 | core-util-is@1.0.2: 418 | version "1.0.2" 419 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 420 | 421 | cryptiles@2.x.x: 422 | version "2.0.5" 423 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 424 | dependencies: 425 | boom "2.x.x" 426 | 427 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 428 | version "0.3.2" 429 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 430 | 431 | "cssstyle@>= 0.2.37 < 0.3.0": 432 | version "0.2.37" 433 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 434 | dependencies: 435 | cssom "0.3.x" 436 | 437 | dashdash@^1.12.0: 438 | version "1.14.1" 439 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 440 | dependencies: 441 | assert-plus "^1.0.0" 442 | 443 | debug@^2.6.3, debug@^2.6.8: 444 | version "2.6.8" 445 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 446 | dependencies: 447 | ms "2.0.0" 448 | 449 | decamelize@^1.0.0, decamelize@^1.1.1: 450 | version "1.2.0" 451 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 452 | 453 | deep-is@~0.1.3: 454 | version "0.1.3" 455 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 456 | 457 | default-require-extensions@^1.0.0: 458 | version "1.0.0" 459 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 460 | dependencies: 461 | strip-bom "^2.0.0" 462 | 463 | delayed-stream@~1.0.0: 464 | version "1.0.0" 465 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 466 | 467 | detect-indent@^4.0.0: 468 | version "4.0.0" 469 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 470 | dependencies: 471 | repeating "^2.0.0" 472 | 473 | diff@^3.2.0: 474 | version "3.3.0" 475 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.3.0.tgz#056695150d7aa93237ca7e378ac3b1682b7963b9" 476 | 477 | ecc-jsbn@~0.1.1: 478 | version "0.1.1" 479 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 480 | dependencies: 481 | jsbn "~0.1.0" 482 | 483 | errno@^0.1.4: 484 | version "0.1.4" 485 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 486 | dependencies: 487 | prr "~0.0.0" 488 | 489 | error-ex@^1.2.0: 490 | version "1.3.1" 491 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 492 | dependencies: 493 | is-arrayish "^0.2.1" 494 | 495 | escape-string-regexp@^1.0.2: 496 | version "1.0.5" 497 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 498 | 499 | escodegen@^1.6.1: 500 | version "1.8.1" 501 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 502 | dependencies: 503 | esprima "^2.7.1" 504 | estraverse "^1.9.1" 505 | esutils "^2.0.2" 506 | optionator "^0.8.1" 507 | optionalDependencies: 508 | source-map "~0.2.0" 509 | 510 | esprima@^2.7.1: 511 | version "2.7.3" 512 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 513 | 514 | esprima@^4.0.0: 515 | version "4.0.0" 516 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 517 | 518 | estraverse@^1.9.1: 519 | version "1.9.3" 520 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 521 | 522 | esutils@^2.0.2: 523 | version "2.0.2" 524 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 525 | 526 | exec-sh@^0.2.0: 527 | version "0.2.0" 528 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" 529 | dependencies: 530 | merge "^1.1.3" 531 | 532 | expand-brackets@^0.1.4: 533 | version "0.1.5" 534 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 535 | dependencies: 536 | is-posix-bracket "^0.1.0" 537 | 538 | expand-range@^1.8.1: 539 | version "1.8.2" 540 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 541 | dependencies: 542 | fill-range "^2.1.0" 543 | 544 | extend@~3.0.0: 545 | version "3.0.1" 546 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 547 | 548 | extglob@^0.3.1: 549 | version "0.3.2" 550 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 551 | dependencies: 552 | is-extglob "^1.0.0" 553 | 554 | extsprintf@1.3.0, extsprintf@^1.2.0: 555 | version "1.3.0" 556 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 557 | 558 | fast-levenshtein@~2.0.4: 559 | version "2.0.6" 560 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 561 | 562 | fb-watchman@^1.8.0: 563 | version "1.9.2" 564 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383" 565 | dependencies: 566 | bser "1.0.2" 567 | 568 | fb-watchman@^2.0.0: 569 | version "2.0.0" 570 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 571 | dependencies: 572 | bser "^2.0.0" 573 | 574 | filename-regex@^2.0.0: 575 | version "2.0.1" 576 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 577 | 578 | fileset@^2.0.2: 579 | version "2.0.3" 580 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 581 | dependencies: 582 | glob "^7.0.3" 583 | minimatch "^3.0.3" 584 | 585 | fill-range@^2.1.0: 586 | version "2.2.3" 587 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 588 | dependencies: 589 | is-number "^2.1.0" 590 | isobject "^2.0.0" 591 | randomatic "^1.1.3" 592 | repeat-element "^1.1.2" 593 | repeat-string "^1.5.2" 594 | 595 | find-up@^1.0.0: 596 | version "1.1.2" 597 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 598 | dependencies: 599 | path-exists "^2.0.0" 600 | pinkie-promise "^2.0.0" 601 | 602 | find-up@^2.1.0: 603 | version "2.1.0" 604 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 605 | dependencies: 606 | locate-path "^2.0.0" 607 | 608 | flow-bin@^0.53.1: 609 | version "0.53.1" 610 | resolved "https://registry.yarnpkg.com/flow-bin/-/flow-bin-0.53.1.tgz#9b22b63a23c99763ae533ebbab07f88c88c97d84" 611 | 612 | for-in@^1.0.1: 613 | version "1.0.2" 614 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 615 | 616 | for-own@^0.1.4: 617 | version "0.1.5" 618 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 619 | dependencies: 620 | for-in "^1.0.1" 621 | 622 | forever-agent@~0.6.1: 623 | version "0.6.1" 624 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 625 | 626 | form-data@~2.1.1: 627 | version "2.1.4" 628 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 629 | dependencies: 630 | asynckit "^0.4.0" 631 | combined-stream "^1.0.5" 632 | mime-types "^2.1.12" 633 | 634 | fs.realpath@^1.0.0: 635 | version "1.0.0" 636 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 637 | 638 | get-caller-file@^1.0.1: 639 | version "1.0.2" 640 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 641 | 642 | getpass@^0.1.1: 643 | version "0.1.7" 644 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 645 | dependencies: 646 | assert-plus "^1.0.0" 647 | 648 | glob-base@^0.3.0: 649 | version "0.3.0" 650 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 651 | dependencies: 652 | glob-parent "^2.0.0" 653 | is-glob "^2.0.0" 654 | 655 | glob-parent@^2.0.0: 656 | version "2.0.0" 657 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 658 | dependencies: 659 | is-glob "^2.0.0" 660 | 661 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.1: 662 | version "7.1.2" 663 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 664 | dependencies: 665 | fs.realpath "^1.0.0" 666 | inflight "^1.0.4" 667 | inherits "2" 668 | minimatch "^3.0.4" 669 | once "^1.3.0" 670 | path-is-absolute "^1.0.0" 671 | 672 | globals@^9.18.0: 673 | version "9.18.0" 674 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 675 | 676 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 677 | version "4.1.11" 678 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 679 | 680 | growly@^1.3.0: 681 | version "1.3.0" 682 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 683 | 684 | handlebars@^4.0.3: 685 | version "4.0.10" 686 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.10.tgz#3d30c718b09a3d96f23ea4cc1f403c4d3ba9ff4f" 687 | dependencies: 688 | async "^1.4.0" 689 | optimist "^0.6.1" 690 | source-map "^0.4.4" 691 | optionalDependencies: 692 | uglify-js "^2.6" 693 | 694 | har-schema@^1.0.5: 695 | version "1.0.5" 696 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 697 | 698 | har-validator@~4.2.1: 699 | version "4.2.1" 700 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 701 | dependencies: 702 | ajv "^4.9.1" 703 | har-schema "^1.0.5" 704 | 705 | has-ansi@^2.0.0: 706 | version "2.0.0" 707 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 708 | dependencies: 709 | ansi-regex "^2.0.0" 710 | 711 | has-flag@^1.0.0: 712 | version "1.0.0" 713 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 714 | 715 | hawk@~3.1.3: 716 | version "3.1.3" 717 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 718 | dependencies: 719 | boom "2.x.x" 720 | cryptiles "2.x.x" 721 | hoek "2.x.x" 722 | sntp "1.x.x" 723 | 724 | hoek@2.x.x: 725 | version "2.16.3" 726 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 727 | 728 | home-or-tmp@^2.0.0: 729 | version "2.0.0" 730 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 731 | dependencies: 732 | os-homedir "^1.0.0" 733 | os-tmpdir "^1.0.1" 734 | 735 | hosted-git-info@^2.1.4: 736 | version "2.5.0" 737 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 738 | 739 | html-encoding-sniffer@^1.0.1: 740 | version "1.0.1" 741 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 742 | dependencies: 743 | whatwg-encoding "^1.0.1" 744 | 745 | http-signature@~1.1.0: 746 | version "1.1.1" 747 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 748 | dependencies: 749 | assert-plus "^0.2.0" 750 | jsprim "^1.2.2" 751 | sshpk "^1.7.0" 752 | 753 | iconv-lite@0.4.13: 754 | version "0.4.13" 755 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 756 | 757 | inflight@^1.0.4: 758 | version "1.0.6" 759 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 760 | dependencies: 761 | once "^1.3.0" 762 | wrappy "1" 763 | 764 | inherits@2: 765 | version "2.0.3" 766 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 767 | 768 | invariant@^2.2.2: 769 | version "2.2.2" 770 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 771 | dependencies: 772 | loose-envify "^1.0.0" 773 | 774 | invert-kv@^1.0.0: 775 | version "1.0.0" 776 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 777 | 778 | is-arrayish@^0.2.1: 779 | version "0.2.1" 780 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 781 | 782 | is-buffer@^1.1.5: 783 | version "1.1.5" 784 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 785 | 786 | is-builtin-module@^1.0.0: 787 | version "1.0.0" 788 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 789 | dependencies: 790 | builtin-modules "^1.0.0" 791 | 792 | is-ci@^1.0.10: 793 | version "1.0.10" 794 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 795 | dependencies: 796 | ci-info "^1.0.0" 797 | 798 | is-dotfile@^1.0.0: 799 | version "1.0.3" 800 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 801 | 802 | is-equal-shallow@^0.1.3: 803 | version "0.1.3" 804 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 805 | dependencies: 806 | is-primitive "^2.0.0" 807 | 808 | is-extendable@^0.1.1: 809 | version "0.1.1" 810 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 811 | 812 | is-extglob@^1.0.0: 813 | version "1.0.0" 814 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 815 | 816 | is-finite@^1.0.0: 817 | version "1.0.2" 818 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 819 | dependencies: 820 | number-is-nan "^1.0.0" 821 | 822 | is-fullwidth-code-point@^1.0.0: 823 | version "1.0.0" 824 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 825 | dependencies: 826 | number-is-nan "^1.0.0" 827 | 828 | is-glob@^2.0.0, is-glob@^2.0.1: 829 | version "2.0.1" 830 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 831 | dependencies: 832 | is-extglob "^1.0.0" 833 | 834 | is-number@^2.1.0: 835 | version "2.1.0" 836 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 837 | dependencies: 838 | kind-of "^3.0.2" 839 | 840 | is-number@^3.0.0: 841 | version "3.0.0" 842 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 843 | dependencies: 844 | kind-of "^3.0.2" 845 | 846 | is-posix-bracket@^0.1.0: 847 | version "0.1.1" 848 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 849 | 850 | is-primitive@^2.0.0: 851 | version "2.0.0" 852 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 853 | 854 | is-typedarray@~1.0.0: 855 | version "1.0.0" 856 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 857 | 858 | is-utf8@^0.2.0: 859 | version "0.2.1" 860 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 861 | 862 | isarray@1.0.0: 863 | version "1.0.0" 864 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 865 | 866 | isexe@^2.0.0: 867 | version "2.0.0" 868 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 869 | 870 | isobject@^2.0.0: 871 | version "2.1.0" 872 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 873 | dependencies: 874 | isarray "1.0.0" 875 | 876 | isstream@~0.1.2: 877 | version "0.1.2" 878 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 879 | 880 | istanbul-api@^1.1.1: 881 | version "1.1.13" 882 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.13.tgz#7197f64413600ebdfec6347a2dc3d4e03f97ed5a" 883 | dependencies: 884 | async "^2.1.4" 885 | fileset "^2.0.2" 886 | istanbul-lib-coverage "^1.1.1" 887 | istanbul-lib-hook "^1.0.7" 888 | istanbul-lib-instrument "^1.7.5" 889 | istanbul-lib-report "^1.1.1" 890 | istanbul-lib-source-maps "^1.2.1" 891 | istanbul-reports "^1.1.2" 892 | js-yaml "^3.7.0" 893 | mkdirp "^0.5.1" 894 | once "^1.4.0" 895 | 896 | istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.1.1: 897 | version "1.1.1" 898 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" 899 | 900 | istanbul-lib-hook@^1.0.7: 901 | version "1.0.7" 902 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.7.tgz#dd6607f03076578fe7d6f2a630cf143b49bacddc" 903 | dependencies: 904 | append-transform "^0.4.0" 905 | 906 | istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.7.2, istanbul-lib-instrument@^1.7.5: 907 | version "1.7.5" 908 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.5.tgz#adb596f8f0cb8b95e739206351a38a586af21b1e" 909 | dependencies: 910 | babel-generator "^6.18.0" 911 | babel-template "^6.16.0" 912 | babel-traverse "^6.18.0" 913 | babel-types "^6.18.0" 914 | babylon "^6.17.4" 915 | istanbul-lib-coverage "^1.1.1" 916 | semver "^5.3.0" 917 | 918 | istanbul-lib-report@^1.1.1: 919 | version "1.1.1" 920 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#f0e55f56655ffa34222080b7a0cd4760e1405fc9" 921 | dependencies: 922 | istanbul-lib-coverage "^1.1.1" 923 | mkdirp "^0.5.1" 924 | path-parse "^1.0.5" 925 | supports-color "^3.1.2" 926 | 927 | istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.1: 928 | version "1.2.1" 929 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.1.tgz#a6fe1acba8ce08eebc638e572e294d267008aa0c" 930 | dependencies: 931 | debug "^2.6.3" 932 | istanbul-lib-coverage "^1.1.1" 933 | mkdirp "^0.5.1" 934 | rimraf "^2.6.1" 935 | source-map "^0.5.3" 936 | 937 | istanbul-reports@^1.1.2: 938 | version "1.1.2" 939 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.2.tgz#0fb2e3f6aa9922bd3ce45d05d8ab4d5e8e07bd4f" 940 | dependencies: 941 | handlebars "^4.0.3" 942 | 943 | jest-changed-files@^20.0.3: 944 | version "20.0.3" 945 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-20.0.3.tgz#9394d5cc65c438406149bef1bf4d52b68e03e3f8" 946 | 947 | jest-cli@^20.0.4: 948 | version "20.0.4" 949 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-20.0.4.tgz#e532b19d88ae5bc6c417e8b0593a6fe954b1dc93" 950 | dependencies: 951 | ansi-escapes "^1.4.0" 952 | callsites "^2.0.0" 953 | chalk "^1.1.3" 954 | graceful-fs "^4.1.11" 955 | is-ci "^1.0.10" 956 | istanbul-api "^1.1.1" 957 | istanbul-lib-coverage "^1.0.1" 958 | istanbul-lib-instrument "^1.4.2" 959 | istanbul-lib-source-maps "^1.1.0" 960 | jest-changed-files "^20.0.3" 961 | jest-config "^20.0.4" 962 | jest-docblock "^20.0.3" 963 | jest-environment-jsdom "^20.0.3" 964 | jest-haste-map "^20.0.4" 965 | jest-jasmine2 "^20.0.4" 966 | jest-message-util "^20.0.3" 967 | jest-regex-util "^20.0.3" 968 | jest-resolve-dependencies "^20.0.3" 969 | jest-runtime "^20.0.4" 970 | jest-snapshot "^20.0.3" 971 | jest-util "^20.0.3" 972 | micromatch "^2.3.11" 973 | node-notifier "^5.0.2" 974 | pify "^2.3.0" 975 | slash "^1.0.0" 976 | string-length "^1.0.1" 977 | throat "^3.0.0" 978 | which "^1.2.12" 979 | worker-farm "^1.3.1" 980 | yargs "^7.0.2" 981 | 982 | jest-config@^20.0.4: 983 | version "20.0.4" 984 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-20.0.4.tgz#e37930ab2217c913605eff13e7bd763ec48faeea" 985 | dependencies: 986 | chalk "^1.1.3" 987 | glob "^7.1.1" 988 | jest-environment-jsdom "^20.0.3" 989 | jest-environment-node "^20.0.3" 990 | jest-jasmine2 "^20.0.4" 991 | jest-matcher-utils "^20.0.3" 992 | jest-regex-util "^20.0.3" 993 | jest-resolve "^20.0.4" 994 | jest-validate "^20.0.3" 995 | pretty-format "^20.0.3" 996 | 997 | jest-diff@^20.0.3: 998 | version "20.0.3" 999 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-20.0.3.tgz#81f288fd9e675f0fb23c75f1c2b19445fe586617" 1000 | dependencies: 1001 | chalk "^1.1.3" 1002 | diff "^3.2.0" 1003 | jest-matcher-utils "^20.0.3" 1004 | pretty-format "^20.0.3" 1005 | 1006 | jest-docblock@^20.0.3: 1007 | version "20.0.3" 1008 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-20.0.3.tgz#17bea984342cc33d83c50fbe1545ea0efaa44712" 1009 | 1010 | jest-environment-jsdom@^20.0.3: 1011 | version "20.0.3" 1012 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-20.0.3.tgz#048a8ac12ee225f7190417713834bb999787de99" 1013 | dependencies: 1014 | jest-mock "^20.0.3" 1015 | jest-util "^20.0.3" 1016 | jsdom "^9.12.0" 1017 | 1018 | jest-environment-node@^20.0.3: 1019 | version "20.0.3" 1020 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-20.0.3.tgz#d488bc4612af2c246e986e8ae7671a099163d403" 1021 | dependencies: 1022 | jest-mock "^20.0.3" 1023 | jest-util "^20.0.3" 1024 | 1025 | jest-haste-map@^20.0.4: 1026 | version "20.0.5" 1027 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-20.0.5.tgz#abad74efb1a005974a7b6517e11010709cab9112" 1028 | dependencies: 1029 | fb-watchman "^2.0.0" 1030 | graceful-fs "^4.1.11" 1031 | jest-docblock "^20.0.3" 1032 | micromatch "^2.3.11" 1033 | sane "~1.6.0" 1034 | worker-farm "^1.3.1" 1035 | 1036 | jest-jasmine2@^20.0.4: 1037 | version "20.0.4" 1038 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-20.0.4.tgz#fcc5b1411780d911d042902ef1859e852e60d5e1" 1039 | dependencies: 1040 | chalk "^1.1.3" 1041 | graceful-fs "^4.1.11" 1042 | jest-diff "^20.0.3" 1043 | jest-matcher-utils "^20.0.3" 1044 | jest-matchers "^20.0.3" 1045 | jest-message-util "^20.0.3" 1046 | jest-snapshot "^20.0.3" 1047 | once "^1.4.0" 1048 | p-map "^1.1.1" 1049 | 1050 | jest-matcher-utils@^20.0.3: 1051 | version "20.0.3" 1052 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-20.0.3.tgz#b3a6b8e37ca577803b0832a98b164f44b7815612" 1053 | dependencies: 1054 | chalk "^1.1.3" 1055 | pretty-format "^20.0.3" 1056 | 1057 | jest-matchers@^20.0.3: 1058 | version "20.0.3" 1059 | resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-20.0.3.tgz#ca69db1c32db5a6f707fa5e0401abb55700dfd60" 1060 | dependencies: 1061 | jest-diff "^20.0.3" 1062 | jest-matcher-utils "^20.0.3" 1063 | jest-message-util "^20.0.3" 1064 | jest-regex-util "^20.0.3" 1065 | 1066 | jest-message-util@^20.0.3: 1067 | version "20.0.3" 1068 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-20.0.3.tgz#6aec2844306fcb0e6e74d5796c1006d96fdd831c" 1069 | dependencies: 1070 | chalk "^1.1.3" 1071 | micromatch "^2.3.11" 1072 | slash "^1.0.0" 1073 | 1074 | jest-mock@^20.0.3: 1075 | version "20.0.3" 1076 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-20.0.3.tgz#8bc070e90414aa155c11a8d64c869a0d5c71da59" 1077 | 1078 | jest-regex-util@^20.0.3: 1079 | version "20.0.3" 1080 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-20.0.3.tgz#85bbab5d133e44625b19faf8c6aa5122d085d762" 1081 | 1082 | jest-resolve-dependencies@^20.0.3: 1083 | version "20.0.3" 1084 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-20.0.3.tgz#6e14a7b717af0f2cb3667c549de40af017b1723a" 1085 | dependencies: 1086 | jest-regex-util "^20.0.3" 1087 | 1088 | jest-resolve@^20.0.4: 1089 | version "20.0.4" 1090 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-20.0.4.tgz#9448b3e8b6bafc15479444c6499045b7ffe597a5" 1091 | dependencies: 1092 | browser-resolve "^1.11.2" 1093 | is-builtin-module "^1.0.0" 1094 | resolve "^1.3.2" 1095 | 1096 | jest-runtime@^20.0.4: 1097 | version "20.0.4" 1098 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-20.0.4.tgz#a2c802219c4203f754df1404e490186169d124d8" 1099 | dependencies: 1100 | babel-core "^6.0.0" 1101 | babel-jest "^20.0.3" 1102 | babel-plugin-istanbul "^4.0.0" 1103 | chalk "^1.1.3" 1104 | convert-source-map "^1.4.0" 1105 | graceful-fs "^4.1.11" 1106 | jest-config "^20.0.4" 1107 | jest-haste-map "^20.0.4" 1108 | jest-regex-util "^20.0.3" 1109 | jest-resolve "^20.0.4" 1110 | jest-util "^20.0.3" 1111 | json-stable-stringify "^1.0.1" 1112 | micromatch "^2.3.11" 1113 | strip-bom "3.0.0" 1114 | yargs "^7.0.2" 1115 | 1116 | jest-snapshot@^20.0.3: 1117 | version "20.0.3" 1118 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-20.0.3.tgz#5b847e1adb1a4d90852a7f9f125086e187c76566" 1119 | dependencies: 1120 | chalk "^1.1.3" 1121 | jest-diff "^20.0.3" 1122 | jest-matcher-utils "^20.0.3" 1123 | jest-util "^20.0.3" 1124 | natural-compare "^1.4.0" 1125 | pretty-format "^20.0.3" 1126 | 1127 | jest-util@^20.0.3: 1128 | version "20.0.3" 1129 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-20.0.3.tgz#0c07f7d80d82f4e5a67c6f8b9c3fe7f65cfd32ad" 1130 | dependencies: 1131 | chalk "^1.1.3" 1132 | graceful-fs "^4.1.11" 1133 | jest-message-util "^20.0.3" 1134 | jest-mock "^20.0.3" 1135 | jest-validate "^20.0.3" 1136 | leven "^2.1.0" 1137 | mkdirp "^0.5.1" 1138 | 1139 | jest-validate@^20.0.3: 1140 | version "20.0.3" 1141 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-20.0.3.tgz#d0cfd1de4f579f298484925c280f8f1d94ec3cab" 1142 | dependencies: 1143 | chalk "^1.1.3" 1144 | jest-matcher-utils "^20.0.3" 1145 | leven "^2.1.0" 1146 | pretty-format "^20.0.3" 1147 | 1148 | jest@^20.0.4: 1149 | version "20.0.4" 1150 | resolved "https://registry.yarnpkg.com/jest/-/jest-20.0.4.tgz#3dd260c2989d6dad678b1e9cc4d91944f6d602ac" 1151 | dependencies: 1152 | jest-cli "^20.0.4" 1153 | 1154 | js-tokens@^3.0.0, js-tokens@^3.0.2: 1155 | version "3.0.2" 1156 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1157 | 1158 | js-yaml@^3.7.0: 1159 | version "3.9.1" 1160 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.9.1.tgz#08775cebdfdd359209f0d2acd383c8f86a6904a0" 1161 | dependencies: 1162 | argparse "^1.0.7" 1163 | esprima "^4.0.0" 1164 | 1165 | jsbn@~0.1.0: 1166 | version "0.1.1" 1167 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1168 | 1169 | jsdom@^9.12.0: 1170 | version "9.12.0" 1171 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 1172 | dependencies: 1173 | abab "^1.0.3" 1174 | acorn "^4.0.4" 1175 | acorn-globals "^3.1.0" 1176 | array-equal "^1.0.0" 1177 | content-type-parser "^1.0.1" 1178 | cssom ">= 0.3.2 < 0.4.0" 1179 | cssstyle ">= 0.2.37 < 0.3.0" 1180 | escodegen "^1.6.1" 1181 | html-encoding-sniffer "^1.0.1" 1182 | nwmatcher ">= 1.3.9 < 2.0.0" 1183 | parse5 "^1.5.1" 1184 | request "^2.79.0" 1185 | sax "^1.2.1" 1186 | symbol-tree "^3.2.1" 1187 | tough-cookie "^2.3.2" 1188 | webidl-conversions "^4.0.0" 1189 | whatwg-encoding "^1.0.1" 1190 | whatwg-url "^4.3.0" 1191 | xml-name-validator "^2.0.1" 1192 | 1193 | jsesc@^1.3.0: 1194 | version "1.3.0" 1195 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1196 | 1197 | json-schema@0.2.3: 1198 | version "0.2.3" 1199 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1200 | 1201 | json-stable-stringify@^1.0.1: 1202 | version "1.0.1" 1203 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1204 | dependencies: 1205 | jsonify "~0.0.0" 1206 | 1207 | json-stringify-safe@~5.0.1: 1208 | version "5.0.1" 1209 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1210 | 1211 | json5@^0.5.1: 1212 | version "0.5.1" 1213 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1214 | 1215 | jsonify@~0.0.0: 1216 | version "0.0.0" 1217 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1218 | 1219 | jsprim@^1.2.2: 1220 | version "1.4.1" 1221 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1222 | dependencies: 1223 | assert-plus "1.0.0" 1224 | extsprintf "1.3.0" 1225 | json-schema "0.2.3" 1226 | verror "1.10.0" 1227 | 1228 | kind-of@^3.0.2: 1229 | version "3.2.2" 1230 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1231 | dependencies: 1232 | is-buffer "^1.1.5" 1233 | 1234 | kind-of@^4.0.0: 1235 | version "4.0.0" 1236 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1237 | dependencies: 1238 | is-buffer "^1.1.5" 1239 | 1240 | lazy-cache@^1.0.3: 1241 | version "1.0.4" 1242 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1243 | 1244 | lcid@^1.0.0: 1245 | version "1.0.0" 1246 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1247 | dependencies: 1248 | invert-kv "^1.0.0" 1249 | 1250 | leven@^2.1.0: 1251 | version "2.1.0" 1252 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 1253 | 1254 | levn@~0.3.0: 1255 | version "0.3.0" 1256 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1257 | dependencies: 1258 | prelude-ls "~1.1.2" 1259 | type-check "~0.3.2" 1260 | 1261 | load-json-file@^1.0.0: 1262 | version "1.1.0" 1263 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1264 | dependencies: 1265 | graceful-fs "^4.1.2" 1266 | parse-json "^2.2.0" 1267 | pify "^2.0.0" 1268 | pinkie-promise "^2.0.0" 1269 | strip-bom "^2.0.0" 1270 | 1271 | locate-path@^2.0.0: 1272 | version "2.0.0" 1273 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1274 | dependencies: 1275 | p-locate "^2.0.0" 1276 | path-exists "^3.0.0" 1277 | 1278 | lodash@^4.14.0, lodash@^4.17.4: 1279 | version "4.17.4" 1280 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1281 | 1282 | longest@^1.0.1: 1283 | version "1.0.1" 1284 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1285 | 1286 | loose-envify@^1.0.0: 1287 | version "1.3.1" 1288 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1289 | dependencies: 1290 | js-tokens "^3.0.0" 1291 | 1292 | makeerror@1.0.x: 1293 | version "1.0.11" 1294 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 1295 | dependencies: 1296 | tmpl "1.0.x" 1297 | 1298 | merge@^1.1.3: 1299 | version "1.2.0" 1300 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 1301 | 1302 | micromatch@^2.1.5, micromatch@^2.3.11: 1303 | version "2.3.11" 1304 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1305 | dependencies: 1306 | arr-diff "^2.0.0" 1307 | array-unique "^0.2.1" 1308 | braces "^1.8.2" 1309 | expand-brackets "^0.1.4" 1310 | extglob "^0.3.1" 1311 | filename-regex "^2.0.0" 1312 | is-extglob "^1.0.0" 1313 | is-glob "^2.0.1" 1314 | kind-of "^3.0.2" 1315 | normalize-path "^2.0.1" 1316 | object.omit "^2.0.0" 1317 | parse-glob "^3.0.4" 1318 | regex-cache "^0.4.2" 1319 | 1320 | mime-db@~1.29.0: 1321 | version "1.29.0" 1322 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.29.0.tgz#48d26d235589651704ac5916ca06001914266878" 1323 | 1324 | mime-types@^2.1.12, mime-types@~2.1.7: 1325 | version "2.1.16" 1326 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.16.tgz#2b858a52e5ecd516db897ac2be87487830698e23" 1327 | dependencies: 1328 | mime-db "~1.29.0" 1329 | 1330 | minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 1331 | version "3.0.4" 1332 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1333 | dependencies: 1334 | brace-expansion "^1.1.7" 1335 | 1336 | minimist@0.0.8: 1337 | version "0.0.8" 1338 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1339 | 1340 | minimist@^1.1.1: 1341 | version "1.2.0" 1342 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1343 | 1344 | minimist@~0.0.1: 1345 | version "0.0.10" 1346 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 1347 | 1348 | mkdirp@^0.5.1: 1349 | version "0.5.1" 1350 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1351 | dependencies: 1352 | minimist "0.0.8" 1353 | 1354 | ms@2.0.0: 1355 | version "2.0.0" 1356 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1357 | 1358 | natural-compare@^1.4.0: 1359 | version "1.4.0" 1360 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1361 | 1362 | node-int64@^0.4.0: 1363 | version "0.4.0" 1364 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 1365 | 1366 | node-notifier@^5.0.2: 1367 | version "5.1.2" 1368 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 1369 | dependencies: 1370 | growly "^1.3.0" 1371 | semver "^5.3.0" 1372 | shellwords "^0.1.0" 1373 | which "^1.2.12" 1374 | 1375 | normalize-package-data@^2.3.2: 1376 | version "2.4.0" 1377 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 1378 | dependencies: 1379 | hosted-git-info "^2.1.4" 1380 | is-builtin-module "^1.0.0" 1381 | semver "2 || 3 || 4 || 5" 1382 | validate-npm-package-license "^3.0.1" 1383 | 1384 | normalize-path@^2.0.0, normalize-path@^2.0.1: 1385 | version "2.1.1" 1386 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1387 | dependencies: 1388 | remove-trailing-separator "^1.0.1" 1389 | 1390 | number-is-nan@^1.0.0: 1391 | version "1.0.1" 1392 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1393 | 1394 | "nwmatcher@>= 1.3.9 < 2.0.0": 1395 | version "1.4.1" 1396 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.1.tgz#7ae9b07b0ea804db7e25f05cb5fe4097d4e4949f" 1397 | 1398 | oauth-sign@~0.8.1: 1399 | version "0.8.2" 1400 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1401 | 1402 | object-assign@^4.1.0: 1403 | version "4.1.1" 1404 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1405 | 1406 | object.omit@^2.0.0: 1407 | version "2.0.1" 1408 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1409 | dependencies: 1410 | for-own "^0.1.4" 1411 | is-extendable "^0.1.1" 1412 | 1413 | once@^1.3.0, once@^1.4.0: 1414 | version "1.4.0" 1415 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1416 | dependencies: 1417 | wrappy "1" 1418 | 1419 | optimist@^0.6.1: 1420 | version "0.6.1" 1421 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 1422 | dependencies: 1423 | minimist "~0.0.1" 1424 | wordwrap "~0.0.2" 1425 | 1426 | optionator@^0.8.1: 1427 | version "0.8.2" 1428 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 1429 | dependencies: 1430 | deep-is "~0.1.3" 1431 | fast-levenshtein "~2.0.4" 1432 | levn "~0.3.0" 1433 | prelude-ls "~1.1.2" 1434 | type-check "~0.3.2" 1435 | wordwrap "~1.0.0" 1436 | 1437 | os-homedir@^1.0.0: 1438 | version "1.0.2" 1439 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1440 | 1441 | os-locale@^1.4.0: 1442 | version "1.4.0" 1443 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 1444 | dependencies: 1445 | lcid "^1.0.0" 1446 | 1447 | os-tmpdir@^1.0.1: 1448 | version "1.0.2" 1449 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1450 | 1451 | p-limit@^1.1.0: 1452 | version "1.1.0" 1453 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 1454 | 1455 | p-locate@^2.0.0: 1456 | version "2.0.0" 1457 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1458 | dependencies: 1459 | p-limit "^1.1.0" 1460 | 1461 | p-map@^1.1.1: 1462 | version "1.1.1" 1463 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.1.1.tgz#05f5e4ae97a068371bc2a5cc86bfbdbc19c4ae7a" 1464 | 1465 | parse-glob@^3.0.4: 1466 | version "3.0.4" 1467 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1468 | dependencies: 1469 | glob-base "^0.3.0" 1470 | is-dotfile "^1.0.0" 1471 | is-extglob "^1.0.0" 1472 | is-glob "^2.0.0" 1473 | 1474 | parse-json@^2.2.0: 1475 | version "2.2.0" 1476 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1477 | dependencies: 1478 | error-ex "^1.2.0" 1479 | 1480 | parse5@^1.5.1: 1481 | version "1.5.1" 1482 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 1483 | 1484 | path-exists@^2.0.0: 1485 | version "2.1.0" 1486 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1487 | dependencies: 1488 | pinkie-promise "^2.0.0" 1489 | 1490 | path-exists@^3.0.0: 1491 | version "3.0.0" 1492 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1493 | 1494 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 1495 | version "1.0.1" 1496 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1497 | 1498 | path-parse@^1.0.5: 1499 | version "1.0.5" 1500 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 1501 | 1502 | path-type@^1.0.0: 1503 | version "1.1.0" 1504 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 1505 | dependencies: 1506 | graceful-fs "^4.1.2" 1507 | pify "^2.0.0" 1508 | pinkie-promise "^2.0.0" 1509 | 1510 | performance-now@^0.2.0: 1511 | version "0.2.0" 1512 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 1513 | 1514 | pify@^2.0.0, pify@^2.3.0: 1515 | version "2.3.0" 1516 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1517 | 1518 | pinkie-promise@^2.0.0: 1519 | version "2.0.1" 1520 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1521 | dependencies: 1522 | pinkie "^2.0.0" 1523 | 1524 | pinkie@^2.0.0: 1525 | version "2.0.4" 1526 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1527 | 1528 | prelude-ls@~1.1.2: 1529 | version "1.1.2" 1530 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 1531 | 1532 | preserve@^0.2.0: 1533 | version "0.2.0" 1534 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1535 | 1536 | pretty-format@^20.0.3: 1537 | version "20.0.3" 1538 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-20.0.3.tgz#020e350a560a1fe1a98dc3beb6ccffb386de8b14" 1539 | dependencies: 1540 | ansi-regex "^2.1.1" 1541 | ansi-styles "^3.0.0" 1542 | 1543 | private@^0.1.7: 1544 | version "0.1.7" 1545 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 1546 | 1547 | prr@~0.0.0: 1548 | version "0.0.0" 1549 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 1550 | 1551 | punycode@^1.4.1: 1552 | version "1.4.1" 1553 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1554 | 1555 | qs@~6.4.0: 1556 | version "6.4.0" 1557 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 1558 | 1559 | randomatic@^1.1.3: 1560 | version "1.1.7" 1561 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 1562 | dependencies: 1563 | is-number "^3.0.0" 1564 | kind-of "^4.0.0" 1565 | 1566 | read-pkg-up@^1.0.1: 1567 | version "1.0.1" 1568 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 1569 | dependencies: 1570 | find-up "^1.0.0" 1571 | read-pkg "^1.0.0" 1572 | 1573 | read-pkg@^1.0.0: 1574 | version "1.1.0" 1575 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 1576 | dependencies: 1577 | load-json-file "^1.0.0" 1578 | normalize-package-data "^2.3.2" 1579 | path-type "^1.0.0" 1580 | 1581 | regenerator-runtime@^0.11.0: 1582 | version "0.11.0" 1583 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1" 1584 | 1585 | regex-cache@^0.4.2: 1586 | version "0.4.3" 1587 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 1588 | dependencies: 1589 | is-equal-shallow "^0.1.3" 1590 | is-primitive "^2.0.0" 1591 | 1592 | remove-trailing-separator@^1.0.1: 1593 | version "1.1.0" 1594 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 1595 | 1596 | repeat-element@^1.1.2: 1597 | version "1.1.2" 1598 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1599 | 1600 | repeat-string@^1.5.2: 1601 | version "1.6.1" 1602 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1603 | 1604 | repeating@^2.0.0: 1605 | version "2.0.1" 1606 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1607 | dependencies: 1608 | is-finite "^1.0.0" 1609 | 1610 | request@^2.79.0: 1611 | version "2.81.0" 1612 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 1613 | dependencies: 1614 | aws-sign2 "~0.6.0" 1615 | aws4 "^1.2.1" 1616 | caseless "~0.12.0" 1617 | combined-stream "~1.0.5" 1618 | extend "~3.0.0" 1619 | forever-agent "~0.6.1" 1620 | form-data "~2.1.1" 1621 | har-validator "~4.2.1" 1622 | hawk "~3.1.3" 1623 | http-signature "~1.1.0" 1624 | is-typedarray "~1.0.0" 1625 | isstream "~0.1.2" 1626 | json-stringify-safe "~5.0.1" 1627 | mime-types "~2.1.7" 1628 | oauth-sign "~0.8.1" 1629 | performance-now "^0.2.0" 1630 | qs "~6.4.0" 1631 | safe-buffer "^5.0.1" 1632 | stringstream "~0.0.4" 1633 | tough-cookie "~2.3.0" 1634 | tunnel-agent "^0.6.0" 1635 | uuid "^3.0.0" 1636 | 1637 | require-directory@^2.1.1: 1638 | version "2.1.1" 1639 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 1640 | 1641 | require-main-filename@^1.0.1: 1642 | version "1.0.1" 1643 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 1644 | 1645 | resolve@1.1.7: 1646 | version "1.1.7" 1647 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 1648 | 1649 | resolve@^1.3.2: 1650 | version "1.4.0" 1651 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.4.0.tgz#a75be01c53da25d934a98ebd0e4c4a7312f92a86" 1652 | dependencies: 1653 | path-parse "^1.0.5" 1654 | 1655 | right-align@^0.1.1: 1656 | version "0.1.3" 1657 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 1658 | dependencies: 1659 | align-text "^0.1.1" 1660 | 1661 | rimraf@^2.6.1: 1662 | version "2.6.1" 1663 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 1664 | dependencies: 1665 | glob "^7.0.5" 1666 | 1667 | safe-buffer@^5.0.1: 1668 | version "5.1.1" 1669 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 1670 | 1671 | sane@~1.6.0: 1672 | version "1.6.0" 1673 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.6.0.tgz#9610c452307a135d29c1fdfe2547034180c46775" 1674 | dependencies: 1675 | anymatch "^1.3.0" 1676 | exec-sh "^0.2.0" 1677 | fb-watchman "^1.8.0" 1678 | minimatch "^3.0.2" 1679 | minimist "^1.1.1" 1680 | walker "~1.0.5" 1681 | watch "~0.10.0" 1682 | 1683 | sax@^1.2.1: 1684 | version "1.2.4" 1685 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 1686 | 1687 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 1688 | version "5.4.1" 1689 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 1690 | 1691 | set-blocking@^2.0.0: 1692 | version "2.0.0" 1693 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1694 | 1695 | shellwords@^0.1.0: 1696 | version "0.1.1" 1697 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" 1698 | 1699 | slash@^1.0.0: 1700 | version "1.0.0" 1701 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 1702 | 1703 | sntp@1.x.x: 1704 | version "1.0.9" 1705 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 1706 | dependencies: 1707 | hoek "2.x.x" 1708 | 1709 | source-map-support@^0.4.15: 1710 | version "0.4.16" 1711 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.16.tgz#16fecf98212467d017d586a2af68d628b9421cd8" 1712 | dependencies: 1713 | source-map "^0.5.6" 1714 | 1715 | source-map@^0.4.4: 1716 | version "0.4.4" 1717 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 1718 | dependencies: 1719 | amdefine ">=0.0.4" 1720 | 1721 | source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 1722 | version "0.5.7" 1723 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 1724 | 1725 | source-map@~0.2.0: 1726 | version "0.2.0" 1727 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 1728 | dependencies: 1729 | amdefine ">=0.0.4" 1730 | 1731 | spdx-correct@~1.0.0: 1732 | version "1.0.2" 1733 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 1734 | dependencies: 1735 | spdx-license-ids "^1.0.2" 1736 | 1737 | spdx-expression-parse@~1.0.0: 1738 | version "1.0.4" 1739 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 1740 | 1741 | spdx-license-ids@^1.0.2: 1742 | version "1.2.2" 1743 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 1744 | 1745 | sprintf-js@~1.0.2: 1746 | version "1.0.3" 1747 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 1748 | 1749 | sshpk@^1.7.0: 1750 | version "1.13.1" 1751 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 1752 | dependencies: 1753 | asn1 "~0.2.3" 1754 | assert-plus "^1.0.0" 1755 | dashdash "^1.12.0" 1756 | getpass "^0.1.1" 1757 | optionalDependencies: 1758 | bcrypt-pbkdf "^1.0.0" 1759 | ecc-jsbn "~0.1.1" 1760 | jsbn "~0.1.0" 1761 | tweetnacl "~0.14.0" 1762 | 1763 | string-length@^1.0.1: 1764 | version "1.0.1" 1765 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 1766 | dependencies: 1767 | strip-ansi "^3.0.0" 1768 | 1769 | string-width@^1.0.1, string-width@^1.0.2: 1770 | version "1.0.2" 1771 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1772 | dependencies: 1773 | code-point-at "^1.0.0" 1774 | is-fullwidth-code-point "^1.0.0" 1775 | strip-ansi "^3.0.0" 1776 | 1777 | stringstream@~0.0.4: 1778 | version "0.0.5" 1779 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 1780 | 1781 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1782 | version "3.0.1" 1783 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1784 | dependencies: 1785 | ansi-regex "^2.0.0" 1786 | 1787 | strip-bom@3.0.0: 1788 | version "3.0.0" 1789 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 1790 | 1791 | strip-bom@^2.0.0: 1792 | version "2.0.0" 1793 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 1794 | dependencies: 1795 | is-utf8 "^0.2.0" 1796 | 1797 | supports-color@^2.0.0: 1798 | version "2.0.0" 1799 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1800 | 1801 | supports-color@^3.1.2: 1802 | version "3.2.3" 1803 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 1804 | dependencies: 1805 | has-flag "^1.0.0" 1806 | 1807 | symbol-tree@^3.2.1: 1808 | version "3.2.2" 1809 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 1810 | 1811 | test-exclude@^4.1.1: 1812 | version "4.1.1" 1813 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26" 1814 | dependencies: 1815 | arrify "^1.0.1" 1816 | micromatch "^2.3.11" 1817 | object-assign "^4.1.0" 1818 | read-pkg-up "^1.0.1" 1819 | require-main-filename "^1.0.1" 1820 | 1821 | throat@^3.0.0: 1822 | version "3.2.0" 1823 | resolved "https://registry.yarnpkg.com/throat/-/throat-3.2.0.tgz#50cb0670edbc40237b9e347d7e1f88e4620af836" 1824 | 1825 | tmpl@1.0.x: 1826 | version "1.0.4" 1827 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 1828 | 1829 | to-fast-properties@^1.0.3: 1830 | version "1.0.3" 1831 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 1832 | 1833 | tough-cookie@^2.3.2, tough-cookie@~2.3.0: 1834 | version "2.3.2" 1835 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 1836 | dependencies: 1837 | punycode "^1.4.1" 1838 | 1839 | tr46@~0.0.3: 1840 | version "0.0.3" 1841 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 1842 | 1843 | trim-right@^1.0.1: 1844 | version "1.0.1" 1845 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 1846 | 1847 | tunnel-agent@^0.6.0: 1848 | version "0.6.0" 1849 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 1850 | dependencies: 1851 | safe-buffer "^5.0.1" 1852 | 1853 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 1854 | version "0.14.5" 1855 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 1856 | 1857 | type-check@~0.3.2: 1858 | version "0.3.2" 1859 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 1860 | dependencies: 1861 | prelude-ls "~1.1.2" 1862 | 1863 | uglify-js@^2.6: 1864 | version "2.8.29" 1865 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 1866 | dependencies: 1867 | source-map "~0.5.1" 1868 | yargs "~3.10.0" 1869 | optionalDependencies: 1870 | uglify-to-browserify "~1.0.0" 1871 | 1872 | uglify-to-browserify@~1.0.0: 1873 | version "1.0.2" 1874 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 1875 | 1876 | uuid@^3.0.0: 1877 | version "3.1.0" 1878 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 1879 | 1880 | validate-npm-package-license@^3.0.1: 1881 | version "3.0.1" 1882 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 1883 | dependencies: 1884 | spdx-correct "~1.0.0" 1885 | spdx-expression-parse "~1.0.0" 1886 | 1887 | verror@1.10.0: 1888 | version "1.10.0" 1889 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 1890 | dependencies: 1891 | assert-plus "^1.0.0" 1892 | core-util-is "1.0.2" 1893 | extsprintf "^1.2.0" 1894 | 1895 | walker@~1.0.5: 1896 | version "1.0.7" 1897 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 1898 | dependencies: 1899 | makeerror "1.0.x" 1900 | 1901 | watch@~0.10.0: 1902 | version "0.10.0" 1903 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 1904 | 1905 | webidl-conversions@^3.0.0: 1906 | version "3.0.1" 1907 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 1908 | 1909 | webidl-conversions@^4.0.0: 1910 | version "4.0.2" 1911 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" 1912 | 1913 | whatwg-encoding@^1.0.1: 1914 | version "1.0.1" 1915 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 1916 | dependencies: 1917 | iconv-lite "0.4.13" 1918 | 1919 | whatwg-url@^4.3.0: 1920 | version "4.8.0" 1921 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0" 1922 | dependencies: 1923 | tr46 "~0.0.3" 1924 | webidl-conversions "^3.0.0" 1925 | 1926 | which-module@^1.0.0: 1927 | version "1.0.0" 1928 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 1929 | 1930 | which@^1.2.12: 1931 | version "1.3.0" 1932 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 1933 | dependencies: 1934 | isexe "^2.0.0" 1935 | 1936 | window-size@0.1.0: 1937 | version "0.1.0" 1938 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 1939 | 1940 | wordwrap@0.0.2: 1941 | version "0.0.2" 1942 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 1943 | 1944 | wordwrap@~0.0.2: 1945 | version "0.0.3" 1946 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 1947 | 1948 | wordwrap@~1.0.0: 1949 | version "1.0.0" 1950 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 1951 | 1952 | worker-farm@^1.3.1: 1953 | version "1.5.0" 1954 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.5.0.tgz#adfdf0cd40581465ed0a1f648f9735722afd5c8d" 1955 | dependencies: 1956 | errno "^0.1.4" 1957 | xtend "^4.0.1" 1958 | 1959 | wrap-ansi@^2.0.0: 1960 | version "2.1.0" 1961 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 1962 | dependencies: 1963 | string-width "^1.0.1" 1964 | strip-ansi "^3.0.1" 1965 | 1966 | wrappy@1: 1967 | version "1.0.2" 1968 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1969 | 1970 | xml-name-validator@^2.0.1: 1971 | version "2.0.1" 1972 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 1973 | 1974 | xtend@^4.0.1: 1975 | version "4.0.1" 1976 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 1977 | 1978 | y18n@^3.2.1: 1979 | version "3.2.1" 1980 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 1981 | 1982 | yargs-parser@^5.0.0: 1983 | version "5.0.0" 1984 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" 1985 | dependencies: 1986 | camelcase "^3.0.0" 1987 | 1988 | yargs@^7.0.2: 1989 | version "7.1.0" 1990 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" 1991 | dependencies: 1992 | camelcase "^3.0.0" 1993 | cliui "^3.2.0" 1994 | decamelize "^1.1.1" 1995 | get-caller-file "^1.0.1" 1996 | os-locale "^1.4.0" 1997 | read-pkg-up "^1.0.1" 1998 | require-directory "^2.1.1" 1999 | require-main-filename "^1.0.1" 2000 | set-blocking "^2.0.0" 2001 | string-width "^1.0.2" 2002 | which-module "^1.0.0" 2003 | y18n "^3.2.1" 2004 | yargs-parser "^5.0.0" 2005 | 2006 | yargs@~3.10.0: 2007 | version "3.10.0" 2008 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 2009 | dependencies: 2010 | camelcase "^1.0.2" 2011 | cliui "^2.1.0" 2012 | decamelize "^1.0.0" 2013 | window-size "0.1.0" 2014 | --------------------------------------------------------------------------------