├── .gitignore ├── .flowconfig ├── examples ├── parse.js ├── generate.js ├── traverse.js ├── transform.js └── reduce.js ├── src ├── generate.js ├── traverse.js ├── types.js ├── transform.js ├── parse.js ├── merge.js ├── index.js ├── Binding.js ├── errors.js ├── messages.js ├── match.js ├── reduce.js ├── Path.js └── Scope.js ├── package.json ├── README.md └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | 3 | [include] 4 | 5 | [libs] 6 | 7 | [lints] 8 | 9 | [options] 10 | -------------------------------------------------------------------------------- /examples/parse.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import { parse, type ASTNode } from '../src/index'; 3 | 4 | export default function parseCode(code: string): ASTNode { 5 | return parse(code, { 6 | // ... 7 | }); 8 | } 9 | -------------------------------------------------------------------------------- /examples/generate.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import { generate, type ASTNode } from '../src/index'; 3 | 4 | export default function printAST(ast: ASTNode): string { 5 | return generate(ast, { 6 | // ... 7 | }).code; 8 | } 9 | -------------------------------------------------------------------------------- /src/generate.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import type { ASTNode, GeneratorOptions } from './types'; 3 | 4 | export default function generate( 5 | ast: ASTNode, 6 | opts: GeneratorOptions, 7 | ): { code: string, map: string } { 8 | // ... 9 | return { code: '', map: '' }; 10 | } 11 | -------------------------------------------------------------------------------- /src/traverse.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import type { ASTNode, Visitor } from './types'; 3 | import Path from './path'; 4 | 5 | export default function traverse( 6 | path: Path, 7 | visitor: Visitor, 8 | context: Context, 9 | ): Context { 10 | // ... 11 | return context; 12 | } 13 | -------------------------------------------------------------------------------- /src/types.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import Path from './Path'; 3 | 4 | export type ASTNode = Object; 5 | 6 | export type ParserOptions = { 7 | // ... 8 | }; 9 | 10 | export type GeneratorOptions = { 11 | // ... 12 | }; 13 | 14 | export type Visitor = ( 15 | path: Path, 16 | context: Context, 17 | ) => Path | ASTNode | null; 18 | -------------------------------------------------------------------------------- /src/transform.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import type { ASTNode, Visitor } from './types'; 3 | import Path from './path'; 4 | 5 | export default async function transform( 6 | path: Path, 7 | visitor: Visitor, 8 | context: Context, 9 | ) { 10 | let transformed = path; 11 | 12 | // ... 13 | 14 | return transformed.node; 15 | } 16 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@compiler/core", 3 | "version": "0.0.0", 4 | "main": "index.js", 5 | "repository": "https://github.com/thejameskyle/compiler", 6 | "author": "James Kyle ", 7 | "license": "MIT", 8 | "scripts": { 9 | "test": "jest" 10 | }, 11 | "devDependencies": { 12 | "flow-bin": "^0.57.3", 13 | "jest": "^21.2.1" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /examples/traverse.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import { traverse, match, Path } from '../src/index'; 3 | 4 | const traverser = (path, context) => match(path.node.type, { 5 | Identifier() { 6 | context.ids.push(path.node); 7 | return path; 8 | }, 9 | else() { 10 | return path; 11 | } 12 | }); 13 | 14 | export function collectIdentifiers(path: Path) { 15 | return traverse(path, traverser, { ids: [] }).ids; 16 | } 17 | -------------------------------------------------------------------------------- /src/parse.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import type { ParserOptions, ASTNode } from './types'; 3 | import { CompilerSyntaxError, CompilerTypeError } from './errors'; 4 | 5 | export default function parse(code: string, opts: ParserOptions): ASTNode { 6 | // ... 7 | return { 8 | type: 'File', 9 | code: '', 10 | filename: '', 11 | opts, 12 | program: { 13 | type: 'Program', 14 | body: [], 15 | }, 16 | }; 17 | } 18 | -------------------------------------------------------------------------------- /src/merge.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import type { Visitor } from './types'; 3 | import Path from './Path'; 4 | 5 | export default function merge( 6 | ...visitors: Array> 7 | ): Visitor { 8 | return function mergedVisitor(path: Path, context: Context) { 9 | for (let visitor of visitors) { 10 | let result = visitor(path, context); 11 | if (result !== path) return result; 12 | } 13 | 14 | return path; 15 | }; 16 | } 17 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | export * from './types'; 3 | export * from './errors'; 4 | export { default as parse } from './parse'; 5 | export { default as reduce } from './reduce'; 6 | export { default as transform } from './transform'; 7 | export { default as traverse } from './traverse'; 8 | export { default as generate } from './generate'; 9 | export { default as match } from './match'; 10 | export { default as Path } from './Path'; 11 | export { default as Scope } from './Scope'; 12 | export { default as Binding } from './Binding'; 13 | -------------------------------------------------------------------------------- /examples/transform.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import { transform, match, Path } from '../src/index'; 3 | 4 | const transformer = (path, context) => match(path.node.type, { 5 | Identifier() { 6 | let name = path.node.name.split('').reverse().join(''); 7 | // Replace 8 | return { ...path.node, name }; 9 | }, 10 | 11 | else() { 12 | // Don't touch 13 | return path; 14 | }, 15 | }); 16 | 17 | export default function reverseIdentifiers(path: Path, context: {}) { 18 | return transform(path, transformer, context); 19 | } 20 | -------------------------------------------------------------------------------- /src/Binding.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import Path from './path'; 3 | 4 | /** 5 | * Bindings belong to a scope, but contain references in any nested scope. 6 | * 7 | * These should be considered immutable. Once you go and modify paths within 8 | * the AST, you'll have to recalculate scope. To fix performance, the parent 9 | * Scope object caches results from previous revisions of the AST. 10 | */ 11 | export default class Binding { 12 | path: Path; 13 | references: Array; 14 | 15 | constructor(path: Path, references: Array) { 16 | this.path = path; 17 | this.references = references; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/errors.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import Path from './Path'; 3 | 4 | export function buildCodeFrame(path: Path, message: string): string { 5 | // ... 6 | return ''; 7 | } 8 | 9 | export class CompilerError extends Error { 10 | path: Path | null; 11 | 12 | constructor( 13 | message: string, 14 | path: Path | null = null, 15 | ) { 16 | if (path) { 17 | message = buildCodeFrame(path, message); 18 | } 19 | super(message); 20 | this.path = path; 21 | } 22 | } 23 | 24 | export class CompilerSyntaxError extends CompilerError {} 25 | export class CompilerTypeError extends CompilerError {} 26 | -------------------------------------------------------------------------------- /src/messages.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | /** 4 | * These are messages used for errors/warnings/etc. 5 | */ 6 | export default { 7 | needsPath: 'Cannot call `reduce(path, context)` without path object', 8 | needsContext: 'Cannot call `reduce(path, context)` without a context (even if it is `null`)', 9 | pathGetOnArray: 'Called path.get() to retrieve an array value, should call path.getArray()', 10 | calledGetArrayOnNonArray: 'Called Path#getArray to get a non-array value', 11 | missingMatchMethod: (nodeType: string) => `Tried to match nodeType "${nodeType}", but no ${nodeType}() or else() method provided`, 12 | }; 13 | -------------------------------------------------------------------------------- /src/match.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import type { ASTNode } from './types'; 3 | import { CompilerError } from './errors'; 4 | import messages from './messages'; 5 | 6 | type Matcher = { 7 | [key: string]: () => Result, 8 | }; 9 | 10 | export default function match(nodeType: string, matcher: Matcher): Result { 11 | let method; 12 | 13 | if (typeof matcher[nodeType] === 'function') { 14 | method = matcher[nodeType]; 15 | } else if (matcher.else) { 16 | method = matcher.else; 17 | } else { 18 | throw new CompilerError(messages.missingMatchMethod(nodeType)); 19 | } 20 | 21 | return method(); 22 | } 23 | -------------------------------------------------------------------------------- /examples/reduce.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import { reduce, match, CompilerTypeError, Path } from '../src/index'; 3 | 4 | const reducer = (path, context, reduce) => match(path.node.type, { 5 | Program() { 6 | let results = []; 7 | 8 | for (let item of path.getArray('body')) { 9 | if (path.node.type === 'ExportNamedDeclaration' || path.node.type === 'ExportDefaultDeclaration') { 10 | results = results.concat(reduce(item, context)); 11 | } 12 | } 13 | 14 | results; 15 | }, 16 | 17 | ExportNamedDeclaration() { 18 | // ... 19 | }, 20 | 21 | ExportDefaultDeclaration() { 22 | // ... 23 | }, 24 | }); 25 | 26 | export default function getExports(path: Path, context: {}) { 27 | return reduce(path, reducer, context); 28 | } 29 | -------------------------------------------------------------------------------- /src/reduce.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import type { ASTNode } from './types'; 3 | import { CompilerTypeError } from './errors'; 4 | import Path from './path'; 5 | import messages from './messages'; 6 | 7 | export default function reduce( 8 | path: Path, 9 | reducer: (path: Path, context: $Shape, reduce: (path: Path, context: $Shape) => Result) => Result, 10 | context: Context, 11 | ): Result { 12 | function cb(path: Path, context: $Shape) { 13 | if (!(path instanceof Path)) { 14 | throw new CompilerTypeError(messages.needsPath, path); 15 | } 16 | 17 | if (typeof context === 'undefined') { 18 | throw new CompilerTypeError(messages.needsContext, path); 19 | } 20 | 21 | return reducer(path, context, cb); 22 | } 23 | 24 | return cb(path, context); 25 | } 26 | -------------------------------------------------------------------------------- /src/Path.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import type { ASTNode } from './types'; 3 | import messages from './messages'; 4 | 5 | export default class Path { 6 | node: ASTNode; 7 | parent: Path | null; 8 | key: string | null; 9 | index: number | null; 10 | 11 | constructor( 12 | node: ASTNode, 13 | parent: Path | null = null, 14 | key: string | null = null, 15 | index: number | null = null, 16 | ) { 17 | this.node = node; 18 | this.parent = parent; 19 | this.key = key; 20 | this.index = index; 21 | } 22 | 23 | get(key: string): Path { 24 | let value = this.node[key]; 25 | if (Array.isArray(value)) { 26 | console.warn(messages.pathGetOnArray); 27 | } 28 | return new Path(value, this, key); 29 | } 30 | 31 | getArray(key: string): Array { 32 | let value = this.node[key]; 33 | if (Array.isArray(value)) { 34 | return value.map((val, index) => { 35 | return new Path(val, this, key, index); 36 | }); 37 | } else if (value == null) { 38 | return []; 39 | } else { 40 | throw new Error(messages.calledGetArrayOnNonArray); 41 | } 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /src/Scope.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | import type { ASTNode } from './types'; 3 | import Path from './Path'; 4 | import Binding from './Binding'; 5 | import traverse from './traverse'; 6 | 7 | type CacheEntry = { 8 | // These are additional bindings found within a path that need to be added to 9 | // the list of other bindings. 10 | bindings: Array<{ name: string, binding: Binding }>, 11 | // These are additional references found within a path that need to be merged 12 | // back into the appropriate bindings. 13 | references: Array<{ name: string, path: Path }>, 14 | }; 15 | 16 | const cache: WeakMap = new WeakMap(); 17 | 18 | // This function will traverse through a scope finding every binding and 19 | // reference. Caching parts of the (immutable) AST so that it doesn't 20 | function collectBindings(path): Array { 21 | return []; 22 | } 23 | 24 | export default class Scope { 25 | path: Path; 26 | bindings: Array; 27 | 28 | constructor(path: Path) { 29 | this.path = path; 30 | this.bindings = collectBindings(path); 31 | } 32 | 33 | static getClosestScopePath(path: Path): Path { 34 | return path; 35 | } 36 | 37 | static getParentScopePath(path: Path): Path { 38 | return path; 39 | } 40 | 41 | static isScopePath(path: Path): boolean { 42 | return true; 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Compiler API Playground 2 | 3 | See examples in `examples/`. 4 | 5 | ## Core Principles 6 | 7 | - Immutable 8 | - Async 9 | - Performant 10 | - Deterministic 11 | - Composable 12 | - Extendable 13 | - Strongly Typed 14 | - Cleaner Primitives 15 | 16 | ## Ideas 17 | 18 | - No visitors, rely on pattern matching. 19 | - No visiting on node "exit". 20 | - Functional/Immutable transforms 21 | - No path manipulation APIs, return transformations. 22 | - No change: `return path` 23 | - Remove: `return null` 24 | - Replace: `return node` 25 | - Explicit Scope API 26 | - Only create scopes when needed. 27 | - Cache results based on immutable AST. 28 | - Multiple warnings and errors 29 | - Warnings generate output but fail 30 | - Errors fail without generating output 31 | - ESTree-compatible parser agnostic 32 | - Better/Faster code generation 33 | 34 | ```js 35 | // compiler-config.js 36 | import { transform, merge } from '@compiler/core'; 37 | import flow from '@compiler/flow'; 38 | import react from '@compiler/react'; 39 | import classProperties from '@compiler/class-properties'; 40 | import pipelineOperator from '@compiler/pipeline-operator' 41 | 42 | const transformer = merge( 43 | flow, 44 | react, 45 | classProperties, 46 | pipelineOperator, 47 | ); 48 | 49 | export default (path, context) => { 50 | return transform(path, transformer, context); 51 | }; 52 | ``` 53 | 54 | ## API 55 | 56 | # `reduce()` 57 | 58 | 59 | # `traverse()` 60 | 61 | 62 | # `transform()` 63 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abab@^1.0.3: 6 | version "1.0.4" 7 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.4.tgz#5faad9c2c07f60dd76770f71cf025b62a63cfd4e" 8 | 9 | abbrev@1: 10 | version "1.1.1" 11 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 12 | 13 | acorn-globals@^3.1.0: 14 | version "3.1.0" 15 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 16 | dependencies: 17 | acorn "^4.0.4" 18 | 19 | acorn@^4.0.4: 20 | version "4.0.13" 21 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 22 | 23 | ajv@^4.9.1: 24 | version "4.11.8" 25 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 26 | dependencies: 27 | co "^4.6.0" 28 | json-stable-stringify "^1.0.1" 29 | 30 | ajv@^5.1.0: 31 | version "5.2.3" 32 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.2.3.tgz#c06f598778c44c6b161abafe3466b81ad1814ed2" 33 | dependencies: 34 | co "^4.6.0" 35 | fast-deep-equal "^1.0.0" 36 | json-schema-traverse "^0.3.0" 37 | json-stable-stringify "^1.0.1" 38 | 39 | align-text@^0.1.1, align-text@^0.1.3: 40 | version "0.1.4" 41 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 42 | dependencies: 43 | kind-of "^3.0.2" 44 | longest "^1.0.1" 45 | repeat-string "^1.5.2" 46 | 47 | amdefine@>=0.0.4: 48 | version "1.0.1" 49 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 50 | 51 | ansi-escapes@^3.0.0: 52 | version "3.0.0" 53 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92" 54 | 55 | ansi-regex@^2.0.0: 56 | version "2.1.1" 57 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 58 | 59 | ansi-regex@^3.0.0: 60 | version "3.0.0" 61 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 62 | 63 | ansi-styles@^2.2.1: 64 | version "2.2.1" 65 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 66 | 67 | ansi-styles@^3.1.0, ansi-styles@^3.2.0: 68 | version "3.2.0" 69 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 70 | dependencies: 71 | color-convert "^1.9.0" 72 | 73 | anymatch@^1.3.0: 74 | version "1.3.2" 75 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 76 | dependencies: 77 | micromatch "^2.1.5" 78 | normalize-path "^2.0.0" 79 | 80 | append-transform@^0.4.0: 81 | version "0.4.0" 82 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 83 | dependencies: 84 | default-require-extensions "^1.0.0" 85 | 86 | aproba@^1.0.3: 87 | version "1.2.0" 88 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 89 | 90 | are-we-there-yet@~1.1.2: 91 | version "1.1.4" 92 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 93 | dependencies: 94 | delegates "^1.0.0" 95 | readable-stream "^2.0.6" 96 | 97 | argparse@^1.0.7: 98 | version "1.0.9" 99 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 100 | dependencies: 101 | sprintf-js "~1.0.2" 102 | 103 | arr-diff@^2.0.0: 104 | version "2.0.0" 105 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 106 | dependencies: 107 | arr-flatten "^1.0.1" 108 | 109 | arr-flatten@^1.0.1: 110 | version "1.1.0" 111 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 112 | 113 | array-equal@^1.0.0: 114 | version "1.0.0" 115 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 116 | 117 | array-unique@^0.2.1: 118 | version "0.2.1" 119 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 120 | 121 | arrify@^1.0.1: 122 | version "1.0.1" 123 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 124 | 125 | asn1@~0.2.3: 126 | version "0.2.3" 127 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 128 | 129 | assert-plus@1.0.0, assert-plus@^1.0.0: 130 | version "1.0.0" 131 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 132 | 133 | assert-plus@^0.2.0: 134 | version "0.2.0" 135 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 136 | 137 | astral-regex@^1.0.0: 138 | version "1.0.0" 139 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 140 | 141 | async@^1.4.0: 142 | version "1.5.2" 143 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 144 | 145 | async@^2.1.4: 146 | version "2.5.0" 147 | resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d" 148 | dependencies: 149 | lodash "^4.14.0" 150 | 151 | asynckit@^0.4.0: 152 | version "0.4.0" 153 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 154 | 155 | aws-sign2@~0.6.0: 156 | version "0.6.0" 157 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 158 | 159 | aws-sign2@~0.7.0: 160 | version "0.7.0" 161 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 162 | 163 | aws4@^1.2.1, aws4@^1.6.0: 164 | version "1.6.0" 165 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 166 | 167 | babel-code-frame@^6.26.0: 168 | version "6.26.0" 169 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 170 | dependencies: 171 | chalk "^1.1.3" 172 | esutils "^2.0.2" 173 | js-tokens "^3.0.2" 174 | 175 | babel-core@^6.0.0, babel-core@^6.26.0: 176 | version "6.26.0" 177 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 178 | dependencies: 179 | babel-code-frame "^6.26.0" 180 | babel-generator "^6.26.0" 181 | babel-helpers "^6.24.1" 182 | babel-messages "^6.23.0" 183 | babel-register "^6.26.0" 184 | babel-runtime "^6.26.0" 185 | babel-template "^6.26.0" 186 | babel-traverse "^6.26.0" 187 | babel-types "^6.26.0" 188 | babylon "^6.18.0" 189 | convert-source-map "^1.5.0" 190 | debug "^2.6.8" 191 | json5 "^0.5.1" 192 | lodash "^4.17.4" 193 | minimatch "^3.0.4" 194 | path-is-absolute "^1.0.1" 195 | private "^0.1.7" 196 | slash "^1.0.0" 197 | source-map "^0.5.6" 198 | 199 | babel-generator@^6.18.0, babel-generator@^6.26.0: 200 | version "6.26.0" 201 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 202 | dependencies: 203 | babel-messages "^6.23.0" 204 | babel-runtime "^6.26.0" 205 | babel-types "^6.26.0" 206 | detect-indent "^4.0.0" 207 | jsesc "^1.3.0" 208 | lodash "^4.17.4" 209 | source-map "^0.5.6" 210 | trim-right "^1.0.1" 211 | 212 | babel-helpers@^6.24.1: 213 | version "6.24.1" 214 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 215 | dependencies: 216 | babel-runtime "^6.22.0" 217 | babel-template "^6.24.1" 218 | 219 | babel-jest@^21.2.0: 220 | version "21.2.0" 221 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-21.2.0.tgz#2ce059519a9374a2c46f2455b6fbef5ad75d863e" 222 | dependencies: 223 | babel-plugin-istanbul "^4.0.0" 224 | babel-preset-jest "^21.2.0" 225 | 226 | babel-messages@^6.23.0: 227 | version "6.23.0" 228 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 229 | dependencies: 230 | babel-runtime "^6.22.0" 231 | 232 | babel-plugin-istanbul@^4.0.0: 233 | version "4.1.5" 234 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.5.tgz#6760cdd977f411d3e175bb064f2bc327d99b2b6e" 235 | dependencies: 236 | find-up "^2.1.0" 237 | istanbul-lib-instrument "^1.7.5" 238 | test-exclude "^4.1.1" 239 | 240 | babel-plugin-jest-hoist@^21.2.0: 241 | version "21.2.0" 242 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-21.2.0.tgz#2cef637259bd4b628a6cace039de5fcd14dbb006" 243 | 244 | babel-plugin-syntax-object-rest-spread@^6.13.0: 245 | version "6.13.0" 246 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 247 | 248 | babel-preset-jest@^21.2.0: 249 | version "21.2.0" 250 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-21.2.0.tgz#ff9d2bce08abd98e8a36d9a8a5189b9173b85638" 251 | dependencies: 252 | babel-plugin-jest-hoist "^21.2.0" 253 | babel-plugin-syntax-object-rest-spread "^6.13.0" 254 | 255 | babel-register@^6.26.0: 256 | version "6.26.0" 257 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 258 | dependencies: 259 | babel-core "^6.26.0" 260 | babel-runtime "^6.26.0" 261 | core-js "^2.5.0" 262 | home-or-tmp "^2.0.0" 263 | lodash "^4.17.4" 264 | mkdirp "^0.5.1" 265 | source-map-support "^0.4.15" 266 | 267 | babel-runtime@^6.22.0, babel-runtime@^6.26.0: 268 | version "6.26.0" 269 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 270 | dependencies: 271 | core-js "^2.4.0" 272 | regenerator-runtime "^0.11.0" 273 | 274 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0: 275 | version "6.26.0" 276 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 277 | dependencies: 278 | babel-runtime "^6.26.0" 279 | babel-traverse "^6.26.0" 280 | babel-types "^6.26.0" 281 | babylon "^6.18.0" 282 | lodash "^4.17.4" 283 | 284 | babel-traverse@^6.18.0, babel-traverse@^6.26.0: 285 | version "6.26.0" 286 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 287 | dependencies: 288 | babel-code-frame "^6.26.0" 289 | babel-messages "^6.23.0" 290 | babel-runtime "^6.26.0" 291 | babel-types "^6.26.0" 292 | babylon "^6.18.0" 293 | debug "^2.6.8" 294 | globals "^9.18.0" 295 | invariant "^2.2.2" 296 | lodash "^4.17.4" 297 | 298 | babel-types@^6.18.0, babel-types@^6.26.0: 299 | version "6.26.0" 300 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 301 | dependencies: 302 | babel-runtime "^6.26.0" 303 | esutils "^2.0.2" 304 | lodash "^4.17.4" 305 | to-fast-properties "^1.0.3" 306 | 307 | babylon@^6.18.0: 308 | version "6.18.0" 309 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 310 | 311 | balanced-match@^1.0.0: 312 | version "1.0.0" 313 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 314 | 315 | bcrypt-pbkdf@^1.0.0: 316 | version "1.0.1" 317 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 318 | dependencies: 319 | tweetnacl "^0.14.3" 320 | 321 | block-stream@*: 322 | version "0.0.9" 323 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 324 | dependencies: 325 | inherits "~2.0.0" 326 | 327 | boom@2.x.x: 328 | version "2.10.1" 329 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 330 | dependencies: 331 | hoek "2.x.x" 332 | 333 | boom@4.x.x: 334 | version "4.3.1" 335 | resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31" 336 | dependencies: 337 | hoek "4.x.x" 338 | 339 | boom@5.x.x: 340 | version "5.2.0" 341 | resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02" 342 | dependencies: 343 | hoek "4.x.x" 344 | 345 | brace-expansion@^1.1.7: 346 | version "1.1.8" 347 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 348 | dependencies: 349 | balanced-match "^1.0.0" 350 | concat-map "0.0.1" 351 | 352 | braces@^1.8.2: 353 | version "1.8.5" 354 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 355 | dependencies: 356 | expand-range "^1.8.1" 357 | preserve "^0.2.0" 358 | repeat-element "^1.1.2" 359 | 360 | browser-resolve@^1.11.2: 361 | version "1.11.2" 362 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 363 | dependencies: 364 | resolve "1.1.7" 365 | 366 | bser@^2.0.0: 367 | version "2.0.0" 368 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 369 | dependencies: 370 | node-int64 "^0.4.0" 371 | 372 | builtin-modules@^1.0.0: 373 | version "1.1.1" 374 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 375 | 376 | callsites@^2.0.0: 377 | version "2.0.0" 378 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 379 | 380 | camelcase@^1.0.2: 381 | version "1.2.1" 382 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 383 | 384 | camelcase@^4.1.0: 385 | version "4.1.0" 386 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 387 | 388 | caseless@~0.12.0: 389 | version "0.12.0" 390 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 391 | 392 | center-align@^0.1.1: 393 | version "0.1.3" 394 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 395 | dependencies: 396 | align-text "^0.1.3" 397 | lazy-cache "^1.0.3" 398 | 399 | chalk@^1.1.3: 400 | version "1.1.3" 401 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 402 | dependencies: 403 | ansi-styles "^2.2.1" 404 | escape-string-regexp "^1.0.2" 405 | has-ansi "^2.0.0" 406 | strip-ansi "^3.0.0" 407 | supports-color "^2.0.0" 408 | 409 | chalk@^2.0.1: 410 | version "2.1.0" 411 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.1.0.tgz#ac5becf14fa21b99c6c92ca7a7d7cfd5b17e743e" 412 | dependencies: 413 | ansi-styles "^3.1.0" 414 | escape-string-regexp "^1.0.5" 415 | supports-color "^4.0.0" 416 | 417 | ci-info@^1.0.0: 418 | version "1.1.1" 419 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.1.tgz#47b44df118c48d2597b56d342e7e25791060171a" 420 | 421 | cliui@^2.1.0: 422 | version "2.1.0" 423 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 424 | dependencies: 425 | center-align "^0.1.1" 426 | right-align "^0.1.1" 427 | wordwrap "0.0.2" 428 | 429 | cliui@^3.2.0: 430 | version "3.2.0" 431 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 432 | dependencies: 433 | string-width "^1.0.1" 434 | strip-ansi "^3.0.1" 435 | wrap-ansi "^2.0.0" 436 | 437 | co@^4.6.0: 438 | version "4.6.0" 439 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 440 | 441 | code-point-at@^1.0.0: 442 | version "1.1.0" 443 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 444 | 445 | color-convert@^1.9.0: 446 | version "1.9.0" 447 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 448 | dependencies: 449 | color-name "^1.1.1" 450 | 451 | color-name@^1.1.1: 452 | version "1.1.3" 453 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 454 | 455 | combined-stream@^1.0.5, combined-stream@~1.0.5: 456 | version "1.0.5" 457 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 458 | dependencies: 459 | delayed-stream "~1.0.0" 460 | 461 | concat-map@0.0.1: 462 | version "0.0.1" 463 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 464 | 465 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 466 | version "1.1.0" 467 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 468 | 469 | content-type-parser@^1.0.1: 470 | version "1.0.1" 471 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 472 | 473 | convert-source-map@^1.4.0, convert-source-map@^1.5.0: 474 | version "1.5.0" 475 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 476 | 477 | core-js@^2.4.0, core-js@^2.5.0: 478 | version "2.5.1" 479 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.1.tgz#ae6874dc66937789b80754ff5428df66819ca50b" 480 | 481 | core-util-is@1.0.2, core-util-is@~1.0.0: 482 | version "1.0.2" 483 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 484 | 485 | cross-spawn@^5.0.1: 486 | version "5.1.0" 487 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 488 | dependencies: 489 | lru-cache "^4.0.1" 490 | shebang-command "^1.2.0" 491 | which "^1.2.9" 492 | 493 | cryptiles@2.x.x: 494 | version "2.0.5" 495 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 496 | dependencies: 497 | boom "2.x.x" 498 | 499 | cryptiles@3.x.x: 500 | version "3.1.2" 501 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe" 502 | dependencies: 503 | boom "5.x.x" 504 | 505 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 506 | version "0.3.2" 507 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 508 | 509 | "cssstyle@>= 0.2.37 < 0.3.0": 510 | version "0.2.37" 511 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 512 | dependencies: 513 | cssom "0.3.x" 514 | 515 | dashdash@^1.12.0: 516 | version "1.14.1" 517 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 518 | dependencies: 519 | assert-plus "^1.0.0" 520 | 521 | debug@^2.2.0, debug@^2.6.3, debug@^2.6.8: 522 | version "2.6.9" 523 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 524 | dependencies: 525 | ms "2.0.0" 526 | 527 | decamelize@^1.0.0, decamelize@^1.1.1: 528 | version "1.2.0" 529 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 530 | 531 | deep-extend@~0.4.0: 532 | version "0.4.2" 533 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 534 | 535 | deep-is@~0.1.3: 536 | version "0.1.3" 537 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 538 | 539 | default-require-extensions@^1.0.0: 540 | version "1.0.0" 541 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 542 | dependencies: 543 | strip-bom "^2.0.0" 544 | 545 | delayed-stream@~1.0.0: 546 | version "1.0.0" 547 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 548 | 549 | delegates@^1.0.0: 550 | version "1.0.0" 551 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 552 | 553 | detect-indent@^4.0.0: 554 | version "4.0.0" 555 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 556 | dependencies: 557 | repeating "^2.0.0" 558 | 559 | diff@^3.2.0: 560 | version "3.4.0" 561 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.4.0.tgz#b1d85507daf3964828de54b37d0d73ba67dda56c" 562 | 563 | ecc-jsbn@~0.1.1: 564 | version "0.1.1" 565 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 566 | dependencies: 567 | jsbn "~0.1.0" 568 | 569 | errno@^0.1.4: 570 | version "0.1.4" 571 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 572 | dependencies: 573 | prr "~0.0.0" 574 | 575 | error-ex@^1.2.0: 576 | version "1.3.1" 577 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 578 | dependencies: 579 | is-arrayish "^0.2.1" 580 | 581 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 582 | version "1.0.5" 583 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 584 | 585 | escodegen@^1.6.1: 586 | version "1.9.0" 587 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.9.0.tgz#9811a2f265dc1cd3894420ee3717064b632b8852" 588 | dependencies: 589 | esprima "^3.1.3" 590 | estraverse "^4.2.0" 591 | esutils "^2.0.2" 592 | optionator "^0.8.1" 593 | optionalDependencies: 594 | source-map "~0.5.6" 595 | 596 | esprima@^3.1.3: 597 | version "3.1.3" 598 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 599 | 600 | esprima@^4.0.0: 601 | version "4.0.0" 602 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 603 | 604 | estraverse@^4.2.0: 605 | version "4.2.0" 606 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 607 | 608 | esutils@^2.0.2: 609 | version "2.0.2" 610 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 611 | 612 | exec-sh@^0.2.0: 613 | version "0.2.1" 614 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.1.tgz#163b98a6e89e6b65b47c2a28d215bc1f63989c38" 615 | dependencies: 616 | merge "^1.1.3" 617 | 618 | execa@^0.7.0: 619 | version "0.7.0" 620 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 621 | dependencies: 622 | cross-spawn "^5.0.1" 623 | get-stream "^3.0.0" 624 | is-stream "^1.1.0" 625 | npm-run-path "^2.0.0" 626 | p-finally "^1.0.0" 627 | signal-exit "^3.0.0" 628 | strip-eof "^1.0.0" 629 | 630 | expand-brackets@^0.1.4: 631 | version "0.1.5" 632 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 633 | dependencies: 634 | is-posix-bracket "^0.1.0" 635 | 636 | expand-range@^1.8.1: 637 | version "1.8.2" 638 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 639 | dependencies: 640 | fill-range "^2.1.0" 641 | 642 | expect@^21.2.1: 643 | version "21.2.1" 644 | resolved "https://registry.yarnpkg.com/expect/-/expect-21.2.1.tgz#003ac2ac7005c3c29e73b38a272d4afadd6d1d7b" 645 | dependencies: 646 | ansi-styles "^3.2.0" 647 | jest-diff "^21.2.1" 648 | jest-get-type "^21.2.0" 649 | jest-matcher-utils "^21.2.1" 650 | jest-message-util "^21.2.1" 651 | jest-regex-util "^21.2.0" 652 | 653 | extend@~3.0.0, extend@~3.0.1: 654 | version "3.0.1" 655 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 656 | 657 | extglob@^0.3.1: 658 | version "0.3.2" 659 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 660 | dependencies: 661 | is-extglob "^1.0.0" 662 | 663 | extsprintf@1.3.0, extsprintf@^1.2.0: 664 | version "1.3.0" 665 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 666 | 667 | fast-deep-equal@^1.0.0: 668 | version "1.0.0" 669 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 670 | 671 | fast-levenshtein@~2.0.4: 672 | version "2.0.6" 673 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 674 | 675 | fb-watchman@^2.0.0: 676 | version "2.0.0" 677 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 678 | dependencies: 679 | bser "^2.0.0" 680 | 681 | filename-regex@^2.0.0: 682 | version "2.0.1" 683 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 684 | 685 | fileset@^2.0.2: 686 | version "2.0.3" 687 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 688 | dependencies: 689 | glob "^7.0.3" 690 | minimatch "^3.0.3" 691 | 692 | fill-range@^2.1.0: 693 | version "2.2.3" 694 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 695 | dependencies: 696 | is-number "^2.1.0" 697 | isobject "^2.0.0" 698 | randomatic "^1.1.3" 699 | repeat-element "^1.1.2" 700 | repeat-string "^1.5.2" 701 | 702 | find-up@^1.0.0: 703 | version "1.1.2" 704 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 705 | dependencies: 706 | path-exists "^2.0.0" 707 | pinkie-promise "^2.0.0" 708 | 709 | find-up@^2.0.0, find-up@^2.1.0: 710 | version "2.1.0" 711 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 712 | dependencies: 713 | locate-path "^2.0.0" 714 | 715 | flow-bin@^0.57.3: 716 | version "0.57.3" 717 | resolved "https://registry.yarnpkg.com/flow-bin/-/flow-bin-0.57.3.tgz#843fb80a821b6d0c5847f7bb3f42365ffe53b27b" 718 | 719 | for-in@^1.0.1: 720 | version "1.0.2" 721 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 722 | 723 | for-own@^0.1.4: 724 | version "0.1.5" 725 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 726 | dependencies: 727 | for-in "^1.0.1" 728 | 729 | forever-agent@~0.6.1: 730 | version "0.6.1" 731 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 732 | 733 | form-data@~2.1.1: 734 | version "2.1.4" 735 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 736 | dependencies: 737 | asynckit "^0.4.0" 738 | combined-stream "^1.0.5" 739 | mime-types "^2.1.12" 740 | 741 | form-data@~2.3.1: 742 | version "2.3.1" 743 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.1.tgz#6fb94fbd71885306d73d15cc497fe4cc4ecd44bf" 744 | dependencies: 745 | asynckit "^0.4.0" 746 | combined-stream "^1.0.5" 747 | mime-types "^2.1.12" 748 | 749 | fs.realpath@^1.0.0: 750 | version "1.0.0" 751 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 752 | 753 | fsevents@^1.1.1: 754 | version "1.1.2" 755 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4" 756 | dependencies: 757 | nan "^2.3.0" 758 | node-pre-gyp "^0.6.36" 759 | 760 | fstream-ignore@^1.0.5: 761 | version "1.0.5" 762 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 763 | dependencies: 764 | fstream "^1.0.0" 765 | inherits "2" 766 | minimatch "^3.0.0" 767 | 768 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 769 | version "1.0.11" 770 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 771 | dependencies: 772 | graceful-fs "^4.1.2" 773 | inherits "~2.0.0" 774 | mkdirp ">=0.5 0" 775 | rimraf "2" 776 | 777 | gauge@~2.7.3: 778 | version "2.7.4" 779 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 780 | dependencies: 781 | aproba "^1.0.3" 782 | console-control-strings "^1.0.0" 783 | has-unicode "^2.0.0" 784 | object-assign "^4.1.0" 785 | signal-exit "^3.0.0" 786 | string-width "^1.0.1" 787 | strip-ansi "^3.0.1" 788 | wide-align "^1.1.0" 789 | 790 | get-caller-file@^1.0.1: 791 | version "1.0.2" 792 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 793 | 794 | get-stream@^3.0.0: 795 | version "3.0.0" 796 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 797 | 798 | getpass@^0.1.1: 799 | version "0.1.7" 800 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 801 | dependencies: 802 | assert-plus "^1.0.0" 803 | 804 | glob-base@^0.3.0: 805 | version "0.3.0" 806 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 807 | dependencies: 808 | glob-parent "^2.0.0" 809 | is-glob "^2.0.0" 810 | 811 | glob-parent@^2.0.0: 812 | version "2.0.0" 813 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 814 | dependencies: 815 | is-glob "^2.0.0" 816 | 817 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2: 818 | version "7.1.2" 819 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 820 | dependencies: 821 | fs.realpath "^1.0.0" 822 | inflight "^1.0.4" 823 | inherits "2" 824 | minimatch "^3.0.4" 825 | once "^1.3.0" 826 | path-is-absolute "^1.0.0" 827 | 828 | globals@^9.18.0: 829 | version "9.18.0" 830 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 831 | 832 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 833 | version "4.1.11" 834 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 835 | 836 | growly@^1.3.0: 837 | version "1.3.0" 838 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 839 | 840 | handlebars@^4.0.3: 841 | version "4.0.10" 842 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.10.tgz#3d30c718b09a3d96f23ea4cc1f403c4d3ba9ff4f" 843 | dependencies: 844 | async "^1.4.0" 845 | optimist "^0.6.1" 846 | source-map "^0.4.4" 847 | optionalDependencies: 848 | uglify-js "^2.6" 849 | 850 | har-schema@^1.0.5: 851 | version "1.0.5" 852 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 853 | 854 | har-schema@^2.0.0: 855 | version "2.0.0" 856 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 857 | 858 | har-validator@~4.2.1: 859 | version "4.2.1" 860 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 861 | dependencies: 862 | ajv "^4.9.1" 863 | har-schema "^1.0.5" 864 | 865 | har-validator@~5.0.3: 866 | version "5.0.3" 867 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" 868 | dependencies: 869 | ajv "^5.1.0" 870 | har-schema "^2.0.0" 871 | 872 | has-ansi@^2.0.0: 873 | version "2.0.0" 874 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 875 | dependencies: 876 | ansi-regex "^2.0.0" 877 | 878 | has-flag@^1.0.0: 879 | version "1.0.0" 880 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 881 | 882 | has-flag@^2.0.0: 883 | version "2.0.0" 884 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 885 | 886 | has-unicode@^2.0.0: 887 | version "2.0.1" 888 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 889 | 890 | hawk@3.1.3, hawk@~3.1.3: 891 | version "3.1.3" 892 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 893 | dependencies: 894 | boom "2.x.x" 895 | cryptiles "2.x.x" 896 | hoek "2.x.x" 897 | sntp "1.x.x" 898 | 899 | hawk@~6.0.2: 900 | version "6.0.2" 901 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038" 902 | dependencies: 903 | boom "4.x.x" 904 | cryptiles "3.x.x" 905 | hoek "4.x.x" 906 | sntp "2.x.x" 907 | 908 | hoek@2.x.x: 909 | version "2.16.3" 910 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 911 | 912 | hoek@4.x.x: 913 | version "4.2.0" 914 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.0.tgz#72d9d0754f7fe25ca2d01ad8f8f9a9449a89526d" 915 | 916 | home-or-tmp@^2.0.0: 917 | version "2.0.0" 918 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 919 | dependencies: 920 | os-homedir "^1.0.0" 921 | os-tmpdir "^1.0.1" 922 | 923 | hosted-git-info@^2.1.4: 924 | version "2.5.0" 925 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 926 | 927 | html-encoding-sniffer@^1.0.1: 928 | version "1.0.1" 929 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 930 | dependencies: 931 | whatwg-encoding "^1.0.1" 932 | 933 | http-signature@~1.1.0: 934 | version "1.1.1" 935 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 936 | dependencies: 937 | assert-plus "^0.2.0" 938 | jsprim "^1.2.2" 939 | sshpk "^1.7.0" 940 | 941 | http-signature@~1.2.0: 942 | version "1.2.0" 943 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 944 | dependencies: 945 | assert-plus "^1.0.0" 946 | jsprim "^1.2.2" 947 | sshpk "^1.7.0" 948 | 949 | iconv-lite@0.4.13: 950 | version "0.4.13" 951 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 952 | 953 | imurmurhash@^0.1.4: 954 | version "0.1.4" 955 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 956 | 957 | inflight@^1.0.4: 958 | version "1.0.6" 959 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 960 | dependencies: 961 | once "^1.3.0" 962 | wrappy "1" 963 | 964 | inherits@2, inherits@~2.0.0, inherits@~2.0.3: 965 | version "2.0.3" 966 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 967 | 968 | ini@~1.3.0: 969 | version "1.3.4" 970 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 971 | 972 | invariant@^2.2.2: 973 | version "2.2.2" 974 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 975 | dependencies: 976 | loose-envify "^1.0.0" 977 | 978 | invert-kv@^1.0.0: 979 | version "1.0.0" 980 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 981 | 982 | is-arrayish@^0.2.1: 983 | version "0.2.1" 984 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 985 | 986 | is-buffer@^1.1.5: 987 | version "1.1.5" 988 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 989 | 990 | is-builtin-module@^1.0.0: 991 | version "1.0.0" 992 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 993 | dependencies: 994 | builtin-modules "^1.0.0" 995 | 996 | is-ci@^1.0.10: 997 | version "1.0.10" 998 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 999 | dependencies: 1000 | ci-info "^1.0.0" 1001 | 1002 | is-dotfile@^1.0.0: 1003 | version "1.0.3" 1004 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1005 | 1006 | is-equal-shallow@^0.1.3: 1007 | version "0.1.3" 1008 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1009 | dependencies: 1010 | is-primitive "^2.0.0" 1011 | 1012 | is-extendable@^0.1.1: 1013 | version "0.1.1" 1014 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1015 | 1016 | is-extglob@^1.0.0: 1017 | version "1.0.0" 1018 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1019 | 1020 | is-finite@^1.0.0: 1021 | version "1.0.2" 1022 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1023 | dependencies: 1024 | number-is-nan "^1.0.0" 1025 | 1026 | is-fullwidth-code-point@^1.0.0: 1027 | version "1.0.0" 1028 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1029 | dependencies: 1030 | number-is-nan "^1.0.0" 1031 | 1032 | is-fullwidth-code-point@^2.0.0: 1033 | version "2.0.0" 1034 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1035 | 1036 | is-glob@^2.0.0, is-glob@^2.0.1: 1037 | version "2.0.1" 1038 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1039 | dependencies: 1040 | is-extglob "^1.0.0" 1041 | 1042 | is-number@^2.1.0: 1043 | version "2.1.0" 1044 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1045 | dependencies: 1046 | kind-of "^3.0.2" 1047 | 1048 | is-number@^3.0.0: 1049 | version "3.0.0" 1050 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1051 | dependencies: 1052 | kind-of "^3.0.2" 1053 | 1054 | is-posix-bracket@^0.1.0: 1055 | version "0.1.1" 1056 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1057 | 1058 | is-primitive@^2.0.0: 1059 | version "2.0.0" 1060 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1061 | 1062 | is-stream@^1.1.0: 1063 | version "1.1.0" 1064 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1065 | 1066 | is-typedarray@~1.0.0: 1067 | version "1.0.0" 1068 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1069 | 1070 | is-utf8@^0.2.0: 1071 | version "0.2.1" 1072 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1073 | 1074 | isarray@1.0.0, isarray@~1.0.0: 1075 | version "1.0.0" 1076 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1077 | 1078 | isexe@^2.0.0: 1079 | version "2.0.0" 1080 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1081 | 1082 | isobject@^2.0.0: 1083 | version "2.1.0" 1084 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1085 | dependencies: 1086 | isarray "1.0.0" 1087 | 1088 | isstream@~0.1.2: 1089 | version "0.1.2" 1090 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1091 | 1092 | istanbul-api@^1.1.1: 1093 | version "1.1.14" 1094 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.14.tgz#25bc5701f7c680c0ffff913de46e3619a3a6e680" 1095 | dependencies: 1096 | async "^2.1.4" 1097 | fileset "^2.0.2" 1098 | istanbul-lib-coverage "^1.1.1" 1099 | istanbul-lib-hook "^1.0.7" 1100 | istanbul-lib-instrument "^1.8.0" 1101 | istanbul-lib-report "^1.1.1" 1102 | istanbul-lib-source-maps "^1.2.1" 1103 | istanbul-reports "^1.1.2" 1104 | js-yaml "^3.7.0" 1105 | mkdirp "^0.5.1" 1106 | once "^1.4.0" 1107 | 1108 | istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.1.1: 1109 | version "1.1.1" 1110 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" 1111 | 1112 | istanbul-lib-hook@^1.0.7: 1113 | version "1.0.7" 1114 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.7.tgz#dd6607f03076578fe7d6f2a630cf143b49bacddc" 1115 | dependencies: 1116 | append-transform "^0.4.0" 1117 | 1118 | istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.7.5, istanbul-lib-instrument@^1.8.0: 1119 | version "1.8.0" 1120 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.8.0.tgz#66f6c9421cc9ec4704f76f2db084ba9078a2b532" 1121 | dependencies: 1122 | babel-generator "^6.18.0" 1123 | babel-template "^6.16.0" 1124 | babel-traverse "^6.18.0" 1125 | babel-types "^6.18.0" 1126 | babylon "^6.18.0" 1127 | istanbul-lib-coverage "^1.1.1" 1128 | semver "^5.3.0" 1129 | 1130 | istanbul-lib-report@^1.1.1: 1131 | version "1.1.1" 1132 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#f0e55f56655ffa34222080b7a0cd4760e1405fc9" 1133 | dependencies: 1134 | istanbul-lib-coverage "^1.1.1" 1135 | mkdirp "^0.5.1" 1136 | path-parse "^1.0.5" 1137 | supports-color "^3.1.2" 1138 | 1139 | istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.1: 1140 | version "1.2.1" 1141 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.1.tgz#a6fe1acba8ce08eebc638e572e294d267008aa0c" 1142 | dependencies: 1143 | debug "^2.6.3" 1144 | istanbul-lib-coverage "^1.1.1" 1145 | mkdirp "^0.5.1" 1146 | rimraf "^2.6.1" 1147 | source-map "^0.5.3" 1148 | 1149 | istanbul-reports@^1.1.2: 1150 | version "1.1.2" 1151 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.2.tgz#0fb2e3f6aa9922bd3ce45d05d8ab4d5e8e07bd4f" 1152 | dependencies: 1153 | handlebars "^4.0.3" 1154 | 1155 | jest-changed-files@^21.2.0: 1156 | version "21.2.0" 1157 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-21.2.0.tgz#5dbeecad42f5d88b482334902ce1cba6d9798d29" 1158 | dependencies: 1159 | throat "^4.0.0" 1160 | 1161 | jest-cli@^21.2.1: 1162 | version "21.2.1" 1163 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-21.2.1.tgz#9c528b6629d651911138d228bdb033c157ec8c00" 1164 | dependencies: 1165 | ansi-escapes "^3.0.0" 1166 | chalk "^2.0.1" 1167 | glob "^7.1.2" 1168 | graceful-fs "^4.1.11" 1169 | is-ci "^1.0.10" 1170 | istanbul-api "^1.1.1" 1171 | istanbul-lib-coverage "^1.0.1" 1172 | istanbul-lib-instrument "^1.4.2" 1173 | istanbul-lib-source-maps "^1.1.0" 1174 | jest-changed-files "^21.2.0" 1175 | jest-config "^21.2.1" 1176 | jest-environment-jsdom "^21.2.1" 1177 | jest-haste-map "^21.2.0" 1178 | jest-message-util "^21.2.1" 1179 | jest-regex-util "^21.2.0" 1180 | jest-resolve-dependencies "^21.2.0" 1181 | jest-runner "^21.2.1" 1182 | jest-runtime "^21.2.1" 1183 | jest-snapshot "^21.2.1" 1184 | jest-util "^21.2.1" 1185 | micromatch "^2.3.11" 1186 | node-notifier "^5.0.2" 1187 | pify "^3.0.0" 1188 | slash "^1.0.0" 1189 | string-length "^2.0.0" 1190 | strip-ansi "^4.0.0" 1191 | which "^1.2.12" 1192 | worker-farm "^1.3.1" 1193 | yargs "^9.0.0" 1194 | 1195 | jest-config@^21.2.1: 1196 | version "21.2.1" 1197 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-21.2.1.tgz#c7586c79ead0bcc1f38c401e55f964f13bf2a480" 1198 | dependencies: 1199 | chalk "^2.0.1" 1200 | glob "^7.1.1" 1201 | jest-environment-jsdom "^21.2.1" 1202 | jest-environment-node "^21.2.1" 1203 | jest-get-type "^21.2.0" 1204 | jest-jasmine2 "^21.2.1" 1205 | jest-regex-util "^21.2.0" 1206 | jest-resolve "^21.2.0" 1207 | jest-util "^21.2.1" 1208 | jest-validate "^21.2.1" 1209 | pretty-format "^21.2.1" 1210 | 1211 | jest-diff@^21.2.1: 1212 | version "21.2.1" 1213 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-21.2.1.tgz#46cccb6cab2d02ce98bc314011764bb95b065b4f" 1214 | dependencies: 1215 | chalk "^2.0.1" 1216 | diff "^3.2.0" 1217 | jest-get-type "^21.2.0" 1218 | pretty-format "^21.2.1" 1219 | 1220 | jest-docblock@^21.2.0: 1221 | version "21.2.0" 1222 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-21.2.0.tgz#51529c3b30d5fd159da60c27ceedc195faf8d414" 1223 | 1224 | jest-environment-jsdom@^21.2.1: 1225 | version "21.2.1" 1226 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-21.2.1.tgz#38d9980c8259b2a608ec232deee6289a60d9d5b4" 1227 | dependencies: 1228 | jest-mock "^21.2.0" 1229 | jest-util "^21.2.1" 1230 | jsdom "^9.12.0" 1231 | 1232 | jest-environment-node@^21.2.1: 1233 | version "21.2.1" 1234 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-21.2.1.tgz#98c67df5663c7fbe20f6e792ac2272c740d3b8c8" 1235 | dependencies: 1236 | jest-mock "^21.2.0" 1237 | jest-util "^21.2.1" 1238 | 1239 | jest-get-type@^21.2.0: 1240 | version "21.2.0" 1241 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-21.2.0.tgz#f6376ab9db4b60d81e39f30749c6c466f40d4a23" 1242 | 1243 | jest-haste-map@^21.2.0: 1244 | version "21.2.0" 1245 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-21.2.0.tgz#1363f0a8bb4338f24f001806571eff7a4b2ff3d8" 1246 | dependencies: 1247 | fb-watchman "^2.0.0" 1248 | graceful-fs "^4.1.11" 1249 | jest-docblock "^21.2.0" 1250 | micromatch "^2.3.11" 1251 | sane "^2.0.0" 1252 | worker-farm "^1.3.1" 1253 | 1254 | jest-jasmine2@^21.2.1: 1255 | version "21.2.1" 1256 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-21.2.1.tgz#9cc6fc108accfa97efebce10c4308548a4ea7592" 1257 | dependencies: 1258 | chalk "^2.0.1" 1259 | expect "^21.2.1" 1260 | graceful-fs "^4.1.11" 1261 | jest-diff "^21.2.1" 1262 | jest-matcher-utils "^21.2.1" 1263 | jest-message-util "^21.2.1" 1264 | jest-snapshot "^21.2.1" 1265 | p-cancelable "^0.3.0" 1266 | 1267 | jest-matcher-utils@^21.2.1: 1268 | version "21.2.1" 1269 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-21.2.1.tgz#72c826eaba41a093ac2b4565f865eb8475de0f64" 1270 | dependencies: 1271 | chalk "^2.0.1" 1272 | jest-get-type "^21.2.0" 1273 | pretty-format "^21.2.1" 1274 | 1275 | jest-message-util@^21.2.1: 1276 | version "21.2.1" 1277 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-21.2.1.tgz#bfe5d4692c84c827d1dcf41823795558f0a1acbe" 1278 | dependencies: 1279 | chalk "^2.0.1" 1280 | micromatch "^2.3.11" 1281 | slash "^1.0.0" 1282 | 1283 | jest-mock@^21.2.0: 1284 | version "21.2.0" 1285 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-21.2.0.tgz#7eb0770e7317968165f61ea2a7281131534b3c0f" 1286 | 1287 | jest-regex-util@^21.2.0: 1288 | version "21.2.0" 1289 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-21.2.0.tgz#1b1e33e63143babc3e0f2e6c9b5ba1eb34b2d530" 1290 | 1291 | jest-resolve-dependencies@^21.2.0: 1292 | version "21.2.0" 1293 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-21.2.0.tgz#9e231e371e1a736a1ad4e4b9a843bc72bfe03d09" 1294 | dependencies: 1295 | jest-regex-util "^21.2.0" 1296 | 1297 | jest-resolve@^21.2.0: 1298 | version "21.2.0" 1299 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-21.2.0.tgz#068913ad2ba6a20218e5fd32471f3874005de3a6" 1300 | dependencies: 1301 | browser-resolve "^1.11.2" 1302 | chalk "^2.0.1" 1303 | is-builtin-module "^1.0.0" 1304 | 1305 | jest-runner@^21.2.1: 1306 | version "21.2.1" 1307 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-21.2.1.tgz#194732e3e518bfb3d7cbfc0fd5871246c7e1a467" 1308 | dependencies: 1309 | jest-config "^21.2.1" 1310 | jest-docblock "^21.2.0" 1311 | jest-haste-map "^21.2.0" 1312 | jest-jasmine2 "^21.2.1" 1313 | jest-message-util "^21.2.1" 1314 | jest-runtime "^21.2.1" 1315 | jest-util "^21.2.1" 1316 | pify "^3.0.0" 1317 | throat "^4.0.0" 1318 | worker-farm "^1.3.1" 1319 | 1320 | jest-runtime@^21.2.1: 1321 | version "21.2.1" 1322 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-21.2.1.tgz#99dce15309c670442eee2ebe1ff53a3cbdbbb73e" 1323 | dependencies: 1324 | babel-core "^6.0.0" 1325 | babel-jest "^21.2.0" 1326 | babel-plugin-istanbul "^4.0.0" 1327 | chalk "^2.0.1" 1328 | convert-source-map "^1.4.0" 1329 | graceful-fs "^4.1.11" 1330 | jest-config "^21.2.1" 1331 | jest-haste-map "^21.2.0" 1332 | jest-regex-util "^21.2.0" 1333 | jest-resolve "^21.2.0" 1334 | jest-util "^21.2.1" 1335 | json-stable-stringify "^1.0.1" 1336 | micromatch "^2.3.11" 1337 | slash "^1.0.0" 1338 | strip-bom "3.0.0" 1339 | write-file-atomic "^2.1.0" 1340 | yargs "^9.0.0" 1341 | 1342 | jest-snapshot@^21.2.1: 1343 | version "21.2.1" 1344 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-21.2.1.tgz#29e49f16202416e47343e757e5eff948c07fd7b0" 1345 | dependencies: 1346 | chalk "^2.0.1" 1347 | jest-diff "^21.2.1" 1348 | jest-matcher-utils "^21.2.1" 1349 | mkdirp "^0.5.1" 1350 | natural-compare "^1.4.0" 1351 | pretty-format "^21.2.1" 1352 | 1353 | jest-util@^21.2.1: 1354 | version "21.2.1" 1355 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-21.2.1.tgz#a274b2f726b0897494d694a6c3d6a61ab819bb78" 1356 | dependencies: 1357 | callsites "^2.0.0" 1358 | chalk "^2.0.1" 1359 | graceful-fs "^4.1.11" 1360 | jest-message-util "^21.2.1" 1361 | jest-mock "^21.2.0" 1362 | jest-validate "^21.2.1" 1363 | mkdirp "^0.5.1" 1364 | 1365 | jest-validate@^21.2.1: 1366 | version "21.2.1" 1367 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-21.2.1.tgz#cc0cbca653cd54937ba4f2a111796774530dd3c7" 1368 | dependencies: 1369 | chalk "^2.0.1" 1370 | jest-get-type "^21.2.0" 1371 | leven "^2.1.0" 1372 | pretty-format "^21.2.1" 1373 | 1374 | jest@^21.2.1: 1375 | version "21.2.1" 1376 | resolved "https://registry.yarnpkg.com/jest/-/jest-21.2.1.tgz#c964e0b47383768a1438e3ccf3c3d470327604e1" 1377 | dependencies: 1378 | jest-cli "^21.2.1" 1379 | 1380 | js-tokens@^3.0.0, js-tokens@^3.0.2: 1381 | version "3.0.2" 1382 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1383 | 1384 | js-yaml@^3.7.0: 1385 | version "3.10.0" 1386 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 1387 | dependencies: 1388 | argparse "^1.0.7" 1389 | esprima "^4.0.0" 1390 | 1391 | jsbn@~0.1.0: 1392 | version "0.1.1" 1393 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1394 | 1395 | jsdom@^9.12.0: 1396 | version "9.12.0" 1397 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 1398 | dependencies: 1399 | abab "^1.0.3" 1400 | acorn "^4.0.4" 1401 | acorn-globals "^3.1.0" 1402 | array-equal "^1.0.0" 1403 | content-type-parser "^1.0.1" 1404 | cssom ">= 0.3.2 < 0.4.0" 1405 | cssstyle ">= 0.2.37 < 0.3.0" 1406 | escodegen "^1.6.1" 1407 | html-encoding-sniffer "^1.0.1" 1408 | nwmatcher ">= 1.3.9 < 2.0.0" 1409 | parse5 "^1.5.1" 1410 | request "^2.79.0" 1411 | sax "^1.2.1" 1412 | symbol-tree "^3.2.1" 1413 | tough-cookie "^2.3.2" 1414 | webidl-conversions "^4.0.0" 1415 | whatwg-encoding "^1.0.1" 1416 | whatwg-url "^4.3.0" 1417 | xml-name-validator "^2.0.1" 1418 | 1419 | jsesc@^1.3.0: 1420 | version "1.3.0" 1421 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1422 | 1423 | json-schema-traverse@^0.3.0: 1424 | version "0.3.1" 1425 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 1426 | 1427 | json-schema@0.2.3: 1428 | version "0.2.3" 1429 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1430 | 1431 | json-stable-stringify@^1.0.1: 1432 | version "1.0.1" 1433 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1434 | dependencies: 1435 | jsonify "~0.0.0" 1436 | 1437 | json-stringify-safe@~5.0.1: 1438 | version "5.0.1" 1439 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1440 | 1441 | json5@^0.5.1: 1442 | version "0.5.1" 1443 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1444 | 1445 | jsonify@~0.0.0: 1446 | version "0.0.0" 1447 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1448 | 1449 | jsprim@^1.2.2: 1450 | version "1.4.1" 1451 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1452 | dependencies: 1453 | assert-plus "1.0.0" 1454 | extsprintf "1.3.0" 1455 | json-schema "0.2.3" 1456 | verror "1.10.0" 1457 | 1458 | kind-of@^3.0.2: 1459 | version "3.2.2" 1460 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1461 | dependencies: 1462 | is-buffer "^1.1.5" 1463 | 1464 | kind-of@^4.0.0: 1465 | version "4.0.0" 1466 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1467 | dependencies: 1468 | is-buffer "^1.1.5" 1469 | 1470 | lazy-cache@^1.0.3: 1471 | version "1.0.4" 1472 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1473 | 1474 | lcid@^1.0.0: 1475 | version "1.0.0" 1476 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1477 | dependencies: 1478 | invert-kv "^1.0.0" 1479 | 1480 | leven@^2.1.0: 1481 | version "2.1.0" 1482 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 1483 | 1484 | levn@~0.3.0: 1485 | version "0.3.0" 1486 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1487 | dependencies: 1488 | prelude-ls "~1.1.2" 1489 | type-check "~0.3.2" 1490 | 1491 | load-json-file@^1.0.0: 1492 | version "1.1.0" 1493 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1494 | dependencies: 1495 | graceful-fs "^4.1.2" 1496 | parse-json "^2.2.0" 1497 | pify "^2.0.0" 1498 | pinkie-promise "^2.0.0" 1499 | strip-bom "^2.0.0" 1500 | 1501 | load-json-file@^2.0.0: 1502 | version "2.0.0" 1503 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 1504 | dependencies: 1505 | graceful-fs "^4.1.2" 1506 | parse-json "^2.2.0" 1507 | pify "^2.0.0" 1508 | strip-bom "^3.0.0" 1509 | 1510 | locate-path@^2.0.0: 1511 | version "2.0.0" 1512 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1513 | dependencies: 1514 | p-locate "^2.0.0" 1515 | path-exists "^3.0.0" 1516 | 1517 | lodash@^4.14.0, lodash@^4.17.4: 1518 | version "4.17.4" 1519 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1520 | 1521 | longest@^1.0.1: 1522 | version "1.0.1" 1523 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1524 | 1525 | loose-envify@^1.0.0: 1526 | version "1.3.1" 1527 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1528 | dependencies: 1529 | js-tokens "^3.0.0" 1530 | 1531 | lru-cache@^4.0.1: 1532 | version "4.1.1" 1533 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 1534 | dependencies: 1535 | pseudomap "^1.0.2" 1536 | yallist "^2.1.2" 1537 | 1538 | makeerror@1.0.x: 1539 | version "1.0.11" 1540 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 1541 | dependencies: 1542 | tmpl "1.0.x" 1543 | 1544 | mem@^1.1.0: 1545 | version "1.1.0" 1546 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 1547 | dependencies: 1548 | mimic-fn "^1.0.0" 1549 | 1550 | merge@^1.1.3: 1551 | version "1.2.0" 1552 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 1553 | 1554 | micromatch@^2.1.5, micromatch@^2.3.11: 1555 | version "2.3.11" 1556 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1557 | dependencies: 1558 | arr-diff "^2.0.0" 1559 | array-unique "^0.2.1" 1560 | braces "^1.8.2" 1561 | expand-brackets "^0.1.4" 1562 | extglob "^0.3.1" 1563 | filename-regex "^2.0.0" 1564 | is-extglob "^1.0.0" 1565 | is-glob "^2.0.1" 1566 | kind-of "^3.0.2" 1567 | normalize-path "^2.0.1" 1568 | object.omit "^2.0.0" 1569 | parse-glob "^3.0.4" 1570 | regex-cache "^0.4.2" 1571 | 1572 | mime-db@~1.30.0: 1573 | version "1.30.0" 1574 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 1575 | 1576 | mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.7: 1577 | version "2.1.17" 1578 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 1579 | dependencies: 1580 | mime-db "~1.30.0" 1581 | 1582 | mimic-fn@^1.0.0: 1583 | version "1.1.0" 1584 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 1585 | 1586 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 1587 | version "3.0.4" 1588 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1589 | dependencies: 1590 | brace-expansion "^1.1.7" 1591 | 1592 | minimist@0.0.8: 1593 | version "0.0.8" 1594 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1595 | 1596 | minimist@^1.1.1, minimist@^1.2.0: 1597 | version "1.2.0" 1598 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1599 | 1600 | minimist@~0.0.1: 1601 | version "0.0.10" 1602 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 1603 | 1604 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 1605 | version "0.5.1" 1606 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1607 | dependencies: 1608 | minimist "0.0.8" 1609 | 1610 | ms@2.0.0: 1611 | version "2.0.0" 1612 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1613 | 1614 | nan@^2.3.0: 1615 | version "2.7.0" 1616 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.7.0.tgz#d95bf721ec877e08db276ed3fc6eb78f9083ad46" 1617 | 1618 | natural-compare@^1.4.0: 1619 | version "1.4.0" 1620 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1621 | 1622 | node-int64@^0.4.0: 1623 | version "0.4.0" 1624 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 1625 | 1626 | node-notifier@^5.0.2: 1627 | version "5.1.2" 1628 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 1629 | dependencies: 1630 | growly "^1.3.0" 1631 | semver "^5.3.0" 1632 | shellwords "^0.1.0" 1633 | which "^1.2.12" 1634 | 1635 | node-pre-gyp@^0.6.36: 1636 | version "0.6.38" 1637 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.38.tgz#e92a20f83416415bb4086f6d1fb78b3da73d113d" 1638 | dependencies: 1639 | hawk "3.1.3" 1640 | mkdirp "^0.5.1" 1641 | nopt "^4.0.1" 1642 | npmlog "^4.0.2" 1643 | rc "^1.1.7" 1644 | request "2.81.0" 1645 | rimraf "^2.6.1" 1646 | semver "^5.3.0" 1647 | tar "^2.2.1" 1648 | tar-pack "^3.4.0" 1649 | 1650 | nopt@^4.0.1: 1651 | version "4.0.1" 1652 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1653 | dependencies: 1654 | abbrev "1" 1655 | osenv "^0.1.4" 1656 | 1657 | normalize-package-data@^2.3.2: 1658 | version "2.4.0" 1659 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 1660 | dependencies: 1661 | hosted-git-info "^2.1.4" 1662 | is-builtin-module "^1.0.0" 1663 | semver "2 || 3 || 4 || 5" 1664 | validate-npm-package-license "^3.0.1" 1665 | 1666 | normalize-path@^2.0.0, normalize-path@^2.0.1: 1667 | version "2.1.1" 1668 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1669 | dependencies: 1670 | remove-trailing-separator "^1.0.1" 1671 | 1672 | npm-run-path@^2.0.0: 1673 | version "2.0.2" 1674 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 1675 | dependencies: 1676 | path-key "^2.0.0" 1677 | 1678 | npmlog@^4.0.2: 1679 | version "4.1.2" 1680 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1681 | dependencies: 1682 | are-we-there-yet "~1.1.2" 1683 | console-control-strings "~1.1.0" 1684 | gauge "~2.7.3" 1685 | set-blocking "~2.0.0" 1686 | 1687 | number-is-nan@^1.0.0: 1688 | version "1.0.1" 1689 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1690 | 1691 | "nwmatcher@>= 1.3.9 < 2.0.0": 1692 | version "1.4.3" 1693 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.3.tgz#64348e3b3d80f035b40ac11563d278f8b72db89c" 1694 | 1695 | oauth-sign@~0.8.1, oauth-sign@~0.8.2: 1696 | version "0.8.2" 1697 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1698 | 1699 | object-assign@^4.1.0: 1700 | version "4.1.1" 1701 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1702 | 1703 | object.omit@^2.0.0: 1704 | version "2.0.1" 1705 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1706 | dependencies: 1707 | for-own "^0.1.4" 1708 | is-extendable "^0.1.1" 1709 | 1710 | once@^1.3.0, once@^1.3.3, once@^1.4.0: 1711 | version "1.4.0" 1712 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1713 | dependencies: 1714 | wrappy "1" 1715 | 1716 | optimist@^0.6.1: 1717 | version "0.6.1" 1718 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 1719 | dependencies: 1720 | minimist "~0.0.1" 1721 | wordwrap "~0.0.2" 1722 | 1723 | optionator@^0.8.1: 1724 | version "0.8.2" 1725 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 1726 | dependencies: 1727 | deep-is "~0.1.3" 1728 | fast-levenshtein "~2.0.4" 1729 | levn "~0.3.0" 1730 | prelude-ls "~1.1.2" 1731 | type-check "~0.3.2" 1732 | wordwrap "~1.0.0" 1733 | 1734 | os-homedir@^1.0.0: 1735 | version "1.0.2" 1736 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1737 | 1738 | os-locale@^2.0.0: 1739 | version "2.1.0" 1740 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 1741 | dependencies: 1742 | execa "^0.7.0" 1743 | lcid "^1.0.0" 1744 | mem "^1.1.0" 1745 | 1746 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 1747 | version "1.0.2" 1748 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1749 | 1750 | osenv@^0.1.4: 1751 | version "0.1.4" 1752 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 1753 | dependencies: 1754 | os-homedir "^1.0.0" 1755 | os-tmpdir "^1.0.0" 1756 | 1757 | p-cancelable@^0.3.0: 1758 | version "0.3.0" 1759 | resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-0.3.0.tgz#b9e123800bcebb7ac13a479be195b507b98d30fa" 1760 | 1761 | p-finally@^1.0.0: 1762 | version "1.0.0" 1763 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 1764 | 1765 | p-limit@^1.1.0: 1766 | version "1.1.0" 1767 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 1768 | 1769 | p-locate@^2.0.0: 1770 | version "2.0.0" 1771 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1772 | dependencies: 1773 | p-limit "^1.1.0" 1774 | 1775 | parse-glob@^3.0.4: 1776 | version "3.0.4" 1777 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1778 | dependencies: 1779 | glob-base "^0.3.0" 1780 | is-dotfile "^1.0.0" 1781 | is-extglob "^1.0.0" 1782 | is-glob "^2.0.0" 1783 | 1784 | parse-json@^2.2.0: 1785 | version "2.2.0" 1786 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1787 | dependencies: 1788 | error-ex "^1.2.0" 1789 | 1790 | parse5@^1.5.1: 1791 | version "1.5.1" 1792 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 1793 | 1794 | path-exists@^2.0.0: 1795 | version "2.1.0" 1796 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1797 | dependencies: 1798 | pinkie-promise "^2.0.0" 1799 | 1800 | path-exists@^3.0.0: 1801 | version "3.0.0" 1802 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1803 | 1804 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 1805 | version "1.0.1" 1806 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1807 | 1808 | path-key@^2.0.0: 1809 | version "2.0.1" 1810 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 1811 | 1812 | path-parse@^1.0.5: 1813 | version "1.0.5" 1814 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 1815 | 1816 | path-type@^1.0.0: 1817 | version "1.1.0" 1818 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 1819 | dependencies: 1820 | graceful-fs "^4.1.2" 1821 | pify "^2.0.0" 1822 | pinkie-promise "^2.0.0" 1823 | 1824 | path-type@^2.0.0: 1825 | version "2.0.0" 1826 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 1827 | dependencies: 1828 | pify "^2.0.0" 1829 | 1830 | performance-now@^0.2.0: 1831 | version "0.2.0" 1832 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 1833 | 1834 | performance-now@^2.1.0: 1835 | version "2.1.0" 1836 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 1837 | 1838 | pify@^2.0.0: 1839 | version "2.3.0" 1840 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1841 | 1842 | pify@^3.0.0: 1843 | version "3.0.0" 1844 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 1845 | 1846 | pinkie-promise@^2.0.0: 1847 | version "2.0.1" 1848 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1849 | dependencies: 1850 | pinkie "^2.0.0" 1851 | 1852 | pinkie@^2.0.0: 1853 | version "2.0.4" 1854 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1855 | 1856 | prelude-ls@~1.1.2: 1857 | version "1.1.2" 1858 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 1859 | 1860 | preserve@^0.2.0: 1861 | version "0.2.0" 1862 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1863 | 1864 | pretty-format@^21.2.1: 1865 | version "21.2.1" 1866 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-21.2.1.tgz#ae5407f3cf21066cd011aa1ba5fce7b6a2eddb36" 1867 | dependencies: 1868 | ansi-regex "^3.0.0" 1869 | ansi-styles "^3.2.0" 1870 | 1871 | private@^0.1.7: 1872 | version "0.1.8" 1873 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 1874 | 1875 | process-nextick-args@~1.0.6: 1876 | version "1.0.7" 1877 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1878 | 1879 | prr@~0.0.0: 1880 | version "0.0.0" 1881 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 1882 | 1883 | pseudomap@^1.0.2: 1884 | version "1.0.2" 1885 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 1886 | 1887 | punycode@^1.4.1: 1888 | version "1.4.1" 1889 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1890 | 1891 | qs@~6.4.0: 1892 | version "6.4.0" 1893 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 1894 | 1895 | qs@~6.5.1: 1896 | version "6.5.1" 1897 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" 1898 | 1899 | randomatic@^1.1.3: 1900 | version "1.1.7" 1901 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 1902 | dependencies: 1903 | is-number "^3.0.0" 1904 | kind-of "^4.0.0" 1905 | 1906 | rc@^1.1.7: 1907 | version "1.2.2" 1908 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.2.tgz#d8ce9cb57e8d64d9c7badd9876c7c34cbe3c7077" 1909 | dependencies: 1910 | deep-extend "~0.4.0" 1911 | ini "~1.3.0" 1912 | minimist "^1.2.0" 1913 | strip-json-comments "~2.0.1" 1914 | 1915 | read-pkg-up@^1.0.1: 1916 | version "1.0.1" 1917 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 1918 | dependencies: 1919 | find-up "^1.0.0" 1920 | read-pkg "^1.0.0" 1921 | 1922 | read-pkg-up@^2.0.0: 1923 | version "2.0.0" 1924 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 1925 | dependencies: 1926 | find-up "^2.0.0" 1927 | read-pkg "^2.0.0" 1928 | 1929 | read-pkg@^1.0.0: 1930 | version "1.1.0" 1931 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 1932 | dependencies: 1933 | load-json-file "^1.0.0" 1934 | normalize-package-data "^2.3.2" 1935 | path-type "^1.0.0" 1936 | 1937 | read-pkg@^2.0.0: 1938 | version "2.0.0" 1939 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 1940 | dependencies: 1941 | load-json-file "^2.0.0" 1942 | normalize-package-data "^2.3.2" 1943 | path-type "^2.0.0" 1944 | 1945 | readable-stream@^2.0.6, readable-stream@^2.1.4: 1946 | version "2.3.3" 1947 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 1948 | dependencies: 1949 | core-util-is "~1.0.0" 1950 | inherits "~2.0.3" 1951 | isarray "~1.0.0" 1952 | process-nextick-args "~1.0.6" 1953 | safe-buffer "~5.1.1" 1954 | string_decoder "~1.0.3" 1955 | util-deprecate "~1.0.1" 1956 | 1957 | regenerator-runtime@^0.11.0: 1958 | version "0.11.0" 1959 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1" 1960 | 1961 | regex-cache@^0.4.2: 1962 | version "0.4.4" 1963 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 1964 | dependencies: 1965 | is-equal-shallow "^0.1.3" 1966 | 1967 | remove-trailing-separator@^1.0.1: 1968 | version "1.1.0" 1969 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 1970 | 1971 | repeat-element@^1.1.2: 1972 | version "1.1.2" 1973 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1974 | 1975 | repeat-string@^1.5.2: 1976 | version "1.6.1" 1977 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1978 | 1979 | repeating@^2.0.0: 1980 | version "2.0.1" 1981 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1982 | dependencies: 1983 | is-finite "^1.0.0" 1984 | 1985 | request@2.81.0: 1986 | version "2.81.0" 1987 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 1988 | dependencies: 1989 | aws-sign2 "~0.6.0" 1990 | aws4 "^1.2.1" 1991 | caseless "~0.12.0" 1992 | combined-stream "~1.0.5" 1993 | extend "~3.0.0" 1994 | forever-agent "~0.6.1" 1995 | form-data "~2.1.1" 1996 | har-validator "~4.2.1" 1997 | hawk "~3.1.3" 1998 | http-signature "~1.1.0" 1999 | is-typedarray "~1.0.0" 2000 | isstream "~0.1.2" 2001 | json-stringify-safe "~5.0.1" 2002 | mime-types "~2.1.7" 2003 | oauth-sign "~0.8.1" 2004 | performance-now "^0.2.0" 2005 | qs "~6.4.0" 2006 | safe-buffer "^5.0.1" 2007 | stringstream "~0.0.4" 2008 | tough-cookie "~2.3.0" 2009 | tunnel-agent "^0.6.0" 2010 | uuid "^3.0.0" 2011 | 2012 | request@^2.79.0: 2013 | version "2.83.0" 2014 | resolved "https://registry.yarnpkg.com/request/-/request-2.83.0.tgz#ca0b65da02ed62935887808e6f510381034e3356" 2015 | dependencies: 2016 | aws-sign2 "~0.7.0" 2017 | aws4 "^1.6.0" 2018 | caseless "~0.12.0" 2019 | combined-stream "~1.0.5" 2020 | extend "~3.0.1" 2021 | forever-agent "~0.6.1" 2022 | form-data "~2.3.1" 2023 | har-validator "~5.0.3" 2024 | hawk "~6.0.2" 2025 | http-signature "~1.2.0" 2026 | is-typedarray "~1.0.0" 2027 | isstream "~0.1.2" 2028 | json-stringify-safe "~5.0.1" 2029 | mime-types "~2.1.17" 2030 | oauth-sign "~0.8.2" 2031 | performance-now "^2.1.0" 2032 | qs "~6.5.1" 2033 | safe-buffer "^5.1.1" 2034 | stringstream "~0.0.5" 2035 | tough-cookie "~2.3.3" 2036 | tunnel-agent "^0.6.0" 2037 | uuid "^3.1.0" 2038 | 2039 | require-directory@^2.1.1: 2040 | version "2.1.1" 2041 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2042 | 2043 | require-main-filename@^1.0.1: 2044 | version "1.0.1" 2045 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2046 | 2047 | resolve@1.1.7: 2048 | version "1.1.7" 2049 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2050 | 2051 | right-align@^0.1.1: 2052 | version "0.1.3" 2053 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2054 | dependencies: 2055 | align-text "^0.1.1" 2056 | 2057 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1: 2058 | version "2.6.2" 2059 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2060 | dependencies: 2061 | glob "^7.0.5" 2062 | 2063 | safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2064 | version "5.1.1" 2065 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2066 | 2067 | sane@^2.0.0: 2068 | version "2.2.0" 2069 | resolved "https://registry.yarnpkg.com/sane/-/sane-2.2.0.tgz#d6d2e2fcab00e3d283c93b912b7c3a20846f1d56" 2070 | dependencies: 2071 | anymatch "^1.3.0" 2072 | exec-sh "^0.2.0" 2073 | fb-watchman "^2.0.0" 2074 | minimatch "^3.0.2" 2075 | minimist "^1.1.1" 2076 | walker "~1.0.5" 2077 | watch "~0.18.0" 2078 | optionalDependencies: 2079 | fsevents "^1.1.1" 2080 | 2081 | sax@^1.2.1: 2082 | version "1.2.4" 2083 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2084 | 2085 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 2086 | version "5.4.1" 2087 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 2088 | 2089 | set-blocking@^2.0.0, set-blocking@~2.0.0: 2090 | version "2.0.0" 2091 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2092 | 2093 | shebang-command@^1.2.0: 2094 | version "1.2.0" 2095 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2096 | dependencies: 2097 | shebang-regex "^1.0.0" 2098 | 2099 | shebang-regex@^1.0.0: 2100 | version "1.0.0" 2101 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2102 | 2103 | shellwords@^0.1.0: 2104 | version "0.1.1" 2105 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" 2106 | 2107 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2108 | version "3.0.2" 2109 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2110 | 2111 | slash@^1.0.0: 2112 | version "1.0.0" 2113 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2114 | 2115 | sntp@1.x.x: 2116 | version "1.0.9" 2117 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2118 | dependencies: 2119 | hoek "2.x.x" 2120 | 2121 | sntp@2.x.x: 2122 | version "2.0.2" 2123 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.0.2.tgz#5064110f0af85f7cfdb7d6b67a40028ce52b4b2b" 2124 | dependencies: 2125 | hoek "4.x.x" 2126 | 2127 | source-map-support@^0.4.15: 2128 | version "0.4.18" 2129 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 2130 | dependencies: 2131 | source-map "^0.5.6" 2132 | 2133 | source-map@^0.4.4: 2134 | version "0.4.4" 2135 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 2136 | dependencies: 2137 | amdefine ">=0.0.4" 2138 | 2139 | source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1, source-map@~0.5.6: 2140 | version "0.5.7" 2141 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2142 | 2143 | spdx-correct@~1.0.0: 2144 | version "1.0.2" 2145 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2146 | dependencies: 2147 | spdx-license-ids "^1.0.2" 2148 | 2149 | spdx-expression-parse@~1.0.0: 2150 | version "1.0.4" 2151 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2152 | 2153 | spdx-license-ids@^1.0.2: 2154 | version "1.2.2" 2155 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2156 | 2157 | sprintf-js@~1.0.2: 2158 | version "1.0.3" 2159 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2160 | 2161 | sshpk@^1.7.0: 2162 | version "1.13.1" 2163 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 2164 | dependencies: 2165 | asn1 "~0.2.3" 2166 | assert-plus "^1.0.0" 2167 | dashdash "^1.12.0" 2168 | getpass "^0.1.1" 2169 | optionalDependencies: 2170 | bcrypt-pbkdf "^1.0.0" 2171 | ecc-jsbn "~0.1.1" 2172 | jsbn "~0.1.0" 2173 | tweetnacl "~0.14.0" 2174 | 2175 | string-length@^2.0.0: 2176 | version "2.0.0" 2177 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed" 2178 | dependencies: 2179 | astral-regex "^1.0.0" 2180 | strip-ansi "^4.0.0" 2181 | 2182 | string-width@^1.0.1, string-width@^1.0.2: 2183 | version "1.0.2" 2184 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2185 | dependencies: 2186 | code-point-at "^1.0.0" 2187 | is-fullwidth-code-point "^1.0.0" 2188 | strip-ansi "^3.0.0" 2189 | 2190 | string-width@^2.0.0: 2191 | version "2.1.1" 2192 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2193 | dependencies: 2194 | is-fullwidth-code-point "^2.0.0" 2195 | strip-ansi "^4.0.0" 2196 | 2197 | string_decoder@~1.0.3: 2198 | version "1.0.3" 2199 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 2200 | dependencies: 2201 | safe-buffer "~5.1.0" 2202 | 2203 | stringstream@~0.0.4, stringstream@~0.0.5: 2204 | version "0.0.5" 2205 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2206 | 2207 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2208 | version "3.0.1" 2209 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2210 | dependencies: 2211 | ansi-regex "^2.0.0" 2212 | 2213 | strip-ansi@^4.0.0: 2214 | version "4.0.0" 2215 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2216 | dependencies: 2217 | ansi-regex "^3.0.0" 2218 | 2219 | strip-bom@3.0.0, strip-bom@^3.0.0: 2220 | version "3.0.0" 2221 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2222 | 2223 | strip-bom@^2.0.0: 2224 | version "2.0.0" 2225 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2226 | dependencies: 2227 | is-utf8 "^0.2.0" 2228 | 2229 | strip-eof@^1.0.0: 2230 | version "1.0.0" 2231 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 2232 | 2233 | strip-json-comments@~2.0.1: 2234 | version "2.0.1" 2235 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2236 | 2237 | supports-color@^2.0.0: 2238 | version "2.0.0" 2239 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2240 | 2241 | supports-color@^3.1.2: 2242 | version "3.2.3" 2243 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 2244 | dependencies: 2245 | has-flag "^1.0.0" 2246 | 2247 | supports-color@^4.0.0: 2248 | version "4.4.0" 2249 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.4.0.tgz#883f7ddabc165142b2a61427f3352ded195d1a3e" 2250 | dependencies: 2251 | has-flag "^2.0.0" 2252 | 2253 | symbol-tree@^3.2.1: 2254 | version "3.2.2" 2255 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 2256 | 2257 | tar-pack@^3.4.0: 2258 | version "3.4.0" 2259 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 2260 | dependencies: 2261 | debug "^2.2.0" 2262 | fstream "^1.0.10" 2263 | fstream-ignore "^1.0.5" 2264 | once "^1.3.3" 2265 | readable-stream "^2.1.4" 2266 | rimraf "^2.5.1" 2267 | tar "^2.2.1" 2268 | uid-number "^0.0.6" 2269 | 2270 | tar@^2.2.1: 2271 | version "2.2.1" 2272 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 2273 | dependencies: 2274 | block-stream "*" 2275 | fstream "^1.0.2" 2276 | inherits "2" 2277 | 2278 | test-exclude@^4.1.1: 2279 | version "4.1.1" 2280 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26" 2281 | dependencies: 2282 | arrify "^1.0.1" 2283 | micromatch "^2.3.11" 2284 | object-assign "^4.1.0" 2285 | read-pkg-up "^1.0.1" 2286 | require-main-filename "^1.0.1" 2287 | 2288 | throat@^4.0.0: 2289 | version "4.1.0" 2290 | resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a" 2291 | 2292 | tmpl@1.0.x: 2293 | version "1.0.4" 2294 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 2295 | 2296 | to-fast-properties@^1.0.3: 2297 | version "1.0.3" 2298 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2299 | 2300 | tough-cookie@^2.3.2, tough-cookie@~2.3.0, tough-cookie@~2.3.3: 2301 | version "2.3.3" 2302 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 2303 | dependencies: 2304 | punycode "^1.4.1" 2305 | 2306 | tr46@~0.0.3: 2307 | version "0.0.3" 2308 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 2309 | 2310 | trim-right@^1.0.1: 2311 | version "1.0.1" 2312 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2313 | 2314 | tunnel-agent@^0.6.0: 2315 | version "0.6.0" 2316 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2317 | dependencies: 2318 | safe-buffer "^5.0.1" 2319 | 2320 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2321 | version "0.14.5" 2322 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2323 | 2324 | type-check@~0.3.2: 2325 | version "0.3.2" 2326 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 2327 | dependencies: 2328 | prelude-ls "~1.1.2" 2329 | 2330 | uglify-js@^2.6: 2331 | version "2.8.29" 2332 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 2333 | dependencies: 2334 | source-map "~0.5.1" 2335 | yargs "~3.10.0" 2336 | optionalDependencies: 2337 | uglify-to-browserify "~1.0.0" 2338 | 2339 | uglify-to-browserify@~1.0.0: 2340 | version "1.0.2" 2341 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 2342 | 2343 | uid-number@^0.0.6: 2344 | version "0.0.6" 2345 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 2346 | 2347 | util-deprecate@~1.0.1: 2348 | version "1.0.2" 2349 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2350 | 2351 | uuid@^3.0.0, uuid@^3.1.0: 2352 | version "3.1.0" 2353 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 2354 | 2355 | validate-npm-package-license@^3.0.1: 2356 | version "3.0.1" 2357 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 2358 | dependencies: 2359 | spdx-correct "~1.0.0" 2360 | spdx-expression-parse "~1.0.0" 2361 | 2362 | verror@1.10.0: 2363 | version "1.10.0" 2364 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 2365 | dependencies: 2366 | assert-plus "^1.0.0" 2367 | core-util-is "1.0.2" 2368 | extsprintf "^1.2.0" 2369 | 2370 | walker@~1.0.5: 2371 | version "1.0.7" 2372 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 2373 | dependencies: 2374 | makeerror "1.0.x" 2375 | 2376 | watch@~0.18.0: 2377 | version "0.18.0" 2378 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.18.0.tgz#28095476c6df7c90c963138990c0a5423eb4b986" 2379 | dependencies: 2380 | exec-sh "^0.2.0" 2381 | minimist "^1.2.0" 2382 | 2383 | webidl-conversions@^3.0.0: 2384 | version "3.0.1" 2385 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 2386 | 2387 | webidl-conversions@^4.0.0: 2388 | version "4.0.2" 2389 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" 2390 | 2391 | whatwg-encoding@^1.0.1: 2392 | version "1.0.1" 2393 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 2394 | dependencies: 2395 | iconv-lite "0.4.13" 2396 | 2397 | whatwg-url@^4.3.0: 2398 | version "4.8.0" 2399 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0" 2400 | dependencies: 2401 | tr46 "~0.0.3" 2402 | webidl-conversions "^3.0.0" 2403 | 2404 | which-module@^2.0.0: 2405 | version "2.0.0" 2406 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 2407 | 2408 | which@^1.2.12, which@^1.2.9: 2409 | version "1.3.0" 2410 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 2411 | dependencies: 2412 | isexe "^2.0.0" 2413 | 2414 | wide-align@^1.1.0: 2415 | version "1.1.2" 2416 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 2417 | dependencies: 2418 | string-width "^1.0.2" 2419 | 2420 | window-size@0.1.0: 2421 | version "0.1.0" 2422 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 2423 | 2424 | wordwrap@0.0.2: 2425 | version "0.0.2" 2426 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 2427 | 2428 | wordwrap@~0.0.2: 2429 | version "0.0.3" 2430 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 2431 | 2432 | wordwrap@~1.0.0: 2433 | version "1.0.0" 2434 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 2435 | 2436 | worker-farm@^1.3.1: 2437 | version "1.5.0" 2438 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.5.0.tgz#adfdf0cd40581465ed0a1f648f9735722afd5c8d" 2439 | dependencies: 2440 | errno "^0.1.4" 2441 | xtend "^4.0.1" 2442 | 2443 | wrap-ansi@^2.0.0: 2444 | version "2.1.0" 2445 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 2446 | dependencies: 2447 | string-width "^1.0.1" 2448 | strip-ansi "^3.0.1" 2449 | 2450 | wrappy@1: 2451 | version "1.0.2" 2452 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2453 | 2454 | write-file-atomic@^2.1.0: 2455 | version "2.3.0" 2456 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 2457 | dependencies: 2458 | graceful-fs "^4.1.11" 2459 | imurmurhash "^0.1.4" 2460 | signal-exit "^3.0.2" 2461 | 2462 | xml-name-validator@^2.0.1: 2463 | version "2.0.1" 2464 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 2465 | 2466 | xtend@^4.0.1: 2467 | version "4.0.1" 2468 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2469 | 2470 | y18n@^3.2.1: 2471 | version "3.2.1" 2472 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 2473 | 2474 | yallist@^2.1.2: 2475 | version "2.1.2" 2476 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 2477 | 2478 | yargs-parser@^7.0.0: 2479 | version "7.0.0" 2480 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" 2481 | dependencies: 2482 | camelcase "^4.1.0" 2483 | 2484 | yargs@^9.0.0: 2485 | version "9.0.1" 2486 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-9.0.1.tgz#52acc23feecac34042078ee78c0c007f5085db4c" 2487 | dependencies: 2488 | camelcase "^4.1.0" 2489 | cliui "^3.2.0" 2490 | decamelize "^1.1.1" 2491 | get-caller-file "^1.0.1" 2492 | os-locale "^2.0.0" 2493 | read-pkg-up "^2.0.0" 2494 | require-directory "^2.1.1" 2495 | require-main-filename "^1.0.1" 2496 | set-blocking "^2.0.0" 2497 | string-width "^2.0.0" 2498 | which-module "^2.0.0" 2499 | y18n "^3.2.1" 2500 | yargs-parser "^7.0.0" 2501 | 2502 | yargs@~3.10.0: 2503 | version "3.10.0" 2504 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 2505 | dependencies: 2506 | camelcase "^1.0.2" 2507 | cliui "^2.1.0" 2508 | decamelize "^1.0.0" 2509 | window-size "0.1.0" 2510 | --------------------------------------------------------------------------------