├── .gitignore ├── .npmignore ├── README.md ├── package.json ├── src ├── evaluator.ts ├── index.ts └── parser.ts ├── tests ├── evaluator.spec.ts └── parser.spec.ts ├── tsconfig.json ├── wallaby.json ├── webpack.config.js ├── yarn-error.log └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | coverage/ 3 | .nyc_output/ 4 | *.js 5 | .idea/ 6 | !webpack.config.js 7 | dist/ 8 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | **/* 2 | !dist/**/* 3 | !package.json 4 | !README.md 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # string-template-parser 2 | 3 | String template parsing utilities. 4 | 5 | - `parseStringTemplate` uses the default configuration (i.e. variable 6 | start is marked by `${` and variable end by `}`, the escape character 7 | is ` \ `, a pipe is started with `|` and a pipe parameter starts after 8 | a `:`, e.g. `'string ${var | pipe : parameter}'`). 9 | 10 | - `parseStringTemplateGenerator` returns a string parsing function 11 | that uses the supplied expressions from the configuration parameter 12 | to parse the string. 13 | 14 | - `evaluateStringTemplate` takes a string and a list of variables and 15 | one of pipe functions and returns a string where the variables are 16 | replaced with their values (transformed by the pipe functions if 17 | necessary). 18 | 19 | - `evaluateParsedString` takes a parsed string object generated by the 20 | `parseStringTemplate` function and returns a concatenated string with 21 | the variables replaced by the given values in the variable dictionary, 22 | passed through the pipe functions if necessary. This function is useful 23 | when not using the default `parseStringTemplate` function, but one 24 | generated by passing a parameter to `parseStringTemplateGenerator`. 25 | `evaluateParsedString(parseStringTemplateGenerator()(input), ...args)` 26 | is equivalent to `evaluateStringTemplate(input, ...args)` 27 | 28 | ## Usage 29 | 30 | #### `parseStringTemplate` 31 | 32 | ```typescript 33 | import { parseStringTemplate } from 'string-template-parser'; 34 | 35 | parseStringTemplate('a ${v1|p:param} b ${v2} c'); 36 | /* returns: 37 | { 38 | literals: ['a ', ' b ', ' c'], 39 | variables: [ 40 | { name: 'v1', pipes: [{ name: 'p', parameters: ['param'] }], 41 | { name: 'v2', pipes: []} 42 | ] 43 | } 44 | */ 45 | ``` 46 | 47 | #### `parseStringTemplateGenerator` 48 | 49 | ```typescript 50 | import { parseStringTemplateGenerator } from 'string-template-parser'; 51 | 52 | const parseAngularStringTemplate = parseStringTemplateGenerator({ 53 | VARIABLE_START: /^\{\{\s*/, 54 | VARIABLE_END: /^\s*\}\}/ 55 | }); 56 | 57 | parseAngularStringTemplate('a {{v1|p:param}} b {{v2}} c'); 58 | /* returns: 59 | { 60 | literals: ['a ', ' b ', ' c'], 61 | variables: [ 62 | { name: 'v1', pipes: [{ name: 'p', parameters: ['param'] }], 63 | { name: 'v2', pipes: []} 64 | ] 65 | } 66 | */ 67 | ``` 68 | 69 | #### `evaluateStringTemplate` 70 | 71 | ```typescript 72 | import { evaluateStringTemplate } from 'string-template-parser'; 73 | 74 | evaluateStringTemplate( 75 | 'x ${a|upper} y', 76 | {a: 'string'}, 77 | {upper: value => value.toUpperCase()} 78 | ); 79 | // returns 'x STRING y' 80 | ``` 81 | 82 | #### `evaluateParsedString` 83 | 84 | ```typescript 85 | import { 86 | parseStringTemplateGenerator, 87 | evaluateParsedString 88 | } from 'string-template-parser'; 89 | 90 | const parseAngularStringTemplate = parseStringTemplateGenerator({ 91 | VARIABLE_START: /^\{\{\s*/, 92 | VARIABLE_END: /^\s*\}\}/ 93 | }); 94 | 95 | evaluateParsedString( 96 | parseAngularStringTemplate('x {{a|upper}} y'), 97 | {a: 'string'}, 98 | {upper: value => value.toUpperCase()} 99 | ); 100 | // returns 'x STRING y' 101 | ``` 102 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "string-template-parser", 3 | "version": "1.2.6", 4 | "description": "Parsing & evaluating utilities for string templates", 5 | "repository": "https://github.com/souldreamer/string-template-parser.git", 6 | "main": "dist/index.js", 7 | "author": "Ionut Costica ", 8 | "license": "MIT", 9 | "scripts": { 10 | "prepare": "webpack -p", 11 | "test": "tsc && nyc ava" 12 | }, 13 | "types": "dist/index.d.ts", 14 | "keywords": [ 15 | "template string", 16 | "string parser", 17 | "template string parser", 18 | "angular string parser", 19 | "string variables", 20 | "pipes" 21 | ], 22 | "devDependencies": { 23 | "@types/node": "^8.0.28", 24 | "ava": "^0.22.0", 25 | "del": "^3.0.0", 26 | "delete-empty": "^1.0.1", 27 | "dts-bundle": "^0.7.3", 28 | "nyc": "^11.2.1", 29 | "ts-loader": "^2.3.7", 30 | "typescript": "^2.5.2", 31 | "webpack": "^3.0.0", 32 | "webpack-node-externals": "^1.6.0", 33 | "webpack-progress-plugin": "^1.1.0", 34 | "yargs": "^8.0.2" 35 | }, 36 | "dependencies": {}, 37 | "ava": { 38 | "files": [ 39 | "tests/*.js" 40 | ], 41 | "concurrency": 5, 42 | "failFast": true, 43 | "tap": false, 44 | "powerAssert": false, 45 | "babel": "inherit" 46 | }, 47 | "nyc": { 48 | "reporter": [ 49 | "text" 50 | ], 51 | "cache": true, 52 | "check-coverage": true 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /src/evaluator.ts: -------------------------------------------------------------------------------- 1 | import { ParsedString, Variable, parseStringTemplate } from './parser'; 2 | 3 | export interface PipeFunction { 4 | (variableValue: any, parameters: string[]): string; 5 | } 6 | 7 | function DEFAULT_GET_VALUE(variables: {[variableName: string]: any}) { 8 | return (variableName: string) => 9 | variables.hasOwnProperty(variableName) 10 | ? variables[variableName] 11 | : variableName.split('.').reduce((value, current) => value.hasOwnProperty(current) ? value[current] : '', variables); 12 | } 13 | 14 | function getParsedVariable( 15 | variable: Variable, 16 | variables: {[variableName: string]: string}, 17 | pipes: {[pipeName: string]: PipeFunction}, 18 | getValue: (variableName: string) => any = DEFAULT_GET_VALUE(variables) 19 | ): string { 20 | const variableStartValue = getValue(variable.name); 21 | return variable.pipes.reduce((variableValue, pipe) => { 22 | return pipes.hasOwnProperty(pipe.name) ? 23 | pipes[pipe.name](variableValue, pipe.parameters) : 24 | variableValue; 25 | }, variableStartValue == null ? '' : variableStartValue); 26 | } 27 | 28 | export function evaluateParsedString( 29 | parsedString: ParsedString, 30 | variables: {[variableName: string]: any}, 31 | pipes: {[pipeName: string]: PipeFunction}, 32 | getValue: (variableName: string) => any = DEFAULT_GET_VALUE(variables) 33 | ): string { 34 | if (parsedString.literals.length === 0) return ''; 35 | return parsedString.literals.slice(1).reduce((result, literal, index) => 36 | `${result}${getParsedVariable(parsedString.variables[index], variables, pipes, getValue)}${literal}`, 37 | parsedString.literals[0]); 38 | } 39 | 40 | export function evaluateStringTemplate( 41 | input: string, 42 | variables: {[variableName: string]: string}, 43 | pipes: {[pipeName: string]: PipeFunction} 44 | ): string { 45 | return evaluateParsedString(parseStringTemplate(input), variables, pipes); 46 | } 47 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './parser'; 2 | export * from './evaluator'; 3 | -------------------------------------------------------------------------------- /src/parser.ts: -------------------------------------------------------------------------------- 1 | export interface Pipe { 2 | name: string; 3 | parameters: string[]; 4 | } 5 | 6 | export interface Variable { 7 | name: string; 8 | pipes: Pipe[]; 9 | } 10 | 11 | export interface ParsedString { 12 | literals: string[]; 13 | variables: Variable[]; 14 | } 15 | 16 | const enum ParseState { 17 | Literal, 18 | Variable, 19 | Pipe, 20 | PipeParameter 21 | } 22 | 23 | export const DEFAULT_QUOTED_STRING_REGEX = /^('((?:[^'\\]|\\.)*)'|'((?:[^'\\]|\\.)*)$|"((?:[^"\\]|\\.)*)"|"((?:[^"\\]|\\.)*)$)/; 24 | 25 | export function parseStringTemplateGenerator({ 26 | ESCAPE = /^\\/, 27 | VARIABLE_START = /^\${\s*/, 28 | VARIABLE_END = /^\s*}/, 29 | PIPE_START = /^\s*\|\s*/, 30 | PIPE_PARAMETER_START = /^\s*:\s*/, 31 | QUOTED_STRING = DEFAULT_QUOTED_STRING_REGEX, 32 | QUOTED_STRING_TEST = null, 33 | QUOTED_STRING_GET_AND_ADVANCE = null, 34 | QUOTED_STRING_IN_PARAMETER_TEST = null, 35 | QUOTED_STRING_IN_PARAMETER_GET_AND_ADVANCE = null 36 | }: { 37 | ESCAPE?: RegExp, 38 | VARIABLE_START?: RegExp, 39 | VARIABLE_END?: RegExp, 40 | PIPE_START?: RegExp, 41 | PIPE_PARAMETER_START?: RegExp, 42 | QUOTED_STRING?: RegExp, 43 | QUOTED_STRING_TEST?: (remainingString: string) => boolean | null, 44 | QUOTED_STRING_GET_AND_ADVANCE?: (remainingString: string, advance: (length: number) => void) => string | null, 45 | QUOTED_STRING_IN_PARAMETER_TEST?: (remainingString: string) => boolean | null, 46 | QUOTED_STRING_IN_PARAMETER_GET_AND_ADVANCE?: (remainingString: string, advance: (length: number) => void) => string | null 47 | } = {}) { 48 | const quotedStringTest = QUOTED_STRING_TEST || ((remainingString: string) => QUOTED_STRING.test(remainingString)); 49 | const quotedStringGetAndAdvance = QUOTED_STRING_GET_AND_ADVANCE || getQuotedStringAndAdvanceForRegex(QUOTED_STRING); 50 | const quotedStringInParameterTest = QUOTED_STRING_IN_PARAMETER_TEST || ((remainingString: string) => QUOTED_STRING.test(remainingString)); 51 | const quotedStringInParameterGetAndAdvance = QUOTED_STRING_IN_PARAMETER_GET_AND_ADVANCE || getQuotedStringAndAdvanceForRegex(QUOTED_STRING); 52 | 53 | return function parseStringTemplate(input: string): ParsedString { 54 | let remainingString = input; 55 | let parsedString: ParsedString = {literals: [], variables: []}; 56 | let parseState = ParseState.Literal; 57 | let currentLiteral = ''; 58 | let currentVariable: Variable = {name: '', pipes: []}; 59 | let currentPipe: Pipe = {name: '', parameters: []}; 60 | let currentPipeParameter: string = ''; 61 | let existsCurrentVariable = false; 62 | let existsCurrentPipe = false; 63 | let existsCurrentPipeParameter = false; 64 | 65 | while (remainingString && remainingString.length > 0) { 66 | switch (parseState) { 67 | case ParseState.Literal: 68 | if (ESCAPE.test(remainingString)) { 69 | currentLiteral += getEscapedCharacter(); 70 | continue; 71 | } 72 | if (VARIABLE_START.test(remainingString)) { 73 | parseState = ParseState.Variable; 74 | newCurrentVariable(); 75 | parsedString.literals.push(currentLiteral); 76 | currentLiteral = ''; 77 | skipMatch(VARIABLE_START); 78 | continue; 79 | } 80 | currentLiteral += remainingString[0]; 81 | advance(); 82 | break; 83 | case ParseState.Variable: 84 | if (ESCAPE.test(remainingString)) { 85 | currentVariable.name += getEscapedCharacter(); 86 | continue; 87 | } 88 | if (testVariableEnd() || testPipeStart()) continue; 89 | if (quotedStringTest(remainingString)) { 90 | currentVariable.name += quotedStringGetAndAdvance(remainingString, advance); 91 | continue; 92 | } 93 | currentVariable.name += remainingString[0]; 94 | advance(); 95 | break; 96 | case ParseState.Pipe: 97 | if (ESCAPE.test(remainingString)) { 98 | currentPipe.name += getEscapedCharacter(); 99 | continue; 100 | } 101 | if (testVariableEnd() || testPipeParameterStart() || testPipeStart()) continue; 102 | if (quotedStringTest(remainingString)) { 103 | currentPipe.name += quotedStringGetAndAdvance(remainingString, advance); 104 | continue; 105 | } 106 | currentPipe.name += remainingString[0]; 107 | advance(); 108 | break; 109 | case ParseState.PipeParameter: 110 | if (ESCAPE.test(remainingString)) { 111 | currentPipeParameter += getEscapedCharacter(); 112 | continue; 113 | } 114 | if (testVariableEnd() || testPipeParameterStart() || testPipeStart()) continue; 115 | if (quotedStringInParameterTest(remainingString)) { 116 | currentPipeParameter += quotedStringInParameterGetAndAdvance(remainingString, advance); 117 | continue; 118 | } 119 | currentPipeParameter += remainingString[0]; 120 | advance(); 121 | break; 122 | } 123 | } 124 | if (existsCurrentPipeParameter) currentPipe.parameters.push(currentPipeParameter); 125 | if (existsCurrentPipe) currentVariable.pipes.push(currentPipe); 126 | if (existsCurrentVariable) parsedString.variables.push(currentVariable); 127 | parsedString.literals.push(currentLiteral); 128 | 129 | return parsedString; 130 | 131 | function advance(length: number = 1) { 132 | remainingString = remainingString.substr(length); 133 | } 134 | function skipMatch(regex: RegExp = /^/) { 135 | advance((remainingString.match(regex))[0].length); 136 | } 137 | 138 | function getEscapedCharacter(): string { 139 | let escapedCharacter: string; 140 | 141 | skipMatch(ESCAPE); 142 | escapedCharacter = remainingString.length > 0 ? remainingString[0] : ''; 143 | advance(); 144 | 145 | return escapedCharacter; 146 | } 147 | 148 | function newCurrentVariable({isNull = false} = {}) { 149 | currentVariable = {name: '', pipes: []}; 150 | existsCurrentVariable = !isNull; 151 | } 152 | function deleteCurrentVariable() { 153 | parsedString.variables.push(currentVariable); 154 | newCurrentVariable({isNull: true}); 155 | } 156 | function newCurrentPipe({isNull = false} = {}) { 157 | currentPipe = {name: '', parameters: []}; 158 | existsCurrentPipe = !isNull; 159 | } 160 | function deleteCurrentPipe() { 161 | currentVariable.pipes.push(currentPipe); 162 | newCurrentPipe({isNull: true}); 163 | } 164 | function newCurrentPipeParameter({isNull = false} = {}) { 165 | currentPipeParameter = ''; 166 | existsCurrentPipeParameter = !isNull; 167 | } 168 | function deleteCurrentPipeParameter() { 169 | currentPipe.parameters.push(currentPipeParameter); 170 | newCurrentPipeParameter({isNull: true}); 171 | } 172 | 173 | function testVariableEnd(): boolean { 174 | if (!VARIABLE_END.test(remainingString)) return false; 175 | skipMatch(VARIABLE_END); 176 | if (parseState >= ParseState.PipeParameter) deleteCurrentPipeParameter(); 177 | if (parseState >= ParseState.Pipe) deleteCurrentPipe(); 178 | if (parseState >= ParseState.Variable) deleteCurrentVariable(); 179 | parseState = ParseState.Literal; 180 | return true; 181 | } 182 | function testPipeStart(): boolean { 183 | if (!PIPE_START.test(remainingString)) return false; 184 | skipMatch(PIPE_START); 185 | if (parseState >= ParseState.PipeParameter) deleteCurrentPipeParameter(); 186 | if (parseState >= ParseState.Pipe) deleteCurrentPipe(); 187 | if (parseState >= ParseState.Variable) newCurrentPipe(); 188 | parseState = ParseState.Pipe; 189 | return true; 190 | } 191 | function testPipeParameterStart(): boolean { 192 | if (!PIPE_PARAMETER_START.test(remainingString)) return false; 193 | skipMatch(PIPE_PARAMETER_START); 194 | if (parseState >= ParseState.PipeParameter) deleteCurrentPipeParameter(); 195 | if (parseState >= ParseState.Pipe) newCurrentPipeParameter(); 196 | parseState = ParseState.PipeParameter; 197 | return true; 198 | } 199 | }; 200 | } 201 | 202 | export const parseStringTemplate = parseStringTemplateGenerator(); 203 | export function getQuotedStringAndAdvanceForRegex(regex: RegExp) { 204 | return (remainingString: string, advance: (length: number) => void) => { 205 | const quotedStringMatch = remainingString.match(regex); 206 | advance(quotedStringMatch[0].length); 207 | return quotedStringMatch.slice(2).join('').replace('\\\\', '\\'); 208 | }; 209 | } 210 | -------------------------------------------------------------------------------- /tests/evaluator.spec.ts: -------------------------------------------------------------------------------- 1 | import { test } from 'ava'; 2 | import { PipeFunction, evaluateStringTemplate, evaluateParsedString } from '../src/evaluator'; 3 | 4 | const variables: {[variableName: string]: any} = { 5 | a: 'value-a', 6 | b: 'value-b', 7 | c: 'value-c', 8 | d: { 9 | e: 'bla' 10 | }, 11 | zero: 0 12 | }; 13 | const pipes: {[pipeName: string]: PipeFunction} = { 14 | '!': (variableValue) => `${variableValue}-!`, 15 | 'postfix': (variableValue, parameters) => `${variableValue}-${parameters.join('-')}`, 16 | 'prefix': (variableValue, parameters) => `${parameters.join('-')}-${variableValue}`, 17 | 'upper': (variableValue) => variableValue.toString().toUpperCase() 18 | }; 19 | 20 | function testStringEvaluation(testName: string, testString: string, expected: string) { 21 | test(testName, t => { 22 | const testResult = evaluateStringTemplate(testString, variables, pipes); 23 | t.is(testResult, expected); 24 | }); 25 | } 26 | 27 | testStringEvaluation('evaluate empty string', '', ''); 28 | testStringEvaluation('evaluate simple string', 'string', 'string'); 29 | testStringEvaluation('evaluate string with empty variable', 'string ${}', 'string '); 30 | testStringEvaluation('evaluate string with variable', 'x ${a}', 'x value-a'); 31 | testStringEvaluation('evaluate string with variable & pipe', 'x ${a|upper}', 'x VALUE-A'); 32 | testStringEvaluation('evaluate string with variable, pipe & pipe parameter', 'x ${a|!}', 'x value-a-!'); 33 | testStringEvaluation('evaluate string with variable, pipe & multiple pipe parameters', 'x ${a|postfix:1:2}', 'x value-a-1-2'); 34 | testStringEvaluation('evaluate string with variable, multiple pipes & pipe parameter', 'x ${a|!|prefix:@}', 'x @-value-a-!'); 35 | testStringEvaluation('evaluate string with variable, multiple pipes & pipe parameters', 'x ${a|!|prefix:@:#}', 'x @-#-value-a-!'); 36 | testStringEvaluation('evaluate string with variable, multiple pipes & pipe parameters', 'x ${a|!|prefix:@:#|postfix:1:2}', 'x @-#-value-a-!-1-2'); 37 | testStringEvaluation('evaluate string with multiple variables', 'x ${a} ${b}', 'x value-a value-b'); 38 | testStringEvaluation('evaluate complex example', 39 | 'x ${a|!|prefix:@:#|postfix:1:2} y ${b|upper|postfix:u|prefix:t} z', 40 | 'x @-#-value-a-!-1-2 y t-VALUE-B-u z'); 41 | testStringEvaluation('evaluate string with variable & inexistent pipe', '${a|foo}', 'value-a'); 42 | testStringEvaluation('evaluate string with sub-variable', '${d.e}', 'bla'); 43 | testStringEvaluation('evaluate 0-value', '${zero|!}', '0-!'); 44 | 45 | test('evaluateParsedString: no literals in literal array', t => { 46 | const testResult = evaluateParsedString({literals: [], variables: []}, {}, {}); 47 | t.is(testResult, ''); 48 | }); 49 | -------------------------------------------------------------------------------- /tests/parser.spec.ts: -------------------------------------------------------------------------------- 1 | import { test } from 'ava'; 2 | import { ParsedString, parseStringTemplate, parseStringTemplateGenerator } from '../src/parser'; 3 | 4 | const parseAngularStringTemplate = parseStringTemplateGenerator({ 5 | VARIABLE_START: /^({{\s*)/, 6 | VARIABLE_END: /^\s*}}/ 7 | }); 8 | 9 | const parseI18NPluralizationTemplate = parseStringTemplateGenerator({ 10 | VARIABLE_START: /^{\s*/, 11 | VARIABLE_END: /^\s*}/, 12 | PIPE_START: /^\s*,\s*/, 13 | PIPE_PARAMETER_START: /^\s*,\s*/, 14 | QUOTED_STRING_IN_PARAMETER_TEST: (remainingString => remainingString.startsWith('{')), 15 | QUOTED_STRING_IN_PARAMETER_GET_AND_ADVANCE: ((remainingString: string, advance: (length: number) => void) => { 16 | let currentPosition = 1; 17 | let depth = 1; 18 | while (depth > 0 && currentPosition < remainingString.length) { 19 | if (remainingString[currentPosition] === '\\') { 20 | currentPosition += 2; 21 | continue; 22 | } 23 | if (remainingString[currentPosition] === '{') { 24 | depth++; 25 | } 26 | if (remainingString[currentPosition] === '}') { 27 | depth--; 28 | } 29 | currentPosition++; 30 | } 31 | const result = remainingString.substr(0, currentPosition); 32 | advance(currentPosition); 33 | return result; 34 | }) 35 | }); 36 | 37 | function testStringParsing(testName: string, testString: string, expected: ParsedString) { 38 | test(testName, t => { 39 | const testResult = parseStringTemplate(testString); 40 | t.deepEqual(testResult, expected); 41 | }); 42 | } 43 | 44 | function testAngularStringParsing(testName: string, testString: string, expected: ParsedString) { 45 | test(testName, t => { 46 | const testResult = parseAngularStringTemplate(testString); 47 | t.deepEqual(testResult, expected); 48 | }); 49 | } 50 | 51 | function testI18NStringParsing(testName: string, testString: string, expected: ParsedString) { 52 | test(testName, t => { 53 | const testResult = parseI18NPluralizationTemplate(testString); 54 | t.deepEqual(testResult, expected); 55 | }); 56 | } 57 | 58 | testStringParsing('empty string', '', 59 | {literals: [''], variables: []}); 60 | testStringParsing('basic string', 'basic string', 61 | {literals: ['basic string'], variables: []}); 62 | testStringParsing('string with variable', 'string with variable ${var}', 63 | {literals: ['string with variable ', ''], variables: [{name: 'var', pipes: []}]}); 64 | testStringParsing('string with variable that includes spaces', 'string with variable ${ var }', 65 | {literals: ['string with variable ', ''], variables: [{name: 'var', pipes: []}]}); 66 | testStringParsing('string without variable, but with escaped ${}', 'string without variable \\${var}', 67 | {literals: ['string without variable ${var}'], variables: []}); 68 | testStringParsing('string with two variables', 'xxx ${var} yyy ${var2} zzz', 69 | {literals: ['xxx ', ' yyy ', ' zzz'], variables: [ 70 | {name: 'var', pipes: []}, 71 | {name: 'var2', pipes: []}]}); 72 | testStringParsing('string with variable & pipe', 'xxx ${var|pipe}', 73 | {literals: ['xxx ', ''], variables: [{name: 'var', pipes: [{name: 'pipe', parameters: []}]}]}); 74 | testStringParsing('string with variable, pipe & pipe parameter', 'xxx ${var|pipe:param}', 75 | {literals: ['xxx ', ''], variables: [{name: 'var', pipes: [{name: 'pipe', parameters: ['param']}]}]}); 76 | testStringParsing('string with variable, pipe & multiple pipe parameters', 'xxx ${var|pipe:param1:param2}', 77 | {literals: ['xxx ', ''], variables: [{name: 'var', pipes: [{name: 'pipe', parameters: ['param1', 'param2']}]}]}); 78 | testStringParsing('string with variable & multiple pipes', 'xxx ${var|pipe1|pipe2}', 79 | {literals: ['xxx ', ''], variables: [ 80 | {name: 'var', pipes: [ 81 | {name: 'pipe1', parameters: []}, 82 | {name: 'pipe2', parameters: []}]}]}); 83 | testStringParsing('string with empty variable', 'xxx ${}', 84 | {literals: ['xxx ', ''], variables: [{name: '', pipes: []}]}); 85 | testStringParsing('string with quoted variable name (})', 'x ${"var}name"}', 86 | {literals: ['x ', ''], variables: [{name: 'var}name', pipes: []}]}); 87 | testStringParsing('string with quoted variable name (:)', 'x ${"var:name"}', 88 | {literals: ['x ', ''], variables: [{name: 'var:name', pipes: []}]}); 89 | testStringParsing('string with quoted variable name (|)', 'x ${"var|name"}', 90 | {literals: ['x ', ''], variables: [{name: 'var|name', pipes: []}]}); 91 | testStringParsing('string with variable & quoted pipe name (:)', 'x ${var|"pipe:name"}', 92 | {literals: ['x ', ''], variables: [{name: 'var', pipes: [{name: 'pipe:name', parameters: []}]}]}); 93 | testStringParsing('string with variable & quoted pipe name (|)', 'x ${var|"pipe|name"}', 94 | {literals: ['x ', ''], variables: [{name: 'var', pipes: [{name: 'pipe|name', parameters: []}]}]}); 95 | testStringParsing('string with variable, pipe & quoted pipe parameter (:)', 'x ${var|pipe:"param:param"}', 96 | {literals: ['x ', ''], variables: [{name: 'var', pipes: [{name: 'pipe', parameters: ['param:param']}]}]}); 97 | testStringParsing('string with variable, pipe & quoted pipe parameter (|)', 'x ${var|pipe:"param|param"}', 98 | {literals: ['x ', ''], variables: [{name: 'var', pipes: [{name: 'pipe', parameters: ['param|param']}]}]}); 99 | testStringParsing('string with variable, pipe & escaped (:) in pipe parameter', 'x ${var|pipe:parameter\\:1', 100 | {literals: ['x ', ''], variables: [{name: 'var', pipes: [{name: 'pipe', parameters: ['parameter:1']}]}]}); 101 | testStringParsing('string with variable, pipe & escaped (|) in pipe parameter', 'x ${var|pipe:parameter\\|1', 102 | {literals: ['x ', ''], variables: [{name: 'var', pipes: [{name: 'pipe', parameters: ['parameter|1']}]}]}); 103 | testStringParsing('string with variable, pipe & escaped (}) in pipe parameter', 'x ${var|pipe:{parameter\\}}', 104 | {literals: ['x ', ''], variables: [{name: 'var', pipes: [{name: 'pipe', parameters: ['{parameter}']}]}]}); 105 | testStringParsing('string with variable, pipe & "{}" as pipe parameter', 'x ${var|pipe:"{}"}', 106 | {literals: ['x ', ''], variables: [{name: 'var', pipes: [{name: 'pipe', parameters: ['{}']}]}]}); 107 | testStringParsing('string with variable, pipe & escaped \' and " in pipe parameter', 'x ${var|date:m\\\'s\\"}', 108 | {literals: ['x ', ''], variables: [{name: 'var', pipes: [{name: 'date', parameters: ['m\'s"']}]}]}); 109 | testStringParsing('variable with nested quotes', `\${"''"}`, 110 | {literals: ['', ''], variables: [{name: `''`, pipes: []}]}); 111 | testStringParsing('unterminated variable', '${var', 112 | {literals: ['', ''], variables: [{name: 'var', pipes: []}]}); 113 | testStringParsing('unterminated variable with pipe', '${var|pipe', 114 | {literals: ['', ''], variables: [{name: 'var', pipes: [{name: 'pipe', parameters: []}]}]}); 115 | testStringParsing('unterminated variable with pipe & pipe parameter', '${var|pipe:param', 116 | {literals: ['', ''], variables: [{name: 'var', pipes: [{name: 'pipe', parameters: ['param']}]}]}); 117 | testStringParsing('unterminated variable with string name', '${"var', 118 | {literals: ['', ''], variables: [{name: 'var', pipes: []}]}); 119 | testStringParsing('unterminated variable with string name (|)', '${"var|name', 120 | {literals: ['', ''], variables: [{name: 'var|name', pipes: []}]}); 121 | testStringParsing('unterminated variable with string pipe', '${var|"pipe', 122 | {literals: ['', ''], variables: [{name: 'var', pipes: [{name: 'pipe', parameters: []}]}]}); 123 | testStringParsing('unterminated variable with string pipe (:)', '${var|"pipe:name', 124 | {literals: ['', ''], variables: [{name: 'var', pipes: [{name: 'pipe:name', parameters: []}]}]}); 125 | testStringParsing('unterminated variable with string pipe (|)', '${var|"pipe|name', 126 | {literals: ['', ''], variables: [{name: 'var', pipes: [{name: 'pipe|name', parameters: []}]}]}); 127 | testStringParsing('unterminated variable with string pipe (})', '${var|"pipe}name', 128 | {literals: ['', ''], variables: [{name: 'var', pipes: [{name: 'pipe}name', parameters: []}]}]}); 129 | testStringParsing('unterminated variable with pipe & string pipe parameter', '${var|pipe:"param', 130 | {literals: ['', ''], variables: [{name: 'var', pipes: [{name: 'pipe', parameters: ['param']}]}]}); 131 | testStringParsing('unterminated variable with pipe & string pipe parameter (:)', '${var|pipe:"param:name', 132 | {literals: ['', ''], variables: [{name: 'var', pipes: [{name: 'pipe', parameters: ['param:name']}]}]}); 133 | testStringParsing('unterminated variable with pipe & string pipe parameter (|)', '${var|pipe:"param|name', 134 | {literals: ['', ''], variables: [{name: 'var', pipes: [{name: 'pipe', parameters: ['param|name']}]}]}); 135 | testStringParsing('unterminated variable with pipe & string pipe parameter (})', '${var|pipe:"param}name', 136 | {literals: ['', ''], variables: [{name: 'var', pipes: [{name: 'pipe', parameters: ['param}name']}]}]}); 137 | testStringParsing('string with variable, pipe & pipe parameter with mixed quote (beginning)', 'x ${var|pipe:"param" x}', 138 | {literals: ['x ', ''], variables: [{name: 'var', pipes: [{name: 'pipe', parameters: ['param x']}]}]}); 139 | testStringParsing('string with variable, pipe & pipe parameter with mixed quote (middle)', 'x ${var|pipe:x "param" x}', 140 | {literals: ['x ', ''], variables: [{name: 'var', pipes: [{name: 'pipe', parameters: ['x param x']}]}]}); 141 | testStringParsing('string with variable, pipe & pipe parameter with mixed quote (end)', 'x ${var|pipe:x "param"}', 142 | {literals: ['x ', ''], variables: [{name: 'var', pipes: [{name: 'pipe', parameters: ['x param']}]}]}); 143 | testStringParsing('string with variable, pipe & pipe parameters (one of which is empty)', 'x ${var|pipe:empty_param_next:}', 144 | {literals: ['x ', ''], variables: [{name: 'var', pipes: [{name: 'pipe', parameters: ['empty_param_next', '']}]}]}); 145 | testStringParsing('unterminated ESCAPE in variable', '${var\\', 146 | {literals: ['', ''], variables: [{name: 'var', pipes: []}]}); 147 | testStringParsing('unterminated ESCAPE in pipe', '${var|pipe\\', 148 | {literals: ['', ''], variables: [{name: 'var', pipes: [{name: 'pipe', parameters: []}]}]}); 149 | testStringParsing('unterminated ESCAPE in pipe parameter', '${var|pipe:param\\', 150 | {literals: ['', ''], variables: [{name: 'var', pipes: [{name: 'pipe', parameters: ['param']}]}]}); 151 | testStringParsing('empty string in variable', '${""}', 152 | {literals: ['', ''], variables: [{name: '', pipes: []}]}); 153 | testStringParsing('string variable ending in an escaped backslash', '${"\\\\"}', 154 | {literals: ['', ''], variables: [{name: '\\', pipes: []}]}); 155 | testStringParsing('complex example', 156 | '${ var1 | pipe1 : param1 : param2 | pipe2: paramA : paramB } bla ${ va"r"\\|2 | p"i|p"e\\:test : "p"ara"m"\\:X }', 157 | {literals: ['', ' bla ', ''], variables: [ 158 | {name: 'var1', pipes: [ 159 | {name: 'pipe1', parameters: ['param1', 'param2']}, 160 | {name: 'pipe2', parameters: ['paramA', 'paramB']}]}, 161 | {name: 'var|2', pipes: [ 162 | {name: 'pi|pe:test', parameters: ['param:X']}]}]}); 163 | 164 | testAngularStringParsing('angular string without variables', 'string', 165 | {literals: ['string'], variables: []}); 166 | testAngularStringParsing('angular string without variables, but with default variable start/end', 'string ${var}', 167 | {literals: ['string ${var}'], variables: []}); 168 | testAngularStringParsing('angular string without variables (escaped)', 'string \\{{not-a-var}}', 169 | {literals: ['string {{not-a-var}}'], variables: []}); 170 | testAngularStringParsing('angular string with variable', 'string {{var}}', 171 | {literals: ['string ', ''], variables: [{name: 'var', pipes: []}]}); 172 | testAngularStringParsing('angular string with variable & pipe', 'string {{var|pipe}}', 173 | {literals: ['string ', ''], variables: [{name: 'var', pipes: [{name: 'pipe', parameters: []}]}]}); 174 | testAngularStringParsing('angular string with variable, pipe & pipe parameter', 'string {{var|pipe:param}}', 175 | {literals: ['string ', ''], variables: [{name: 'var', pipes: [{name: 'pipe', parameters: ['param']}]}]}); 176 | testAngularStringParsing('angular complex example', 177 | '{{ var1 | pipe1 : param1 : param2 | pipe2: paramA : paramB }} bla {{ va"r"\\|2 | p"i|p"e\\:test : "p"ara"m"\\:X }}', 178 | {literals: ['', ' bla ', ''], variables: [ 179 | {name: 'var1', pipes: [ 180 | {name: 'pipe1', parameters: ['param1', 'param2']}, 181 | {name: 'pipe2', parameters: ['paramA', 'paramB']}]}, 182 | {name: 'var|2', pipes: [ 183 | {name: 'pi|pe:test', parameters: ['param:X']}]}]}); 184 | 185 | testI18NStringParsing('I18N: pluralization', 186 | 'this is {numPeople, plural, =0 {no one} =1 {someone} other {everyone}}', 187 | {literals: ['this is ', ''], variables: [ 188 | {name: 'numPeople', pipes: [ 189 | {name: 'plural', parameters: [ 190 | '=0 {no one} =1 {someone} other {everyone}' 191 | ]} 192 | ]} 193 | ]}); 194 | testI18NStringParsing('I18N: select', 195 | 'this is a {gender, select, m {man} f {woman}}', 196 | {literals: ['this is a ', ''], variables: [ 197 | {name: 'gender', pipes: [ 198 | {name: 'select', parameters: [ 199 | 'm {man} f {woman}' 200 | ]} 201 | ]} 202 | ]}); 203 | testI18NStringParsing('I18N: pluralization + select', 204 | '{count, plural, =0 {no one} =1 {{gender, select, m {a man} f {a woman}}} other {count {gender, select, m {men} f {women}}}}', 205 | {literals: ['', ''], variables: [ 206 | {name: 'count', pipes: [ 207 | {name: 'plural', parameters: [ 208 | '=0 {no one} =1 {{gender, select, m {a man} f {a woman}}} other {count {gender, select, m {men} f {women}}}' 209 | ]} 210 | ]} 211 | ]}); 212 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es5", 4 | "module": "commonjs", 5 | "outDir": "dist", 6 | "sourceMap": true, 7 | "experimentalDecorators": true, 8 | "emitDecoratorMetadata": true, 9 | "declaration": true, 10 | "declarationDir": "dist", 11 | "lib": [ "es5", "es6", "dom" ] 12 | }, 13 | "files": [ 14 | "src/index.ts" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /wallaby.json: -------------------------------------------------------------------------------- 1 | { 2 | "files": [ 3 | "./**/*.ts", 4 | "!./**/*.spec.ts", 5 | "!./node_modules/**/*.*" 6 | ], 7 | "tests": [ 8 | "tests/**/*.spec.ts" 9 | ], 10 | "env": { 11 | "type": "node" 12 | }, 13 | "testFramework": "ava" 14 | } -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- 1 | var webpack = require('webpack'); 2 | var path = require('path'); 3 | var yargs = require('yargs'); 4 | var dts = require('dts-bundle'); 5 | var deleteEmpty = require('delete-empty'); 6 | var os = require('os'); 7 | var nodeExternals = require('webpack-node-externals'); 8 | var del = require('del'); 9 | 10 | var libraryName = 'string-template-parser'; 11 | var plugins = [ 12 | new webpack.ProgressPlugin(webpackStartEndHandler) 13 | ]; 14 | var outputFile; 15 | var cleanInstall = yargs.argv.clean && true || false; 16 | 17 | outputFile = 'index.js'; 18 | 19 | var config = { 20 | entry: [ 21 | path.join(__dirname, '/src/index') 22 | ], 23 | devtool: 'source-map', 24 | output: { 25 | path: path.join(__dirname, '/dist'), 26 | filename: outputFile, 27 | library: libraryName, 28 | libraryTarget: 'umd', 29 | umdNamedDefine: true 30 | }, 31 | module: { 32 | loaders: [ 33 | { test: /\.ts$/, loader: 'ts-loader', exclude: [/node_modules/, /dist/, /tests/] } 34 | ] 35 | }, 36 | resolve: { 37 | extensions: ['.ts', '!.spec.ts'] 38 | }, 39 | plugins: plugins, 40 | externals: [nodeExternals()] 41 | }; 42 | 43 | module.exports = config; 44 | 45 | function webpackStartEndHandler(percentage, message) { 46 | if (percentage === 0) { 47 | // start 48 | if (cleanInstall) del.sync('dist'); 49 | } 50 | if (percentage === 1) { 51 | // end 52 | console.log("Building .d.ts bundle"); 53 | dts.bundle(dtsBundleOptions); 54 | console.log('Cleaning intermediate .d.ts files'); 55 | deleteEmpty(dtsBundleOptions.baseDir, function (err, deletedFile) { 56 | if (err) { 57 | console.error('Couldn\'t delete: ' + err); 58 | throw err; 59 | } 60 | console.log('Deleted: ' + deletedFile); 61 | }); 62 | 63 | // currently ts-loader emits declarations for ./tests too for some reason 64 | del.sync('dist/tests'); 65 | } 66 | } 67 | 68 | var dtsBundleOptions = { 69 | name: libraryName, 70 | main: 'dist/dist/index.d.ts', 71 | baseDir: 'dist/dist', 72 | out: '../index.d.ts', 73 | externals: false, 74 | referenceExternals: false, 75 | removeSource: true, 76 | newline: os.EOL, 77 | indent: '\t', 78 | prefix: '', 79 | separator: '/', 80 | verbose: false, 81 | emitOnIncludedFileNotFound: false, 82 | emitOnNoIncludedFileNotFound: false, 83 | outputAsModuleFolder: false, 84 | headerPath: '' 85 | }; 86 | -------------------------------------------------------------------------------- /yarn-error.log: -------------------------------------------------------------------------------- 1 | Arguments: 2 | /usr/local/Cellar/node/8.4.0/bin/node /Users/ionut/.npm-packages/bin/yarn publish 3 | 4 | PATH: 5 | /Users/ionut/.npm-packages/bin:/Users/ionut/.npm-packages/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Library/Java/JavaVirtualMachines/jdk1.8.0_92.jdk/Contents/Home/bin:/Users/ionut/Library/Android/sdk/tools:/Users/ionut/Library/Android/sdk/tools/bin:/Users/ionut/Library/Android/sdk/platform-tools 6 | 7 | Yarn version: 8 | 1.0.1 9 | 10 | Node version: 11 | 8.4.0 12 | 13 | Platform: 14 | darwin x64 15 | 16 | npm manifest: 17 | { 18 | "name": "string-template-parser", 19 | "version": "1.2.3", 20 | "description": "Parsing & evaluating utilities for string templates", 21 | "repository": "https://github.com/souldreamer/string-template-parser.git", 22 | "main": "./dist/string-template-parser.js", 23 | "author": "Ionut Costica ", 24 | "license": "MIT", 25 | "scripts": { 26 | "prepare": "webpack --debug --clean; webpack -p", 27 | "test": "tsc && nyc ava" 28 | }, 29 | "types": "dist/index.d.ts", 30 | "keywords": ["template string", "string parser", "template string parser", "angular string parser", "string variables", "pipes"], 31 | "devDependencies": { 32 | "@types/node": "^8.0.28", 33 | "ava": "^0.22.0", 34 | "del": "^3.0.0", 35 | "delete-empty": "^1.0.1", 36 | "dts-bundle": "^0.7.3", 37 | "nyc": "^11.2.1", 38 | "ts-loader": "^2.3.7", 39 | "typescript": "^2.5.2", 40 | "webpack": "^3.6.0", 41 | "webpack-node-externals": "^1.6.0", 42 | "webpack-progress-plugin": "^1.1.0", 43 | "yargs": "^8.0.2" 44 | }, 45 | "dependencies": { 46 | }, 47 | "ava": { 48 | "files": [ 49 | "tests/*.js" 50 | ], 51 | "concurrency": 5, 52 | "failFast": true, 53 | "tap": false, 54 | "powerAssert": false, 55 | "babel": "inherit" 56 | }, 57 | "nyc": { 58 | "reporter": [ 59 | "text" 60 | ], 61 | "cache": true, 62 | "check-coverage": true 63 | } 64 | } 65 | 66 | yarn manifest: 67 | No manifest 68 | 69 | Lockfile: 70 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 71 | # yarn lockfile v1 72 | 73 | 74 | "@types/node": 75 | version "6.0.46" 76 | resolved "https://registry.yarnpkg.com/@types/node/-/node-6.0.46.tgz#8d9e48572831f05b11cc4c793754d43437219d62" 77 | 78 | Base64@~0.2.0: 79 | version "0.2.1" 80 | resolved "https://registry.yarnpkg.com/Base64/-/Base64-0.2.1.tgz#ba3a4230708e186705065e66babdd4c35cf60028" 81 | 82 | abbrev@1: 83 | version "1.0.9" 84 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" 85 | 86 | acorn@^3.0.0: 87 | version "3.3.0" 88 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 89 | 90 | align-text@^0.1.1, align-text@^0.1.3: 91 | version "0.1.4" 92 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 93 | dependencies: 94 | kind-of "^3.0.2" 95 | longest "^1.0.1" 96 | repeat-string "^1.5.2" 97 | 98 | amdefine@>=0.0.4: 99 | version "1.0.1" 100 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 101 | 102 | ansi-align@^1.1.0: 103 | version "1.1.0" 104 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-1.1.0.tgz#2f0c1658829739add5ebb15e6b0c6e3423f016ba" 105 | dependencies: 106 | string-width "^1.0.1" 107 | 108 | ansi-escapes@^1.1.0: 109 | version "1.4.0" 110 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 111 | 112 | ansi-regex@^2.0.0: 113 | version "2.0.0" 114 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.0.0.tgz#c5061b6e0ef8a81775e50f5d66151bf6bf371107" 115 | 116 | ansi-styles@^2.1.0, ansi-styles@^2.2.1: 117 | version "2.2.1" 118 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 119 | 120 | ansi-styles@^3.1.0: 121 | version "3.2.0" 122 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 123 | dependencies: 124 | color-convert "^1.9.0" 125 | 126 | ansi-styles@~1.0.0: 127 | version "1.0.0" 128 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-1.0.0.tgz#cb102df1c56f5123eab8b67cd7b98027a0279178" 129 | 130 | anymatch@^1.3.0: 131 | version "1.3.0" 132 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 133 | dependencies: 134 | arrify "^1.0.0" 135 | micromatch "^2.1.5" 136 | 137 | append-transform@^0.3.0: 138 | version "0.3.0" 139 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.3.0.tgz#d6933ce4a85f09445d9ccc4cc119051b7381a813" 140 | 141 | aproba@^1.0.3: 142 | version "1.0.4" 143 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.0.4.tgz#2713680775e7614c8ba186c065d4e2e52d1072c0" 144 | 145 | archy@^1.0.0: 146 | version "1.0.0" 147 | resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" 148 | 149 | are-we-there-yet@~1.1.2: 150 | version "1.1.2" 151 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 152 | dependencies: 153 | delegates "^1.0.0" 154 | readable-stream "^2.0.0 || ^1.1.13" 155 | 156 | arr-diff@^2.0.0: 157 | version "2.0.0" 158 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 159 | dependencies: 160 | arr-flatten "^1.0.1" 161 | 162 | arr-exclude@^1.0.0: 163 | version "1.0.0" 164 | resolved "https://registry.yarnpkg.com/arr-exclude/-/arr-exclude-1.0.0.tgz#dfc7c2e552a270723ccda04cf3128c8cbfe5c631" 165 | 166 | arr-flatten@^1.0.1: 167 | version "1.0.1" 168 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 169 | 170 | arr-union@^3.1.0: 171 | version "3.1.0" 172 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 173 | 174 | array-differ@^1.0.0: 175 | version "1.0.0" 176 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" 177 | 178 | array-find-index@^1.0.1: 179 | version "1.0.2" 180 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 181 | 182 | array-union@^1.0.1: 183 | version "1.0.2" 184 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 185 | dependencies: 186 | array-uniq "^1.0.1" 187 | 188 | array-uniq@^1.0.1, array-uniq@^1.0.2: 189 | version "1.0.3" 190 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 191 | 192 | array-unique@^0.2.1: 193 | version "0.2.1" 194 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 195 | 196 | arrify@^1.0.0, arrify@^1.0.1: 197 | version "1.0.1" 198 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 199 | 200 | asn1@~0.2.3: 201 | version "0.2.3" 202 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 203 | 204 | assert-plus@^0.2.0: 205 | version "0.2.0" 206 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 207 | 208 | assert-plus@^1.0.0: 209 | version "1.0.0" 210 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 211 | 212 | assert@^1.1.1: 213 | version "1.4.1" 214 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 215 | dependencies: 216 | util "0.10.3" 217 | 218 | async-array-reduce@^0.2.0: 219 | version "0.2.0" 220 | resolved "https://registry.yarnpkg.com/async-array-reduce/-/async-array-reduce-0.2.0.tgz#743d91238cf71e79e6d59e86ad080f6c437a5bd6" 221 | 222 | async-each@^1.0.0: 223 | version "1.0.1" 224 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 225 | 226 | async@^0.9.0: 227 | version "0.9.2" 228 | resolved "https://registry.yarnpkg.com/async/-/async-0.9.2.tgz#aea74d5e61c1f899613bf64bda66d4c78f2fd17d" 229 | 230 | async@^1.3.0, async@^1.4.0, async@^1.4.2, async@^1.5.0, async@^1.5.2: 231 | version "1.5.2" 232 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 233 | 234 | async@~0.2.6: 235 | version "0.2.10" 236 | resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1" 237 | 238 | asynckit@^0.4.0: 239 | version "0.4.0" 240 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 241 | 242 | ava: 243 | version "0.16.0" 244 | resolved "https://registry.yarnpkg.com/ava/-/ava-0.16.0.tgz#07d7e06c627820115a84d7ee346f0bb165730454" 245 | dependencies: 246 | arr-flatten "^1.0.1" 247 | array-union "^1.0.1" 248 | array-uniq "^1.0.2" 249 | arrify "^1.0.0" 250 | ava-files "^0.1.1" 251 | ava-init "^0.1.0" 252 | babel-code-frame "^6.7.5" 253 | babel-core "^6.3.21" 254 | babel-plugin-ava-throws-helper "^0.1.0" 255 | babel-plugin-detective "^2.0.0" 256 | babel-plugin-espower "^2.2.0" 257 | babel-plugin-transform-runtime "^6.3.13" 258 | babel-preset-es2015 "^6.3.13" 259 | babel-preset-stage-2 "^6.3.13" 260 | babel-runtime "^6.3.19" 261 | bluebird "^3.0.0" 262 | caching-transform "^1.0.0" 263 | chalk "^1.0.0" 264 | chokidar "^1.4.2" 265 | clean-yaml-object "^0.1.0" 266 | cli-cursor "^1.0.2" 267 | cli-spinners "^0.1.2" 268 | cli-truncate "^0.2.0" 269 | co-with-promise "^4.6.0" 270 | common-path-prefix "^1.0.0" 271 | convert-source-map "^1.2.0" 272 | core-assert "^0.2.0" 273 | currently-unhandled "^0.4.1" 274 | debug "^2.2.0" 275 | empower-core "^0.6.1" 276 | figures "^1.4.0" 277 | find-cache-dir "^0.1.1" 278 | fn-name "^2.0.0" 279 | has-flag "^2.0.0" 280 | ignore-by-default "^1.0.0" 281 | is-ci "^1.0.7" 282 | is-generator-fn "^1.0.0" 283 | is-obj "^1.0.0" 284 | is-observable "^0.2.0" 285 | is-promise "^2.1.0" 286 | last-line-stream "^1.0.0" 287 | lodash.debounce "^4.0.3" 288 | lodash.difference "^4.3.0" 289 | loud-rejection "^1.2.0" 290 | matcher "^0.1.1" 291 | max-timeout "^1.0.0" 292 | md5-hex "^1.2.0" 293 | meow "^3.7.0" 294 | ms "^0.7.1" 295 | not-so-shallow "^0.1.3" 296 | object-assign "^4.0.1" 297 | observable-to-promise "^0.4.0" 298 | option-chain "^0.1.0" 299 | package-hash "^1.1.0" 300 | pkg-conf "^1.0.1" 301 | plur "^2.0.0" 302 | power-assert-context-formatter "^1.0.4" 303 | power-assert-renderer-assertion "^1.0.1" 304 | power-assert-renderer-succinct "^1.0.1" 305 | pretty-ms "^2.0.0" 306 | repeating "^2.0.0" 307 | require-precompiled "^0.1.0" 308 | resolve-cwd "^1.0.0" 309 | set-immediate-shim "^1.0.1" 310 | source-map-support "^0.4.0" 311 | stack-utils "^0.4.0" 312 | strip-ansi "^3.0.1" 313 | strip-bom "^2.0.0" 314 | time-require "^0.1.2" 315 | unique-temp-dir "^1.0.0" 316 | update-notifier "^1.0.0" 317 | 318 | ava-files@^0.1.1: 319 | version "0.1.1" 320 | resolved "https://registry.yarnpkg.com/ava-files/-/ava-files-0.1.1.tgz#18abb6f4b87029c32fc35f2053fecd3a55f1d2b0" 321 | dependencies: 322 | arr-flatten "^1.0.1" 323 | bluebird "^3.4.1" 324 | globby "^5.0.0" 325 | ignore-by-default "^1.0.1" 326 | multimatch "^2.1.0" 327 | slash "^1.0.0" 328 | 329 | ava-init@^0.1.0: 330 | version "0.1.6" 331 | resolved "https://registry.yarnpkg.com/ava-init/-/ava-init-0.1.6.tgz#ef19ed0b24b6bf359dad6fbadf1a05d836395c91" 332 | dependencies: 333 | arr-exclude "^1.0.0" 334 | cross-spawn "^4.0.0" 335 | pinkie-promise "^2.0.0" 336 | read-pkg-up "^1.0.1" 337 | the-argv "^1.0.0" 338 | write-pkg "^1.0.0" 339 | 340 | aws-sign2@~0.6.0: 341 | version "0.6.0" 342 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 343 | 344 | aws4@^1.2.1: 345 | version "1.5.0" 346 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.5.0.tgz#0a29ffb79c31c9e712eeb087e8e7a64b4a56d755" 347 | 348 | babel-code-frame@^6.16.0, babel-code-frame@^6.7.5: 349 | version "6.16.0" 350 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.16.0.tgz#f90e60da0862909d3ce098733b5d3987c97cb8de" 351 | dependencies: 352 | chalk "^1.1.0" 353 | esutils "^2.0.2" 354 | js-tokens "^2.0.0" 355 | 356 | babel-core@^6.18.0, babel-core@^6.3.21: 357 | version "6.18.2" 358 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.18.2.tgz#d8bb14dd6986fa4f3566a26ceda3964fa0e04e5b" 359 | dependencies: 360 | babel-code-frame "^6.16.0" 361 | babel-generator "^6.18.0" 362 | babel-helpers "^6.16.0" 363 | babel-messages "^6.8.0" 364 | babel-register "^6.18.0" 365 | babel-runtime "^6.9.1" 366 | babel-template "^6.16.0" 367 | babel-traverse "^6.18.0" 368 | babel-types "^6.18.0" 369 | babylon "^6.11.0" 370 | convert-source-map "^1.1.0" 371 | debug "^2.1.1" 372 | json5 "^0.5.0" 373 | lodash "^4.2.0" 374 | minimatch "^3.0.2" 375 | path-is-absolute "^1.0.0" 376 | private "^0.1.6" 377 | slash "^1.0.0" 378 | source-map "^0.5.0" 379 | 380 | babel-generator@^6.1.0, babel-generator@^6.18.0: 381 | version "6.18.0" 382 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.18.0.tgz#e4f104cb3063996d9850556a45aae4a022060a07" 383 | dependencies: 384 | babel-messages "^6.8.0" 385 | babel-runtime "^6.9.0" 386 | babel-types "^6.18.0" 387 | detect-indent "^4.0.0" 388 | jsesc "^1.3.0" 389 | lodash "^4.2.0" 390 | source-map "^0.5.0" 391 | 392 | babel-helper-bindify-decorators@^6.18.0: 393 | version "6.18.0" 394 | resolved "https://registry.yarnpkg.com/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.18.0.tgz#fc00c573676a6e702fffa00019580892ec8780a5" 395 | dependencies: 396 | babel-runtime "^6.0.0" 397 | babel-traverse "^6.18.0" 398 | babel-types "^6.18.0" 399 | 400 | babel-helper-builder-binary-assignment-operator-visitor@^6.8.0: 401 | version "6.18.0" 402 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.18.0.tgz#8ae814989f7a53682152e3401a04fabd0bb333a6" 403 | dependencies: 404 | babel-helper-explode-assignable-expression "^6.18.0" 405 | babel-runtime "^6.0.0" 406 | babel-types "^6.18.0" 407 | 408 | babel-helper-call-delegate@^6.18.0: 409 | version "6.18.0" 410 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.18.0.tgz#05b14aafa430884b034097ef29e9f067ea4133bd" 411 | dependencies: 412 | babel-helper-hoist-variables "^6.18.0" 413 | babel-runtime "^6.0.0" 414 | babel-traverse "^6.18.0" 415 | babel-types "^6.18.0" 416 | 417 | babel-helper-define-map@^6.18.0, babel-helper-define-map@^6.8.0: 418 | version "6.18.0" 419 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.18.0.tgz#8d6c85dc7fbb4c19be3de40474d18e97c3676ec2" 420 | dependencies: 421 | babel-helper-function-name "^6.18.0" 422 | babel-runtime "^6.9.0" 423 | babel-types "^6.18.0" 424 | lodash "^4.2.0" 425 | 426 | babel-helper-explode-assignable-expression@^6.18.0: 427 | version "6.18.0" 428 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.18.0.tgz#14b8e8c2d03ad735d4b20f1840b24cd1f65239fe" 429 | dependencies: 430 | babel-runtime "^6.0.0" 431 | babel-traverse "^6.18.0" 432 | babel-types "^6.18.0" 433 | 434 | babel-helper-explode-class@^6.8.0: 435 | version "6.18.0" 436 | resolved "https://registry.yarnpkg.com/babel-helper-explode-class/-/babel-helper-explode-class-6.18.0.tgz#c44f76f4fa23b9c5d607cbac5d4115e7a76f62cb" 437 | dependencies: 438 | babel-helper-bindify-decorators "^6.18.0" 439 | babel-runtime "^6.0.0" 440 | babel-traverse "^6.18.0" 441 | babel-types "^6.18.0" 442 | 443 | babel-helper-function-name@^6.18.0, babel-helper-function-name@^6.8.0: 444 | version "6.18.0" 445 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.18.0.tgz#68ec71aeba1f3e28b2a6f0730190b754a9bf30e6" 446 | dependencies: 447 | babel-helper-get-function-arity "^6.18.0" 448 | babel-runtime "^6.0.0" 449 | babel-template "^6.8.0" 450 | babel-traverse "^6.18.0" 451 | babel-types "^6.18.0" 452 | 453 | babel-helper-get-function-arity@^6.18.0: 454 | version "6.18.0" 455 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.18.0.tgz#a5b19695fd3f9cdfc328398b47dafcd7094f9f24" 456 | dependencies: 457 | babel-runtime "^6.0.0" 458 | babel-types "^6.18.0" 459 | 460 | babel-helper-hoist-variables@^6.18.0: 461 | version "6.18.0" 462 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.18.0.tgz#a835b5ab8b46d6de9babefae4d98ea41e866b82a" 463 | dependencies: 464 | babel-runtime "^6.0.0" 465 | babel-types "^6.18.0" 466 | 467 | babel-helper-optimise-call-expression@^6.18.0: 468 | version "6.18.0" 469 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.18.0.tgz#9261d0299ee1a4f08a6dd28b7b7c777348fd8f0f" 470 | dependencies: 471 | babel-runtime "^6.0.0" 472 | babel-types "^6.18.0" 473 | 474 | babel-helper-regex@^6.8.0: 475 | version "6.18.0" 476 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.18.0.tgz#ae0ebfd77de86cb2f1af258e2cc20b5fe893ecc6" 477 | dependencies: 478 | babel-runtime "^6.9.0" 479 | babel-types "^6.18.0" 480 | lodash "^4.2.0" 481 | 482 | babel-helper-remap-async-to-generator@^6.16.0, babel-helper-remap-async-to-generator@^6.16.2: 483 | version "6.18.0" 484 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.18.0.tgz#336cdf3cab650bb191b02fc16a3708e7be7f9ce5" 485 | dependencies: 486 | babel-helper-function-name "^6.18.0" 487 | babel-runtime "^6.0.0" 488 | babel-template "^6.16.0" 489 | babel-traverse "^6.18.0" 490 | babel-types "^6.18.0" 491 | 492 | babel-helper-replace-supers@^6.18.0, babel-helper-replace-supers@^6.8.0: 493 | version "6.18.0" 494 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.18.0.tgz#28ec69877be4144dbd64f4cc3a337e89f29a924e" 495 | dependencies: 496 | babel-helper-optimise-call-expression "^6.18.0" 497 | babel-messages "^6.8.0" 498 | babel-runtime "^6.0.0" 499 | babel-template "^6.16.0" 500 | babel-traverse "^6.18.0" 501 | babel-types "^6.18.0" 502 | 503 | babel-helpers@^6.16.0: 504 | version "6.16.0" 505 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.16.0.tgz#1095ec10d99279460553e67eb3eee9973d3867e3" 506 | dependencies: 507 | babel-runtime "^6.0.0" 508 | babel-template "^6.16.0" 509 | 510 | babel-messages@^6.8.0: 511 | version "6.8.0" 512 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.8.0.tgz#bf504736ca967e6d65ef0adb5a2a5f947c8e0eb9" 513 | dependencies: 514 | babel-runtime "^6.0.0" 515 | 516 | babel-plugin-ava-throws-helper@^0.1.0: 517 | version "0.1.0" 518 | resolved "https://registry.yarnpkg.com/babel-plugin-ava-throws-helper/-/babel-plugin-ava-throws-helper-0.1.0.tgz#951107708a12208026bf8ca4cef18a87bc9b0cfe" 519 | dependencies: 520 | babel-template "^6.7.0" 521 | babel-types "^6.7.2" 522 | 523 | babel-plugin-check-es2015-constants@^6.3.13: 524 | version "6.8.0" 525 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.8.0.tgz#dbf024c32ed37bfda8dee1e76da02386a8d26fe7" 526 | dependencies: 527 | babel-runtime "^6.0.0" 528 | 529 | babel-plugin-detective@^2.0.0: 530 | version "2.0.0" 531 | resolved "https://registry.yarnpkg.com/babel-plugin-detective/-/babel-plugin-detective-2.0.0.tgz#6e642e83c22a335279754ebe2d754d2635f49f13" 532 | 533 | babel-plugin-espower@^2.2.0: 534 | version "2.3.1" 535 | resolved "https://registry.yarnpkg.com/babel-plugin-espower/-/babel-plugin-espower-2.3.1.tgz#d15e904bc9949b14ac233b7965c2a5dc7a19a6a9" 536 | dependencies: 537 | babel-generator "^6.1.0" 538 | babylon "^6.1.0" 539 | call-matcher "^1.0.0" 540 | core-js "^2.0.0" 541 | espower-location-detector "^0.1.1" 542 | espurify "^1.6.0" 543 | estraverse "^4.1.1" 544 | 545 | babel-plugin-syntax-async-functions@^6.8.0: 546 | version "6.13.0" 547 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 548 | 549 | babel-plugin-syntax-async-generators@^6.5.0: 550 | version "6.13.0" 551 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a" 552 | 553 | babel-plugin-syntax-class-properties@^6.8.0: 554 | version "6.13.0" 555 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 556 | 557 | babel-plugin-syntax-decorators@^6.13.0: 558 | version "6.13.0" 559 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b" 560 | 561 | babel-plugin-syntax-dynamic-import@^6.18.0: 562 | version "6.18.0" 563 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da" 564 | 565 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 566 | version "6.13.0" 567 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 568 | 569 | babel-plugin-syntax-object-rest-spread@^6.8.0: 570 | version "6.13.0" 571 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 572 | 573 | babel-plugin-syntax-trailing-function-commas@^6.3.13: 574 | version "6.13.0" 575 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.13.0.tgz#2b84b7d53dd744f94ff1fad7669406274b23f541" 576 | 577 | babel-plugin-transform-async-generator-functions@^6.17.0: 578 | version "6.17.0" 579 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.17.0.tgz#d0b5a2b2f0940f2b245fa20a00519ed7bc6cae54" 580 | dependencies: 581 | babel-helper-remap-async-to-generator "^6.16.2" 582 | babel-plugin-syntax-async-generators "^6.5.0" 583 | babel-runtime "^6.0.0" 584 | 585 | babel-plugin-transform-async-to-generator@^6.16.0: 586 | version "6.16.0" 587 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.16.0.tgz#19ec36cb1486b59f9f468adfa42ce13908ca2999" 588 | dependencies: 589 | babel-helper-remap-async-to-generator "^6.16.0" 590 | babel-plugin-syntax-async-functions "^6.8.0" 591 | babel-runtime "^6.0.0" 592 | 593 | babel-plugin-transform-class-properties@^6.18.0: 594 | version "6.18.0" 595 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.18.0.tgz#bc1266a39d4c8726e0bd7b15c56235177e6ede57" 596 | dependencies: 597 | babel-helper-function-name "^6.18.0" 598 | babel-plugin-syntax-class-properties "^6.8.0" 599 | babel-runtime "^6.9.1" 600 | 601 | babel-plugin-transform-decorators@^6.13.0: 602 | version "6.13.0" 603 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.13.0.tgz#82d65c1470ae83e2d13eebecb0a1c2476d62da9d" 604 | dependencies: 605 | babel-helper-define-map "^6.8.0" 606 | babel-helper-explode-class "^6.8.0" 607 | babel-plugin-syntax-decorators "^6.13.0" 608 | babel-runtime "^6.0.0" 609 | babel-template "^6.8.0" 610 | babel-types "^6.13.0" 611 | 612 | babel-plugin-transform-es2015-arrow-functions@^6.3.13: 613 | version "6.8.0" 614 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.8.0.tgz#5b63afc3181bdc9a8c4d481b5a4f3f7d7fef3d9d" 615 | dependencies: 616 | babel-runtime "^6.0.0" 617 | 618 | babel-plugin-transform-es2015-block-scoped-functions@^6.3.13: 619 | version "6.8.0" 620 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.8.0.tgz#ed95d629c4b5a71ae29682b998f70d9833eb366d" 621 | dependencies: 622 | babel-runtime "^6.0.0" 623 | 624 | babel-plugin-transform-es2015-block-scoping@^6.18.0: 625 | version "6.18.0" 626 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.18.0.tgz#3bfdcfec318d46df22525cdea88f1978813653af" 627 | dependencies: 628 | babel-runtime "^6.9.0" 629 | babel-template "^6.15.0" 630 | babel-traverse "^6.18.0" 631 | babel-types "^6.18.0" 632 | lodash "^4.2.0" 633 | 634 | babel-plugin-transform-es2015-classes@^6.18.0: 635 | version "6.18.0" 636 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.18.0.tgz#ffe7a17321bf83e494dcda0ae3fc72df48ffd1d9" 637 | dependencies: 638 | babel-helper-define-map "^6.18.0" 639 | babel-helper-function-name "^6.18.0" 640 | babel-helper-optimise-call-expression "^6.18.0" 641 | babel-helper-replace-supers "^6.18.0" 642 | babel-messages "^6.8.0" 643 | babel-runtime "^6.9.0" 644 | babel-template "^6.14.0" 645 | babel-traverse "^6.18.0" 646 | babel-types "^6.18.0" 647 | 648 | babel-plugin-transform-es2015-computed-properties@^6.3.13: 649 | version "6.8.0" 650 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.8.0.tgz#f51010fd61b3bd7b6b60a5fdfd307bb7a5279870" 651 | dependencies: 652 | babel-helper-define-map "^6.8.0" 653 | babel-runtime "^6.0.0" 654 | babel-template "^6.8.0" 655 | 656 | babel-plugin-transform-es2015-destructuring@^6.18.0: 657 | version "6.18.0" 658 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.18.0.tgz#a08fb89415ab82058649558bedb7bf8dafa76ba5" 659 | dependencies: 660 | babel-runtime "^6.9.0" 661 | 662 | babel-plugin-transform-es2015-duplicate-keys@^6.6.0: 663 | version "6.8.0" 664 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.8.0.tgz#fd8f7f7171fc108cc1c70c3164b9f15a81c25f7d" 665 | dependencies: 666 | babel-runtime "^6.0.0" 667 | babel-types "^6.8.0" 668 | 669 | babel-plugin-transform-es2015-for-of@^6.18.0: 670 | version "6.18.0" 671 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.18.0.tgz#4c517504db64bf8cfc119a6b8f177211f2028a70" 672 | dependencies: 673 | babel-runtime "^6.0.0" 674 | 675 | babel-plugin-transform-es2015-function-name@^6.9.0: 676 | version "6.9.0" 677 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.9.0.tgz#8c135b17dbd064e5bba56ec511baaee2fca82719" 678 | dependencies: 679 | babel-helper-function-name "^6.8.0" 680 | babel-runtime "^6.9.0" 681 | babel-types "^6.9.0" 682 | 683 | babel-plugin-transform-es2015-literals@^6.3.13: 684 | version "6.8.0" 685 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.8.0.tgz#50aa2e5c7958fc2ab25d74ec117e0cc98f046468" 686 | dependencies: 687 | babel-runtime "^6.0.0" 688 | 689 | babel-plugin-transform-es2015-modules-amd@^6.18.0: 690 | version "6.18.0" 691 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.18.0.tgz#49a054cbb762bdf9ae2d8a807076cfade6141e40" 692 | dependencies: 693 | babel-plugin-transform-es2015-modules-commonjs "^6.18.0" 694 | babel-runtime "^6.0.0" 695 | babel-template "^6.8.0" 696 | 697 | babel-plugin-transform-es2015-modules-commonjs@^6.18.0: 698 | version "6.18.0" 699 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.18.0.tgz#c15ae5bb11b32a0abdcc98a5837baa4ee8d67bcc" 700 | dependencies: 701 | babel-plugin-transform-strict-mode "^6.18.0" 702 | babel-runtime "^6.0.0" 703 | babel-template "^6.16.0" 704 | babel-types "^6.18.0" 705 | 706 | babel-plugin-transform-es2015-modules-systemjs@^6.18.0: 707 | version "6.18.0" 708 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.18.0.tgz#f09294707163edae4d3b3e8bfacecd01d920b7ad" 709 | dependencies: 710 | babel-helper-hoist-variables "^6.18.0" 711 | babel-runtime "^6.11.6" 712 | babel-template "^6.14.0" 713 | 714 | babel-plugin-transform-es2015-modules-umd@^6.18.0: 715 | version "6.18.0" 716 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.18.0.tgz#23351770ece5c1f8e83ed67cb1d7992884491e50" 717 | dependencies: 718 | babel-plugin-transform-es2015-modules-amd "^6.18.0" 719 | babel-runtime "^6.0.0" 720 | babel-template "^6.8.0" 721 | 722 | babel-plugin-transform-es2015-object-super@^6.3.13: 723 | version "6.8.0" 724 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.8.0.tgz#1b858740a5a4400887c23dcff6f4d56eea4a24c5" 725 | dependencies: 726 | babel-helper-replace-supers "^6.8.0" 727 | babel-runtime "^6.0.0" 728 | 729 | babel-plugin-transform-es2015-parameters@^6.18.0: 730 | version "6.18.0" 731 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.18.0.tgz#9b2cfe238c549f1635ba27fc1daa858be70608b1" 732 | dependencies: 733 | babel-helper-call-delegate "^6.18.0" 734 | babel-helper-get-function-arity "^6.18.0" 735 | babel-runtime "^6.9.0" 736 | babel-template "^6.16.0" 737 | babel-traverse "^6.18.0" 738 | babel-types "^6.18.0" 739 | 740 | babel-plugin-transform-es2015-shorthand-properties@^6.18.0: 741 | version "6.18.0" 742 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.18.0.tgz#e2ede3b7df47bf980151926534d1dd0cbea58f43" 743 | dependencies: 744 | babel-runtime "^6.0.0" 745 | babel-types "^6.18.0" 746 | 747 | babel-plugin-transform-es2015-spread@^6.3.13: 748 | version "6.8.0" 749 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.8.0.tgz#0217f737e3b821fa5a669f187c6ed59205f05e9c" 750 | dependencies: 751 | babel-runtime "^6.0.0" 752 | 753 | babel-plugin-transform-es2015-sticky-regex@^6.3.13: 754 | version "6.8.0" 755 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.8.0.tgz#e73d300a440a35d5c64f5c2a344dc236e3df47be" 756 | dependencies: 757 | babel-helper-regex "^6.8.0" 758 | babel-runtime "^6.0.0" 759 | babel-types "^6.8.0" 760 | 761 | babel-plugin-transform-es2015-template-literals@^6.6.0: 762 | version "6.8.0" 763 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.8.0.tgz#86eb876d0a2c635da4ec048b4f7de9dfc897e66b" 764 | dependencies: 765 | babel-runtime "^6.0.0" 766 | 767 | babel-plugin-transform-es2015-typeof-symbol@^6.18.0: 768 | version "6.18.0" 769 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.18.0.tgz#0b14c48629c90ff47a0650077f6aa699bee35798" 770 | dependencies: 771 | babel-runtime "^6.0.0" 772 | 773 | babel-plugin-transform-es2015-unicode-regex@^6.3.13: 774 | version "6.11.0" 775 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.11.0.tgz#6298ceabaad88d50a3f4f392d8de997260f6ef2c" 776 | dependencies: 777 | babel-helper-regex "^6.8.0" 778 | babel-runtime "^6.0.0" 779 | regexpu-core "^2.0.0" 780 | 781 | babel-plugin-transform-exponentiation-operator@^6.3.13: 782 | version "6.8.0" 783 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.8.0.tgz#db25742e9339eade676ca9acec46f955599a68a4" 784 | dependencies: 785 | babel-helper-builder-binary-assignment-operator-visitor "^6.8.0" 786 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 787 | babel-runtime "^6.0.0" 788 | 789 | babel-plugin-transform-object-rest-spread@^6.16.0: 790 | version "6.16.0" 791 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.16.0.tgz#db441d56fffc1999052fdebe2e2f25ebd28e36a9" 792 | dependencies: 793 | babel-plugin-syntax-object-rest-spread "^6.8.0" 794 | babel-runtime "^6.0.0" 795 | 796 | babel-plugin-transform-regenerator@^6.16.0: 797 | version "6.16.1" 798 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.16.1.tgz#a75de6b048a14154aae14b0122756c5bed392f59" 799 | dependencies: 800 | babel-runtime "^6.9.0" 801 | babel-types "^6.16.0" 802 | private "~0.1.5" 803 | 804 | babel-plugin-transform-runtime@^6.3.13: 805 | version "6.15.0" 806 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.15.0.tgz#3d75b4d949ad81af157570273846fb59aeb0d57c" 807 | dependencies: 808 | babel-runtime "^6.9.0" 809 | 810 | babel-plugin-transform-strict-mode@^6.18.0: 811 | version "6.18.0" 812 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.18.0.tgz#df7cf2991fe046f44163dcd110d5ca43bc652b9d" 813 | dependencies: 814 | babel-runtime "^6.0.0" 815 | babel-types "^6.18.0" 816 | 817 | babel-preset-es2015@^6.3.13: 818 | version "6.18.0" 819 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.18.0.tgz#b8c70df84ec948c43dcf2bf770e988eb7da88312" 820 | dependencies: 821 | babel-plugin-check-es2015-constants "^6.3.13" 822 | babel-plugin-transform-es2015-arrow-functions "^6.3.13" 823 | babel-plugin-transform-es2015-block-scoped-functions "^6.3.13" 824 | babel-plugin-transform-es2015-block-scoping "^6.18.0" 825 | babel-plugin-transform-es2015-classes "^6.18.0" 826 | babel-plugin-transform-es2015-computed-properties "^6.3.13" 827 | babel-plugin-transform-es2015-destructuring "^6.18.0" 828 | babel-plugin-transform-es2015-duplicate-keys "^6.6.0" 829 | babel-plugin-transform-es2015-for-of "^6.18.0" 830 | babel-plugin-transform-es2015-function-name "^6.9.0" 831 | babel-plugin-transform-es2015-literals "^6.3.13" 832 | babel-plugin-transform-es2015-modules-amd "^6.18.0" 833 | babel-plugin-transform-es2015-modules-commonjs "^6.18.0" 834 | babel-plugin-transform-es2015-modules-systemjs "^6.18.0" 835 | babel-plugin-transform-es2015-modules-umd "^6.18.0" 836 | babel-plugin-transform-es2015-object-super "^6.3.13" 837 | babel-plugin-transform-es2015-parameters "^6.18.0" 838 | babel-plugin-transform-es2015-shorthand-properties "^6.18.0" 839 | babel-plugin-transform-es2015-spread "^6.3.13" 840 | babel-plugin-transform-es2015-sticky-regex "^6.3.13" 841 | babel-plugin-transform-es2015-template-literals "^6.6.0" 842 | babel-plugin-transform-es2015-typeof-symbol "^6.18.0" 843 | babel-plugin-transform-es2015-unicode-regex "^6.3.13" 844 | babel-plugin-transform-regenerator "^6.16.0" 845 | 846 | babel-preset-stage-2@^6.3.13: 847 | version "6.18.0" 848 | resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.18.0.tgz#9eb7bf9a8e91c68260d5ba7500493caaada4b5b5" 849 | dependencies: 850 | babel-plugin-syntax-dynamic-import "^6.18.0" 851 | babel-plugin-transform-class-properties "^6.18.0" 852 | babel-plugin-transform-decorators "^6.13.0" 853 | babel-preset-stage-3 "^6.17.0" 854 | 855 | babel-preset-stage-3@^6.17.0: 856 | version "6.17.0" 857 | resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.17.0.tgz#b6638e46db6e91e3f889013d8ce143917c685e39" 858 | dependencies: 859 | babel-plugin-syntax-trailing-function-commas "^6.3.13" 860 | babel-plugin-transform-async-generator-functions "^6.17.0" 861 | babel-plugin-transform-async-to-generator "^6.16.0" 862 | babel-plugin-transform-exponentiation-operator "^6.3.13" 863 | babel-plugin-transform-object-rest-spread "^6.16.0" 864 | 865 | babel-register@^6.18.0: 866 | version "6.18.0" 867 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.18.0.tgz#892e2e03865078dd90ad2c715111ec4449b32a68" 868 | dependencies: 869 | babel-core "^6.18.0" 870 | babel-runtime "^6.11.6" 871 | core-js "^2.4.0" 872 | home-or-tmp "^2.0.0" 873 | lodash "^4.2.0" 874 | mkdirp "^0.5.1" 875 | source-map-support "^0.4.2" 876 | 877 | babel-runtime@^6.0.0, babel-runtime@^6.11.6, babel-runtime@^6.3.19, babel-runtime@^6.9.0, babel-runtime@^6.9.1: 878 | version "6.18.0" 879 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.18.0.tgz#0f4177ffd98492ef13b9f823e9994a02584c9078" 880 | dependencies: 881 | core-js "^2.4.0" 882 | regenerator-runtime "^0.9.5" 883 | 884 | babel-template@^6.14.0, babel-template@^6.15.0, babel-template@^6.16.0, babel-template@^6.7.0, babel-template@^6.8.0: 885 | version "6.16.0" 886 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.16.0.tgz#e149dd1a9f03a35f817ddbc4d0481988e7ebc8ca" 887 | dependencies: 888 | babel-runtime "^6.9.0" 889 | babel-traverse "^6.16.0" 890 | babel-types "^6.16.0" 891 | babylon "^6.11.0" 892 | lodash "^4.2.0" 893 | 894 | babel-traverse@^6.16.0, babel-traverse@^6.18.0: 895 | version "6.18.0" 896 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.18.0.tgz#5aeaa980baed2a07c8c47329cd90c3b90c80f05e" 897 | dependencies: 898 | babel-code-frame "^6.16.0" 899 | babel-messages "^6.8.0" 900 | babel-runtime "^6.9.0" 901 | babel-types "^6.18.0" 902 | babylon "^6.11.0" 903 | debug "^2.2.0" 904 | globals "^9.0.0" 905 | invariant "^2.2.0" 906 | lodash "^4.2.0" 907 | 908 | babel-types@^6.13.0, babel-types@^6.16.0, babel-types@^6.18.0, babel-types@^6.7.2, babel-types@^6.8.0, babel-types@^6.9.0: 909 | version "6.18.0" 910 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.18.0.tgz#1f7d5a73474c59eb9151b2417bbff4e4fce7c3f8" 911 | dependencies: 912 | babel-runtime "^6.9.1" 913 | esutils "^2.0.2" 914 | lodash "^4.2.0" 915 | to-fast-properties "^1.0.1" 916 | 917 | babylon@^6.1.0, babylon@^6.11.0, babylon@^6.13.0: 918 | version "6.13.1" 919 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.13.1.tgz#adca350e088f0467647157652bafead6ddb8dfdb" 920 | 921 | balanced-match@^0.4.1: 922 | version "0.4.2" 923 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 924 | 925 | base64-js@^1.0.2: 926 | version "1.2.0" 927 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1" 928 | 929 | bcrypt-pbkdf@^1.0.0: 930 | version "1.0.0" 931 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.0.tgz#3ca76b85241c7170bf7d9703e7b9aa74630040d4" 932 | dependencies: 933 | tweetnacl "^0.14.3" 934 | 935 | big.js@^3.1.3: 936 | version "3.1.3" 937 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.1.3.tgz#4cada2193652eb3ca9ec8e55c9015669c9806978" 938 | 939 | binary-extensions@^1.0.0: 940 | version "1.7.0" 941 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.7.0.tgz#6c1610db163abfb34edfe42fa423343a1e01185d" 942 | 943 | block-stream@*: 944 | version "0.0.9" 945 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 946 | dependencies: 947 | inherits "~2.0.0" 948 | 949 | bluebird@^3.0.0, bluebird@^3.3.5, bluebird@^3.4.1: 950 | version "3.4.6" 951 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.4.6.tgz#01da8d821d87813d158967e743d5fe6c62cf8c0f" 952 | 953 | boom@2.x.x: 954 | version "2.10.1" 955 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 956 | dependencies: 957 | hoek "2.x.x" 958 | 959 | boxen@^0.6.0: 960 | version "0.6.0" 961 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-0.6.0.tgz#8364d4248ac34ff0ef1b2f2bf49a6c60ce0d81b6" 962 | dependencies: 963 | ansi-align "^1.1.0" 964 | camelcase "^2.1.0" 965 | chalk "^1.1.1" 966 | cli-boxes "^1.0.0" 967 | filled-array "^1.0.0" 968 | object-assign "^4.0.1" 969 | repeating "^2.0.0" 970 | string-width "^1.0.1" 971 | widest-line "^1.0.0" 972 | 973 | brace-expansion@^1.0.0: 974 | version "1.1.6" 975 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 976 | dependencies: 977 | balanced-match "^0.4.1" 978 | concat-map "0.0.1" 979 | 980 | braces@^1.8.2: 981 | version "1.8.5" 982 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 983 | dependencies: 984 | expand-range "^1.8.1" 985 | preserve "^0.2.0" 986 | repeat-element "^1.1.2" 987 | 988 | browserify-zlib@~0.1.4: 989 | version "0.1.4" 990 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d" 991 | dependencies: 992 | pako "~0.2.0" 993 | 994 | buf-compare@^1.0.0: 995 | version "1.0.1" 996 | resolved "https://registry.yarnpkg.com/buf-compare/-/buf-compare-1.0.1.tgz#fef28da8b8113a0a0db4430b0b6467b69730b34a" 997 | 998 | buffer-equals@^1.0.3: 999 | version "1.0.4" 1000 | resolved "https://registry.yarnpkg.com/buffer-equals/-/buffer-equals-1.0.4.tgz#0353b54fd07fd9564170671ae6f66b9cf10d27f5" 1001 | 1002 | buffer-shims@^1.0.0: 1003 | version "1.0.0" 1004 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 1005 | 1006 | buffer@^4.9.0: 1007 | version "4.9.1" 1008 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 1009 | dependencies: 1010 | base64-js "^1.0.2" 1011 | ieee754 "^1.1.4" 1012 | isarray "^1.0.0" 1013 | 1014 | builtin-modules@^1.0.0: 1015 | version "1.1.1" 1016 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 1017 | 1018 | caching-transform@^1.0.0: 1019 | version "1.0.1" 1020 | resolved "https://registry.yarnpkg.com/caching-transform/-/caching-transform-1.0.1.tgz#6dbdb2f20f8d8fbce79f3e94e9d1742dcdf5c0a1" 1021 | dependencies: 1022 | md5-hex "^1.2.0" 1023 | mkdirp "^0.5.1" 1024 | write-file-atomic "^1.1.4" 1025 | 1026 | call-matcher@^1.0.0: 1027 | version "1.0.0" 1028 | resolved "https://registry.yarnpkg.com/call-matcher/-/call-matcher-1.0.0.tgz#eafa31036dbfaa9c0d1716f12ddacfd9c69ef22f" 1029 | dependencies: 1030 | core-js "^2.0.0" 1031 | deep-equal "^1.0.0" 1032 | espurify "^1.6.0" 1033 | estraverse "^4.0.0" 1034 | 1035 | call-signature@0.0.2: 1036 | version "0.0.2" 1037 | resolved "https://registry.yarnpkg.com/call-signature/-/call-signature-0.0.2.tgz#a84abc825a55ef4cb2b028bd74e205a65b9a4996" 1038 | 1039 | camelcase-keys@^2.0.0: 1040 | version "2.1.0" 1041 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 1042 | dependencies: 1043 | camelcase "^2.0.0" 1044 | map-obj "^1.0.0" 1045 | 1046 | camelcase@^1.0.2: 1047 | version "1.2.1" 1048 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 1049 | 1050 | camelcase@^2.0.0, camelcase@^2.1.0: 1051 | version "2.1.1" 1052 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 1053 | 1054 | camelcase@^3.0.0: 1055 | version "3.0.0" 1056 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 1057 | 1058 | capture-stack-trace@^1.0.0: 1059 | version "1.0.0" 1060 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" 1061 | 1062 | caseless@~0.11.0: 1063 | version "0.11.0" 1064 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 1065 | 1066 | center-align@^0.1.1: 1067 | version "0.1.3" 1068 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 1069 | dependencies: 1070 | align-text "^0.1.3" 1071 | lazy-cache "^1.0.3" 1072 | 1073 | chalk@^0.4.0: 1074 | version "0.4.0" 1075 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-0.4.0.tgz#5199a3ddcd0c1efe23bc08c1b027b06176e0c64f" 1076 | dependencies: 1077 | ansi-styles "~1.0.0" 1078 | has-color "~0.1.0" 1079 | strip-ansi "~0.1.0" 1080 | 1081 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1: 1082 | version "1.1.3" 1083 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 1084 | dependencies: 1085 | ansi-styles "^2.2.1" 1086 | escape-string-regexp "^1.0.2" 1087 | has-ansi "^2.0.0" 1088 | strip-ansi "^3.0.0" 1089 | supports-color "^2.0.0" 1090 | 1091 | chalk@^2.0.1: 1092 | version "2.1.0" 1093 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.1.0.tgz#ac5becf14fa21b99c6c92ca7a7d7cfd5b17e743e" 1094 | dependencies: 1095 | ansi-styles "^3.1.0" 1096 | escape-string-regexp "^1.0.5" 1097 | supports-color "^4.0.0" 1098 | 1099 | chokidar@^1.0.0, chokidar@^1.4.2: 1100 | version "1.6.1" 1101 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 1102 | dependencies: 1103 | anymatch "^1.3.0" 1104 | async-each "^1.0.0" 1105 | glob-parent "^2.0.0" 1106 | inherits "^2.0.1" 1107 | is-binary-path "^1.0.0" 1108 | is-glob "^2.0.0" 1109 | path-is-absolute "^1.0.0" 1110 | readdirp "^2.0.0" 1111 | optionalDependencies: 1112 | fsevents "^1.0.0" 1113 | 1114 | ci-info@^1.0.0: 1115 | version "1.0.0" 1116 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 1117 | 1118 | clean-yaml-object@^0.1.0: 1119 | version "0.1.0" 1120 | resolved "https://registry.yarnpkg.com/clean-yaml-object/-/clean-yaml-object-0.1.0.tgz#63fb110dc2ce1a84dc21f6d9334876d010ae8b68" 1121 | 1122 | cli-boxes@^1.0.0: 1123 | version "1.0.0" 1124 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 1125 | 1126 | cli-cursor@^1.0.2: 1127 | version "1.0.2" 1128 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 1129 | dependencies: 1130 | restore-cursor "^1.0.1" 1131 | 1132 | cli-spinners@^0.1.2: 1133 | version "0.1.2" 1134 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-0.1.2.tgz#bb764d88e185fb9e1e6a2a1f19772318f605e31c" 1135 | 1136 | cli-truncate@^0.2.0: 1137 | version "0.2.1" 1138 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-0.2.1.tgz#9f15cfbb0705005369216c626ac7d05ab90dd574" 1139 | dependencies: 1140 | slice-ansi "0.0.4" 1141 | string-width "^1.0.1" 1142 | 1143 | cliui@^2.1.0: 1144 | version "2.1.0" 1145 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 1146 | dependencies: 1147 | center-align "^0.1.1" 1148 | right-align "^0.1.1" 1149 | wordwrap "0.0.2" 1150 | 1151 | cliui@^3.2.0: 1152 | version "3.2.0" 1153 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 1154 | dependencies: 1155 | string-width "^1.0.1" 1156 | strip-ansi "^3.0.1" 1157 | wrap-ansi "^2.0.0" 1158 | 1159 | clone@^1.0.2: 1160 | version "1.0.2" 1161 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" 1162 | 1163 | co-with-promise@^4.6.0: 1164 | version "4.6.0" 1165 | resolved "https://registry.yarnpkg.com/co-with-promise/-/co-with-promise-4.6.0.tgz#413e7db6f5893a60b942cf492c4bec93db415ab7" 1166 | dependencies: 1167 | pinkie-promise "^1.0.0" 1168 | 1169 | code-point-at@^1.0.0: 1170 | version "1.1.0" 1171 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1172 | 1173 | color-convert@^1.9.0: 1174 | version "1.9.0" 1175 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 1176 | dependencies: 1177 | color-name "^1.1.1" 1178 | 1179 | color-name@^1.1.1: 1180 | version "1.1.3" 1181 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 1182 | 1183 | combined-stream@^1.0.5, combined-stream@~1.0.5: 1184 | version "1.0.5" 1185 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 1186 | dependencies: 1187 | delayed-stream "~1.0.0" 1188 | 1189 | commander@^2.9.0: 1190 | version "2.9.0" 1191 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 1192 | dependencies: 1193 | graceful-readlink ">= 1.0.0" 1194 | 1195 | common-path-prefix@^1.0.0: 1196 | version "1.0.0" 1197 | resolved "https://registry.yarnpkg.com/common-path-prefix/-/common-path-prefix-1.0.0.tgz#cd52f6f0712e0baab97d6f9732874f22f47752c0" 1198 | 1199 | commondir@^1.0.1: 1200 | version "1.0.1" 1201 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 1202 | 1203 | concat-map@0.0.1: 1204 | version "0.0.1" 1205 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1206 | 1207 | configstore@^2.0.0: 1208 | version "2.1.0" 1209 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-2.1.0.tgz#737a3a7036e9886102aa6099e47bb33ab1aba1a1" 1210 | dependencies: 1211 | dot-prop "^3.0.0" 1212 | graceful-fs "^4.1.2" 1213 | mkdirp "^0.5.0" 1214 | object-assign "^4.0.1" 1215 | os-tmpdir "^1.0.0" 1216 | osenv "^0.1.0" 1217 | uuid "^2.0.1" 1218 | write-file-atomic "^1.1.2" 1219 | xdg-basedir "^2.0.0" 1220 | 1221 | console-browserify@^1.1.0: 1222 | version "1.1.0" 1223 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 1224 | dependencies: 1225 | date-now "^0.1.4" 1226 | 1227 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1228 | version "1.1.0" 1229 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1230 | 1231 | constants-browserify@0.0.1: 1232 | version "0.0.1" 1233 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-0.0.1.tgz#92577db527ba6c4cf0a4568d84bc031f441e21f2" 1234 | 1235 | convert-source-map@^1.1.0, convert-source-map@^1.2.0, convert-source-map@^1.3.0: 1236 | version "1.3.0" 1237 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.3.0.tgz#e9f3e9c6e2728efc2676696a70eb382f73106a67" 1238 | 1239 | core-assert@^0.2.0: 1240 | version "0.2.1" 1241 | resolved "https://registry.yarnpkg.com/core-assert/-/core-assert-0.2.1.tgz#f85e2cf9bfed28f773cc8b3fa5c5b69bdc02fe3f" 1242 | dependencies: 1243 | buf-compare "^1.0.0" 1244 | is-error "^2.2.0" 1245 | 1246 | core-js@^2.0.0, core-js@^2.4.0: 1247 | version "2.4.1" 1248 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 1249 | 1250 | core-util-is@~1.0.0: 1251 | version "1.0.2" 1252 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1253 | 1254 | create-error-class@^3.0.1: 1255 | version "3.0.2" 1256 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" 1257 | dependencies: 1258 | capture-stack-trace "^1.0.0" 1259 | 1260 | cross-spawn@^4, cross-spawn@^4.0.0: 1261 | version "4.0.2" 1262 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41" 1263 | dependencies: 1264 | lru-cache "^4.0.1" 1265 | which "^1.2.9" 1266 | 1267 | cryptiles@2.x.x: 1268 | version "2.0.5" 1269 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1270 | dependencies: 1271 | boom "2.x.x" 1272 | 1273 | crypto-browserify@~3.2.6: 1274 | version "3.2.8" 1275 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.2.8.tgz#b9b11dbe6d9651dd882a01e6cc467df718ecf189" 1276 | dependencies: 1277 | pbkdf2-compat "2.0.1" 1278 | ripemd160 "0.2.0" 1279 | sha.js "2.2.6" 1280 | 1281 | currently-unhandled@^0.4.1: 1282 | version "0.4.1" 1283 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 1284 | dependencies: 1285 | array-find-index "^1.0.1" 1286 | 1287 | dashdash@^1.12.0: 1288 | version "1.14.0" 1289 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.0.tgz#29e486c5418bf0f356034a993d51686a33e84141" 1290 | dependencies: 1291 | assert-plus "^1.0.0" 1292 | 1293 | date-now@^0.1.4: 1294 | version "0.1.4" 1295 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 1296 | 1297 | date-time@^0.1.1: 1298 | version "0.1.1" 1299 | resolved "https://registry.yarnpkg.com/date-time/-/date-time-0.1.1.tgz#ed2f6d93d9790ce2fd66d5b5ff3edd5bbcbf3b07" 1300 | 1301 | debug@^2.1.1, debug@^2.2.0: 1302 | version "2.3.0" 1303 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.3.0.tgz#3912dc55d7167fc3af17d2b85c13f93deaedaa43" 1304 | dependencies: 1305 | ms "0.7.2" 1306 | 1307 | debug@~2.2.0: 1308 | version "2.2.0" 1309 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 1310 | dependencies: 1311 | ms "0.7.1" 1312 | 1313 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: 1314 | version "1.2.0" 1315 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1316 | 1317 | deep-equal@^1.0.0: 1318 | version "1.0.1" 1319 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" 1320 | 1321 | deep-extend@~0.4.0: 1322 | version "0.4.1" 1323 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 1324 | 1325 | default-require-extensions@^1.0.0: 1326 | version "1.0.0" 1327 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 1328 | dependencies: 1329 | strip-bom "^2.0.0" 1330 | 1331 | define-properties@^1.0.2: 1332 | version "1.1.2" 1333 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 1334 | dependencies: 1335 | foreach "^2.0.5" 1336 | object-keys "^1.0.8" 1337 | 1338 | del: 1339 | version "2.2.2" 1340 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1341 | dependencies: 1342 | globby "^5.0.0" 1343 | is-path-cwd "^1.0.0" 1344 | is-path-in-cwd "^1.0.0" 1345 | object-assign "^4.0.1" 1346 | pify "^2.0.0" 1347 | pinkie-promise "^2.0.0" 1348 | rimraf "^2.2.8" 1349 | 1350 | delayed-stream@~1.0.0: 1351 | version "1.0.0" 1352 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1353 | 1354 | delegates@^1.0.0: 1355 | version "1.0.0" 1356 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1357 | 1358 | delete-empty: 1359 | version "0.1.3" 1360 | resolved "https://registry.yarnpkg.com/delete-empty/-/delete-empty-0.1.3.tgz#fc15231aac3fde24eb91899fd1ed8f2d344c2be1" 1361 | dependencies: 1362 | async "^1.5.0" 1363 | delete "^0.3.2" 1364 | lazy-cache "^2.0.1" 1365 | matched "^0.4.1" 1366 | 1367 | delete@^0.3.2: 1368 | version "0.3.2" 1369 | resolved "https://registry.yarnpkg.com/delete/-/delete-0.3.2.tgz#7cfecf5ef7dfb802fad27ab8f5be5ae546c5b79e" 1370 | dependencies: 1371 | async "^1.5.2" 1372 | bluebird "^3.3.5" 1373 | extend-shallow "^2.0.1" 1374 | lazy-cache "^1.0.4" 1375 | matched "^0.4.1" 1376 | rimraf "^2.5.2" 1377 | 1378 | detect-indent@^0.2.0: 1379 | version "0.2.0" 1380 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-0.2.0.tgz#042914498979ac2d9f3c73e4ff3e6877d3bc92b6" 1381 | dependencies: 1382 | get-stdin "^0.1.0" 1383 | minimist "^0.1.0" 1384 | 1385 | detect-indent@^4.0.0: 1386 | version "4.0.0" 1387 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1388 | dependencies: 1389 | repeating "^2.0.0" 1390 | 1391 | domain-browser@^1.1.1: 1392 | version "1.1.7" 1393 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" 1394 | 1395 | dot-prop@^3.0.0: 1396 | version "3.0.0" 1397 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-3.0.0.tgz#1b708af094a49c9a0e7dbcad790aba539dac1177" 1398 | dependencies: 1399 | is-obj "^1.0.0" 1400 | 1401 | dts-bundle: 1402 | version "0.6.1" 1403 | resolved "https://registry.yarnpkg.com/dts-bundle/-/dts-bundle-0.6.1.tgz#a677bf399000f216f58123a1e3c38340d35d0b72" 1404 | dependencies: 1405 | commander "^2.9.0" 1406 | detect-indent "^0.2.0" 1407 | glob "^6.0.4" 1408 | mkdirp "^0.5.0" 1409 | 1410 | duplexer2@^0.1.4: 1411 | version "0.1.4" 1412 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" 1413 | dependencies: 1414 | readable-stream "^2.0.2" 1415 | 1416 | eastasianwidth@^0.1.1: 1417 | version "0.1.1" 1418 | resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.1.1.tgz#44d656de9da415694467335365fb3147b8572b7c" 1419 | 1420 | ecc-jsbn@~0.1.1: 1421 | version "0.1.1" 1422 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1423 | dependencies: 1424 | jsbn "~0.1.0" 1425 | 1426 | emojis-list@^2.0.0: 1427 | version "2.1.0" 1428 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" 1429 | 1430 | empower-core@^0.6.1: 1431 | version "0.6.1" 1432 | resolved "https://registry.yarnpkg.com/empower-core/-/empower-core-0.6.1.tgz#6c187f502fcef7554d57933396aac655483772b1" 1433 | dependencies: 1434 | call-signature "0.0.2" 1435 | core-js "^2.0.0" 1436 | 1437 | enhanced-resolve@^3.0.0: 1438 | version "3.4.1" 1439 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz#0421e339fd71419b3da13d129b3979040230476e" 1440 | dependencies: 1441 | graceful-fs "^4.1.2" 1442 | memory-fs "^0.4.0" 1443 | object-assign "^4.0.1" 1444 | tapable "^0.2.7" 1445 | 1446 | enhanced-resolve@~0.9.0: 1447 | version "0.9.1" 1448 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-0.9.1.tgz#4d6e689b3725f86090927ccc86cd9f1635b89e2e" 1449 | dependencies: 1450 | graceful-fs "^4.1.2" 1451 | memory-fs "^0.2.0" 1452 | tapable "^0.1.8" 1453 | 1454 | errno@^0.1.3: 1455 | version "0.1.4" 1456 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 1457 | dependencies: 1458 | prr "~0.0.0" 1459 | 1460 | error-ex@^1.2.0: 1461 | version "1.3.0" 1462 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.0.tgz#e67b43f3e82c96ea3a584ffee0b9fc3325d802d9" 1463 | dependencies: 1464 | is-arrayish "^0.2.1" 1465 | 1466 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.4, escape-string-regexp@^1.0.5: 1467 | version "1.0.5" 1468 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1469 | 1470 | espower-location-detector@^0.1.1: 1471 | version "0.1.2" 1472 | resolved "https://registry.yarnpkg.com/espower-location-detector/-/espower-location-detector-0.1.2.tgz#d43be738af3e0b18197eeb5c22b95512dee6b83c" 1473 | dependencies: 1474 | is-url "^1.2.1" 1475 | path-is-absolute "^1.0.0" 1476 | source-map "^0.5.0" 1477 | xtend "^4.0.0" 1478 | 1479 | espurify@^1.6.0: 1480 | version "1.6.0" 1481 | resolved "https://registry.yarnpkg.com/espurify/-/espurify-1.6.0.tgz#6cb993582d9422bd6f2d4b258aadb14833f394f0" 1482 | dependencies: 1483 | core-js "^2.0.0" 1484 | 1485 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1: 1486 | version "4.2.0" 1487 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1488 | 1489 | esutils@^2.0.2: 1490 | version "2.0.2" 1491 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1492 | 1493 | events@^1.0.0: 1494 | version "1.1.1" 1495 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 1496 | 1497 | exit-hook@^1.0.0: 1498 | version "1.1.1" 1499 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1500 | 1501 | expand-brackets@^0.1.4: 1502 | version "0.1.5" 1503 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1504 | dependencies: 1505 | is-posix-bracket "^0.1.0" 1506 | 1507 | expand-range@^1.8.1: 1508 | version "1.8.2" 1509 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1510 | dependencies: 1511 | fill-range "^2.1.0" 1512 | 1513 | expand-tilde@^1.2.2: 1514 | version "1.2.2" 1515 | resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-1.2.2.tgz#0b81eba897e5a3d31d1c3d102f8f01441e559449" 1516 | dependencies: 1517 | os-homedir "^1.0.1" 1518 | 1519 | extend-shallow@^2.0.1: 1520 | version "2.0.1" 1521 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 1522 | dependencies: 1523 | is-extendable "^0.1.0" 1524 | 1525 | extend@~3.0.0: 1526 | version "3.0.0" 1527 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 1528 | 1529 | extglob@^0.3.1: 1530 | version "0.3.2" 1531 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1532 | dependencies: 1533 | is-extglob "^1.0.0" 1534 | 1535 | extsprintf@1.0.2: 1536 | version "1.0.2" 1537 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1538 | 1539 | figures@^1.4.0: 1540 | version "1.7.0" 1541 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1542 | dependencies: 1543 | escape-string-regexp "^1.0.5" 1544 | object-assign "^4.1.0" 1545 | 1546 | filename-regex@^2.0.0: 1547 | version "2.0.0" 1548 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 1549 | 1550 | fill-range@^2.1.0: 1551 | version "2.2.3" 1552 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1553 | dependencies: 1554 | is-number "^2.1.0" 1555 | isobject "^2.0.0" 1556 | randomatic "^1.1.3" 1557 | repeat-element "^1.1.2" 1558 | repeat-string "^1.5.2" 1559 | 1560 | filled-array@^1.0.0: 1561 | version "1.1.0" 1562 | resolved "https://registry.yarnpkg.com/filled-array/-/filled-array-1.1.0.tgz#c3c4f6c663b923459a9aa29912d2d031f1507f84" 1563 | 1564 | find-cache-dir@^0.1.1: 1565 | version "0.1.1" 1566 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" 1567 | dependencies: 1568 | commondir "^1.0.1" 1569 | mkdirp "^0.5.1" 1570 | pkg-dir "^1.0.0" 1571 | 1572 | find-up@^1.0.0, find-up@^1.1.2: 1573 | version "1.1.2" 1574 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1575 | dependencies: 1576 | path-exists "^2.0.0" 1577 | pinkie-promise "^2.0.0" 1578 | 1579 | fn-name@^2.0.0: 1580 | version "2.0.1" 1581 | resolved "https://registry.yarnpkg.com/fn-name/-/fn-name-2.0.1.tgz#5214d7537a4d06a4a301c0cc262feb84188002e7" 1582 | 1583 | for-in@^0.1.5: 1584 | version "0.1.6" 1585 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.6.tgz#c9f96e89bfad18a545af5ec3ed352a1d9e5b4dc8" 1586 | 1587 | for-own@^0.1.4: 1588 | version "0.1.4" 1589 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.4.tgz#0149b41a39088c7515f51ebe1c1386d45f935072" 1590 | dependencies: 1591 | for-in "^0.1.5" 1592 | 1593 | foreach@^2.0.5: 1594 | version "2.0.5" 1595 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1596 | 1597 | foreground-child@^1.3.3, foreground-child@^1.5.3: 1598 | version "1.5.3" 1599 | resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-1.5.3.tgz#94dd6aba671389867de8e57e99f1c2ecfb15c01a" 1600 | dependencies: 1601 | cross-spawn "^4" 1602 | signal-exit "^3.0.0" 1603 | 1604 | forever-agent@~0.6.1: 1605 | version "0.6.1" 1606 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1607 | 1608 | form-data@~2.1.1: 1609 | version "2.1.2" 1610 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 1611 | dependencies: 1612 | asynckit "^0.4.0" 1613 | combined-stream "^1.0.5" 1614 | mime-types "^2.1.12" 1615 | 1616 | fs-exists-sync@^0.1.0: 1617 | version "0.1.0" 1618 | resolved "https://registry.yarnpkg.com/fs-exists-sync/-/fs-exists-sync-0.1.0.tgz#982d6893af918e72d08dec9e8673ff2b5a8d6add" 1619 | 1620 | fs.realpath@^1.0.0: 1621 | version "1.0.0" 1622 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1623 | 1624 | fsevents@^1.0.0: 1625 | version "1.0.15" 1626 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.0.15.tgz#fa63f590f3c2ad91275e4972a6cea545fb0aae44" 1627 | dependencies: 1628 | nan "^2.3.0" 1629 | node-pre-gyp "^0.6.29" 1630 | 1631 | fstream-ignore@~1.0.5: 1632 | version "1.0.5" 1633 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1634 | dependencies: 1635 | fstream "^1.0.0" 1636 | inherits "2" 1637 | minimatch "^3.0.0" 1638 | 1639 | fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.10: 1640 | version "1.0.10" 1641 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.10.tgz#604e8a92fe26ffd9f6fae30399d4984e1ab22822" 1642 | dependencies: 1643 | graceful-fs "^4.1.2" 1644 | inherits "~2.0.0" 1645 | mkdirp ">=0.5 0" 1646 | rimraf "2" 1647 | 1648 | gauge@~2.6.0: 1649 | version "2.6.0" 1650 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.6.0.tgz#d35301ad18e96902b4751dcbbe40f4218b942a46" 1651 | dependencies: 1652 | aproba "^1.0.3" 1653 | console-control-strings "^1.0.0" 1654 | has-color "^0.1.7" 1655 | has-unicode "^2.0.0" 1656 | object-assign "^4.1.0" 1657 | signal-exit "^3.0.0" 1658 | string-width "^1.0.1" 1659 | strip-ansi "^3.0.1" 1660 | wide-align "^1.1.0" 1661 | 1662 | generate-function@^2.0.0: 1663 | version "2.0.0" 1664 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1665 | 1666 | generate-object-property@^1.1.0: 1667 | version "1.2.0" 1668 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1669 | dependencies: 1670 | is-property "^1.0.0" 1671 | 1672 | get-caller-file@^1.0.1: 1673 | version "1.0.2" 1674 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1675 | 1676 | get-stdin@^0.1.0: 1677 | version "0.1.0" 1678 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-0.1.0.tgz#5998af24aafc802d15c82c685657eeb8b10d4a91" 1679 | 1680 | get-stdin@^4.0.1: 1681 | version "4.0.1" 1682 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 1683 | 1684 | getpass@^0.1.1: 1685 | version "0.1.6" 1686 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 1687 | dependencies: 1688 | assert-plus "^1.0.0" 1689 | 1690 | glob-base@^0.3.0: 1691 | version "0.3.0" 1692 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1693 | dependencies: 1694 | glob-parent "^2.0.0" 1695 | is-glob "^2.0.0" 1696 | 1697 | glob-parent@^2.0.0: 1698 | version "2.0.0" 1699 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1700 | dependencies: 1701 | is-glob "^2.0.0" 1702 | 1703 | glob@^6.0.4: 1704 | version "6.0.4" 1705 | resolved "https://registry.yarnpkg.com/glob/-/glob-6.0.4.tgz#0f08860f6a155127b2fadd4f9ce24b1aab6e4d22" 1706 | dependencies: 1707 | inflight "^1.0.4" 1708 | inherits "2" 1709 | minimatch "2 || 3" 1710 | once "^1.3.0" 1711 | path-is-absolute "^1.0.0" 1712 | 1713 | glob@^7.0.3, glob@^7.0.5, glob@^7.0.6: 1714 | version "7.1.1" 1715 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1716 | dependencies: 1717 | fs.realpath "^1.0.0" 1718 | inflight "^1.0.4" 1719 | inherits "2" 1720 | minimatch "^3.0.2" 1721 | once "^1.3.0" 1722 | path-is-absolute "^1.0.0" 1723 | 1724 | global-modules@^0.2.3: 1725 | version "0.2.3" 1726 | resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-0.2.3.tgz#ea5a3bed42c6d6ce995a4f8a1269b5dae223828d" 1727 | dependencies: 1728 | global-prefix "^0.1.4" 1729 | is-windows "^0.2.0" 1730 | 1731 | global-prefix@^0.1.4: 1732 | version "0.1.4" 1733 | resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-0.1.4.tgz#05158db1cde2dd491b455e290eb3ab8bfc45c6e1" 1734 | dependencies: 1735 | ini "^1.3.4" 1736 | is-windows "^0.2.0" 1737 | osenv "^0.1.3" 1738 | which "^1.2.10" 1739 | 1740 | globals@^9.0.0: 1741 | version "9.12.0" 1742 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.12.0.tgz#992ce90828c3a55fa8f16fada177adb64664cf9d" 1743 | 1744 | globby@^5.0.0: 1745 | version "5.0.0" 1746 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1747 | dependencies: 1748 | array-union "^1.0.1" 1749 | arrify "^1.0.0" 1750 | glob "^7.0.3" 1751 | object-assign "^4.0.1" 1752 | pify "^2.0.0" 1753 | pinkie-promise "^2.0.0" 1754 | 1755 | got@^5.0.0: 1756 | version "5.7.1" 1757 | resolved "https://registry.yarnpkg.com/got/-/got-5.7.1.tgz#5f81635a61e4a6589f180569ea4e381680a51f35" 1758 | dependencies: 1759 | create-error-class "^3.0.1" 1760 | duplexer2 "^0.1.4" 1761 | is-redirect "^1.0.0" 1762 | is-retry-allowed "^1.0.0" 1763 | is-stream "^1.0.0" 1764 | lowercase-keys "^1.0.0" 1765 | node-status-codes "^1.0.0" 1766 | object-assign "^4.0.1" 1767 | parse-json "^2.1.0" 1768 | pinkie-promise "^2.0.0" 1769 | read-all-stream "^3.0.0" 1770 | readable-stream "^2.0.5" 1771 | timed-out "^3.0.0" 1772 | unzip-response "^1.0.2" 1773 | url-parse-lax "^1.0.0" 1774 | 1775 | graceful-fs@^4.1.2: 1776 | version "4.1.10" 1777 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.10.tgz#f2d720c22092f743228775c75e3612632501f131" 1778 | 1779 | "graceful-readlink@>= 1.0.0": 1780 | version "1.0.1" 1781 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1782 | 1783 | handlebars@^4.0.3: 1784 | version "4.0.5" 1785 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.5.tgz#92c6ed6bb164110c50d4d8d0fbddc70806c6f8e7" 1786 | dependencies: 1787 | async "^1.4.0" 1788 | optimist "^0.6.1" 1789 | source-map "^0.4.4" 1790 | optionalDependencies: 1791 | uglify-js "^2.6" 1792 | 1793 | har-validator@~2.0.6: 1794 | version "2.0.6" 1795 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 1796 | dependencies: 1797 | chalk "^1.1.1" 1798 | commander "^2.9.0" 1799 | is-my-json-valid "^2.12.4" 1800 | pinkie-promise "^2.0.0" 1801 | 1802 | has-ansi@^2.0.0: 1803 | version "2.0.0" 1804 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1805 | dependencies: 1806 | ansi-regex "^2.0.0" 1807 | 1808 | has-color@^0.1.7, has-color@~0.1.0: 1809 | version "0.1.7" 1810 | resolved "https://registry.yarnpkg.com/has-color/-/has-color-0.1.7.tgz#67144a5260c34fc3cca677d041daf52fe7b78b2f" 1811 | 1812 | has-flag@^1.0.0: 1813 | version "1.0.0" 1814 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1815 | 1816 | has-flag@^2.0.0: 1817 | version "2.0.0" 1818 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1819 | 1820 | has-glob@^0.1.1: 1821 | version "0.1.1" 1822 | resolved "https://registry.yarnpkg.com/has-glob/-/has-glob-0.1.1.tgz#a261c4c2a6c667e0c77b700a7f297c39ef3aa589" 1823 | dependencies: 1824 | is-glob "^2.0.1" 1825 | 1826 | has-unicode@^2.0.0: 1827 | version "2.0.1" 1828 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1829 | 1830 | hawk@~3.1.3: 1831 | version "3.1.3" 1832 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1833 | dependencies: 1834 | boom "2.x.x" 1835 | cryptiles "2.x.x" 1836 | hoek "2.x.x" 1837 | sntp "1.x.x" 1838 | 1839 | hoek@2.x.x: 1840 | version "2.16.3" 1841 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1842 | 1843 | home-or-tmp@^2.0.0: 1844 | version "2.0.0" 1845 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1846 | dependencies: 1847 | os-homedir "^1.0.0" 1848 | os-tmpdir "^1.0.1" 1849 | 1850 | hosted-git-info@^2.1.4: 1851 | version "2.1.5" 1852 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.1.5.tgz#0ba81d90da2e25ab34a332e6ec77936e1598118b" 1853 | 1854 | http-browserify@^1.3.2: 1855 | version "1.7.0" 1856 | resolved "https://registry.yarnpkg.com/http-browserify/-/http-browserify-1.7.0.tgz#33795ade72df88acfbfd36773cefeda764735b20" 1857 | dependencies: 1858 | Base64 "~0.2.0" 1859 | inherits "~2.0.1" 1860 | 1861 | http-signature@~1.1.0: 1862 | version "1.1.1" 1863 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1864 | dependencies: 1865 | assert-plus "^0.2.0" 1866 | jsprim "^1.2.2" 1867 | sshpk "^1.7.0" 1868 | 1869 | https-browserify@0.0.0: 1870 | version "0.0.0" 1871 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.0.tgz#b3ffdfe734b2a3d4a9efd58e8654c91fce86eafd" 1872 | 1873 | ieee754@^1.1.4: 1874 | version "1.1.8" 1875 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 1876 | 1877 | ignore-by-default@^1.0.0, ignore-by-default@^1.0.1: 1878 | version "1.0.1" 1879 | resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" 1880 | 1881 | imurmurhash@^0.1.4: 1882 | version "0.1.4" 1883 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1884 | 1885 | indent-string@^2.1.0: 1886 | version "2.1.0" 1887 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 1888 | dependencies: 1889 | repeating "^2.0.0" 1890 | 1891 | indexof@0.0.1: 1892 | version "0.0.1" 1893 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 1894 | 1895 | inflight@^1.0.4: 1896 | version "1.0.6" 1897 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1898 | dependencies: 1899 | once "^1.3.0" 1900 | wrappy "1" 1901 | 1902 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1: 1903 | version "2.0.3" 1904 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1905 | 1906 | inherits@2.0.1: 1907 | version "2.0.1" 1908 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 1909 | 1910 | ini@^1.3.4, ini@~1.3.0: 1911 | version "1.3.4" 1912 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1913 | 1914 | interpret@^0.6.4: 1915 | version "0.6.6" 1916 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-0.6.6.tgz#fecd7a18e7ce5ca6abfb953e1f86213a49f1625b" 1917 | 1918 | invariant@^2.2.0: 1919 | version "2.2.1" 1920 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.1.tgz#b097010547668c7e337028ebe816ebe36c8a8d54" 1921 | dependencies: 1922 | loose-envify "^1.0.0" 1923 | 1924 | invert-kv@^1.0.0: 1925 | version "1.0.0" 1926 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1927 | 1928 | irregular-plurals@^1.0.0: 1929 | version "1.2.0" 1930 | resolved "https://registry.yarnpkg.com/irregular-plurals/-/irregular-plurals-1.2.0.tgz#38f299834ba8c00c30be9c554e137269752ff3ac" 1931 | 1932 | is-arrayish@^0.2.1: 1933 | version "0.2.1" 1934 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1935 | 1936 | is-binary-path@^1.0.0: 1937 | version "1.0.1" 1938 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1939 | dependencies: 1940 | binary-extensions "^1.0.0" 1941 | 1942 | is-buffer@^1.0.2: 1943 | version "1.1.4" 1944 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b" 1945 | 1946 | is-builtin-module@^1.0.0: 1947 | version "1.0.0" 1948 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1949 | dependencies: 1950 | builtin-modules "^1.0.0" 1951 | 1952 | is-ci@^1.0.7: 1953 | version "1.0.10" 1954 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1955 | dependencies: 1956 | ci-info "^1.0.0" 1957 | 1958 | is-dotfile@^1.0.0: 1959 | version "1.0.2" 1960 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1961 | 1962 | is-equal-shallow@^0.1.3: 1963 | version "0.1.3" 1964 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1965 | dependencies: 1966 | is-primitive "^2.0.0" 1967 | 1968 | is-error@^2.2.0: 1969 | version "2.2.1" 1970 | resolved "https://registry.yarnpkg.com/is-error/-/is-error-2.2.1.tgz#684a96d84076577c98f4cdb40c6d26a5123bf19c" 1971 | 1972 | is-extendable@^0.1.0, is-extendable@^0.1.1: 1973 | version "0.1.1" 1974 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1975 | 1976 | is-extglob@^1.0.0: 1977 | version "1.0.0" 1978 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1979 | 1980 | is-finite@^1.0.0, is-finite@^1.0.1: 1981 | version "1.0.2" 1982 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1983 | dependencies: 1984 | number-is-nan "^1.0.0" 1985 | 1986 | is-fullwidth-code-point@^1.0.0: 1987 | version "1.0.0" 1988 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1989 | dependencies: 1990 | number-is-nan "^1.0.0" 1991 | 1992 | is-generator-fn@^1.0.0: 1993 | version "1.0.0" 1994 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a" 1995 | 1996 | is-glob@^2.0.0, is-glob@^2.0.1: 1997 | version "2.0.1" 1998 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1999 | dependencies: 2000 | is-extglob "^1.0.0" 2001 | 2002 | is-my-json-valid@^2.12.4: 2003 | version "2.15.0" 2004 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b" 2005 | dependencies: 2006 | generate-function "^2.0.0" 2007 | generate-object-property "^1.1.0" 2008 | jsonpointer "^4.0.0" 2009 | xtend "^4.0.0" 2010 | 2011 | is-npm@^1.0.0: 2012 | version "1.0.0" 2013 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 2014 | 2015 | is-number@^2.0.2, is-number@^2.1.0: 2016 | version "2.1.0" 2017 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 2018 | dependencies: 2019 | kind-of "^3.0.2" 2020 | 2021 | is-obj@^1.0.0: 2022 | version "1.0.1" 2023 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 2024 | 2025 | is-observable@^0.2.0: 2026 | version "0.2.0" 2027 | resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-0.2.0.tgz#b361311d83c6e5d726cabf5e250b0237106f5ae2" 2028 | dependencies: 2029 | symbol-observable "^0.2.2" 2030 | 2031 | is-path-cwd@^1.0.0: 2032 | version "1.0.0" 2033 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 2034 | 2035 | is-path-in-cwd@^1.0.0: 2036 | version "1.0.0" 2037 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 2038 | dependencies: 2039 | is-path-inside "^1.0.0" 2040 | 2041 | is-path-inside@^1.0.0: 2042 | version "1.0.0" 2043 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 2044 | dependencies: 2045 | path-is-inside "^1.0.1" 2046 | 2047 | is-plain-obj@^1.0.0: 2048 | version "1.1.0" 2049 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 2050 | 2051 | is-posix-bracket@^0.1.0: 2052 | version "0.1.1" 2053 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2054 | 2055 | is-primitive@^2.0.0: 2056 | version "2.0.0" 2057 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2058 | 2059 | is-promise@^2.1.0: 2060 | version "2.1.0" 2061 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 2062 | 2063 | is-property@^1.0.0: 2064 | version "1.0.2" 2065 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 2066 | 2067 | is-redirect@^1.0.0: 2068 | version "1.0.0" 2069 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 2070 | 2071 | is-retry-allowed@^1.0.0: 2072 | version "1.1.0" 2073 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" 2074 | 2075 | is-stream@^1.0.0: 2076 | version "1.1.0" 2077 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2078 | 2079 | is-typedarray@~1.0.0: 2080 | version "1.0.0" 2081 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2082 | 2083 | is-url@^1.2.1: 2084 | version "1.2.2" 2085 | resolved "https://registry.yarnpkg.com/is-url/-/is-url-1.2.2.tgz#498905a593bf47cc2d9e7f738372bbf7696c7f26" 2086 | 2087 | is-utf8@^0.2.0: 2088 | version "0.2.1" 2089 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 2090 | 2091 | is-valid-glob@^0.3.0: 2092 | version "0.3.0" 2093 | resolved "https://registry.yarnpkg.com/is-valid-glob/-/is-valid-glob-0.3.0.tgz#d4b55c69f51886f9b65c70d6c2622d37e29f48fe" 2094 | 2095 | is-windows@^0.2.0: 2096 | version "0.2.0" 2097 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-0.2.0.tgz#de1aa6d63ea29dd248737b69f1ff8b8002d2108c" 2098 | 2099 | isarray@0.0.1: 2100 | version "0.0.1" 2101 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 2102 | 2103 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2104 | version "1.0.0" 2105 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2106 | 2107 | isexe@^1.1.1: 2108 | version "1.1.2" 2109 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-1.1.2.tgz#36f3e22e60750920f5e7241a476a8c6a42275ad0" 2110 | 2111 | isobject@^2.0.0: 2112 | version "2.1.0" 2113 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2114 | dependencies: 2115 | isarray "1.0.0" 2116 | 2117 | isstream@~0.1.2: 2118 | version "0.1.2" 2119 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2120 | 2121 | istanbul-lib-coverage@^1.0.0, istanbul-lib-coverage@^1.0.0-alpha, istanbul-lib-coverage@^1.0.0-alpha.0: 2122 | version "1.0.0" 2123 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.0.0.tgz#c3f9b6d226da12424064cce87fce0fb57fdfa7a2" 2124 | 2125 | istanbul-lib-hook@^1.0.0-alpha.4: 2126 | version "1.0.0-alpha.4" 2127 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.0-alpha.4.tgz#8c5bb9f6fbd8526e0ae6cf639af28266906b938f" 2128 | dependencies: 2129 | append-transform "^0.3.0" 2130 | 2131 | istanbul-lib-instrument@^1.2.0: 2132 | version "1.2.0" 2133 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.2.0.tgz#73d5d108ab7568c373fdcb7d01c1d42d565bc8c4" 2134 | dependencies: 2135 | babel-generator "^6.18.0" 2136 | babel-template "^6.16.0" 2137 | babel-traverse "^6.18.0" 2138 | babel-types "^6.18.0" 2139 | babylon "^6.13.0" 2140 | istanbul-lib-coverage "^1.0.0" 2141 | semver "^5.3.0" 2142 | 2143 | istanbul-lib-report@^1.0.0-alpha.3: 2144 | version "1.0.0-alpha.3" 2145 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.0.0-alpha.3.tgz#32d5f6ec7f33ca3a602209e278b2e6ff143498af" 2146 | dependencies: 2147 | async "^1.4.2" 2148 | istanbul-lib-coverage "^1.0.0-alpha" 2149 | mkdirp "^0.5.1" 2150 | path-parse "^1.0.5" 2151 | rimraf "^2.4.3" 2152 | supports-color "^3.1.2" 2153 | 2154 | istanbul-lib-source-maps@^1.0.2: 2155 | version "1.0.2" 2156 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.0.2.tgz#9e91b0e5ae6ed203f67c69a34e6e98b10bb69a49" 2157 | dependencies: 2158 | istanbul-lib-coverage "^1.0.0-alpha.0" 2159 | mkdirp "^0.5.1" 2160 | rimraf "^2.4.4" 2161 | source-map "^0.5.3" 2162 | 2163 | istanbul-reports@^1.0.0: 2164 | version "1.0.0" 2165 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.0.0.tgz#24b4eb2b1d29d50f103b369bd422f6e640aa0777" 2166 | dependencies: 2167 | handlebars "^4.0.3" 2168 | 2169 | jodid25519@^1.0.0: 2170 | version "1.0.2" 2171 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 2172 | dependencies: 2173 | jsbn "~0.1.0" 2174 | 2175 | js-tokens@^2.0.0: 2176 | version "2.0.0" 2177 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-2.0.0.tgz#79903f5563ee778cc1162e6dcf1a0027c97f9cb5" 2178 | 2179 | jsbn@~0.1.0: 2180 | version "0.1.0" 2181 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.0.tgz#650987da0dd74f4ebf5a11377a2aa2d273e97dfd" 2182 | 2183 | jsesc@^1.3.0: 2184 | version "1.3.0" 2185 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2186 | 2187 | jsesc@~0.5.0: 2188 | version "0.5.0" 2189 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2190 | 2191 | json-schema@0.2.3: 2192 | version "0.2.3" 2193 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2194 | 2195 | json-stringify-safe@~5.0.1: 2196 | version "5.0.1" 2197 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2198 | 2199 | json5@^0.5.0: 2200 | version "0.5.0" 2201 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.0.tgz#9b20715b026cbe3778fd769edccd822d8332a5b2" 2202 | 2203 | jsonpointer@^4.0.0: 2204 | version "4.0.0" 2205 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.0.tgz#6661e161d2fc445f19f98430231343722e1fcbd5" 2206 | 2207 | jsprim@^1.2.2: 2208 | version "1.3.1" 2209 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252" 2210 | dependencies: 2211 | extsprintf "1.0.2" 2212 | json-schema "0.2.3" 2213 | verror "1.3.6" 2214 | 2215 | kind-of@^3.0.2: 2216 | version "3.0.4" 2217 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.0.4.tgz#7b8ecf18a4e17f8269d73b501c9f232c96887a74" 2218 | dependencies: 2219 | is-buffer "^1.0.2" 2220 | 2221 | last-line-stream@^1.0.0: 2222 | version "1.0.0" 2223 | resolved "https://registry.yarnpkg.com/last-line-stream/-/last-line-stream-1.0.0.tgz#d1b64d69f86ff24af2d04883a2ceee14520a5600" 2224 | dependencies: 2225 | through2 "^2.0.0" 2226 | 2227 | latest-version@^2.0.0: 2228 | version "2.0.0" 2229 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-2.0.0.tgz#56f8d6139620847b8017f8f1f4d78e211324168b" 2230 | dependencies: 2231 | package-json "^2.0.0" 2232 | 2233 | lazy-cache@^1.0.3, lazy-cache@^1.0.4: 2234 | version "1.0.4" 2235 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2236 | 2237 | lazy-cache@^2.0.1: 2238 | version "2.0.2" 2239 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-2.0.2.tgz#b9190a4f913354694840859f8a8f7084d8822264" 2240 | dependencies: 2241 | set-getter "^0.1.0" 2242 | 2243 | lazy-req@^1.1.0: 2244 | version "1.1.0" 2245 | resolved "https://registry.yarnpkg.com/lazy-req/-/lazy-req-1.1.0.tgz#bdaebead30f8d824039ce0ce149d4daa07ba1fac" 2246 | 2247 | lcid@^1.0.0: 2248 | version "1.0.0" 2249 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2250 | dependencies: 2251 | invert-kv "^1.0.0" 2252 | 2253 | load-json-file@^1.0.0, load-json-file@^1.1.0: 2254 | version "1.1.0" 2255 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2256 | dependencies: 2257 | graceful-fs "^4.1.2" 2258 | parse-json "^2.2.0" 2259 | pify "^2.0.0" 2260 | pinkie-promise "^2.0.0" 2261 | strip-bom "^2.0.0" 2262 | 2263 | loader-utils@^0.2.11: 2264 | version "0.2.16" 2265 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.16.tgz#f08632066ed8282835dff88dfb52704765adee6d" 2266 | dependencies: 2267 | big.js "^3.1.3" 2268 | emojis-list "^2.0.0" 2269 | json5 "^0.5.0" 2270 | object-assign "^4.0.1" 2271 | 2272 | loader-utils@^1.0.2: 2273 | version "1.1.0" 2274 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd" 2275 | dependencies: 2276 | big.js "^3.1.3" 2277 | emojis-list "^2.0.0" 2278 | json5 "^0.5.0" 2279 | 2280 | lodash.debounce@^4.0.3: 2281 | version "4.0.8" 2282 | resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" 2283 | 2284 | lodash.difference@^4.3.0: 2285 | version "4.5.0" 2286 | resolved "https://registry.yarnpkg.com/lodash.difference/-/lodash.difference-4.5.0.tgz#9ccb4e505d486b91651345772885a2df27fd017c" 2287 | 2288 | lodash@^4.2.0: 2289 | version "4.16.6" 2290 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.16.6.tgz#d22c9ac660288f3843e16ba7d2b5d06cca27d777" 2291 | 2292 | longest@^1.0.1: 2293 | version "1.0.1" 2294 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2295 | 2296 | loose-envify@^1.0.0: 2297 | version "1.3.0" 2298 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.0.tgz#6b26248c42f6d4fa4b0d8542f78edfcde35642a8" 2299 | dependencies: 2300 | js-tokens "^2.0.0" 2301 | 2302 | loud-rejection@^1.0.0, loud-rejection@^1.2.0: 2303 | version "1.6.0" 2304 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 2305 | dependencies: 2306 | currently-unhandled "^0.4.1" 2307 | signal-exit "^3.0.0" 2308 | 2309 | lowercase-keys@^1.0.0: 2310 | version "1.0.0" 2311 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 2312 | 2313 | lru-cache@^4.0.1: 2314 | version "4.0.1" 2315 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.1.tgz#1343955edaf2e37d9b9e7ee7241e27c4b9fb72be" 2316 | dependencies: 2317 | pseudomap "^1.0.1" 2318 | yallist "^2.0.0" 2319 | 2320 | map-obj@^1.0.0, map-obj@^1.0.1: 2321 | version "1.0.1" 2322 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 2323 | 2324 | matched@^0.4.1: 2325 | version "0.4.4" 2326 | resolved "https://registry.yarnpkg.com/matched/-/matched-0.4.4.tgz#56d7b7eb18033f0cf9bc52eb2090fac7dc1e89fa" 2327 | dependencies: 2328 | arr-union "^3.1.0" 2329 | async-array-reduce "^0.2.0" 2330 | extend-shallow "^2.0.1" 2331 | fs-exists-sync "^0.1.0" 2332 | glob "^7.0.5" 2333 | has-glob "^0.1.1" 2334 | is-valid-glob "^0.3.0" 2335 | lazy-cache "^2.0.1" 2336 | resolve-dir "^0.1.0" 2337 | 2338 | matcher@^0.1.1: 2339 | version "0.1.2" 2340 | resolved "https://registry.yarnpkg.com/matcher/-/matcher-0.1.2.tgz#ef20cbde64c24c50cc61af5b83ee0b1b8ff00101" 2341 | dependencies: 2342 | escape-string-regexp "^1.0.4" 2343 | 2344 | max-timeout@^1.0.0: 2345 | version "1.0.0" 2346 | resolved "https://registry.yarnpkg.com/max-timeout/-/max-timeout-1.0.0.tgz#b68f69a2f99e0b476fd4cb23e2059ca750715e1f" 2347 | 2348 | md5-hex@^1.2.0, md5-hex@^1.3.0: 2349 | version "1.3.0" 2350 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-1.3.0.tgz#d2c4afe983c4370662179b8cad145219135046c4" 2351 | dependencies: 2352 | md5-o-matic "^0.1.1" 2353 | 2354 | md5-o-matic@^0.1.1: 2355 | version "0.1.1" 2356 | resolved "https://registry.yarnpkg.com/md5-o-matic/-/md5-o-matic-0.1.1.tgz#822bccd65e117c514fab176b25945d54100a03c3" 2357 | 2358 | memory-fs@^0.2.0: 2359 | version "0.2.0" 2360 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.2.0.tgz#f2bb25368bc121e391c2520de92969caee0a0290" 2361 | 2362 | memory-fs@^0.4.0: 2363 | version "0.4.1" 2364 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" 2365 | dependencies: 2366 | errno "^0.1.3" 2367 | readable-stream "^2.0.1" 2368 | 2369 | memory-fs@~0.3.0: 2370 | version "0.3.0" 2371 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.3.0.tgz#7bcc6b629e3a43e871d7e29aca6ae8a7f15cbb20" 2372 | dependencies: 2373 | errno "^0.1.3" 2374 | readable-stream "^2.0.1" 2375 | 2376 | meow@^3.7.0: 2377 | version "3.7.0" 2378 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 2379 | dependencies: 2380 | camelcase-keys "^2.0.0" 2381 | decamelize "^1.1.2" 2382 | loud-rejection "^1.0.0" 2383 | map-obj "^1.0.1" 2384 | minimist "^1.1.3" 2385 | normalize-package-data "^2.3.4" 2386 | object-assign "^4.0.1" 2387 | read-pkg-up "^1.0.1" 2388 | redent "^1.0.0" 2389 | trim-newlines "^1.0.0" 2390 | 2391 | micromatch@^2.1.5, micromatch@^2.3.11: 2392 | version "2.3.11" 2393 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2394 | dependencies: 2395 | arr-diff "^2.0.0" 2396 | array-unique "^0.2.1" 2397 | braces "^1.8.2" 2398 | expand-brackets "^0.1.4" 2399 | extglob "^0.3.1" 2400 | filename-regex "^2.0.0" 2401 | is-extglob "^1.0.0" 2402 | is-glob "^2.0.1" 2403 | kind-of "^3.0.2" 2404 | normalize-path "^2.0.1" 2405 | object.omit "^2.0.0" 2406 | parse-glob "^3.0.4" 2407 | regex-cache "^0.4.2" 2408 | 2409 | mime-db@~1.24.0: 2410 | version "1.24.0" 2411 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.24.0.tgz#e2d13f939f0016c6e4e9ad25a8652f126c467f0c" 2412 | 2413 | mime-types@^2.1.12, mime-types@~2.1.7: 2414 | version "2.1.12" 2415 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.12.tgz#152ba256777020dd4663f54c2e7bc26381e71729" 2416 | dependencies: 2417 | mime-db "~1.24.0" 2418 | 2419 | "minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2: 2420 | version "3.0.3" 2421 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 2422 | dependencies: 2423 | brace-expansion "^1.0.0" 2424 | 2425 | minimist@0.0.8: 2426 | version "0.0.8" 2427 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2428 | 2429 | minimist@^0.1.0: 2430 | version "0.1.0" 2431 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.1.0.tgz#99df657a52574c21c9057497df742790b2b4c0de" 2432 | 2433 | minimist@^1.1.3, minimist@^1.2.0: 2434 | version "1.2.0" 2435 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2436 | 2437 | minimist@~0.0.1: 2438 | version "0.0.10" 2439 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 2440 | 2441 | "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1: 2442 | version "0.5.1" 2443 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2444 | dependencies: 2445 | minimist "0.0.8" 2446 | 2447 | ms@0.7.1: 2448 | version "0.7.1" 2449 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 2450 | 2451 | ms@0.7.2, ms@^0.7.1: 2452 | version "0.7.2" 2453 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 2454 | 2455 | multimatch@^2.1.0: 2456 | version "2.1.0" 2457 | resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b" 2458 | dependencies: 2459 | array-differ "^1.0.0" 2460 | array-union "^1.0.1" 2461 | arrify "^1.0.0" 2462 | minimatch "^3.0.0" 2463 | 2464 | nan@^2.3.0: 2465 | version "2.4.0" 2466 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.4.0.tgz#fb3c59d45fe4effe215f0b890f8adf6eb32d2232" 2467 | 2468 | node-libs-browser@^0.6.0: 2469 | version "0.6.0" 2470 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-0.6.0.tgz#244806d44d319e048bc8607b5cc4eaf9a29d2e3c" 2471 | dependencies: 2472 | assert "^1.1.1" 2473 | browserify-zlib "~0.1.4" 2474 | buffer "^4.9.0" 2475 | console-browserify "^1.1.0" 2476 | constants-browserify "0.0.1" 2477 | crypto-browserify "~3.2.6" 2478 | domain-browser "^1.1.1" 2479 | events "^1.0.0" 2480 | http-browserify "^1.3.2" 2481 | https-browserify "0.0.0" 2482 | os-browserify "~0.1.2" 2483 | path-browserify "0.0.0" 2484 | process "^0.11.0" 2485 | punycode "^1.2.4" 2486 | querystring-es3 "~0.2.0" 2487 | readable-stream "^1.1.13" 2488 | stream-browserify "^1.0.0" 2489 | string_decoder "~0.10.25" 2490 | timers-browserify "^1.0.1" 2491 | tty-browserify "0.0.0" 2492 | url "~0.10.1" 2493 | util "~0.10.3" 2494 | vm-browserify "0.0.4" 2495 | 2496 | node-pre-gyp@^0.6.29: 2497 | version "0.6.31" 2498 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.31.tgz#d8a00ddaa301a940615dbcc8caad4024d58f6017" 2499 | dependencies: 2500 | mkdirp "~0.5.1" 2501 | nopt "~3.0.6" 2502 | npmlog "^4.0.0" 2503 | rc "~1.1.6" 2504 | request "^2.75.0" 2505 | rimraf "~2.5.4" 2506 | semver "~5.3.0" 2507 | tar "~2.2.1" 2508 | tar-pack "~3.3.0" 2509 | 2510 | node-status-codes@^1.0.0: 2511 | version "1.0.0" 2512 | resolved "https://registry.yarnpkg.com/node-status-codes/-/node-status-codes-1.0.0.tgz#5ae5541d024645d32a58fcddc9ceecea7ae3ac2f" 2513 | 2514 | node-uuid@~1.4.7: 2515 | version "1.4.7" 2516 | resolved "https://registry.yarnpkg.com/node-uuid/-/node-uuid-1.4.7.tgz#6da5a17668c4b3dd59623bda11cf7fa4c1f60a6f" 2517 | 2518 | nopt@~3.0.6: 2519 | version "3.0.6" 2520 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 2521 | dependencies: 2522 | abbrev "1" 2523 | 2524 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: 2525 | version "2.3.5" 2526 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.5.tgz#8d924f142960e1777e7ffe170543631cc7cb02df" 2527 | dependencies: 2528 | hosted-git-info "^2.1.4" 2529 | is-builtin-module "^1.0.0" 2530 | semver "2 || 3 || 4 || 5" 2531 | validate-npm-package-license "^3.0.1" 2532 | 2533 | normalize-path@^2.0.1: 2534 | version "2.0.1" 2535 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" 2536 | 2537 | not-so-shallow@^0.1.3: 2538 | version "0.1.4" 2539 | resolved "https://registry.yarnpkg.com/not-so-shallow/-/not-so-shallow-0.1.4.tgz#e8c7f7b9c9b9f069594344368330cbcea387c3c7" 2540 | dependencies: 2541 | buffer-equals "^1.0.3" 2542 | 2543 | npmlog@^4.0.0: 2544 | version "4.0.0" 2545 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.0.tgz#e094503961c70c1774eb76692080e8d578a9f88f" 2546 | dependencies: 2547 | are-we-there-yet "~1.1.2" 2548 | console-control-strings "~1.1.0" 2549 | gauge "~2.6.0" 2550 | set-blocking "~2.0.0" 2551 | 2552 | number-is-nan@^1.0.0: 2553 | version "1.0.1" 2554 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2555 | 2556 | nyc: 2557 | version "8.4.0" 2558 | resolved "https://registry.yarnpkg.com/nyc/-/nyc-8.4.0.tgz#660371c807caef0427fb9b0948f74180624ea6e4" 2559 | dependencies: 2560 | archy "^1.0.0" 2561 | arrify "^1.0.1" 2562 | caching-transform "^1.0.0" 2563 | convert-source-map "^1.3.0" 2564 | default-require-extensions "^1.0.0" 2565 | find-cache-dir "^0.1.1" 2566 | find-up "^1.1.2" 2567 | foreground-child "^1.5.3" 2568 | glob "^7.0.6" 2569 | istanbul-lib-coverage "^1.0.0" 2570 | istanbul-lib-hook "^1.0.0-alpha.4" 2571 | istanbul-lib-instrument "^1.2.0" 2572 | istanbul-lib-report "^1.0.0-alpha.3" 2573 | istanbul-lib-source-maps "^1.0.2" 2574 | istanbul-reports "^1.0.0" 2575 | md5-hex "^1.2.0" 2576 | micromatch "^2.3.11" 2577 | mkdirp "^0.5.0" 2578 | resolve-from "^2.0.0" 2579 | rimraf "^2.5.4" 2580 | signal-exit "^3.0.1" 2581 | spawn-wrap "^1.2.4" 2582 | test-exclude "^2.1.3" 2583 | yargs "^6.0.0" 2584 | yargs-parser "^4.0.2" 2585 | 2586 | oauth-sign@~0.8.1: 2587 | version "0.8.2" 2588 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2589 | 2590 | object-assign@^4.0.1, object-assign@^4.1.0: 2591 | version "4.1.0" 2592 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0" 2593 | 2594 | object-keys@^1.0.4, object-keys@^1.0.8: 2595 | version "1.0.11" 2596 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 2597 | 2598 | object.assign@^3.0.1: 2599 | version "3.0.1" 2600 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-3.0.1.tgz#665c02e68d8f840d8d955e6c8ea4d4e1923146c2" 2601 | dependencies: 2602 | define-properties "^1.0.2" 2603 | object-keys "^1.0.4" 2604 | 2605 | object.omit@^2.0.0: 2606 | version "2.0.1" 2607 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2608 | dependencies: 2609 | for-own "^0.1.4" 2610 | is-extendable "^0.1.1" 2611 | 2612 | observable-to-promise@^0.4.0: 2613 | version "0.4.0" 2614 | resolved "https://registry.yarnpkg.com/observable-to-promise/-/observable-to-promise-0.4.0.tgz#28afe71645308f2d41d71f47ad3fece1a377e52b" 2615 | dependencies: 2616 | is-observable "^0.2.0" 2617 | symbol-observable "^0.2.2" 2618 | 2619 | once@^1.3.0: 2620 | version "1.4.0" 2621 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2622 | dependencies: 2623 | wrappy "1" 2624 | 2625 | once@~1.3.3: 2626 | version "1.3.3" 2627 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 2628 | dependencies: 2629 | wrappy "1" 2630 | 2631 | onetime@^1.0.0: 2632 | version "1.1.0" 2633 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2634 | 2635 | optimist@^0.6.1, optimist@~0.6.0: 2636 | version "0.6.1" 2637 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2638 | dependencies: 2639 | minimist "~0.0.1" 2640 | wordwrap "~0.0.2" 2641 | 2642 | option-chain@^0.1.0: 2643 | version "0.1.1" 2644 | resolved "https://registry.yarnpkg.com/option-chain/-/option-chain-0.1.1.tgz#e9b811e006f1c0f54802f28295bfc8970f8dcfbd" 2645 | dependencies: 2646 | object-assign "^4.0.1" 2647 | 2648 | os-browserify@~0.1.2: 2649 | version "0.1.2" 2650 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.1.2.tgz#49ca0293e0b19590a5f5de10c7f265a617d8fe54" 2651 | 2652 | os-homedir@^1.0.0, os-homedir@^1.0.1: 2653 | version "1.0.2" 2654 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2655 | 2656 | os-locale@^1.4.0: 2657 | version "1.4.0" 2658 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2659 | dependencies: 2660 | lcid "^1.0.0" 2661 | 2662 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 2663 | version "1.0.2" 2664 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2665 | 2666 | osenv@^0.1.0, osenv@^0.1.3: 2667 | version "0.1.3" 2668 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.3.tgz#83cf05c6d6458fc4d5ac6362ea325d92f2754217" 2669 | dependencies: 2670 | os-homedir "^1.0.0" 2671 | os-tmpdir "^1.0.0" 2672 | 2673 | package-hash@^1.1.0: 2674 | version "1.2.0" 2675 | resolved "https://registry.yarnpkg.com/package-hash/-/package-hash-1.2.0.tgz#003e56cd57b736a6ed6114cc2b81542672770e44" 2676 | dependencies: 2677 | md5-hex "^1.3.0" 2678 | 2679 | package-json@^2.0.0: 2680 | version "2.4.0" 2681 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-2.4.0.tgz#0d15bd67d1cbbddbb2ca222ff2edb86bcb31a8bb" 2682 | dependencies: 2683 | got "^5.0.0" 2684 | registry-auth-token "^3.0.1" 2685 | registry-url "^3.0.3" 2686 | semver "^5.1.0" 2687 | 2688 | pako@~0.2.0: 2689 | version "0.2.9" 2690 | resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" 2691 | 2692 | parse-glob@^3.0.4: 2693 | version "3.0.4" 2694 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2695 | dependencies: 2696 | glob-base "^0.3.0" 2697 | is-dotfile "^1.0.0" 2698 | is-extglob "^1.0.0" 2699 | is-glob "^2.0.0" 2700 | 2701 | parse-json@^2.1.0, parse-json@^2.2.0: 2702 | version "2.2.0" 2703 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2704 | dependencies: 2705 | error-ex "^1.2.0" 2706 | 2707 | parse-ms@^0.1.0: 2708 | version "0.1.2" 2709 | resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-0.1.2.tgz#dd3fa25ed6c2efc7bdde12ad9b46c163aa29224e" 2710 | 2711 | parse-ms@^1.0.0: 2712 | version "1.0.1" 2713 | resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-1.0.1.tgz#56346d4749d78f23430ca0c713850aef91aa361d" 2714 | 2715 | path-browserify@0.0.0: 2716 | version "0.0.0" 2717 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 2718 | 2719 | path-exists@^2.0.0: 2720 | version "2.1.0" 2721 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2722 | dependencies: 2723 | pinkie-promise "^2.0.0" 2724 | 2725 | path-is-absolute@^1.0.0: 2726 | version "1.0.1" 2727 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2728 | 2729 | path-is-inside@^1.0.1: 2730 | version "1.0.2" 2731 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2732 | 2733 | path-parse@^1.0.5: 2734 | version "1.0.5" 2735 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2736 | 2737 | path-type@^1.0.0: 2738 | version "1.1.0" 2739 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2740 | dependencies: 2741 | graceful-fs "^4.1.2" 2742 | pify "^2.0.0" 2743 | pinkie-promise "^2.0.0" 2744 | 2745 | pbkdf2-compat@2.0.1: 2746 | version "2.0.1" 2747 | resolved "https://registry.yarnpkg.com/pbkdf2-compat/-/pbkdf2-compat-2.0.1.tgz#b6e0c8fa99494d94e0511575802a59a5c142f288" 2748 | 2749 | pify@^2.0.0: 2750 | version "2.3.0" 2751 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2752 | 2753 | pinkie-promise@^1.0.0: 2754 | version "1.0.0" 2755 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-1.0.0.tgz#d1da67f5482563bb7cf57f286ae2822ecfbf3670" 2756 | dependencies: 2757 | pinkie "^1.0.0" 2758 | 2759 | pinkie-promise@^2.0.0: 2760 | version "2.0.1" 2761 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2762 | dependencies: 2763 | pinkie "^2.0.0" 2764 | 2765 | pinkie@^1.0.0: 2766 | version "1.0.0" 2767 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-1.0.0.tgz#5a47f28ba1015d0201bda7bf0f358e47bec8c7e4" 2768 | 2769 | pinkie@^2.0.0: 2770 | version "2.0.4" 2771 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2772 | 2773 | pkg-conf@^1.0.1: 2774 | version "1.1.3" 2775 | resolved "https://registry.yarnpkg.com/pkg-conf/-/pkg-conf-1.1.3.tgz#378e56d6fd13e88bfb6f4a25df7a83faabddba5b" 2776 | dependencies: 2777 | find-up "^1.0.0" 2778 | load-json-file "^1.1.0" 2779 | object-assign "^4.0.1" 2780 | symbol "^0.2.1" 2781 | 2782 | pkg-dir@^1.0.0: 2783 | version "1.0.0" 2784 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 2785 | dependencies: 2786 | find-up "^1.0.0" 2787 | 2788 | plur@^1.0.0: 2789 | version "1.0.0" 2790 | resolved "https://registry.yarnpkg.com/plur/-/plur-1.0.0.tgz#db85c6814f5e5e5a3b49efc28d604fec62975156" 2791 | 2792 | plur@^2.0.0: 2793 | version "2.1.2" 2794 | resolved "https://registry.yarnpkg.com/plur/-/plur-2.1.2.tgz#7482452c1a0f508e3e344eaec312c91c29dc655a" 2795 | dependencies: 2796 | irregular-plurals "^1.0.0" 2797 | 2798 | power-assert-context-formatter@^1.0.4: 2799 | version "1.1.0" 2800 | resolved "https://registry.yarnpkg.com/power-assert-context-formatter/-/power-assert-context-formatter-1.1.0.tgz#85ec15ec24309528ef1a2303d2c86e44423cd18f" 2801 | dependencies: 2802 | core-js "^2.0.0" 2803 | power-assert-context-traversal "^1.1.0" 2804 | 2805 | power-assert-context-traversal@^1.1.0: 2806 | version "1.1.0" 2807 | resolved "https://registry.yarnpkg.com/power-assert-context-traversal/-/power-assert-context-traversal-1.1.0.tgz#d815975745a26d9280ec363625c819642edf0264" 2808 | dependencies: 2809 | core-js "^2.0.0" 2810 | estraverse "^4.1.0" 2811 | 2812 | power-assert-renderer-assertion@^1.0.1: 2813 | version "1.1.0" 2814 | resolved "https://registry.yarnpkg.com/power-assert-renderer-assertion/-/power-assert-renderer-assertion-1.1.0.tgz#e512c49bdda30f905d601d1d11f7e0094b657ac3" 2815 | dependencies: 2816 | power-assert-renderer-base "^1.1.0" 2817 | power-assert-util-string-width "^1.1.0" 2818 | 2819 | power-assert-renderer-base@^1.1.0: 2820 | version "1.1.0" 2821 | resolved "https://registry.yarnpkg.com/power-assert-renderer-base/-/power-assert-renderer-base-1.1.0.tgz#de8c0132c5ff42ccaab39034487d5c30bda154a5" 2822 | 2823 | power-assert-renderer-diagram@^1.1.0: 2824 | version "1.1.0" 2825 | resolved "https://registry.yarnpkg.com/power-assert-renderer-diagram/-/power-assert-renderer-diagram-1.1.0.tgz#91e28458fba754cb977ed81fe06d3eee4333f14d" 2826 | dependencies: 2827 | core-js "^2.0.0" 2828 | power-assert-renderer-base "^1.1.0" 2829 | power-assert-util-string-width "^1.1.0" 2830 | stringifier "^1.3.0" 2831 | 2832 | power-assert-renderer-succinct@^1.0.1: 2833 | version "1.1.0" 2834 | resolved "https://registry.yarnpkg.com/power-assert-renderer-succinct/-/power-assert-renderer-succinct-1.1.0.tgz#3f024af776eac7aad9b33105b93f7ba18e7ce22d" 2835 | dependencies: 2836 | core-js "^2.0.0" 2837 | power-assert-renderer-diagram "^1.1.0" 2838 | 2839 | power-assert-util-string-width@^1.1.0: 2840 | version "1.1.0" 2841 | resolved "https://registry.yarnpkg.com/power-assert-util-string-width/-/power-assert-util-string-width-1.1.0.tgz#63d2c714c0cddb8dce0e0d7cc5f9851be94ddd98" 2842 | dependencies: 2843 | eastasianwidth "^0.1.1" 2844 | 2845 | prepend-http@^1.0.1: 2846 | version "1.0.4" 2847 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 2848 | 2849 | preserve@^0.2.0: 2850 | version "0.2.0" 2851 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2852 | 2853 | pretty-ms@^0.2.1: 2854 | version "0.2.2" 2855 | resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-0.2.2.tgz#da879a682ff33a37011046f13d627f67c73b84f6" 2856 | dependencies: 2857 | parse-ms "^0.1.0" 2858 | 2859 | pretty-ms@^2.0.0: 2860 | version "2.1.0" 2861 | resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-2.1.0.tgz#4257c256df3fb0b451d6affaab021884126981dc" 2862 | dependencies: 2863 | is-finite "^1.0.1" 2864 | parse-ms "^1.0.0" 2865 | plur "^1.0.0" 2866 | 2867 | private@^0.1.6, private@~0.1.5: 2868 | version "0.1.6" 2869 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.6.tgz#55c6a976d0f9bafb9924851350fe47b9b5fbb7c1" 2870 | 2871 | process-nextick-args@~1.0.6: 2872 | version "1.0.7" 2873 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2874 | 2875 | process@^0.11.0, process@~0.11.0: 2876 | version "0.11.9" 2877 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.9.tgz#7bd5ad21aa6253e7da8682264f1e11d11c0318c1" 2878 | 2879 | prr@~0.0.0: 2880 | version "0.0.0" 2881 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 2882 | 2883 | pseudomap@^1.0.1: 2884 | version "1.0.2" 2885 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2886 | 2887 | punycode@1.3.2: 2888 | version "1.3.2" 2889 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 2890 | 2891 | punycode@^1.2.4, punycode@^1.4.1: 2892 | version "1.4.1" 2893 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2894 | 2895 | qs@~6.3.0: 2896 | version "6.3.0" 2897 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.0.tgz#f403b264f23bc01228c74131b407f18d5ea5d442" 2898 | 2899 | querystring-es3@~0.2.0: 2900 | version "0.2.1" 2901 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 2902 | 2903 | querystring@0.2.0: 2904 | version "0.2.0" 2905 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 2906 | 2907 | randomatic@^1.1.3: 2908 | version "1.1.5" 2909 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.5.tgz#5e9ef5f2d573c67bd2b8124ae90b5156e457840b" 2910 | dependencies: 2911 | is-number "^2.0.2" 2912 | kind-of "^3.0.2" 2913 | 2914 | rc@^1.0.1, rc@^1.1.6, rc@~1.1.6: 2915 | version "1.1.6" 2916 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.6.tgz#43651b76b6ae53b5c802f1151fa3fc3b059969c9" 2917 | dependencies: 2918 | deep-extend "~0.4.0" 2919 | ini "~1.3.0" 2920 | minimist "^1.2.0" 2921 | strip-json-comments "~1.0.4" 2922 | 2923 | read-all-stream@^3.0.0: 2924 | version "3.1.0" 2925 | resolved "https://registry.yarnpkg.com/read-all-stream/-/read-all-stream-3.1.0.tgz#35c3e177f2078ef789ee4bfafa4373074eaef4fa" 2926 | dependencies: 2927 | pinkie-promise "^2.0.0" 2928 | readable-stream "^2.0.0" 2929 | 2930 | read-pkg-up@^1.0.1: 2931 | version "1.0.1" 2932 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2933 | dependencies: 2934 | find-up "^1.0.0" 2935 | read-pkg "^1.0.0" 2936 | 2937 | read-pkg@^1.0.0: 2938 | version "1.1.0" 2939 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2940 | dependencies: 2941 | load-json-file "^1.0.0" 2942 | normalize-package-data "^2.3.2" 2943 | path-type "^1.0.0" 2944 | 2945 | readable-stream@^1.0.27-1, readable-stream@^1.1.13: 2946 | version "1.1.14" 2947 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" 2948 | dependencies: 2949 | core-util-is "~1.0.0" 2950 | inherits "~2.0.1" 2951 | isarray "0.0.1" 2952 | string_decoder "~0.10.x" 2953 | 2954 | readable-stream@^2.0.0, "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@~2.1.4: 2955 | version "2.1.5" 2956 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" 2957 | dependencies: 2958 | buffer-shims "^1.0.0" 2959 | core-util-is "~1.0.0" 2960 | inherits "~2.0.1" 2961 | isarray "~1.0.0" 2962 | process-nextick-args "~1.0.6" 2963 | string_decoder "~0.10.x" 2964 | util-deprecate "~1.0.1" 2965 | 2966 | readable-stream@~2.0.0: 2967 | version "2.0.6" 2968 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" 2969 | dependencies: 2970 | core-util-is "~1.0.0" 2971 | inherits "~2.0.1" 2972 | isarray "~1.0.0" 2973 | process-nextick-args "~1.0.6" 2974 | string_decoder "~0.10.x" 2975 | util-deprecate "~1.0.1" 2976 | 2977 | readdirp@^2.0.0: 2978 | version "2.1.0" 2979 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2980 | dependencies: 2981 | graceful-fs "^4.1.2" 2982 | minimatch "^3.0.2" 2983 | readable-stream "^2.0.2" 2984 | set-immediate-shim "^1.0.1" 2985 | 2986 | redent@^1.0.0: 2987 | version "1.0.0" 2988 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 2989 | dependencies: 2990 | indent-string "^2.1.0" 2991 | strip-indent "^1.0.1" 2992 | 2993 | regenerate@^1.2.1: 2994 | version "1.3.1" 2995 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.1.tgz#0300203a5d2fdcf89116dce84275d011f5903f33" 2996 | 2997 | regenerator-runtime@^0.9.5: 2998 | version "0.9.6" 2999 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.9.6.tgz#d33eb95d0d2001a4be39659707c51b0cb71ce029" 3000 | 3001 | regex-cache@^0.4.2: 3002 | version "0.4.3" 3003 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 3004 | dependencies: 3005 | is-equal-shallow "^0.1.3" 3006 | is-primitive "^2.0.0" 3007 | 3008 | regexpu-core@^2.0.0: 3009 | version "2.0.0" 3010 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 3011 | dependencies: 3012 | regenerate "^1.2.1" 3013 | regjsgen "^0.2.0" 3014 | regjsparser "^0.1.4" 3015 | 3016 | registry-auth-token@^3.0.1: 3017 | version "3.1.0" 3018 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.1.0.tgz#997c08256e0c7999837b90e944db39d8a790276b" 3019 | dependencies: 3020 | rc "^1.1.6" 3021 | 3022 | registry-url@^3.0.3: 3023 | version "3.1.0" 3024 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 3025 | dependencies: 3026 | rc "^1.0.1" 3027 | 3028 | regjsgen@^0.2.0: 3029 | version "0.2.0" 3030 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 3031 | 3032 | regjsparser@^0.1.4: 3033 | version "0.1.5" 3034 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 3035 | dependencies: 3036 | jsesc "~0.5.0" 3037 | 3038 | repeat-element@^1.1.2: 3039 | version "1.1.2" 3040 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3041 | 3042 | repeat-string@^1.5.2: 3043 | version "1.6.1" 3044 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3045 | 3046 | repeating@^2.0.0: 3047 | version "2.0.1" 3048 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3049 | dependencies: 3050 | is-finite "^1.0.0" 3051 | 3052 | request@^2.75.0: 3053 | version "2.78.0" 3054 | resolved "https://registry.yarnpkg.com/request/-/request-2.78.0.tgz#e1c8dec346e1c81923b24acdb337f11decabe9cc" 3055 | dependencies: 3056 | aws-sign2 "~0.6.0" 3057 | aws4 "^1.2.1" 3058 | caseless "~0.11.0" 3059 | combined-stream "~1.0.5" 3060 | extend "~3.0.0" 3061 | forever-agent "~0.6.1" 3062 | form-data "~2.1.1" 3063 | har-validator "~2.0.6" 3064 | hawk "~3.1.3" 3065 | http-signature "~1.1.0" 3066 | is-typedarray "~1.0.0" 3067 | isstream "~0.1.2" 3068 | json-stringify-safe "~5.0.1" 3069 | mime-types "~2.1.7" 3070 | node-uuid "~1.4.7" 3071 | oauth-sign "~0.8.1" 3072 | qs "~6.3.0" 3073 | stringstream "~0.0.4" 3074 | tough-cookie "~2.3.0" 3075 | tunnel-agent "~0.4.1" 3076 | 3077 | require-directory@^2.1.1: 3078 | version "2.1.1" 3079 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3080 | 3081 | require-main-filename@^1.0.1: 3082 | version "1.0.1" 3083 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3084 | 3085 | require-precompiled@^0.1.0: 3086 | version "0.1.0" 3087 | resolved "https://registry.yarnpkg.com/require-precompiled/-/require-precompiled-0.1.0.tgz#5a1b52eb70ebed43eb982e974c85ab59571e56fa" 3088 | 3089 | resolve-cwd@^1.0.0: 3090 | version "1.0.0" 3091 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-1.0.0.tgz#4eaeea41ed040d1702457df64a42b2b07d246f9f" 3092 | dependencies: 3093 | resolve-from "^2.0.0" 3094 | 3095 | resolve-dir@^0.1.0: 3096 | version "0.1.1" 3097 | resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-0.1.1.tgz#b219259a5602fac5c5c496ad894a6e8cc430261e" 3098 | dependencies: 3099 | expand-tilde "^1.2.2" 3100 | global-modules "^0.2.3" 3101 | 3102 | resolve-from@^2.0.0: 3103 | version "2.0.0" 3104 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57" 3105 | 3106 | restore-cursor@^1.0.1: 3107 | version "1.0.1" 3108 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 3109 | dependencies: 3110 | exit-hook "^1.0.0" 3111 | onetime "^1.0.0" 3112 | 3113 | right-align@^0.1.1: 3114 | version "0.1.3" 3115 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3116 | dependencies: 3117 | align-text "^0.1.1" 3118 | 3119 | rimraf@2, rimraf@^2.2.8, rimraf@^2.3.3, rimraf@^2.4.3, rimraf@^2.4.4, rimraf@^2.5.2, rimraf@^2.5.4, rimraf@~2.5.1, rimraf@~2.5.4: 3120 | version "2.5.4" 3121 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" 3122 | dependencies: 3123 | glob "^7.0.5" 3124 | 3125 | ripemd160@0.2.0: 3126 | version "0.2.0" 3127 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-0.2.0.tgz#2bf198bde167cacfa51c0a928e84b68bbe171fce" 3128 | 3129 | semver-diff@^2.0.0: 3130 | version "2.1.0" 3131 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 3132 | dependencies: 3133 | semver "^5.0.3" 3134 | 3135 | "semver@2 || 3 || 4 || 5", semver@^5.0.1, semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, semver@~5.3.0: 3136 | version "5.3.0" 3137 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 3138 | 3139 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3140 | version "2.0.0" 3141 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3142 | 3143 | set-getter@^0.1.0: 3144 | version "0.1.0" 3145 | resolved "https://registry.yarnpkg.com/set-getter/-/set-getter-0.1.0.tgz#d769c182c9d5a51f409145f2fba82e5e86e80376" 3146 | dependencies: 3147 | to-object-path "^0.3.0" 3148 | 3149 | set-immediate-shim@^1.0.1: 3150 | version "1.0.1" 3151 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3152 | 3153 | sha.js@2.2.6: 3154 | version "2.2.6" 3155 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.2.6.tgz#17ddeddc5f722fb66501658895461977867315ba" 3156 | 3157 | signal-exit@^2.0.0: 3158 | version "2.1.2" 3159 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-2.1.2.tgz#375879b1f92ebc3b334480d038dc546a6d558564" 3160 | 3161 | signal-exit@^3.0.0, signal-exit@^3.0.1: 3162 | version "3.0.1" 3163 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.1.tgz#5a4c884992b63a7acd9badb7894c3ee9cfccad81" 3164 | 3165 | slash@^1.0.0: 3166 | version "1.0.0" 3167 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3168 | 3169 | slice-ansi@0.0.4: 3170 | version "0.0.4" 3171 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 3172 | 3173 | slide@^1.1.5: 3174 | version "1.1.6" 3175 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 3176 | 3177 | sntp@1.x.x: 3178 | version "1.0.9" 3179 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3180 | dependencies: 3181 | hoek "2.x.x" 3182 | 3183 | sort-keys@^1.1.1: 3184 | version "1.1.2" 3185 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" 3186 | dependencies: 3187 | is-plain-obj "^1.0.0" 3188 | 3189 | source-list-map@~0.1.0: 3190 | version "0.1.6" 3191 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-0.1.6.tgz#e1e6f94f0b40c4d28dcf8f5b8766e0e45636877f" 3192 | 3193 | source-map-support@^0.4.0, source-map-support@^0.4.2: 3194 | version "0.4.6" 3195 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.6.tgz#32552aa64b458392a85eab3b0b5ee61527167aeb" 3196 | dependencies: 3197 | source-map "^0.5.3" 3198 | 3199 | source-map@^0.4.4, source-map@~0.4.1: 3200 | version "0.4.4" 3201 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3202 | dependencies: 3203 | amdefine ">=0.0.4" 3204 | 3205 | source-map@^0.5.0, source-map@^0.5.3, source-map@~0.5.1: 3206 | version "0.5.6" 3207 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 3208 | 3209 | spawn-wrap@^1.2.4: 3210 | version "1.2.4" 3211 | resolved "https://registry.yarnpkg.com/spawn-wrap/-/spawn-wrap-1.2.4.tgz#920eb211a769c093eebfbd5b0e7a5d2e68ab2e40" 3212 | dependencies: 3213 | foreground-child "^1.3.3" 3214 | mkdirp "^0.5.0" 3215 | os-homedir "^1.0.1" 3216 | rimraf "^2.3.3" 3217 | signal-exit "^2.0.0" 3218 | which "^1.2.4" 3219 | 3220 | spdx-correct@~1.0.0: 3221 | version "1.0.2" 3222 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3223 | dependencies: 3224 | spdx-license-ids "^1.0.2" 3225 | 3226 | spdx-expression-parse@~1.0.0: 3227 | version "1.0.4" 3228 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3229 | 3230 | spdx-license-ids@^1.0.2: 3231 | version "1.2.2" 3232 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3233 | 3234 | sshpk@^1.7.0: 3235 | version "1.10.1" 3236 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.10.1.tgz#30e1a5d329244974a1af61511339d595af6638b0" 3237 | dependencies: 3238 | asn1 "~0.2.3" 3239 | assert-plus "^1.0.0" 3240 | dashdash "^1.12.0" 3241 | getpass "^0.1.1" 3242 | optionalDependencies: 3243 | bcrypt-pbkdf "^1.0.0" 3244 | ecc-jsbn "~0.1.1" 3245 | jodid25519 "^1.0.0" 3246 | jsbn "~0.1.0" 3247 | tweetnacl "~0.14.0" 3248 | 3249 | stack-utils@^0.4.0: 3250 | version "0.4.0" 3251 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-0.4.0.tgz#940cb82fccfa84e8ff2f3fdf293fe78016beccd1" 3252 | 3253 | stream-browserify@^1.0.0: 3254 | version "1.0.0" 3255 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-1.0.0.tgz#bf9b4abfb42b274d751479e44e0ff2656b6f1193" 3256 | dependencies: 3257 | inherits "~2.0.1" 3258 | readable-stream "^1.0.27-1" 3259 | 3260 | string-width@^1.0.1, string-width@^1.0.2: 3261 | version "1.0.2" 3262 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3263 | dependencies: 3264 | code-point-at "^1.0.0" 3265 | is-fullwidth-code-point "^1.0.0" 3266 | strip-ansi "^3.0.0" 3267 | 3268 | string_decoder@~0.10.25, string_decoder@~0.10.x: 3269 | version "0.10.31" 3270 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 3271 | 3272 | stringifier@^1.3.0: 3273 | version "1.3.0" 3274 | resolved "https://registry.yarnpkg.com/stringifier/-/stringifier-1.3.0.tgz#def18342f6933db0f2dbfc9aa02175b448c17959" 3275 | dependencies: 3276 | core-js "^2.0.0" 3277 | traverse "^0.6.6" 3278 | type-name "^2.0.1" 3279 | 3280 | stringstream@~0.0.4: 3281 | version "0.0.5" 3282 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3283 | 3284 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3285 | version "3.0.1" 3286 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3287 | dependencies: 3288 | ansi-regex "^2.0.0" 3289 | 3290 | strip-ansi@~0.1.0: 3291 | version "0.1.1" 3292 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-0.1.1.tgz#39e8a98d044d150660abe4a6808acf70bb7bc991" 3293 | 3294 | strip-bom@^2.0.0: 3295 | version "2.0.0" 3296 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3297 | dependencies: 3298 | is-utf8 "^0.2.0" 3299 | 3300 | strip-indent@^1.0.1: 3301 | version "1.0.1" 3302 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 3303 | dependencies: 3304 | get-stdin "^4.0.1" 3305 | 3306 | strip-json-comments@~1.0.4: 3307 | version "1.0.4" 3308 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" 3309 | 3310 | supports-color@^2.0.0: 3311 | version "2.0.0" 3312 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3313 | 3314 | supports-color@^3.1.0, supports-color@^3.1.2: 3315 | version "3.1.2" 3316 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" 3317 | dependencies: 3318 | has-flag "^1.0.0" 3319 | 3320 | supports-color@^4.0.0: 3321 | version "4.4.0" 3322 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.4.0.tgz#883f7ddabc165142b2a61427f3352ded195d1a3e" 3323 | dependencies: 3324 | has-flag "^2.0.0" 3325 | 3326 | symbol-observable@^0.2.2: 3327 | version "0.2.4" 3328 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-0.2.4.tgz#95a83db26186d6af7e7a18dbd9760a2f86d08f40" 3329 | 3330 | symbol@^0.2.1: 3331 | version "0.2.3" 3332 | resolved "https://registry.yarnpkg.com/symbol/-/symbol-0.2.3.tgz#3b9873b8a901e47c6efe21526a3ac372ef28bbc7" 3333 | 3334 | tapable@^0.1.8, tapable@~0.1.8: 3335 | version "0.1.10" 3336 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.1.10.tgz#29c35707c2b70e50d07482b5d202e8ed446dafd4" 3337 | 3338 | tapable@^0.2.7: 3339 | version "0.2.8" 3340 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.8.tgz#99372a5c999bf2df160afc0d74bed4f47948cd22" 3341 | 3342 | tar-pack@~3.3.0: 3343 | version "3.3.0" 3344 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.3.0.tgz#30931816418f55afc4d21775afdd6720cee45dae" 3345 | dependencies: 3346 | debug "~2.2.0" 3347 | fstream "~1.0.10" 3348 | fstream-ignore "~1.0.5" 3349 | once "~1.3.3" 3350 | readable-stream "~2.1.4" 3351 | rimraf "~2.5.1" 3352 | tar "~2.2.1" 3353 | uid-number "~0.0.6" 3354 | 3355 | tar@~2.2.1: 3356 | version "2.2.1" 3357 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3358 | dependencies: 3359 | block-stream "*" 3360 | fstream "^1.0.2" 3361 | inherits "2" 3362 | 3363 | test-exclude@^2.1.3: 3364 | version "2.1.3" 3365 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-2.1.3.tgz#a8d8968e1da83266f9864f2852c55e220f06434a" 3366 | dependencies: 3367 | arrify "^1.0.1" 3368 | micromatch "^2.3.11" 3369 | object-assign "^4.1.0" 3370 | read-pkg-up "^1.0.1" 3371 | require-main-filename "^1.0.1" 3372 | 3373 | text-table@^0.2.0: 3374 | version "0.2.0" 3375 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3376 | 3377 | the-argv@^1.0.0: 3378 | version "1.0.0" 3379 | resolved "https://registry.yarnpkg.com/the-argv/-/the-argv-1.0.0.tgz#0084705005730dd84db755253c931ae398db9522" 3380 | 3381 | through2@^2.0.0: 3382 | version "2.0.1" 3383 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.1.tgz#384e75314d49f32de12eebb8136b8eb6b5d59da9" 3384 | dependencies: 3385 | readable-stream "~2.0.0" 3386 | xtend "~4.0.0" 3387 | 3388 | time-require@^0.1.2: 3389 | version "0.1.2" 3390 | resolved "https://registry.yarnpkg.com/time-require/-/time-require-0.1.2.tgz#f9e12cb370fc2605e11404582ba54ef5ca2b2d98" 3391 | dependencies: 3392 | chalk "^0.4.0" 3393 | date-time "^0.1.1" 3394 | pretty-ms "^0.2.1" 3395 | text-table "^0.2.0" 3396 | 3397 | timed-out@^3.0.0: 3398 | version "3.0.0" 3399 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-3.0.0.tgz#ff88de96030ce960eabd42487db61d3add229273" 3400 | 3401 | timers-browserify@^1.0.1: 3402 | version "1.4.2" 3403 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-1.4.2.tgz#c9c58b575be8407375cb5e2462dacee74359f41d" 3404 | dependencies: 3405 | process "~0.11.0" 3406 | 3407 | to-fast-properties@^1.0.1: 3408 | version "1.0.2" 3409 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 3410 | 3411 | to-object-path@^0.3.0: 3412 | version "0.3.0" 3413 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 3414 | dependencies: 3415 | kind-of "^3.0.2" 3416 | 3417 | tough-cookie@~2.3.0: 3418 | version "2.3.2" 3419 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3420 | dependencies: 3421 | punycode "^1.4.1" 3422 | 3423 | traverse@^0.6.6: 3424 | version "0.6.6" 3425 | resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.6.tgz#cbdf560fd7b9af632502fed40f918c157ea97137" 3426 | 3427 | trim-newlines@^1.0.0: 3428 | version "1.0.0" 3429 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 3430 | 3431 | ts-loader@^2.3.7: 3432 | version "2.3.7" 3433 | resolved "https://registry.yarnpkg.com/ts-loader/-/ts-loader-2.3.7.tgz#a9028ced473bee12f28a75f9c5b139979d33f2fc" 3434 | dependencies: 3435 | chalk "^2.0.1" 3436 | enhanced-resolve "^3.0.0" 3437 | loader-utils "^1.0.2" 3438 | semver "^5.0.1" 3439 | 3440 | tty-browserify@0.0.0: 3441 | version "0.0.0" 3442 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 3443 | 3444 | tunnel-agent@~0.4.1: 3445 | version "0.4.3" 3446 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 3447 | 3448 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3449 | version "0.14.3" 3450 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.3.tgz#3da382f670f25ded78d7b3d1792119bca0b7132d" 3451 | 3452 | type-name@^2.0.1: 3453 | version "2.0.2" 3454 | resolved "https://registry.yarnpkg.com/type-name/-/type-name-2.0.2.tgz#efe7d4123d8ac52afff7f40c7e4dec5266008fb4" 3455 | 3456 | typescript@^2.5.2: 3457 | version "2.5.2" 3458 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.5.2.tgz#038a95f7d9bbb420b1bf35ba31d4c5c1dd3ffe34" 3459 | 3460 | uglify-js@^2.6, uglify-js@~2.7.3: 3461 | version "2.7.4" 3462 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.7.4.tgz#a295a0de12b6a650c031c40deb0dc40b14568bd2" 3463 | dependencies: 3464 | async "~0.2.6" 3465 | source-map "~0.5.1" 3466 | uglify-to-browserify "~1.0.0" 3467 | yargs "~3.10.0" 3468 | 3469 | uglify-to-browserify@~1.0.0: 3470 | version "1.0.2" 3471 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3472 | 3473 | uid-number@~0.0.6: 3474 | version "0.0.6" 3475 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3476 | 3477 | uid2@0.0.3: 3478 | version "0.0.3" 3479 | resolved "https://registry.yarnpkg.com/uid2/-/uid2-0.0.3.tgz#483126e11774df2f71b8b639dcd799c376162b82" 3480 | 3481 | unique-temp-dir@^1.0.0: 3482 | version "1.0.0" 3483 | resolved "https://registry.yarnpkg.com/unique-temp-dir/-/unique-temp-dir-1.0.0.tgz#6dce95b2681ca003eebfb304a415f9cbabcc5385" 3484 | dependencies: 3485 | mkdirp "^0.5.1" 3486 | os-tmpdir "^1.0.1" 3487 | uid2 "0.0.3" 3488 | 3489 | unzip-response@^1.0.2: 3490 | version "1.0.2" 3491 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-1.0.2.tgz#b984f0877fc0a89c2c773cc1ef7b5b232b5b06fe" 3492 | 3493 | update-notifier@^1.0.0: 3494 | version "1.0.2" 3495 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-1.0.2.tgz#27c90519196dc15015be02a34ea52986feab8877" 3496 | dependencies: 3497 | boxen "^0.6.0" 3498 | chalk "^1.0.0" 3499 | configstore "^2.0.0" 3500 | is-npm "^1.0.0" 3501 | latest-version "^2.0.0" 3502 | lazy-req "^1.1.0" 3503 | semver-diff "^2.0.0" 3504 | xdg-basedir "^2.0.0" 3505 | 3506 | url-parse-lax@^1.0.0: 3507 | version "1.0.0" 3508 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" 3509 | dependencies: 3510 | prepend-http "^1.0.1" 3511 | 3512 | url@~0.10.1: 3513 | version "0.10.3" 3514 | resolved "https://registry.yarnpkg.com/url/-/url-0.10.3.tgz#021e4d9c7705f21bbf37d03ceb58767402774c64" 3515 | dependencies: 3516 | punycode "1.3.2" 3517 | querystring "0.2.0" 3518 | 3519 | util-deprecate@~1.0.1: 3520 | version "1.0.2" 3521 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3522 | 3523 | util@0.10.3, util@~0.10.3: 3524 | version "0.10.3" 3525 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 3526 | dependencies: 3527 | inherits "2.0.1" 3528 | 3529 | uuid@^2.0.1: 3530 | version "2.0.3" 3531 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" 3532 | 3533 | validate-npm-package-license@^3.0.1: 3534 | version "3.0.1" 3535 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3536 | dependencies: 3537 | spdx-correct "~1.0.0" 3538 | spdx-expression-parse "~1.0.0" 3539 | 3540 | verror@1.3.6: 3541 | version "1.3.6" 3542 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 3543 | dependencies: 3544 | extsprintf "1.0.2" 3545 | 3546 | vm-browserify@0.0.4: 3547 | version "0.0.4" 3548 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 3549 | dependencies: 3550 | indexof "0.0.1" 3551 | 3552 | watchpack@^0.2.1: 3553 | version "0.2.9" 3554 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-0.2.9.tgz#62eaa4ab5e5ba35fdfc018275626e3c0f5e3fb0b" 3555 | dependencies: 3556 | async "^0.9.0" 3557 | chokidar "^1.0.0" 3558 | graceful-fs "^4.1.2" 3559 | 3560 | webpack: 3561 | version "1.13.3" 3562 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-1.13.3.tgz#e79c46fe5a37c5ca70084ba0894c595cdcb42815" 3563 | dependencies: 3564 | acorn "^3.0.0" 3565 | async "^1.3.0" 3566 | clone "^1.0.2" 3567 | enhanced-resolve "~0.9.0" 3568 | interpret "^0.6.4" 3569 | loader-utils "^0.2.11" 3570 | memory-fs "~0.3.0" 3571 | mkdirp "~0.5.0" 3572 | node-libs-browser "^0.6.0" 3573 | optimist "~0.6.0" 3574 | supports-color "^3.1.0" 3575 | tapable "~0.1.8" 3576 | uglify-js "~2.7.3" 3577 | watchpack "^0.2.1" 3578 | webpack-core "~0.6.0" 3579 | 3580 | webpack-core@~0.6.0: 3581 | version "0.6.8" 3582 | resolved "https://registry.yarnpkg.com/webpack-core/-/webpack-core-0.6.8.tgz#edf9135de00a6a3c26dd0f14b208af0aa4af8d0a" 3583 | dependencies: 3584 | source-list-map "~0.1.0" 3585 | source-map "~0.4.1" 3586 | 3587 | webpack-node-externals: 3588 | version "1.5.4" 3589 | resolved "https://registry.yarnpkg.com/webpack-node-externals/-/webpack-node-externals-1.5.4.tgz#ea05ba17108a23e776c35c42e7bb0e86c225be00" 3590 | 3591 | webpack-progress-plugin: 3592 | version "1.1.0" 3593 | resolved "https://registry.yarnpkg.com/webpack-progress-plugin/-/webpack-progress-plugin-1.1.0.tgz#c32b70c0dca3dc28464f98eedbd44643feac7e48" 3594 | dependencies: 3595 | ansi-escapes "^1.1.0" 3596 | ansi-styles "^2.1.0" 3597 | object.assign "^3.0.1" 3598 | 3599 | which-module@^1.0.0: 3600 | version "1.0.0" 3601 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 3602 | 3603 | which@^1.2.10: 3604 | version "1.2.12" 3605 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.12.tgz#de67b5e450269f194909ef23ece4ebe416fa1192" 3606 | dependencies: 3607 | isexe "^1.1.1" 3608 | 3609 | which@^1.2.4, which@^1.2.9: 3610 | version "1.2.11" 3611 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.11.tgz#c8b2eeea6b8c1659fa7c1dd4fdaabe9533dc5e8b" 3612 | dependencies: 3613 | isexe "^1.1.1" 3614 | 3615 | wide-align@^1.1.0: 3616 | version "1.1.0" 3617 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 3618 | dependencies: 3619 | string-width "^1.0.1" 3620 | 3621 | widest-line@^1.0.0: 3622 | version "1.0.0" 3623 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-1.0.0.tgz#0c09c85c2a94683d0d7eaf8ee097d564bf0e105c" 3624 | dependencies: 3625 | string-width "^1.0.1" 3626 | 3627 | window-size@0.1.0: 3628 | version "0.1.0" 3629 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3630 | 3631 | window-size@^0.2.0: 3632 | version "0.2.0" 3633 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.2.0.tgz#b4315bb4214a3d7058ebeee892e13fa24d98b075" 3634 | 3635 | wordwrap@0.0.2: 3636 | version "0.0.2" 3637 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3638 | 3639 | wordwrap@~0.0.2: 3640 | version "0.0.3" 3641 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3642 | 3643 | wrap-ansi@^2.0.0: 3644 | version "2.0.0" 3645 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.0.0.tgz#7d30f8f873f9a5bbc3a64dabc8d177e071ae426f" 3646 | dependencies: 3647 | string-width "^1.0.1" 3648 | 3649 | wrappy@1: 3650 | version "1.0.2" 3651 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3652 | 3653 | write-file-atomic@^1.1.2, write-file-atomic@^1.1.4: 3654 | version "1.2.0" 3655 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.2.0.tgz#14c66d4e4cb3ca0565c28cf3b7a6f3e4d5938fab" 3656 | dependencies: 3657 | graceful-fs "^4.1.2" 3658 | imurmurhash "^0.1.4" 3659 | slide "^1.1.5" 3660 | 3661 | write-json-file@^1.1.0: 3662 | version "1.2.0" 3663 | resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-1.2.0.tgz#2d5dfe96abc3c889057c93971aa4005efb548134" 3664 | dependencies: 3665 | graceful-fs "^4.1.2" 3666 | mkdirp "^0.5.1" 3667 | object-assign "^4.0.1" 3668 | pify "^2.0.0" 3669 | pinkie-promise "^2.0.0" 3670 | sort-keys "^1.1.1" 3671 | write-file-atomic "^1.1.2" 3672 | 3673 | write-pkg@^1.0.0: 3674 | version "1.0.0" 3675 | resolved "https://registry.yarnpkg.com/write-pkg/-/write-pkg-1.0.0.tgz#aeb8aa9d4d788e1d893dfb0854968b543a919f57" 3676 | dependencies: 3677 | write-json-file "^1.1.0" 3678 | 3679 | xdg-basedir@^2.0.0: 3680 | version "2.0.0" 3681 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-2.0.0.tgz#edbc903cc385fc04523d966a335504b5504d1bd2" 3682 | dependencies: 3683 | os-homedir "^1.0.0" 3684 | 3685 | xtend@^4.0.0, xtend@~4.0.0: 3686 | version "4.0.1" 3687 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3688 | 3689 | y18n@^3.2.1: 3690 | version "3.2.1" 3691 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3692 | 3693 | yallist@^2.0.0: 3694 | version "2.0.0" 3695 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.0.0.tgz#306c543835f09ee1a4cb23b7bce9ab341c91cdd4" 3696 | 3697 | yargs, yargs@^6.0.0: 3698 | version "6.3.0" 3699 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.3.0.tgz#19c6dbb768744d571eb6ebae0c174cf2f71b188d" 3700 | dependencies: 3701 | camelcase "^3.0.0" 3702 | cliui "^3.2.0" 3703 | decamelize "^1.1.1" 3704 | get-caller-file "^1.0.1" 3705 | os-locale "^1.4.0" 3706 | read-pkg-up "^1.0.1" 3707 | require-directory "^2.1.1" 3708 | require-main-filename "^1.0.1" 3709 | set-blocking "^2.0.0" 3710 | string-width "^1.0.2" 3711 | which-module "^1.0.0" 3712 | window-size "^0.2.0" 3713 | y18n "^3.2.1" 3714 | yargs-parser "^4.0.2" 3715 | 3716 | yargs-parser@^4.0.2: 3717 | version "4.1.0" 3718 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.1.0.tgz#313df030f20124124aeae8fbab2da53ec28c56d7" 3719 | dependencies: 3720 | camelcase "^3.0.0" 3721 | 3722 | yargs@~3.10.0: 3723 | version "3.10.0" 3724 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3725 | dependencies: 3726 | camelcase "^1.0.2" 3727 | cliui "^2.1.0" 3728 | decamelize "^1.0.0" 3729 | window-size "0.1.0" 3730 | 3731 | Trace: 3732 | Error: canceled 3733 | at Interface. (/Users/ionut/.npm-packages/lib/node_modules/yarn/lib/cli.js:115284:13) 3734 | at emitNone (events.js:105:13) 3735 | at Interface.emit (events.js:207:7) 3736 | at Interface._ttyWrite (readline.js:770:16) 3737 | at ReadStream.onkeypress (readline.js:158:10) 3738 | at emitTwo (events.js:125:13) 3739 | at ReadStream.emit (events.js:213:7) 3740 | at emitKeys (internal/readline.js:420:14) 3741 | at emitKeys.next () 3742 | at ReadStream.onData (readline.js:1007:36) 3743 | --------------------------------------------------------------------------------