├── CHANGELOG.md ├── .flowconfig ├── .travis.yml ├── .npmignore ├── src ├── definitions │ ├── init.js │ └── index.js ├── index.test.js ├── index.js └── __snapshots__ │ └── index.test.js.snap ├── .babelrc ├── generate ├── index.js ├── helpers.js ├── docs.js ├── flowtypes.js └── definitions.js ├── .gitignore ├── README.md ├── package.json ├── api.md └── yarn.lock /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | 3 | [include] 4 | 5 | [libs] 6 | 7 | [lints] 8 | 9 | [options] 10 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 8 4 | 5 | cache: yarn 6 | 7 | install: 8 | - yarn 9 | - yarn build -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .babelrc 2 | .flowconfig 3 | src/**/*.test.js 4 | lib/**/*.test.js 5 | src/**/__snapshots__ 6 | lib/**/__snapshots__ 7 | -------------------------------------------------------------------------------- /src/definitions/init.js: -------------------------------------------------------------------------------- 1 | import defineType from "./index"; 2 | import graphqlDef from "./graphql"; 3 | 4 | graphqlDef().forEach(([name, params]) => defineType(name, params)); 5 | -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | [ 4 | "env", 5 | { 6 | "targets": { 7 | "node": "6.10" 8 | } 9 | } 10 | ], 11 | "flow" 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /generate/index.js: -------------------------------------------------------------------------------- 1 | const { resolve } = require('path'); 2 | const { writeFileSync, readFileSync } = require('fs'); 3 | 4 | const { parse } = require('flow-parser'); 5 | const generateDefinitionFile = require('./definitions'); 6 | const generateFlowTypesFile = require('./flowtypes'); 7 | const generateDocFile = require('./docs'); 8 | 9 | // Generate Flow AST 10 | const loadAST = () => { 11 | const astFilePath = resolve(__dirname, '../node_modules/graphql/language/ast.js.flow'); 12 | const astFile = readFileSync(astFilePath).toString(); 13 | const ast = parse(astFile); 14 | 15 | return ast; 16 | }; 17 | 18 | const definitionOutputPath = resolve(__dirname, '../src/definitions/graphql.js'); 19 | writeFileSync(definitionOutputPath, generateDefinitionFile(loadAST())); 20 | 21 | const flowtypeOutputPath = resolve(__dirname, '../src/index.js.flow'); 22 | writeFileSync(flowtypeOutputPath, generateFlowTypesFile(loadAST())); 23 | 24 | const docFileOutputPath = resolve(__dirname, '../api.md'); 25 | writeFileSync(docFileOutputPath, generateDocFile(loadAST())); 26 | 27 | console.log('Save & Done.'); 28 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | *.pid.lock 13 | 14 | # Directory for instrumented libs generated by jscoverage/JSCover 15 | lib-cov 16 | 17 | # Coverage directory used by tools like istanbul 18 | coverage 19 | 20 | # nyc test coverage 21 | .nyc_output 22 | 23 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 24 | .grunt 25 | 26 | # Bower dependency directory (https://bower.io/) 27 | bower_components 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # Compiled binary addons (https://nodejs.org/api/addons.html) 33 | build/Release 34 | 35 | # Dependency directories 36 | node_modules 37 | jspm_packages 38 | 39 | # Typescript v1 declaration files 40 | typings/ 41 | 42 | # Optional npm cache directory 43 | .npm 44 | 45 | # Optional eslint cache 46 | .eslintcache 47 | 48 | # Optional REPL history 49 | .node_repl_history 50 | 51 | # Output of 'npm pack' 52 | *.tgz 53 | 54 | # Yarn Integrity file 55 | .yarn-integrity 56 | 57 | # dotenv environment variables file 58 | .env 59 | 60 | lib 61 | 62 | ##################################### 63 | # GENERATED FILES 64 | ##################################### 65 | src/definitions/graphql.js 66 | src/index.js.flow 67 | -------------------------------------------------------------------------------- /src/index.test.js: -------------------------------------------------------------------------------- 1 | import * as t from "./index"; 2 | import { print } from "graphql/language"; 3 | import stripIndent from "strip-indent"; 4 | 5 | describe("GraphQL AST types", () => { 6 | it("can print queries and mutations with simple fields", () => { 7 | const ast = t.document([ 8 | t.operationDefinition( 9 | "query", 10 | t.selectionSet([t.field(t.name("foo")), t.field(t.name("bar"))]) 11 | ), 12 | t.operationDefinition( 13 | "mutation", 14 | t.selectionSet([t.field(t.name("foo")), t.field(t.name("bar"))]) 15 | ) 16 | ]); 17 | 18 | expect(print(ast).trim()).toEqual( 19 | stripIndent(` 20 | { 21 | foo 22 | bar 23 | } 24 | 25 | mutation { 26 | foo 27 | bar 28 | } 29 | `).trim() 30 | ); 31 | }); 32 | 33 | describe("GraphQL Definitions", () => { 34 | it("matches the existing snapshot", () => { 35 | expect(t.NODE_FIELDS).toMatchSnapshot("Node Fields"); 36 | expect(t.ALIAS_KEYS).toMatchSnapshot("Alias Keys"); 37 | expect(t.BUILDER_KEYS).toMatchSnapshot("Builder Keys"); 38 | expect(t.FLIPPED_ALIAS_KEYS).toMatchSnapshot("Flipped Alias Keys"); 39 | }); 40 | }); 41 | 42 | describe("nonNull", () => { 43 | it("should accept the following", () => { 44 | const nonNullFn = () => t.nonNullType(t.namedType(t.name("User"))); 45 | expect(nonNullFn).not.toThrow(); 46 | }); 47 | }); 48 | }); 49 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

graphql-ast-types

2 |

Autogenerated helper functions for generating a GraphQL AST

3 | 4 | 5 | This project generates helpers functions from the graphql/language AST flow descriptions. It is intended to help with building a valid GraphQL AST. 6 | 7 | ## Getting Started 8 | 9 | `yarn add graphql-ast-types` 10 | 11 | ```js 12 | import * as t from 'graphql-ast-types'; 13 | ``` 14 | 15 | _The implementation here mimics that of `babel-types`. Thanks Babel team._ 16 | 17 | ## Usage 18 | 19 | The following is an example of how to build a simple query with AST types. 20 | 21 | ```js 22 | import * as t from 'graphql-ast-types'; 23 | import { print } from 'graphql/language'; 24 | 25 | const ast = t.document([ 26 | t.operationDefinition( 27 | 'query', 28 | t.selectionSet([ 29 | t.field(t.name('foo')), 30 | t.field(t.name('bar')) 31 | ]) 32 | ) 33 | ]); 34 | 35 | print(ast); 36 | 37 | /* 38 | query { 39 | foo 40 | bar 41 | } 42 | */ 43 | ``` 44 | 45 | In addition, method calls are validated for correctness and accompanied by `is` and `assert` helpers. 46 | 47 | ```js 48 | t.isName(t.name('Hello')); // true 49 | 50 | t.isName({ kind: 'Name' }); // true 51 | t.assert({ kind: 'Name' }); // no error 52 | 53 | t.isName({ kind: 'IntValue' }); // false 54 | t.assert({ kind: 'IntValue' }); // error 55 | ``` 56 | 57 | The full API can be found [here](https://github.com/imranolas/graphql-ast-types/blob/master/api.md). 58 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "graphql-ast-types", 3 | "version": "1.0.2", 4 | "main": "lib/index.js", 5 | "license": "MIT", 6 | "keywords": [ 7 | "graphql", 8 | "ast", 9 | "types", 10 | "graphql-ast-types" 11 | ], 12 | "repository": { 13 | "type": "git", 14 | "url": "git+https://github.com/imranolas/graphql-ast-types.git" 15 | }, 16 | "files": [ 17 | "README.md", 18 | "lib", 19 | "src", 20 | "api.md" 21 | ], 22 | "scripts": { 23 | "test": "jest src/**", 24 | "test:watch": "yarn test -- --watch", 25 | "prebuild": "yarn generate", 26 | "build": "babel src --out-dir lib --source-maps inline -D", 27 | "generate": "node ./generate/index.js", 28 | "prepublishOnly": "yarn build", 29 | "flow": "./node_modules/.bin/flow", 30 | "lint-staged": "lint-staged" 31 | }, 32 | "bugs": { 33 | "url": "https://github.com/imranolas/graphql-ast-types/issues" 34 | }, 35 | "dependencies": {}, 36 | "peerDependencies": { 37 | "graphql": "^0.11.7" 38 | }, 39 | "devDependencies": { 40 | "babel-cli": "^6.26.0", 41 | "babel-core": "^6.26.0", 42 | "babel-generator": "^6.26.0", 43 | "babel-preset-env": "^1.6.0", 44 | "babel-preset-flow": "^6.23.0", 45 | "babel-template": "^6.26.0", 46 | "babel-traverse": "^6.26.0", 47 | "babel-types": "^6.26.0", 48 | "flow-bin": "^0.57.3", 49 | "flow-parser": "^0.57.3", 50 | "graphql": "^0.11.7", 51 | "jest": "^21.2.1", 52 | "lint-staged": "^4.3.0", 53 | "pre-commit": "^1.2.2", 54 | "prettier": "^1.7.4", 55 | "strip-indent": "^2.0.0" 56 | }, 57 | "jest": { 58 | "roots": [ 59 | "/src/" 60 | ] 61 | }, 62 | "lint-staged": { 63 | "*.js": [ 64 | "prettier --write", 65 | "git add" 66 | ] 67 | }, 68 | "pre-commit": "lint-staged" 69 | } 70 | -------------------------------------------------------------------------------- /generate/helpers.js: -------------------------------------------------------------------------------- 1 | const { default: traverse } = require('babel-traverse'); 2 | 3 | // Node constants 4 | const blacklistedNodes = ['OperationTypeNode']; 5 | const blacklistedProps = ['kind', 'loc']; 6 | 7 | const isPropBlacklisted = prop => blacklistedProps.includes(prop); 8 | const isNodeBlacklisted = nodeType => blacklistedNodes.includes(nodeType); 9 | 10 | const nodeNameRe = /^(\w+)Node$/; 11 | const isNodeName = name => nodeNameRe.test(name); 12 | 13 | // Identifies node definitions of the shape `type XNode = { ... }` 14 | const isNodeTypeAlias = node => 15 | typeof node.id === 'object' && 16 | node.id.type === 'Identifier' && 17 | typeof node.right === 'object' && 18 | node.right.type === 'ObjectTypeAnnotation' && 19 | isNodeName(node.id.name); 20 | 21 | // Identifies node definitions of the shape `type VirtualNode = XNode | YNode ...` 22 | const isUnionTypeAlias = node => 23 | typeof node.id === 'object' && 24 | node.id.type === 'Identifier' && 25 | typeof node.right === 'object' && 26 | node.right.type === 'UnionTypeAnnotation' && 27 | !blacklistedNodes.includes(node.id.name) && 28 | isNodeName(node.id.name); 29 | 30 | // Collects all *node* types and *unions* of node types 31 | function collectNodes(ast) { 32 | const unions = {}; 33 | const nodes = {}; 34 | 35 | const addUnion = (unionName, unionNode) => { 36 | const nodeNames = unionNode.types.map(type => type.id.name); 37 | 38 | for (const nodeName of nodeNames) { 39 | if (unions[nodeName] === undefined) { 40 | unions[nodeName] = new Set(); 41 | } 42 | 43 | const union = unions[nodeName]; 44 | union.add(unionName); 45 | } 46 | }; 47 | 48 | const addNode = (nodeName, objectType) => { 49 | nodes[nodeName] = objectType; 50 | }; 51 | 52 | traverse(ast, { 53 | TypeAlias({ node }) { 54 | if (isNodeTypeAlias(node)) { 55 | addNode(node.id.name, node.right); 56 | } else if (isUnionTypeAlias(node)) { 57 | addUnion(node.id.name, node.right); 58 | } 59 | } 60 | }); 61 | 62 | return { unions, nodes }; 63 | } 64 | 65 | // Remove "Node" suffix from node 66 | const getNodeNameWithoutSuffix = nodeName => nodeName.match(nodeNameRe)[1]; 67 | 68 | module.exports = { 69 | collectNodes, 70 | isNodeName, 71 | isNodeTypeAlias, 72 | isUnionTypeAlias, 73 | getNodeNameWithoutSuffix, 74 | isPropBlacklisted, 75 | isNodeBlacklisted, 76 | blacklistedNodes 77 | }; 78 | -------------------------------------------------------------------------------- /generate/docs.js: -------------------------------------------------------------------------------- 1 | const t = require('babel-types'); 2 | 3 | const astSource = 'https://github.com/graphql/graphql-js/blob/v0.11.7/src/language/ast.js'; 4 | 5 | const { collectNodes, getNodeNameWithoutSuffix, isPropBlacklisted } = require('./helpers'); 6 | 7 | const getValueType = node => { 8 | if (t.isGenericTypeAnnotation(node)) { 9 | return node.id.name; 10 | } 11 | 12 | return node.type; 13 | }; 14 | 15 | const makeDocstrings = (nodeName, node) => { 16 | const nodeNameShort = getNodeNameWithoutSuffix(nodeName); 17 | const fnName = nodeNameShort.charAt(0).toLowerCase() + nodeNameShort.slice(1); 18 | 19 | const args = node.properties.filter(({ key }) => !isPropBlacklisted(key.name)).sort((a, b) => { 20 | if (a.optional === b.optional) { 21 | return 0; 22 | } 23 | if (a.optional) { 24 | return 1; 25 | } 26 | return -1; 27 | }); 28 | 29 | const argString = args 30 | .map(({ key, value, optional }) => { 31 | const opt = optional ? '?' : ''; 32 | return `${key.name}: ${opt}${getValueType(value)}`; 33 | }) 34 | .join(', '); 35 | 36 | return [ 37 | `### ${nodeNameShort}`, 38 | `t.${fnName}(${argString}): [${nodeName}](${astSource}#L${node.loc.start.line})`, 39 | `t.is${nodeNameShort}(node: any): boolean`, 40 | `t.assert${nodeNameShort}(node: any): void` 41 | ]; 42 | }; 43 | 44 | const makeAliasString = nodeName => { 45 | const nodeNameShort = getNodeNameWithoutSuffix(nodeName); 46 | 47 | return [ 48 | `### ${nodeNameShort}`, 49 | `t.is${nodeNameShort}(node: any): boolean`, 50 | `t.assert${nodeNameShort}(node: any): boolean` 51 | ]; 52 | }; 53 | 54 | const buildBabelTemplates = ast => { 55 | const { nodes, unions } = collectNodes(ast); 56 | 57 | const aliasNames = Object.keys(unions).reduce((s, k) => new Set([...s, ...unions[k]]), new Set()); 58 | 59 | const docstrings = Object.keys(nodes).map(nodeName => makeDocstrings(nodeName, nodes[nodeName])); 60 | const aliasStrings = Array.from(aliasNames).map(aliasName => makeAliasString(aliasName)); 61 | 62 | const docString = docstrings.map(docs => docs.join('\n\n')); 63 | const aliasString = aliasStrings.map(docs => docs.join('\n\n')); 64 | 65 | return ['## Aliases', ...aliasString, '## Builders', ...docString]; 66 | }; 67 | 68 | const generateDefinitionContent = ast => { 69 | const definitionCalls = buildBabelTemplates(ast); 70 | return definitionCalls.join('\n\n'); 71 | }; 72 | 73 | module.exports = function generateDefinitionFile(ast) { 74 | return ` 75 | # API 76 | 77 | ${generateDefinitionContent(ast)} 78 | `; 79 | }; 80 | -------------------------------------------------------------------------------- /generate/flowtypes.js: -------------------------------------------------------------------------------- 1 | const t = require('babel-types'); 2 | const { default: generate } = require('babel-generator'); 3 | 4 | const { 5 | collectNodes, 6 | getNodeNameWithoutSuffix, 7 | isPropBlacklisted, 8 | blacklistedNodes 9 | } = require('./helpers'); 10 | 11 | const makeTypedIdentifier = (nodeName, params, returnAnnotation) => { 12 | const name = getNodeNameWithoutSuffix(nodeName); 13 | const paramNodes = params.map(({ key, value }) => 14 | t.functionTypeParam(t.identifier(key.name), value) 15 | ); 16 | return Object.assign(t.identifier(name), { 17 | typeAnnotation: t.typeAnnotation( 18 | t.functionTypeAnnotation(null, paramNodes, null, returnAnnotation) 19 | ) 20 | }); 21 | }; 22 | 23 | const makeDeclaration = (nodeName, node) => { 24 | const args = node.properties.filter(({ key }) => !isPropBlacklisted(key.name)).sort((a, b) => { 25 | if (a.optional === b.optional) { 26 | return 0; 27 | } 28 | if (a.optional) { 29 | return 1; 30 | } 31 | return -1; 32 | }); 33 | 34 | const anyNode = [{ key: t.identifier('node'), value: t.anyTypeAnnotation() }]; 35 | const fnNodeName = nodeName[0].toLowerCase() + nodeName.slice(1); 36 | 37 | return [ 38 | t.declareExportDeclaration( 39 | t.declareFunction( 40 | makeTypedIdentifier(fnNodeName, args, t.genericTypeAnnotation(t.identifier(nodeName))) 41 | ) 42 | ), 43 | t.declareExportDeclaration( 44 | t.declareFunction(makeTypedIdentifier(`is${nodeName}`, anyNode, t.booleanTypeAnnotation())) 45 | ), 46 | t.declareExportDeclaration( 47 | t.declareFunction( 48 | makeTypedIdentifier(`assert${nodeName}`, anyNode, t.booleanTypeAnnotation()) 49 | ) 50 | ) 51 | ]; 52 | }; 53 | 54 | const makeImportStatement = nodeKeys => { 55 | return Object.assign( 56 | t.importDeclaration( 57 | nodeKeys.map(nodeKey => t.importSpecifier(t.identifier(nodeKey), t.identifier(nodeKey))), 58 | t.stringLiteral('graphql/language/ast') 59 | ), 60 | { importKind: 'type' } 61 | ); 62 | }; 63 | 64 | const buildBabelTemplates = ast => { 65 | const { nodes, unions } = collectNodes(ast); 66 | const nodeStatements = Object.keys(nodes) 67 | .map(nodeName => makeDeclaration(nodeName, nodes[nodeName])) 68 | .reduce((a = [], ts) => a.concat(ts)); 69 | 70 | const importNodeNames = Object.keys(nodes).concat(blacklistedNodes); 71 | const importAliasNames = Object.keys(unions).reduce( 72 | (s, k) => new Set([...s, ...unions[k]]), 73 | new Set() 74 | ); 75 | 76 | return t.program([ 77 | makeImportStatement([...importNodeNames, ...Array.from(importAliasNames)]), 78 | ...nodeStatements 79 | ]); 80 | }; 81 | 82 | const generateDefinitionContent = ast => { 83 | const definitionCalls = buildBabelTemplates(ast); 84 | return generate(definitionCalls).code; 85 | }; 86 | 87 | module.exports = function generateDefinitionFile(ast) { 88 | return ` 89 | // @flow 90 | // AUTO-GENERATED 91 | ${generateDefinitionContent(ast)} 92 | 93 | declare export function is(nodeName: string, node: any): boolean; 94 | `; 95 | }; 96 | -------------------------------------------------------------------------------- /src/definitions/index.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | const t = require("../index"); 3 | 4 | type Validator = { 5 | validate: Function, 6 | optional?: boolean 7 | }; 8 | 9 | export const BUILDER_KEYS: { [type: string]: Array } = {}; 10 | export const NODE_FIELDS: { 11 | [type: string]: { [fieldKey: string]: Validator } 12 | } = {}; 13 | export const ALIAS_KEYS: { [type: string]: Array } = {}; 14 | 15 | type Option = { 16 | fields?: { [fieldKey: string]: Validator }, 17 | aliases?: Array, 18 | builder?: Array // Node properties to be transformed into params 19 | }; 20 | 21 | /** 22 | * Used to define an AST node. 23 | * @param {String} type The AST node name 24 | * @param {Object} opts Type definition object 25 | * @returns {void} 26 | */ 27 | export default function defineType( 28 | type: string, 29 | { fields = {}, aliases = [], builder = [] }: Option = {} 30 | ) { 31 | for (const key in fields) { 32 | const field = fields[key]; 33 | 34 | // Sets field as optional if builder exist but validator does not. 35 | if (builder.indexOf(key) === -1) { 36 | field.optional = true; 37 | } 38 | } 39 | 40 | BUILDER_KEYS[type] = builder; 41 | NODE_FIELDS[type] = fields; 42 | ALIAS_KEYS[type] = aliases; 43 | } 44 | 45 | function getType(val) { 46 | if (Array.isArray(val)) { 47 | return "array"; 48 | } else if (val === null) { 49 | return "null"; 50 | } else if (val === undefined) { 51 | return "undefined"; 52 | } else { 53 | return typeof val; 54 | } 55 | } 56 | 57 | // Validation helpers 58 | 59 | export function chain(...fns: Array): Function { 60 | return function validate(...args) { 61 | fns.forEach(fn => fn(...args)); 62 | }; 63 | } 64 | 65 | export function assertEach(callback: Function): Function { 66 | function validator(node, key, val) { 67 | if (!Array.isArray(val)) { 68 | return; 69 | } 70 | 71 | val.forEach((it, i) => callback(node, `${key}[${i}]`, it)); 72 | } 73 | return validator; 74 | } 75 | 76 | export function assertOneOf(...vals: Array): Function { 77 | function validate(node, key, val) { 78 | if (vals.indexOf(val.kind) < 0) { 79 | throw new TypeError( 80 | `Property ${key} expected value to be one of ${JSON.stringify( 81 | vals 82 | )} but got ${JSON.stringify(val)}` 83 | ); 84 | } 85 | } 86 | 87 | return validate; 88 | } 89 | 90 | export function assertNodeType(...types: Array): Function { 91 | function validate(node, key, val) { 92 | const valid = types.every(type => t.is(type, val)); 93 | 94 | if (!valid) { 95 | throw new TypeError( 96 | `Property ${key} of ${node.type} expected node to be of a type ${JSON.stringify( 97 | types 98 | )} ` + `but instead got ${JSON.stringify(val && val.type)}` 99 | ); 100 | } 101 | } 102 | 103 | return validate; 104 | } 105 | 106 | export function assertNodeOrValueType(...types: Array): Function { 107 | function validate(node, key, val) { 108 | const valid = types.every(type => getType(val) === type || t.is(type, val)); 109 | 110 | if (!valid) { 111 | throw new TypeError( 112 | `Property ${key} of ${node.type} expected node to be of a type ${JSON.stringify( 113 | types 114 | )} ` + `but instead got ${JSON.stringify(val && val.type)}` 115 | ); 116 | } 117 | } 118 | 119 | return validate; 120 | } 121 | 122 | export function assertValueType(type: string): Function { 123 | function validate(node, key, val) { 124 | const valid = getType(val) === type; 125 | 126 | if (!valid) { 127 | throw new TypeError( 128 | `Property ${key} expected type of ${type} but got ${getType(val)}` 129 | ); 130 | } 131 | } 132 | 133 | return validate; 134 | } 135 | 136 | export function assertArrayOf(cb: Function): Function { 137 | return chain(assertValueType("array"), assertEach(cb)); 138 | } 139 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | require('./definitions/init'); 4 | 5 | const { ALIAS_KEYS, NODE_FIELDS, BUILDER_KEYS } = require('./definitions'); 6 | 7 | const t = exports; // Maps all exports to t 8 | 9 | /** 10 | * Registers `is[Type]` and `assert[Type]` generated functions for a given `type`. 11 | * Pass `skipAliasCheck` to force it to directly compare `node.type` with `type`. 12 | */ 13 | 14 | function registerType(type: string) { 15 | const key = `is${type}`; 16 | 17 | const _isType = t[key] !== undefined 18 | ? t[key] 19 | : t[key] = (node, opts) => t.is(type, node, opts); 20 | 21 | t[`assert${type}`] = (node, opts = {}) => { 22 | if (!_isType(node, opts)) { 23 | throw new Error(`Expected type "${type}" with option ${JSON.stringify(opts)}`); 24 | } 25 | }; 26 | } 27 | 28 | export { ALIAS_KEYS, NODE_FIELDS, BUILDER_KEYS }; 29 | 30 | /** 31 | * Registers `is[Type]` and `assert[Type]` for all types. 32 | */ 33 | 34 | for (const type in t.NODE_FIELDS) { 35 | registerType(type); 36 | } 37 | 38 | /** 39 | * Flip `ALIAS_KEYS` for faster access in the reverse direction. 40 | */ 41 | 42 | export const TYPES = []; 43 | 44 | t.FLIPPED_ALIAS_KEYS = Object.keys(t.ALIAS_KEYS).reduce((acc, type) => { 45 | const aliasKeys = t.ALIAS_KEYS[type]; 46 | 47 | aliasKeys.forEach(alias => { 48 | if (acc[alias] === undefined) { 49 | TYPES.push(alias); // Populate `TYPES` with FLIPPED_ALIAS_KEY(S) 50 | 51 | // Registers `is[Alias]` and `assert[Alias]` functions for all aliases. 52 | t[`${alias.toUpperCase()}_TYPES`] = acc[alias]; 53 | registerType(alias); 54 | 55 | acc[alias] = []; 56 | } 57 | 58 | acc[alias].push(type); 59 | }); 60 | 61 | return acc; 62 | }, {}); 63 | 64 | /** 65 | * Returns whether `node` is of given `type`. 66 | * 67 | * For better performance, use this instead of `is[Type]` when `type` is unknown. 68 | * Optionally, pass `skipAliasCheck` to directly compare `node.type` with `type`. 69 | */ 70 | 71 | export function is(type: string, node: Object, opts?: Object): boolean { 72 | if (node === null || typeof node !== 'object') { 73 | return false; 74 | } 75 | 76 | const matches = isType(node.kind, type); 77 | if (!matches) { 78 | return false; 79 | } 80 | 81 | if (typeof opts === 'undefined') { 82 | return true; 83 | } else { 84 | return t.shallowEqual(node, opts); 85 | } 86 | } 87 | 88 | /** 89 | * Test if a `nodeType` is a `targetType` or if `targetType` is an alias of `nodeType`. 90 | */ 91 | 92 | export function isType(nodeType: string, targetType: string): boolean { 93 | if (nodeType === targetType) { 94 | return true; 95 | } 96 | 97 | // This is a fast-path. If the test above failed, but an alias key is found, then the 98 | // targetType was a primary node type, so there's no need to check the aliases. 99 | if (t.ALIAS_KEYS[targetType]) { 100 | return false; 101 | } 102 | 103 | const aliases: ?Array = t.FLIPPED_ALIAS_KEYS[targetType]; 104 | if (aliases) { 105 | if (aliases[0] === nodeType) { 106 | return true; 107 | } 108 | 109 | for (const alias of aliases) { 110 | if (nodeType === alias) { 111 | return true; 112 | } 113 | } 114 | } 115 | 116 | return false; 117 | } 118 | 119 | /** 120 | * For each call of #defineType, the following expression evalutates and generates 121 | * a builder function that validates incoming arguments and returns a valid AST node. 122 | */ 123 | 124 | for (const type in t.BUILDER_KEYS) { 125 | const keys = t.BUILDER_KEYS[type]; 126 | const fields = t.NODE_FIELDS[type]; 127 | 128 | function builder(...args) { 129 | if (args.length > keys.length) { 130 | throw new Error( 131 | `t.${type}: Too many arguments passed. Received ${args.length} but can receive ` + 132 | `no more than ${keys.length}` 133 | ); 134 | } 135 | 136 | const node = keys.reduce( 137 | (node, key, i) => { 138 | node[key] = (args[i] === undefined ? fields[key].default : args[i]); 139 | return node; 140 | }, 141 | { kind: type } 142 | ); 143 | 144 | for (const key in node) { 145 | validate(node, key, node[key]); 146 | } 147 | 148 | return node; 149 | } 150 | 151 | t[type[0].toLowerCase() + type.slice(1)] = builder; 152 | } 153 | 154 | /** 155 | * Executes the field validators for a given node 156 | */ 157 | 158 | export function validate(node?: Object, key: string, val: any) { 159 | if (node === null || typeof node !== 'object') { 160 | return; 161 | } 162 | 163 | const fields = t.NODE_FIELDS[node.kind]; 164 | if (fields === undefined) { 165 | return; 166 | } 167 | 168 | const field = fields[key]; 169 | if (field === undefined || field.validate === undefined) { 170 | return; 171 | } 172 | 173 | if (field.optional && (val === undefined || val === null)) { 174 | return; 175 | } 176 | 177 | field.validate(node, key, val); 178 | } 179 | 180 | /** 181 | * Test if an object is shallowly equal. 182 | */ 183 | 184 | export function shallowEqual(actual: Object, expected: Object): boolean { 185 | for (const key in expected) { 186 | if (expected.hasOwnProperty(key) && actual[key] !== expected[key]) { 187 | return false; 188 | } 189 | } 190 | 191 | return true; 192 | } 193 | -------------------------------------------------------------------------------- /generate/definitions.js: -------------------------------------------------------------------------------- 1 | const tea = require("babel-types"); // The only right way to name this 2 | const { default: generate } = require("babel-generator"); 3 | 4 | const { 5 | collectNodes, 6 | getNodeNameWithoutSuffix, 7 | isPropBlacklisted, 8 | isNodeName 9 | } = require("./helpers"); 10 | 11 | const nodeTypeAssertTemplate = argAST => 12 | tea.callExpression(tea.identifier("assertNodeType"), [argAST]); 13 | 14 | const typeAssertTemplate = argAST => 15 | tea.callExpression(tea.identifier("assertValueType"), [argAST]); 16 | 17 | const valueOfNodeType = valueNode => { 18 | if ( 19 | valueNode.type !== "GenericTypeAnnotation" || 20 | valueNode.id.type !== "Identifier" || 21 | (!isNodeName(valueNode.id.name) && 22 | valueNode.id.name !== "OperationTypeNode") 23 | ) { 24 | return undefined; 25 | } 26 | 27 | if (valueNode.id.name === "OperationTypeNode") { 28 | return typeAssertTemplate(tea.stringLiteral("string")); 29 | } 30 | 31 | const name = getNodeNameWithoutSuffix(valueNode.id.name); 32 | return nodeTypeAssertTemplate(tea.stringLiteral(name)); 33 | }; 34 | 35 | const valueOfType = valueNode => { 36 | if (valueNode.type === "StringTypeAnnotation") { 37 | return typeAssertTemplate(tea.stringLiteral("string")); 38 | } else if (valueNode.type === "BooleanTypeAnnotation") { 39 | return typeAssertTemplate(tea.stringLiteral("boolean")); 40 | } 41 | 42 | return undefined; 43 | }; 44 | 45 | const arrayTypeAssertTemplate = argAST => 46 | tea.callExpression(tea.identifier("assertArrayOf"), [argAST]); 47 | 48 | const valueOfArray = valueNode => { 49 | if ( 50 | valueNode.type !== "GenericTypeAnnotation" || 51 | valueNode.id.type !== "Identifier" || 52 | valueNode.id.name !== "Array" 53 | ) { 54 | return undefined; 55 | } 56 | 57 | const arrayValueNode = valueNode.typeParameters.params[0]; 58 | const valueAssertion = determineValueAssertion(arrayValueNode); 59 | 60 | return arrayTypeAssertTemplate(valueAssertion); 61 | }; 62 | 63 | const unionNodeTypeAssertTemplate = names => 64 | tea.callExpression( 65 | tea.identifier("assertOneOf"), 66 | names.map(name => tea.stringLiteral(getNodeNameWithoutSuffix(name))) 67 | ); 68 | 69 | const valueOfUnionNodeType = valueNode => { 70 | if ( 71 | valueNode.type !== "UnionTypeAnnotation" || 72 | !valueNode.types.every( 73 | n => n.type === "GenericTypeAnnotation" && n.id.type === "Identifier" 74 | ) 75 | ) { 76 | return undefined; 77 | } 78 | 79 | const names = valueNode.types.map(t => t.id.name); 80 | return unionNodeTypeAssertTemplate(names); 81 | }; 82 | 83 | const determineValueAssertion = valueNode => { 84 | let node = valueNode; 85 | if (node.type === "NullableTypeAnnotation") { 86 | node = node.typeAnnotation; 87 | } 88 | 89 | const template = 90 | valueOfUnionNodeType(node) || 91 | valueOfArray(node) || 92 | valueOfType(node) || 93 | valueOfNodeType(node); 94 | 95 | if (template === undefined) { 96 | throw new TypeError(`Unrecognised value node of type ${node.type}!`); 97 | } 98 | 99 | return template; 100 | }; 101 | 102 | const fieldDefinitionTemplate = (isOptional, assertionAST) => 103 | tea.objectExpression([ 104 | tea.objectProperty( 105 | tea.identifier("optional"), 106 | tea.booleanLiteral(isOptional) 107 | ), 108 | tea.objectProperty(tea.identifier("validate"), assertionAST) 109 | ]); 110 | 111 | const getNodeBabelFields = node => { 112 | const fields = node.properties 113 | .map(prop => { 114 | const fieldName = prop.key.name; 115 | if (isPropBlacklisted(fieldName)) { 116 | return undefined; 117 | } 118 | 119 | const optional = !!prop.optional; 120 | const valueNode = prop.value; 121 | const valueAssertionAST = determineValueAssertion(valueNode); 122 | 123 | const ast = tea.objectProperty( 124 | tea.identifier(fieldName), 125 | fieldDefinitionTemplate(optional, valueAssertionAST) 126 | ); 127 | 128 | return [optional, ast]; 129 | }) 130 | .filter(x => x !== undefined); 131 | 132 | // Preserve order, but put non-optional fields first 133 | const nonOptionalFields = fields.filter(([opt]) => !opt).map(arr => arr[1]); 134 | const optionalFields = fields.filter(([opt]) => opt).map(arr => arr[1]); 135 | return nonOptionalFields.concat(optionalFields); 136 | }; 137 | 138 | const getNodeAliases = (nodeName, unions) => { 139 | const union = unions[nodeName] || new Set(); 140 | return Array.from(union).map(getNodeNameWithoutSuffix); 141 | }; 142 | 143 | const defineTypeCallTemplate = (nameAST, argAST, fieldAST, aliasAST) => { 144 | return tea.arrayExpression([ 145 | nameAST, 146 | tea.objectExpression([ 147 | tea.objectProperty(tea.identifier("builder"), argAST), 148 | tea.objectProperty(tea.identifier("fields"), fieldAST), 149 | tea.objectProperty(tea.identifier("aliases"), aliasAST) 150 | ]) 151 | ]); 152 | }; 153 | 154 | const getArgsFromFields = fields => fields.map(field => field.key.name); 155 | 156 | const buildDefineTypeCall = (nodeName, unions, node) => { 157 | const name = getNodeNameWithoutSuffix(nodeName); 158 | const fields = getNodeBabelFields(node); 159 | const args = getArgsFromFields(fields); 160 | const aliases = getNodeAliases(nodeName, unions); 161 | 162 | return defineTypeCallTemplate( 163 | tea.stringLiteral(name), 164 | tea.arrayExpression(args.map(arg => tea.stringLiteral(arg))), 165 | tea.objectExpression(fields), 166 | tea.arrayExpression(aliases.map(alias => tea.stringLiteral(alias))) 167 | ); 168 | }; 169 | 170 | const buildBabelTemplates = ast => { 171 | const { unions, nodes } = collectNodes(ast); 172 | 173 | return generate( 174 | tea.arrayExpression( 175 | Object.keys(nodes).map(nodeName => { 176 | const node = nodes[nodeName]; 177 | return buildDefineTypeCall(nodeName, unions, node); 178 | }) 179 | ) 180 | ).code; 181 | }; 182 | 183 | const definitionTemplate = body => 184 | ` 185 | /* These are auto-generated definitions: Please do not edit this file directly */ 186 | 187 | import { 188 | assertNodeType, 189 | assertValueType, 190 | assertEach, 191 | assertOneOf, 192 | assertArrayOf 193 | } from './index'; 194 | 195 | export default () => ${body}; 196 | `.trim(); 197 | 198 | const generateDefinitionContent = ast => { 199 | const definitionCalls = buildBabelTemplates(ast); 200 | return definitionTemplate(definitionCalls); 201 | }; 202 | 203 | module.exports = function generateDefinitionFile(ast) { 204 | return generateDefinitionContent(ast); 205 | }; 206 | -------------------------------------------------------------------------------- /api.md: -------------------------------------------------------------------------------- 1 | 2 | # API 3 | 4 | ## Aliases 5 | 6 | ### AST 7 | 8 | t.isAST(node: any): boolean 9 | 10 | t.assertAST(node: any): boolean 11 | 12 | ### Definition 13 | 14 | t.isDefinition(node: any): boolean 15 | 16 | t.assertDefinition(node: any): boolean 17 | 18 | ### Value 19 | 20 | t.isValue(node: any): boolean 21 | 22 | t.assertValue(node: any): boolean 23 | 24 | ### Selection 25 | 26 | t.isSelection(node: any): boolean 27 | 28 | t.assertSelection(node: any): boolean 29 | 30 | ### Type 31 | 32 | t.isType(node: any): boolean 33 | 34 | t.assertType(node: any): boolean 35 | 36 | ### TypeSystemDefinition 37 | 38 | t.isTypeSystemDefinition(node: any): boolean 39 | 40 | t.assertTypeSystemDefinition(node: any): boolean 41 | 42 | ### TypeDefinition 43 | 44 | t.isTypeDefinition(node: any): boolean 45 | 46 | t.assertTypeDefinition(node: any): boolean 47 | 48 | ## Builders 49 | 50 | ### Name 51 | 52 | t.name(value: StringTypeAnnotation): [NameNode](https://github.com/graphql/graphql-js/blob/v0.11.7/src/language/ast.js#L160) 53 | 54 | t.isName(node: any): boolean 55 | 56 | t.assertName(node: any): void 57 | 58 | ### Document 59 | 60 | t.document(definitions: Array): [DocumentNode](https://github.com/graphql/graphql-js/blob/v0.11.7/src/language/ast.js#L168) 61 | 62 | t.isDocument(node: any): boolean 63 | 64 | t.assertDocument(node: any): void 65 | 66 | ### OperationDefinition 67 | 68 | t.operationDefinition(operation: OperationTypeNode, selectionSet: SelectionSetNode, name: ?NullableTypeAnnotation, variableDefinitions: ?NullableTypeAnnotation, directives: ?NullableTypeAnnotation): [OperationDefinitionNode](https://github.com/graphql/graphql-js/blob/v0.11.7/src/language/ast.js#L179) 69 | 70 | t.isOperationDefinition(node: any): boolean 71 | 72 | t.assertOperationDefinition(node: any): void 73 | 74 | ### VariableDefinition 75 | 76 | t.variableDefinition(variable: VariableNode, type: TypeNode, defaultValue: ?NullableTypeAnnotation): [VariableDefinitionNode](https://github.com/graphql/graphql-js/blob/v0.11.7/src/language/ast.js#L192) 77 | 78 | t.isVariableDefinition(node: any): boolean 79 | 80 | t.assertVariableDefinition(node: any): void 81 | 82 | ### Variable 83 | 84 | t.variable(name: NameNode): [VariableNode](https://github.com/graphql/graphql-js/blob/v0.11.7/src/language/ast.js#L200) 85 | 86 | t.isVariable(node: any): boolean 87 | 88 | t.assertVariable(node: any): void 89 | 90 | ### SelectionSet 91 | 92 | t.selectionSet(selections: Array): [SelectionSetNode](https://github.com/graphql/graphql-js/blob/v0.11.7/src/language/ast.js#L206) 93 | 94 | t.isSelectionSet(node: any): boolean 95 | 96 | t.assertSelectionSet(node: any): void 97 | 98 | ### Field 99 | 100 | t.field(name: NameNode, alias: ?NullableTypeAnnotation, arguments: ?NullableTypeAnnotation, directives: ?NullableTypeAnnotation, selectionSet: ?NullableTypeAnnotation): [FieldNode](https://github.com/graphql/graphql-js/blob/v0.11.7/src/language/ast.js#L217) 101 | 102 | t.isField(node: any): boolean 103 | 104 | t.assertField(node: any): void 105 | 106 | ### Argument 107 | 108 | t.argument(name: NameNode, value: ValueNode): [ArgumentNode](https://github.com/graphql/graphql-js/blob/v0.11.7/src/language/ast.js#L227) 109 | 110 | t.isArgument(node: any): boolean 111 | 112 | t.assertArgument(node: any): void 113 | 114 | ### FragmentSpread 115 | 116 | t.fragmentSpread(name: NameNode, directives: ?NullableTypeAnnotation): [FragmentSpreadNode](https://github.com/graphql/graphql-js/blob/v0.11.7/src/language/ast.js#L237) 117 | 118 | t.isFragmentSpread(node: any): boolean 119 | 120 | t.assertFragmentSpread(node: any): void 121 | 122 | ### InlineFragment 123 | 124 | t.inlineFragment(selectionSet: SelectionSetNode, typeCondition: ?NullableTypeAnnotation, directives: ?NullableTypeAnnotation): [InlineFragmentNode](https://github.com/graphql/graphql-js/blob/v0.11.7/src/language/ast.js#L244) 125 | 126 | t.isInlineFragment(node: any): boolean 127 | 128 | t.assertInlineFragment(node: any): void 129 | 130 | ### FragmentDefinition 131 | 132 | t.fragmentDefinition(name: NameNode, typeCondition: NamedTypeNode, selectionSet: SelectionSetNode, directives: ?NullableTypeAnnotation): [FragmentDefinitionNode](https://github.com/graphql/graphql-js/blob/v0.11.7/src/language/ast.js#L252) 133 | 134 | t.isFragmentDefinition(node: any): boolean 135 | 136 | t.assertFragmentDefinition(node: any): void 137 | 138 | ### IntValue 139 | 140 | t.intValue(value: StringTypeAnnotation): [IntValueNode](https://github.com/graphql/graphql-js/blob/v0.11.7/src/language/ast.js#L275) 141 | 142 | t.isIntValue(node: any): boolean 143 | 144 | t.assertIntValue(node: any): void 145 | 146 | ### FloatValue 147 | 148 | t.floatValue(value: StringTypeAnnotation): [FloatValueNode](https://github.com/graphql/graphql-js/blob/v0.11.7/src/language/ast.js#L281) 149 | 150 | t.isFloatValue(node: any): boolean 151 | 152 | t.assertFloatValue(node: any): void 153 | 154 | ### StringValue 155 | 156 | t.stringValue(value: StringTypeAnnotation): [StringValueNode](https://github.com/graphql/graphql-js/blob/v0.11.7/src/language/ast.js#L287) 157 | 158 | t.isStringValue(node: any): boolean 159 | 160 | t.assertStringValue(node: any): void 161 | 162 | ### BooleanValue 163 | 164 | t.booleanValue(value: BooleanTypeAnnotation): [BooleanValueNode](https://github.com/graphql/graphql-js/blob/v0.11.7/src/language/ast.js#L293) 165 | 166 | t.isBooleanValue(node: any): boolean 167 | 168 | t.assertBooleanValue(node: any): void 169 | 170 | ### NullValue 171 | 172 | t.nullValue(): [NullValueNode](https://github.com/graphql/graphql-js/blob/v0.11.7/src/language/ast.js#L299) 173 | 174 | t.isNullValue(node: any): boolean 175 | 176 | t.assertNullValue(node: any): void 177 | 178 | ### EnumValue 179 | 180 | t.enumValue(value: StringTypeAnnotation): [EnumValueNode](https://github.com/graphql/graphql-js/blob/v0.11.7/src/language/ast.js#L304) 181 | 182 | t.isEnumValue(node: any): boolean 183 | 184 | t.assertEnumValue(node: any): void 185 | 186 | ### ListValue 187 | 188 | t.listValue(values: Array): [ListValueNode](https://github.com/graphql/graphql-js/blob/v0.11.7/src/language/ast.js#L310) 189 | 190 | t.isListValue(node: any): boolean 191 | 192 | t.assertListValue(node: any): void 193 | 194 | ### ObjectValue 195 | 196 | t.objectValue(fields: Array): [ObjectValueNode](https://github.com/graphql/graphql-js/blob/v0.11.7/src/language/ast.js#L316) 197 | 198 | t.isObjectValue(node: any): boolean 199 | 200 | t.assertObjectValue(node: any): void 201 | 202 | ### ObjectField 203 | 204 | t.objectField(name: NameNode, value: ValueNode): [ObjectFieldNode](https://github.com/graphql/graphql-js/blob/v0.11.7/src/language/ast.js#L322) 205 | 206 | t.isObjectField(node: any): boolean 207 | 208 | t.assertObjectField(node: any): void 209 | 210 | ### Directive 211 | 212 | t.directive(name: NameNode, arguments: ?NullableTypeAnnotation): [DirectiveNode](https://github.com/graphql/graphql-js/blob/v0.11.7/src/language/ast.js#L332) 213 | 214 | t.isDirective(node: any): boolean 215 | 216 | t.assertDirective(node: any): void 217 | 218 | ### NamedType 219 | 220 | t.namedType(name: NameNode): [NamedTypeNode](https://github.com/graphql/graphql-js/blob/v0.11.7/src/language/ast.js#L347) 221 | 222 | t.isNamedType(node: any): boolean 223 | 224 | t.assertNamedType(node: any): void 225 | 226 | ### ListType 227 | 228 | t.listType(type: TypeNode): [ListTypeNode](https://github.com/graphql/graphql-js/blob/v0.11.7/src/language/ast.js#L353) 229 | 230 | t.isListType(node: any): boolean 231 | 232 | t.assertListType(node: any): void 233 | 234 | ### NonNullType 235 | 236 | t.nonNullType(type: UnionTypeAnnotation): [NonNullTypeNode](https://github.com/graphql/graphql-js/blob/v0.11.7/src/language/ast.js#L359) 237 | 238 | t.isNonNullType(node: any): boolean 239 | 240 | t.assertNonNullType(node: any): void 241 | 242 | ### SchemaDefinition 243 | 244 | t.schemaDefinition(directives: Array, operationTypes: Array): [SchemaDefinitionNode](https://github.com/graphql/graphql-js/blob/v0.11.7/src/language/ast.js#L373) 245 | 246 | t.isSchemaDefinition(node: any): boolean 247 | 248 | t.assertSchemaDefinition(node: any): void 249 | 250 | ### OperationTypeDefinition 251 | 252 | t.operationTypeDefinition(operation: OperationTypeNode, type: NamedTypeNode): [OperationTypeDefinitionNode](https://github.com/graphql/graphql-js/blob/v0.11.7/src/language/ast.js#L380) 253 | 254 | t.isOperationTypeDefinition(node: any): boolean 255 | 256 | t.assertOperationTypeDefinition(node: any): void 257 | 258 | ### ScalarTypeDefinition 259 | 260 | t.scalarTypeDefinition(name: NameNode, directives: ?NullableTypeAnnotation): [ScalarTypeDefinitionNode](https://github.com/graphql/graphql-js/blob/v0.11.7/src/language/ast.js#L395) 261 | 262 | t.isScalarTypeDefinition(node: any): boolean 263 | 264 | t.assertScalarTypeDefinition(node: any): void 265 | 266 | ### ObjectTypeDefinition 267 | 268 | t.objectTypeDefinition(name: NameNode, fields: Array, interfaces: ?NullableTypeAnnotation, directives: ?NullableTypeAnnotation): [ObjectTypeDefinitionNode](https://github.com/graphql/graphql-js/blob/v0.11.7/src/language/ast.js#L402) 269 | 270 | t.isObjectTypeDefinition(node: any): boolean 271 | 272 | t.assertObjectTypeDefinition(node: any): void 273 | 274 | ### FieldDefinition 275 | 276 | t.fieldDefinition(name: NameNode, arguments: Array, type: TypeNode, directives: ?NullableTypeAnnotation): [FieldDefinitionNode](https://github.com/graphql/graphql-js/blob/v0.11.7/src/language/ast.js#L411) 277 | 278 | t.isFieldDefinition(node: any): boolean 279 | 280 | t.assertFieldDefinition(node: any): void 281 | 282 | ### InputValueDefinition 283 | 284 | t.inputValueDefinition(name: NameNode, type: TypeNode, defaultValue: ?NullableTypeAnnotation, directives: ?NullableTypeAnnotation): [InputValueDefinitionNode](https://github.com/graphql/graphql-js/blob/v0.11.7/src/language/ast.js#L420) 285 | 286 | t.isInputValueDefinition(node: any): boolean 287 | 288 | t.assertInputValueDefinition(node: any): void 289 | 290 | ### InterfaceTypeDefinition 291 | 292 | t.interfaceTypeDefinition(name: NameNode, fields: Array, directives: ?NullableTypeAnnotation): [InterfaceTypeDefinitionNode](https://github.com/graphql/graphql-js/blob/v0.11.7/src/language/ast.js#L429) 293 | 294 | t.isInterfaceTypeDefinition(node: any): boolean 295 | 296 | t.assertInterfaceTypeDefinition(node: any): void 297 | 298 | ### UnionTypeDefinition 299 | 300 | t.unionTypeDefinition(name: NameNode, types: Array, directives: ?NullableTypeAnnotation): [UnionTypeDefinitionNode](https://github.com/graphql/graphql-js/blob/v0.11.7/src/language/ast.js#L437) 301 | 302 | t.isUnionTypeDefinition(node: any): boolean 303 | 304 | t.assertUnionTypeDefinition(node: any): void 305 | 306 | ### EnumTypeDefinition 307 | 308 | t.enumTypeDefinition(name: NameNode, values: Array, directives: ?NullableTypeAnnotation): [EnumTypeDefinitionNode](https://github.com/graphql/graphql-js/blob/v0.11.7/src/language/ast.js#L445) 309 | 310 | t.isEnumTypeDefinition(node: any): boolean 311 | 312 | t.assertEnumTypeDefinition(node: any): void 313 | 314 | ### EnumValueDefinition 315 | 316 | t.enumValueDefinition(name: NameNode, directives: ?NullableTypeAnnotation): [EnumValueDefinitionNode](https://github.com/graphql/graphql-js/blob/v0.11.7/src/language/ast.js#L453) 317 | 318 | t.isEnumValueDefinition(node: any): boolean 319 | 320 | t.assertEnumValueDefinition(node: any): void 321 | 322 | ### InputObjectTypeDefinition 323 | 324 | t.inputObjectTypeDefinition(name: NameNode, fields: Array, directives: ?NullableTypeAnnotation): [InputObjectTypeDefinitionNode](https://github.com/graphql/graphql-js/blob/v0.11.7/src/language/ast.js#L460) 325 | 326 | t.isInputObjectTypeDefinition(node: any): boolean 327 | 328 | t.assertInputObjectTypeDefinition(node: any): void 329 | 330 | ### TypeExtensionDefinition 331 | 332 | t.typeExtensionDefinition(definition: ObjectTypeDefinitionNode): [TypeExtensionDefinitionNode](https://github.com/graphql/graphql-js/blob/v0.11.7/src/language/ast.js#L468) 333 | 334 | t.isTypeExtensionDefinition(node: any): boolean 335 | 336 | t.assertTypeExtensionDefinition(node: any): void 337 | 338 | ### DirectiveDefinition 339 | 340 | t.directiveDefinition(name: NameNode, locations: Array, arguments: ?NullableTypeAnnotation): [DirectiveDefinitionNode](https://github.com/graphql/graphql-js/blob/v0.11.7/src/language/ast.js#L474) 341 | 342 | t.isDirectiveDefinition(node: any): boolean 343 | 344 | t.assertDirectiveDefinition(node: any): void 345 | -------------------------------------------------------------------------------- /src/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- 1 | // Jest Snapshot v1, https://goo.gl/fbAQLP 2 | 3 | exports[`Alias Keys 1`] = ` 4 | Object { 5 | "Argument": Array [ 6 | "AST", 7 | ], 8 | "BooleanValue": Array [ 9 | "AST", 10 | "Value", 11 | ], 12 | "Directive": Array [ 13 | "AST", 14 | ], 15 | "DirectiveDefinition": Array [ 16 | "AST", 17 | "TypeSystemDefinition", 18 | ], 19 | "Document": Array [ 20 | "AST", 21 | ], 22 | "EnumTypeDefinition": Array [ 23 | "AST", 24 | "TypeDefinition", 25 | ], 26 | "EnumValue": Array [ 27 | "AST", 28 | "Value", 29 | ], 30 | "EnumValueDefinition": Array [ 31 | "AST", 32 | ], 33 | "Field": Array [ 34 | "AST", 35 | "Selection", 36 | ], 37 | "FieldDefinition": Array [ 38 | "AST", 39 | ], 40 | "FloatValue": Array [ 41 | "AST", 42 | "Value", 43 | ], 44 | "FragmentDefinition": Array [ 45 | "AST", 46 | "Definition", 47 | ], 48 | "FragmentSpread": Array [ 49 | "AST", 50 | "Selection", 51 | ], 52 | "InlineFragment": Array [ 53 | "AST", 54 | "Selection", 55 | ], 56 | "InputObjectTypeDefinition": Array [ 57 | "AST", 58 | "TypeDefinition", 59 | ], 60 | "InputValueDefinition": Array [ 61 | "AST", 62 | ], 63 | "IntValue": Array [ 64 | "AST", 65 | "Value", 66 | ], 67 | "InterfaceTypeDefinition": Array [ 68 | "AST", 69 | "TypeDefinition", 70 | ], 71 | "ListType": Array [ 72 | "AST", 73 | "Type", 74 | ], 75 | "ListValue": Array [ 76 | "AST", 77 | "Value", 78 | ], 79 | "Name": Array [ 80 | "AST", 81 | ], 82 | "NamedType": Array [ 83 | "AST", 84 | "Type", 85 | ], 86 | "NonNullType": Array [ 87 | "AST", 88 | "Type", 89 | ], 90 | "NullValue": Array [ 91 | "AST", 92 | "Value", 93 | ], 94 | "ObjectField": Array [ 95 | "AST", 96 | ], 97 | "ObjectTypeDefinition": Array [ 98 | "AST", 99 | "TypeDefinition", 100 | ], 101 | "ObjectValue": Array [ 102 | "AST", 103 | "Value", 104 | ], 105 | "OperationDefinition": Array [ 106 | "AST", 107 | "Definition", 108 | ], 109 | "OperationTypeDefinition": Array [ 110 | "AST", 111 | ], 112 | "ScalarTypeDefinition": Array [ 113 | "AST", 114 | "TypeDefinition", 115 | ], 116 | "SchemaDefinition": Array [ 117 | "AST", 118 | "TypeSystemDefinition", 119 | ], 120 | "SelectionSet": Array [ 121 | "AST", 122 | ], 123 | "StringValue": Array [ 124 | "AST", 125 | "Value", 126 | ], 127 | "TypeExtensionDefinition": Array [ 128 | "AST", 129 | "TypeSystemDefinition", 130 | ], 131 | "UnionTypeDefinition": Array [ 132 | "AST", 133 | "TypeDefinition", 134 | ], 135 | "Variable": Array [ 136 | "AST", 137 | "Value", 138 | ], 139 | "VariableDefinition": Array [ 140 | "AST", 141 | ], 142 | } 143 | `; 144 | 145 | exports[`Builder Keys 1`] = ` 146 | Object { 147 | "Argument": Array [ 148 | "name", 149 | "value", 150 | ], 151 | "BooleanValue": Array [ 152 | "value", 153 | ], 154 | "Directive": Array [ 155 | "name", 156 | "arguments", 157 | ], 158 | "DirectiveDefinition": Array [ 159 | "name", 160 | "locations", 161 | "arguments", 162 | ], 163 | "Document": Array [ 164 | "definitions", 165 | ], 166 | "EnumTypeDefinition": Array [ 167 | "name", 168 | "values", 169 | "directives", 170 | ], 171 | "EnumValue": Array [ 172 | "value", 173 | ], 174 | "EnumValueDefinition": Array [ 175 | "name", 176 | "directives", 177 | ], 178 | "Field": Array [ 179 | "name", 180 | "alias", 181 | "arguments", 182 | "directives", 183 | "selectionSet", 184 | ], 185 | "FieldDefinition": Array [ 186 | "name", 187 | "arguments", 188 | "type", 189 | "directives", 190 | ], 191 | "FloatValue": Array [ 192 | "value", 193 | ], 194 | "FragmentDefinition": Array [ 195 | "name", 196 | "typeCondition", 197 | "selectionSet", 198 | "directives", 199 | ], 200 | "FragmentSpread": Array [ 201 | "name", 202 | "directives", 203 | ], 204 | "InlineFragment": Array [ 205 | "selectionSet", 206 | "typeCondition", 207 | "directives", 208 | ], 209 | "InputObjectTypeDefinition": Array [ 210 | "name", 211 | "fields", 212 | "directives", 213 | ], 214 | "InputValueDefinition": Array [ 215 | "name", 216 | "type", 217 | "defaultValue", 218 | "directives", 219 | ], 220 | "IntValue": Array [ 221 | "value", 222 | ], 223 | "InterfaceTypeDefinition": Array [ 224 | "name", 225 | "fields", 226 | "directives", 227 | ], 228 | "ListType": Array [ 229 | "type", 230 | ], 231 | "ListValue": Array [ 232 | "values", 233 | ], 234 | "Name": Array [ 235 | "value", 236 | ], 237 | "NamedType": Array [ 238 | "name", 239 | ], 240 | "NonNullType": Array [ 241 | "type", 242 | ], 243 | "NullValue": Array [], 244 | "ObjectField": Array [ 245 | "name", 246 | "value", 247 | ], 248 | "ObjectTypeDefinition": Array [ 249 | "name", 250 | "fields", 251 | "interfaces", 252 | "directives", 253 | ], 254 | "ObjectValue": Array [ 255 | "fields", 256 | ], 257 | "OperationDefinition": Array [ 258 | "operation", 259 | "selectionSet", 260 | "name", 261 | "variableDefinitions", 262 | "directives", 263 | ], 264 | "OperationTypeDefinition": Array [ 265 | "operation", 266 | "type", 267 | ], 268 | "ScalarTypeDefinition": Array [ 269 | "name", 270 | "directives", 271 | ], 272 | "SchemaDefinition": Array [ 273 | "directives", 274 | "operationTypes", 275 | ], 276 | "SelectionSet": Array [ 277 | "selections", 278 | ], 279 | "StringValue": Array [ 280 | "value", 281 | ], 282 | "TypeExtensionDefinition": Array [ 283 | "definition", 284 | ], 285 | "UnionTypeDefinition": Array [ 286 | "name", 287 | "types", 288 | "directives", 289 | ], 290 | "Variable": Array [ 291 | "name", 292 | ], 293 | "VariableDefinition": Array [ 294 | "variable", 295 | "type", 296 | "defaultValue", 297 | ], 298 | } 299 | `; 300 | 301 | exports[`Flipped Alias Keys 1`] = ` 302 | Object { 303 | "AST": Array [ 304 | "Name", 305 | "Document", 306 | "OperationDefinition", 307 | "VariableDefinition", 308 | "Variable", 309 | "SelectionSet", 310 | "Field", 311 | "Argument", 312 | "FragmentSpread", 313 | "InlineFragment", 314 | "FragmentDefinition", 315 | "IntValue", 316 | "FloatValue", 317 | "StringValue", 318 | "BooleanValue", 319 | "NullValue", 320 | "EnumValue", 321 | "ListValue", 322 | "ObjectValue", 323 | "ObjectField", 324 | "Directive", 325 | "NamedType", 326 | "ListType", 327 | "NonNullType", 328 | "SchemaDefinition", 329 | "OperationTypeDefinition", 330 | "ScalarTypeDefinition", 331 | "ObjectTypeDefinition", 332 | "FieldDefinition", 333 | "InputValueDefinition", 334 | "InterfaceTypeDefinition", 335 | "UnionTypeDefinition", 336 | "EnumTypeDefinition", 337 | "EnumValueDefinition", 338 | "InputObjectTypeDefinition", 339 | "TypeExtensionDefinition", 340 | "DirectiveDefinition", 341 | ], 342 | "Definition": Array [ 343 | "OperationDefinition", 344 | "FragmentDefinition", 345 | ], 346 | "Selection": Array [ 347 | "Field", 348 | "FragmentSpread", 349 | "InlineFragment", 350 | ], 351 | "Type": Array [ 352 | "NamedType", 353 | "ListType", 354 | "NonNullType", 355 | ], 356 | "TypeDefinition": Array [ 357 | "ScalarTypeDefinition", 358 | "ObjectTypeDefinition", 359 | "InterfaceTypeDefinition", 360 | "UnionTypeDefinition", 361 | "EnumTypeDefinition", 362 | "InputObjectTypeDefinition", 363 | ], 364 | "TypeSystemDefinition": Array [ 365 | "SchemaDefinition", 366 | "TypeExtensionDefinition", 367 | "DirectiveDefinition", 368 | ], 369 | "Value": Array [ 370 | "Variable", 371 | "IntValue", 372 | "FloatValue", 373 | "StringValue", 374 | "BooleanValue", 375 | "NullValue", 376 | "EnumValue", 377 | "ListValue", 378 | "ObjectValue", 379 | ], 380 | } 381 | `; 382 | 383 | exports[`Node Fields 1`] = ` 384 | Object { 385 | "Argument": Object { 386 | "name": Object { 387 | "optional": false, 388 | "validate": [Function], 389 | }, 390 | "value": Object { 391 | "optional": false, 392 | "validate": [Function], 393 | }, 394 | }, 395 | "BooleanValue": Object { 396 | "value": Object { 397 | "optional": false, 398 | "validate": [Function], 399 | }, 400 | }, 401 | "Directive": Object { 402 | "arguments": Object { 403 | "optional": true, 404 | "validate": [Function], 405 | }, 406 | "name": Object { 407 | "optional": false, 408 | "validate": [Function], 409 | }, 410 | }, 411 | "DirectiveDefinition": Object { 412 | "arguments": Object { 413 | "optional": true, 414 | "validate": [Function], 415 | }, 416 | "locations": Object { 417 | "optional": false, 418 | "validate": [Function], 419 | }, 420 | "name": Object { 421 | "optional": false, 422 | "validate": [Function], 423 | }, 424 | }, 425 | "Document": Object { 426 | "definitions": Object { 427 | "optional": false, 428 | "validate": [Function], 429 | }, 430 | }, 431 | "EnumTypeDefinition": Object { 432 | "directives": Object { 433 | "optional": true, 434 | "validate": [Function], 435 | }, 436 | "name": Object { 437 | "optional": false, 438 | "validate": [Function], 439 | }, 440 | "values": Object { 441 | "optional": false, 442 | "validate": [Function], 443 | }, 444 | }, 445 | "EnumValue": Object { 446 | "value": Object { 447 | "optional": false, 448 | "validate": [Function], 449 | }, 450 | }, 451 | "EnumValueDefinition": Object { 452 | "directives": Object { 453 | "optional": true, 454 | "validate": [Function], 455 | }, 456 | "name": Object { 457 | "optional": false, 458 | "validate": [Function], 459 | }, 460 | }, 461 | "Field": Object { 462 | "alias": Object { 463 | "optional": true, 464 | "validate": [Function], 465 | }, 466 | "arguments": Object { 467 | "optional": true, 468 | "validate": [Function], 469 | }, 470 | "directives": Object { 471 | "optional": true, 472 | "validate": [Function], 473 | }, 474 | "name": Object { 475 | "optional": false, 476 | "validate": [Function], 477 | }, 478 | "selectionSet": Object { 479 | "optional": true, 480 | "validate": [Function], 481 | }, 482 | }, 483 | "FieldDefinition": Object { 484 | "arguments": Object { 485 | "optional": false, 486 | "validate": [Function], 487 | }, 488 | "directives": Object { 489 | "optional": true, 490 | "validate": [Function], 491 | }, 492 | "name": Object { 493 | "optional": false, 494 | "validate": [Function], 495 | }, 496 | "type": Object { 497 | "optional": false, 498 | "validate": [Function], 499 | }, 500 | }, 501 | "FloatValue": Object { 502 | "value": Object { 503 | "optional": false, 504 | "validate": [Function], 505 | }, 506 | }, 507 | "FragmentDefinition": Object { 508 | "directives": Object { 509 | "optional": true, 510 | "validate": [Function], 511 | }, 512 | "name": Object { 513 | "optional": false, 514 | "validate": [Function], 515 | }, 516 | "selectionSet": Object { 517 | "optional": false, 518 | "validate": [Function], 519 | }, 520 | "typeCondition": Object { 521 | "optional": false, 522 | "validate": [Function], 523 | }, 524 | }, 525 | "FragmentSpread": Object { 526 | "directives": Object { 527 | "optional": true, 528 | "validate": [Function], 529 | }, 530 | "name": Object { 531 | "optional": false, 532 | "validate": [Function], 533 | }, 534 | }, 535 | "InlineFragment": Object { 536 | "directives": Object { 537 | "optional": true, 538 | "validate": [Function], 539 | }, 540 | "selectionSet": Object { 541 | "optional": false, 542 | "validate": [Function], 543 | }, 544 | "typeCondition": Object { 545 | "optional": true, 546 | "validate": [Function], 547 | }, 548 | }, 549 | "InputObjectTypeDefinition": Object { 550 | "directives": Object { 551 | "optional": true, 552 | "validate": [Function], 553 | }, 554 | "fields": Object { 555 | "optional": false, 556 | "validate": [Function], 557 | }, 558 | "name": Object { 559 | "optional": false, 560 | "validate": [Function], 561 | }, 562 | }, 563 | "InputValueDefinition": Object { 564 | "defaultValue": Object { 565 | "optional": true, 566 | "validate": [Function], 567 | }, 568 | "directives": Object { 569 | "optional": true, 570 | "validate": [Function], 571 | }, 572 | "name": Object { 573 | "optional": false, 574 | "validate": [Function], 575 | }, 576 | "type": Object { 577 | "optional": false, 578 | "validate": [Function], 579 | }, 580 | }, 581 | "IntValue": Object { 582 | "value": Object { 583 | "optional": false, 584 | "validate": [Function], 585 | }, 586 | }, 587 | "InterfaceTypeDefinition": Object { 588 | "directives": Object { 589 | "optional": true, 590 | "validate": [Function], 591 | }, 592 | "fields": Object { 593 | "optional": false, 594 | "validate": [Function], 595 | }, 596 | "name": Object { 597 | "optional": false, 598 | "validate": [Function], 599 | }, 600 | }, 601 | "ListType": Object { 602 | "type": Object { 603 | "optional": false, 604 | "validate": [Function], 605 | }, 606 | }, 607 | "ListValue": Object { 608 | "values": Object { 609 | "optional": false, 610 | "validate": [Function], 611 | }, 612 | }, 613 | "Name": Object { 614 | "value": Object { 615 | "optional": false, 616 | "validate": [Function], 617 | }, 618 | }, 619 | "NamedType": Object { 620 | "name": Object { 621 | "optional": false, 622 | "validate": [Function], 623 | }, 624 | }, 625 | "NonNullType": Object { 626 | "type": Object { 627 | "optional": false, 628 | "validate": [Function], 629 | }, 630 | }, 631 | "NullValue": Object {}, 632 | "ObjectField": Object { 633 | "name": Object { 634 | "optional": false, 635 | "validate": [Function], 636 | }, 637 | "value": Object { 638 | "optional": false, 639 | "validate": [Function], 640 | }, 641 | }, 642 | "ObjectTypeDefinition": Object { 643 | "directives": Object { 644 | "optional": true, 645 | "validate": [Function], 646 | }, 647 | "fields": Object { 648 | "optional": false, 649 | "validate": [Function], 650 | }, 651 | "interfaces": Object { 652 | "optional": true, 653 | "validate": [Function], 654 | }, 655 | "name": Object { 656 | "optional": false, 657 | "validate": [Function], 658 | }, 659 | }, 660 | "ObjectValue": Object { 661 | "fields": Object { 662 | "optional": false, 663 | "validate": [Function], 664 | }, 665 | }, 666 | "OperationDefinition": Object { 667 | "directives": Object { 668 | "optional": true, 669 | "validate": [Function], 670 | }, 671 | "name": Object { 672 | "optional": true, 673 | "validate": [Function], 674 | }, 675 | "operation": Object { 676 | "optional": false, 677 | "validate": [Function], 678 | }, 679 | "selectionSet": Object { 680 | "optional": false, 681 | "validate": [Function], 682 | }, 683 | "variableDefinitions": Object { 684 | "optional": true, 685 | "validate": [Function], 686 | }, 687 | }, 688 | "OperationTypeDefinition": Object { 689 | "operation": Object { 690 | "optional": false, 691 | "validate": [Function], 692 | }, 693 | "type": Object { 694 | "optional": false, 695 | "validate": [Function], 696 | }, 697 | }, 698 | "ScalarTypeDefinition": Object { 699 | "directives": Object { 700 | "optional": true, 701 | "validate": [Function], 702 | }, 703 | "name": Object { 704 | "optional": false, 705 | "validate": [Function], 706 | }, 707 | }, 708 | "SchemaDefinition": Object { 709 | "directives": Object { 710 | "optional": false, 711 | "validate": [Function], 712 | }, 713 | "operationTypes": Object { 714 | "optional": false, 715 | "validate": [Function], 716 | }, 717 | }, 718 | "SelectionSet": Object { 719 | "selections": Object { 720 | "optional": false, 721 | "validate": [Function], 722 | }, 723 | }, 724 | "StringValue": Object { 725 | "value": Object { 726 | "optional": false, 727 | "validate": [Function], 728 | }, 729 | }, 730 | "TypeExtensionDefinition": Object { 731 | "definition": Object { 732 | "optional": false, 733 | "validate": [Function], 734 | }, 735 | }, 736 | "UnionTypeDefinition": Object { 737 | "directives": Object { 738 | "optional": true, 739 | "validate": [Function], 740 | }, 741 | "name": Object { 742 | "optional": false, 743 | "validate": [Function], 744 | }, 745 | "types": Object { 746 | "optional": false, 747 | "validate": [Function], 748 | }, 749 | }, 750 | "Variable": Object { 751 | "name": Object { 752 | "optional": false, 753 | "validate": [Function], 754 | }, 755 | }, 756 | "VariableDefinition": Object { 757 | "defaultValue": Object { 758 | "optional": true, 759 | "validate": [Function], 760 | }, 761 | "type": Object { 762 | "optional": false, 763 | "validate": [Function], 764 | }, 765 | "variable": Object { 766 | "optional": false, 767 | "validate": [Function], 768 | }, 769 | }, 770 | } 771 | `; 772 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abab@^1.0.3: 6 | version "1.0.4" 7 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.4.tgz#5faad9c2c07f60dd76770f71cf025b62a63cfd4e" 8 | 9 | abbrev@1: 10 | version "1.1.1" 11 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 12 | 13 | acorn-globals@^3.1.0: 14 | version "3.1.0" 15 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 16 | dependencies: 17 | acorn "^4.0.4" 18 | 19 | acorn@^4.0.4: 20 | version "4.0.13" 21 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 22 | 23 | ajv@^4.9.1: 24 | version "4.11.8" 25 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 26 | dependencies: 27 | co "^4.6.0" 28 | json-stable-stringify "^1.0.1" 29 | 30 | ajv@^5.1.0: 31 | version "5.2.3" 32 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.2.3.tgz#c06f598778c44c6b161abafe3466b81ad1814ed2" 33 | dependencies: 34 | co "^4.6.0" 35 | fast-deep-equal "^1.0.0" 36 | json-schema-traverse "^0.3.0" 37 | json-stable-stringify "^1.0.1" 38 | 39 | align-text@^0.1.1, align-text@^0.1.3: 40 | version "0.1.4" 41 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 42 | dependencies: 43 | kind-of "^3.0.2" 44 | longest "^1.0.1" 45 | repeat-string "^1.5.2" 46 | 47 | amdefine@>=0.0.4: 48 | version "1.0.1" 49 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 50 | 51 | ansi-escapes@^1.0.0: 52 | version "1.4.0" 53 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 54 | 55 | ansi-escapes@^3.0.0: 56 | version "3.0.0" 57 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92" 58 | 59 | ansi-regex@^2.0.0: 60 | version "2.1.1" 61 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 62 | 63 | ansi-regex@^3.0.0: 64 | version "3.0.0" 65 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 66 | 67 | ansi-styles@^2.2.1: 68 | version "2.2.1" 69 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 70 | 71 | ansi-styles@^3.1.0, ansi-styles@^3.2.0: 72 | version "3.2.0" 73 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 74 | dependencies: 75 | color-convert "^1.9.0" 76 | 77 | anymatch@^1.3.0: 78 | version "1.3.2" 79 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 80 | dependencies: 81 | micromatch "^2.1.5" 82 | normalize-path "^2.0.0" 83 | 84 | app-root-path@^2.0.0: 85 | version "2.0.1" 86 | resolved "https://registry.yarnpkg.com/app-root-path/-/app-root-path-2.0.1.tgz#cd62dcf8e4fd5a417efc664d2e5b10653c651b46" 87 | 88 | append-transform@^0.4.0: 89 | version "0.4.0" 90 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 91 | dependencies: 92 | default-require-extensions "^1.0.0" 93 | 94 | aproba@^1.0.3: 95 | version "1.2.0" 96 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 97 | 98 | are-we-there-yet@~1.1.2: 99 | version "1.1.4" 100 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 101 | dependencies: 102 | delegates "^1.0.0" 103 | readable-stream "^2.0.6" 104 | 105 | argparse@^1.0.7: 106 | version "1.0.9" 107 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 108 | dependencies: 109 | sprintf-js "~1.0.2" 110 | 111 | arr-diff@^2.0.0: 112 | version "2.0.0" 113 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 114 | dependencies: 115 | arr-flatten "^1.0.1" 116 | 117 | arr-flatten@^1.0.1: 118 | version "1.1.0" 119 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 120 | 121 | array-equal@^1.0.0: 122 | version "1.0.0" 123 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 124 | 125 | array-unique@^0.2.1: 126 | version "0.2.1" 127 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 128 | 129 | arrify@^1.0.1: 130 | version "1.0.1" 131 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 132 | 133 | asn1@~0.2.3: 134 | version "0.2.3" 135 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 136 | 137 | assert-plus@1.0.0, assert-plus@^1.0.0: 138 | version "1.0.0" 139 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 140 | 141 | assert-plus@^0.2.0: 142 | version "0.2.0" 143 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 144 | 145 | astral-regex@^1.0.0: 146 | version "1.0.0" 147 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 148 | 149 | async-each@^1.0.0: 150 | version "1.0.1" 151 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 152 | 153 | async@^1.4.0: 154 | version "1.5.2" 155 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 156 | 157 | async@^2.1.4: 158 | version "2.5.0" 159 | resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d" 160 | dependencies: 161 | lodash "^4.14.0" 162 | 163 | asynckit@^0.4.0: 164 | version "0.4.0" 165 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 166 | 167 | aws-sign2@~0.6.0: 168 | version "0.6.0" 169 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 170 | 171 | aws-sign2@~0.7.0: 172 | version "0.7.0" 173 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 174 | 175 | aws4@^1.2.1, aws4@^1.6.0: 176 | version "1.6.0" 177 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 178 | 179 | babel-cli@^6.26.0: 180 | version "6.26.0" 181 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1" 182 | dependencies: 183 | babel-core "^6.26.0" 184 | babel-polyfill "^6.26.0" 185 | babel-register "^6.26.0" 186 | babel-runtime "^6.26.0" 187 | commander "^2.11.0" 188 | convert-source-map "^1.5.0" 189 | fs-readdir-recursive "^1.0.0" 190 | glob "^7.1.2" 191 | lodash "^4.17.4" 192 | output-file-sync "^1.1.2" 193 | path-is-absolute "^1.0.1" 194 | slash "^1.0.0" 195 | source-map "^0.5.6" 196 | v8flags "^2.1.1" 197 | optionalDependencies: 198 | chokidar "^1.6.1" 199 | 200 | babel-code-frame@^6.26.0: 201 | version "6.26.0" 202 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 203 | dependencies: 204 | chalk "^1.1.3" 205 | esutils "^2.0.2" 206 | js-tokens "^3.0.2" 207 | 208 | babel-core@^6.0.0, babel-core@^6.26.0: 209 | version "6.26.0" 210 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 211 | dependencies: 212 | babel-code-frame "^6.26.0" 213 | babel-generator "^6.26.0" 214 | babel-helpers "^6.24.1" 215 | babel-messages "^6.23.0" 216 | babel-register "^6.26.0" 217 | babel-runtime "^6.26.0" 218 | babel-template "^6.26.0" 219 | babel-traverse "^6.26.0" 220 | babel-types "^6.26.0" 221 | babylon "^6.18.0" 222 | convert-source-map "^1.5.0" 223 | debug "^2.6.8" 224 | json5 "^0.5.1" 225 | lodash "^4.17.4" 226 | minimatch "^3.0.4" 227 | path-is-absolute "^1.0.1" 228 | private "^0.1.7" 229 | slash "^1.0.0" 230 | source-map "^0.5.6" 231 | 232 | babel-generator@^6.18.0, babel-generator@^6.26.0: 233 | version "6.26.0" 234 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 235 | dependencies: 236 | babel-messages "^6.23.0" 237 | babel-runtime "^6.26.0" 238 | babel-types "^6.26.0" 239 | detect-indent "^4.0.0" 240 | jsesc "^1.3.0" 241 | lodash "^4.17.4" 242 | source-map "^0.5.6" 243 | trim-right "^1.0.1" 244 | 245 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 246 | version "6.24.1" 247 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 248 | dependencies: 249 | babel-helper-explode-assignable-expression "^6.24.1" 250 | babel-runtime "^6.22.0" 251 | babel-types "^6.24.1" 252 | 253 | babel-helper-call-delegate@^6.24.1: 254 | version "6.24.1" 255 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 256 | dependencies: 257 | babel-helper-hoist-variables "^6.24.1" 258 | babel-runtime "^6.22.0" 259 | babel-traverse "^6.24.1" 260 | babel-types "^6.24.1" 261 | 262 | babel-helper-define-map@^6.24.1: 263 | version "6.26.0" 264 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 265 | dependencies: 266 | babel-helper-function-name "^6.24.1" 267 | babel-runtime "^6.26.0" 268 | babel-types "^6.26.0" 269 | lodash "^4.17.4" 270 | 271 | babel-helper-explode-assignable-expression@^6.24.1: 272 | version "6.24.1" 273 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 274 | dependencies: 275 | babel-runtime "^6.22.0" 276 | babel-traverse "^6.24.1" 277 | babel-types "^6.24.1" 278 | 279 | babel-helper-function-name@^6.24.1: 280 | version "6.24.1" 281 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 282 | dependencies: 283 | babel-helper-get-function-arity "^6.24.1" 284 | babel-runtime "^6.22.0" 285 | babel-template "^6.24.1" 286 | babel-traverse "^6.24.1" 287 | babel-types "^6.24.1" 288 | 289 | babel-helper-get-function-arity@^6.24.1: 290 | version "6.24.1" 291 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 292 | dependencies: 293 | babel-runtime "^6.22.0" 294 | babel-types "^6.24.1" 295 | 296 | babel-helper-hoist-variables@^6.24.1: 297 | version "6.24.1" 298 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 299 | dependencies: 300 | babel-runtime "^6.22.0" 301 | babel-types "^6.24.1" 302 | 303 | babel-helper-optimise-call-expression@^6.24.1: 304 | version "6.24.1" 305 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 306 | dependencies: 307 | babel-runtime "^6.22.0" 308 | babel-types "^6.24.1" 309 | 310 | babel-helper-regex@^6.24.1: 311 | version "6.26.0" 312 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 313 | dependencies: 314 | babel-runtime "^6.26.0" 315 | babel-types "^6.26.0" 316 | lodash "^4.17.4" 317 | 318 | babel-helper-remap-async-to-generator@^6.24.1: 319 | version "6.24.1" 320 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 321 | dependencies: 322 | babel-helper-function-name "^6.24.1" 323 | babel-runtime "^6.22.0" 324 | babel-template "^6.24.1" 325 | babel-traverse "^6.24.1" 326 | babel-types "^6.24.1" 327 | 328 | babel-helper-replace-supers@^6.24.1: 329 | version "6.24.1" 330 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 331 | dependencies: 332 | babel-helper-optimise-call-expression "^6.24.1" 333 | babel-messages "^6.23.0" 334 | babel-runtime "^6.22.0" 335 | babel-template "^6.24.1" 336 | babel-traverse "^6.24.1" 337 | babel-types "^6.24.1" 338 | 339 | babel-helpers@^6.24.1: 340 | version "6.24.1" 341 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 342 | dependencies: 343 | babel-runtime "^6.22.0" 344 | babel-template "^6.24.1" 345 | 346 | babel-jest@^21.2.0: 347 | version "21.2.0" 348 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-21.2.0.tgz#2ce059519a9374a2c46f2455b6fbef5ad75d863e" 349 | dependencies: 350 | babel-plugin-istanbul "^4.0.0" 351 | babel-preset-jest "^21.2.0" 352 | 353 | babel-messages@^6.23.0: 354 | version "6.23.0" 355 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 356 | dependencies: 357 | babel-runtime "^6.22.0" 358 | 359 | babel-plugin-check-es2015-constants@^6.22.0: 360 | version "6.22.0" 361 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 362 | dependencies: 363 | babel-runtime "^6.22.0" 364 | 365 | babel-plugin-istanbul@^4.0.0: 366 | version "4.1.5" 367 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.5.tgz#6760cdd977f411d3e175bb064f2bc327d99b2b6e" 368 | dependencies: 369 | find-up "^2.1.0" 370 | istanbul-lib-instrument "^1.7.5" 371 | test-exclude "^4.1.1" 372 | 373 | babel-plugin-jest-hoist@^21.2.0: 374 | version "21.2.0" 375 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-21.2.0.tgz#2cef637259bd4b628a6cace039de5fcd14dbb006" 376 | 377 | babel-plugin-syntax-async-functions@^6.8.0: 378 | version "6.13.0" 379 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 380 | 381 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 382 | version "6.13.0" 383 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 384 | 385 | babel-plugin-syntax-flow@^6.18.0: 386 | version "6.18.0" 387 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 388 | 389 | babel-plugin-syntax-object-rest-spread@^6.13.0: 390 | version "6.13.0" 391 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 392 | 393 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 394 | version "6.22.0" 395 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 396 | 397 | babel-plugin-transform-async-to-generator@^6.22.0: 398 | version "6.24.1" 399 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 400 | dependencies: 401 | babel-helper-remap-async-to-generator "^6.24.1" 402 | babel-plugin-syntax-async-functions "^6.8.0" 403 | babel-runtime "^6.22.0" 404 | 405 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 406 | version "6.22.0" 407 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 408 | dependencies: 409 | babel-runtime "^6.22.0" 410 | 411 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 412 | version "6.22.0" 413 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 414 | dependencies: 415 | babel-runtime "^6.22.0" 416 | 417 | babel-plugin-transform-es2015-block-scoping@^6.23.0: 418 | version "6.26.0" 419 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 420 | dependencies: 421 | babel-runtime "^6.26.0" 422 | babel-template "^6.26.0" 423 | babel-traverse "^6.26.0" 424 | babel-types "^6.26.0" 425 | lodash "^4.17.4" 426 | 427 | babel-plugin-transform-es2015-classes@^6.23.0: 428 | version "6.24.1" 429 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 430 | dependencies: 431 | babel-helper-define-map "^6.24.1" 432 | babel-helper-function-name "^6.24.1" 433 | babel-helper-optimise-call-expression "^6.24.1" 434 | babel-helper-replace-supers "^6.24.1" 435 | babel-messages "^6.23.0" 436 | babel-runtime "^6.22.0" 437 | babel-template "^6.24.1" 438 | babel-traverse "^6.24.1" 439 | babel-types "^6.24.1" 440 | 441 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 442 | version "6.24.1" 443 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 444 | dependencies: 445 | babel-runtime "^6.22.0" 446 | babel-template "^6.24.1" 447 | 448 | babel-plugin-transform-es2015-destructuring@^6.23.0: 449 | version "6.23.0" 450 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 451 | dependencies: 452 | babel-runtime "^6.22.0" 453 | 454 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 455 | version "6.24.1" 456 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 457 | dependencies: 458 | babel-runtime "^6.22.0" 459 | babel-types "^6.24.1" 460 | 461 | babel-plugin-transform-es2015-for-of@^6.23.0: 462 | version "6.23.0" 463 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 464 | dependencies: 465 | babel-runtime "^6.22.0" 466 | 467 | babel-plugin-transform-es2015-function-name@^6.22.0: 468 | version "6.24.1" 469 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 470 | dependencies: 471 | babel-helper-function-name "^6.24.1" 472 | babel-runtime "^6.22.0" 473 | babel-types "^6.24.1" 474 | 475 | babel-plugin-transform-es2015-literals@^6.22.0: 476 | version "6.22.0" 477 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 478 | dependencies: 479 | babel-runtime "^6.22.0" 480 | 481 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 482 | version "6.24.1" 483 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 484 | dependencies: 485 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 486 | babel-runtime "^6.22.0" 487 | babel-template "^6.24.1" 488 | 489 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 490 | version "6.26.0" 491 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" 492 | dependencies: 493 | babel-plugin-transform-strict-mode "^6.24.1" 494 | babel-runtime "^6.26.0" 495 | babel-template "^6.26.0" 496 | babel-types "^6.26.0" 497 | 498 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0: 499 | version "6.24.1" 500 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 501 | dependencies: 502 | babel-helper-hoist-variables "^6.24.1" 503 | babel-runtime "^6.22.0" 504 | babel-template "^6.24.1" 505 | 506 | babel-plugin-transform-es2015-modules-umd@^6.23.0: 507 | version "6.24.1" 508 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 509 | dependencies: 510 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 511 | babel-runtime "^6.22.0" 512 | babel-template "^6.24.1" 513 | 514 | babel-plugin-transform-es2015-object-super@^6.22.0: 515 | version "6.24.1" 516 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 517 | dependencies: 518 | babel-helper-replace-supers "^6.24.1" 519 | babel-runtime "^6.22.0" 520 | 521 | babel-plugin-transform-es2015-parameters@^6.23.0: 522 | version "6.24.1" 523 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 524 | dependencies: 525 | babel-helper-call-delegate "^6.24.1" 526 | babel-helper-get-function-arity "^6.24.1" 527 | babel-runtime "^6.22.0" 528 | babel-template "^6.24.1" 529 | babel-traverse "^6.24.1" 530 | babel-types "^6.24.1" 531 | 532 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 533 | version "6.24.1" 534 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 535 | dependencies: 536 | babel-runtime "^6.22.0" 537 | babel-types "^6.24.1" 538 | 539 | babel-plugin-transform-es2015-spread@^6.22.0: 540 | version "6.22.0" 541 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 542 | dependencies: 543 | babel-runtime "^6.22.0" 544 | 545 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 546 | version "6.24.1" 547 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 548 | dependencies: 549 | babel-helper-regex "^6.24.1" 550 | babel-runtime "^6.22.0" 551 | babel-types "^6.24.1" 552 | 553 | babel-plugin-transform-es2015-template-literals@^6.22.0: 554 | version "6.22.0" 555 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 556 | dependencies: 557 | babel-runtime "^6.22.0" 558 | 559 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 560 | version "6.23.0" 561 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 562 | dependencies: 563 | babel-runtime "^6.22.0" 564 | 565 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 566 | version "6.24.1" 567 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 568 | dependencies: 569 | babel-helper-regex "^6.24.1" 570 | babel-runtime "^6.22.0" 571 | regexpu-core "^2.0.0" 572 | 573 | babel-plugin-transform-exponentiation-operator@^6.22.0: 574 | version "6.24.1" 575 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 576 | dependencies: 577 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 578 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 579 | babel-runtime "^6.22.0" 580 | 581 | babel-plugin-transform-flow-strip-types@^6.22.0: 582 | version "6.22.0" 583 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" 584 | dependencies: 585 | babel-plugin-syntax-flow "^6.18.0" 586 | babel-runtime "^6.22.0" 587 | 588 | babel-plugin-transform-regenerator@^6.22.0: 589 | version "6.26.0" 590 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 591 | dependencies: 592 | regenerator-transform "^0.10.0" 593 | 594 | babel-plugin-transform-strict-mode@^6.24.1: 595 | version "6.24.1" 596 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 597 | dependencies: 598 | babel-runtime "^6.22.0" 599 | babel-types "^6.24.1" 600 | 601 | babel-polyfill@^6.26.0: 602 | version "6.26.0" 603 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" 604 | dependencies: 605 | babel-runtime "^6.26.0" 606 | core-js "^2.5.0" 607 | regenerator-runtime "^0.10.5" 608 | 609 | babel-preset-env@^1.6.0: 610 | version "1.6.0" 611 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.6.0.tgz#2de1c782a780a0a5d605d199c957596da43c44e4" 612 | dependencies: 613 | babel-plugin-check-es2015-constants "^6.22.0" 614 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 615 | babel-plugin-transform-async-to-generator "^6.22.0" 616 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 617 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 618 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 619 | babel-plugin-transform-es2015-classes "^6.23.0" 620 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 621 | babel-plugin-transform-es2015-destructuring "^6.23.0" 622 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 623 | babel-plugin-transform-es2015-for-of "^6.23.0" 624 | babel-plugin-transform-es2015-function-name "^6.22.0" 625 | babel-plugin-transform-es2015-literals "^6.22.0" 626 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 627 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 628 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 629 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 630 | babel-plugin-transform-es2015-object-super "^6.22.0" 631 | babel-plugin-transform-es2015-parameters "^6.23.0" 632 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 633 | babel-plugin-transform-es2015-spread "^6.22.0" 634 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 635 | babel-plugin-transform-es2015-template-literals "^6.22.0" 636 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 637 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 638 | babel-plugin-transform-exponentiation-operator "^6.22.0" 639 | babel-plugin-transform-regenerator "^6.22.0" 640 | browserslist "^2.1.2" 641 | invariant "^2.2.2" 642 | semver "^5.3.0" 643 | 644 | babel-preset-flow@^6.23.0: 645 | version "6.23.0" 646 | resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d" 647 | dependencies: 648 | babel-plugin-transform-flow-strip-types "^6.22.0" 649 | 650 | babel-preset-jest@^21.2.0: 651 | version "21.2.0" 652 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-21.2.0.tgz#ff9d2bce08abd98e8a36d9a8a5189b9173b85638" 653 | dependencies: 654 | babel-plugin-jest-hoist "^21.2.0" 655 | babel-plugin-syntax-object-rest-spread "^6.13.0" 656 | 657 | babel-register@^6.26.0: 658 | version "6.26.0" 659 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 660 | dependencies: 661 | babel-core "^6.26.0" 662 | babel-runtime "^6.26.0" 663 | core-js "^2.5.0" 664 | home-or-tmp "^2.0.0" 665 | lodash "^4.17.4" 666 | mkdirp "^0.5.1" 667 | source-map-support "^0.4.15" 668 | 669 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 670 | version "6.26.0" 671 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 672 | dependencies: 673 | core-js "^2.4.0" 674 | regenerator-runtime "^0.11.0" 675 | 676 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0: 677 | version "6.26.0" 678 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 679 | dependencies: 680 | babel-runtime "^6.26.0" 681 | babel-traverse "^6.26.0" 682 | babel-types "^6.26.0" 683 | babylon "^6.18.0" 684 | lodash "^4.17.4" 685 | 686 | babel-traverse@^6.18.0, babel-traverse@^6.24.1, babel-traverse@^6.26.0: 687 | version "6.26.0" 688 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 689 | dependencies: 690 | babel-code-frame "^6.26.0" 691 | babel-messages "^6.23.0" 692 | babel-runtime "^6.26.0" 693 | babel-types "^6.26.0" 694 | babylon "^6.18.0" 695 | debug "^2.6.8" 696 | globals "^9.18.0" 697 | invariant "^2.2.2" 698 | lodash "^4.17.4" 699 | 700 | babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 701 | version "6.26.0" 702 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 703 | dependencies: 704 | babel-runtime "^6.26.0" 705 | esutils "^2.0.2" 706 | lodash "^4.17.4" 707 | to-fast-properties "^1.0.3" 708 | 709 | babylon@^6.18.0: 710 | version "6.18.0" 711 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 712 | 713 | balanced-match@^1.0.0: 714 | version "1.0.0" 715 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 716 | 717 | bcrypt-pbkdf@^1.0.0: 718 | version "1.0.1" 719 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 720 | dependencies: 721 | tweetnacl "^0.14.3" 722 | 723 | binary-extensions@^1.0.0: 724 | version "1.10.0" 725 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.10.0.tgz#9aeb9a6c5e88638aad171e167f5900abe24835d0" 726 | 727 | block-stream@*: 728 | version "0.0.9" 729 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 730 | dependencies: 731 | inherits "~2.0.0" 732 | 733 | boom@2.x.x: 734 | version "2.10.1" 735 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 736 | dependencies: 737 | hoek "2.x.x" 738 | 739 | boom@4.x.x: 740 | version "4.3.1" 741 | resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31" 742 | dependencies: 743 | hoek "4.x.x" 744 | 745 | boom@5.x.x: 746 | version "5.2.0" 747 | resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02" 748 | dependencies: 749 | hoek "4.x.x" 750 | 751 | brace-expansion@^1.1.7: 752 | version "1.1.8" 753 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 754 | dependencies: 755 | balanced-match "^1.0.0" 756 | concat-map "0.0.1" 757 | 758 | braces@^1.8.2: 759 | version "1.8.5" 760 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 761 | dependencies: 762 | expand-range "^1.8.1" 763 | preserve "^0.2.0" 764 | repeat-element "^1.1.2" 765 | 766 | browser-resolve@^1.11.2: 767 | version "1.11.2" 768 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 769 | dependencies: 770 | resolve "1.1.7" 771 | 772 | browserslist@^2.1.2: 773 | version "2.5.1" 774 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.5.1.tgz#68e4bc536bbcc6086d62843a2ffccea8396821c6" 775 | dependencies: 776 | caniuse-lite "^1.0.30000744" 777 | electron-to-chromium "^1.3.24" 778 | 779 | bser@^2.0.0: 780 | version "2.0.0" 781 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 782 | dependencies: 783 | node-int64 "^0.4.0" 784 | 785 | builtin-modules@^1.0.0: 786 | version "1.1.1" 787 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 788 | 789 | callsites@^2.0.0: 790 | version "2.0.0" 791 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 792 | 793 | camelcase@^1.0.2: 794 | version "1.2.1" 795 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 796 | 797 | camelcase@^4.1.0: 798 | version "4.1.0" 799 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 800 | 801 | caniuse-lite@^1.0.30000744: 802 | version "1.0.30000745" 803 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000745.tgz#20d6fede1157a4935133502946fc7e0e6b880da5" 804 | 805 | caseless@~0.12.0: 806 | version "0.12.0" 807 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 808 | 809 | center-align@^0.1.1: 810 | version "0.1.3" 811 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 812 | dependencies: 813 | align-text "^0.1.3" 814 | lazy-cache "^1.0.3" 815 | 816 | chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3: 817 | version "1.1.3" 818 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 819 | dependencies: 820 | ansi-styles "^2.2.1" 821 | escape-string-regexp "^1.0.2" 822 | has-ansi "^2.0.0" 823 | strip-ansi "^3.0.0" 824 | supports-color "^2.0.0" 825 | 826 | chalk@^2.0.1, chalk@^2.1.0: 827 | version "2.1.0" 828 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.1.0.tgz#ac5becf14fa21b99c6c92ca7a7d7cfd5b17e743e" 829 | dependencies: 830 | ansi-styles "^3.1.0" 831 | escape-string-regexp "^1.0.5" 832 | supports-color "^4.0.0" 833 | 834 | chokidar@^1.6.1: 835 | version "1.7.0" 836 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 837 | dependencies: 838 | anymatch "^1.3.0" 839 | async-each "^1.0.0" 840 | glob-parent "^2.0.0" 841 | inherits "^2.0.1" 842 | is-binary-path "^1.0.0" 843 | is-glob "^2.0.0" 844 | path-is-absolute "^1.0.0" 845 | readdirp "^2.0.0" 846 | optionalDependencies: 847 | fsevents "^1.0.0" 848 | 849 | ci-info@^1.0.0: 850 | version "1.1.1" 851 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.1.tgz#47b44df118c48d2597b56d342e7e25791060171a" 852 | 853 | cli-cursor@^1.0.2: 854 | version "1.0.2" 855 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 856 | dependencies: 857 | restore-cursor "^1.0.1" 858 | 859 | cli-spinners@^0.1.2: 860 | version "0.1.2" 861 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-0.1.2.tgz#bb764d88e185fb9e1e6a2a1f19772318f605e31c" 862 | 863 | cli-truncate@^0.2.1: 864 | version "0.2.1" 865 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-0.2.1.tgz#9f15cfbb0705005369216c626ac7d05ab90dd574" 866 | dependencies: 867 | slice-ansi "0.0.4" 868 | string-width "^1.0.1" 869 | 870 | cliui@^2.1.0: 871 | version "2.1.0" 872 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 873 | dependencies: 874 | center-align "^0.1.1" 875 | right-align "^0.1.1" 876 | wordwrap "0.0.2" 877 | 878 | cliui@^3.2.0: 879 | version "3.2.0" 880 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 881 | dependencies: 882 | string-width "^1.0.1" 883 | strip-ansi "^3.0.1" 884 | wrap-ansi "^2.0.0" 885 | 886 | co@^4.6.0: 887 | version "4.6.0" 888 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 889 | 890 | code-point-at@^1.0.0: 891 | version "1.1.0" 892 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 893 | 894 | color-convert@^1.9.0: 895 | version "1.9.0" 896 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 897 | dependencies: 898 | color-name "^1.1.1" 899 | 900 | color-name@^1.1.1: 901 | version "1.1.3" 902 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 903 | 904 | combined-stream@^1.0.5, combined-stream@~1.0.5: 905 | version "1.0.5" 906 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 907 | dependencies: 908 | delayed-stream "~1.0.0" 909 | 910 | commander@^2.11.0, commander@^2.9.0: 911 | version "2.11.0" 912 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" 913 | 914 | concat-map@0.0.1: 915 | version "0.0.1" 916 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 917 | 918 | concat-stream@^1.4.7: 919 | version "1.6.0" 920 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 921 | dependencies: 922 | inherits "^2.0.3" 923 | readable-stream "^2.2.2" 924 | typedarray "^0.0.6" 925 | 926 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 927 | version "1.1.0" 928 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 929 | 930 | content-type-parser@^1.0.1: 931 | version "1.0.1" 932 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 933 | 934 | convert-source-map@^1.4.0, convert-source-map@^1.5.0: 935 | version "1.5.0" 936 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 937 | 938 | core-js@^2.4.0, core-js@^2.5.0: 939 | version "2.5.1" 940 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.1.tgz#ae6874dc66937789b80754ff5428df66819ca50b" 941 | 942 | core-util-is@1.0.2, core-util-is@~1.0.0: 943 | version "1.0.2" 944 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 945 | 946 | cosmiconfig@^1.1.0: 947 | version "1.1.0" 948 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-1.1.0.tgz#0dea0f9804efdfb929fbb1b188e25553ea053d37" 949 | dependencies: 950 | graceful-fs "^4.1.2" 951 | js-yaml "^3.4.3" 952 | minimist "^1.2.0" 953 | object-assign "^4.0.1" 954 | os-homedir "^1.0.1" 955 | parse-json "^2.2.0" 956 | pinkie-promise "^2.0.0" 957 | require-from-string "^1.1.0" 958 | 959 | cross-spawn@^5.0.1: 960 | version "5.1.0" 961 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 962 | dependencies: 963 | lru-cache "^4.0.1" 964 | shebang-command "^1.2.0" 965 | which "^1.2.9" 966 | 967 | cryptiles@2.x.x: 968 | version "2.0.5" 969 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 970 | dependencies: 971 | boom "2.x.x" 972 | 973 | cryptiles@3.x.x: 974 | version "3.1.2" 975 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe" 976 | dependencies: 977 | boom "5.x.x" 978 | 979 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 980 | version "0.3.2" 981 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 982 | 983 | "cssstyle@>= 0.2.37 < 0.3.0": 984 | version "0.2.37" 985 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 986 | dependencies: 987 | cssom "0.3.x" 988 | 989 | dashdash@^1.12.0: 990 | version "1.14.1" 991 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 992 | dependencies: 993 | assert-plus "^1.0.0" 994 | 995 | date-fns@^1.27.2: 996 | version "1.29.0" 997 | resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.29.0.tgz#12e609cdcb935127311d04d33334e2960a2a54e6" 998 | 999 | debug@^2.2.0, debug@^2.6.3, debug@^2.6.8: 1000 | version "2.6.9" 1001 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1002 | dependencies: 1003 | ms "2.0.0" 1004 | 1005 | decamelize@^1.0.0, decamelize@^1.1.1: 1006 | version "1.2.0" 1007 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1008 | 1009 | deep-extend@~0.4.0: 1010 | version "0.4.2" 1011 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1012 | 1013 | deep-is@~0.1.3: 1014 | version "0.1.3" 1015 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1016 | 1017 | default-require-extensions@^1.0.0: 1018 | version "1.0.0" 1019 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 1020 | dependencies: 1021 | strip-bom "^2.0.0" 1022 | 1023 | delayed-stream@~1.0.0: 1024 | version "1.0.0" 1025 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1026 | 1027 | delegates@^1.0.0: 1028 | version "1.0.0" 1029 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1030 | 1031 | detect-indent@^4.0.0: 1032 | version "4.0.0" 1033 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1034 | dependencies: 1035 | repeating "^2.0.0" 1036 | 1037 | diff@^3.2.0: 1038 | version "3.4.0" 1039 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.4.0.tgz#b1d85507daf3964828de54b37d0d73ba67dda56c" 1040 | 1041 | ecc-jsbn@~0.1.1: 1042 | version "0.1.1" 1043 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1044 | dependencies: 1045 | jsbn "~0.1.0" 1046 | 1047 | electron-to-chromium@^1.3.24: 1048 | version "1.3.24" 1049 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.24.tgz#9b7b88bb05ceb9fa016a177833cc2dde388f21b6" 1050 | 1051 | elegant-spinner@^1.0.1: 1052 | version "1.0.1" 1053 | resolved "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e" 1054 | 1055 | errno@^0.1.4: 1056 | version "0.1.4" 1057 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 1058 | dependencies: 1059 | prr "~0.0.0" 1060 | 1061 | error-ex@^1.2.0: 1062 | version "1.3.1" 1063 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1064 | dependencies: 1065 | is-arrayish "^0.2.1" 1066 | 1067 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1068 | version "1.0.5" 1069 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1070 | 1071 | escodegen@^1.6.1: 1072 | version "1.9.0" 1073 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.9.0.tgz#9811a2f265dc1cd3894420ee3717064b632b8852" 1074 | dependencies: 1075 | esprima "^3.1.3" 1076 | estraverse "^4.2.0" 1077 | esutils "^2.0.2" 1078 | optionator "^0.8.1" 1079 | optionalDependencies: 1080 | source-map "~0.5.6" 1081 | 1082 | esprima@^3.1.3: 1083 | version "3.1.3" 1084 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1085 | 1086 | esprima@^4.0.0: 1087 | version "4.0.0" 1088 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1089 | 1090 | estraverse@^4.2.0: 1091 | version "4.2.0" 1092 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1093 | 1094 | esutils@^2.0.2: 1095 | version "2.0.2" 1096 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1097 | 1098 | exec-sh@^0.2.0: 1099 | version "0.2.1" 1100 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.1.tgz#163b98a6e89e6b65b47c2a28d215bc1f63989c38" 1101 | dependencies: 1102 | merge "^1.1.3" 1103 | 1104 | execa@^0.7.0: 1105 | version "0.7.0" 1106 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1107 | dependencies: 1108 | cross-spawn "^5.0.1" 1109 | get-stream "^3.0.0" 1110 | is-stream "^1.1.0" 1111 | npm-run-path "^2.0.0" 1112 | p-finally "^1.0.0" 1113 | signal-exit "^3.0.0" 1114 | strip-eof "^1.0.0" 1115 | 1116 | execa@^0.8.0: 1117 | version "0.8.0" 1118 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.8.0.tgz#d8d76bbc1b55217ed190fd6dd49d3c774ecfc8da" 1119 | dependencies: 1120 | cross-spawn "^5.0.1" 1121 | get-stream "^3.0.0" 1122 | is-stream "^1.1.0" 1123 | npm-run-path "^2.0.0" 1124 | p-finally "^1.0.0" 1125 | signal-exit "^3.0.0" 1126 | strip-eof "^1.0.0" 1127 | 1128 | exit-hook@^1.0.0: 1129 | version "1.1.1" 1130 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1131 | 1132 | expand-brackets@^0.1.4: 1133 | version "0.1.5" 1134 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1135 | dependencies: 1136 | is-posix-bracket "^0.1.0" 1137 | 1138 | expand-range@^1.8.1: 1139 | version "1.8.2" 1140 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1141 | dependencies: 1142 | fill-range "^2.1.0" 1143 | 1144 | expect@^21.2.1: 1145 | version "21.2.1" 1146 | resolved "https://registry.yarnpkg.com/expect/-/expect-21.2.1.tgz#003ac2ac7005c3c29e73b38a272d4afadd6d1d7b" 1147 | dependencies: 1148 | ansi-styles "^3.2.0" 1149 | jest-diff "^21.2.1" 1150 | jest-get-type "^21.2.0" 1151 | jest-matcher-utils "^21.2.1" 1152 | jest-message-util "^21.2.1" 1153 | jest-regex-util "^21.2.0" 1154 | 1155 | extend@~3.0.0, extend@~3.0.1: 1156 | version "3.0.1" 1157 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1158 | 1159 | extglob@^0.3.1: 1160 | version "0.3.2" 1161 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1162 | dependencies: 1163 | is-extglob "^1.0.0" 1164 | 1165 | extsprintf@1.3.0, extsprintf@^1.2.0: 1166 | version "1.3.0" 1167 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1168 | 1169 | fast-deep-equal@^1.0.0: 1170 | version "1.0.0" 1171 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 1172 | 1173 | fast-levenshtein@~2.0.4: 1174 | version "2.0.6" 1175 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1176 | 1177 | fb-watchman@^2.0.0: 1178 | version "2.0.0" 1179 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 1180 | dependencies: 1181 | bser "^2.0.0" 1182 | 1183 | figures@^1.7.0: 1184 | version "1.7.0" 1185 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1186 | dependencies: 1187 | escape-string-regexp "^1.0.5" 1188 | object-assign "^4.1.0" 1189 | 1190 | filename-regex@^2.0.0: 1191 | version "2.0.1" 1192 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1193 | 1194 | fileset@^2.0.2: 1195 | version "2.0.3" 1196 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 1197 | dependencies: 1198 | glob "^7.0.3" 1199 | minimatch "^3.0.3" 1200 | 1201 | fill-range@^2.1.0: 1202 | version "2.2.3" 1203 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1204 | dependencies: 1205 | is-number "^2.1.0" 1206 | isobject "^2.0.0" 1207 | randomatic "^1.1.3" 1208 | repeat-element "^1.1.2" 1209 | repeat-string "^1.5.2" 1210 | 1211 | find-up@^1.0.0: 1212 | version "1.1.2" 1213 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1214 | dependencies: 1215 | path-exists "^2.0.0" 1216 | pinkie-promise "^2.0.0" 1217 | 1218 | find-up@^2.0.0, find-up@^2.1.0: 1219 | version "2.1.0" 1220 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1221 | dependencies: 1222 | locate-path "^2.0.0" 1223 | 1224 | flow-bin@^0.57.3: 1225 | version "0.57.3" 1226 | resolved "https://registry.yarnpkg.com/flow-bin/-/flow-bin-0.57.3.tgz#843fb80a821b6d0c5847f7bb3f42365ffe53b27b" 1227 | 1228 | flow-parser@^0.57.3: 1229 | version "0.57.3" 1230 | resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.57.3.tgz#b8d241a1b1cbae043afa7976e39f269988d8fe34" 1231 | 1232 | for-in@^1.0.1: 1233 | version "1.0.2" 1234 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1235 | 1236 | for-own@^0.1.4: 1237 | version "0.1.5" 1238 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1239 | dependencies: 1240 | for-in "^1.0.1" 1241 | 1242 | forever-agent@~0.6.1: 1243 | version "0.6.1" 1244 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1245 | 1246 | form-data@~2.1.1: 1247 | version "2.1.4" 1248 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1249 | dependencies: 1250 | asynckit "^0.4.0" 1251 | combined-stream "^1.0.5" 1252 | mime-types "^2.1.12" 1253 | 1254 | form-data@~2.3.1: 1255 | version "2.3.1" 1256 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.1.tgz#6fb94fbd71885306d73d15cc497fe4cc4ecd44bf" 1257 | dependencies: 1258 | asynckit "^0.4.0" 1259 | combined-stream "^1.0.5" 1260 | mime-types "^2.1.12" 1261 | 1262 | fs-readdir-recursive@^1.0.0: 1263 | version "1.0.0" 1264 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1265 | 1266 | fs.realpath@^1.0.0: 1267 | version "1.0.0" 1268 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1269 | 1270 | fsevents@^1.0.0, fsevents@^1.1.1: 1271 | version "1.1.2" 1272 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4" 1273 | dependencies: 1274 | nan "^2.3.0" 1275 | node-pre-gyp "^0.6.36" 1276 | 1277 | fstream-ignore@^1.0.5: 1278 | version "1.0.5" 1279 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1280 | dependencies: 1281 | fstream "^1.0.0" 1282 | inherits "2" 1283 | minimatch "^3.0.0" 1284 | 1285 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1286 | version "1.0.11" 1287 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1288 | dependencies: 1289 | graceful-fs "^4.1.2" 1290 | inherits "~2.0.0" 1291 | mkdirp ">=0.5 0" 1292 | rimraf "2" 1293 | 1294 | gauge@~2.7.3: 1295 | version "2.7.4" 1296 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1297 | dependencies: 1298 | aproba "^1.0.3" 1299 | console-control-strings "^1.0.0" 1300 | has-unicode "^2.0.0" 1301 | object-assign "^4.1.0" 1302 | signal-exit "^3.0.0" 1303 | string-width "^1.0.1" 1304 | strip-ansi "^3.0.1" 1305 | wide-align "^1.1.0" 1306 | 1307 | get-caller-file@^1.0.1: 1308 | version "1.0.2" 1309 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1310 | 1311 | get-own-enumerable-property-symbols@^2.0.1: 1312 | version "2.0.1" 1313 | resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-2.0.1.tgz#5c4ad87f2834c4b9b4e84549dc1e0650fb38c24b" 1314 | 1315 | get-stream@^3.0.0: 1316 | version "3.0.0" 1317 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1318 | 1319 | getpass@^0.1.1: 1320 | version "0.1.7" 1321 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1322 | dependencies: 1323 | assert-plus "^1.0.0" 1324 | 1325 | glob-base@^0.3.0: 1326 | version "0.3.0" 1327 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1328 | dependencies: 1329 | glob-parent "^2.0.0" 1330 | is-glob "^2.0.0" 1331 | 1332 | glob-parent@^2.0.0: 1333 | version "2.0.0" 1334 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1335 | dependencies: 1336 | is-glob "^2.0.0" 1337 | 1338 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2: 1339 | version "7.1.2" 1340 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1341 | dependencies: 1342 | fs.realpath "^1.0.0" 1343 | inflight "^1.0.4" 1344 | inherits "2" 1345 | minimatch "^3.0.4" 1346 | once "^1.3.0" 1347 | path-is-absolute "^1.0.0" 1348 | 1349 | globals@^9.18.0: 1350 | version "9.18.0" 1351 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1352 | 1353 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1354 | version "4.1.11" 1355 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1356 | 1357 | graphql@^0.11.7: 1358 | version "0.11.7" 1359 | resolved "https://registry.yarnpkg.com/graphql/-/graphql-0.11.7.tgz#e5abaa9cb7b7cccb84e9f0836bf4370d268750c6" 1360 | dependencies: 1361 | iterall "1.1.3" 1362 | 1363 | growly@^1.3.0: 1364 | version "1.3.0" 1365 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1366 | 1367 | handlebars@^4.0.3: 1368 | version "4.0.10" 1369 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.10.tgz#3d30c718b09a3d96f23ea4cc1f403c4d3ba9ff4f" 1370 | dependencies: 1371 | async "^1.4.0" 1372 | optimist "^0.6.1" 1373 | source-map "^0.4.4" 1374 | optionalDependencies: 1375 | uglify-js "^2.6" 1376 | 1377 | har-schema@^1.0.5: 1378 | version "1.0.5" 1379 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1380 | 1381 | har-schema@^2.0.0: 1382 | version "2.0.0" 1383 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 1384 | 1385 | har-validator@~4.2.1: 1386 | version "4.2.1" 1387 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1388 | dependencies: 1389 | ajv "^4.9.1" 1390 | har-schema "^1.0.5" 1391 | 1392 | har-validator@~5.0.3: 1393 | version "5.0.3" 1394 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" 1395 | dependencies: 1396 | ajv "^5.1.0" 1397 | har-schema "^2.0.0" 1398 | 1399 | has-ansi@^2.0.0: 1400 | version "2.0.0" 1401 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1402 | dependencies: 1403 | ansi-regex "^2.0.0" 1404 | 1405 | has-flag@^1.0.0: 1406 | version "1.0.0" 1407 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1408 | 1409 | has-flag@^2.0.0: 1410 | version "2.0.0" 1411 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1412 | 1413 | has-unicode@^2.0.0: 1414 | version "2.0.1" 1415 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1416 | 1417 | hawk@3.1.3, hawk@~3.1.3: 1418 | version "3.1.3" 1419 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1420 | dependencies: 1421 | boom "2.x.x" 1422 | cryptiles "2.x.x" 1423 | hoek "2.x.x" 1424 | sntp "1.x.x" 1425 | 1426 | hawk@~6.0.2: 1427 | version "6.0.2" 1428 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038" 1429 | dependencies: 1430 | boom "4.x.x" 1431 | cryptiles "3.x.x" 1432 | hoek "4.x.x" 1433 | sntp "2.x.x" 1434 | 1435 | hoek@2.x.x: 1436 | version "2.16.3" 1437 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1438 | 1439 | hoek@4.x.x: 1440 | version "4.2.0" 1441 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.0.tgz#72d9d0754f7fe25ca2d01ad8f8f9a9449a89526d" 1442 | 1443 | home-or-tmp@^2.0.0: 1444 | version "2.0.0" 1445 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1446 | dependencies: 1447 | os-homedir "^1.0.0" 1448 | os-tmpdir "^1.0.1" 1449 | 1450 | hosted-git-info@^2.1.4: 1451 | version "2.5.0" 1452 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 1453 | 1454 | html-encoding-sniffer@^1.0.1: 1455 | version "1.0.1" 1456 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 1457 | dependencies: 1458 | whatwg-encoding "^1.0.1" 1459 | 1460 | http-signature@~1.1.0: 1461 | version "1.1.1" 1462 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1463 | dependencies: 1464 | assert-plus "^0.2.0" 1465 | jsprim "^1.2.2" 1466 | sshpk "^1.7.0" 1467 | 1468 | http-signature@~1.2.0: 1469 | version "1.2.0" 1470 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 1471 | dependencies: 1472 | assert-plus "^1.0.0" 1473 | jsprim "^1.2.2" 1474 | sshpk "^1.7.0" 1475 | 1476 | iconv-lite@0.4.13: 1477 | version "0.4.13" 1478 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 1479 | 1480 | imurmurhash@^0.1.4: 1481 | version "0.1.4" 1482 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1483 | 1484 | indent-string@^2.1.0: 1485 | version "2.1.0" 1486 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 1487 | dependencies: 1488 | repeating "^2.0.0" 1489 | 1490 | indent-string@^3.0.0: 1491 | version "3.2.0" 1492 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" 1493 | 1494 | inflight@^1.0.4: 1495 | version "1.0.6" 1496 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1497 | dependencies: 1498 | once "^1.3.0" 1499 | wrappy "1" 1500 | 1501 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.3: 1502 | version "2.0.3" 1503 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1504 | 1505 | ini@~1.3.0: 1506 | version "1.3.4" 1507 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1508 | 1509 | invariant@^2.2.2: 1510 | version "2.2.2" 1511 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1512 | dependencies: 1513 | loose-envify "^1.0.0" 1514 | 1515 | invert-kv@^1.0.0: 1516 | version "1.0.0" 1517 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1518 | 1519 | is-arrayish@^0.2.1: 1520 | version "0.2.1" 1521 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1522 | 1523 | is-binary-path@^1.0.0: 1524 | version "1.0.1" 1525 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1526 | dependencies: 1527 | binary-extensions "^1.0.0" 1528 | 1529 | is-buffer@^1.1.5: 1530 | version "1.1.5" 1531 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1532 | 1533 | is-builtin-module@^1.0.0: 1534 | version "1.0.0" 1535 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1536 | dependencies: 1537 | builtin-modules "^1.0.0" 1538 | 1539 | is-ci@^1.0.10: 1540 | version "1.0.10" 1541 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1542 | dependencies: 1543 | ci-info "^1.0.0" 1544 | 1545 | is-dotfile@^1.0.0: 1546 | version "1.0.3" 1547 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1548 | 1549 | is-equal-shallow@^0.1.3: 1550 | version "0.1.3" 1551 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1552 | dependencies: 1553 | is-primitive "^2.0.0" 1554 | 1555 | is-extendable@^0.1.1: 1556 | version "0.1.1" 1557 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1558 | 1559 | is-extglob@^1.0.0: 1560 | version "1.0.0" 1561 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1562 | 1563 | is-extglob@^2.1.1: 1564 | version "2.1.1" 1565 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1566 | 1567 | is-finite@^1.0.0: 1568 | version "1.0.2" 1569 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1570 | dependencies: 1571 | number-is-nan "^1.0.0" 1572 | 1573 | is-fullwidth-code-point@^1.0.0: 1574 | version "1.0.0" 1575 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1576 | dependencies: 1577 | number-is-nan "^1.0.0" 1578 | 1579 | is-fullwidth-code-point@^2.0.0: 1580 | version "2.0.0" 1581 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1582 | 1583 | is-glob@^2.0.0, is-glob@^2.0.1: 1584 | version "2.0.1" 1585 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1586 | dependencies: 1587 | is-extglob "^1.0.0" 1588 | 1589 | is-glob@^4.0.0: 1590 | version "4.0.0" 1591 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.0.tgz#9521c76845cc2610a85203ddf080a958c2ffabc0" 1592 | dependencies: 1593 | is-extglob "^2.1.1" 1594 | 1595 | is-number@^2.1.0: 1596 | version "2.1.0" 1597 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1598 | dependencies: 1599 | kind-of "^3.0.2" 1600 | 1601 | is-number@^3.0.0: 1602 | version "3.0.0" 1603 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1604 | dependencies: 1605 | kind-of "^3.0.2" 1606 | 1607 | is-obj@^1.0.1: 1608 | version "1.0.1" 1609 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 1610 | 1611 | is-posix-bracket@^0.1.0: 1612 | version "0.1.1" 1613 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1614 | 1615 | is-primitive@^2.0.0: 1616 | version "2.0.0" 1617 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1618 | 1619 | is-promise@^2.1.0: 1620 | version "2.1.0" 1621 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1622 | 1623 | is-regexp@^1.0.0: 1624 | version "1.0.0" 1625 | resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069" 1626 | 1627 | is-stream@^1.1.0: 1628 | version "1.1.0" 1629 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1630 | 1631 | is-typedarray@~1.0.0: 1632 | version "1.0.0" 1633 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1634 | 1635 | is-utf8@^0.2.0: 1636 | version "0.2.1" 1637 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1638 | 1639 | isarray@1.0.0, isarray@~1.0.0: 1640 | version "1.0.0" 1641 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1642 | 1643 | isexe@^2.0.0: 1644 | version "2.0.0" 1645 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1646 | 1647 | isobject@^2.0.0: 1648 | version "2.1.0" 1649 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1650 | dependencies: 1651 | isarray "1.0.0" 1652 | 1653 | isstream@~0.1.2: 1654 | version "0.1.2" 1655 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1656 | 1657 | istanbul-api@^1.1.1: 1658 | version "1.1.14" 1659 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.14.tgz#25bc5701f7c680c0ffff913de46e3619a3a6e680" 1660 | dependencies: 1661 | async "^2.1.4" 1662 | fileset "^2.0.2" 1663 | istanbul-lib-coverage "^1.1.1" 1664 | istanbul-lib-hook "^1.0.7" 1665 | istanbul-lib-instrument "^1.8.0" 1666 | istanbul-lib-report "^1.1.1" 1667 | istanbul-lib-source-maps "^1.2.1" 1668 | istanbul-reports "^1.1.2" 1669 | js-yaml "^3.7.0" 1670 | mkdirp "^0.5.1" 1671 | once "^1.4.0" 1672 | 1673 | istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.1.1: 1674 | version "1.1.1" 1675 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" 1676 | 1677 | istanbul-lib-hook@^1.0.7: 1678 | version "1.0.7" 1679 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.7.tgz#dd6607f03076578fe7d6f2a630cf143b49bacddc" 1680 | dependencies: 1681 | append-transform "^0.4.0" 1682 | 1683 | istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.7.5, istanbul-lib-instrument@^1.8.0: 1684 | version "1.8.0" 1685 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.8.0.tgz#66f6c9421cc9ec4704f76f2db084ba9078a2b532" 1686 | dependencies: 1687 | babel-generator "^6.18.0" 1688 | babel-template "^6.16.0" 1689 | babel-traverse "^6.18.0" 1690 | babel-types "^6.18.0" 1691 | babylon "^6.18.0" 1692 | istanbul-lib-coverage "^1.1.1" 1693 | semver "^5.3.0" 1694 | 1695 | istanbul-lib-report@^1.1.1: 1696 | version "1.1.1" 1697 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#f0e55f56655ffa34222080b7a0cd4760e1405fc9" 1698 | dependencies: 1699 | istanbul-lib-coverage "^1.1.1" 1700 | mkdirp "^0.5.1" 1701 | path-parse "^1.0.5" 1702 | supports-color "^3.1.2" 1703 | 1704 | istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.1: 1705 | version "1.2.1" 1706 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.1.tgz#a6fe1acba8ce08eebc638e572e294d267008aa0c" 1707 | dependencies: 1708 | debug "^2.6.3" 1709 | istanbul-lib-coverage "^1.1.1" 1710 | mkdirp "^0.5.1" 1711 | rimraf "^2.6.1" 1712 | source-map "^0.5.3" 1713 | 1714 | istanbul-reports@^1.1.2: 1715 | version "1.1.2" 1716 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.2.tgz#0fb2e3f6aa9922bd3ce45d05d8ab4d5e8e07bd4f" 1717 | dependencies: 1718 | handlebars "^4.0.3" 1719 | 1720 | iterall@1.1.3: 1721 | version "1.1.3" 1722 | resolved "https://registry.yarnpkg.com/iterall/-/iterall-1.1.3.tgz#1cbbff96204056dde6656e2ed2e2226d0e6d72c9" 1723 | 1724 | jest-changed-files@^21.2.0: 1725 | version "21.2.0" 1726 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-21.2.0.tgz#5dbeecad42f5d88b482334902ce1cba6d9798d29" 1727 | dependencies: 1728 | throat "^4.0.0" 1729 | 1730 | jest-cli@^21.2.1: 1731 | version "21.2.1" 1732 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-21.2.1.tgz#9c528b6629d651911138d228bdb033c157ec8c00" 1733 | dependencies: 1734 | ansi-escapes "^3.0.0" 1735 | chalk "^2.0.1" 1736 | glob "^7.1.2" 1737 | graceful-fs "^4.1.11" 1738 | is-ci "^1.0.10" 1739 | istanbul-api "^1.1.1" 1740 | istanbul-lib-coverage "^1.0.1" 1741 | istanbul-lib-instrument "^1.4.2" 1742 | istanbul-lib-source-maps "^1.1.0" 1743 | jest-changed-files "^21.2.0" 1744 | jest-config "^21.2.1" 1745 | jest-environment-jsdom "^21.2.1" 1746 | jest-haste-map "^21.2.0" 1747 | jest-message-util "^21.2.1" 1748 | jest-regex-util "^21.2.0" 1749 | jest-resolve-dependencies "^21.2.0" 1750 | jest-runner "^21.2.1" 1751 | jest-runtime "^21.2.1" 1752 | jest-snapshot "^21.2.1" 1753 | jest-util "^21.2.1" 1754 | micromatch "^2.3.11" 1755 | node-notifier "^5.0.2" 1756 | pify "^3.0.0" 1757 | slash "^1.0.0" 1758 | string-length "^2.0.0" 1759 | strip-ansi "^4.0.0" 1760 | which "^1.2.12" 1761 | worker-farm "^1.3.1" 1762 | yargs "^9.0.0" 1763 | 1764 | jest-config@^21.2.1: 1765 | version "21.2.1" 1766 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-21.2.1.tgz#c7586c79ead0bcc1f38c401e55f964f13bf2a480" 1767 | dependencies: 1768 | chalk "^2.0.1" 1769 | glob "^7.1.1" 1770 | jest-environment-jsdom "^21.2.1" 1771 | jest-environment-node "^21.2.1" 1772 | jest-get-type "^21.2.0" 1773 | jest-jasmine2 "^21.2.1" 1774 | jest-regex-util "^21.2.0" 1775 | jest-resolve "^21.2.0" 1776 | jest-util "^21.2.1" 1777 | jest-validate "^21.2.1" 1778 | pretty-format "^21.2.1" 1779 | 1780 | jest-diff@^21.2.1: 1781 | version "21.2.1" 1782 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-21.2.1.tgz#46cccb6cab2d02ce98bc314011764bb95b065b4f" 1783 | dependencies: 1784 | chalk "^2.0.1" 1785 | diff "^3.2.0" 1786 | jest-get-type "^21.2.0" 1787 | pretty-format "^21.2.1" 1788 | 1789 | jest-docblock@^21.2.0: 1790 | version "21.2.0" 1791 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-21.2.0.tgz#51529c3b30d5fd159da60c27ceedc195faf8d414" 1792 | 1793 | jest-environment-jsdom@^21.2.1: 1794 | version "21.2.1" 1795 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-21.2.1.tgz#38d9980c8259b2a608ec232deee6289a60d9d5b4" 1796 | dependencies: 1797 | jest-mock "^21.2.0" 1798 | jest-util "^21.2.1" 1799 | jsdom "^9.12.0" 1800 | 1801 | jest-environment-node@^21.2.1: 1802 | version "21.2.1" 1803 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-21.2.1.tgz#98c67df5663c7fbe20f6e792ac2272c740d3b8c8" 1804 | dependencies: 1805 | jest-mock "^21.2.0" 1806 | jest-util "^21.2.1" 1807 | 1808 | jest-get-type@^21.2.0: 1809 | version "21.2.0" 1810 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-21.2.0.tgz#f6376ab9db4b60d81e39f30749c6c466f40d4a23" 1811 | 1812 | jest-haste-map@^21.2.0: 1813 | version "21.2.0" 1814 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-21.2.0.tgz#1363f0a8bb4338f24f001806571eff7a4b2ff3d8" 1815 | dependencies: 1816 | fb-watchman "^2.0.0" 1817 | graceful-fs "^4.1.11" 1818 | jest-docblock "^21.2.0" 1819 | micromatch "^2.3.11" 1820 | sane "^2.0.0" 1821 | worker-farm "^1.3.1" 1822 | 1823 | jest-jasmine2@^21.2.1: 1824 | version "21.2.1" 1825 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-21.2.1.tgz#9cc6fc108accfa97efebce10c4308548a4ea7592" 1826 | dependencies: 1827 | chalk "^2.0.1" 1828 | expect "^21.2.1" 1829 | graceful-fs "^4.1.11" 1830 | jest-diff "^21.2.1" 1831 | jest-matcher-utils "^21.2.1" 1832 | jest-message-util "^21.2.1" 1833 | jest-snapshot "^21.2.1" 1834 | p-cancelable "^0.3.0" 1835 | 1836 | jest-matcher-utils@^21.2.1: 1837 | version "21.2.1" 1838 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-21.2.1.tgz#72c826eaba41a093ac2b4565f865eb8475de0f64" 1839 | dependencies: 1840 | chalk "^2.0.1" 1841 | jest-get-type "^21.2.0" 1842 | pretty-format "^21.2.1" 1843 | 1844 | jest-message-util@^21.2.1: 1845 | version "21.2.1" 1846 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-21.2.1.tgz#bfe5d4692c84c827d1dcf41823795558f0a1acbe" 1847 | dependencies: 1848 | chalk "^2.0.1" 1849 | micromatch "^2.3.11" 1850 | slash "^1.0.0" 1851 | 1852 | jest-mock@^21.2.0: 1853 | version "21.2.0" 1854 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-21.2.0.tgz#7eb0770e7317968165f61ea2a7281131534b3c0f" 1855 | 1856 | jest-regex-util@^21.2.0: 1857 | version "21.2.0" 1858 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-21.2.0.tgz#1b1e33e63143babc3e0f2e6c9b5ba1eb34b2d530" 1859 | 1860 | jest-resolve-dependencies@^21.2.0: 1861 | version "21.2.0" 1862 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-21.2.0.tgz#9e231e371e1a736a1ad4e4b9a843bc72bfe03d09" 1863 | dependencies: 1864 | jest-regex-util "^21.2.0" 1865 | 1866 | jest-resolve@^21.2.0: 1867 | version "21.2.0" 1868 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-21.2.0.tgz#068913ad2ba6a20218e5fd32471f3874005de3a6" 1869 | dependencies: 1870 | browser-resolve "^1.11.2" 1871 | chalk "^2.0.1" 1872 | is-builtin-module "^1.0.0" 1873 | 1874 | jest-runner@^21.2.1: 1875 | version "21.2.1" 1876 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-21.2.1.tgz#194732e3e518bfb3d7cbfc0fd5871246c7e1a467" 1877 | dependencies: 1878 | jest-config "^21.2.1" 1879 | jest-docblock "^21.2.0" 1880 | jest-haste-map "^21.2.0" 1881 | jest-jasmine2 "^21.2.1" 1882 | jest-message-util "^21.2.1" 1883 | jest-runtime "^21.2.1" 1884 | jest-util "^21.2.1" 1885 | pify "^3.0.0" 1886 | throat "^4.0.0" 1887 | worker-farm "^1.3.1" 1888 | 1889 | jest-runtime@^21.2.1: 1890 | version "21.2.1" 1891 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-21.2.1.tgz#99dce15309c670442eee2ebe1ff53a3cbdbbb73e" 1892 | dependencies: 1893 | babel-core "^6.0.0" 1894 | babel-jest "^21.2.0" 1895 | babel-plugin-istanbul "^4.0.0" 1896 | chalk "^2.0.1" 1897 | convert-source-map "^1.4.0" 1898 | graceful-fs "^4.1.11" 1899 | jest-config "^21.2.1" 1900 | jest-haste-map "^21.2.0" 1901 | jest-regex-util "^21.2.0" 1902 | jest-resolve "^21.2.0" 1903 | jest-util "^21.2.1" 1904 | json-stable-stringify "^1.0.1" 1905 | micromatch "^2.3.11" 1906 | slash "^1.0.0" 1907 | strip-bom "3.0.0" 1908 | write-file-atomic "^2.1.0" 1909 | yargs "^9.0.0" 1910 | 1911 | jest-snapshot@^21.2.1: 1912 | version "21.2.1" 1913 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-21.2.1.tgz#29e49f16202416e47343e757e5eff948c07fd7b0" 1914 | dependencies: 1915 | chalk "^2.0.1" 1916 | jest-diff "^21.2.1" 1917 | jest-matcher-utils "^21.2.1" 1918 | mkdirp "^0.5.1" 1919 | natural-compare "^1.4.0" 1920 | pretty-format "^21.2.1" 1921 | 1922 | jest-util@^21.2.1: 1923 | version "21.2.1" 1924 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-21.2.1.tgz#a274b2f726b0897494d694a6c3d6a61ab819bb78" 1925 | dependencies: 1926 | callsites "^2.0.0" 1927 | chalk "^2.0.1" 1928 | graceful-fs "^4.1.11" 1929 | jest-message-util "^21.2.1" 1930 | jest-mock "^21.2.0" 1931 | jest-validate "^21.2.1" 1932 | mkdirp "^0.5.1" 1933 | 1934 | jest-validate@^21.1.0, jest-validate@^21.2.1: 1935 | version "21.2.1" 1936 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-21.2.1.tgz#cc0cbca653cd54937ba4f2a111796774530dd3c7" 1937 | dependencies: 1938 | chalk "^2.0.1" 1939 | jest-get-type "^21.2.0" 1940 | leven "^2.1.0" 1941 | pretty-format "^21.2.1" 1942 | 1943 | jest@^21.2.1: 1944 | version "21.2.1" 1945 | resolved "https://registry.yarnpkg.com/jest/-/jest-21.2.1.tgz#c964e0b47383768a1438e3ccf3c3d470327604e1" 1946 | dependencies: 1947 | jest-cli "^21.2.1" 1948 | 1949 | js-tokens@^3.0.0, js-tokens@^3.0.2: 1950 | version "3.0.2" 1951 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1952 | 1953 | js-yaml@^3.4.3, js-yaml@^3.7.0: 1954 | version "3.10.0" 1955 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 1956 | dependencies: 1957 | argparse "^1.0.7" 1958 | esprima "^4.0.0" 1959 | 1960 | jsbn@~0.1.0: 1961 | version "0.1.1" 1962 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1963 | 1964 | jsdom@^9.12.0: 1965 | version "9.12.0" 1966 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 1967 | dependencies: 1968 | abab "^1.0.3" 1969 | acorn "^4.0.4" 1970 | acorn-globals "^3.1.0" 1971 | array-equal "^1.0.0" 1972 | content-type-parser "^1.0.1" 1973 | cssom ">= 0.3.2 < 0.4.0" 1974 | cssstyle ">= 0.2.37 < 0.3.0" 1975 | escodegen "^1.6.1" 1976 | html-encoding-sniffer "^1.0.1" 1977 | nwmatcher ">= 1.3.9 < 2.0.0" 1978 | parse5 "^1.5.1" 1979 | request "^2.79.0" 1980 | sax "^1.2.1" 1981 | symbol-tree "^3.2.1" 1982 | tough-cookie "^2.3.2" 1983 | webidl-conversions "^4.0.0" 1984 | whatwg-encoding "^1.0.1" 1985 | whatwg-url "^4.3.0" 1986 | xml-name-validator "^2.0.1" 1987 | 1988 | jsesc@^1.3.0: 1989 | version "1.3.0" 1990 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1991 | 1992 | jsesc@~0.5.0: 1993 | version "0.5.0" 1994 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1995 | 1996 | json-schema-traverse@^0.3.0: 1997 | version "0.3.1" 1998 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 1999 | 2000 | json-schema@0.2.3: 2001 | version "0.2.3" 2002 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2003 | 2004 | json-stable-stringify@^1.0.1: 2005 | version "1.0.1" 2006 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2007 | dependencies: 2008 | jsonify "~0.0.0" 2009 | 2010 | json-stringify-safe@~5.0.1: 2011 | version "5.0.1" 2012 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2013 | 2014 | json5@^0.5.1: 2015 | version "0.5.1" 2016 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2017 | 2018 | jsonify@~0.0.0: 2019 | version "0.0.0" 2020 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2021 | 2022 | jsprim@^1.2.2: 2023 | version "1.4.1" 2024 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 2025 | dependencies: 2026 | assert-plus "1.0.0" 2027 | extsprintf "1.3.0" 2028 | json-schema "0.2.3" 2029 | verror "1.10.0" 2030 | 2031 | kind-of@^3.0.2: 2032 | version "3.2.2" 2033 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2034 | dependencies: 2035 | is-buffer "^1.1.5" 2036 | 2037 | kind-of@^4.0.0: 2038 | version "4.0.0" 2039 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2040 | dependencies: 2041 | is-buffer "^1.1.5" 2042 | 2043 | lazy-cache@^1.0.3: 2044 | version "1.0.4" 2045 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2046 | 2047 | lcid@^1.0.0: 2048 | version "1.0.0" 2049 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2050 | dependencies: 2051 | invert-kv "^1.0.0" 2052 | 2053 | leven@^2.1.0: 2054 | version "2.1.0" 2055 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 2056 | 2057 | levn@~0.3.0: 2058 | version "0.3.0" 2059 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2060 | dependencies: 2061 | prelude-ls "~1.1.2" 2062 | type-check "~0.3.2" 2063 | 2064 | lint-staged@^4.3.0: 2065 | version "4.3.0" 2066 | resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-4.3.0.tgz#ed0779ad9a42c0dc62bb3244e522870b41125879" 2067 | dependencies: 2068 | app-root-path "^2.0.0" 2069 | chalk "^2.1.0" 2070 | commander "^2.11.0" 2071 | cosmiconfig "^1.1.0" 2072 | execa "^0.8.0" 2073 | is-glob "^4.0.0" 2074 | jest-validate "^21.1.0" 2075 | listr "^0.12.0" 2076 | lodash "^4.17.4" 2077 | log-symbols "^2.0.0" 2078 | minimatch "^3.0.0" 2079 | npm-which "^3.0.1" 2080 | p-map "^1.1.1" 2081 | staged-git-files "0.0.4" 2082 | stringify-object "^3.2.0" 2083 | 2084 | listr-silent-renderer@^1.1.1: 2085 | version "1.1.1" 2086 | resolved "https://registry.yarnpkg.com/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz#924b5a3757153770bf1a8e3fbf74b8bbf3f9242e" 2087 | 2088 | listr-update-renderer@^0.2.0: 2089 | version "0.2.0" 2090 | resolved "https://registry.yarnpkg.com/listr-update-renderer/-/listr-update-renderer-0.2.0.tgz#ca80e1779b4e70266807e8eed1ad6abe398550f9" 2091 | dependencies: 2092 | chalk "^1.1.3" 2093 | cli-truncate "^0.2.1" 2094 | elegant-spinner "^1.0.1" 2095 | figures "^1.7.0" 2096 | indent-string "^3.0.0" 2097 | log-symbols "^1.0.2" 2098 | log-update "^1.0.2" 2099 | strip-ansi "^3.0.1" 2100 | 2101 | listr-verbose-renderer@^0.4.0: 2102 | version "0.4.1" 2103 | resolved "https://registry.yarnpkg.com/listr-verbose-renderer/-/listr-verbose-renderer-0.4.1.tgz#8206f4cf6d52ddc5827e5fd14989e0e965933a35" 2104 | dependencies: 2105 | chalk "^1.1.3" 2106 | cli-cursor "^1.0.2" 2107 | date-fns "^1.27.2" 2108 | figures "^1.7.0" 2109 | 2110 | listr@^0.12.0: 2111 | version "0.12.0" 2112 | resolved "https://registry.yarnpkg.com/listr/-/listr-0.12.0.tgz#6bce2c0f5603fa49580ea17cd6a00cc0e5fa451a" 2113 | dependencies: 2114 | chalk "^1.1.3" 2115 | cli-truncate "^0.2.1" 2116 | figures "^1.7.0" 2117 | indent-string "^2.1.0" 2118 | is-promise "^2.1.0" 2119 | is-stream "^1.1.0" 2120 | listr-silent-renderer "^1.1.1" 2121 | listr-update-renderer "^0.2.0" 2122 | listr-verbose-renderer "^0.4.0" 2123 | log-symbols "^1.0.2" 2124 | log-update "^1.0.2" 2125 | ora "^0.2.3" 2126 | p-map "^1.1.1" 2127 | rxjs "^5.0.0-beta.11" 2128 | stream-to-observable "^0.1.0" 2129 | strip-ansi "^3.0.1" 2130 | 2131 | load-json-file@^1.0.0: 2132 | version "1.1.0" 2133 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2134 | dependencies: 2135 | graceful-fs "^4.1.2" 2136 | parse-json "^2.2.0" 2137 | pify "^2.0.0" 2138 | pinkie-promise "^2.0.0" 2139 | strip-bom "^2.0.0" 2140 | 2141 | load-json-file@^2.0.0: 2142 | version "2.0.0" 2143 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2144 | dependencies: 2145 | graceful-fs "^4.1.2" 2146 | parse-json "^2.2.0" 2147 | pify "^2.0.0" 2148 | strip-bom "^3.0.0" 2149 | 2150 | locate-path@^2.0.0: 2151 | version "2.0.0" 2152 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2153 | dependencies: 2154 | p-locate "^2.0.0" 2155 | path-exists "^3.0.0" 2156 | 2157 | lodash@^4.14.0, lodash@^4.17.4: 2158 | version "4.17.4" 2159 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2160 | 2161 | log-symbols@^1.0.2: 2162 | version "1.0.2" 2163 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" 2164 | dependencies: 2165 | chalk "^1.0.0" 2166 | 2167 | log-symbols@^2.0.0: 2168 | version "2.1.0" 2169 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.1.0.tgz#f35fa60e278832b538dc4dddcbb478a45d3e3be6" 2170 | dependencies: 2171 | chalk "^2.0.1" 2172 | 2173 | log-update@^1.0.2: 2174 | version "1.0.2" 2175 | resolved "https://registry.yarnpkg.com/log-update/-/log-update-1.0.2.tgz#19929f64c4093d2d2e7075a1dad8af59c296b8d1" 2176 | dependencies: 2177 | ansi-escapes "^1.0.0" 2178 | cli-cursor "^1.0.2" 2179 | 2180 | longest@^1.0.1: 2181 | version "1.0.1" 2182 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2183 | 2184 | loose-envify@^1.0.0: 2185 | version "1.3.1" 2186 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2187 | dependencies: 2188 | js-tokens "^3.0.0" 2189 | 2190 | lru-cache@^4.0.1: 2191 | version "4.1.1" 2192 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 2193 | dependencies: 2194 | pseudomap "^1.0.2" 2195 | yallist "^2.1.2" 2196 | 2197 | makeerror@1.0.x: 2198 | version "1.0.11" 2199 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2200 | dependencies: 2201 | tmpl "1.0.x" 2202 | 2203 | mem@^1.1.0: 2204 | version "1.1.0" 2205 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 2206 | dependencies: 2207 | mimic-fn "^1.0.0" 2208 | 2209 | merge@^1.1.3: 2210 | version "1.2.0" 2211 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 2212 | 2213 | micromatch@^2.1.5, micromatch@^2.3.11: 2214 | version "2.3.11" 2215 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2216 | dependencies: 2217 | arr-diff "^2.0.0" 2218 | array-unique "^0.2.1" 2219 | braces "^1.8.2" 2220 | expand-brackets "^0.1.4" 2221 | extglob "^0.3.1" 2222 | filename-regex "^2.0.0" 2223 | is-extglob "^1.0.0" 2224 | is-glob "^2.0.1" 2225 | kind-of "^3.0.2" 2226 | normalize-path "^2.0.1" 2227 | object.omit "^2.0.0" 2228 | parse-glob "^3.0.4" 2229 | regex-cache "^0.4.2" 2230 | 2231 | mime-db@~1.30.0: 2232 | version "1.30.0" 2233 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 2234 | 2235 | mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.7: 2236 | version "2.1.17" 2237 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 2238 | dependencies: 2239 | mime-db "~1.30.0" 2240 | 2241 | mimic-fn@^1.0.0: 2242 | version "1.1.0" 2243 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 2244 | 2245 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 2246 | version "3.0.4" 2247 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2248 | dependencies: 2249 | brace-expansion "^1.1.7" 2250 | 2251 | minimist@0.0.8: 2252 | version "0.0.8" 2253 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2254 | 2255 | minimist@^1.1.1, minimist@^1.2.0: 2256 | version "1.2.0" 2257 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2258 | 2259 | minimist@~0.0.1: 2260 | version "0.0.10" 2261 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 2262 | 2263 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 2264 | version "0.5.1" 2265 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2266 | dependencies: 2267 | minimist "0.0.8" 2268 | 2269 | ms@2.0.0: 2270 | version "2.0.0" 2271 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2272 | 2273 | nan@^2.3.0: 2274 | version "2.7.0" 2275 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.7.0.tgz#d95bf721ec877e08db276ed3fc6eb78f9083ad46" 2276 | 2277 | natural-compare@^1.4.0: 2278 | version "1.4.0" 2279 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2280 | 2281 | node-int64@^0.4.0: 2282 | version "0.4.0" 2283 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2284 | 2285 | node-notifier@^5.0.2: 2286 | version "5.1.2" 2287 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 2288 | dependencies: 2289 | growly "^1.3.0" 2290 | semver "^5.3.0" 2291 | shellwords "^0.1.0" 2292 | which "^1.2.12" 2293 | 2294 | node-pre-gyp@^0.6.36: 2295 | version "0.6.38" 2296 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.38.tgz#e92a20f83416415bb4086f6d1fb78b3da73d113d" 2297 | dependencies: 2298 | hawk "3.1.3" 2299 | mkdirp "^0.5.1" 2300 | nopt "^4.0.1" 2301 | npmlog "^4.0.2" 2302 | rc "^1.1.7" 2303 | request "2.81.0" 2304 | rimraf "^2.6.1" 2305 | semver "^5.3.0" 2306 | tar "^2.2.1" 2307 | tar-pack "^3.4.0" 2308 | 2309 | nopt@^4.0.1: 2310 | version "4.0.1" 2311 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2312 | dependencies: 2313 | abbrev "1" 2314 | osenv "^0.1.4" 2315 | 2316 | normalize-package-data@^2.3.2: 2317 | version "2.4.0" 2318 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2319 | dependencies: 2320 | hosted-git-info "^2.1.4" 2321 | is-builtin-module "^1.0.0" 2322 | semver "2 || 3 || 4 || 5" 2323 | validate-npm-package-license "^3.0.1" 2324 | 2325 | normalize-path@^2.0.0, normalize-path@^2.0.1: 2326 | version "2.1.1" 2327 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2328 | dependencies: 2329 | remove-trailing-separator "^1.0.1" 2330 | 2331 | npm-path@^2.0.2: 2332 | version "2.0.3" 2333 | resolved "https://registry.yarnpkg.com/npm-path/-/npm-path-2.0.3.tgz#15cff4e1c89a38da77f56f6055b24f975dfb2bbe" 2334 | dependencies: 2335 | which "^1.2.10" 2336 | 2337 | npm-run-path@^2.0.0: 2338 | version "2.0.2" 2339 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2340 | dependencies: 2341 | path-key "^2.0.0" 2342 | 2343 | npm-which@^3.0.1: 2344 | version "3.0.1" 2345 | resolved "https://registry.yarnpkg.com/npm-which/-/npm-which-3.0.1.tgz#9225f26ec3a285c209cae67c3b11a6b4ab7140aa" 2346 | dependencies: 2347 | commander "^2.9.0" 2348 | npm-path "^2.0.2" 2349 | which "^1.2.10" 2350 | 2351 | npmlog@^4.0.2: 2352 | version "4.1.2" 2353 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2354 | dependencies: 2355 | are-we-there-yet "~1.1.2" 2356 | console-control-strings "~1.1.0" 2357 | gauge "~2.7.3" 2358 | set-blocking "~2.0.0" 2359 | 2360 | number-is-nan@^1.0.0: 2361 | version "1.0.1" 2362 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2363 | 2364 | "nwmatcher@>= 1.3.9 < 2.0.0": 2365 | version "1.4.2" 2366 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.2.tgz#c5e545ab40d22a56b0326531c4beaed7a888b3ea" 2367 | 2368 | oauth-sign@~0.8.1, oauth-sign@~0.8.2: 2369 | version "0.8.2" 2370 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2371 | 2372 | object-assign@^4.0.1, object-assign@^4.1.0: 2373 | version "4.1.1" 2374 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2375 | 2376 | object.omit@^2.0.0: 2377 | version "2.0.1" 2378 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2379 | dependencies: 2380 | for-own "^0.1.4" 2381 | is-extendable "^0.1.1" 2382 | 2383 | once@^1.3.0, once@^1.3.3, once@^1.4.0: 2384 | version "1.4.0" 2385 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2386 | dependencies: 2387 | wrappy "1" 2388 | 2389 | onetime@^1.0.0: 2390 | version "1.1.0" 2391 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2392 | 2393 | optimist@^0.6.1: 2394 | version "0.6.1" 2395 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2396 | dependencies: 2397 | minimist "~0.0.1" 2398 | wordwrap "~0.0.2" 2399 | 2400 | optionator@^0.8.1: 2401 | version "0.8.2" 2402 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2403 | dependencies: 2404 | deep-is "~0.1.3" 2405 | fast-levenshtein "~2.0.4" 2406 | levn "~0.3.0" 2407 | prelude-ls "~1.1.2" 2408 | type-check "~0.3.2" 2409 | wordwrap "~1.0.0" 2410 | 2411 | ora@^0.2.3: 2412 | version "0.2.3" 2413 | resolved "https://registry.yarnpkg.com/ora/-/ora-0.2.3.tgz#37527d220adcd53c39b73571d754156d5db657a4" 2414 | dependencies: 2415 | chalk "^1.1.1" 2416 | cli-cursor "^1.0.2" 2417 | cli-spinners "^0.1.2" 2418 | object-assign "^4.0.1" 2419 | 2420 | os-homedir@^1.0.0, os-homedir@^1.0.1: 2421 | version "1.0.2" 2422 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2423 | 2424 | os-locale@^2.0.0: 2425 | version "2.1.0" 2426 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 2427 | dependencies: 2428 | execa "^0.7.0" 2429 | lcid "^1.0.0" 2430 | mem "^1.1.0" 2431 | 2432 | os-shim@^0.1.2: 2433 | version "0.1.3" 2434 | resolved "https://registry.yarnpkg.com/os-shim/-/os-shim-0.1.3.tgz#6b62c3791cf7909ea35ed46e17658bb417cb3917" 2435 | 2436 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 2437 | version "1.0.2" 2438 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2439 | 2440 | osenv@^0.1.4: 2441 | version "0.1.4" 2442 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2443 | dependencies: 2444 | os-homedir "^1.0.0" 2445 | os-tmpdir "^1.0.0" 2446 | 2447 | output-file-sync@^1.1.2: 2448 | version "1.1.2" 2449 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2450 | dependencies: 2451 | graceful-fs "^4.1.4" 2452 | mkdirp "^0.5.1" 2453 | object-assign "^4.1.0" 2454 | 2455 | p-cancelable@^0.3.0: 2456 | version "0.3.0" 2457 | resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-0.3.0.tgz#b9e123800bcebb7ac13a479be195b507b98d30fa" 2458 | 2459 | p-finally@^1.0.0: 2460 | version "1.0.0" 2461 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2462 | 2463 | p-limit@^1.1.0: 2464 | version "1.1.0" 2465 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2466 | 2467 | p-locate@^2.0.0: 2468 | version "2.0.0" 2469 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2470 | dependencies: 2471 | p-limit "^1.1.0" 2472 | 2473 | p-map@^1.1.1: 2474 | version "1.2.0" 2475 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.2.0.tgz#e4e94f311eabbc8633a1e79908165fca26241b6b" 2476 | 2477 | parse-glob@^3.0.4: 2478 | version "3.0.4" 2479 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2480 | dependencies: 2481 | glob-base "^0.3.0" 2482 | is-dotfile "^1.0.0" 2483 | is-extglob "^1.0.0" 2484 | is-glob "^2.0.0" 2485 | 2486 | parse-json@^2.2.0: 2487 | version "2.2.0" 2488 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2489 | dependencies: 2490 | error-ex "^1.2.0" 2491 | 2492 | parse5@^1.5.1: 2493 | version "1.5.1" 2494 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 2495 | 2496 | path-exists@^2.0.0: 2497 | version "2.1.0" 2498 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2499 | dependencies: 2500 | pinkie-promise "^2.0.0" 2501 | 2502 | path-exists@^3.0.0: 2503 | version "3.0.0" 2504 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2505 | 2506 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 2507 | version "1.0.1" 2508 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2509 | 2510 | path-key@^2.0.0: 2511 | version "2.0.1" 2512 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2513 | 2514 | path-parse@^1.0.5: 2515 | version "1.0.5" 2516 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2517 | 2518 | path-type@^1.0.0: 2519 | version "1.1.0" 2520 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2521 | dependencies: 2522 | graceful-fs "^4.1.2" 2523 | pify "^2.0.0" 2524 | pinkie-promise "^2.0.0" 2525 | 2526 | path-type@^2.0.0: 2527 | version "2.0.0" 2528 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 2529 | dependencies: 2530 | pify "^2.0.0" 2531 | 2532 | performance-now@^0.2.0: 2533 | version "0.2.0" 2534 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2535 | 2536 | performance-now@^2.1.0: 2537 | version "2.1.0" 2538 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 2539 | 2540 | pify@^2.0.0: 2541 | version "2.3.0" 2542 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2543 | 2544 | pify@^3.0.0: 2545 | version "3.0.0" 2546 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 2547 | 2548 | pinkie-promise@^2.0.0: 2549 | version "2.0.1" 2550 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2551 | dependencies: 2552 | pinkie "^2.0.0" 2553 | 2554 | pinkie@^2.0.0: 2555 | version "2.0.4" 2556 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2557 | 2558 | pre-commit@^1.2.2: 2559 | version "1.2.2" 2560 | resolved "https://registry.yarnpkg.com/pre-commit/-/pre-commit-1.2.2.tgz#dbcee0ee9de7235e57f79c56d7ce94641a69eec6" 2561 | dependencies: 2562 | cross-spawn "^5.0.1" 2563 | spawn-sync "^1.0.15" 2564 | which "1.2.x" 2565 | 2566 | prelude-ls@~1.1.2: 2567 | version "1.1.2" 2568 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2569 | 2570 | preserve@^0.2.0: 2571 | version "0.2.0" 2572 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2573 | 2574 | prettier@^1.7.4: 2575 | version "1.7.4" 2576 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.7.4.tgz#5e8624ae9363c80f95ec644584ecdf55d74f93fa" 2577 | 2578 | pretty-format@^21.2.1: 2579 | version "21.2.1" 2580 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-21.2.1.tgz#ae5407f3cf21066cd011aa1ba5fce7b6a2eddb36" 2581 | dependencies: 2582 | ansi-regex "^3.0.0" 2583 | ansi-styles "^3.2.0" 2584 | 2585 | private@^0.1.6, private@^0.1.7: 2586 | version "0.1.7" 2587 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2588 | 2589 | process-nextick-args@~1.0.6: 2590 | version "1.0.7" 2591 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2592 | 2593 | prr@~0.0.0: 2594 | version "0.0.0" 2595 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 2596 | 2597 | pseudomap@^1.0.2: 2598 | version "1.0.2" 2599 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2600 | 2601 | punycode@^1.4.1: 2602 | version "1.4.1" 2603 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2604 | 2605 | qs@~6.4.0: 2606 | version "6.4.0" 2607 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2608 | 2609 | qs@~6.5.1: 2610 | version "6.5.1" 2611 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" 2612 | 2613 | randomatic@^1.1.3: 2614 | version "1.1.7" 2615 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 2616 | dependencies: 2617 | is-number "^3.0.0" 2618 | kind-of "^4.0.0" 2619 | 2620 | rc@^1.1.7: 2621 | version "1.2.1" 2622 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 2623 | dependencies: 2624 | deep-extend "~0.4.0" 2625 | ini "~1.3.0" 2626 | minimist "^1.2.0" 2627 | strip-json-comments "~2.0.1" 2628 | 2629 | read-pkg-up@^1.0.1: 2630 | version "1.0.1" 2631 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2632 | dependencies: 2633 | find-up "^1.0.0" 2634 | read-pkg "^1.0.0" 2635 | 2636 | read-pkg-up@^2.0.0: 2637 | version "2.0.0" 2638 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 2639 | dependencies: 2640 | find-up "^2.0.0" 2641 | read-pkg "^2.0.0" 2642 | 2643 | read-pkg@^1.0.0: 2644 | version "1.1.0" 2645 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2646 | dependencies: 2647 | load-json-file "^1.0.0" 2648 | normalize-package-data "^2.3.2" 2649 | path-type "^1.0.0" 2650 | 2651 | read-pkg@^2.0.0: 2652 | version "2.0.0" 2653 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 2654 | dependencies: 2655 | load-json-file "^2.0.0" 2656 | normalize-package-data "^2.3.2" 2657 | path-type "^2.0.0" 2658 | 2659 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.2: 2660 | version "2.3.3" 2661 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 2662 | dependencies: 2663 | core-util-is "~1.0.0" 2664 | inherits "~2.0.3" 2665 | isarray "~1.0.0" 2666 | process-nextick-args "~1.0.6" 2667 | safe-buffer "~5.1.1" 2668 | string_decoder "~1.0.3" 2669 | util-deprecate "~1.0.1" 2670 | 2671 | readdirp@^2.0.0: 2672 | version "2.1.0" 2673 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2674 | dependencies: 2675 | graceful-fs "^4.1.2" 2676 | minimatch "^3.0.2" 2677 | readable-stream "^2.0.2" 2678 | set-immediate-shim "^1.0.1" 2679 | 2680 | regenerate@^1.2.1: 2681 | version "1.3.3" 2682 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f" 2683 | 2684 | regenerator-runtime@^0.10.5: 2685 | version "0.10.5" 2686 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 2687 | 2688 | regenerator-runtime@^0.11.0: 2689 | version "0.11.0" 2690 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1" 2691 | 2692 | regenerator-transform@^0.10.0: 2693 | version "0.10.1" 2694 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 2695 | dependencies: 2696 | babel-runtime "^6.18.0" 2697 | babel-types "^6.19.0" 2698 | private "^0.1.6" 2699 | 2700 | regex-cache@^0.4.2: 2701 | version "0.4.4" 2702 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2703 | dependencies: 2704 | is-equal-shallow "^0.1.3" 2705 | 2706 | regexpu-core@^2.0.0: 2707 | version "2.0.0" 2708 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2709 | dependencies: 2710 | regenerate "^1.2.1" 2711 | regjsgen "^0.2.0" 2712 | regjsparser "^0.1.4" 2713 | 2714 | regjsgen@^0.2.0: 2715 | version "0.2.0" 2716 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2717 | 2718 | regjsparser@^0.1.4: 2719 | version "0.1.5" 2720 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2721 | dependencies: 2722 | jsesc "~0.5.0" 2723 | 2724 | remove-trailing-separator@^1.0.1: 2725 | version "1.1.0" 2726 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2727 | 2728 | repeat-element@^1.1.2: 2729 | version "1.1.2" 2730 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2731 | 2732 | repeat-string@^1.5.2: 2733 | version "1.6.1" 2734 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2735 | 2736 | repeating@^2.0.0: 2737 | version "2.0.1" 2738 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2739 | dependencies: 2740 | is-finite "^1.0.0" 2741 | 2742 | request@2.81.0: 2743 | version "2.81.0" 2744 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2745 | dependencies: 2746 | aws-sign2 "~0.6.0" 2747 | aws4 "^1.2.1" 2748 | caseless "~0.12.0" 2749 | combined-stream "~1.0.5" 2750 | extend "~3.0.0" 2751 | forever-agent "~0.6.1" 2752 | form-data "~2.1.1" 2753 | har-validator "~4.2.1" 2754 | hawk "~3.1.3" 2755 | http-signature "~1.1.0" 2756 | is-typedarray "~1.0.0" 2757 | isstream "~0.1.2" 2758 | json-stringify-safe "~5.0.1" 2759 | mime-types "~2.1.7" 2760 | oauth-sign "~0.8.1" 2761 | performance-now "^0.2.0" 2762 | qs "~6.4.0" 2763 | safe-buffer "^5.0.1" 2764 | stringstream "~0.0.4" 2765 | tough-cookie "~2.3.0" 2766 | tunnel-agent "^0.6.0" 2767 | uuid "^3.0.0" 2768 | 2769 | request@^2.79.0: 2770 | version "2.83.0" 2771 | resolved "https://registry.yarnpkg.com/request/-/request-2.83.0.tgz#ca0b65da02ed62935887808e6f510381034e3356" 2772 | dependencies: 2773 | aws-sign2 "~0.7.0" 2774 | aws4 "^1.6.0" 2775 | caseless "~0.12.0" 2776 | combined-stream "~1.0.5" 2777 | extend "~3.0.1" 2778 | forever-agent "~0.6.1" 2779 | form-data "~2.3.1" 2780 | har-validator "~5.0.3" 2781 | hawk "~6.0.2" 2782 | http-signature "~1.2.0" 2783 | is-typedarray "~1.0.0" 2784 | isstream "~0.1.2" 2785 | json-stringify-safe "~5.0.1" 2786 | mime-types "~2.1.17" 2787 | oauth-sign "~0.8.2" 2788 | performance-now "^2.1.0" 2789 | qs "~6.5.1" 2790 | safe-buffer "^5.1.1" 2791 | stringstream "~0.0.5" 2792 | tough-cookie "~2.3.3" 2793 | tunnel-agent "^0.6.0" 2794 | uuid "^3.1.0" 2795 | 2796 | require-directory@^2.1.1: 2797 | version "2.1.1" 2798 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2799 | 2800 | require-from-string@^1.1.0: 2801 | version "1.2.1" 2802 | resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-1.2.1.tgz#529c9ccef27380adfec9a2f965b649bbee636418" 2803 | 2804 | require-main-filename@^1.0.1: 2805 | version "1.0.1" 2806 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2807 | 2808 | resolve@1.1.7: 2809 | version "1.1.7" 2810 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2811 | 2812 | restore-cursor@^1.0.1: 2813 | version "1.0.1" 2814 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 2815 | dependencies: 2816 | exit-hook "^1.0.0" 2817 | onetime "^1.0.0" 2818 | 2819 | right-align@^0.1.1: 2820 | version "0.1.3" 2821 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2822 | dependencies: 2823 | align-text "^0.1.1" 2824 | 2825 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1: 2826 | version "2.6.2" 2827 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2828 | dependencies: 2829 | glob "^7.0.5" 2830 | 2831 | rxjs@^5.0.0-beta.11: 2832 | version "5.5.2" 2833 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.5.2.tgz#28d403f0071121967f18ad665563255d54236ac3" 2834 | dependencies: 2835 | symbol-observable "^1.0.1" 2836 | 2837 | safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2838 | version "5.1.1" 2839 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2840 | 2841 | sane@^2.0.0: 2842 | version "2.2.0" 2843 | resolved "https://registry.yarnpkg.com/sane/-/sane-2.2.0.tgz#d6d2e2fcab00e3d283c93b912b7c3a20846f1d56" 2844 | dependencies: 2845 | anymatch "^1.3.0" 2846 | exec-sh "^0.2.0" 2847 | fb-watchman "^2.0.0" 2848 | minimatch "^3.0.2" 2849 | minimist "^1.1.1" 2850 | walker "~1.0.5" 2851 | watch "~0.18.0" 2852 | optionalDependencies: 2853 | fsevents "^1.1.1" 2854 | 2855 | sax@^1.2.1: 2856 | version "1.2.4" 2857 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2858 | 2859 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 2860 | version "5.4.1" 2861 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 2862 | 2863 | set-blocking@^2.0.0, set-blocking@~2.0.0: 2864 | version "2.0.0" 2865 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2866 | 2867 | set-immediate-shim@^1.0.1: 2868 | version "1.0.1" 2869 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2870 | 2871 | shebang-command@^1.2.0: 2872 | version "1.2.0" 2873 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2874 | dependencies: 2875 | shebang-regex "^1.0.0" 2876 | 2877 | shebang-regex@^1.0.0: 2878 | version "1.0.0" 2879 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2880 | 2881 | shellwords@^0.1.0: 2882 | version "0.1.1" 2883 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" 2884 | 2885 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2886 | version "3.0.2" 2887 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2888 | 2889 | slash@^1.0.0: 2890 | version "1.0.0" 2891 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2892 | 2893 | slice-ansi@0.0.4: 2894 | version "0.0.4" 2895 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 2896 | 2897 | sntp@1.x.x: 2898 | version "1.0.9" 2899 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2900 | dependencies: 2901 | hoek "2.x.x" 2902 | 2903 | sntp@2.x.x: 2904 | version "2.0.2" 2905 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.0.2.tgz#5064110f0af85f7cfdb7d6b67a40028ce52b4b2b" 2906 | dependencies: 2907 | hoek "4.x.x" 2908 | 2909 | source-map-support@^0.4.15: 2910 | version "0.4.18" 2911 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 2912 | dependencies: 2913 | source-map "^0.5.6" 2914 | 2915 | source-map@^0.4.4: 2916 | version "0.4.4" 2917 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 2918 | dependencies: 2919 | amdefine ">=0.0.4" 2920 | 2921 | source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1, source-map@~0.5.6: 2922 | version "0.5.7" 2923 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2924 | 2925 | spawn-sync@^1.0.15: 2926 | version "1.0.15" 2927 | resolved "https://registry.yarnpkg.com/spawn-sync/-/spawn-sync-1.0.15.tgz#b00799557eb7fb0c8376c29d44e8a1ea67e57476" 2928 | dependencies: 2929 | concat-stream "^1.4.7" 2930 | os-shim "^0.1.2" 2931 | 2932 | spdx-correct@~1.0.0: 2933 | version "1.0.2" 2934 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2935 | dependencies: 2936 | spdx-license-ids "^1.0.2" 2937 | 2938 | spdx-expression-parse@~1.0.0: 2939 | version "1.0.4" 2940 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2941 | 2942 | spdx-license-ids@^1.0.2: 2943 | version "1.2.2" 2944 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2945 | 2946 | sprintf-js@~1.0.2: 2947 | version "1.0.3" 2948 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2949 | 2950 | sshpk@^1.7.0: 2951 | version "1.13.1" 2952 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 2953 | dependencies: 2954 | asn1 "~0.2.3" 2955 | assert-plus "^1.0.0" 2956 | dashdash "^1.12.0" 2957 | getpass "^0.1.1" 2958 | optionalDependencies: 2959 | bcrypt-pbkdf "^1.0.0" 2960 | ecc-jsbn "~0.1.1" 2961 | jsbn "~0.1.0" 2962 | tweetnacl "~0.14.0" 2963 | 2964 | staged-git-files@0.0.4: 2965 | version "0.0.4" 2966 | resolved "https://registry.yarnpkg.com/staged-git-files/-/staged-git-files-0.0.4.tgz#d797e1b551ca7a639dec0237dc6eb4bb9be17d35" 2967 | 2968 | stream-to-observable@^0.1.0: 2969 | version "0.1.0" 2970 | resolved "https://registry.yarnpkg.com/stream-to-observable/-/stream-to-observable-0.1.0.tgz#45bf1d9f2d7dc09bed81f1c307c430e68b84cffe" 2971 | 2972 | string-length@^2.0.0: 2973 | version "2.0.0" 2974 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed" 2975 | dependencies: 2976 | astral-regex "^1.0.0" 2977 | strip-ansi "^4.0.0" 2978 | 2979 | string-width@^1.0.1, string-width@^1.0.2: 2980 | version "1.0.2" 2981 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2982 | dependencies: 2983 | code-point-at "^1.0.0" 2984 | is-fullwidth-code-point "^1.0.0" 2985 | strip-ansi "^3.0.0" 2986 | 2987 | string-width@^2.0.0: 2988 | version "2.1.1" 2989 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2990 | dependencies: 2991 | is-fullwidth-code-point "^2.0.0" 2992 | strip-ansi "^4.0.0" 2993 | 2994 | string_decoder@~1.0.3: 2995 | version "1.0.3" 2996 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 2997 | dependencies: 2998 | safe-buffer "~5.1.0" 2999 | 3000 | stringify-object@^3.2.0: 3001 | version "3.2.1" 3002 | resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.2.1.tgz#2720c2eff940854c819f6ee252aaeb581f30624d" 3003 | dependencies: 3004 | get-own-enumerable-property-symbols "^2.0.1" 3005 | is-obj "^1.0.1" 3006 | is-regexp "^1.0.0" 3007 | 3008 | stringstream@~0.0.4, stringstream@~0.0.5: 3009 | version "0.0.5" 3010 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3011 | 3012 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3013 | version "3.0.1" 3014 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3015 | dependencies: 3016 | ansi-regex "^2.0.0" 3017 | 3018 | strip-ansi@^4.0.0: 3019 | version "4.0.0" 3020 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3021 | dependencies: 3022 | ansi-regex "^3.0.0" 3023 | 3024 | strip-bom@3.0.0, strip-bom@^3.0.0: 3025 | version "3.0.0" 3026 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3027 | 3028 | strip-bom@^2.0.0: 3029 | version "2.0.0" 3030 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3031 | dependencies: 3032 | is-utf8 "^0.2.0" 3033 | 3034 | strip-eof@^1.0.0: 3035 | version "1.0.0" 3036 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3037 | 3038 | strip-indent@^2.0.0: 3039 | version "2.0.0" 3040 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" 3041 | 3042 | strip-json-comments@~2.0.1: 3043 | version "2.0.1" 3044 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3045 | 3046 | supports-color@^2.0.0: 3047 | version "2.0.0" 3048 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3049 | 3050 | supports-color@^3.1.2: 3051 | version "3.2.3" 3052 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3053 | dependencies: 3054 | has-flag "^1.0.0" 3055 | 3056 | supports-color@^4.0.0: 3057 | version "4.4.0" 3058 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.4.0.tgz#883f7ddabc165142b2a61427f3352ded195d1a3e" 3059 | dependencies: 3060 | has-flag "^2.0.0" 3061 | 3062 | symbol-observable@^1.0.1: 3063 | version "1.0.4" 3064 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d" 3065 | 3066 | symbol-tree@^3.2.1: 3067 | version "3.2.2" 3068 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 3069 | 3070 | tar-pack@^3.4.0: 3071 | version "3.4.0" 3072 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 3073 | dependencies: 3074 | debug "^2.2.0" 3075 | fstream "^1.0.10" 3076 | fstream-ignore "^1.0.5" 3077 | once "^1.3.3" 3078 | readable-stream "^2.1.4" 3079 | rimraf "^2.5.1" 3080 | tar "^2.2.1" 3081 | uid-number "^0.0.6" 3082 | 3083 | tar@^2.2.1: 3084 | version "2.2.1" 3085 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3086 | dependencies: 3087 | block-stream "*" 3088 | fstream "^1.0.2" 3089 | inherits "2" 3090 | 3091 | test-exclude@^4.1.1: 3092 | version "4.1.1" 3093 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26" 3094 | dependencies: 3095 | arrify "^1.0.1" 3096 | micromatch "^2.3.11" 3097 | object-assign "^4.1.0" 3098 | read-pkg-up "^1.0.1" 3099 | require-main-filename "^1.0.1" 3100 | 3101 | throat@^4.0.0: 3102 | version "4.1.0" 3103 | resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a" 3104 | 3105 | tmpl@1.0.x: 3106 | version "1.0.4" 3107 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 3108 | 3109 | to-fast-properties@^1.0.3: 3110 | version "1.0.3" 3111 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3112 | 3113 | tough-cookie@^2.3.2, tough-cookie@~2.3.0, tough-cookie@~2.3.3: 3114 | version "2.3.3" 3115 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 3116 | dependencies: 3117 | punycode "^1.4.1" 3118 | 3119 | tr46@~0.0.3: 3120 | version "0.0.3" 3121 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 3122 | 3123 | trim-right@^1.0.1: 3124 | version "1.0.1" 3125 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3126 | 3127 | tunnel-agent@^0.6.0: 3128 | version "0.6.0" 3129 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3130 | dependencies: 3131 | safe-buffer "^5.0.1" 3132 | 3133 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3134 | version "0.14.5" 3135 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3136 | 3137 | type-check@~0.3.2: 3138 | version "0.3.2" 3139 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3140 | dependencies: 3141 | prelude-ls "~1.1.2" 3142 | 3143 | typedarray@^0.0.6: 3144 | version "0.0.6" 3145 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3146 | 3147 | uglify-js@^2.6: 3148 | version "2.8.29" 3149 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 3150 | dependencies: 3151 | source-map "~0.5.1" 3152 | yargs "~3.10.0" 3153 | optionalDependencies: 3154 | uglify-to-browserify "~1.0.0" 3155 | 3156 | uglify-to-browserify@~1.0.0: 3157 | version "1.0.2" 3158 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3159 | 3160 | uid-number@^0.0.6: 3161 | version "0.0.6" 3162 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3163 | 3164 | user-home@^1.1.1: 3165 | version "1.1.1" 3166 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 3167 | 3168 | util-deprecate@~1.0.1: 3169 | version "1.0.2" 3170 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3171 | 3172 | uuid@^3.0.0, uuid@^3.1.0: 3173 | version "3.1.0" 3174 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 3175 | 3176 | v8flags@^2.1.1: 3177 | version "2.1.1" 3178 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 3179 | dependencies: 3180 | user-home "^1.1.1" 3181 | 3182 | validate-npm-package-license@^3.0.1: 3183 | version "3.0.1" 3184 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3185 | dependencies: 3186 | spdx-correct "~1.0.0" 3187 | spdx-expression-parse "~1.0.0" 3188 | 3189 | verror@1.10.0: 3190 | version "1.10.0" 3191 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 3192 | dependencies: 3193 | assert-plus "^1.0.0" 3194 | core-util-is "1.0.2" 3195 | extsprintf "^1.2.0" 3196 | 3197 | walker@~1.0.5: 3198 | version "1.0.7" 3199 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 3200 | dependencies: 3201 | makeerror "1.0.x" 3202 | 3203 | watch@~0.18.0: 3204 | version "0.18.0" 3205 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.18.0.tgz#28095476c6df7c90c963138990c0a5423eb4b986" 3206 | dependencies: 3207 | exec-sh "^0.2.0" 3208 | minimist "^1.2.0" 3209 | 3210 | webidl-conversions@^3.0.0: 3211 | version "3.0.1" 3212 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 3213 | 3214 | webidl-conversions@^4.0.0: 3215 | version "4.0.2" 3216 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" 3217 | 3218 | whatwg-encoding@^1.0.1: 3219 | version "1.0.1" 3220 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 3221 | dependencies: 3222 | iconv-lite "0.4.13" 3223 | 3224 | whatwg-url@^4.3.0: 3225 | version "4.8.0" 3226 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0" 3227 | dependencies: 3228 | tr46 "~0.0.3" 3229 | webidl-conversions "^3.0.0" 3230 | 3231 | which-module@^2.0.0: 3232 | version "2.0.0" 3233 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 3234 | 3235 | which@1.2.x: 3236 | version "1.2.14" 3237 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 3238 | dependencies: 3239 | isexe "^2.0.0" 3240 | 3241 | which@^1.2.10, which@^1.2.12, which@^1.2.9: 3242 | version "1.3.0" 3243 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 3244 | dependencies: 3245 | isexe "^2.0.0" 3246 | 3247 | wide-align@^1.1.0: 3248 | version "1.1.2" 3249 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3250 | dependencies: 3251 | string-width "^1.0.2" 3252 | 3253 | window-size@0.1.0: 3254 | version "0.1.0" 3255 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3256 | 3257 | wordwrap@0.0.2: 3258 | version "0.0.2" 3259 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3260 | 3261 | wordwrap@~0.0.2: 3262 | version "0.0.3" 3263 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3264 | 3265 | wordwrap@~1.0.0: 3266 | version "1.0.0" 3267 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3268 | 3269 | worker-farm@^1.3.1: 3270 | version "1.5.0" 3271 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.5.0.tgz#adfdf0cd40581465ed0a1f648f9735722afd5c8d" 3272 | dependencies: 3273 | errno "^0.1.4" 3274 | xtend "^4.0.1" 3275 | 3276 | wrap-ansi@^2.0.0: 3277 | version "2.1.0" 3278 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3279 | dependencies: 3280 | string-width "^1.0.1" 3281 | strip-ansi "^3.0.1" 3282 | 3283 | wrappy@1: 3284 | version "1.0.2" 3285 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3286 | 3287 | write-file-atomic@^2.1.0: 3288 | version "2.3.0" 3289 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 3290 | dependencies: 3291 | graceful-fs "^4.1.11" 3292 | imurmurhash "^0.1.4" 3293 | signal-exit "^3.0.2" 3294 | 3295 | xml-name-validator@^2.0.1: 3296 | version "2.0.1" 3297 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 3298 | 3299 | xtend@^4.0.1: 3300 | version "4.0.1" 3301 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3302 | 3303 | y18n@^3.2.1: 3304 | version "3.2.1" 3305 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3306 | 3307 | yallist@^2.1.2: 3308 | version "2.1.2" 3309 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3310 | 3311 | yargs-parser@^7.0.0: 3312 | version "7.0.0" 3313 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" 3314 | dependencies: 3315 | camelcase "^4.1.0" 3316 | 3317 | yargs@^9.0.0: 3318 | version "9.0.1" 3319 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-9.0.1.tgz#52acc23feecac34042078ee78c0c007f5085db4c" 3320 | dependencies: 3321 | camelcase "^4.1.0" 3322 | cliui "^3.2.0" 3323 | decamelize "^1.1.1" 3324 | get-caller-file "^1.0.1" 3325 | os-locale "^2.0.0" 3326 | read-pkg-up "^2.0.0" 3327 | require-directory "^2.1.1" 3328 | require-main-filename "^1.0.1" 3329 | set-blocking "^2.0.0" 3330 | string-width "^2.0.0" 3331 | which-module "^2.0.0" 3332 | y18n "^3.2.1" 3333 | yargs-parser "^7.0.0" 3334 | 3335 | yargs@~3.10.0: 3336 | version "3.10.0" 3337 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3338 | dependencies: 3339 | camelcase "^1.0.2" 3340 | cliui "^2.1.0" 3341 | decamelize "^1.0.0" 3342 | window-size "0.1.0" 3343 | --------------------------------------------------------------------------------