├── .circleci └── config.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── package.json ├── prettier.config.js ├── src ├── cli.ts ├── convert.ts ├── index.ts ├── rules │ ├── $Exact.ts │ ├── $Keys.ts │ ├── $ReadOnly.ts │ ├── Bounds.ts │ ├── Casting.ts │ ├── Exact.ts │ ├── Functions.ts │ ├── Indexer.ts │ ├── Maybe.ts │ ├── Mixed.ts │ ├── Opaque.ts │ ├── TypeImport.ts │ ├── Undefined.ts │ └── Variance.ts ├── types.d.ts └── utils.ts ├── test ├── e2e │ ├── _flow-dom │ │ ├── input.txt │ │ └── output.txt │ └── flow-react │ │ ├── input.txt │ │ └── output.txt ├── rules │ ├── $Exact │ │ ├── input.txt │ │ └── output.txt │ ├── $ReadOnly │ │ ├── input.txt │ │ └── output.txt │ ├── .flowconfig │ ├── Bounds │ │ ├── input.txt │ │ └── output.txt │ ├── Casting │ │ ├── input.txt │ │ └── output.txt │ ├── Exact │ │ ├── input.txt │ │ └── output.txt │ ├── Functions │ │ ├── input.txt │ │ └── output.txt │ ├── Indexers │ │ ├── input.txt │ │ └── output.txt │ ├── Maybe │ │ ├── input.txt │ │ └── output.txt │ ├── Mixed │ │ ├── input.txt │ │ └── output.txt │ ├── Opaque │ │ ├── input.txt │ │ └── output.txt │ ├── TypeImport │ │ ├── input.txt │ │ └── output.txt │ ├── Undefined │ │ ├── input.txt │ │ └── output.txt │ ├── Variance │ │ ├── input.txt │ │ └── output.txt │ ├── _$Keys │ │ ├── input.txt │ │ └── output.txt │ └── tslint.json ├── test.ts └── unit │ ├── Types │ ├── input.txt │ └── output.txt │ └── Union │ ├── input.txt │ └── output.txt ├── tsconfig.json ├── tslint.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- 1 | # Javascript Node CircleCI 2.0 configuration file 2 | # 3 | # Check https://circleci.com/docs/2.0/language-javascript/ for more details 4 | # 5 | version: 2 6 | jobs: 7 | build: 8 | docker: 9 | - image: circleci/node:8.9 10 | 11 | steps: 12 | - checkout 13 | - restore_cache: 14 | keys: 15 | - v1-dependencies-{{ checksum "package.json" }} 16 | # fallback to using the latest cache if no exact match is found 17 | - v1-dependencies- 18 | 19 | - run: yarn install 20 | 21 | - save_cache: 22 | paths: 23 | - node_modules 24 | key: v1-dependencies-{{ checksum "package.json" }} 25 | 26 | # run tests! 27 | - run: yarn test -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | dist 3 | node_modules 4 | yarn-error.log 5 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | Copyright 2017 Boris Cherny 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 4 | 5 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 6 | 7 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Flow-to-TypeScript [![Build Status][build]](https://circleci.com/gh/bcherny/flow-to-typescript) [![npm]](https://www.npmjs.com/package/flow-to-typescript) [![mit]](https://opensource.org/licenses/MIT) 2 | 3 | [build]: https://img.shields.io/circleci/project/bcherny/flow-to-typescript.svg?branch=master&style=flat-square 4 | [npm]: https://img.shields.io/npm/v/flow-to-typescript.svg?style=flat-square 5 | [mit]: https://img.shields.io/npm/l/flow-to-typescript.svg?style=flat-square 6 | 7 | > Compile Flow files to TypeScript 8 | 9 | **In Pre-Alpha - contributions welcome.** 10 | 11 | ## Installation 12 | 13 | ```sh 14 | # Using Yarn: 15 | yarn add flow-to-typescript 16 | 17 | # Or, using NPM: 18 | npm install flow-to-typescript --save 19 | ``` 20 | 21 | ## Usage 22 | 23 | ### CLI 24 | 25 | ```sh 26 | # Install globally 27 | yarn global add flow-to-typescript 28 | 29 | # Compile a file (all of these are equivalent) 30 | flow2ts my/file.js.flow 31 | flow2ts my/file.js.flow my/file.ts 32 | flow2ts my/file.js.flow > my/file.ts 33 | flow2ts -i my/file.js.flow -o my/file.ts 34 | flow2ts --input my/file.js.flow --output my/file.ts 35 | ``` 36 | 37 | ### Programmatic 38 | 39 | ```js 40 | import { compile } from 'flow-to-typescript' 41 | import { readFileSync, writeFileSync } from 'fs' 42 | 43 | let path = 'path/to/file.js.flow' 44 | let file = readFileSync(path, 'utf-8') 45 | 46 | compile(file, path).then(ts => 47 | writeFileSync('path/to/file.ts', ts) 48 | ) 49 | ``` 50 | 51 | ## TypeScript vs. Flow 52 | 53 | ### Features 54 | 55 | | Done? | | Flow | TypeScript | 56 | |-------|-------------|-----------------------------------------|------------| 57 | | ✅ | Maybe | `?type` (NullableTypeAnnotation) | `type \| null \| undefined` | 58 | | ✅ | Null | `null` | `null` | 59 | | ✅ | Undefined | `typeof undefined` | `undefined` | 60 | | ✅ | Mixed | `mixed` | `unknown` | 61 | | ✅ | Void | `void` | `void` | 62 | | ✅ | Functions | `(A, B) => C` | `(a: A, b: B) => C` | 63 | | ⚔ | Predicates (0) | `(a: A, b: B) => %checks` | `(a: A, b: B) => C` | 64 | | ⚔ | Predicates (1) | `(a: A, b: B) => C %checks` | `(a: A, b: B) => C` | 65 | | ✅ | Exact types | `{\| a: A \|}` | `{ a: A }` | 66 | | ✅ | Indexers | `{ [A]: B }` | `{ [a: A]: B }` | 67 | | ✅ | Opaque types | `opaque type A = B` | `type A = B` (not expressible) | 68 | | ✅ | Variance | `interface A { +b: B, -c: C }` | `interface A { readonly b: B, c: C }` | 69 | | ✅ | Bounds | `` | `` | 70 | | ✅ | Casting | `(a: A)` | `(a as A)` | 71 | | ✅ | Import default type | `import type A from './b'` | `import A from './b'` | 72 | | ✅ | Import named type | `import type { A } from './b'` | `import { A } from './b'` | 73 | 74 | ### Utilities 75 | 76 | | Done? | | Flow | TypeScript | 77 | |-------|-------------|-----------------------------------------|------------| 78 | | | Keys | `$Keys` | `keyof A` | 79 | | | Values | `$Values` | `A[keyof A]` | 80 | | ✅ | ReadOnly | `$ReadOnly` | `Readonly` | 81 | | ✅ | Exact | `$Exact` | `A` | 82 | | | Difference | `$Diff` | TODO` | 83 | | | Rest | `$Rest` | `Exclude` | 84 | | | Property type | `$PropertyType` | `T[k]` | 85 | | | Element type | `$ElementType` | `T[k]` | 86 | | | Dependent type | `$ObjMap` | TODO | 87 | | | Mapped tuple | `$TupleMap` | TODO | 88 | | | Return type | `$Call` | `ReturnType` | 89 | | | Class | `Class` | `typeof A` | 90 | | | Supertype | `$Supertype` | `any` (warn - vote for https://github.com/Microsoft/TypeScript/issues/14520) | 91 | | | Subtype | `$Subtype` | `B extends A` | 92 | | | Existential type | `*` | `any` (warn - vote for https://github.com/Microsoft/TypeScript/issues/14466) | 93 | 94 | 95 | ✅ Done 96 | 97 | ⚔ Babylon doesn't support it (yet) 98 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "flow-to-typescript", 3 | "description": "Compile Flow to TypeScript", 4 | "version": "0.0.1", 5 | "main": "./dist/src/index.js", 6 | "types": "./dist/src/index.d.ts", 7 | "bin": { 8 | "flow2ts": "dist/src/cli.js" 9 | }, 10 | "repository": "git@github.com:bcherny/flow-to-typescript.git", 11 | "author": "Boris Cherny ", 12 | "license": "MIT", 13 | "scripts": { 14 | "build": "tsc", 15 | "build:watch": "tsc -w", 16 | "clean": "rm -rf ./dist", 17 | "lint": "tslint src/**/*.ts && npm run prettier:check", 18 | "prettier": "prettier 'src/**/*.[tj]s'", 19 | "prettier:fix": "npm run prettier --write", 20 | "prettier:check": "npm run prettier -l", 21 | "prepublishOnly": "npm run clean && npm run lint && npm run build -- -d", 22 | "pretest": "npm run build", 23 | "tdd": "concurrently -k 'npm run build:watch' 'npm run test:watch'", 24 | "test": "ava --verbose", 25 | "test:debug": "node --inspect-brk ./node_modules/ava/profile.js ./dist/test/test.js", 26 | "test:watch": "ava -w" 27 | }, 28 | "dependencies": { 29 | "@babel/generator": "7.0.0-beta.38", 30 | "@babel/traverse": "7.0.0-beta.38", 31 | "@babel/types": "7.0.0-beta.38", 32 | "glob": "^7.1.2", 33 | "lodash": "^4.17.4", 34 | "mz": "^2.7.0" 35 | }, 36 | "devDependencies": { 37 | "@types/glob": "^5.0.33", 38 | "@types/lodash": "^4.14.86", 39 | "@types/minimist": "^1.2.0", 40 | "@types/mz": "^0.0.32", 41 | "ava": "^0.24.0", 42 | "concurrently": "^3.5.1", 43 | "flow-bin": "^0.59.0", 44 | "prettier": "^1.15.3", 45 | "tslint": "^5.8.0", 46 | "typescript": "^2.6.2" 47 | }, 48 | "ava": { 49 | "files": [ 50 | "./dist/test/test.js" 51 | ] 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | printWidth: 80, 3 | semi: false, 4 | singleQuote: true, 5 | trailingComma: 'none', 6 | } 7 | -------------------------------------------------------------------------------- /src/cli.ts: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | import minimist = require('minimist') 4 | import { readFile, writeFile } from 'mz/fs' 5 | import { resolve } from 'path' 6 | import stdin = require('stdin') 7 | import { compile } from './index' 8 | 9 | main( 10 | minimist(process.argv.slice(2), { 11 | alias: { 12 | help: ['h'], 13 | input: ['i'], 14 | output: ['o'] 15 | } 16 | }) 17 | ) 18 | 19 | async function main(argv: minimist.ParsedArgs) { 20 | if (argv.help) { 21 | printHelp() 22 | process.exit(0) 23 | } 24 | 25 | const argIn: string = argv._[0] || argv.input 26 | const argOut: string = argv._[1] || argv.output 27 | 28 | try { 29 | const flow = await readInput(argIn) 30 | const ts = await compile(flow, argIn) 31 | await writeOutput(ts, argOut) 32 | } catch (e) { 33 | process.stderr.write(e.message) 34 | process.exit(1) 35 | } 36 | } 37 | 38 | function readInput(argIn?: string) { 39 | if (!argIn) { 40 | return new Promise(stdin) 41 | } 42 | return readFile(resolve(process.cwd(), argIn), 'utf-8') 43 | } 44 | 45 | function writeOutput(ts: string, argOut: string): Promise { 46 | if (!argOut) { 47 | try { 48 | process.stdout.write(ts) 49 | return Promise.resolve() 50 | } catch (err) { 51 | return Promise.reject(err) 52 | } 53 | } 54 | return writeFile(argOut, ts) 55 | } 56 | 57 | function printHelp() { 58 | const pkg = require('../../package.json') 59 | 60 | process.stdout.write( 61 | ` 62 | ${pkg.name} ${pkg.version} 63 | Usage: flow2ts [--input, -i] [IN_FILE] [--output, -o] [OUT_FILE] 64 | 65 | With no IN_FILE, or when IN_FILE is -, read standard input. 66 | With no OUT_FILE and when IN_FILE is specified, create .ts file in the same directory. 67 | With no OUT_FILE nor IN_FILE, write to standard output. 68 | ` 69 | ) 70 | } 71 | -------------------------------------------------------------------------------- /src/convert.ts: -------------------------------------------------------------------------------- 1 | import { 2 | booleanLiteral, 3 | Flow, 4 | FlowType, 5 | FunctionTypeAnnotation, 6 | identifier, 7 | Identifier, 8 | isSpreadProperty, 9 | isTSTypeParameter, 10 | isTypeParameter, 11 | Node, 12 | numericLiteral, 13 | stringLiteral, 14 | tsAnyKeyword, 15 | tsArrayType, 16 | tsAsExpression, 17 | tsBooleanKeyword, 18 | tsFunctionType, 19 | TSFunctionType, 20 | tsIntersectionType, 21 | tsLiteralType, 22 | tsNullKeyword, 23 | tsNumberKeyword, 24 | tsPropertySignature, 25 | tsStringKeyword, 26 | tsThisType, 27 | tsTupleType, 28 | TSType, 29 | tsTypeAnnotation, 30 | tsTypeLiteral, 31 | tsTypeParameter, 32 | tsTypeParameterDeclaration, 33 | tsTypeQuery, 34 | tsTypeReference, 35 | tsUndefinedKeyword, 36 | tsUnionType, 37 | tsVoidKeyword, 38 | TypeAnnotation, 39 | TypeParameter 40 | } from '@babel/types' 41 | import { generateFreeIdentifier } from './utils' 42 | 43 | // TODO: Add overloads 44 | export function toTs(node: Flow | TSType): TSType { 45 | switch (node.type) { 46 | // TS types 47 | // TODO: Why does tsTs get called with TSTypes? It should only get called with Flow types. 48 | case 'TSAnyKeyword': 49 | case 'TSArrayType': 50 | case 'TSBooleanKeyword': 51 | case 'TSConstructorType': 52 | case 'TSExpressionWithTypeArguments': 53 | case 'TSFunctionType': 54 | case 'TSIndexedAccessType': 55 | case 'TSIntersectionType': 56 | case 'TSLiteralType': 57 | case 'TSMappedType': 58 | case 'TSNeverKeyword': 59 | case 'TSNullKeyword': 60 | case 'TSNumberKeyword': 61 | case 'TSObjectKeyword': 62 | case 'TSParenthesizedType': 63 | case 'TSStringKeyword': 64 | case 'TSSymbolKeyword': 65 | case 'TSThisType': 66 | case 'TSTupleType': 67 | case 'TSTypeAnnotation': 68 | case 'TSTypeLiteral': 69 | case 'TSTypeOperator': 70 | case 'TSTypePredicate': 71 | case 'TSTypeQuery': 72 | case 'TSTypeReference': 73 | case 'TSUndefinedKeyword': 74 | case 'TSUnionType': 75 | case 'TSVoidKeyword': 76 | case 'TSTypeParameterDeclaration': 77 | case 'TSAsExpression': 78 | case 'TSPropertySignature': 79 | return node 80 | 81 | // Flow types 82 | case 'AnyTypeAnnotation': 83 | case 'ArrayTypeAnnotation': 84 | case 'BooleanTypeAnnotation': 85 | case 'BooleanLiteralTypeAnnotation': 86 | case 'FunctionTypeAnnotation': 87 | case 'GenericTypeAnnotation': 88 | case 'IntersectionTypeAnnotation': 89 | case 'MixedTypeAnnotation': 90 | case 'NullableTypeAnnotation': 91 | case 'NullLiteralTypeAnnotation': 92 | case 'NumericLiteralTypeAnnotation': 93 | case 'NumberTypeAnnotation': 94 | case 'StringLiteralTypeAnnotation': 95 | case 'StringTypeAnnotation': 96 | case 'ThisTypeAnnotation': 97 | case 'TupleTypeAnnotation': 98 | case 'TypeofTypeAnnotation': 99 | case 'TypeAnnotation': 100 | case 'ObjectTypeAnnotation': 101 | case 'UnionTypeAnnotation': 102 | case 'VoidTypeAnnotation': 103 | return toTsType(node) 104 | 105 | case 'ObjectTypeProperty': 106 | let _ = tsPropertySignature(node.key, tsTypeAnnotation(toTs(node.value))) 107 | _.optional = node.optional 108 | _.readonly = node.variance && node.variance.kind === 'minus' 109 | return _ 110 | 111 | case 'TypeCastExpression': 112 | return tsAsExpression(node.expression, toTs(node.typeAnnotation)) 113 | 114 | case 'TypeParameterDeclaration': 115 | let params = node.params.map(_ => { 116 | let d = ((_ as any) as TypeParameter).default 117 | let p = tsTypeParameter( 118 | hasBound(_) ? toTsType(_.bound.typeAnnotation) : undefined, 119 | d ? toTs(d) : undefined 120 | ) 121 | p.name = _.name 122 | return p 123 | }) 124 | 125 | return tsTypeParameterDeclaration(params) 126 | 127 | case 'ClassImplements': 128 | case 'ClassProperty': 129 | case 'DeclareClass': 130 | case 'DeclareFunction': 131 | case 'DeclareInterface': 132 | case 'DeclareModule': 133 | case 'DeclareTypeAlias': 134 | case 'DeclareVariable': 135 | case 'ExistentialTypeParam': 136 | case 'FunctionTypeParam': 137 | case 'InterfaceExtends': 138 | case 'InterfaceDeclaration': 139 | case 'TypeAlias': 140 | case 'TypeParameterInstantiation': 141 | case 'ObjectTypeCallProperty': 142 | case 'ObjectTypeIndexer': 143 | case 'QualifiedTypeIdentifier': 144 | throw 'wut' 145 | } 146 | } 147 | 148 | export function toTsType(node: FlowType): TSType { 149 | switch (node.type) { 150 | case 'AnyTypeAnnotation': 151 | return tsAnyKeyword() 152 | case 'ArrayTypeAnnotation': 153 | return tsArrayType(toTsType(node.elementType)) 154 | case 'BooleanTypeAnnotation': 155 | return tsBooleanKeyword() 156 | case 'BooleanLiteralTypeAnnotation': 157 | return tsLiteralType(booleanLiteral(node.value!)) 158 | case 'FunctionTypeAnnotation': 159 | return functionToTsType(node) 160 | case 'GenericTypeAnnotation': 161 | return tsTypeReference(node.id) 162 | case 'IntersectionTypeAnnotation': 163 | return tsIntersectionType(node.types.map(toTsType)) 164 | case 'MixedTypeAnnotation': 165 | return tsAnyKeyword() 166 | case 'NullLiteralTypeAnnotation': 167 | return tsNullKeyword() 168 | case 'NullableTypeAnnotation': 169 | return tsUnionType([ 170 | toTsType(node.typeAnnotation), 171 | tsNullKeyword(), 172 | tsUndefinedKeyword() 173 | ]) 174 | case 'NumberLiteralTypeAnnotation': 175 | return tsLiteralType(numericLiteral(node.value!)) 176 | case 'NumberTypeAnnotation': 177 | return tsNumberKeyword() 178 | case 'StringLiteralTypeAnnotation': 179 | return tsLiteralType(stringLiteral(node.value!)) 180 | case 'StringTypeAnnotation': 181 | return tsStringKeyword() 182 | case 'ThisTypeAnnotation': 183 | return tsThisType() 184 | case 'TupleTypeAnnotation': 185 | return tsTupleType(node.types.map(toTsType)) 186 | case 'TypeofTypeAnnotation': 187 | return tsTypeQuery(getId(node.argument)) 188 | case 'ObjectTypeAnnotation': 189 | return tsTypeLiteral([ 190 | ...node.properties.map(_ => { 191 | if (isSpreadProperty(_)) { 192 | return _ 193 | } 194 | let s = tsPropertySignature( 195 | _.key, 196 | tsTypeAnnotation(toTsType(_.value)) 197 | ) 198 | s.optional = _.optional 199 | return s 200 | // TODO: anonymous indexers 201 | // TODO: named indexers 202 | // TODO: call properties 203 | // TODO: variance 204 | }) 205 | // ...node.indexers.map(_ => tSIndexSignature()) 206 | ]) 207 | case 'UnionTypeAnnotation': 208 | return tsUnionType(node.types.map(toTsType)) 209 | case 'VoidTypeAnnotation': 210 | return tsVoidKeyword() 211 | } 212 | } 213 | 214 | function getId(node: FlowType): Identifier { 215 | switch (node.type) { 216 | case 'GenericTypeAnnotation': 217 | return node.id 218 | default: 219 | throw ReferenceError('typeof query must reference a node that has an id') 220 | } 221 | } 222 | 223 | function functionToTsType(node: FunctionTypeAnnotation): TSFunctionType { 224 | let typeParams = undefined 225 | 226 | if (node.typeParameters) { 227 | typeParams = tsTypeParameterDeclaration( 228 | node.typeParameters.params.map(_ => { 229 | // TODO: How is this possible? 230 | if (isTSTypeParameter(_)) { 231 | return _ 232 | } 233 | 234 | let constraint = _.bound ? toTs(_.bound) : undefined 235 | let default_ = _.default ? toTs(_.default) : undefined 236 | let param = tsTypeParameter(constraint, default_) 237 | param.name = _.name 238 | return param 239 | }) 240 | ) 241 | } 242 | 243 | let f = tsFunctionType(typeParams) 244 | 245 | // Params 246 | if (node.params) { 247 | // TODO: Rest params 248 | let paramNames = node.params 249 | .map(_ => _.name) 250 | .filter(_ => _ !== null) 251 | .map(_ => (_ as Identifier).name) 252 | f.parameters = node.params.map(_ => { 253 | let name = _.name && _.name.name 254 | 255 | // Generate param name? (Required in TS, optional in Flow) 256 | if (name == null) { 257 | name = generateFreeIdentifier(paramNames) 258 | paramNames.push(name) 259 | } 260 | 261 | let id = identifier(name) 262 | 263 | if (_.typeAnnotation) { 264 | id.typeAnnotation = tsTypeAnnotation(toTsType(_.typeAnnotation)) 265 | } 266 | 267 | return id 268 | }) 269 | } 270 | 271 | // Return type 272 | if (node.returnType) { 273 | f.typeAnnotation = tsTypeAnnotation(toTsType(node.returnType)) 274 | } 275 | 276 | return f 277 | } 278 | 279 | function hasBound(node: Node): node is BoundedTypeParameter { 280 | return isTypeParameter(node) && node.bound != null 281 | } 282 | 283 | interface BoundedTypeParameter extends TypeParameter { 284 | bound: TypeAnnotation 285 | } 286 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | import { parse } from '@babel/babylon' 2 | import generate from '@babel/generator' 3 | import traverse, { Node, Visitor } from '@babel/traverse' 4 | import { File } from '@babel/types' 5 | import { sync } from 'glob' 6 | import { dropWhile, pullAt } from 'lodash' 7 | import { EOL } from 'os' 8 | import { relative, resolve } from 'path' 9 | 10 | type Warning = [string, string, number, number] 11 | type Rule = (warnings: Warning[]) => Visitor 12 | 13 | let rules = new Map() 14 | 15 | export function addRule(ruleName: string, rule: Rule) { 16 | if (rules.has(ruleName)) { 17 | throw `A rule with the name "${ruleName}" is already defined` 18 | } 19 | rules.set(ruleName, rule) 20 | } 21 | 22 | export async function compile(code: string, filename: string) { 23 | let [warnings, ast] = await convert( 24 | parse(code, { 25 | plugins: ['classProperties', 'flow', 'objectRestSpread'], 26 | sourceType: 'module' 27 | }) 28 | ) 29 | 30 | warnings.forEach(([message, issueURL, line, column]) => { 31 | console.log( 32 | `Warning: ${message} (at ${relative( 33 | __dirname, 34 | filename 35 | )}: line ${line}, column ${column}). See ${issueURL}` 36 | ) 37 | }) 38 | 39 | return addTrailingSpace( 40 | trimLeadingNewlines(generate(stripAtFlowAnnotation(ast)).code) 41 | ) 42 | } 43 | 44 | /** 45 | * @internal 46 | */ 47 | export async function convert(ast: T): Promise<[Warning[], T]> { 48 | // load rules directory 49 | await Promise.all( 50 | sync(resolve(__dirname, './rules/*.js')).map(_ => import(_)) 51 | ) 52 | 53 | let warnings: Warning[] = [] 54 | rules.forEach(visitor => traverse(ast, visitor(warnings))) 55 | 56 | return [warnings, ast] 57 | } 58 | 59 | function stripAtFlowAnnotation(ast: File): File { 60 | let { leadingComments } = ast.program.body[0] 61 | if (leadingComments) { 62 | let index = leadingComments.findIndex(_ => _.value.trim() === '@flow') 63 | if (index > -1) { 64 | pullAt(leadingComments, index) 65 | } 66 | } 67 | return ast 68 | } 69 | 70 | function addTrailingSpace(file: string): string { 71 | if (file.endsWith(EOL)) { 72 | return file 73 | } 74 | return file + EOL 75 | } 76 | 77 | function trimLeadingNewlines(file: string): string { 78 | return dropWhile(file.split(EOL), _ => !_).join(EOL) 79 | } 80 | -------------------------------------------------------------------------------- /src/rules/$Exact.ts: -------------------------------------------------------------------------------- 1 | import { addRule } from '../' 2 | 3 | addRule('$Exact', warnings => ({ 4 | GenericTypeAnnotation(path) { 5 | if (path.node.id.name !== '$Exact') { 6 | return 7 | } 8 | 9 | warnings.push([ 10 | `$Exact types can't be expressed in TypeScript`, 11 | 'https://github.com/Microsoft/TypeScript/issues/12936', 12 | path.node.loc.start.line, 13 | path.node.loc.start.column 14 | ]) 15 | 16 | path.replaceWith(path.node.typeParameters.params[0]) 17 | } 18 | })) 19 | -------------------------------------------------------------------------------- /src/rules/$Keys.ts: -------------------------------------------------------------------------------- 1 | import { 2 | GenericTypeAnnotation, 3 | tsTypeOperator, 4 | tsTypeReference 5 | } from '@babel/types' 6 | import { addRule } from '../' 7 | 8 | addRule('$Keys', () => ({ 9 | GenericTypeAnnotation(path) { 10 | if (path.node.id.name !== '$Keys') { 11 | return 12 | } 13 | let { id } = path.node.typeParameters.params[0] as GenericTypeAnnotation 14 | let op = tsTypeOperator(tsTypeReference(id)) 15 | path.replaceWith(op) 16 | } 17 | })) 18 | -------------------------------------------------------------------------------- /src/rules/$ReadOnly.ts: -------------------------------------------------------------------------------- 1 | import { genericTypeAnnotation, identifier } from '@babel/types' 2 | import { addRule } from '../' 3 | 4 | addRule('$ReadOnly', () => ({ 5 | GenericTypeAnnotation(path) { 6 | if (path.node.id.name !== '$ReadOnly') { 7 | return 8 | } 9 | 10 | path.replaceWith( 11 | genericTypeAnnotation(identifier('Readonly'), path.node.typeParameters) 12 | ) 13 | } 14 | })) 15 | -------------------------------------------------------------------------------- /src/rules/Bounds.ts: -------------------------------------------------------------------------------- 1 | import { 2 | isTypeParameter, 3 | Node, 4 | TypeAnnotation, 5 | TypeParameter 6 | } from '@babel/types' 7 | import { addRule } from '../' 8 | import { toTs } from '../convert' 9 | 10 | addRule('Bounds', () => ({ 11 | TypeParameterDeclaration(path) { 12 | if (path.node.params.every(_ => !hasBound(_))) { 13 | return 14 | } 15 | 16 | path.replaceWith(toTs(path.node)) 17 | } 18 | })) 19 | 20 | function hasBound(node: Node): node is BoundedTypeParameter { 21 | return isTypeParameter(node) && node.bound != null 22 | } 23 | 24 | interface BoundedTypeParameter extends TypeParameter { 25 | bound: TypeAnnotation 26 | } 27 | -------------------------------------------------------------------------------- /src/rules/Casting.ts: -------------------------------------------------------------------------------- 1 | import { addRule } from '../' 2 | import { toTs } from '../convert' 3 | 4 | addRule('Casting', () => ({ 5 | TypeCastExpression(path) { 6 | path.replaceWith(toTs(path.node)) 7 | } 8 | })) 9 | -------------------------------------------------------------------------------- /src/rules/Exact.ts: -------------------------------------------------------------------------------- 1 | import { objectTypeAnnotation } from '@babel/types' 2 | import { addRule } from '../' 3 | 4 | addRule('Exact', warnings => ({ 5 | ObjectTypeAnnotation(path) { 6 | if ((path.node as any).exact) { 7 | warnings.push([ 8 | `Exact types can't be expressed in TypeScript`, 9 | 'https://github.com/Microsoft/TypeScript/issues/12936', 10 | path.node.loc.start.line, 11 | path.node.loc.start.column 12 | ]) 13 | path.replaceWith( 14 | objectTypeAnnotation( 15 | path.node.properties, 16 | path.node.indexers, 17 | path.node.callProperties 18 | ) 19 | ) 20 | } 21 | } 22 | })) 23 | -------------------------------------------------------------------------------- /src/rules/Functions.ts: -------------------------------------------------------------------------------- 1 | import { addRule } from '../' 2 | import { toTs } from '../convert' 3 | 4 | addRule('Functions', () => ({ 5 | FunctionTypeAnnotation(path) { 6 | path.replaceWith(toTs(path.node)) 7 | } 8 | })) 9 | -------------------------------------------------------------------------------- /src/rules/Indexer.ts: -------------------------------------------------------------------------------- 1 | import { identifier, objectTypeIndexer } from '@babel/types' 2 | import { addRule } from '../' 3 | import { generateFreeIdentifier } from '../utils' 4 | 5 | addRule('Indexer', () => ({ 6 | ObjectTypeIndexer(path) { 7 | if (path.node.id !== null) { 8 | return 9 | } 10 | 11 | path.replaceWith( 12 | objectTypeIndexer( 13 | identifier(generateFreeIdentifier([])), 14 | path.node.key, 15 | path.node.value 16 | ) 17 | ) 18 | } 19 | })) 20 | -------------------------------------------------------------------------------- /src/rules/Maybe.ts: -------------------------------------------------------------------------------- 1 | import { 2 | genericTypeAnnotation, 3 | identifier, 4 | nullLiteralTypeAnnotation, 5 | unionTypeAnnotation 6 | } from '@babel/types' 7 | import { addRule } from '../' 8 | 9 | addRule('Maybe', () => ({ 10 | NullableTypeAnnotation(path) { 11 | path.replaceWith( 12 | unionTypeAnnotation([ 13 | (path.node as any).typeAnnotation, 14 | nullLiteralTypeAnnotation(), 15 | genericTypeAnnotation(identifier('undefined')) 16 | ]) 17 | ) 18 | } 19 | })) 20 | -------------------------------------------------------------------------------- /src/rules/Mixed.ts: -------------------------------------------------------------------------------- 1 | import { objectTypeAnnotation } from '@babel/types' 2 | import { addRule } from '../' 3 | 4 | addRule('Mixed', () => ({ 5 | MixedTypeAnnotation(path) { 6 | path.replaceWith(objectTypeAnnotation([])) 7 | } 8 | })) 9 | -------------------------------------------------------------------------------- /src/rules/Opaque.ts: -------------------------------------------------------------------------------- 1 | import { typeAlias } from '@babel/types' 2 | import { addRule } from '../' 3 | 4 | addRule('Opaque', warnings => ({ 5 | enter(path) { 6 | if (path.type === 'OpaqueType') { 7 | warnings.push([ 8 | `Opaque types can't be expressed in TypeScript`, 9 | 'https://github.com/Microsoft/TypeScript/issues/202', 10 | path.node.loc.start.line, 11 | path.node.loc.start.column 12 | ]) 13 | path.replaceWith( 14 | typeAlias( 15 | (path.node as any).id, 16 | (path.node as any).typeParameters, 17 | (path.node as any).impltype 18 | ) 19 | ) 20 | } 21 | } 22 | })) 23 | -------------------------------------------------------------------------------- /src/rules/TypeImport.ts: -------------------------------------------------------------------------------- 1 | import { importDeclaration } from '@babel/types' 2 | import { addRule } from '../' 3 | 4 | addRule('TypeImport', () => ({ 5 | ImportDeclaration(path) { 6 | if ((path as any).node.importKind === 'type') { 7 | path.replaceWith( 8 | importDeclaration(path.node.specifiers, path.node.source) 9 | ) 10 | } 11 | } 12 | })) 13 | -------------------------------------------------------------------------------- /src/rules/Undefined.ts: -------------------------------------------------------------------------------- 1 | import { genericTypeAnnotation, identifier } from '@babel/types' 2 | import { addRule } from '../index' 3 | 4 | addRule('Undefined', () => ({ 5 | VoidTypeAnnotation(path) { 6 | path.replaceWith(genericTypeAnnotation(identifier('undefined'))) 7 | } 8 | })) 9 | -------------------------------------------------------------------------------- /src/rules/Variance.ts: -------------------------------------------------------------------------------- 1 | import { addRule } from '../' 2 | import { toTs } from '../convert' 3 | 4 | addRule('Variance', warnings => ({ 5 | ObjectTypeProperty(path) { 6 | if (path.node.variance && path.node.variance.kind === 'plus') { 7 | warnings.push([ 8 | `Contravariance can't be expressed in TypeScript`, 9 | 'https://github.com/Microsoft/TypeScript/issues/1394', 10 | path.node.loc.start.line, 11 | path.node.loc.start.column 12 | ]) 13 | } 14 | path.replaceWith(toTs(path.node)) 15 | } 16 | })) 17 | -------------------------------------------------------------------------------- /src/types.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'stdin' 2 | 3 | declare module '@babel/babylon' 4 | declare module '@babel/generator' 5 | declare module '@babel/traverse' { 6 | let traverse: any 7 | export default traverse 8 | export type Node = any 9 | export type Visitor = any 10 | } 11 | -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- 1 | const candidates = 'abcdefghijklmnopqrstuvwxyz'.split('') 2 | 3 | export function generateFreeIdentifier(usedIdentifiers: string[]) { 4 | return candidates.find(_ => usedIdentifiers.indexOf(_) < 0)! 5 | } 6 | -------------------------------------------------------------------------------- /test/e2e/_flow-dom/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcherny/flow-to-typescript/386b34b810822f027a98da6e25a36bf68556d0a6/test/e2e/_flow-dom/output.txt -------------------------------------------------------------------------------- /test/e2e/flow-react/input.txt: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2013-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | * 7 | * @see https://raw.githubusercontent.com/facebook/flow/master/lib/react.js. 8 | */ 9 | 10 | /** 11 | * A UI node that can be rendered by React. React can render most primitives in 12 | * addition to elements and arrays of nodes. 13 | */ 14 | declare type React$Node = 15 | | void 16 | | null 17 | | boolean 18 | | number 19 | | string 20 | | React$Element 21 | | React$Portal 22 | | Iterable; 23 | 24 | /** 25 | * Base class of ES6 React classes, modeled as a polymorphic class whose main 26 | * type parameters are Props and State. 27 | */ 28 | declare class React$Component { 29 | // fields 30 | 31 | props: Props; 32 | state: State; 33 | 34 | // action methods 35 | 36 | setState( 37 | partialState: $Shape | ((State, Props) => $Shape | void), 38 | callback?: () => mixed, 39 | ): void; 40 | 41 | forceUpdate(callback?: () => void): void; 42 | 43 | // lifecycle methods 44 | 45 | constructor(props?: Props, context?: any): void; 46 | render(): React$Node; 47 | componentWillMount(): mixed; 48 | componentDidMount(): mixed; 49 | componentWillReceiveProps( 50 | nextProps: Props, 51 | nextContext: any, 52 | ): mixed; 53 | shouldComponentUpdate( 54 | nextProps: Props, 55 | nextState: State, 56 | nextContext: any, 57 | ): boolean; 58 | componentWillUpdate( 59 | nextProps: Props, 60 | nextState: State, 61 | nextContext: any, 62 | ): mixed; 63 | componentDidUpdate( 64 | prevProps: Props, 65 | prevState: State, 66 | prevContext: any, 67 | ): mixed; 68 | componentWillUnmount(): mixed; 69 | 70 | // long tail of other stuff not modeled very well 71 | 72 | refs: any; 73 | context: any; 74 | getChildContext(): any; 75 | static displayName?: ?string; 76 | static childContextTypes: any; 77 | static contextTypes: any; 78 | static propTypes: $Subtype<{[_: $Keys]: any}>; 79 | 80 | // We don't add a type for `defaultProps` so that its type may be entirely 81 | // inferred when we diff the type for `defaultProps` with `Props`. Otherwise 82 | // the user would need to define a type (which would be redundant) to override 83 | // the type we provide here in the base class. 84 | // 85 | // static defaultProps: $Shape; 86 | } 87 | 88 | declare class React$PureComponent 89 | extends React$Component { 90 | // TODO: Due to bugs in Flow's handling of React.createClass, some fields 91 | // already declared in the base class need to be redeclared below. Ideally 92 | // they should simply be inherited. 93 | 94 | props: Props; 95 | state: State; 96 | } 97 | 98 | /** 99 | * Base class of legacy React classes, which extends the base class of ES6 React 100 | * classes and supports additional methods. 101 | */ 102 | declare class LegacyReactComponent 103 | extends React$Component { 104 | // additional methods 105 | 106 | replaceState(state: State, callback?: () => void): void; 107 | 108 | isMounted(): bool; 109 | 110 | // TODO: Due to bugs in Flow's handling of React.createClass, some fields 111 | // already declared in the base class need to be redeclared below. Ideally 112 | // they should simply be inherited. 113 | 114 | props: Props; 115 | state: State; 116 | } 117 | 118 | /** 119 | * The type of a stateless functional component. In most cases these components 120 | * are a single function. However, they may have some static properties that we 121 | * can type check. 122 | */ 123 | declare type React$StatelessFunctionalComponent = { 124 | (props: Props, context: any): React$Node, 125 | displayName?: ?string, 126 | propTypes?: $Subtype<{[_: $Keys]: any}>, 127 | contextTypes?: any 128 | }; 129 | 130 | /** 131 | * The type of a component in React. A React component may be a: 132 | * 133 | * - Stateless functional components. Functions that take in props as an 134 | * argument and return a React node. 135 | * - ES6 class component. Components with state defined either using the ES6 136 | * class syntax, or with the legacy `React.createClass()` helper. 137 | */ 138 | declare type React$ComponentType = 139 | | React$StatelessFunctionalComponent 140 | | Class>; 141 | 142 | /** 143 | * The type of an element in React. A React element may be a: 144 | * 145 | * - String. These elements are intrinsics that depend on the React renderer 146 | * implementation. 147 | * - React component. See `ComponentType` for more information about its 148 | * different variants. 149 | */ 150 | declare type React$ElementType = 151 | | string 152 | | React$StatelessFunctionalComponent 153 | | Class>; 154 | 155 | /** 156 | * Type of a React element. React elements are commonly created using JSX 157 | * literals, which desugar to React.createElement calls (see below). 158 | */ 159 | declare type React$Element<+ElementType: React$ElementType> = {| 160 | +type: ElementType, 161 | +props: React$ElementProps, 162 | +key: React$Key | null, 163 | +ref: any, 164 | |}; 165 | 166 | /** 167 | * The type of the key that React uses to determine where items in a new list 168 | * have moved. 169 | */ 170 | declare type React$Key = string | number; 171 | 172 | /** 173 | * The type of the ref prop available on all React components. 174 | */ 175 | declare type React$Ref = 176 | | ((React$ElementRef | null) => mixed) 177 | | string; 178 | 179 | /** 180 | * A React portal node. The implementation of the portal node is hidden to React 181 | * users so we use an opaque type. 182 | */ 183 | declare opaque type React$Portal; 184 | 185 | declare module react { 186 | declare export var DOM: any; 187 | declare export var PropTypes: ReactPropTypes; 188 | declare export var version: string; 189 | 190 | declare export function initializeTouchEvents(shouldUseTouch: boolean): void; 191 | 192 | declare export function checkPropTypes( 193 | propTypes: $Subtype<{[_: $Keys]: ReactPropsCheckType}>, 194 | values: V, 195 | location: string, 196 | componentName: string, 197 | getStack: ?(() => ?string) 198 | ) : void; 199 | 200 | declare export var createClass: React$CreateClass; 201 | declare export var createElement: React$CreateElement; 202 | declare export var cloneElement: React$CloneElement; 203 | declare export function createFactory( 204 | type: ElementType, 205 | ): React$ElementFactory; 206 | 207 | declare export function isValidElement(element: any): boolean; 208 | 209 | declare export var Component: typeof React$Component; 210 | declare export var PureComponent: typeof React$PureComponent; 211 | declare export type StatelessFunctionalComponent

= 212 | React$StatelessFunctionalComponent

; 213 | declare export type ComponentType

= React$ComponentType

; 214 | declare export type ElementType = React$ElementType; 215 | declare export type Element<+C> = React$Element; 216 | declare export var Fragment: ({children: React$Node}) => React$Node; 217 | declare export type Key = React$Key; 218 | declare export type Ref = React$Ref; 219 | declare export type Node = React$Node; 220 | declare export type Portal = React$Portal; 221 | 222 | declare export type ElementProps = React$ElementProps; 223 | declare export type ElementConfig = React$ElementConfig; 224 | declare export type ElementRef = React$ElementRef; 225 | 226 | declare export type ChildrenArray<+T> = $ReadOnlyArray> | T; 227 | declare export var Children: { 228 | map( 229 | children: ChildrenArray, 230 | fn: (child: $NonMaybeType, index: number) => U, 231 | thisArg?: mixed, 232 | ): Array<$NonMaybeType>; 233 | forEach( 234 | children: ChildrenArray, 235 | fn: (child: T, index: number) => mixed, 236 | thisArg?: mixed, 237 | ): void; 238 | count(children: ChildrenArray): number; 239 | only(children: ChildrenArray): $NonMaybeType; 240 | toArray(children: ChildrenArray): Array<$NonMaybeType>; 241 | }; 242 | 243 | declare export default {| 244 | +DOM: typeof DOM, 245 | +PropTypes: typeof PropTypes, 246 | +version: typeof version, 247 | +initializeTouchEvents: typeof initializeTouchEvents, 248 | +checkPropTypes: typeof checkPropTypes, 249 | +createClass: typeof createClass, 250 | +createElement: typeof createElement, 251 | +cloneElement: typeof cloneElement, 252 | +createFactory: typeof createFactory, 253 | +isValidElement: typeof isValidElement, 254 | +Component: typeof Component, 255 | +PureComponent: typeof PureComponent, 256 | +Children: typeof Children, 257 | |}; 258 | } 259 | 260 | // TODO Delete this once https://github.com/facebook/react/pull/3031 lands 261 | // and "react" becomes the standard name for this module 262 | declare module React { 263 | declare module.exports: $Exports<'react'>; 264 | } 265 | 266 | type ReactPropsCheckType = ( 267 | props: any, 268 | propName: string, 269 | componentName: string, 270 | href?: string) => ?Error; 271 | 272 | type ReactPropsChainableTypeChecker = { 273 | isRequired: ReactPropsCheckType; 274 | (props: any, propName: string, componentName: string, href?: string): ?Error; 275 | }; 276 | 277 | type React$PropTypes$arrayOf = 278 | (typeChecker: ReactPropsCheckType) => ReactPropsChainableTypeChecker; 279 | type React$PropTypes$instanceOf = 280 | (expectedClass: any) => ReactPropsChainableTypeChecker; 281 | type React$PropTypes$objectOf = 282 | (typeChecker: ReactPropsCheckType) => ReactPropsChainableTypeChecker; 283 | type React$PropTypes$oneOf = 284 | (expectedValues: Array) => ReactPropsChainableTypeChecker; 285 | type React$PropTypes$oneOfType = 286 | (arrayOfTypeCheckers: Array) => 287 | ReactPropsChainableTypeChecker; 288 | type React$PropTypes$shape = 289 | (shapeTypes: { [key: string]: ReactPropsCheckType }) => 290 | ReactPropsChainableTypeChecker; 291 | 292 | type ReactPropTypes = { 293 | array: React$PropType$Primitive>; 294 | bool: React$PropType$Primitive; 295 | func: React$PropType$Primitive; 296 | number: React$PropType$Primitive; 297 | object: React$PropType$Primitive; 298 | string: React$PropType$Primitive; 299 | any: React$PropType$Primitive; 300 | arrayOf: React$PropType$ArrayOf; 301 | element: React$PropType$Primitive; /* TODO */ 302 | instanceOf: React$PropType$InstanceOf; 303 | node: React$PropType$Primitive; /* TODO */ 304 | objectOf: React$PropType$ObjectOf; 305 | oneOf: React$PropType$OneOf; 306 | oneOfType: React$PropType$OneOfType; 307 | shape: React$PropType$Shape; 308 | } 309 | -------------------------------------------------------------------------------- /test/e2e/flow-react/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcherny/flow-to-typescript/386b34b810822f027a98da6e25a36bf68556d0a6/test/e2e/flow-react/output.txt -------------------------------------------------------------------------------- /test/rules/$Exact/input.txt: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | 3 | type A = $Exact 4 | -------------------------------------------------------------------------------- /test/rules/$Exact/output.txt: -------------------------------------------------------------------------------- 1 | type A = B; 2 | -------------------------------------------------------------------------------- /test/rules/$ReadOnly/input.txt: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | 3 | type A = $ReadOnly 4 | -------------------------------------------------------------------------------- /test/rules/$ReadOnly/output.txt: -------------------------------------------------------------------------------- 1 | type A = Readonly; 2 | -------------------------------------------------------------------------------- /test/rules/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcherny/flow-to-typescript/386b34b810822f027a98da6e25a36bf68556d0a6/test/rules/.flowconfig -------------------------------------------------------------------------------- /test/rules/Bounds/input.txt: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | 3 | type Bounds = A 4 | -------------------------------------------------------------------------------- /test/rules/Bounds/output.txt: -------------------------------------------------------------------------------- 1 | type Bounds = A; 2 | -------------------------------------------------------------------------------- /test/rules/Casting/input.txt: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | 3 | let Casting = (42: number) 4 | -------------------------------------------------------------------------------- /test/rules/Casting/output.txt: -------------------------------------------------------------------------------- 1 | let Casting = (42 as number); 2 | -------------------------------------------------------------------------------- /test/rules/Exact/input.txt: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | 3 | type Exact = {| a: number, b: string |} 4 | -------------------------------------------------------------------------------- /test/rules/Exact/output.txt: -------------------------------------------------------------------------------- 1 | type Exact = { a: number;, 2 | b: string;, 3 | }; 4 | -------------------------------------------------------------------------------- /test/rules/Functions/input.txt: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | 3 | type Functions1 = (number, string) => string 4 | 5 | type Functions2 = (a: number, string) => string 6 | -------------------------------------------------------------------------------- /test/rules/Functions/output.txt: -------------------------------------------------------------------------------- 1 | type Functions1 = (a: number, b: string) => string; 2 | type Functions2 = (a: number, b: string) => string; 3 | -------------------------------------------------------------------------------- /test/rules/Indexers/input.txt: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | 3 | type Indexer = { [string]: boolean } 4 | -------------------------------------------------------------------------------- /test/rules/Indexers/output.txt: -------------------------------------------------------------------------------- 1 | type Indexer = { 2 | [a: string]: boolean 3 | }; 4 | -------------------------------------------------------------------------------- /test/rules/Maybe/input.txt: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | 3 | function Maybe(x: ?string): string { 4 | if (x) { 5 | return x; 6 | } 7 | return "default string"; 8 | } 9 | -------------------------------------------------------------------------------- /test/rules/Maybe/output.txt: -------------------------------------------------------------------------------- 1 | function Maybe(x: string | null | undefined): string { 2 | if (x) { 3 | return x; 4 | } 5 | 6 | return "default string"; 7 | } 8 | -------------------------------------------------------------------------------- /test/rules/Mixed/input.txt: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | 3 | function Mixed(x: mixed): string { 4 | return `default string ${x}`; 5 | } 6 | -------------------------------------------------------------------------------- /test/rules/Mixed/output.txt: -------------------------------------------------------------------------------- 1 | function Mixed(x: {}): string { 2 | return `default string ${x}`; 3 | } 4 | -------------------------------------------------------------------------------- /test/rules/Opaque/input.txt: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | 3 | opaque type Opaque = number 4 | -------------------------------------------------------------------------------- /test/rules/Opaque/output.txt: -------------------------------------------------------------------------------- 1 | type Opaque = number; 2 | -------------------------------------------------------------------------------- /test/rules/TypeImport/input.txt: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | 3 | import type A from "./a" 4 | import type { B } from "./b" 5 | import type { C, D } from "./c" 6 | import type E, { F, G } from "./d" 7 | -------------------------------------------------------------------------------- /test/rules/TypeImport/output.txt: -------------------------------------------------------------------------------- 1 | import A from "./a"; 2 | import { B } from "./b"; 3 | import { C, D } from "./c"; 4 | import E, { F, G } from "./d"; 5 | -------------------------------------------------------------------------------- /test/rules/Undefined/input.txt: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | 3 | function Undefined(x: void): string { 4 | return x || "default string"; 5 | } 6 | -------------------------------------------------------------------------------- /test/rules/Undefined/output.txt: -------------------------------------------------------------------------------- 1 | function Undefined(x: undefined): string { 2 | return x || "default string"; 3 | } 4 | -------------------------------------------------------------------------------- /test/rules/Variance/input.txt: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | 3 | interface Variance { 4 | +a: string, 5 | -b: number 6 | } 7 | -------------------------------------------------------------------------------- /test/rules/Variance/output.txt: -------------------------------------------------------------------------------- 1 | interface Variance { a: string;, 2 | readonly b: number;, 3 | } 4 | -------------------------------------------------------------------------------- /test/rules/_$Keys/input.txt: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | 3 | type A = B | $Keys 4 | -------------------------------------------------------------------------------- /test/rules/_$Keys/output.txt: -------------------------------------------------------------------------------- 1 | type A = B | keyof A; 2 | -------------------------------------------------------------------------------- /test/rules/tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "rules": { 3 | "class-name": true, 4 | "comment-format": [ 5 | true, 6 | "check-space" 7 | ], 8 | "eofline": true, 9 | "indent": [ 10 | true, 11 | "spaces" 12 | ], 13 | "linebreak-style": [ 14 | true, 15 | "LF" 16 | ], 17 | "member-access": false, 18 | "no-angle-bracket-type-assertion": true, 19 | "no-bitwise": true, 20 | "no-consecutive-blank-lines": [ 21 | true 22 | ], 23 | "no-debugger": true, 24 | "no-default-export": false, 25 | "no-duplicate-key": true, 26 | "no-duplicate-variable": true, 27 | "no-eval": true, 28 | "no-internal-module": true, 29 | "no-invalid-this": true, 30 | "no-reference": true, 31 | "no-trailing-whitespace": true, 32 | "no-unused-expression": true, 33 | "no-unused-new": true, 34 | "no-var-keyword": true, 35 | "object-literal-key-quotes": [ 36 | true, 37 | "as-needed" 38 | ], 39 | "object-literal-shorthand": true, 40 | "object-literal-sort-keys": true, 41 | "one-line": [ 42 | true, 43 | "check-catch", 44 | "check-finally", 45 | "check-else", 46 | "check-open-brace" 47 | ], 48 | "one-variable-per-declaration": [ 49 | true, 50 | "ignore-for-loop" 51 | ], 52 | "ordered-imports": [ 53 | true 54 | ], 55 | "quotemark": [ 56 | true, 57 | "double" 58 | ], 59 | "semicolon": [ 60 | false 61 | ], 62 | "trailing-comma": [ 63 | true, 64 | { 65 | "multiline": "never", 66 | "singleline": "never" 67 | } 68 | ], 69 | "triple-equals": [ 70 | true, 71 | "allow-null-check" 72 | ], 73 | "use-isnan": true, 74 | "whitespace": [ 75 | true, 76 | "check-branch", 77 | "check-decl", 78 | "check-module", 79 | "check-operator", 80 | "check-separator", 81 | "check-type" 82 | ] 83 | } 84 | } 85 | -------------------------------------------------------------------------------- /test/test.ts: -------------------------------------------------------------------------------- 1 | import { test } from 'ava' 2 | import { sync } from 'glob' 3 | import { readFile } from 'mz/fs' 4 | import { basename, resolve } from 'path' 5 | import { compile } from '../src' 6 | 7 | let paths = ['e2e', 'rules', 'unit'] 8 | 9 | paths.forEach(path => { 10 | // TODO: Why does glob catch tslint.json even with the trailing slash? 11 | let folders = sync(resolve(__dirname, `../../test/${path}/*/`)) 12 | .filter(_ => !_.endsWith('.json')) 13 | .filter(_ => !basename(_).startsWith('_')) 14 | 15 | folders.forEach(folder => 16 | test(basename(folder), async t => { 17 | try { 18 | let filein = resolve(folder, 'input.txt') 19 | let input = await readFile(filein, 'utf-8') 20 | let output = await readFile(resolve(folder, 'output.txt'), 'utf-8') 21 | t.is(await compile(input, filein), output) 22 | } catch (e) { 23 | console.log('error', e) 24 | } 25 | }) 26 | ) 27 | }) 28 | -------------------------------------------------------------------------------- /test/unit/Types/input.txt: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | 3 | type A = void 4 | type B = null 5 | type C = boolean 6 | type D = number 7 | type E = string 8 | type F = ?string 9 | type G = { 10 | a: number 11 | } 12 | type H = { 13 | a: number, 14 | b: ?string 15 | } 16 | type I = { 17 | a(b: T, c: U | number): T; 18 | } -------------------------------------------------------------------------------- /test/unit/Types/output.txt: -------------------------------------------------------------------------------- 1 | type A = undefined; 2 | type B = null; 3 | type C = boolean; 4 | type D = number; 5 | type E = string; 6 | type F = string | null | undefined; 7 | type G = { a: number; 8 | }; 9 | type H = { a: number;, 10 | b: string | null | undefined;, 11 | }; 12 | type I = { a: (b: T, c: U | number) => T; 13 | }; 14 | -------------------------------------------------------------------------------- /test/unit/Union/input.txt: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | 3 | type A = boolean | number 4 | type B = boolean | number | string | object 5 | -------------------------------------------------------------------------------- /test/unit/Union/output.txt: -------------------------------------------------------------------------------- 1 | type A = boolean | number; 2 | type B = boolean | number | string | object; 3 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "declaration": false, 4 | "lib": [ 5 | "es2015" 6 | ], 7 | "module": "commonjs", 8 | "moduleResolution": "node", 9 | "noFallthroughCasesInSwitch": true, 10 | "noImplicitAny": true, 11 | "noUnusedLocals": true, 12 | "noUnusedParameters": true, 13 | "outDir": "dist", 14 | "preserveConstEnums": false, 15 | "sourceMap": true, 16 | "strict": true, 17 | "target": "es2015" 18 | }, 19 | "exclude": [ 20 | "**/*.js.flow" 21 | ] 22 | } 23 | -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "rules": { 3 | "class-name": true, 4 | "comment-format": [true, "check-space"], 5 | "eofline": true, 6 | "indent": [true, "spaces"], 7 | "linebreak-style": [true, "LF"], 8 | "member-access": false, 9 | "no-angle-bracket-type-assertion": true, 10 | "no-bitwise": true, 11 | "no-consecutive-blank-lines": [true], 12 | "no-debugger": true, 13 | "no-default-export": true, 14 | "no-duplicate-variable": true, 15 | "no-eval": true, 16 | "no-internal-module": true, 17 | "no-invalid-this": true, 18 | "no-reference": true, 19 | "no-trailing-whitespace": true, 20 | "no-unused-expression": true, 21 | "no-var-keyword": true, 22 | "object-literal-key-quotes": [true, "as-needed"], 23 | "object-literal-shorthand": true, 24 | "object-literal-sort-keys": true, 25 | "one-line": [true, "check-catch", "check-finally", "check-else", "check-open-brace"], 26 | "one-variable-per-declaration": [true, "ignore-for-loop"], 27 | "ordered-imports": [true], 28 | "quotemark": [true, "single"], 29 | "semicolon": [true, "never"], 30 | "trailing-comma": [true, {"multiline": "never", "singleline": "never"}], 31 | "triple-equals": [true, "allow-null-check"], 32 | "use-isnan": true, 33 | "whitespace": [true, "check-branch", "check-decl", "check-module", "check-operator", "check-separator", "check-type"] 34 | } 35 | } -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@ava/babel-plugin-throws-helper@^2.0.0": 6 | version "2.0.0" 7 | resolved "https://registry.yarnpkg.com/@ava/babel-plugin-throws-helper/-/babel-plugin-throws-helper-2.0.0.tgz#2fc1fe3c211a71071a4eca7b8f7af5842cd1ae7c" 8 | 9 | "@ava/babel-preset-stage-4@^1.1.0": 10 | version "1.1.0" 11 | resolved "https://registry.yarnpkg.com/@ava/babel-preset-stage-4/-/babel-preset-stage-4-1.1.0.tgz#ae60be881a0babf7d35f52aba770d1f6194f76bd" 12 | dependencies: 13 | babel-plugin-check-es2015-constants "^6.8.0" 14 | babel-plugin-syntax-trailing-function-commas "^6.20.0" 15 | babel-plugin-transform-async-to-generator "^6.16.0" 16 | babel-plugin-transform-es2015-destructuring "^6.19.0" 17 | babel-plugin-transform-es2015-function-name "^6.9.0" 18 | babel-plugin-transform-es2015-modules-commonjs "^6.18.0" 19 | babel-plugin-transform-es2015-parameters "^6.21.0" 20 | babel-plugin-transform-es2015-spread "^6.8.0" 21 | babel-plugin-transform-es2015-sticky-regex "^6.8.0" 22 | babel-plugin-transform-es2015-unicode-regex "^6.11.0" 23 | babel-plugin-transform-exponentiation-operator "^6.8.0" 24 | package-hash "^1.2.0" 25 | 26 | "@ava/babel-preset-transform-test-files@^3.0.0": 27 | version "3.0.0" 28 | resolved "https://registry.yarnpkg.com/@ava/babel-preset-transform-test-files/-/babel-preset-transform-test-files-3.0.0.tgz#cded1196a8d8d9381a509240ab92e91a5ec069f7" 29 | dependencies: 30 | "@ava/babel-plugin-throws-helper" "^2.0.0" 31 | babel-plugin-espower "^2.3.2" 32 | 33 | "@ava/write-file-atomic@^2.2.0": 34 | version "2.2.0" 35 | resolved "https://registry.yarnpkg.com/@ava/write-file-atomic/-/write-file-atomic-2.2.0.tgz#d625046f3495f1f5e372135f473909684b429247" 36 | dependencies: 37 | graceful-fs "^4.1.11" 38 | imurmurhash "^0.1.4" 39 | slide "^1.1.5" 40 | 41 | "@babel/code-frame@7.0.0-beta.38": 42 | version "7.0.0-beta.38" 43 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0-beta.38.tgz#c0af5930617e55e050336838e3a3670983b0b2b2" 44 | dependencies: 45 | chalk "^2.0.0" 46 | esutils "^2.0.2" 47 | js-tokens "^3.0.0" 48 | 49 | "@babel/generator@7.0.0-beta.38": 50 | version "7.0.0-beta.38" 51 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.0.0-beta.38.tgz#6115a66663e3adfd1d6844029ffb2354680182eb" 52 | dependencies: 53 | "@babel/types" "7.0.0-beta.38" 54 | jsesc "^2.5.1" 55 | lodash "^4.2.0" 56 | source-map "^0.5.0" 57 | trim-right "^1.0.1" 58 | 59 | "@babel/helper-function-name@7.0.0-beta.38": 60 | version "7.0.0-beta.38" 61 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.0.0-beta.38.tgz#dc6e74930efc7b0236b5ba72a633d34c778ba015" 62 | dependencies: 63 | "@babel/helper-get-function-arity" "7.0.0-beta.38" 64 | "@babel/template" "7.0.0-beta.38" 65 | "@babel/types" "7.0.0-beta.38" 66 | 67 | "@babel/helper-get-function-arity@7.0.0-beta.38": 68 | version "7.0.0-beta.38" 69 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0-beta.38.tgz#5c27de7641ac31da6e947dcc8009bd31282d9d84" 70 | dependencies: 71 | "@babel/types" "7.0.0-beta.38" 72 | 73 | "@babel/template@7.0.0-beta.38": 74 | version "7.0.0-beta.38" 75 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.0.0-beta.38.tgz#8a2d403a01da320beb8333dc6403500fa79e8597" 76 | dependencies: 77 | "@babel/code-frame" "7.0.0-beta.38" 78 | "@babel/types" "7.0.0-beta.38" 79 | babylon "7.0.0-beta.38" 80 | lodash "^4.2.0" 81 | 82 | "@babel/traverse@7.0.0-beta.38": 83 | version "7.0.0-beta.38" 84 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.0.0-beta.38.tgz#56462b91753dd5c6faf36e56a77c64077ddb85b8" 85 | dependencies: 86 | "@babel/code-frame" "7.0.0-beta.38" 87 | "@babel/generator" "7.0.0-beta.38" 88 | "@babel/helper-function-name" "7.0.0-beta.38" 89 | "@babel/types" "7.0.0-beta.38" 90 | babylon "7.0.0-beta.38" 91 | debug "^3.0.1" 92 | globals "^11.1.0" 93 | invariant "^2.2.0" 94 | lodash "^4.2.0" 95 | 96 | "@babel/types@7.0.0-beta.38": 97 | version "7.0.0-beta.38" 98 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.0.0-beta.38.tgz#2ce2443f7dc6ad535a67db4940cbd34e64035a6f" 99 | dependencies: 100 | esutils "^2.0.2" 101 | lodash "^4.2.0" 102 | to-fast-properties "^2.0.0" 103 | 104 | "@concordance/react@^1.0.0": 105 | version "1.0.0" 106 | resolved "https://registry.yarnpkg.com/@concordance/react/-/react-1.0.0.tgz#fcf3cad020e5121bfd1c61d05bc3516aac25f734" 107 | dependencies: 108 | arrify "^1.0.1" 109 | 110 | "@types/events@*": 111 | version "1.1.0" 112 | resolved "https://registry.yarnpkg.com/@types/events/-/events-1.1.0.tgz#93b1be91f63c184450385272c47b6496fd028e02" 113 | 114 | "@types/glob@^5.0.33": 115 | version "5.0.34" 116 | resolved "https://registry.yarnpkg.com/@types/glob/-/glob-5.0.34.tgz#ee626c9be3da877d717911c6101eee0a9871bbf4" 117 | dependencies: 118 | "@types/events" "*" 119 | "@types/minimatch" "*" 120 | "@types/node" "*" 121 | 122 | "@types/lodash@^4.14.86": 123 | version "4.14.91" 124 | resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.91.tgz#794611b28056d16b5436059c6d800b39d573cd3a" 125 | 126 | "@types/minimatch@*": 127 | version "3.0.2" 128 | resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.2.tgz#09c06877e478a5d5f32ce5017c2eb2b33006f6f5" 129 | 130 | "@types/minimist@^1.2.0": 131 | version "1.2.0" 132 | resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.0.tgz#69a23a3ad29caf0097f06eda59b361ee2f0639f6" 133 | 134 | "@types/mz@^0.0.32": 135 | version "0.0.32" 136 | resolved "https://registry.yarnpkg.com/@types/mz/-/mz-0.0.32.tgz#e8248b4e41424c052edc1725dd33650c313a3659" 137 | dependencies: 138 | "@types/node" "*" 139 | 140 | "@types/node@*": 141 | version "8.5.1" 142 | resolved "https://registry.yarnpkg.com/@types/node/-/node-8.5.1.tgz#4ec3020bcdfe2abffeef9ba3fbf26fca097514b5" 143 | 144 | abbrev@1: 145 | version "1.1.1" 146 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 147 | 148 | ajv@^4.9.1: 149 | version "4.11.8" 150 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 151 | dependencies: 152 | co "^4.6.0" 153 | json-stable-stringify "^1.0.1" 154 | 155 | ansi-align@^2.0.0: 156 | version "2.0.0" 157 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" 158 | dependencies: 159 | string-width "^2.0.0" 160 | 161 | ansi-escapes@^3.0.0: 162 | version "3.0.0" 163 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92" 164 | 165 | ansi-regex@^0.2.0, ansi-regex@^0.2.1: 166 | version "0.2.1" 167 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-0.2.1.tgz#0d8e946967a3d8143f93e24e298525fc1b2235f9" 168 | 169 | ansi-regex@^2.0.0: 170 | version "2.1.1" 171 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 172 | 173 | ansi-regex@^3.0.0: 174 | version "3.0.0" 175 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 176 | 177 | ansi-styles@^1.1.0: 178 | version "1.1.0" 179 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-1.1.0.tgz#eaecbf66cd706882760b2f4691582b8f55d7a7de" 180 | 181 | ansi-styles@^2.2.1: 182 | version "2.2.1" 183 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 184 | 185 | ansi-styles@^3.1.0: 186 | version "3.2.0" 187 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 188 | dependencies: 189 | color-convert "^1.9.0" 190 | 191 | ansi-styles@~1.0.0: 192 | version "1.0.0" 193 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-1.0.0.tgz#cb102df1c56f5123eab8b67cd7b98027a0279178" 194 | 195 | any-promise@^1.0.0: 196 | version "1.3.0" 197 | resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" 198 | 199 | anymatch@^1.3.0: 200 | version "1.3.2" 201 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 202 | dependencies: 203 | micromatch "^2.1.5" 204 | normalize-path "^2.0.0" 205 | 206 | aproba@^1.0.3: 207 | version "1.2.0" 208 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 209 | 210 | are-we-there-yet@~1.1.2: 211 | version "1.1.4" 212 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 213 | dependencies: 214 | delegates "^1.0.0" 215 | readable-stream "^2.0.6" 216 | 217 | argparse@^1.0.7: 218 | version "1.0.9" 219 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 220 | dependencies: 221 | sprintf-js "~1.0.2" 222 | 223 | arr-diff@^2.0.0: 224 | version "2.0.0" 225 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 226 | dependencies: 227 | arr-flatten "^1.0.1" 228 | 229 | arr-exclude@^1.0.0: 230 | version "1.0.0" 231 | resolved "https://registry.yarnpkg.com/arr-exclude/-/arr-exclude-1.0.0.tgz#dfc7c2e552a270723ccda04cf3128c8cbfe5c631" 232 | 233 | arr-flatten@^1.0.1: 234 | version "1.1.0" 235 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 236 | 237 | array-differ@^1.0.0: 238 | version "1.0.0" 239 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" 240 | 241 | array-find-index@^1.0.1: 242 | version "1.0.2" 243 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 244 | 245 | array-union@^1.0.1: 246 | version "1.0.2" 247 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 248 | dependencies: 249 | array-uniq "^1.0.1" 250 | 251 | array-uniq@^1.0.1, array-uniq@^1.0.2: 252 | version "1.0.3" 253 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 254 | 255 | array-unique@^0.2.1: 256 | version "0.2.1" 257 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 258 | 259 | arrify@^1.0.0, arrify@^1.0.1: 260 | version "1.0.1" 261 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 262 | 263 | asn1@~0.2.3: 264 | version "0.2.3" 265 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 266 | 267 | assert-plus@1.0.0, assert-plus@^1.0.0: 268 | version "1.0.0" 269 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 270 | 271 | assert-plus@^0.2.0: 272 | version "0.2.0" 273 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 274 | 275 | async-each@^1.0.0: 276 | version "1.0.1" 277 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 278 | 279 | asynckit@^0.4.0: 280 | version "0.4.0" 281 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 282 | 283 | auto-bind@^1.1.0: 284 | version "1.1.0" 285 | resolved "https://registry.yarnpkg.com/auto-bind/-/auto-bind-1.1.0.tgz#93b864dc7ee01a326281775d5c75ca0a751e5961" 286 | 287 | ava-init@^0.2.0: 288 | version "0.2.1" 289 | resolved "https://registry.yarnpkg.com/ava-init/-/ava-init-0.2.1.tgz#75ac4c8553326290d2866e63b62fa7035684bd58" 290 | dependencies: 291 | arr-exclude "^1.0.0" 292 | execa "^0.7.0" 293 | has-yarn "^1.0.0" 294 | read-pkg-up "^2.0.0" 295 | write-pkg "^3.1.0" 296 | 297 | ava@^0.24.0: 298 | version "0.24.0" 299 | resolved "https://registry.yarnpkg.com/ava/-/ava-0.24.0.tgz#dd0ab33a0b3ad2ac582f55e9a61caf8bcf7a9af1" 300 | dependencies: 301 | "@ava/babel-preset-stage-4" "^1.1.0" 302 | "@ava/babel-preset-transform-test-files" "^3.0.0" 303 | "@ava/write-file-atomic" "^2.2.0" 304 | "@concordance/react" "^1.0.0" 305 | ansi-escapes "^3.0.0" 306 | ansi-styles "^3.1.0" 307 | arr-flatten "^1.0.1" 308 | array-union "^1.0.1" 309 | array-uniq "^1.0.2" 310 | arrify "^1.0.0" 311 | auto-bind "^1.1.0" 312 | ava-init "^0.2.0" 313 | babel-core "^6.17.0" 314 | babel-generator "^6.26.0" 315 | babel-plugin-syntax-object-rest-spread "^6.13.0" 316 | bluebird "^3.0.0" 317 | caching-transform "^1.0.0" 318 | chalk "^2.0.1" 319 | chokidar "^1.4.2" 320 | clean-stack "^1.1.1" 321 | clean-yaml-object "^0.1.0" 322 | cli-cursor "^2.1.0" 323 | cli-spinners "^1.0.0" 324 | cli-truncate "^1.0.0" 325 | co-with-promise "^4.6.0" 326 | code-excerpt "^2.1.0" 327 | common-path-prefix "^1.0.0" 328 | concordance "^3.0.0" 329 | convert-source-map "^1.2.0" 330 | core-assert "^0.2.0" 331 | currently-unhandled "^0.4.1" 332 | debug "^3.0.1" 333 | dot-prop "^4.1.0" 334 | empower-core "^0.6.1" 335 | equal-length "^1.0.0" 336 | figures "^2.0.0" 337 | find-cache-dir "^1.0.0" 338 | fn-name "^2.0.0" 339 | get-port "^3.0.0" 340 | globby "^6.0.0" 341 | has-flag "^2.0.0" 342 | hullabaloo-config-manager "^1.1.0" 343 | ignore-by-default "^1.0.0" 344 | import-local "^0.1.1" 345 | indent-string "^3.0.0" 346 | is-ci "^1.0.7" 347 | is-generator-fn "^1.0.0" 348 | is-obj "^1.0.0" 349 | is-observable "^1.0.0" 350 | is-promise "^2.1.0" 351 | js-yaml "^3.8.2" 352 | last-line-stream "^1.0.0" 353 | lodash.clonedeepwith "^4.5.0" 354 | lodash.debounce "^4.0.3" 355 | lodash.difference "^4.3.0" 356 | lodash.flatten "^4.2.0" 357 | loud-rejection "^1.2.0" 358 | make-dir "^1.0.0" 359 | matcher "^1.0.0" 360 | md5-hex "^2.0.0" 361 | meow "^3.7.0" 362 | ms "^2.0.0" 363 | multimatch "^2.1.0" 364 | observable-to-promise "^0.5.0" 365 | option-chain "^1.0.0" 366 | package-hash "^2.0.0" 367 | pkg-conf "^2.0.0" 368 | plur "^2.0.0" 369 | pretty-ms "^3.0.0" 370 | require-precompiled "^0.1.0" 371 | resolve-cwd "^2.0.0" 372 | safe-buffer "^5.1.1" 373 | semver "^5.4.1" 374 | slash "^1.0.0" 375 | source-map-support "^0.5.0" 376 | stack-utils "^1.0.1" 377 | strip-ansi "^4.0.0" 378 | strip-bom-buf "^1.0.0" 379 | supports-color "^5.0.0" 380 | time-require "^0.1.2" 381 | trim-off-newlines "^1.0.1" 382 | unique-temp-dir "^1.0.0" 383 | update-notifier "^2.3.0" 384 | 385 | aws-sign2@~0.6.0: 386 | version "0.6.0" 387 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 388 | 389 | aws4@^1.2.1: 390 | version "1.6.0" 391 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 392 | 393 | babel-code-frame@^6.22.0, babel-code-frame@^6.26.0: 394 | version "6.26.0" 395 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 396 | dependencies: 397 | chalk "^1.1.3" 398 | esutils "^2.0.2" 399 | js-tokens "^3.0.2" 400 | 401 | babel-core@^6.17.0, babel-core@^6.26.0: 402 | version "6.26.0" 403 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 404 | dependencies: 405 | babel-code-frame "^6.26.0" 406 | babel-generator "^6.26.0" 407 | babel-helpers "^6.24.1" 408 | babel-messages "^6.23.0" 409 | babel-register "^6.26.0" 410 | babel-runtime "^6.26.0" 411 | babel-template "^6.26.0" 412 | babel-traverse "^6.26.0" 413 | babel-types "^6.26.0" 414 | babylon "^6.18.0" 415 | convert-source-map "^1.5.0" 416 | debug "^2.6.8" 417 | json5 "^0.5.1" 418 | lodash "^4.17.4" 419 | minimatch "^3.0.4" 420 | path-is-absolute "^1.0.1" 421 | private "^0.1.7" 422 | slash "^1.0.0" 423 | source-map "^0.5.6" 424 | 425 | babel-generator@^6.1.0, babel-generator@^6.26.0: 426 | version "6.26.0" 427 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 428 | dependencies: 429 | babel-messages "^6.23.0" 430 | babel-runtime "^6.26.0" 431 | babel-types "^6.26.0" 432 | detect-indent "^4.0.0" 433 | jsesc "^1.3.0" 434 | lodash "^4.17.4" 435 | source-map "^0.5.6" 436 | trim-right "^1.0.1" 437 | 438 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 439 | version "6.24.1" 440 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 441 | dependencies: 442 | babel-helper-explode-assignable-expression "^6.24.1" 443 | babel-runtime "^6.22.0" 444 | babel-types "^6.24.1" 445 | 446 | babel-helper-call-delegate@^6.24.1: 447 | version "6.24.1" 448 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 449 | dependencies: 450 | babel-helper-hoist-variables "^6.24.1" 451 | babel-runtime "^6.22.0" 452 | babel-traverse "^6.24.1" 453 | babel-types "^6.24.1" 454 | 455 | babel-helper-explode-assignable-expression@^6.24.1: 456 | version "6.24.1" 457 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 458 | dependencies: 459 | babel-runtime "^6.22.0" 460 | babel-traverse "^6.24.1" 461 | babel-types "^6.24.1" 462 | 463 | babel-helper-function-name@^6.24.1: 464 | version "6.24.1" 465 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 466 | dependencies: 467 | babel-helper-get-function-arity "^6.24.1" 468 | babel-runtime "^6.22.0" 469 | babel-template "^6.24.1" 470 | babel-traverse "^6.24.1" 471 | babel-types "^6.24.1" 472 | 473 | babel-helper-get-function-arity@^6.24.1: 474 | version "6.24.1" 475 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 476 | dependencies: 477 | babel-runtime "^6.22.0" 478 | babel-types "^6.24.1" 479 | 480 | babel-helper-hoist-variables@^6.24.1: 481 | version "6.24.1" 482 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 483 | dependencies: 484 | babel-runtime "^6.22.0" 485 | babel-types "^6.24.1" 486 | 487 | babel-helper-regex@^6.24.1: 488 | version "6.26.0" 489 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 490 | dependencies: 491 | babel-runtime "^6.26.0" 492 | babel-types "^6.26.0" 493 | lodash "^4.17.4" 494 | 495 | babel-helper-remap-async-to-generator@^6.24.1: 496 | version "6.24.1" 497 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 498 | dependencies: 499 | babel-helper-function-name "^6.24.1" 500 | babel-runtime "^6.22.0" 501 | babel-template "^6.24.1" 502 | babel-traverse "^6.24.1" 503 | babel-types "^6.24.1" 504 | 505 | babel-helpers@^6.24.1: 506 | version "6.24.1" 507 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 508 | dependencies: 509 | babel-runtime "^6.22.0" 510 | babel-template "^6.24.1" 511 | 512 | babel-messages@^6.23.0: 513 | version "6.23.0" 514 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 515 | dependencies: 516 | babel-runtime "^6.22.0" 517 | 518 | babel-plugin-check-es2015-constants@^6.8.0: 519 | version "6.22.0" 520 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 521 | dependencies: 522 | babel-runtime "^6.22.0" 523 | 524 | babel-plugin-espower@^2.3.2: 525 | version "2.3.2" 526 | resolved "https://registry.yarnpkg.com/babel-plugin-espower/-/babel-plugin-espower-2.3.2.tgz#5516b8fcdb26c9f0e1d8160749f6e4c65e71271e" 527 | dependencies: 528 | babel-generator "^6.1.0" 529 | babylon "^6.1.0" 530 | call-matcher "^1.0.0" 531 | core-js "^2.0.0" 532 | espower-location-detector "^1.0.0" 533 | espurify "^1.6.0" 534 | estraverse "^4.1.1" 535 | 536 | babel-plugin-syntax-async-functions@^6.8.0: 537 | version "6.13.0" 538 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 539 | 540 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 541 | version "6.13.0" 542 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 543 | 544 | babel-plugin-syntax-object-rest-spread@^6.13.0: 545 | version "6.13.0" 546 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 547 | 548 | babel-plugin-syntax-trailing-function-commas@^6.20.0: 549 | version "6.22.0" 550 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 551 | 552 | babel-plugin-transform-async-to-generator@^6.16.0: 553 | version "6.24.1" 554 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 555 | dependencies: 556 | babel-helper-remap-async-to-generator "^6.24.1" 557 | babel-plugin-syntax-async-functions "^6.8.0" 558 | babel-runtime "^6.22.0" 559 | 560 | babel-plugin-transform-es2015-destructuring@^6.19.0: 561 | version "6.23.0" 562 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 563 | dependencies: 564 | babel-runtime "^6.22.0" 565 | 566 | babel-plugin-transform-es2015-function-name@^6.9.0: 567 | version "6.24.1" 568 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 569 | dependencies: 570 | babel-helper-function-name "^6.24.1" 571 | babel-runtime "^6.22.0" 572 | babel-types "^6.24.1" 573 | 574 | babel-plugin-transform-es2015-modules-commonjs@^6.18.0: 575 | version "6.26.0" 576 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" 577 | dependencies: 578 | babel-plugin-transform-strict-mode "^6.24.1" 579 | babel-runtime "^6.26.0" 580 | babel-template "^6.26.0" 581 | babel-types "^6.26.0" 582 | 583 | babel-plugin-transform-es2015-parameters@^6.21.0: 584 | version "6.24.1" 585 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 586 | dependencies: 587 | babel-helper-call-delegate "^6.24.1" 588 | babel-helper-get-function-arity "^6.24.1" 589 | babel-runtime "^6.22.0" 590 | babel-template "^6.24.1" 591 | babel-traverse "^6.24.1" 592 | babel-types "^6.24.1" 593 | 594 | babel-plugin-transform-es2015-spread@^6.8.0: 595 | version "6.22.0" 596 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 597 | dependencies: 598 | babel-runtime "^6.22.0" 599 | 600 | babel-plugin-transform-es2015-sticky-regex@^6.8.0: 601 | version "6.24.1" 602 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 603 | dependencies: 604 | babel-helper-regex "^6.24.1" 605 | babel-runtime "^6.22.0" 606 | babel-types "^6.24.1" 607 | 608 | babel-plugin-transform-es2015-unicode-regex@^6.11.0: 609 | version "6.24.1" 610 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 611 | dependencies: 612 | babel-helper-regex "^6.24.1" 613 | babel-runtime "^6.22.0" 614 | regexpu-core "^2.0.0" 615 | 616 | babel-plugin-transform-exponentiation-operator@^6.8.0: 617 | version "6.24.1" 618 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 619 | dependencies: 620 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 621 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 622 | babel-runtime "^6.22.0" 623 | 624 | babel-plugin-transform-strict-mode@^6.24.1: 625 | version "6.24.1" 626 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 627 | dependencies: 628 | babel-runtime "^6.22.0" 629 | babel-types "^6.24.1" 630 | 631 | babel-register@^6.26.0: 632 | version "6.26.0" 633 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 634 | dependencies: 635 | babel-core "^6.26.0" 636 | babel-runtime "^6.26.0" 637 | core-js "^2.5.0" 638 | home-or-tmp "^2.0.0" 639 | lodash "^4.17.4" 640 | mkdirp "^0.5.1" 641 | source-map-support "^0.4.15" 642 | 643 | babel-runtime@^6.22.0, babel-runtime@^6.26.0: 644 | version "6.26.0" 645 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 646 | dependencies: 647 | core-js "^2.4.0" 648 | regenerator-runtime "^0.11.0" 649 | 650 | babel-template@^6.24.1, babel-template@^6.26.0: 651 | version "6.26.0" 652 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 653 | dependencies: 654 | babel-runtime "^6.26.0" 655 | babel-traverse "^6.26.0" 656 | babel-types "^6.26.0" 657 | babylon "^6.18.0" 658 | lodash "^4.17.4" 659 | 660 | babel-traverse@^6.24.1, babel-traverse@^6.26.0: 661 | version "6.26.0" 662 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 663 | dependencies: 664 | babel-code-frame "^6.26.0" 665 | babel-messages "^6.23.0" 666 | babel-runtime "^6.26.0" 667 | babel-types "^6.26.0" 668 | babylon "^6.18.0" 669 | debug "^2.6.8" 670 | globals "^9.18.0" 671 | invariant "^2.2.2" 672 | lodash "^4.17.4" 673 | 674 | babel-types@^6.24.1, babel-types@^6.26.0: 675 | version "6.26.0" 676 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 677 | dependencies: 678 | babel-runtime "^6.26.0" 679 | esutils "^2.0.2" 680 | lodash "^4.17.4" 681 | to-fast-properties "^1.0.3" 682 | 683 | babylon@7.0.0-beta.38: 684 | version "7.0.0-beta.38" 685 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-7.0.0-beta.38.tgz#9b3a33e571a47464a2d20cb9dd5a570f00e3f996" 686 | 687 | babylon@^6.1.0, babylon@^6.18.0: 688 | version "6.18.0" 689 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 690 | 691 | balanced-match@^1.0.0: 692 | version "1.0.0" 693 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 694 | 695 | bcrypt-pbkdf@^1.0.0: 696 | version "1.0.1" 697 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 698 | dependencies: 699 | tweetnacl "^0.14.3" 700 | 701 | binary-extensions@^1.0.0: 702 | version "1.11.0" 703 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 704 | 705 | block-stream@*: 706 | version "0.0.9" 707 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 708 | dependencies: 709 | inherits "~2.0.0" 710 | 711 | bluebird@^3.0.0: 712 | version "3.5.1" 713 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.1.tgz#d9551f9de98f1fcda1e683d17ee91a0602ee2eb9" 714 | 715 | boom@2.x.x: 716 | version "2.10.1" 717 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 718 | dependencies: 719 | hoek "2.x.x" 720 | 721 | boxen@^1.2.1: 722 | version "1.3.0" 723 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b" 724 | dependencies: 725 | ansi-align "^2.0.0" 726 | camelcase "^4.0.0" 727 | chalk "^2.0.1" 728 | cli-boxes "^1.0.0" 729 | string-width "^2.0.0" 730 | term-size "^1.2.0" 731 | widest-line "^2.0.0" 732 | 733 | brace-expansion@^1.1.7: 734 | version "1.1.8" 735 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 736 | dependencies: 737 | balanced-match "^1.0.0" 738 | concat-map "0.0.1" 739 | 740 | braces@^1.8.2: 741 | version "1.8.5" 742 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 743 | dependencies: 744 | expand-range "^1.8.1" 745 | preserve "^0.2.0" 746 | repeat-element "^1.1.2" 747 | 748 | buf-compare@^1.0.0: 749 | version "1.0.1" 750 | resolved "https://registry.yarnpkg.com/buf-compare/-/buf-compare-1.0.1.tgz#fef28da8b8113a0a0db4430b0b6467b69730b34a" 751 | 752 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 753 | version "1.1.1" 754 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 755 | 756 | caching-transform@^1.0.0: 757 | version "1.0.1" 758 | resolved "https://registry.yarnpkg.com/caching-transform/-/caching-transform-1.0.1.tgz#6dbdb2f20f8d8fbce79f3e94e9d1742dcdf5c0a1" 759 | dependencies: 760 | md5-hex "^1.2.0" 761 | mkdirp "^0.5.1" 762 | write-file-atomic "^1.1.4" 763 | 764 | call-matcher@^1.0.0: 765 | version "1.0.1" 766 | resolved "https://registry.yarnpkg.com/call-matcher/-/call-matcher-1.0.1.tgz#5134d077984f712a54dad3cbf62de28dce416ca8" 767 | dependencies: 768 | core-js "^2.0.0" 769 | deep-equal "^1.0.0" 770 | espurify "^1.6.0" 771 | estraverse "^4.0.0" 772 | 773 | call-signature@0.0.2: 774 | version "0.0.2" 775 | resolved "https://registry.yarnpkg.com/call-signature/-/call-signature-0.0.2.tgz#a84abc825a55ef4cb2b028bd74e205a65b9a4996" 776 | 777 | camelcase-keys@^2.0.0: 778 | version "2.1.0" 779 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 780 | dependencies: 781 | camelcase "^2.0.0" 782 | map-obj "^1.0.0" 783 | 784 | camelcase@^2.0.0: 785 | version "2.1.1" 786 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 787 | 788 | camelcase@^4.0.0: 789 | version "4.1.0" 790 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 791 | 792 | capture-stack-trace@^1.0.0: 793 | version "1.0.0" 794 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" 795 | 796 | caseless@~0.12.0: 797 | version "0.12.0" 798 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 799 | 800 | chalk@0.5.1: 801 | version "0.5.1" 802 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-0.5.1.tgz#663b3a648b68b55d04690d49167aa837858f2174" 803 | dependencies: 804 | ansi-styles "^1.1.0" 805 | escape-string-regexp "^1.0.0" 806 | has-ansi "^0.1.0" 807 | strip-ansi "^0.3.0" 808 | supports-color "^0.2.0" 809 | 810 | chalk@^0.4.0: 811 | version "0.4.0" 812 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-0.4.0.tgz#5199a3ddcd0c1efe23bc08c1b027b06176e0c64f" 813 | dependencies: 814 | ansi-styles "~1.0.0" 815 | has-color "~0.1.0" 816 | strip-ansi "~0.1.0" 817 | 818 | chalk@^1.1.3: 819 | version "1.1.3" 820 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 821 | dependencies: 822 | ansi-styles "^2.2.1" 823 | escape-string-regexp "^1.0.2" 824 | has-ansi "^2.0.0" 825 | strip-ansi "^3.0.0" 826 | supports-color "^2.0.0" 827 | 828 | chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0: 829 | version "2.3.0" 830 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba" 831 | dependencies: 832 | ansi-styles "^3.1.0" 833 | escape-string-regexp "^1.0.5" 834 | supports-color "^4.0.0" 835 | 836 | chokidar@^1.4.2: 837 | version "1.7.0" 838 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 839 | dependencies: 840 | anymatch "^1.3.0" 841 | async-each "^1.0.0" 842 | glob-parent "^2.0.0" 843 | inherits "^2.0.1" 844 | is-binary-path "^1.0.0" 845 | is-glob "^2.0.0" 846 | path-is-absolute "^1.0.0" 847 | readdirp "^2.0.0" 848 | optionalDependencies: 849 | fsevents "^1.0.0" 850 | 851 | ci-info@^1.0.0: 852 | version "1.1.2" 853 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.2.tgz#03561259db48d0474c8bdc90f5b47b068b6bbfb4" 854 | 855 | clean-stack@^1.1.1: 856 | version "1.3.0" 857 | resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-1.3.0.tgz#9e821501ae979986c46b1d66d2d432db2fd4ae31" 858 | 859 | clean-yaml-object@^0.1.0: 860 | version "0.1.0" 861 | resolved "https://registry.yarnpkg.com/clean-yaml-object/-/clean-yaml-object-0.1.0.tgz#63fb110dc2ce1a84dc21f6d9334876d010ae8b68" 862 | 863 | cli-boxes@^1.0.0: 864 | version "1.0.0" 865 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 866 | 867 | cli-cursor@^2.1.0: 868 | version "2.1.0" 869 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 870 | dependencies: 871 | restore-cursor "^2.0.0" 872 | 873 | cli-spinners@^1.0.0: 874 | version "1.1.0" 875 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-1.1.0.tgz#f1847b168844d917a671eb9d147e3df497c90d06" 876 | 877 | cli-truncate@^1.0.0: 878 | version "1.1.0" 879 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-1.1.0.tgz#2b2dfd83c53cfd3572b87fc4d430a808afb04086" 880 | dependencies: 881 | slice-ansi "^1.0.0" 882 | string-width "^2.0.0" 883 | 884 | co-with-promise@^4.6.0: 885 | version "4.6.0" 886 | resolved "https://registry.yarnpkg.com/co-with-promise/-/co-with-promise-4.6.0.tgz#413e7db6f5893a60b942cf492c4bec93db415ab7" 887 | dependencies: 888 | pinkie-promise "^1.0.0" 889 | 890 | co@^4.6.0: 891 | version "4.6.0" 892 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 893 | 894 | code-excerpt@^2.1.0: 895 | version "2.1.0" 896 | resolved "https://registry.yarnpkg.com/code-excerpt/-/code-excerpt-2.1.0.tgz#5dcc081e88f4a7e3b554e9e35d7ef232d47f8147" 897 | dependencies: 898 | convert-to-spaces "^1.0.1" 899 | 900 | code-point-at@^1.0.0: 901 | version "1.1.0" 902 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 903 | 904 | color-convert@^1.9.0: 905 | version "1.9.1" 906 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 907 | dependencies: 908 | color-name "^1.1.1" 909 | 910 | color-name@^1.1.1: 911 | version "1.1.3" 912 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 913 | 914 | combined-stream@^1.0.5, combined-stream@~1.0.5: 915 | version "1.0.5" 916 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 917 | dependencies: 918 | delayed-stream "~1.0.0" 919 | 920 | commander@2.6.0: 921 | version "2.6.0" 922 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.6.0.tgz#9df7e52fb2a0cb0fb89058ee80c3104225f37e1d" 923 | 924 | commander@^2.9.0: 925 | version "2.12.2" 926 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.12.2.tgz#0f5946c427ed9ec0d91a46bb9def53e54650e555" 927 | 928 | common-path-prefix@^1.0.0: 929 | version "1.0.0" 930 | resolved "https://registry.yarnpkg.com/common-path-prefix/-/common-path-prefix-1.0.0.tgz#cd52f6f0712e0baab97d6f9732874f22f47752c0" 931 | 932 | commondir@^1.0.1: 933 | version "1.0.1" 934 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 935 | 936 | concat-map@0.0.1: 937 | version "0.0.1" 938 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 939 | 940 | concordance@^3.0.0: 941 | version "3.0.0" 942 | resolved "https://registry.yarnpkg.com/concordance/-/concordance-3.0.0.tgz#b2286af54405fc995fc7345b0b106d8dd073cb29" 943 | dependencies: 944 | date-time "^2.1.0" 945 | esutils "^2.0.2" 946 | fast-diff "^1.1.1" 947 | function-name-support "^0.2.0" 948 | js-string-escape "^1.0.1" 949 | lodash.clonedeep "^4.5.0" 950 | lodash.flattendeep "^4.4.0" 951 | lodash.merge "^4.6.0" 952 | md5-hex "^2.0.0" 953 | semver "^5.3.0" 954 | well-known-symbols "^1.0.0" 955 | 956 | concurrently@^3.5.1: 957 | version "3.5.1" 958 | resolved "https://registry.yarnpkg.com/concurrently/-/concurrently-3.5.1.tgz#ee8b60018bbe86b02df13e5249453c6ececd2521" 959 | dependencies: 960 | chalk "0.5.1" 961 | commander "2.6.0" 962 | date-fns "^1.23.0" 963 | lodash "^4.5.1" 964 | rx "2.3.24" 965 | spawn-command "^0.0.2-1" 966 | supports-color "^3.2.3" 967 | tree-kill "^1.1.0" 968 | 969 | configstore@^3.0.0: 970 | version "3.1.1" 971 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.1.tgz#094ee662ab83fad9917678de114faaea8fcdca90" 972 | dependencies: 973 | dot-prop "^4.1.0" 974 | graceful-fs "^4.1.2" 975 | make-dir "^1.0.0" 976 | unique-string "^1.0.0" 977 | write-file-atomic "^2.0.0" 978 | xdg-basedir "^3.0.0" 979 | 980 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 981 | version "1.1.0" 982 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 983 | 984 | convert-source-map@^1.2.0, convert-source-map@^1.5.0: 985 | version "1.5.1" 986 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 987 | 988 | convert-to-spaces@^1.0.1: 989 | version "1.0.2" 990 | resolved "https://registry.yarnpkg.com/convert-to-spaces/-/convert-to-spaces-1.0.2.tgz#7e3e48bbe6d997b1417ddca2868204b4d3d85715" 991 | 992 | core-assert@^0.2.0: 993 | version "0.2.1" 994 | resolved "https://registry.yarnpkg.com/core-assert/-/core-assert-0.2.1.tgz#f85e2cf9bfed28f773cc8b3fa5c5b69bdc02fe3f" 995 | dependencies: 996 | buf-compare "^1.0.0" 997 | is-error "^2.2.0" 998 | 999 | core-js@^2.0.0, core-js@^2.4.0, core-js@^2.5.0: 1000 | version "2.5.3" 1001 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e" 1002 | 1003 | core-util-is@1.0.2, core-util-is@~1.0.0: 1004 | version "1.0.2" 1005 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1006 | 1007 | create-error-class@^3.0.0: 1008 | version "3.0.2" 1009 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" 1010 | dependencies: 1011 | capture-stack-trace "^1.0.0" 1012 | 1013 | cross-spawn@^5.0.1: 1014 | version "5.1.0" 1015 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 1016 | dependencies: 1017 | lru-cache "^4.0.1" 1018 | shebang-command "^1.2.0" 1019 | which "^1.2.9" 1020 | 1021 | cryptiles@2.x.x: 1022 | version "2.0.5" 1023 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1024 | dependencies: 1025 | boom "2.x.x" 1026 | 1027 | crypto-random-string@^1.0.0: 1028 | version "1.0.0" 1029 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" 1030 | 1031 | currently-unhandled@^0.4.1: 1032 | version "0.4.1" 1033 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 1034 | dependencies: 1035 | array-find-index "^1.0.1" 1036 | 1037 | dashdash@^1.12.0: 1038 | version "1.14.1" 1039 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1040 | dependencies: 1041 | assert-plus "^1.0.0" 1042 | 1043 | date-fns@^1.23.0: 1044 | version "1.29.0" 1045 | resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.29.0.tgz#12e609cdcb935127311d04d33334e2960a2a54e6" 1046 | 1047 | date-time@^0.1.1: 1048 | version "0.1.1" 1049 | resolved "https://registry.yarnpkg.com/date-time/-/date-time-0.1.1.tgz#ed2f6d93d9790ce2fd66d5b5ff3edd5bbcbf3b07" 1050 | 1051 | date-time@^2.1.0: 1052 | version "2.1.0" 1053 | resolved "https://registry.yarnpkg.com/date-time/-/date-time-2.1.0.tgz#0286d1b4c769633b3ca13e1e62558d2dbdc2eba2" 1054 | dependencies: 1055 | time-zone "^1.0.0" 1056 | 1057 | debug@^2.2.0, debug@^2.6.8: 1058 | version "2.6.9" 1059 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1060 | dependencies: 1061 | ms "2.0.0" 1062 | 1063 | debug@^3.0.1: 1064 | version "3.1.0" 1065 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 1066 | dependencies: 1067 | ms "2.0.0" 1068 | 1069 | decamelize@^1.1.2: 1070 | version "1.2.0" 1071 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1072 | 1073 | deep-equal@^1.0.0: 1074 | version "1.0.1" 1075 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" 1076 | 1077 | deep-extend@~0.4.0: 1078 | version "0.4.2" 1079 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1080 | 1081 | delayed-stream@~1.0.0: 1082 | version "1.0.0" 1083 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1084 | 1085 | delegates@^1.0.0: 1086 | version "1.0.0" 1087 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1088 | 1089 | detect-indent@^4.0.0: 1090 | version "4.0.0" 1091 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1092 | dependencies: 1093 | repeating "^2.0.0" 1094 | 1095 | detect-indent@^5.0.0: 1096 | version "5.0.0" 1097 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-5.0.0.tgz#3871cc0a6a002e8c3e5b3cf7f336264675f06b9d" 1098 | 1099 | detect-libc@^1.0.2: 1100 | version "1.0.3" 1101 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 1102 | 1103 | diff@^3.2.0: 1104 | version "3.4.0" 1105 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.4.0.tgz#b1d85507daf3964828de54b37d0d73ba67dda56c" 1106 | 1107 | dot-prop@^4.1.0: 1108 | version "4.2.0" 1109 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57" 1110 | dependencies: 1111 | is-obj "^1.0.0" 1112 | 1113 | duplexer3@^0.1.4: 1114 | version "0.1.4" 1115 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" 1116 | 1117 | ecc-jsbn@~0.1.1: 1118 | version "0.1.1" 1119 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1120 | dependencies: 1121 | jsbn "~0.1.0" 1122 | 1123 | empower-core@^0.6.1: 1124 | version "0.6.2" 1125 | resolved "https://registry.yarnpkg.com/empower-core/-/empower-core-0.6.2.tgz#5adef566088e31fba80ba0a36df47d7094169144" 1126 | dependencies: 1127 | call-signature "0.0.2" 1128 | core-js "^2.0.0" 1129 | 1130 | equal-length@^1.0.0: 1131 | version "1.0.1" 1132 | resolved "https://registry.yarnpkg.com/equal-length/-/equal-length-1.0.1.tgz#21ca112d48ab24b4e1e7ffc0e5339d31fdfc274c" 1133 | 1134 | error-ex@^1.2.0: 1135 | version "1.3.1" 1136 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1137 | dependencies: 1138 | is-arrayish "^0.2.1" 1139 | 1140 | es6-error@^4.0.1, es6-error@^4.0.2: 1141 | version "4.0.2" 1142 | resolved "https://registry.yarnpkg.com/es6-error/-/es6-error-4.0.2.tgz#eec5c726eacef51b7f6b73c20db6e1b13b069c98" 1143 | 1144 | escape-string-regexp@^1.0.0, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.4, escape-string-regexp@^1.0.5: 1145 | version "1.0.5" 1146 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1147 | 1148 | espower-location-detector@^1.0.0: 1149 | version "1.0.0" 1150 | resolved "https://registry.yarnpkg.com/espower-location-detector/-/espower-location-detector-1.0.0.tgz#a17b7ecc59d30e179e2bef73fb4137704cb331b5" 1151 | dependencies: 1152 | is-url "^1.2.1" 1153 | path-is-absolute "^1.0.0" 1154 | source-map "^0.5.0" 1155 | xtend "^4.0.0" 1156 | 1157 | esprima@^4.0.0: 1158 | version "4.0.0" 1159 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1160 | 1161 | espurify@^1.6.0: 1162 | version "1.7.0" 1163 | resolved "https://registry.yarnpkg.com/espurify/-/espurify-1.7.0.tgz#1c5cf6cbccc32e6f639380bd4f991fab9ba9d226" 1164 | dependencies: 1165 | core-js "^2.0.0" 1166 | 1167 | estraverse@^4.0.0, estraverse@^4.1.1: 1168 | version "4.2.0" 1169 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1170 | 1171 | esutils@^2.0.2: 1172 | version "2.0.2" 1173 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1174 | 1175 | execa@^0.7.0: 1176 | version "0.7.0" 1177 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1178 | dependencies: 1179 | cross-spawn "^5.0.1" 1180 | get-stream "^3.0.0" 1181 | is-stream "^1.1.0" 1182 | npm-run-path "^2.0.0" 1183 | p-finally "^1.0.0" 1184 | signal-exit "^3.0.0" 1185 | strip-eof "^1.0.0" 1186 | 1187 | expand-brackets@^0.1.4: 1188 | version "0.1.5" 1189 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1190 | dependencies: 1191 | is-posix-bracket "^0.1.0" 1192 | 1193 | expand-range@^1.8.1: 1194 | version "1.8.2" 1195 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1196 | dependencies: 1197 | fill-range "^2.1.0" 1198 | 1199 | extend@~3.0.0: 1200 | version "3.0.1" 1201 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1202 | 1203 | extglob@^0.3.1: 1204 | version "0.3.2" 1205 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1206 | dependencies: 1207 | is-extglob "^1.0.0" 1208 | 1209 | extsprintf@1.3.0: 1210 | version "1.3.0" 1211 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1212 | 1213 | extsprintf@^1.2.0: 1214 | version "1.4.0" 1215 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 1216 | 1217 | fast-diff@^1.1.1: 1218 | version "1.1.2" 1219 | resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.1.2.tgz#4b62c42b8e03de3f848460b639079920695d0154" 1220 | 1221 | figures@^2.0.0: 1222 | version "2.0.0" 1223 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1224 | dependencies: 1225 | escape-string-regexp "^1.0.5" 1226 | 1227 | filename-regex@^2.0.0: 1228 | version "2.0.1" 1229 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1230 | 1231 | fill-range@^2.1.0: 1232 | version "2.2.3" 1233 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1234 | dependencies: 1235 | is-number "^2.1.0" 1236 | isobject "^2.0.0" 1237 | randomatic "^1.1.3" 1238 | repeat-element "^1.1.2" 1239 | repeat-string "^1.5.2" 1240 | 1241 | find-cache-dir@^1.0.0: 1242 | version "1.0.0" 1243 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-1.0.0.tgz#9288e3e9e3cc3748717d39eade17cf71fc30ee6f" 1244 | dependencies: 1245 | commondir "^1.0.1" 1246 | make-dir "^1.0.0" 1247 | pkg-dir "^2.0.0" 1248 | 1249 | find-up@^1.0.0: 1250 | version "1.1.2" 1251 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1252 | dependencies: 1253 | path-exists "^2.0.0" 1254 | pinkie-promise "^2.0.0" 1255 | 1256 | find-up@^2.0.0, find-up@^2.1.0: 1257 | version "2.1.0" 1258 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1259 | dependencies: 1260 | locate-path "^2.0.0" 1261 | 1262 | flow-bin@^0.59.0: 1263 | version "0.59.0" 1264 | resolved "https://registry.yarnpkg.com/flow-bin/-/flow-bin-0.59.0.tgz#8c151ee7f09f1deed9bf0b9d1f2e8ab9d470f1bb" 1265 | 1266 | fn-name@^2.0.0: 1267 | version "2.0.1" 1268 | resolved "https://registry.yarnpkg.com/fn-name/-/fn-name-2.0.1.tgz#5214d7537a4d06a4a301c0cc262feb84188002e7" 1269 | 1270 | for-in@^1.0.1: 1271 | version "1.0.2" 1272 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1273 | 1274 | for-own@^0.1.4: 1275 | version "0.1.5" 1276 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1277 | dependencies: 1278 | for-in "^1.0.1" 1279 | 1280 | forever-agent@~0.6.1: 1281 | version "0.6.1" 1282 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1283 | 1284 | form-data@~2.1.1: 1285 | version "2.1.4" 1286 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1287 | dependencies: 1288 | asynckit "^0.4.0" 1289 | combined-stream "^1.0.5" 1290 | mime-types "^2.1.12" 1291 | 1292 | fs.realpath@^1.0.0: 1293 | version "1.0.0" 1294 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1295 | 1296 | fsevents@^1.0.0: 1297 | version "1.1.3" 1298 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8" 1299 | dependencies: 1300 | nan "^2.3.0" 1301 | node-pre-gyp "^0.6.39" 1302 | 1303 | fstream-ignore@^1.0.5: 1304 | version "1.0.5" 1305 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1306 | dependencies: 1307 | fstream "^1.0.0" 1308 | inherits "2" 1309 | minimatch "^3.0.0" 1310 | 1311 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1312 | version "1.0.11" 1313 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1314 | dependencies: 1315 | graceful-fs "^4.1.2" 1316 | inherits "~2.0.0" 1317 | mkdirp ">=0.5 0" 1318 | rimraf "2" 1319 | 1320 | function-name-support@^0.2.0: 1321 | version "0.2.0" 1322 | resolved "https://registry.yarnpkg.com/function-name-support/-/function-name-support-0.2.0.tgz#55d3bfaa6eafd505a50f9bc81fdf57564a0bb071" 1323 | 1324 | gauge@~2.7.3: 1325 | version "2.7.4" 1326 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1327 | dependencies: 1328 | aproba "^1.0.3" 1329 | console-control-strings "^1.0.0" 1330 | has-unicode "^2.0.0" 1331 | object-assign "^4.1.0" 1332 | signal-exit "^3.0.0" 1333 | string-width "^1.0.1" 1334 | strip-ansi "^3.0.1" 1335 | wide-align "^1.1.0" 1336 | 1337 | get-port@^3.0.0: 1338 | version "3.2.0" 1339 | resolved "https://registry.yarnpkg.com/get-port/-/get-port-3.2.0.tgz#dd7ce7de187c06c8bf353796ac71e099f0980ebc" 1340 | 1341 | get-stdin@^4.0.1: 1342 | version "4.0.1" 1343 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 1344 | 1345 | get-stream@^3.0.0: 1346 | version "3.0.0" 1347 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1348 | 1349 | getpass@^0.1.1: 1350 | version "0.1.7" 1351 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1352 | dependencies: 1353 | assert-plus "^1.0.0" 1354 | 1355 | glob-base@^0.3.0: 1356 | version "0.3.0" 1357 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1358 | dependencies: 1359 | glob-parent "^2.0.0" 1360 | is-glob "^2.0.0" 1361 | 1362 | glob-parent@^2.0.0: 1363 | version "2.0.0" 1364 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1365 | dependencies: 1366 | is-glob "^2.0.0" 1367 | 1368 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2: 1369 | version "7.1.2" 1370 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1371 | dependencies: 1372 | fs.realpath "^1.0.0" 1373 | inflight "^1.0.4" 1374 | inherits "2" 1375 | minimatch "^3.0.4" 1376 | once "^1.3.0" 1377 | path-is-absolute "^1.0.0" 1378 | 1379 | global-dirs@^0.1.0: 1380 | version "0.1.1" 1381 | resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445" 1382 | dependencies: 1383 | ini "^1.3.4" 1384 | 1385 | globals@^11.1.0: 1386 | version "11.1.0" 1387 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.1.0.tgz#632644457f5f0e3ae711807183700ebf2e4633e4" 1388 | 1389 | globals@^9.18.0: 1390 | version "9.18.0" 1391 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1392 | 1393 | globby@^6.0.0: 1394 | version "6.1.0" 1395 | resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" 1396 | dependencies: 1397 | array-union "^1.0.1" 1398 | glob "^7.0.3" 1399 | object-assign "^4.0.1" 1400 | pify "^2.0.0" 1401 | pinkie-promise "^2.0.0" 1402 | 1403 | got@^6.7.1: 1404 | version "6.7.1" 1405 | resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" 1406 | dependencies: 1407 | create-error-class "^3.0.0" 1408 | duplexer3 "^0.1.4" 1409 | get-stream "^3.0.0" 1410 | is-redirect "^1.0.0" 1411 | is-retry-allowed "^1.0.0" 1412 | is-stream "^1.0.0" 1413 | lowercase-keys "^1.0.0" 1414 | safe-buffer "^5.0.1" 1415 | timed-out "^4.0.0" 1416 | unzip-response "^2.0.1" 1417 | url-parse-lax "^1.0.0" 1418 | 1419 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 1420 | version "4.1.11" 1421 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1422 | 1423 | har-schema@^1.0.5: 1424 | version "1.0.5" 1425 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1426 | 1427 | har-validator@~4.2.1: 1428 | version "4.2.1" 1429 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1430 | dependencies: 1431 | ajv "^4.9.1" 1432 | har-schema "^1.0.5" 1433 | 1434 | has-ansi@^0.1.0: 1435 | version "0.1.0" 1436 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-0.1.0.tgz#84f265aae8c0e6a88a12d7022894b7568894c62e" 1437 | dependencies: 1438 | ansi-regex "^0.2.0" 1439 | 1440 | has-ansi@^2.0.0: 1441 | version "2.0.0" 1442 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1443 | dependencies: 1444 | ansi-regex "^2.0.0" 1445 | 1446 | has-color@~0.1.0: 1447 | version "0.1.7" 1448 | resolved "https://registry.yarnpkg.com/has-color/-/has-color-0.1.7.tgz#67144a5260c34fc3cca677d041daf52fe7b78b2f" 1449 | 1450 | has-flag@^1.0.0: 1451 | version "1.0.0" 1452 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1453 | 1454 | has-flag@^2.0.0: 1455 | version "2.0.0" 1456 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1457 | 1458 | has-unicode@^2.0.0: 1459 | version "2.0.1" 1460 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1461 | 1462 | has-yarn@^1.0.0: 1463 | version "1.0.0" 1464 | resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-1.0.0.tgz#89e25db604b725c8f5976fff0addc921b828a5a7" 1465 | 1466 | hawk@3.1.3, hawk@~3.1.3: 1467 | version "3.1.3" 1468 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1469 | dependencies: 1470 | boom "2.x.x" 1471 | cryptiles "2.x.x" 1472 | hoek "2.x.x" 1473 | sntp "1.x.x" 1474 | 1475 | hoek@2.x.x: 1476 | version "2.16.3" 1477 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1478 | 1479 | home-or-tmp@^2.0.0: 1480 | version "2.0.0" 1481 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1482 | dependencies: 1483 | os-homedir "^1.0.0" 1484 | os-tmpdir "^1.0.1" 1485 | 1486 | hosted-git-info@^2.1.4: 1487 | version "2.5.0" 1488 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 1489 | 1490 | http-signature@~1.1.0: 1491 | version "1.1.1" 1492 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1493 | dependencies: 1494 | assert-plus "^0.2.0" 1495 | jsprim "^1.2.2" 1496 | sshpk "^1.7.0" 1497 | 1498 | hullabaloo-config-manager@^1.1.0: 1499 | version "1.1.1" 1500 | resolved "https://registry.yarnpkg.com/hullabaloo-config-manager/-/hullabaloo-config-manager-1.1.1.tgz#1d9117813129ad035fd9e8477eaf066911269fe3" 1501 | dependencies: 1502 | dot-prop "^4.1.0" 1503 | es6-error "^4.0.2" 1504 | graceful-fs "^4.1.11" 1505 | indent-string "^3.1.0" 1506 | json5 "^0.5.1" 1507 | lodash.clonedeep "^4.5.0" 1508 | lodash.clonedeepwith "^4.5.0" 1509 | lodash.isequal "^4.5.0" 1510 | lodash.merge "^4.6.0" 1511 | md5-hex "^2.0.0" 1512 | package-hash "^2.0.0" 1513 | pkg-dir "^2.0.0" 1514 | resolve-from "^3.0.0" 1515 | safe-buffer "^5.0.1" 1516 | 1517 | ignore-by-default@^1.0.0: 1518 | version "1.0.1" 1519 | resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" 1520 | 1521 | import-lazy@^2.1.0: 1522 | version "2.1.0" 1523 | resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" 1524 | 1525 | import-local@^0.1.1: 1526 | version "0.1.1" 1527 | resolved "https://registry.yarnpkg.com/import-local/-/import-local-0.1.1.tgz#b1179572aacdc11c6a91009fb430dbcab5f668a8" 1528 | dependencies: 1529 | pkg-dir "^2.0.0" 1530 | resolve-cwd "^2.0.0" 1531 | 1532 | imurmurhash@^0.1.4: 1533 | version "0.1.4" 1534 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1535 | 1536 | indent-string@^2.1.0: 1537 | version "2.1.0" 1538 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 1539 | dependencies: 1540 | repeating "^2.0.0" 1541 | 1542 | indent-string@^3.0.0, indent-string@^3.1.0: 1543 | version "3.2.0" 1544 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" 1545 | 1546 | inflight@^1.0.4: 1547 | version "1.0.6" 1548 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1549 | dependencies: 1550 | once "^1.3.0" 1551 | wrappy "1" 1552 | 1553 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.3: 1554 | version "2.0.3" 1555 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1556 | 1557 | ini@^1.3.4, ini@~1.3.0: 1558 | version "1.3.5" 1559 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1560 | 1561 | invariant@^2.2.0, invariant@^2.2.2: 1562 | version "2.2.2" 1563 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1564 | dependencies: 1565 | loose-envify "^1.0.0" 1566 | 1567 | irregular-plurals@^1.0.0: 1568 | version "1.4.0" 1569 | resolved "https://registry.yarnpkg.com/irregular-plurals/-/irregular-plurals-1.4.0.tgz#2ca9b033651111855412f16be5d77c62a458a766" 1570 | 1571 | is-arrayish@^0.2.1: 1572 | version "0.2.1" 1573 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1574 | 1575 | is-binary-path@^1.0.0: 1576 | version "1.0.1" 1577 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1578 | dependencies: 1579 | binary-extensions "^1.0.0" 1580 | 1581 | is-buffer@^1.1.5: 1582 | version "1.1.6" 1583 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1584 | 1585 | is-builtin-module@^1.0.0: 1586 | version "1.0.0" 1587 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1588 | dependencies: 1589 | builtin-modules "^1.0.0" 1590 | 1591 | is-ci@^1.0.7: 1592 | version "1.0.10" 1593 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1594 | dependencies: 1595 | ci-info "^1.0.0" 1596 | 1597 | is-dotfile@^1.0.0: 1598 | version "1.0.3" 1599 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1600 | 1601 | is-equal-shallow@^0.1.3: 1602 | version "0.1.3" 1603 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1604 | dependencies: 1605 | is-primitive "^2.0.0" 1606 | 1607 | is-error@^2.2.0: 1608 | version "2.2.1" 1609 | resolved "https://registry.yarnpkg.com/is-error/-/is-error-2.2.1.tgz#684a96d84076577c98f4cdb40c6d26a5123bf19c" 1610 | 1611 | is-extendable@^0.1.1: 1612 | version "0.1.1" 1613 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1614 | 1615 | is-extglob@^1.0.0: 1616 | version "1.0.0" 1617 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1618 | 1619 | is-finite@^1.0.0: 1620 | version "1.0.2" 1621 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1622 | dependencies: 1623 | number-is-nan "^1.0.0" 1624 | 1625 | is-fullwidth-code-point@^1.0.0: 1626 | version "1.0.0" 1627 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1628 | dependencies: 1629 | number-is-nan "^1.0.0" 1630 | 1631 | is-fullwidth-code-point@^2.0.0: 1632 | version "2.0.0" 1633 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1634 | 1635 | is-generator-fn@^1.0.0: 1636 | version "1.0.0" 1637 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a" 1638 | 1639 | is-glob@^2.0.0, is-glob@^2.0.1: 1640 | version "2.0.1" 1641 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1642 | dependencies: 1643 | is-extglob "^1.0.0" 1644 | 1645 | is-installed-globally@^0.1.0: 1646 | version "0.1.0" 1647 | resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.1.0.tgz#0dfd98f5a9111716dd535dda6492f67bf3d25a80" 1648 | dependencies: 1649 | global-dirs "^0.1.0" 1650 | is-path-inside "^1.0.0" 1651 | 1652 | is-npm@^1.0.0: 1653 | version "1.0.0" 1654 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 1655 | 1656 | is-number@^2.1.0: 1657 | version "2.1.0" 1658 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1659 | dependencies: 1660 | kind-of "^3.0.2" 1661 | 1662 | is-number@^3.0.0: 1663 | version "3.0.0" 1664 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1665 | dependencies: 1666 | kind-of "^3.0.2" 1667 | 1668 | is-obj@^1.0.0: 1669 | version "1.0.1" 1670 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 1671 | 1672 | is-observable@^0.2.0: 1673 | version "0.2.0" 1674 | resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-0.2.0.tgz#b361311d83c6e5d726cabf5e250b0237106f5ae2" 1675 | dependencies: 1676 | symbol-observable "^0.2.2" 1677 | 1678 | is-observable@^1.0.0: 1679 | version "1.1.0" 1680 | resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-1.1.0.tgz#b3e986c8f44de950867cab5403f5a3465005975e" 1681 | dependencies: 1682 | symbol-observable "^1.1.0" 1683 | 1684 | is-path-inside@^1.0.0: 1685 | version "1.0.1" 1686 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" 1687 | dependencies: 1688 | path-is-inside "^1.0.1" 1689 | 1690 | is-plain-obj@^1.0.0: 1691 | version "1.1.0" 1692 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 1693 | 1694 | is-posix-bracket@^0.1.0: 1695 | version "0.1.1" 1696 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1697 | 1698 | is-primitive@^2.0.0: 1699 | version "2.0.0" 1700 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1701 | 1702 | is-promise@^2.1.0: 1703 | version "2.1.0" 1704 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1705 | 1706 | is-redirect@^1.0.0: 1707 | version "1.0.0" 1708 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 1709 | 1710 | is-retry-allowed@^1.0.0: 1711 | version "1.1.0" 1712 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" 1713 | 1714 | is-stream@^1.0.0, is-stream@^1.1.0: 1715 | version "1.1.0" 1716 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1717 | 1718 | is-typedarray@~1.0.0: 1719 | version "1.0.0" 1720 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1721 | 1722 | is-url@^1.2.1: 1723 | version "1.2.2" 1724 | resolved "https://registry.yarnpkg.com/is-url/-/is-url-1.2.2.tgz#498905a593bf47cc2d9e7f738372bbf7696c7f26" 1725 | 1726 | is-utf8@^0.2.0, is-utf8@^0.2.1: 1727 | version "0.2.1" 1728 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1729 | 1730 | isarray@1.0.0, isarray@~1.0.0: 1731 | version "1.0.0" 1732 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1733 | 1734 | isexe@^2.0.0: 1735 | version "2.0.0" 1736 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1737 | 1738 | isobject@^2.0.0: 1739 | version "2.1.0" 1740 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1741 | dependencies: 1742 | isarray "1.0.0" 1743 | 1744 | isstream@~0.1.2: 1745 | version "0.1.2" 1746 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1747 | 1748 | js-string-escape@^1.0.1: 1749 | version "1.0.1" 1750 | resolved "https://registry.yarnpkg.com/js-string-escape/-/js-string-escape-1.0.1.tgz#e2625badbc0d67c7533e9edc1068c587ae4137ef" 1751 | 1752 | js-tokens@^3.0.0, js-tokens@^3.0.2: 1753 | version "3.0.2" 1754 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1755 | 1756 | js-yaml@^3.8.2: 1757 | version "3.10.0" 1758 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 1759 | dependencies: 1760 | argparse "^1.0.7" 1761 | esprima "^4.0.0" 1762 | 1763 | jsbn@~0.1.0: 1764 | version "0.1.1" 1765 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1766 | 1767 | jsesc@^1.3.0: 1768 | version "1.3.0" 1769 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1770 | 1771 | jsesc@^2.5.1: 1772 | version "2.5.1" 1773 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.1.tgz#e421a2a8e20d6b0819df28908f782526b96dd1fe" 1774 | 1775 | jsesc@~0.5.0: 1776 | version "0.5.0" 1777 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1778 | 1779 | json-schema@0.2.3: 1780 | version "0.2.3" 1781 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1782 | 1783 | json-stable-stringify@^1.0.1: 1784 | version "1.0.1" 1785 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1786 | dependencies: 1787 | jsonify "~0.0.0" 1788 | 1789 | json-stringify-safe@~5.0.1: 1790 | version "5.0.1" 1791 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1792 | 1793 | json5@^0.5.1: 1794 | version "0.5.1" 1795 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1796 | 1797 | jsonify@~0.0.0: 1798 | version "0.0.0" 1799 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1800 | 1801 | jsprim@^1.2.2: 1802 | version "1.4.1" 1803 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1804 | dependencies: 1805 | assert-plus "1.0.0" 1806 | extsprintf "1.3.0" 1807 | json-schema "0.2.3" 1808 | verror "1.10.0" 1809 | 1810 | kind-of@^3.0.2: 1811 | version "3.2.2" 1812 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1813 | dependencies: 1814 | is-buffer "^1.1.5" 1815 | 1816 | kind-of@^4.0.0: 1817 | version "4.0.0" 1818 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1819 | dependencies: 1820 | is-buffer "^1.1.5" 1821 | 1822 | last-line-stream@^1.0.0: 1823 | version "1.0.0" 1824 | resolved "https://registry.yarnpkg.com/last-line-stream/-/last-line-stream-1.0.0.tgz#d1b64d69f86ff24af2d04883a2ceee14520a5600" 1825 | dependencies: 1826 | through2 "^2.0.0" 1827 | 1828 | latest-version@^3.0.0: 1829 | version "3.1.0" 1830 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15" 1831 | dependencies: 1832 | package-json "^4.0.0" 1833 | 1834 | load-json-file@^1.0.0: 1835 | version "1.1.0" 1836 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1837 | dependencies: 1838 | graceful-fs "^4.1.2" 1839 | parse-json "^2.2.0" 1840 | pify "^2.0.0" 1841 | pinkie-promise "^2.0.0" 1842 | strip-bom "^2.0.0" 1843 | 1844 | load-json-file@^2.0.0: 1845 | version "2.0.0" 1846 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 1847 | dependencies: 1848 | graceful-fs "^4.1.2" 1849 | parse-json "^2.2.0" 1850 | pify "^2.0.0" 1851 | strip-bom "^3.0.0" 1852 | 1853 | locate-path@^2.0.0: 1854 | version "2.0.0" 1855 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1856 | dependencies: 1857 | p-locate "^2.0.0" 1858 | path-exists "^3.0.0" 1859 | 1860 | lodash.clonedeep@^4.5.0: 1861 | version "4.5.0" 1862 | resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" 1863 | 1864 | lodash.clonedeepwith@^4.5.0: 1865 | version "4.5.0" 1866 | resolved "https://registry.yarnpkg.com/lodash.clonedeepwith/-/lodash.clonedeepwith-4.5.0.tgz#6ee30573a03a1a60d670a62ef33c10cf1afdbdd4" 1867 | 1868 | lodash.debounce@^4.0.3: 1869 | version "4.0.8" 1870 | resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" 1871 | 1872 | lodash.difference@^4.3.0: 1873 | version "4.5.0" 1874 | resolved "https://registry.yarnpkg.com/lodash.difference/-/lodash.difference-4.5.0.tgz#9ccb4e505d486b91651345772885a2df27fd017c" 1875 | 1876 | lodash.flatten@^4.2.0: 1877 | version "4.4.0" 1878 | resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f" 1879 | 1880 | lodash.flattendeep@^4.4.0: 1881 | version "4.4.0" 1882 | resolved "https://registry.yarnpkg.com/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz#fb030917f86a3134e5bc9bec0d69e0013ddfedb2" 1883 | 1884 | lodash.isequal@^4.5.0: 1885 | version "4.5.0" 1886 | resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" 1887 | 1888 | lodash.merge@^4.6.0: 1889 | version "4.6.0" 1890 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.0.tgz#69884ba144ac33fe699737a6086deffadd0f89c5" 1891 | 1892 | lodash@^4.17.4, lodash@^4.2.0, lodash@^4.5.1: 1893 | version "4.17.4" 1894 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1895 | 1896 | loose-envify@^1.0.0: 1897 | version "1.3.1" 1898 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1899 | dependencies: 1900 | js-tokens "^3.0.0" 1901 | 1902 | loud-rejection@^1.0.0, loud-rejection@^1.2.0: 1903 | version "1.6.0" 1904 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 1905 | dependencies: 1906 | currently-unhandled "^0.4.1" 1907 | signal-exit "^3.0.0" 1908 | 1909 | lowercase-keys@^1.0.0: 1910 | version "1.0.0" 1911 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 1912 | 1913 | lru-cache@^4.0.1: 1914 | version "4.1.1" 1915 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 1916 | dependencies: 1917 | pseudomap "^1.0.2" 1918 | yallist "^2.1.2" 1919 | 1920 | make-dir@^1.0.0: 1921 | version "1.1.0" 1922 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.1.0.tgz#19b4369fe48c116f53c2af95ad102c0e39e85d51" 1923 | dependencies: 1924 | pify "^3.0.0" 1925 | 1926 | map-obj@^1.0.0, map-obj@^1.0.1: 1927 | version "1.0.1" 1928 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 1929 | 1930 | matcher@^1.0.0: 1931 | version "1.0.0" 1932 | resolved "https://registry.yarnpkg.com/matcher/-/matcher-1.0.0.tgz#aaf0c4816eb69b92094674175625f3466b0e3e19" 1933 | dependencies: 1934 | escape-string-regexp "^1.0.4" 1935 | 1936 | md5-hex@^1.2.0, md5-hex@^1.3.0: 1937 | version "1.3.0" 1938 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-1.3.0.tgz#d2c4afe983c4370662179b8cad145219135046c4" 1939 | dependencies: 1940 | md5-o-matic "^0.1.1" 1941 | 1942 | md5-hex@^2.0.0: 1943 | version "2.0.0" 1944 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-2.0.0.tgz#d0588e9f1c74954492ecd24ac0ac6ce997d92e33" 1945 | dependencies: 1946 | md5-o-matic "^0.1.1" 1947 | 1948 | md5-o-matic@^0.1.1: 1949 | version "0.1.1" 1950 | resolved "https://registry.yarnpkg.com/md5-o-matic/-/md5-o-matic-0.1.1.tgz#822bccd65e117c514fab176b25945d54100a03c3" 1951 | 1952 | meow@^3.7.0: 1953 | version "3.7.0" 1954 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 1955 | dependencies: 1956 | camelcase-keys "^2.0.0" 1957 | decamelize "^1.1.2" 1958 | loud-rejection "^1.0.0" 1959 | map-obj "^1.0.1" 1960 | minimist "^1.1.3" 1961 | normalize-package-data "^2.3.4" 1962 | object-assign "^4.0.1" 1963 | read-pkg-up "^1.0.1" 1964 | redent "^1.0.0" 1965 | trim-newlines "^1.0.0" 1966 | 1967 | micromatch@^2.1.5: 1968 | version "2.3.11" 1969 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1970 | dependencies: 1971 | arr-diff "^2.0.0" 1972 | array-unique "^0.2.1" 1973 | braces "^1.8.2" 1974 | expand-brackets "^0.1.4" 1975 | extglob "^0.3.1" 1976 | filename-regex "^2.0.0" 1977 | is-extglob "^1.0.0" 1978 | is-glob "^2.0.1" 1979 | kind-of "^3.0.2" 1980 | normalize-path "^2.0.1" 1981 | object.omit "^2.0.0" 1982 | parse-glob "^3.0.4" 1983 | regex-cache "^0.4.2" 1984 | 1985 | mime-db@~1.30.0: 1986 | version "1.30.0" 1987 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 1988 | 1989 | mime-types@^2.1.12, mime-types@~2.1.7: 1990 | version "2.1.17" 1991 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 1992 | dependencies: 1993 | mime-db "~1.30.0" 1994 | 1995 | mimic-fn@^1.0.0: 1996 | version "1.1.0" 1997 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 1998 | 1999 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 2000 | version "3.0.4" 2001 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2002 | dependencies: 2003 | brace-expansion "^1.1.7" 2004 | 2005 | minimist@0.0.8: 2006 | version "0.0.8" 2007 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2008 | 2009 | minimist@^1.1.3, minimist@^1.2.0: 2010 | version "1.2.0" 2011 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2012 | 2013 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 2014 | version "0.5.1" 2015 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2016 | dependencies: 2017 | minimist "0.0.8" 2018 | 2019 | ms@2.0.0: 2020 | version "2.0.0" 2021 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2022 | 2023 | ms@^2.0.0: 2024 | version "2.1.1" 2025 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" 2026 | 2027 | multimatch@^2.1.0: 2028 | version "2.1.0" 2029 | resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b" 2030 | dependencies: 2031 | array-differ "^1.0.0" 2032 | array-union "^1.0.1" 2033 | arrify "^1.0.0" 2034 | minimatch "^3.0.0" 2035 | 2036 | mz@^2.7.0: 2037 | version "2.7.0" 2038 | resolved "https://registry.yarnpkg.com/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32" 2039 | dependencies: 2040 | any-promise "^1.0.0" 2041 | object-assign "^4.0.1" 2042 | thenify-all "^1.0.0" 2043 | 2044 | nan@^2.3.0: 2045 | version "2.8.0" 2046 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.8.0.tgz#ed715f3fe9de02b57a5e6252d90a96675e1f085a" 2047 | 2048 | node-pre-gyp@^0.6.39: 2049 | version "0.6.39" 2050 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 2051 | dependencies: 2052 | detect-libc "^1.0.2" 2053 | hawk "3.1.3" 2054 | mkdirp "^0.5.1" 2055 | nopt "^4.0.1" 2056 | npmlog "^4.0.2" 2057 | rc "^1.1.7" 2058 | request "2.81.0" 2059 | rimraf "^2.6.1" 2060 | semver "^5.3.0" 2061 | tar "^2.2.1" 2062 | tar-pack "^3.4.0" 2063 | 2064 | nopt@^4.0.1: 2065 | version "4.0.1" 2066 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2067 | dependencies: 2068 | abbrev "1" 2069 | osenv "^0.1.4" 2070 | 2071 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: 2072 | version "2.4.0" 2073 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2074 | dependencies: 2075 | hosted-git-info "^2.1.4" 2076 | is-builtin-module "^1.0.0" 2077 | semver "2 || 3 || 4 || 5" 2078 | validate-npm-package-license "^3.0.1" 2079 | 2080 | normalize-path@^2.0.0, normalize-path@^2.0.1: 2081 | version "2.1.1" 2082 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2083 | dependencies: 2084 | remove-trailing-separator "^1.0.1" 2085 | 2086 | npm-run-path@^2.0.0: 2087 | version "2.0.2" 2088 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2089 | dependencies: 2090 | path-key "^2.0.0" 2091 | 2092 | npmlog@^4.0.2: 2093 | version "4.1.2" 2094 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2095 | dependencies: 2096 | are-we-there-yet "~1.1.2" 2097 | console-control-strings "~1.1.0" 2098 | gauge "~2.7.3" 2099 | set-blocking "~2.0.0" 2100 | 2101 | number-is-nan@^1.0.0: 2102 | version "1.0.1" 2103 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2104 | 2105 | oauth-sign@~0.8.1: 2106 | version "0.8.2" 2107 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2108 | 2109 | object-assign@^4.0.1, object-assign@^4.1.0: 2110 | version "4.1.1" 2111 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2112 | 2113 | object.omit@^2.0.0: 2114 | version "2.0.1" 2115 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2116 | dependencies: 2117 | for-own "^0.1.4" 2118 | is-extendable "^0.1.1" 2119 | 2120 | observable-to-promise@^0.5.0: 2121 | version "0.5.0" 2122 | resolved "https://registry.yarnpkg.com/observable-to-promise/-/observable-to-promise-0.5.0.tgz#c828f0f0dc47e9f86af8a4977c5d55076ce7a91f" 2123 | dependencies: 2124 | is-observable "^0.2.0" 2125 | symbol-observable "^1.0.4" 2126 | 2127 | once@^1.3.0, once@^1.3.3: 2128 | version "1.4.0" 2129 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2130 | dependencies: 2131 | wrappy "1" 2132 | 2133 | onetime@^2.0.0: 2134 | version "2.0.1" 2135 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2136 | dependencies: 2137 | mimic-fn "^1.0.0" 2138 | 2139 | option-chain@^1.0.0: 2140 | version "1.0.0" 2141 | resolved "https://registry.yarnpkg.com/option-chain/-/option-chain-1.0.0.tgz#938d73bd4e1783f948d34023644ada23669e30f2" 2142 | 2143 | os-homedir@^1.0.0: 2144 | version "1.0.2" 2145 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2146 | 2147 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 2148 | version "1.0.2" 2149 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2150 | 2151 | osenv@^0.1.4: 2152 | version "0.1.4" 2153 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2154 | dependencies: 2155 | os-homedir "^1.0.0" 2156 | os-tmpdir "^1.0.0" 2157 | 2158 | p-finally@^1.0.0: 2159 | version "1.0.0" 2160 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2161 | 2162 | p-limit@^1.1.0: 2163 | version "1.1.0" 2164 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2165 | 2166 | p-locate@^2.0.0: 2167 | version "2.0.0" 2168 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2169 | dependencies: 2170 | p-limit "^1.1.0" 2171 | 2172 | package-hash@^1.2.0: 2173 | version "1.2.0" 2174 | resolved "https://registry.yarnpkg.com/package-hash/-/package-hash-1.2.0.tgz#003e56cd57b736a6ed6114cc2b81542672770e44" 2175 | dependencies: 2176 | md5-hex "^1.3.0" 2177 | 2178 | package-hash@^2.0.0: 2179 | version "2.0.0" 2180 | resolved "https://registry.yarnpkg.com/package-hash/-/package-hash-2.0.0.tgz#78ae326c89e05a4d813b68601977af05c00d2a0d" 2181 | dependencies: 2182 | graceful-fs "^4.1.11" 2183 | lodash.flattendeep "^4.4.0" 2184 | md5-hex "^2.0.0" 2185 | release-zalgo "^1.0.0" 2186 | 2187 | package-json@^4.0.0: 2188 | version "4.0.1" 2189 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed" 2190 | dependencies: 2191 | got "^6.7.1" 2192 | registry-auth-token "^3.0.1" 2193 | registry-url "^3.0.3" 2194 | semver "^5.1.0" 2195 | 2196 | parse-glob@^3.0.4: 2197 | version "3.0.4" 2198 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2199 | dependencies: 2200 | glob-base "^0.3.0" 2201 | is-dotfile "^1.0.0" 2202 | is-extglob "^1.0.0" 2203 | is-glob "^2.0.0" 2204 | 2205 | parse-json@^2.2.0: 2206 | version "2.2.0" 2207 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2208 | dependencies: 2209 | error-ex "^1.2.0" 2210 | 2211 | parse-ms@^0.1.0: 2212 | version "0.1.2" 2213 | resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-0.1.2.tgz#dd3fa25ed6c2efc7bdde12ad9b46c163aa29224e" 2214 | 2215 | parse-ms@^1.0.0: 2216 | version "1.0.1" 2217 | resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-1.0.1.tgz#56346d4749d78f23430ca0c713850aef91aa361d" 2218 | 2219 | path-exists@^2.0.0: 2220 | version "2.1.0" 2221 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2222 | dependencies: 2223 | pinkie-promise "^2.0.0" 2224 | 2225 | path-exists@^3.0.0: 2226 | version "3.0.0" 2227 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2228 | 2229 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 2230 | version "1.0.1" 2231 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2232 | 2233 | path-is-inside@^1.0.1: 2234 | version "1.0.2" 2235 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2236 | 2237 | path-key@^2.0.0: 2238 | version "2.0.1" 2239 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2240 | 2241 | path-parse@^1.0.5: 2242 | version "1.0.5" 2243 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2244 | 2245 | path-type@^1.0.0: 2246 | version "1.1.0" 2247 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2248 | dependencies: 2249 | graceful-fs "^4.1.2" 2250 | pify "^2.0.0" 2251 | pinkie-promise "^2.0.0" 2252 | 2253 | path-type@^2.0.0: 2254 | version "2.0.0" 2255 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 2256 | dependencies: 2257 | pify "^2.0.0" 2258 | 2259 | performance-now@^0.2.0: 2260 | version "0.2.0" 2261 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2262 | 2263 | pify@^2.0.0: 2264 | version "2.3.0" 2265 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2266 | 2267 | pify@^3.0.0: 2268 | version "3.0.0" 2269 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 2270 | 2271 | pinkie-promise@^1.0.0: 2272 | version "1.0.0" 2273 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-1.0.0.tgz#d1da67f5482563bb7cf57f286ae2822ecfbf3670" 2274 | dependencies: 2275 | pinkie "^1.0.0" 2276 | 2277 | pinkie-promise@^2.0.0: 2278 | version "2.0.1" 2279 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2280 | dependencies: 2281 | pinkie "^2.0.0" 2282 | 2283 | pinkie@^1.0.0: 2284 | version "1.0.0" 2285 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-1.0.0.tgz#5a47f28ba1015d0201bda7bf0f358e47bec8c7e4" 2286 | 2287 | pinkie@^2.0.0: 2288 | version "2.0.4" 2289 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2290 | 2291 | pkg-conf@^2.0.0: 2292 | version "2.0.0" 2293 | resolved "https://registry.yarnpkg.com/pkg-conf/-/pkg-conf-2.0.0.tgz#071c87650403bccfb9c627f58751bfe47c067279" 2294 | dependencies: 2295 | find-up "^2.0.0" 2296 | load-json-file "^2.0.0" 2297 | 2298 | pkg-dir@^2.0.0: 2299 | version "2.0.0" 2300 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" 2301 | dependencies: 2302 | find-up "^2.1.0" 2303 | 2304 | plur@^2.0.0, plur@^2.1.2: 2305 | version "2.1.2" 2306 | resolved "https://registry.yarnpkg.com/plur/-/plur-2.1.2.tgz#7482452c1a0f508e3e344eaec312c91c29dc655a" 2307 | dependencies: 2308 | irregular-plurals "^1.0.0" 2309 | 2310 | prepend-http@^1.0.1: 2311 | version "1.0.4" 2312 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 2313 | 2314 | preserve@^0.2.0: 2315 | version "0.2.0" 2316 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2317 | 2318 | prettier@^1.15.3: 2319 | version "1.15.3" 2320 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.15.3.tgz#1feaac5bdd181237b54dbe65d874e02a1472786a" 2321 | integrity sha512-gAU9AGAPMaKb3NNSUUuhhFAS7SCO4ALTN4nRIn6PJ075Qd28Yn2Ig2ahEJWdJwJmlEBTUfC7mMUSFy8MwsOCfg== 2322 | 2323 | pretty-ms@^0.2.1: 2324 | version "0.2.2" 2325 | resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-0.2.2.tgz#da879a682ff33a37011046f13d627f67c73b84f6" 2326 | dependencies: 2327 | parse-ms "^0.1.0" 2328 | 2329 | pretty-ms@^3.0.0: 2330 | version "3.1.0" 2331 | resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-3.1.0.tgz#e9cac9c76bf6ee52fe942dd9c6c4213153b12881" 2332 | dependencies: 2333 | parse-ms "^1.0.0" 2334 | plur "^2.1.2" 2335 | 2336 | private@^0.1.7: 2337 | version "0.1.8" 2338 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 2339 | 2340 | process-nextick-args@~1.0.6: 2341 | version "1.0.7" 2342 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2343 | 2344 | pseudomap@^1.0.2: 2345 | version "1.0.2" 2346 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2347 | 2348 | punycode@^1.4.1: 2349 | version "1.4.1" 2350 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2351 | 2352 | qs@~6.4.0: 2353 | version "6.4.0" 2354 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2355 | 2356 | randomatic@^1.1.3: 2357 | version "1.1.7" 2358 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 2359 | dependencies: 2360 | is-number "^3.0.0" 2361 | kind-of "^4.0.0" 2362 | 2363 | rc@^1.0.1, rc@^1.1.6, rc@^1.1.7: 2364 | version "1.2.2" 2365 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.2.tgz#d8ce9cb57e8d64d9c7badd9876c7c34cbe3c7077" 2366 | dependencies: 2367 | deep-extend "~0.4.0" 2368 | ini "~1.3.0" 2369 | minimist "^1.2.0" 2370 | strip-json-comments "~2.0.1" 2371 | 2372 | read-pkg-up@^1.0.1: 2373 | version "1.0.1" 2374 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2375 | dependencies: 2376 | find-up "^1.0.0" 2377 | read-pkg "^1.0.0" 2378 | 2379 | read-pkg-up@^2.0.0: 2380 | version "2.0.0" 2381 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 2382 | dependencies: 2383 | find-up "^2.0.0" 2384 | read-pkg "^2.0.0" 2385 | 2386 | read-pkg@^1.0.0: 2387 | version "1.1.0" 2388 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2389 | dependencies: 2390 | load-json-file "^1.0.0" 2391 | normalize-package-data "^2.3.2" 2392 | path-type "^1.0.0" 2393 | 2394 | read-pkg@^2.0.0: 2395 | version "2.0.0" 2396 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 2397 | dependencies: 2398 | load-json-file "^2.0.0" 2399 | normalize-package-data "^2.3.2" 2400 | path-type "^2.0.0" 2401 | 2402 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.1.5: 2403 | version "2.3.3" 2404 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 2405 | dependencies: 2406 | core-util-is "~1.0.0" 2407 | inherits "~2.0.3" 2408 | isarray "~1.0.0" 2409 | process-nextick-args "~1.0.6" 2410 | safe-buffer "~5.1.1" 2411 | string_decoder "~1.0.3" 2412 | util-deprecate "~1.0.1" 2413 | 2414 | readdirp@^2.0.0: 2415 | version "2.1.0" 2416 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2417 | dependencies: 2418 | graceful-fs "^4.1.2" 2419 | minimatch "^3.0.2" 2420 | readable-stream "^2.0.2" 2421 | set-immediate-shim "^1.0.1" 2422 | 2423 | redent@^1.0.0: 2424 | version "1.0.0" 2425 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 2426 | dependencies: 2427 | indent-string "^2.1.0" 2428 | strip-indent "^1.0.1" 2429 | 2430 | regenerate@^1.2.1: 2431 | version "1.3.3" 2432 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f" 2433 | 2434 | regenerator-runtime@^0.11.0: 2435 | version "0.11.1" 2436 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 2437 | 2438 | regex-cache@^0.4.2: 2439 | version "0.4.4" 2440 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2441 | dependencies: 2442 | is-equal-shallow "^0.1.3" 2443 | 2444 | regexpu-core@^2.0.0: 2445 | version "2.0.0" 2446 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2447 | dependencies: 2448 | regenerate "^1.2.1" 2449 | regjsgen "^0.2.0" 2450 | regjsparser "^0.1.4" 2451 | 2452 | registry-auth-token@^3.0.1: 2453 | version "3.3.1" 2454 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.1.tgz#fb0d3289ee0d9ada2cbb52af5dfe66cb070d3006" 2455 | dependencies: 2456 | rc "^1.1.6" 2457 | safe-buffer "^5.0.1" 2458 | 2459 | registry-url@^3.0.3: 2460 | version "3.1.0" 2461 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 2462 | dependencies: 2463 | rc "^1.0.1" 2464 | 2465 | regjsgen@^0.2.0: 2466 | version "0.2.0" 2467 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2468 | 2469 | regjsparser@^0.1.4: 2470 | version "0.1.5" 2471 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2472 | dependencies: 2473 | jsesc "~0.5.0" 2474 | 2475 | release-zalgo@^1.0.0: 2476 | version "1.0.0" 2477 | resolved "https://registry.yarnpkg.com/release-zalgo/-/release-zalgo-1.0.0.tgz#09700b7e5074329739330e535c5a90fb67851730" 2478 | dependencies: 2479 | es6-error "^4.0.1" 2480 | 2481 | remove-trailing-separator@^1.0.1: 2482 | version "1.1.0" 2483 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2484 | 2485 | repeat-element@^1.1.2: 2486 | version "1.1.2" 2487 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2488 | 2489 | repeat-string@^1.5.2: 2490 | version "1.6.1" 2491 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2492 | 2493 | repeating@^2.0.0: 2494 | version "2.0.1" 2495 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2496 | dependencies: 2497 | is-finite "^1.0.0" 2498 | 2499 | request@2.81.0: 2500 | version "2.81.0" 2501 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2502 | dependencies: 2503 | aws-sign2 "~0.6.0" 2504 | aws4 "^1.2.1" 2505 | caseless "~0.12.0" 2506 | combined-stream "~1.0.5" 2507 | extend "~3.0.0" 2508 | forever-agent "~0.6.1" 2509 | form-data "~2.1.1" 2510 | har-validator "~4.2.1" 2511 | hawk "~3.1.3" 2512 | http-signature "~1.1.0" 2513 | is-typedarray "~1.0.0" 2514 | isstream "~0.1.2" 2515 | json-stringify-safe "~5.0.1" 2516 | mime-types "~2.1.7" 2517 | oauth-sign "~0.8.1" 2518 | performance-now "^0.2.0" 2519 | qs "~6.4.0" 2520 | safe-buffer "^5.0.1" 2521 | stringstream "~0.0.4" 2522 | tough-cookie "~2.3.0" 2523 | tunnel-agent "^0.6.0" 2524 | uuid "^3.0.0" 2525 | 2526 | require-precompiled@^0.1.0: 2527 | version "0.1.0" 2528 | resolved "https://registry.yarnpkg.com/require-precompiled/-/require-precompiled-0.1.0.tgz#5a1b52eb70ebed43eb982e974c85ab59571e56fa" 2529 | 2530 | resolve-cwd@^2.0.0: 2531 | version "2.0.0" 2532 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" 2533 | dependencies: 2534 | resolve-from "^3.0.0" 2535 | 2536 | resolve-from@^3.0.0: 2537 | version "3.0.0" 2538 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" 2539 | 2540 | resolve@^1.3.2: 2541 | version "1.5.0" 2542 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36" 2543 | dependencies: 2544 | path-parse "^1.0.5" 2545 | 2546 | restore-cursor@^2.0.0: 2547 | version "2.0.0" 2548 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 2549 | dependencies: 2550 | onetime "^2.0.0" 2551 | signal-exit "^3.0.2" 2552 | 2553 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1: 2554 | version "2.6.2" 2555 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2556 | dependencies: 2557 | glob "^7.0.5" 2558 | 2559 | rx@2.3.24: 2560 | version "2.3.24" 2561 | resolved "https://registry.yarnpkg.com/rx/-/rx-2.3.24.tgz#14f950a4217d7e35daa71bbcbe58eff68ea4b2b7" 2562 | 2563 | safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2564 | version "5.1.1" 2565 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2566 | 2567 | semver-diff@^2.0.0: 2568 | version "2.1.0" 2569 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 2570 | dependencies: 2571 | semver "^5.0.3" 2572 | 2573 | "semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, semver@^5.4.1: 2574 | version "5.4.1" 2575 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 2576 | 2577 | set-blocking@~2.0.0: 2578 | version "2.0.0" 2579 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2580 | 2581 | set-immediate-shim@^1.0.1: 2582 | version "1.0.1" 2583 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2584 | 2585 | shebang-command@^1.2.0: 2586 | version "1.2.0" 2587 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2588 | dependencies: 2589 | shebang-regex "^1.0.0" 2590 | 2591 | shebang-regex@^1.0.0: 2592 | version "1.0.0" 2593 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2594 | 2595 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2596 | version "3.0.2" 2597 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2598 | 2599 | slash@^1.0.0: 2600 | version "1.0.0" 2601 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2602 | 2603 | slice-ansi@^1.0.0: 2604 | version "1.0.0" 2605 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" 2606 | dependencies: 2607 | is-fullwidth-code-point "^2.0.0" 2608 | 2609 | slide@^1.1.5: 2610 | version "1.1.6" 2611 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 2612 | 2613 | sntp@1.x.x: 2614 | version "1.0.9" 2615 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2616 | dependencies: 2617 | hoek "2.x.x" 2618 | 2619 | sort-keys@^2.0.0: 2620 | version "2.0.0" 2621 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-2.0.0.tgz#658535584861ec97d730d6cf41822e1f56684128" 2622 | dependencies: 2623 | is-plain-obj "^1.0.0" 2624 | 2625 | source-map-support@^0.4.15: 2626 | version "0.4.18" 2627 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 2628 | dependencies: 2629 | source-map "^0.5.6" 2630 | 2631 | source-map-support@^0.5.0: 2632 | version "0.5.0" 2633 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.0.tgz#2018a7ad2bdf8faf2691e5fddab26bed5a2bacab" 2634 | dependencies: 2635 | source-map "^0.6.0" 2636 | 2637 | source-map@^0.5.0, source-map@^0.5.6: 2638 | version "0.5.7" 2639 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2640 | 2641 | source-map@^0.6.0: 2642 | version "0.6.1" 2643 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2644 | 2645 | spawn-command@^0.0.2-1: 2646 | version "0.0.2-1" 2647 | resolved "https://registry.yarnpkg.com/spawn-command/-/spawn-command-0.0.2-1.tgz#62f5e9466981c1b796dc5929937e11c9c6921bd0" 2648 | 2649 | spdx-correct@~1.0.0: 2650 | version "1.0.2" 2651 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2652 | dependencies: 2653 | spdx-license-ids "^1.0.2" 2654 | 2655 | spdx-expression-parse@~1.0.0: 2656 | version "1.0.4" 2657 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2658 | 2659 | spdx-license-ids@^1.0.2: 2660 | version "1.2.2" 2661 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2662 | 2663 | sprintf-js@~1.0.2: 2664 | version "1.0.3" 2665 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2666 | 2667 | sshpk@^1.7.0: 2668 | version "1.13.1" 2669 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 2670 | dependencies: 2671 | asn1 "~0.2.3" 2672 | assert-plus "^1.0.0" 2673 | dashdash "^1.12.0" 2674 | getpass "^0.1.1" 2675 | optionalDependencies: 2676 | bcrypt-pbkdf "^1.0.0" 2677 | ecc-jsbn "~0.1.1" 2678 | jsbn "~0.1.0" 2679 | tweetnacl "~0.14.0" 2680 | 2681 | stack-utils@^1.0.1: 2682 | version "1.0.1" 2683 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.1.tgz#d4f33ab54e8e38778b0ca5cfd3b3afb12db68620" 2684 | 2685 | string-width@^1.0.1, string-width@^1.0.2: 2686 | version "1.0.2" 2687 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2688 | dependencies: 2689 | code-point-at "^1.0.0" 2690 | is-fullwidth-code-point "^1.0.0" 2691 | strip-ansi "^3.0.0" 2692 | 2693 | string-width@^2.0.0, string-width@^2.1.1: 2694 | version "2.1.1" 2695 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2696 | dependencies: 2697 | is-fullwidth-code-point "^2.0.0" 2698 | strip-ansi "^4.0.0" 2699 | 2700 | string_decoder@~1.0.3: 2701 | version "1.0.3" 2702 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 2703 | dependencies: 2704 | safe-buffer "~5.1.0" 2705 | 2706 | stringstream@~0.0.4: 2707 | version "0.0.5" 2708 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2709 | 2710 | strip-ansi@^0.3.0: 2711 | version "0.3.0" 2712 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-0.3.0.tgz#25f48ea22ca79187f3174a4db8759347bb126220" 2713 | dependencies: 2714 | ansi-regex "^0.2.1" 2715 | 2716 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2717 | version "3.0.1" 2718 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2719 | dependencies: 2720 | ansi-regex "^2.0.0" 2721 | 2722 | strip-ansi@^4.0.0: 2723 | version "4.0.0" 2724 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2725 | dependencies: 2726 | ansi-regex "^3.0.0" 2727 | 2728 | strip-ansi@~0.1.0: 2729 | version "0.1.1" 2730 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-0.1.1.tgz#39e8a98d044d150660abe4a6808acf70bb7bc991" 2731 | 2732 | strip-bom-buf@^1.0.0: 2733 | version "1.0.0" 2734 | resolved "https://registry.yarnpkg.com/strip-bom-buf/-/strip-bom-buf-1.0.0.tgz#1cb45aaf57530f4caf86c7f75179d2c9a51dd572" 2735 | dependencies: 2736 | is-utf8 "^0.2.1" 2737 | 2738 | strip-bom@^2.0.0: 2739 | version "2.0.0" 2740 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2741 | dependencies: 2742 | is-utf8 "^0.2.0" 2743 | 2744 | strip-bom@^3.0.0: 2745 | version "3.0.0" 2746 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2747 | 2748 | strip-eof@^1.0.0: 2749 | version "1.0.0" 2750 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 2751 | 2752 | strip-indent@^1.0.1: 2753 | version "1.0.1" 2754 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 2755 | dependencies: 2756 | get-stdin "^4.0.1" 2757 | 2758 | strip-json-comments@~2.0.1: 2759 | version "2.0.1" 2760 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2761 | 2762 | supports-color@^0.2.0: 2763 | version "0.2.0" 2764 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-0.2.0.tgz#d92de2694eb3f67323973d7ae3d8b55b4c22190a" 2765 | 2766 | supports-color@^2.0.0: 2767 | version "2.0.0" 2768 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2769 | 2770 | supports-color@^3.2.3: 2771 | version "3.2.3" 2772 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 2773 | dependencies: 2774 | has-flag "^1.0.0" 2775 | 2776 | supports-color@^4.0.0: 2777 | version "4.5.0" 2778 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 2779 | dependencies: 2780 | has-flag "^2.0.0" 2781 | 2782 | supports-color@^5.0.0: 2783 | version "5.1.0" 2784 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.1.0.tgz#058a021d1b619f7ddf3980d712ea3590ce7de3d5" 2785 | dependencies: 2786 | has-flag "^2.0.0" 2787 | 2788 | symbol-observable@^0.2.2: 2789 | version "0.2.4" 2790 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-0.2.4.tgz#95a83db26186d6af7e7a18dbd9760a2f86d08f40" 2791 | 2792 | symbol-observable@^1.0.4, symbol-observable@^1.1.0: 2793 | version "1.1.0" 2794 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.1.0.tgz#5c68fd8d54115d9dfb72a84720549222e8db9b32" 2795 | 2796 | tar-pack@^3.4.0: 2797 | version "3.4.1" 2798 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 2799 | dependencies: 2800 | debug "^2.2.0" 2801 | fstream "^1.0.10" 2802 | fstream-ignore "^1.0.5" 2803 | once "^1.3.3" 2804 | readable-stream "^2.1.4" 2805 | rimraf "^2.5.1" 2806 | tar "^2.2.1" 2807 | uid-number "^0.0.6" 2808 | 2809 | tar@^2.2.1: 2810 | version "2.2.1" 2811 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 2812 | dependencies: 2813 | block-stream "*" 2814 | fstream "^1.0.2" 2815 | inherits "2" 2816 | 2817 | term-size@^1.2.0: 2818 | version "1.2.0" 2819 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69" 2820 | dependencies: 2821 | execa "^0.7.0" 2822 | 2823 | text-table@^0.2.0: 2824 | version "0.2.0" 2825 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 2826 | 2827 | thenify-all@^1.0.0: 2828 | version "1.6.0" 2829 | resolved "https://registry.yarnpkg.com/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726" 2830 | dependencies: 2831 | thenify ">= 3.1.0 < 4" 2832 | 2833 | "thenify@>= 3.1.0 < 4": 2834 | version "3.3.0" 2835 | resolved "https://registry.yarnpkg.com/thenify/-/thenify-3.3.0.tgz#e69e38a1babe969b0108207978b9f62b88604839" 2836 | dependencies: 2837 | any-promise "^1.0.0" 2838 | 2839 | through2@^2.0.0: 2840 | version "2.0.3" 2841 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 2842 | dependencies: 2843 | readable-stream "^2.1.5" 2844 | xtend "~4.0.1" 2845 | 2846 | time-require@^0.1.2: 2847 | version "0.1.2" 2848 | resolved "https://registry.yarnpkg.com/time-require/-/time-require-0.1.2.tgz#f9e12cb370fc2605e11404582ba54ef5ca2b2d98" 2849 | dependencies: 2850 | chalk "^0.4.0" 2851 | date-time "^0.1.1" 2852 | pretty-ms "^0.2.1" 2853 | text-table "^0.2.0" 2854 | 2855 | time-zone@^1.0.0: 2856 | version "1.0.0" 2857 | resolved "https://registry.yarnpkg.com/time-zone/-/time-zone-1.0.0.tgz#99c5bf55958966af6d06d83bdf3800dc82faec5d" 2858 | 2859 | timed-out@^4.0.0: 2860 | version "4.0.1" 2861 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" 2862 | 2863 | to-fast-properties@^1.0.3: 2864 | version "1.0.3" 2865 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2866 | 2867 | to-fast-properties@^2.0.0: 2868 | version "2.0.0" 2869 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 2870 | 2871 | tough-cookie@~2.3.0: 2872 | version "2.3.3" 2873 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 2874 | dependencies: 2875 | punycode "^1.4.1" 2876 | 2877 | tree-kill@^1.1.0: 2878 | version "1.2.0" 2879 | resolved "https://registry.yarnpkg.com/tree-kill/-/tree-kill-1.2.0.tgz#5846786237b4239014f05db156b643212d4c6f36" 2880 | 2881 | trim-newlines@^1.0.0: 2882 | version "1.0.0" 2883 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 2884 | 2885 | trim-off-newlines@^1.0.1: 2886 | version "1.0.1" 2887 | resolved "https://registry.yarnpkg.com/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz#9f9ba9d9efa8764c387698bcbfeb2c848f11adb3" 2888 | 2889 | trim-right@^1.0.1: 2890 | version "1.0.1" 2891 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2892 | 2893 | tslib@^1.7.1, tslib@^1.8.0: 2894 | version "1.8.1" 2895 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.8.1.tgz#6946af2d1d651a7b1863b531d6e5afa41aa44eac" 2896 | 2897 | tslint@^5.8.0: 2898 | version "5.8.0" 2899 | resolved "https://registry.yarnpkg.com/tslint/-/tslint-5.8.0.tgz#1f49ad5b2e77c76c3af4ddcae552ae4e3612eb13" 2900 | dependencies: 2901 | babel-code-frame "^6.22.0" 2902 | builtin-modules "^1.1.1" 2903 | chalk "^2.1.0" 2904 | commander "^2.9.0" 2905 | diff "^3.2.0" 2906 | glob "^7.1.1" 2907 | minimatch "^3.0.4" 2908 | resolve "^1.3.2" 2909 | semver "^5.3.0" 2910 | tslib "^1.7.1" 2911 | tsutils "^2.12.1" 2912 | 2913 | tsutils@^2.12.1: 2914 | version "2.13.1" 2915 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-2.13.1.tgz#d6d1cc0f7c04cf9fb3b28a292973cffb9cfbe09a" 2916 | dependencies: 2917 | tslib "^1.8.0" 2918 | 2919 | tunnel-agent@^0.6.0: 2920 | version "0.6.0" 2921 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2922 | dependencies: 2923 | safe-buffer "^5.0.1" 2924 | 2925 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2926 | version "0.14.5" 2927 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2928 | 2929 | typescript@^2.6.2: 2930 | version "2.6.2" 2931 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.6.2.tgz#3c5b6fd7f6de0914269027f03c0946758f7673a4" 2932 | 2933 | uid-number@^0.0.6: 2934 | version "0.0.6" 2935 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 2936 | 2937 | uid2@0.0.3: 2938 | version "0.0.3" 2939 | resolved "https://registry.yarnpkg.com/uid2/-/uid2-0.0.3.tgz#483126e11774df2f71b8b639dcd799c376162b82" 2940 | 2941 | unique-string@^1.0.0: 2942 | version "1.0.0" 2943 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" 2944 | dependencies: 2945 | crypto-random-string "^1.0.0" 2946 | 2947 | unique-temp-dir@^1.0.0: 2948 | version "1.0.0" 2949 | resolved "https://registry.yarnpkg.com/unique-temp-dir/-/unique-temp-dir-1.0.0.tgz#6dce95b2681ca003eebfb304a415f9cbabcc5385" 2950 | dependencies: 2951 | mkdirp "^0.5.1" 2952 | os-tmpdir "^1.0.1" 2953 | uid2 "0.0.3" 2954 | 2955 | unzip-response@^2.0.1: 2956 | version "2.0.1" 2957 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" 2958 | 2959 | update-notifier@^2.3.0: 2960 | version "2.3.0" 2961 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.3.0.tgz#4e8827a6bb915140ab093559d7014e3ebb837451" 2962 | dependencies: 2963 | boxen "^1.2.1" 2964 | chalk "^2.0.1" 2965 | configstore "^3.0.0" 2966 | import-lazy "^2.1.0" 2967 | is-installed-globally "^0.1.0" 2968 | is-npm "^1.0.0" 2969 | latest-version "^3.0.0" 2970 | semver-diff "^2.0.0" 2971 | xdg-basedir "^3.0.0" 2972 | 2973 | url-parse-lax@^1.0.0: 2974 | version "1.0.0" 2975 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" 2976 | dependencies: 2977 | prepend-http "^1.0.1" 2978 | 2979 | util-deprecate@~1.0.1: 2980 | version "1.0.2" 2981 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2982 | 2983 | uuid@^3.0.0: 2984 | version "3.1.0" 2985 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 2986 | 2987 | validate-npm-package-license@^3.0.1: 2988 | version "3.0.1" 2989 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 2990 | dependencies: 2991 | spdx-correct "~1.0.0" 2992 | spdx-expression-parse "~1.0.0" 2993 | 2994 | verror@1.10.0: 2995 | version "1.10.0" 2996 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 2997 | dependencies: 2998 | assert-plus "^1.0.0" 2999 | core-util-is "1.0.2" 3000 | extsprintf "^1.2.0" 3001 | 3002 | well-known-symbols@^1.0.0: 3003 | version "1.0.0" 3004 | resolved "https://registry.yarnpkg.com/well-known-symbols/-/well-known-symbols-1.0.0.tgz#73c78ae81a7726a8fa598e2880801c8b16225518" 3005 | 3006 | which@^1.2.9: 3007 | version "1.3.0" 3008 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 3009 | dependencies: 3010 | isexe "^2.0.0" 3011 | 3012 | wide-align@^1.1.0: 3013 | version "1.1.2" 3014 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3015 | dependencies: 3016 | string-width "^1.0.2" 3017 | 3018 | widest-line@^2.0.0: 3019 | version "2.0.0" 3020 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-2.0.0.tgz#0142a4e8a243f8882c0233aa0e0281aa76152273" 3021 | dependencies: 3022 | string-width "^2.1.1" 3023 | 3024 | wrappy@1: 3025 | version "1.0.2" 3026 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3027 | 3028 | write-file-atomic@^1.1.4: 3029 | version "1.3.4" 3030 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.4.tgz#f807a4f0b1d9e913ae7a48112e6cc3af1991b45f" 3031 | dependencies: 3032 | graceful-fs "^4.1.11" 3033 | imurmurhash "^0.1.4" 3034 | slide "^1.1.5" 3035 | 3036 | write-file-atomic@^2.0.0: 3037 | version "2.3.0" 3038 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 3039 | dependencies: 3040 | graceful-fs "^4.1.11" 3041 | imurmurhash "^0.1.4" 3042 | signal-exit "^3.0.2" 3043 | 3044 | write-json-file@^2.2.0: 3045 | version "2.3.0" 3046 | resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-2.3.0.tgz#2b64c8a33004d54b8698c76d585a77ceb61da32f" 3047 | dependencies: 3048 | detect-indent "^5.0.0" 3049 | graceful-fs "^4.1.2" 3050 | make-dir "^1.0.0" 3051 | pify "^3.0.0" 3052 | sort-keys "^2.0.0" 3053 | write-file-atomic "^2.0.0" 3054 | 3055 | write-pkg@^3.1.0: 3056 | version "3.1.0" 3057 | resolved "https://registry.yarnpkg.com/write-pkg/-/write-pkg-3.1.0.tgz#030a9994cc9993d25b4e75a9f1a1923607291ce9" 3058 | dependencies: 3059 | sort-keys "^2.0.0" 3060 | write-json-file "^2.2.0" 3061 | 3062 | xdg-basedir@^3.0.0: 3063 | version "3.0.0" 3064 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" 3065 | 3066 | xtend@^4.0.0, xtend@~4.0.1: 3067 | version "4.0.1" 3068 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3069 | 3070 | yallist@^2.1.2: 3071 | version "2.1.2" 3072 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3073 | --------------------------------------------------------------------------------