├── .gitignore ├── .flowconfig ├── .travis.yml ├── package.json ├── LICENSE ├── README.md ├── index.js ├── 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 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - '8' 4 | cache: yarn 5 | script: yarn test -- --runInBand --coverage && yarn flow 6 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "babel-type-scopes", 3 | "version": "1.0.0", 4 | "description": "Utils for looking up and working with Flow & TypeScript scopes in Babel", 5 | "main": "index.js", 6 | "repository": "babel-utils/babel-type-scopes", 7 | "author": "James Kyle ", 8 | "license": "MIT", 9 | "files": [ 10 | "index.js" 11 | ], 12 | "keywords": [ 13 | "babel", 14 | "utils", 15 | "flow", 16 | "typescript", 17 | "scope", 18 | "binding" 19 | ], 20 | "scripts": { 21 | "test": "jest" 22 | }, 23 | "dependencies": { 24 | "babel-flow-types": "^1.2.1" 25 | }, 26 | "devDependencies": { 27 | "babel-core": "^7.0.0-alpha.19", 28 | "babylon-options": "^1.1.2", 29 | "flow-bin": "^0.53.1", 30 | "jest": "^20.0.4", 31 | "jest-in-case": "^1.0.1" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # babel-type-scopes 2 | 3 | > Utils for looking up and working with Flow & TypeScript scopes in Babel 4 | 5 | ```js 6 | import { 7 | isTypeScope, 8 | getClosestTypeScopePath, 9 | getOwnTypeBindings, 10 | getTypeBinding, 11 | } from 'babel-type-scopes'; 12 | 13 | isTypeScope(path); // true | false 14 | getClosestTypeScopePath(path); // (Path) 15 | getOwnTypeBindings(path) // { foo: { kind, path, id }, bar: { kind, path, id } } 16 | getTypeBinding(path, 'foo') // { kind, path, id } 17 | ``` 18 | 19 | ## Installation 20 | 21 | ```sh 22 | yarn add babel-type-scopes 23 | ``` 24 | 25 | ## API 26 | 27 | #### `isTypeScope(path: Path) => boolean` 28 | 29 | Check if a path creates a type scope. 30 | 31 | #### `getClosestTypeScope(path: Path) => Path` 32 | 33 | Find the closest path to a type scope. 34 | 35 | #### `getOwnTypeBindings(path: Path) => Bindings` 36 | 37 | Find the closest path to a type scope. 38 | 39 | #### `getTypeBinding(path: Path) => Binding` 40 | 41 | Search for a binding in the current scope and parent scopes. 42 | 43 | ### Types 44 | 45 | #### `Binding` 46 | 47 | ```js 48 | type Binding = { 49 | kind: 'import' | 'declaration' | 'expression' | 'param', 50 | path: Path, 51 | id: Path, 52 | }; 53 | ``` 54 | 55 | #### `Bindings` 56 | 57 | ```js 58 | type Bindings = { [name: string]: Binding }; 59 | ``` 60 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | /*:: 2 | import type {BabelPath as Path} from 'babel-flow-types'; 3 | 4 | type Binding = { 5 | kind: 'import' | 'declaration' | 'expression' | 'param', 6 | path: Path, 7 | id: Path, 8 | }; 9 | 10 | type Bindings = { 11 | [name: string]: Binding, 12 | }; 13 | 14 | type Visitor = { 15 | [method: string]: (path: Path, state: { bindings: Bindings }) => void; 16 | }; 17 | */ 18 | let getId = (kind, path, bindings) => { 19 | if (path.node.id) { 20 | let id = path.get('id'); 21 | bindings[id.node.name] = {kind, path: id}; 22 | } 23 | }; 24 | 25 | let visitor /*: Visitor */ = { 26 | Scope(path) { 27 | path.skip(); 28 | }, 29 | 30 | Declaration(path, state) { 31 | if ( 32 | isTypeDeclaration(path) 33 | ) { 34 | getId('declaration', path, state.bindings); 35 | } 36 | 37 | if (!path.isImportDeclaration() && !path.isExportDeclaration()) { 38 | path.skip(); 39 | } 40 | }, 41 | 42 | TypeParameter(path, state) { 43 | state.bindings[path.node.name] = {kind: 'param', path}; 44 | }, 45 | 46 | 'ImportSpecifier|ImportDefaultSpecifier'(path, state) { 47 | let importKind = path.node.importKind || path.parent.importKind; 48 | if (importKind !== 'type' && importKind !== 'typeof') return; 49 | let local = path.get('local'); 50 | state.bindings[local.node.name] = {kind: 'import', path: local}; 51 | }, 52 | }; 53 | 54 | function isTypeImport(path) { 55 | if (!path.isImportSpecifier() && !path.isImportDefaultSpecifier()) { 56 | return false; 57 | } 58 | 59 | let importKind = path.node.importKind || path.parent.importKind; 60 | return importKind === 'type' || importKind === 'typeof'; 61 | } 62 | 63 | function isTypeDeclaration(path) { 64 | return ( 65 | path.isTypeAlias() || 66 | path.isClassDeclaration() || 67 | path.isInterfaceDeclaration() || 68 | path.type === 'TSTypeAliasDeclaration' || 69 | path.type === 'TSInterfaceDeclaration' || 70 | path.type === 'TSEnumDeclaration' || 71 | path.type === 'TSModuleDeclaration' 72 | ); 73 | } 74 | 75 | function isTypeExpression(path) { 76 | return path.isClassExpression(); 77 | } 78 | 79 | function isTypeParam(path) { 80 | return path.isTypeParameter(); 81 | } 82 | 83 | function isTypeScope(path /*: Path */) { 84 | return ( 85 | path.isScope() || 86 | path.isFunctionTypeAnnotation() || 87 | path.isTypeAlias() || 88 | path.isInterfaceDeclaration() || 89 | isTypeDeclaration(path) 90 | ); 91 | } 92 | 93 | function getOwnTypeBindings(path /*: Path */) { 94 | if (!isTypeScope(path)) { 95 | throw new Error('Must pass valid type scope path using getClosestTypeScope()'); 96 | } 97 | 98 | let bindings = {}; 99 | 100 | if (isTypeExpression(path) && path.node.id) { 101 | getId('expression', path, bindings); 102 | } else { 103 | path.traverse(visitor, { bindings }); 104 | } 105 | 106 | return bindings; 107 | } 108 | 109 | function getTypeBinding(path /*: Path */, name /*: string */) /*: Binding */ { 110 | let searching = path; 111 | 112 | do { 113 | searching = getClosestTypeScope(searching); 114 | let bindings = getOwnTypeBindings(searching); 115 | if (bindings[name]) return bindings[name]; 116 | } while (searching = searching.parentPath); 117 | 118 | return null; 119 | } 120 | 121 | function getClosestTypeScope(path /*: Path */) /*: Path */ { 122 | return path.find(p => isTypeScope(p)); 123 | } 124 | 125 | module.exports = { 126 | isTypeScope, 127 | getClosestTypeScope, 128 | getOwnTypeBindings, 129 | getTypeBinding, 130 | }; 131 | -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | 'use strict'; 3 | 4 | const cases = require('jest-in-case'); 5 | const createBabylonOptions = require('babylon-options'); 6 | const {isTypeScope, getOwnTypeBindings, getTypeBinding} = require('./'); 7 | const babel = require('babel-core'); 8 | 9 | function parse(code, plugins) { 10 | let parserOpts = createBabylonOptions({ 11 | stage: 1, 12 | plugins, 13 | }); 14 | 15 | let file = new babel.File({ 16 | options: { parserOpts }, 17 | passes: [], 18 | }); 19 | 20 | file.addCode(code); 21 | file.parseCode(code); 22 | 23 | return file.path; 24 | } 25 | 26 | function getAllOwnBindings(code, plugins) { 27 | let path = parse(code, plugins); 28 | let scopes = []; 29 | 30 | function visit(path) { 31 | if (isTypeScope(path)) { 32 | let bindings = getOwnTypeBindings(path); 33 | 34 | scopes.push(Object.keys(bindings).map(name => { 35 | return `${name}:${bindings[name].kind}`; 36 | })); 37 | } 38 | } 39 | 40 | visit(path); 41 | 42 | path.traverse({ 43 | enter(path) { 44 | visit(path); 45 | }, 46 | }); 47 | 48 | return scopes; 49 | } 50 | 51 | cases('getOwnBindings()', opts => { 52 | expect(getAllOwnBindings(opts.code, opts.plugins)).toEqual(opts.scopes); 53 | }, [{ 54 | name: 'flow import type', 55 | plugins: ['flow'], 56 | code: 'import type a from "mod";', 57 | scopes: [['a:import']], 58 | }, { 59 | name: 'flow import {type}', 60 | plugins: ['flow'], 61 | code: 'import {type a} from "mod";', 62 | scopes: [['a:import']], 63 | }, { 64 | name: 'flow import typeof', 65 | plugins: ['flow'], 66 | code: 'import typeof a from "mod";', 67 | scopes: [['a:import']], 68 | }, { 69 | name: 'flow import {typeof}', 70 | plugins: ['flow'], 71 | code: 'import {typeof a} from "mod";', 72 | scopes: [['a:import']], 73 | }, { 74 | name: 'flow type alias', 75 | plugins: ['flow'], 76 | code: 'type a = {};', 77 | scopes: [['a:declaration'], []], 78 | }, { 79 | name: 'flow interface declaration', 80 | plugins: ['flow'], 81 | code: 'interface a {}', 82 | scopes: [['a:declaration'], []], 83 | }, { 84 | name: 'flow class declaration', 85 | plugins: ['flow'], 86 | code: 'class a {}', 87 | scopes: [['a:declaration'], []], 88 | }, { 89 | name: 'flow type alias params', 90 | plugins: ['flow'], 91 | code: 'type a = {};', 92 | scopes: [['a:declaration'], ['b:param']], 93 | }, { 94 | name: 'flow interface params', 95 | plugins: ['flow'], 96 | code: 'interface a {}', 97 | scopes: [['a:declaration'], ['b:param']], 98 | }, { 99 | name: 'flow class params', 100 | plugins: ['flow'], 101 | code: 'class a {}', 102 | scopes: [['a:declaration'], ['b:param']], 103 | }, { 104 | name: 'flow function params', 105 | plugins: ['flow'], 106 | code: 'function a() {}', 107 | scopes: [[], ['b:param']], 108 | }, { 109 | name: 'flow type alias params', 110 | plugins: ['flow'], 111 | code: 'type a = {};', 112 | scopes: [['a:declaration'], ['b:param']], 113 | }, { 114 | name: 'flow class expression', 115 | plugins: ['flow'], 116 | code: 'let a = class b {}', 117 | scopes: [[], ['b:expression']], 118 | }, { 119 | name: 'flow class without id', 120 | plugins: ['flow'], 121 | code: 'let a = class {}', 122 | scopes: [[], []], 123 | }, { 124 | name: 'typescript type alias', 125 | plugins: ['typescript'], 126 | code: 'type a = {};', 127 | scopes: [['a:declaration'], []], 128 | }, { 129 | name: 'typescript interface params', 130 | plugins: ['typescript'], 131 | code: 'interface a {}', 132 | scopes: [['a:declaration'], ['b:param']], 133 | }, { 134 | name: 'typescript class params', 135 | plugins: ['typescript'], 136 | code: 'class a {}', 137 | scopes: [['a:declaration'], ['b:param']], 138 | }, { 139 | name: 'typescript function params', 140 | plugins: ['typescript'], 141 | code: 'function a() {}', 142 | scopes: [[], ['b:param']], 143 | }, { 144 | name: 'typescript type alias params', 145 | plugins: ['typescript'], 146 | code: 'type a = {};', 147 | scopes: [['a:declaration'], ['b:param']], 148 | }, { 149 | name: 'typescript enum param', 150 | plugins: ['typescript'], 151 | code: 'enum a {}', 152 | scopes: [['a:declaration'], []], 153 | }, { 154 | name: 'typescript class expression', 155 | plugins: ['typescript'], 156 | code: 'let a = class b {}', 157 | scopes: [[], ['b:expression']], 158 | }, { 159 | name: 'typescript class without id', 160 | plugins: ['typescript'], 161 | code: 'let a = class {}', 162 | scopes: [[], []], 163 | }]); 164 | 165 | function searchForBinding(code, plugins) { 166 | let path = parse(code, plugins); 167 | let binding; 168 | 169 | path.traverse({ 170 | Identifier(path) { 171 | if (path.node.name === 'START') { 172 | binding = getTypeBinding(path, 'END'); 173 | } 174 | }, 175 | }); 176 | 177 | return binding; 178 | } 179 | 180 | cases('getTypeBinding()', opts => { 181 | let binding = searchForBinding(opts.code, opts.plugins); 182 | expect(!!binding).toBe(opts.found); 183 | }, [{ 184 | name: 'own scope', 185 | plugins: ['flow'], 186 | code: 'type END = 1; START;', 187 | found: true, 188 | }, { 189 | name: 'flow nested scope', 190 | plugins: ['flow'], 191 | code: 'type END = 1; function a() { START; }', 192 | found: true, 193 | }, { 194 | name: 'flow deep nested scope', 195 | plugins: ['flow'], 196 | code: 'type END = 1; function a() { function a() { START; } }', 197 | found: true, 198 | }, { 199 | name: 'flow sibling scope', 200 | plugins: ['flow'], 201 | code: 'function a() { type END = 1; } function b() { START; }', 202 | found: false, 203 | }, { 204 | name: 'flow parent scope', 205 | plugins: ['flow'], 206 | code: 'START; function a() { type END = 1; }', 207 | found: false, 208 | }, { 209 | name: 'typescript own scope', 210 | plugins: ['typescript'], 211 | code: 'type END = 1; START;', 212 | found: true, 213 | }, { 214 | name: 'typescript nested scope', 215 | plugins: ['typescript'], 216 | code: 'type END = 1; function a() { START; }', 217 | found: true, 218 | }, { 219 | name: 'typescript deep nested scope', 220 | plugins: ['typescript'], 221 | code: 'type END = 1; function a() { function a() { START; } }', 222 | found: true, 223 | }, { 224 | name: 'typescript sibling scope', 225 | plugins: ['typescript'], 226 | code: 'function a() { type END = 1; } function b() { START; }', 227 | found: false, 228 | }, { 229 | name: 'typescript parent scope', 230 | plugins: ['typescript'], 231 | code: 'START; function a() { type END = 1; }', 232 | found: false, 233 | }]); 234 | -------------------------------------------------------------------------------- /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, ansi-styles@^3.1.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@7.0.0-alpha.20: 132 | version "7.0.0-alpha.20" 133 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-7.0.0-alpha.20.tgz#b821248e62d61167c3fb6b4f9523820f5bb82c47" 134 | dependencies: 135 | chalk "^2.0.0" 136 | esutils "^2.0.2" 137 | js-tokens "^3.0.0" 138 | 139 | babel-code-frame@^6.26.0: 140 | version "6.26.0" 141 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 142 | dependencies: 143 | chalk "^1.1.3" 144 | esutils "^2.0.2" 145 | js-tokens "^3.0.2" 146 | 147 | babel-core@^6.0.0, babel-core@^6.26.0: 148 | version "6.26.0" 149 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 150 | dependencies: 151 | babel-code-frame "^6.26.0" 152 | babel-generator "^6.26.0" 153 | babel-helpers "^6.24.1" 154 | babel-messages "^6.23.0" 155 | babel-register "^6.26.0" 156 | babel-runtime "^6.26.0" 157 | babel-template "^6.26.0" 158 | babel-traverse "^6.26.0" 159 | babel-types "^6.26.0" 160 | babylon "^6.18.0" 161 | convert-source-map "^1.5.0" 162 | debug "^2.6.8" 163 | json5 "^0.5.1" 164 | lodash "^4.17.4" 165 | minimatch "^3.0.4" 166 | path-is-absolute "^1.0.1" 167 | private "^0.1.7" 168 | slash "^1.0.0" 169 | source-map "^0.5.6" 170 | 171 | babel-core@^7.0.0-alpha.19: 172 | version "7.0.0-alpha.20" 173 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-7.0.0-alpha.20.tgz#699f0881bb7f46111323fe23778f78055362e6e1" 174 | dependencies: 175 | babel-code-frame "7.0.0-alpha.20" 176 | babel-generator "7.0.0-alpha.20" 177 | babel-helpers "7.0.0-alpha.20" 178 | babel-messages "7.0.0-alpha.20" 179 | babel-template "7.0.0-alpha.20" 180 | babel-traverse "7.0.0-alpha.20" 181 | babel-types "7.0.0-alpha.20" 182 | babylon "7.0.0-beta.22" 183 | convert-source-map "^1.1.0" 184 | debug "^2.1.1" 185 | json5 "^0.5.0" 186 | lodash "^4.2.0" 187 | micromatch "^2.3.11" 188 | resolve "^1.3.2" 189 | source-map "^0.5.0" 190 | 191 | babel-flow-types@^1.2.1: 192 | version "1.2.1" 193 | resolved "https://registry.yarnpkg.com/babel-flow-types/-/babel-flow-types-1.2.1.tgz#6da109d0618ae7a030241003dd3697b936684fe0" 194 | 195 | babel-generator@7.0.0-alpha.20: 196 | version "7.0.0-alpha.20" 197 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-7.0.0-alpha.20.tgz#ddb026db3c90213730faaad440b72b077a8f52c5" 198 | dependencies: 199 | babel-messages "7.0.0-alpha.20" 200 | babel-types "7.0.0-alpha.20" 201 | jsesc "^2.5.1" 202 | lodash "^4.2.0" 203 | source-map "^0.5.0" 204 | trim-right "^1.0.1" 205 | 206 | babel-generator@^6.18.0, babel-generator@^6.26.0: 207 | version "6.26.0" 208 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 209 | dependencies: 210 | babel-messages "^6.23.0" 211 | babel-runtime "^6.26.0" 212 | babel-types "^6.26.0" 213 | detect-indent "^4.0.0" 214 | jsesc "^1.3.0" 215 | lodash "^4.17.4" 216 | source-map "^0.5.6" 217 | trim-right "^1.0.1" 218 | 219 | babel-helper-function-name@7.0.0-alpha.20: 220 | version "7.0.0-alpha.20" 221 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-7.0.0-alpha.20.tgz#b560517ad8a6ca3029ac28bf558ef04bbfd8af85" 222 | dependencies: 223 | babel-helper-get-function-arity "7.0.0-alpha.20" 224 | babel-template "7.0.0-alpha.20" 225 | babel-traverse "7.0.0-alpha.20" 226 | babel-types "7.0.0-alpha.20" 227 | 228 | babel-helper-get-function-arity@7.0.0-alpha.20: 229 | version "7.0.0-alpha.20" 230 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-7.0.0-alpha.20.tgz#4e8f598b2ab20e84634038c976ef5ee71c7d79cd" 231 | dependencies: 232 | babel-types "7.0.0-alpha.20" 233 | 234 | babel-helpers@7.0.0-alpha.20: 235 | version "7.0.0-alpha.20" 236 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-7.0.0-alpha.20.tgz#b72e731bdaa0dbfc47acee0047bb3574414b45d4" 237 | dependencies: 238 | babel-template "7.0.0-alpha.20" 239 | 240 | babel-helpers@^6.24.1: 241 | version "6.24.1" 242 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 243 | dependencies: 244 | babel-runtime "^6.22.0" 245 | babel-template "^6.24.1" 246 | 247 | babel-jest@^20.0.3: 248 | version "20.0.3" 249 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-20.0.3.tgz#e4a03b13dc10389e140fc645d09ffc4ced301671" 250 | dependencies: 251 | babel-core "^6.0.0" 252 | babel-plugin-istanbul "^4.0.0" 253 | babel-preset-jest "^20.0.3" 254 | 255 | babel-messages@7.0.0-alpha.20: 256 | version "7.0.0-alpha.20" 257 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-7.0.0-alpha.20.tgz#bba0ade0a6bced2e9e4cd4f42665b44ad9223f0f" 258 | 259 | babel-messages@^6.23.0: 260 | version "6.23.0" 261 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 262 | dependencies: 263 | babel-runtime "^6.22.0" 264 | 265 | babel-plugin-istanbul@^4.0.0: 266 | version "4.1.4" 267 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.4.tgz#18dde84bf3ce329fddf3f4103fae921456d8e587" 268 | dependencies: 269 | find-up "^2.1.0" 270 | istanbul-lib-instrument "^1.7.2" 271 | test-exclude "^4.1.1" 272 | 273 | babel-plugin-jest-hoist@^20.0.3: 274 | version "20.0.3" 275 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-20.0.3.tgz#afedc853bd3f8dc3548ea671fbe69d03cc2c1767" 276 | 277 | babel-preset-jest@^20.0.3: 278 | version "20.0.3" 279 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-20.0.3.tgz#cbacaadecb5d689ca1e1de1360ebfc66862c178a" 280 | dependencies: 281 | babel-plugin-jest-hoist "^20.0.3" 282 | 283 | babel-register@^6.26.0: 284 | version "6.26.0" 285 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 286 | dependencies: 287 | babel-core "^6.26.0" 288 | babel-runtime "^6.26.0" 289 | core-js "^2.5.0" 290 | home-or-tmp "^2.0.0" 291 | lodash "^4.17.4" 292 | mkdirp "^0.5.1" 293 | source-map-support "^0.4.15" 294 | 295 | babel-runtime@^6.22.0, babel-runtime@^6.26.0: 296 | version "6.26.0" 297 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 298 | dependencies: 299 | core-js "^2.4.0" 300 | regenerator-runtime "^0.11.0" 301 | 302 | babel-template@7.0.0-alpha.20: 303 | version "7.0.0-alpha.20" 304 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-7.0.0-alpha.20.tgz#2ddab1b03a9eb8a98e7f9920cb4dc1816430db80" 305 | dependencies: 306 | babel-traverse "7.0.0-alpha.20" 307 | babel-types "7.0.0-alpha.20" 308 | babylon "7.0.0-beta.22" 309 | lodash "^4.2.0" 310 | 311 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0: 312 | version "6.26.0" 313 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 314 | dependencies: 315 | babel-runtime "^6.26.0" 316 | babel-traverse "^6.26.0" 317 | babel-types "^6.26.0" 318 | babylon "^6.18.0" 319 | lodash "^4.17.4" 320 | 321 | babel-traverse@7.0.0-alpha.20: 322 | version "7.0.0-alpha.20" 323 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-7.0.0-alpha.20.tgz#f11f15ad4db4d911880ea241fed1c5643bbfa377" 324 | dependencies: 325 | babel-code-frame "7.0.0-alpha.20" 326 | babel-helper-function-name "7.0.0-alpha.20" 327 | babel-messages "7.0.0-alpha.20" 328 | babel-types "7.0.0-alpha.20" 329 | babylon "7.0.0-beta.22" 330 | debug "^2.2.0" 331 | globals "^10.0.0" 332 | invariant "^2.2.0" 333 | lodash "^4.2.0" 334 | 335 | babel-traverse@^6.18.0, babel-traverse@^6.26.0: 336 | version "6.26.0" 337 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 338 | dependencies: 339 | babel-code-frame "^6.26.0" 340 | babel-messages "^6.23.0" 341 | babel-runtime "^6.26.0" 342 | babel-types "^6.26.0" 343 | babylon "^6.18.0" 344 | debug "^2.6.8" 345 | globals "^9.18.0" 346 | invariant "^2.2.2" 347 | lodash "^4.17.4" 348 | 349 | babel-types@7.0.0-alpha.20: 350 | version "7.0.0-alpha.20" 351 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-7.0.0-alpha.20.tgz#1c1ae1068b61360fbacd1a52a63bccc96d80da8f" 352 | dependencies: 353 | esutils "^2.0.2" 354 | lodash "^4.2.0" 355 | to-fast-properties "^2.0.0" 356 | 357 | babel-types@^6.18.0, babel-types@^6.26.0: 358 | version "6.26.0" 359 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 360 | dependencies: 361 | babel-runtime "^6.26.0" 362 | esutils "^2.0.2" 363 | lodash "^4.17.4" 364 | to-fast-properties "^1.0.3" 365 | 366 | babylon-options@^1.1.2: 367 | version "1.1.2" 368 | resolved "https://registry.yarnpkg.com/babylon-options/-/babylon-options-1.1.2.tgz#e38c23117841d5f032dddcba637540842c8e1137" 369 | 370 | babylon@7.0.0-beta.22: 371 | version "7.0.0-beta.22" 372 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-7.0.0-beta.22.tgz#74f0ad82ed7c7c3cfeab74cf684f815104161b65" 373 | 374 | babylon@^6.17.4, babylon@^6.18.0: 375 | version "6.18.0" 376 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 377 | 378 | balanced-match@^1.0.0: 379 | version "1.0.0" 380 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 381 | 382 | bcrypt-pbkdf@^1.0.0: 383 | version "1.0.1" 384 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 385 | dependencies: 386 | tweetnacl "^0.14.3" 387 | 388 | boom@2.x.x: 389 | version "2.10.1" 390 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 391 | dependencies: 392 | hoek "2.x.x" 393 | 394 | brace-expansion@^1.1.7: 395 | version "1.1.8" 396 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 397 | dependencies: 398 | balanced-match "^1.0.0" 399 | concat-map "0.0.1" 400 | 401 | braces@^1.8.2: 402 | version "1.8.5" 403 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 404 | dependencies: 405 | expand-range "^1.8.1" 406 | preserve "^0.2.0" 407 | repeat-element "^1.1.2" 408 | 409 | browser-resolve@^1.11.2: 410 | version "1.11.2" 411 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 412 | dependencies: 413 | resolve "1.1.7" 414 | 415 | bser@1.0.2: 416 | version "1.0.2" 417 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" 418 | dependencies: 419 | node-int64 "^0.4.0" 420 | 421 | bser@^2.0.0: 422 | version "2.0.0" 423 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 424 | dependencies: 425 | node-int64 "^0.4.0" 426 | 427 | builtin-modules@^1.0.0: 428 | version "1.1.1" 429 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 430 | 431 | callsites@^2.0.0: 432 | version "2.0.0" 433 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 434 | 435 | camelcase@^1.0.2: 436 | version "1.2.1" 437 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 438 | 439 | camelcase@^3.0.0: 440 | version "3.0.0" 441 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 442 | 443 | caseless@~0.12.0: 444 | version "0.12.0" 445 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 446 | 447 | center-align@^0.1.1: 448 | version "0.1.3" 449 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 450 | dependencies: 451 | align-text "^0.1.3" 452 | lazy-cache "^1.0.3" 453 | 454 | chalk@^1.1.3: 455 | version "1.1.3" 456 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 457 | dependencies: 458 | ansi-styles "^2.2.1" 459 | escape-string-regexp "^1.0.2" 460 | has-ansi "^2.0.0" 461 | strip-ansi "^3.0.0" 462 | supports-color "^2.0.0" 463 | 464 | chalk@^2.0.0: 465 | version "2.1.0" 466 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.1.0.tgz#ac5becf14fa21b99c6c92ca7a7d7cfd5b17e743e" 467 | dependencies: 468 | ansi-styles "^3.1.0" 469 | escape-string-regexp "^1.0.5" 470 | supports-color "^4.0.0" 471 | 472 | ci-info@^1.0.0: 473 | version "1.0.0" 474 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 475 | 476 | cliui@^2.1.0: 477 | version "2.1.0" 478 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 479 | dependencies: 480 | center-align "^0.1.1" 481 | right-align "^0.1.1" 482 | wordwrap "0.0.2" 483 | 484 | cliui@^3.2.0: 485 | version "3.2.0" 486 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 487 | dependencies: 488 | string-width "^1.0.1" 489 | strip-ansi "^3.0.1" 490 | wrap-ansi "^2.0.0" 491 | 492 | co@^4.6.0: 493 | version "4.6.0" 494 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 495 | 496 | code-point-at@^1.0.0: 497 | version "1.1.0" 498 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 499 | 500 | color-convert@^1.9.0: 501 | version "1.9.0" 502 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 503 | dependencies: 504 | color-name "^1.1.1" 505 | 506 | color-name@^1.1.1: 507 | version "1.1.3" 508 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 509 | 510 | combined-stream@^1.0.5, combined-stream@~1.0.5: 511 | version "1.0.5" 512 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 513 | dependencies: 514 | delayed-stream "~1.0.0" 515 | 516 | concat-map@0.0.1: 517 | version "0.0.1" 518 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 519 | 520 | content-type-parser@^1.0.1: 521 | version "1.0.1" 522 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 523 | 524 | convert-source-map@^1.1.0, convert-source-map@^1.4.0, convert-source-map@^1.5.0: 525 | version "1.5.0" 526 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 527 | 528 | core-js@^2.4.0, core-js@^2.5.0: 529 | version "2.5.0" 530 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.0.tgz#569c050918be6486b3837552028ae0466b717086" 531 | 532 | core-util-is@1.0.2: 533 | version "1.0.2" 534 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 535 | 536 | cryptiles@2.x.x: 537 | version "2.0.5" 538 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 539 | dependencies: 540 | boom "2.x.x" 541 | 542 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 543 | version "0.3.2" 544 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 545 | 546 | "cssstyle@>= 0.2.37 < 0.3.0": 547 | version "0.2.37" 548 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 549 | dependencies: 550 | cssom "0.3.x" 551 | 552 | dashdash@^1.12.0: 553 | version "1.14.1" 554 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 555 | dependencies: 556 | assert-plus "^1.0.0" 557 | 558 | debug@^2.1.1, debug@^2.2.0, debug@^2.6.3, debug@^2.6.8: 559 | version "2.6.8" 560 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 561 | dependencies: 562 | ms "2.0.0" 563 | 564 | decamelize@^1.0.0, decamelize@^1.1.1: 565 | version "1.2.0" 566 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 567 | 568 | deep-is@~0.1.3: 569 | version "0.1.3" 570 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 571 | 572 | default-require-extensions@^1.0.0: 573 | version "1.0.0" 574 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 575 | dependencies: 576 | strip-bom "^2.0.0" 577 | 578 | delayed-stream@~1.0.0: 579 | version "1.0.0" 580 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 581 | 582 | detect-indent@^4.0.0: 583 | version "4.0.0" 584 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 585 | dependencies: 586 | repeating "^2.0.0" 587 | 588 | diff@^3.2.0: 589 | version "3.3.0" 590 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.3.0.tgz#056695150d7aa93237ca7e378ac3b1682b7963b9" 591 | 592 | ecc-jsbn@~0.1.1: 593 | version "0.1.1" 594 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 595 | dependencies: 596 | jsbn "~0.1.0" 597 | 598 | errno@^0.1.4: 599 | version "0.1.4" 600 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 601 | dependencies: 602 | prr "~0.0.0" 603 | 604 | error-ex@^1.2.0: 605 | version "1.3.1" 606 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 607 | dependencies: 608 | is-arrayish "^0.2.1" 609 | 610 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 611 | version "1.0.5" 612 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 613 | 614 | escodegen@^1.6.1: 615 | version "1.8.1" 616 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 617 | dependencies: 618 | esprima "^2.7.1" 619 | estraverse "^1.9.1" 620 | esutils "^2.0.2" 621 | optionator "^0.8.1" 622 | optionalDependencies: 623 | source-map "~0.2.0" 624 | 625 | esprima@^2.7.1: 626 | version "2.7.3" 627 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 628 | 629 | esprima@^4.0.0: 630 | version "4.0.0" 631 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 632 | 633 | estraverse@^1.9.1: 634 | version "1.9.3" 635 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 636 | 637 | esutils@^2.0.2: 638 | version "2.0.2" 639 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 640 | 641 | exec-sh@^0.2.0: 642 | version "0.2.0" 643 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" 644 | dependencies: 645 | merge "^1.1.3" 646 | 647 | expand-brackets@^0.1.4: 648 | version "0.1.5" 649 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 650 | dependencies: 651 | is-posix-bracket "^0.1.0" 652 | 653 | expand-range@^1.8.1: 654 | version "1.8.2" 655 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 656 | dependencies: 657 | fill-range "^2.1.0" 658 | 659 | extend@~3.0.0: 660 | version "3.0.1" 661 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 662 | 663 | extglob@^0.3.1: 664 | version "0.3.2" 665 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 666 | dependencies: 667 | is-extglob "^1.0.0" 668 | 669 | extsprintf@1.3.0, extsprintf@^1.2.0: 670 | version "1.3.0" 671 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 672 | 673 | fast-levenshtein@~2.0.4: 674 | version "2.0.6" 675 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 676 | 677 | fb-watchman@^1.8.0: 678 | version "1.9.2" 679 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383" 680 | dependencies: 681 | bser "1.0.2" 682 | 683 | fb-watchman@^2.0.0: 684 | version "2.0.0" 685 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 686 | dependencies: 687 | bser "^2.0.0" 688 | 689 | filename-regex@^2.0.0: 690 | version "2.0.1" 691 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 692 | 693 | fileset@^2.0.2: 694 | version "2.0.3" 695 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 696 | dependencies: 697 | glob "^7.0.3" 698 | minimatch "^3.0.3" 699 | 700 | fill-range@^2.1.0: 701 | version "2.2.3" 702 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 703 | dependencies: 704 | is-number "^2.1.0" 705 | isobject "^2.0.0" 706 | randomatic "^1.1.3" 707 | repeat-element "^1.1.2" 708 | repeat-string "^1.5.2" 709 | 710 | find-up@^1.0.0: 711 | version "1.1.2" 712 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 713 | dependencies: 714 | path-exists "^2.0.0" 715 | pinkie-promise "^2.0.0" 716 | 717 | find-up@^2.1.0: 718 | version "2.1.0" 719 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 720 | dependencies: 721 | locate-path "^2.0.0" 722 | 723 | flow-bin@^0.53.1: 724 | version "0.53.1" 725 | resolved "https://registry.yarnpkg.com/flow-bin/-/flow-bin-0.53.1.tgz#9b22b63a23c99763ae533ebbab07f88c88c97d84" 726 | 727 | for-in@^1.0.1: 728 | version "1.0.2" 729 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 730 | 731 | for-own@^0.1.4: 732 | version "0.1.5" 733 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 734 | dependencies: 735 | for-in "^1.0.1" 736 | 737 | forever-agent@~0.6.1: 738 | version "0.6.1" 739 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 740 | 741 | form-data@~2.1.1: 742 | version "2.1.4" 743 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 744 | dependencies: 745 | asynckit "^0.4.0" 746 | combined-stream "^1.0.5" 747 | mime-types "^2.1.12" 748 | 749 | fs.realpath@^1.0.0: 750 | version "1.0.0" 751 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 752 | 753 | get-caller-file@^1.0.1: 754 | version "1.0.2" 755 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 756 | 757 | getpass@^0.1.1: 758 | version "0.1.7" 759 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 760 | dependencies: 761 | assert-plus "^1.0.0" 762 | 763 | glob-base@^0.3.0: 764 | version "0.3.0" 765 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 766 | dependencies: 767 | glob-parent "^2.0.0" 768 | is-glob "^2.0.0" 769 | 770 | glob-parent@^2.0.0: 771 | version "2.0.0" 772 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 773 | dependencies: 774 | is-glob "^2.0.0" 775 | 776 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.1: 777 | version "7.1.2" 778 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 779 | dependencies: 780 | fs.realpath "^1.0.0" 781 | inflight "^1.0.4" 782 | inherits "2" 783 | minimatch "^3.0.4" 784 | once "^1.3.0" 785 | path-is-absolute "^1.0.0" 786 | 787 | globals@^10.0.0: 788 | version "10.1.0" 789 | resolved "https://registry.yarnpkg.com/globals/-/globals-10.1.0.tgz#4425a1881be0d336b4a823a82a7be725d5dd987c" 790 | 791 | globals@^9.18.0: 792 | version "9.18.0" 793 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 794 | 795 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 796 | version "4.1.11" 797 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 798 | 799 | growly@^1.3.0: 800 | version "1.3.0" 801 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 802 | 803 | handlebars@^4.0.3: 804 | version "4.0.10" 805 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.10.tgz#3d30c718b09a3d96f23ea4cc1f403c4d3ba9ff4f" 806 | dependencies: 807 | async "^1.4.0" 808 | optimist "^0.6.1" 809 | source-map "^0.4.4" 810 | optionalDependencies: 811 | uglify-js "^2.6" 812 | 813 | har-schema@^1.0.5: 814 | version "1.0.5" 815 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 816 | 817 | har-validator@~4.2.1: 818 | version "4.2.1" 819 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 820 | dependencies: 821 | ajv "^4.9.1" 822 | har-schema "^1.0.5" 823 | 824 | has-ansi@^2.0.0: 825 | version "2.0.0" 826 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 827 | dependencies: 828 | ansi-regex "^2.0.0" 829 | 830 | has-flag@^1.0.0: 831 | version "1.0.0" 832 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 833 | 834 | has-flag@^2.0.0: 835 | version "2.0.0" 836 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 837 | 838 | hawk@~3.1.3: 839 | version "3.1.3" 840 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 841 | dependencies: 842 | boom "2.x.x" 843 | cryptiles "2.x.x" 844 | hoek "2.x.x" 845 | sntp "1.x.x" 846 | 847 | hoek@2.x.x: 848 | version "2.16.3" 849 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 850 | 851 | home-or-tmp@^2.0.0: 852 | version "2.0.0" 853 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 854 | dependencies: 855 | os-homedir "^1.0.0" 856 | os-tmpdir "^1.0.1" 857 | 858 | hosted-git-info@^2.1.4: 859 | version "2.5.0" 860 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 861 | 862 | html-encoding-sniffer@^1.0.1: 863 | version "1.0.1" 864 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 865 | dependencies: 866 | whatwg-encoding "^1.0.1" 867 | 868 | http-signature@~1.1.0: 869 | version "1.1.1" 870 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 871 | dependencies: 872 | assert-plus "^0.2.0" 873 | jsprim "^1.2.2" 874 | sshpk "^1.7.0" 875 | 876 | iconv-lite@0.4.13: 877 | version "0.4.13" 878 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 879 | 880 | inflight@^1.0.4: 881 | version "1.0.6" 882 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 883 | dependencies: 884 | once "^1.3.0" 885 | wrappy "1" 886 | 887 | inherits@2: 888 | version "2.0.3" 889 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 890 | 891 | invariant@^2.2.0, invariant@^2.2.2: 892 | version "2.2.2" 893 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 894 | dependencies: 895 | loose-envify "^1.0.0" 896 | 897 | invert-kv@^1.0.0: 898 | version "1.0.0" 899 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 900 | 901 | is-arrayish@^0.2.1: 902 | version "0.2.1" 903 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 904 | 905 | is-buffer@^1.1.5: 906 | version "1.1.5" 907 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 908 | 909 | is-builtin-module@^1.0.0: 910 | version "1.0.0" 911 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 912 | dependencies: 913 | builtin-modules "^1.0.0" 914 | 915 | is-ci@^1.0.10: 916 | version "1.0.10" 917 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 918 | dependencies: 919 | ci-info "^1.0.0" 920 | 921 | is-dotfile@^1.0.0: 922 | version "1.0.3" 923 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 924 | 925 | is-equal-shallow@^0.1.3: 926 | version "0.1.3" 927 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 928 | dependencies: 929 | is-primitive "^2.0.0" 930 | 931 | is-extendable@^0.1.1: 932 | version "0.1.1" 933 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 934 | 935 | is-extglob@^1.0.0: 936 | version "1.0.0" 937 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 938 | 939 | is-finite@^1.0.0: 940 | version "1.0.2" 941 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 942 | dependencies: 943 | number-is-nan "^1.0.0" 944 | 945 | is-fullwidth-code-point@^1.0.0: 946 | version "1.0.0" 947 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 948 | dependencies: 949 | number-is-nan "^1.0.0" 950 | 951 | is-glob@^2.0.0, is-glob@^2.0.1: 952 | version "2.0.1" 953 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 954 | dependencies: 955 | is-extglob "^1.0.0" 956 | 957 | is-number@^2.1.0: 958 | version "2.1.0" 959 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 960 | dependencies: 961 | kind-of "^3.0.2" 962 | 963 | is-number@^3.0.0: 964 | version "3.0.0" 965 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 966 | dependencies: 967 | kind-of "^3.0.2" 968 | 969 | is-posix-bracket@^0.1.0: 970 | version "0.1.1" 971 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 972 | 973 | is-primitive@^2.0.0: 974 | version "2.0.0" 975 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 976 | 977 | is-typedarray@~1.0.0: 978 | version "1.0.0" 979 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 980 | 981 | is-utf8@^0.2.0: 982 | version "0.2.1" 983 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 984 | 985 | isarray@1.0.0: 986 | version "1.0.0" 987 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 988 | 989 | isexe@^2.0.0: 990 | version "2.0.0" 991 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 992 | 993 | isobject@^2.0.0: 994 | version "2.1.0" 995 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 996 | dependencies: 997 | isarray "1.0.0" 998 | 999 | isstream@~0.1.2: 1000 | version "0.1.2" 1001 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1002 | 1003 | istanbul-api@^1.1.1: 1004 | version "1.1.13" 1005 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.13.tgz#7197f64413600ebdfec6347a2dc3d4e03f97ed5a" 1006 | dependencies: 1007 | async "^2.1.4" 1008 | fileset "^2.0.2" 1009 | istanbul-lib-coverage "^1.1.1" 1010 | istanbul-lib-hook "^1.0.7" 1011 | istanbul-lib-instrument "^1.7.5" 1012 | istanbul-lib-report "^1.1.1" 1013 | istanbul-lib-source-maps "^1.2.1" 1014 | istanbul-reports "^1.1.2" 1015 | js-yaml "^3.7.0" 1016 | mkdirp "^0.5.1" 1017 | once "^1.4.0" 1018 | 1019 | istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.1.1: 1020 | version "1.1.1" 1021 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" 1022 | 1023 | istanbul-lib-hook@^1.0.7: 1024 | version "1.0.7" 1025 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.7.tgz#dd6607f03076578fe7d6f2a630cf143b49bacddc" 1026 | dependencies: 1027 | append-transform "^0.4.0" 1028 | 1029 | istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.7.2, istanbul-lib-instrument@^1.7.5: 1030 | version "1.7.5" 1031 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.5.tgz#adb596f8f0cb8b95e739206351a38a586af21b1e" 1032 | dependencies: 1033 | babel-generator "^6.18.0" 1034 | babel-template "^6.16.0" 1035 | babel-traverse "^6.18.0" 1036 | babel-types "^6.18.0" 1037 | babylon "^6.17.4" 1038 | istanbul-lib-coverage "^1.1.1" 1039 | semver "^5.3.0" 1040 | 1041 | istanbul-lib-report@^1.1.1: 1042 | version "1.1.1" 1043 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#f0e55f56655ffa34222080b7a0cd4760e1405fc9" 1044 | dependencies: 1045 | istanbul-lib-coverage "^1.1.1" 1046 | mkdirp "^0.5.1" 1047 | path-parse "^1.0.5" 1048 | supports-color "^3.1.2" 1049 | 1050 | istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.1: 1051 | version "1.2.1" 1052 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.1.tgz#a6fe1acba8ce08eebc638e572e294d267008aa0c" 1053 | dependencies: 1054 | debug "^2.6.3" 1055 | istanbul-lib-coverage "^1.1.1" 1056 | mkdirp "^0.5.1" 1057 | rimraf "^2.6.1" 1058 | source-map "^0.5.3" 1059 | 1060 | istanbul-reports@^1.1.2: 1061 | version "1.1.2" 1062 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.2.tgz#0fb2e3f6aa9922bd3ce45d05d8ab4d5e8e07bd4f" 1063 | dependencies: 1064 | handlebars "^4.0.3" 1065 | 1066 | jest-changed-files@^20.0.3: 1067 | version "20.0.3" 1068 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-20.0.3.tgz#9394d5cc65c438406149bef1bf4d52b68e03e3f8" 1069 | 1070 | jest-cli@^20.0.4: 1071 | version "20.0.4" 1072 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-20.0.4.tgz#e532b19d88ae5bc6c417e8b0593a6fe954b1dc93" 1073 | dependencies: 1074 | ansi-escapes "^1.4.0" 1075 | callsites "^2.0.0" 1076 | chalk "^1.1.3" 1077 | graceful-fs "^4.1.11" 1078 | is-ci "^1.0.10" 1079 | istanbul-api "^1.1.1" 1080 | istanbul-lib-coverage "^1.0.1" 1081 | istanbul-lib-instrument "^1.4.2" 1082 | istanbul-lib-source-maps "^1.1.0" 1083 | jest-changed-files "^20.0.3" 1084 | jest-config "^20.0.4" 1085 | jest-docblock "^20.0.3" 1086 | jest-environment-jsdom "^20.0.3" 1087 | jest-haste-map "^20.0.4" 1088 | jest-jasmine2 "^20.0.4" 1089 | jest-message-util "^20.0.3" 1090 | jest-regex-util "^20.0.3" 1091 | jest-resolve-dependencies "^20.0.3" 1092 | jest-runtime "^20.0.4" 1093 | jest-snapshot "^20.0.3" 1094 | jest-util "^20.0.3" 1095 | micromatch "^2.3.11" 1096 | node-notifier "^5.0.2" 1097 | pify "^2.3.0" 1098 | slash "^1.0.0" 1099 | string-length "^1.0.1" 1100 | throat "^3.0.0" 1101 | which "^1.2.12" 1102 | worker-farm "^1.3.1" 1103 | yargs "^7.0.2" 1104 | 1105 | jest-config@^20.0.4: 1106 | version "20.0.4" 1107 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-20.0.4.tgz#e37930ab2217c913605eff13e7bd763ec48faeea" 1108 | dependencies: 1109 | chalk "^1.1.3" 1110 | glob "^7.1.1" 1111 | jest-environment-jsdom "^20.0.3" 1112 | jest-environment-node "^20.0.3" 1113 | jest-jasmine2 "^20.0.4" 1114 | jest-matcher-utils "^20.0.3" 1115 | jest-regex-util "^20.0.3" 1116 | jest-resolve "^20.0.4" 1117 | jest-validate "^20.0.3" 1118 | pretty-format "^20.0.3" 1119 | 1120 | jest-diff@^20.0.3: 1121 | version "20.0.3" 1122 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-20.0.3.tgz#81f288fd9e675f0fb23c75f1c2b19445fe586617" 1123 | dependencies: 1124 | chalk "^1.1.3" 1125 | diff "^3.2.0" 1126 | jest-matcher-utils "^20.0.3" 1127 | pretty-format "^20.0.3" 1128 | 1129 | jest-docblock@^20.0.3: 1130 | version "20.0.3" 1131 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-20.0.3.tgz#17bea984342cc33d83c50fbe1545ea0efaa44712" 1132 | 1133 | jest-environment-jsdom@^20.0.3: 1134 | version "20.0.3" 1135 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-20.0.3.tgz#048a8ac12ee225f7190417713834bb999787de99" 1136 | dependencies: 1137 | jest-mock "^20.0.3" 1138 | jest-util "^20.0.3" 1139 | jsdom "^9.12.0" 1140 | 1141 | jest-environment-node@^20.0.3: 1142 | version "20.0.3" 1143 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-20.0.3.tgz#d488bc4612af2c246e986e8ae7671a099163d403" 1144 | dependencies: 1145 | jest-mock "^20.0.3" 1146 | jest-util "^20.0.3" 1147 | 1148 | jest-haste-map@^20.0.4: 1149 | version "20.0.5" 1150 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-20.0.5.tgz#abad74efb1a005974a7b6517e11010709cab9112" 1151 | dependencies: 1152 | fb-watchman "^2.0.0" 1153 | graceful-fs "^4.1.11" 1154 | jest-docblock "^20.0.3" 1155 | micromatch "^2.3.11" 1156 | sane "~1.6.0" 1157 | worker-farm "^1.3.1" 1158 | 1159 | jest-in-case@^1.0.1: 1160 | version "1.0.1" 1161 | resolved "https://registry.yarnpkg.com/jest-in-case/-/jest-in-case-1.0.1.tgz#57b5e1c105c3849dfb3e82ea8f7073a3c1dd35e6" 1162 | 1163 | jest-jasmine2@^20.0.4: 1164 | version "20.0.4" 1165 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-20.0.4.tgz#fcc5b1411780d911d042902ef1859e852e60d5e1" 1166 | dependencies: 1167 | chalk "^1.1.3" 1168 | graceful-fs "^4.1.11" 1169 | jest-diff "^20.0.3" 1170 | jest-matcher-utils "^20.0.3" 1171 | jest-matchers "^20.0.3" 1172 | jest-message-util "^20.0.3" 1173 | jest-snapshot "^20.0.3" 1174 | once "^1.4.0" 1175 | p-map "^1.1.1" 1176 | 1177 | jest-matcher-utils@^20.0.3: 1178 | version "20.0.3" 1179 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-20.0.3.tgz#b3a6b8e37ca577803b0832a98b164f44b7815612" 1180 | dependencies: 1181 | chalk "^1.1.3" 1182 | pretty-format "^20.0.3" 1183 | 1184 | jest-matchers@^20.0.3: 1185 | version "20.0.3" 1186 | resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-20.0.3.tgz#ca69db1c32db5a6f707fa5e0401abb55700dfd60" 1187 | dependencies: 1188 | jest-diff "^20.0.3" 1189 | jest-matcher-utils "^20.0.3" 1190 | jest-message-util "^20.0.3" 1191 | jest-regex-util "^20.0.3" 1192 | 1193 | jest-message-util@^20.0.3: 1194 | version "20.0.3" 1195 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-20.0.3.tgz#6aec2844306fcb0e6e74d5796c1006d96fdd831c" 1196 | dependencies: 1197 | chalk "^1.1.3" 1198 | micromatch "^2.3.11" 1199 | slash "^1.0.0" 1200 | 1201 | jest-mock@^20.0.3: 1202 | version "20.0.3" 1203 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-20.0.3.tgz#8bc070e90414aa155c11a8d64c869a0d5c71da59" 1204 | 1205 | jest-regex-util@^20.0.3: 1206 | version "20.0.3" 1207 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-20.0.3.tgz#85bbab5d133e44625b19faf8c6aa5122d085d762" 1208 | 1209 | jest-resolve-dependencies@^20.0.3: 1210 | version "20.0.3" 1211 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-20.0.3.tgz#6e14a7b717af0f2cb3667c549de40af017b1723a" 1212 | dependencies: 1213 | jest-regex-util "^20.0.3" 1214 | 1215 | jest-resolve@^20.0.4: 1216 | version "20.0.4" 1217 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-20.0.4.tgz#9448b3e8b6bafc15479444c6499045b7ffe597a5" 1218 | dependencies: 1219 | browser-resolve "^1.11.2" 1220 | is-builtin-module "^1.0.0" 1221 | resolve "^1.3.2" 1222 | 1223 | jest-runtime@^20.0.4: 1224 | version "20.0.4" 1225 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-20.0.4.tgz#a2c802219c4203f754df1404e490186169d124d8" 1226 | dependencies: 1227 | babel-core "^6.0.0" 1228 | babel-jest "^20.0.3" 1229 | babel-plugin-istanbul "^4.0.0" 1230 | chalk "^1.1.3" 1231 | convert-source-map "^1.4.0" 1232 | graceful-fs "^4.1.11" 1233 | jest-config "^20.0.4" 1234 | jest-haste-map "^20.0.4" 1235 | jest-regex-util "^20.0.3" 1236 | jest-resolve "^20.0.4" 1237 | jest-util "^20.0.3" 1238 | json-stable-stringify "^1.0.1" 1239 | micromatch "^2.3.11" 1240 | strip-bom "3.0.0" 1241 | yargs "^7.0.2" 1242 | 1243 | jest-snapshot@^20.0.3: 1244 | version "20.0.3" 1245 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-20.0.3.tgz#5b847e1adb1a4d90852a7f9f125086e187c76566" 1246 | dependencies: 1247 | chalk "^1.1.3" 1248 | jest-diff "^20.0.3" 1249 | jest-matcher-utils "^20.0.3" 1250 | jest-util "^20.0.3" 1251 | natural-compare "^1.4.0" 1252 | pretty-format "^20.0.3" 1253 | 1254 | jest-util@^20.0.3: 1255 | version "20.0.3" 1256 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-20.0.3.tgz#0c07f7d80d82f4e5a67c6f8b9c3fe7f65cfd32ad" 1257 | dependencies: 1258 | chalk "^1.1.3" 1259 | graceful-fs "^4.1.11" 1260 | jest-message-util "^20.0.3" 1261 | jest-mock "^20.0.3" 1262 | jest-validate "^20.0.3" 1263 | leven "^2.1.0" 1264 | mkdirp "^0.5.1" 1265 | 1266 | jest-validate@^20.0.3: 1267 | version "20.0.3" 1268 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-20.0.3.tgz#d0cfd1de4f579f298484925c280f8f1d94ec3cab" 1269 | dependencies: 1270 | chalk "^1.1.3" 1271 | jest-matcher-utils "^20.0.3" 1272 | leven "^2.1.0" 1273 | pretty-format "^20.0.3" 1274 | 1275 | jest@^20.0.4: 1276 | version "20.0.4" 1277 | resolved "https://registry.yarnpkg.com/jest/-/jest-20.0.4.tgz#3dd260c2989d6dad678b1e9cc4d91944f6d602ac" 1278 | dependencies: 1279 | jest-cli "^20.0.4" 1280 | 1281 | js-tokens@^3.0.0, js-tokens@^3.0.2: 1282 | version "3.0.2" 1283 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1284 | 1285 | js-yaml@^3.7.0: 1286 | version "3.9.1" 1287 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.9.1.tgz#08775cebdfdd359209f0d2acd383c8f86a6904a0" 1288 | dependencies: 1289 | argparse "^1.0.7" 1290 | esprima "^4.0.0" 1291 | 1292 | jsbn@~0.1.0: 1293 | version "0.1.1" 1294 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1295 | 1296 | jsdom@^9.12.0: 1297 | version "9.12.0" 1298 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 1299 | dependencies: 1300 | abab "^1.0.3" 1301 | acorn "^4.0.4" 1302 | acorn-globals "^3.1.0" 1303 | array-equal "^1.0.0" 1304 | content-type-parser "^1.0.1" 1305 | cssom ">= 0.3.2 < 0.4.0" 1306 | cssstyle ">= 0.2.37 < 0.3.0" 1307 | escodegen "^1.6.1" 1308 | html-encoding-sniffer "^1.0.1" 1309 | nwmatcher ">= 1.3.9 < 2.0.0" 1310 | parse5 "^1.5.1" 1311 | request "^2.79.0" 1312 | sax "^1.2.1" 1313 | symbol-tree "^3.2.1" 1314 | tough-cookie "^2.3.2" 1315 | webidl-conversions "^4.0.0" 1316 | whatwg-encoding "^1.0.1" 1317 | whatwg-url "^4.3.0" 1318 | xml-name-validator "^2.0.1" 1319 | 1320 | jsesc@^1.3.0: 1321 | version "1.3.0" 1322 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1323 | 1324 | jsesc@^2.5.1: 1325 | version "2.5.1" 1326 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.1.tgz#e421a2a8e20d6b0819df28908f782526b96dd1fe" 1327 | 1328 | json-schema@0.2.3: 1329 | version "0.2.3" 1330 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1331 | 1332 | json-stable-stringify@^1.0.1: 1333 | version "1.0.1" 1334 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1335 | dependencies: 1336 | jsonify "~0.0.0" 1337 | 1338 | json-stringify-safe@~5.0.1: 1339 | version "5.0.1" 1340 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1341 | 1342 | json5@^0.5.0, json5@^0.5.1: 1343 | version "0.5.1" 1344 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1345 | 1346 | jsonify@~0.0.0: 1347 | version "0.0.0" 1348 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1349 | 1350 | jsprim@^1.2.2: 1351 | version "1.4.1" 1352 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1353 | dependencies: 1354 | assert-plus "1.0.0" 1355 | extsprintf "1.3.0" 1356 | json-schema "0.2.3" 1357 | verror "1.10.0" 1358 | 1359 | kind-of@^3.0.2: 1360 | version "3.2.2" 1361 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1362 | dependencies: 1363 | is-buffer "^1.1.5" 1364 | 1365 | kind-of@^4.0.0: 1366 | version "4.0.0" 1367 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1368 | dependencies: 1369 | is-buffer "^1.1.5" 1370 | 1371 | lazy-cache@^1.0.3: 1372 | version "1.0.4" 1373 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1374 | 1375 | lcid@^1.0.0: 1376 | version "1.0.0" 1377 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1378 | dependencies: 1379 | invert-kv "^1.0.0" 1380 | 1381 | leven@^2.1.0: 1382 | version "2.1.0" 1383 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 1384 | 1385 | levn@~0.3.0: 1386 | version "0.3.0" 1387 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1388 | dependencies: 1389 | prelude-ls "~1.1.2" 1390 | type-check "~0.3.2" 1391 | 1392 | load-json-file@^1.0.0: 1393 | version "1.1.0" 1394 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1395 | dependencies: 1396 | graceful-fs "^4.1.2" 1397 | parse-json "^2.2.0" 1398 | pify "^2.0.0" 1399 | pinkie-promise "^2.0.0" 1400 | strip-bom "^2.0.0" 1401 | 1402 | locate-path@^2.0.0: 1403 | version "2.0.0" 1404 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1405 | dependencies: 1406 | p-locate "^2.0.0" 1407 | path-exists "^3.0.0" 1408 | 1409 | lodash@^4.14.0, lodash@^4.17.4, lodash@^4.2.0: 1410 | version "4.17.4" 1411 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1412 | 1413 | longest@^1.0.1: 1414 | version "1.0.1" 1415 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1416 | 1417 | loose-envify@^1.0.0: 1418 | version "1.3.1" 1419 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1420 | dependencies: 1421 | js-tokens "^3.0.0" 1422 | 1423 | makeerror@1.0.x: 1424 | version "1.0.11" 1425 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 1426 | dependencies: 1427 | tmpl "1.0.x" 1428 | 1429 | merge@^1.1.3: 1430 | version "1.2.0" 1431 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 1432 | 1433 | micromatch@^2.1.5, micromatch@^2.3.11: 1434 | version "2.3.11" 1435 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1436 | dependencies: 1437 | arr-diff "^2.0.0" 1438 | array-unique "^0.2.1" 1439 | braces "^1.8.2" 1440 | expand-brackets "^0.1.4" 1441 | extglob "^0.3.1" 1442 | filename-regex "^2.0.0" 1443 | is-extglob "^1.0.0" 1444 | is-glob "^2.0.1" 1445 | kind-of "^3.0.2" 1446 | normalize-path "^2.0.1" 1447 | object.omit "^2.0.0" 1448 | parse-glob "^3.0.4" 1449 | regex-cache "^0.4.2" 1450 | 1451 | mime-db@~1.29.0: 1452 | version "1.29.0" 1453 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.29.0.tgz#48d26d235589651704ac5916ca06001914266878" 1454 | 1455 | mime-types@^2.1.12, mime-types@~2.1.7: 1456 | version "2.1.16" 1457 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.16.tgz#2b858a52e5ecd516db897ac2be87487830698e23" 1458 | dependencies: 1459 | mime-db "~1.29.0" 1460 | 1461 | minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 1462 | version "3.0.4" 1463 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1464 | dependencies: 1465 | brace-expansion "^1.1.7" 1466 | 1467 | minimist@0.0.8: 1468 | version "0.0.8" 1469 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1470 | 1471 | minimist@^1.1.1: 1472 | version "1.2.0" 1473 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1474 | 1475 | minimist@~0.0.1: 1476 | version "0.0.10" 1477 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 1478 | 1479 | mkdirp@^0.5.1: 1480 | version "0.5.1" 1481 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1482 | dependencies: 1483 | minimist "0.0.8" 1484 | 1485 | ms@2.0.0: 1486 | version "2.0.0" 1487 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1488 | 1489 | natural-compare@^1.4.0: 1490 | version "1.4.0" 1491 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1492 | 1493 | node-int64@^0.4.0: 1494 | version "0.4.0" 1495 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 1496 | 1497 | node-notifier@^5.0.2: 1498 | version "5.1.2" 1499 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 1500 | dependencies: 1501 | growly "^1.3.0" 1502 | semver "^5.3.0" 1503 | shellwords "^0.1.0" 1504 | which "^1.2.12" 1505 | 1506 | normalize-package-data@^2.3.2: 1507 | version "2.4.0" 1508 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 1509 | dependencies: 1510 | hosted-git-info "^2.1.4" 1511 | is-builtin-module "^1.0.0" 1512 | semver "2 || 3 || 4 || 5" 1513 | validate-npm-package-license "^3.0.1" 1514 | 1515 | normalize-path@^2.0.0, normalize-path@^2.0.1: 1516 | version "2.1.1" 1517 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1518 | dependencies: 1519 | remove-trailing-separator "^1.0.1" 1520 | 1521 | number-is-nan@^1.0.0: 1522 | version "1.0.1" 1523 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1524 | 1525 | "nwmatcher@>= 1.3.9 < 2.0.0": 1526 | version "1.4.1" 1527 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.1.tgz#7ae9b07b0ea804db7e25f05cb5fe4097d4e4949f" 1528 | 1529 | oauth-sign@~0.8.1: 1530 | version "0.8.2" 1531 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1532 | 1533 | object-assign@^4.1.0: 1534 | version "4.1.1" 1535 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1536 | 1537 | object.omit@^2.0.0: 1538 | version "2.0.1" 1539 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1540 | dependencies: 1541 | for-own "^0.1.4" 1542 | is-extendable "^0.1.1" 1543 | 1544 | once@^1.3.0, once@^1.4.0: 1545 | version "1.4.0" 1546 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1547 | dependencies: 1548 | wrappy "1" 1549 | 1550 | optimist@^0.6.1: 1551 | version "0.6.1" 1552 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 1553 | dependencies: 1554 | minimist "~0.0.1" 1555 | wordwrap "~0.0.2" 1556 | 1557 | optionator@^0.8.1: 1558 | version "0.8.2" 1559 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 1560 | dependencies: 1561 | deep-is "~0.1.3" 1562 | fast-levenshtein "~2.0.4" 1563 | levn "~0.3.0" 1564 | prelude-ls "~1.1.2" 1565 | type-check "~0.3.2" 1566 | wordwrap "~1.0.0" 1567 | 1568 | os-homedir@^1.0.0: 1569 | version "1.0.2" 1570 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1571 | 1572 | os-locale@^1.4.0: 1573 | version "1.4.0" 1574 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 1575 | dependencies: 1576 | lcid "^1.0.0" 1577 | 1578 | os-tmpdir@^1.0.1: 1579 | version "1.0.2" 1580 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1581 | 1582 | p-limit@^1.1.0: 1583 | version "1.1.0" 1584 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 1585 | 1586 | p-locate@^2.0.0: 1587 | version "2.0.0" 1588 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1589 | dependencies: 1590 | p-limit "^1.1.0" 1591 | 1592 | p-map@^1.1.1: 1593 | version "1.1.1" 1594 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.1.1.tgz#05f5e4ae97a068371bc2a5cc86bfbdbc19c4ae7a" 1595 | 1596 | parse-glob@^3.0.4: 1597 | version "3.0.4" 1598 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1599 | dependencies: 1600 | glob-base "^0.3.0" 1601 | is-dotfile "^1.0.0" 1602 | is-extglob "^1.0.0" 1603 | is-glob "^2.0.0" 1604 | 1605 | parse-json@^2.2.0: 1606 | version "2.2.0" 1607 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1608 | dependencies: 1609 | error-ex "^1.2.0" 1610 | 1611 | parse5@^1.5.1: 1612 | version "1.5.1" 1613 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 1614 | 1615 | path-exists@^2.0.0: 1616 | version "2.1.0" 1617 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1618 | dependencies: 1619 | pinkie-promise "^2.0.0" 1620 | 1621 | path-exists@^3.0.0: 1622 | version "3.0.0" 1623 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1624 | 1625 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 1626 | version "1.0.1" 1627 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1628 | 1629 | path-parse@^1.0.5: 1630 | version "1.0.5" 1631 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 1632 | 1633 | path-type@^1.0.0: 1634 | version "1.1.0" 1635 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 1636 | dependencies: 1637 | graceful-fs "^4.1.2" 1638 | pify "^2.0.0" 1639 | pinkie-promise "^2.0.0" 1640 | 1641 | performance-now@^0.2.0: 1642 | version "0.2.0" 1643 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 1644 | 1645 | pify@^2.0.0, pify@^2.3.0: 1646 | version "2.3.0" 1647 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1648 | 1649 | pinkie-promise@^2.0.0: 1650 | version "2.0.1" 1651 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1652 | dependencies: 1653 | pinkie "^2.0.0" 1654 | 1655 | pinkie@^2.0.0: 1656 | version "2.0.4" 1657 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1658 | 1659 | prelude-ls@~1.1.2: 1660 | version "1.1.2" 1661 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 1662 | 1663 | preserve@^0.2.0: 1664 | version "0.2.0" 1665 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1666 | 1667 | pretty-format@^20.0.3: 1668 | version "20.0.3" 1669 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-20.0.3.tgz#020e350a560a1fe1a98dc3beb6ccffb386de8b14" 1670 | dependencies: 1671 | ansi-regex "^2.1.1" 1672 | ansi-styles "^3.0.0" 1673 | 1674 | private@^0.1.7: 1675 | version "0.1.7" 1676 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 1677 | 1678 | prr@~0.0.0: 1679 | version "0.0.0" 1680 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 1681 | 1682 | punycode@^1.4.1: 1683 | version "1.4.1" 1684 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1685 | 1686 | qs@~6.4.0: 1687 | version "6.4.0" 1688 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 1689 | 1690 | randomatic@^1.1.3: 1691 | version "1.1.7" 1692 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 1693 | dependencies: 1694 | is-number "^3.0.0" 1695 | kind-of "^4.0.0" 1696 | 1697 | read-pkg-up@^1.0.1: 1698 | version "1.0.1" 1699 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 1700 | dependencies: 1701 | find-up "^1.0.0" 1702 | read-pkg "^1.0.0" 1703 | 1704 | read-pkg@^1.0.0: 1705 | version "1.1.0" 1706 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 1707 | dependencies: 1708 | load-json-file "^1.0.0" 1709 | normalize-package-data "^2.3.2" 1710 | path-type "^1.0.0" 1711 | 1712 | regenerator-runtime@^0.11.0: 1713 | version "0.11.0" 1714 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1" 1715 | 1716 | regex-cache@^0.4.2: 1717 | version "0.4.3" 1718 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 1719 | dependencies: 1720 | is-equal-shallow "^0.1.3" 1721 | is-primitive "^2.0.0" 1722 | 1723 | remove-trailing-separator@^1.0.1: 1724 | version "1.1.0" 1725 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 1726 | 1727 | repeat-element@^1.1.2: 1728 | version "1.1.2" 1729 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1730 | 1731 | repeat-string@^1.5.2: 1732 | version "1.6.1" 1733 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1734 | 1735 | repeating@^2.0.0: 1736 | version "2.0.1" 1737 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1738 | dependencies: 1739 | is-finite "^1.0.0" 1740 | 1741 | request@^2.79.0: 1742 | version "2.81.0" 1743 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 1744 | dependencies: 1745 | aws-sign2 "~0.6.0" 1746 | aws4 "^1.2.1" 1747 | caseless "~0.12.0" 1748 | combined-stream "~1.0.5" 1749 | extend "~3.0.0" 1750 | forever-agent "~0.6.1" 1751 | form-data "~2.1.1" 1752 | har-validator "~4.2.1" 1753 | hawk "~3.1.3" 1754 | http-signature "~1.1.0" 1755 | is-typedarray "~1.0.0" 1756 | isstream "~0.1.2" 1757 | json-stringify-safe "~5.0.1" 1758 | mime-types "~2.1.7" 1759 | oauth-sign "~0.8.1" 1760 | performance-now "^0.2.0" 1761 | qs "~6.4.0" 1762 | safe-buffer "^5.0.1" 1763 | stringstream "~0.0.4" 1764 | tough-cookie "~2.3.0" 1765 | tunnel-agent "^0.6.0" 1766 | uuid "^3.0.0" 1767 | 1768 | require-directory@^2.1.1: 1769 | version "2.1.1" 1770 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 1771 | 1772 | require-main-filename@^1.0.1: 1773 | version "1.0.1" 1774 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 1775 | 1776 | resolve@1.1.7: 1777 | version "1.1.7" 1778 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 1779 | 1780 | resolve@^1.3.2: 1781 | version "1.4.0" 1782 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.4.0.tgz#a75be01c53da25d934a98ebd0e4c4a7312f92a86" 1783 | dependencies: 1784 | path-parse "^1.0.5" 1785 | 1786 | right-align@^0.1.1: 1787 | version "0.1.3" 1788 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 1789 | dependencies: 1790 | align-text "^0.1.1" 1791 | 1792 | rimraf@^2.6.1: 1793 | version "2.6.1" 1794 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 1795 | dependencies: 1796 | glob "^7.0.5" 1797 | 1798 | safe-buffer@^5.0.1: 1799 | version "5.1.1" 1800 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 1801 | 1802 | sane@~1.6.0: 1803 | version "1.6.0" 1804 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.6.0.tgz#9610c452307a135d29c1fdfe2547034180c46775" 1805 | dependencies: 1806 | anymatch "^1.3.0" 1807 | exec-sh "^0.2.0" 1808 | fb-watchman "^1.8.0" 1809 | minimatch "^3.0.2" 1810 | minimist "^1.1.1" 1811 | walker "~1.0.5" 1812 | watch "~0.10.0" 1813 | 1814 | sax@^1.2.1: 1815 | version "1.2.4" 1816 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 1817 | 1818 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 1819 | version "5.4.1" 1820 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 1821 | 1822 | set-blocking@^2.0.0: 1823 | version "2.0.0" 1824 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1825 | 1826 | shellwords@^0.1.0: 1827 | version "0.1.1" 1828 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" 1829 | 1830 | slash@^1.0.0: 1831 | version "1.0.0" 1832 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 1833 | 1834 | sntp@1.x.x: 1835 | version "1.0.9" 1836 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 1837 | dependencies: 1838 | hoek "2.x.x" 1839 | 1840 | source-map-support@^0.4.15: 1841 | version "0.4.16" 1842 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.16.tgz#16fecf98212467d017d586a2af68d628b9421cd8" 1843 | dependencies: 1844 | source-map "^0.5.6" 1845 | 1846 | source-map@^0.4.4: 1847 | version "0.4.4" 1848 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 1849 | dependencies: 1850 | amdefine ">=0.0.4" 1851 | 1852 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 1853 | version "0.5.7" 1854 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 1855 | 1856 | source-map@~0.2.0: 1857 | version "0.2.0" 1858 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 1859 | dependencies: 1860 | amdefine ">=0.0.4" 1861 | 1862 | spdx-correct@~1.0.0: 1863 | version "1.0.2" 1864 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 1865 | dependencies: 1866 | spdx-license-ids "^1.0.2" 1867 | 1868 | spdx-expression-parse@~1.0.0: 1869 | version "1.0.4" 1870 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 1871 | 1872 | spdx-license-ids@^1.0.2: 1873 | version "1.2.2" 1874 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 1875 | 1876 | sprintf-js@~1.0.2: 1877 | version "1.0.3" 1878 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 1879 | 1880 | sshpk@^1.7.0: 1881 | version "1.13.1" 1882 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 1883 | dependencies: 1884 | asn1 "~0.2.3" 1885 | assert-plus "^1.0.0" 1886 | dashdash "^1.12.0" 1887 | getpass "^0.1.1" 1888 | optionalDependencies: 1889 | bcrypt-pbkdf "^1.0.0" 1890 | ecc-jsbn "~0.1.1" 1891 | jsbn "~0.1.0" 1892 | tweetnacl "~0.14.0" 1893 | 1894 | string-length@^1.0.1: 1895 | version "1.0.1" 1896 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 1897 | dependencies: 1898 | strip-ansi "^3.0.0" 1899 | 1900 | string-width@^1.0.1, string-width@^1.0.2: 1901 | version "1.0.2" 1902 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1903 | dependencies: 1904 | code-point-at "^1.0.0" 1905 | is-fullwidth-code-point "^1.0.0" 1906 | strip-ansi "^3.0.0" 1907 | 1908 | stringstream@~0.0.4: 1909 | version "0.0.5" 1910 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 1911 | 1912 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1913 | version "3.0.1" 1914 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1915 | dependencies: 1916 | ansi-regex "^2.0.0" 1917 | 1918 | strip-bom@3.0.0: 1919 | version "3.0.0" 1920 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 1921 | 1922 | strip-bom@^2.0.0: 1923 | version "2.0.0" 1924 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 1925 | dependencies: 1926 | is-utf8 "^0.2.0" 1927 | 1928 | supports-color@^2.0.0: 1929 | version "2.0.0" 1930 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1931 | 1932 | supports-color@^3.1.2: 1933 | version "3.2.3" 1934 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 1935 | dependencies: 1936 | has-flag "^1.0.0" 1937 | 1938 | supports-color@^4.0.0: 1939 | version "4.3.0" 1940 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.3.0.tgz#0fa3755bb961136cf75ff2ee3eb775822c04a31b" 1941 | dependencies: 1942 | has-flag "^2.0.0" 1943 | 1944 | symbol-tree@^3.2.1: 1945 | version "3.2.2" 1946 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 1947 | 1948 | test-exclude@^4.1.1: 1949 | version "4.1.1" 1950 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26" 1951 | dependencies: 1952 | arrify "^1.0.1" 1953 | micromatch "^2.3.11" 1954 | object-assign "^4.1.0" 1955 | read-pkg-up "^1.0.1" 1956 | require-main-filename "^1.0.1" 1957 | 1958 | throat@^3.0.0: 1959 | version "3.2.0" 1960 | resolved "https://registry.yarnpkg.com/throat/-/throat-3.2.0.tgz#50cb0670edbc40237b9e347d7e1f88e4620af836" 1961 | 1962 | tmpl@1.0.x: 1963 | version "1.0.4" 1964 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 1965 | 1966 | to-fast-properties@^1.0.3: 1967 | version "1.0.3" 1968 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 1969 | 1970 | to-fast-properties@^2.0.0: 1971 | version "2.0.0" 1972 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 1973 | 1974 | tough-cookie@^2.3.2, tough-cookie@~2.3.0: 1975 | version "2.3.2" 1976 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 1977 | dependencies: 1978 | punycode "^1.4.1" 1979 | 1980 | tr46@~0.0.3: 1981 | version "0.0.3" 1982 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 1983 | 1984 | trim-right@^1.0.1: 1985 | version "1.0.1" 1986 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 1987 | 1988 | tunnel-agent@^0.6.0: 1989 | version "0.6.0" 1990 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 1991 | dependencies: 1992 | safe-buffer "^5.0.1" 1993 | 1994 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 1995 | version "0.14.5" 1996 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 1997 | 1998 | type-check@~0.3.2: 1999 | version "0.3.2" 2000 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 2001 | dependencies: 2002 | prelude-ls "~1.1.2" 2003 | 2004 | uglify-js@^2.6: 2005 | version "2.8.29" 2006 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 2007 | dependencies: 2008 | source-map "~0.5.1" 2009 | yargs "~3.10.0" 2010 | optionalDependencies: 2011 | uglify-to-browserify "~1.0.0" 2012 | 2013 | uglify-to-browserify@~1.0.0: 2014 | version "1.0.2" 2015 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 2016 | 2017 | uuid@^3.0.0: 2018 | version "3.1.0" 2019 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 2020 | 2021 | validate-npm-package-license@^3.0.1: 2022 | version "3.0.1" 2023 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 2024 | dependencies: 2025 | spdx-correct "~1.0.0" 2026 | spdx-expression-parse "~1.0.0" 2027 | 2028 | verror@1.10.0: 2029 | version "1.10.0" 2030 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 2031 | dependencies: 2032 | assert-plus "^1.0.0" 2033 | core-util-is "1.0.2" 2034 | extsprintf "^1.2.0" 2035 | 2036 | walker@~1.0.5: 2037 | version "1.0.7" 2038 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 2039 | dependencies: 2040 | makeerror "1.0.x" 2041 | 2042 | watch@~0.10.0: 2043 | version "0.10.0" 2044 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 2045 | 2046 | webidl-conversions@^3.0.0: 2047 | version "3.0.1" 2048 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 2049 | 2050 | webidl-conversions@^4.0.0: 2051 | version "4.0.2" 2052 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" 2053 | 2054 | whatwg-encoding@^1.0.1: 2055 | version "1.0.1" 2056 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 2057 | dependencies: 2058 | iconv-lite "0.4.13" 2059 | 2060 | whatwg-url@^4.3.0: 2061 | version "4.8.0" 2062 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0" 2063 | dependencies: 2064 | tr46 "~0.0.3" 2065 | webidl-conversions "^3.0.0" 2066 | 2067 | which-module@^1.0.0: 2068 | version "1.0.0" 2069 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 2070 | 2071 | which@^1.2.12: 2072 | version "1.3.0" 2073 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 2074 | dependencies: 2075 | isexe "^2.0.0" 2076 | 2077 | window-size@0.1.0: 2078 | version "0.1.0" 2079 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 2080 | 2081 | wordwrap@0.0.2: 2082 | version "0.0.2" 2083 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 2084 | 2085 | wordwrap@~0.0.2: 2086 | version "0.0.3" 2087 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 2088 | 2089 | wordwrap@~1.0.0: 2090 | version "1.0.0" 2091 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 2092 | 2093 | worker-farm@^1.3.1: 2094 | version "1.5.0" 2095 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.5.0.tgz#adfdf0cd40581465ed0a1f648f9735722afd5c8d" 2096 | dependencies: 2097 | errno "^0.1.4" 2098 | xtend "^4.0.1" 2099 | 2100 | wrap-ansi@^2.0.0: 2101 | version "2.1.0" 2102 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 2103 | dependencies: 2104 | string-width "^1.0.1" 2105 | strip-ansi "^3.0.1" 2106 | 2107 | wrappy@1: 2108 | version "1.0.2" 2109 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2110 | 2111 | xml-name-validator@^2.0.1: 2112 | version "2.0.1" 2113 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 2114 | 2115 | xtend@^4.0.1: 2116 | version "4.0.1" 2117 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2118 | 2119 | y18n@^3.2.1: 2120 | version "3.2.1" 2121 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 2122 | 2123 | yargs-parser@^5.0.0: 2124 | version "5.0.0" 2125 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" 2126 | dependencies: 2127 | camelcase "^3.0.0" 2128 | 2129 | yargs@^7.0.2: 2130 | version "7.1.0" 2131 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" 2132 | dependencies: 2133 | camelcase "^3.0.0" 2134 | cliui "^3.2.0" 2135 | decamelize "^1.1.1" 2136 | get-caller-file "^1.0.1" 2137 | os-locale "^1.4.0" 2138 | read-pkg-up "^1.0.1" 2139 | require-directory "^2.1.1" 2140 | require-main-filename "^1.0.1" 2141 | set-blocking "^2.0.0" 2142 | string-width "^1.0.2" 2143 | which-module "^1.0.0" 2144 | y18n "^3.2.1" 2145 | yargs-parser "^5.0.0" 2146 | 2147 | yargs@~3.10.0: 2148 | version "3.10.0" 2149 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 2150 | dependencies: 2151 | camelcase "^1.0.2" 2152 | cliui "^2.1.0" 2153 | decamelize "^1.0.0" 2154 | window-size "0.1.0" 2155 | --------------------------------------------------------------------------------