├── .babelrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── index.d.ts ├── package.json ├── src └── graphql-add-middleware.js ├── test └── test.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | "es2015-node6", 4 | "stage-0" 5 | ], 6 | "plugins": [ 7 | "transform-async-to-generator", 8 | "transform-object-rest-spread", 9 | "transform-es2015-parameters" 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | test-dist/ 4 | npm-debug.log 5 | *.env 6 | .DS_Store 7 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | * 2 | !dist 3 | !dist/**/* 4 | !index.d.ts 5 | dist/**/*.test.* 6 | !package.json 7 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "6" 4 | - "7" 5 | script: 6 | - npm run build 7 | - npm test 8 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | 2 | # Changelog 3 | 4 | ### 0.3.1 5 | 6 | * Fix bug with double execution of middleware (PR #11 by @fgrehm) 7 | 8 | ### 0.1.5 9 | 10 | * Make `graphql` package as peer dependency 11 | 12 | ### 0.1.4 13 | 14 | * Dependencies upgrade 15 | 16 | ### 0.1.3 17 | 18 | * Fix bug with resolver for given type, close #2 19 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) [year] [fullname] 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | # graphql-add-middleware [![Build Status](https://travis-ci.org/alekbarszczewski/graphql-add-middleware.svg?branch=master)](https://travis-ci.org/alekbarszczewski/graphql-add-middleware) 3 | 4 | Easily add middleware to GraphQL schema resolvers 5 | 6 | ## Installation 7 | 8 | ```sh 9 | $ npm install --save graphql-add-middleware 10 | ``` 11 | 12 | ## Features 13 | 14 | * Add middleware to all schema resolvers 15 | * Add middleware to resolvers of given type 16 | * Add middleware to resolver of given field of given type 17 | 18 | ## Usage 19 | 20 | ```gql 21 | type User { 22 | name: String! 23 | } 24 | 25 | type Post { 26 | title: String! 27 | author: User 28 | } 29 | 30 | type Query { 31 | posts: [Post!]! 32 | user: User 33 | } 34 | 35 | type Mutation { 36 | createUser: User! 37 | } 38 | 39 | schema { 40 | query: Query 41 | mutation: Mutation 42 | } 43 | ``` 44 | 45 | ```js 46 | import { addMiddleware } from 'graphql-add-middleware'; 47 | 48 | // add middleware to ALL resolvers (also to nested resolver if they are defined in schema like Post.author) 49 | addMiddleware(schema, async function (root, args, context, info, next) { 50 | // you can modify root, args, context, info 51 | const result = await next(); 52 | // you can modify result 53 | return result; // you must return value 54 | }); 55 | 56 | // add middleware only to given type 57 | addMiddleware(schema, 'Query', async function (root, args, context, info, next) { ... }); // will add middleware to Query.posts and Query.user 58 | addMiddleware(schema, 'Mutation', async function (root, args, context, info, next) { ... }); // will add middleware to Mutation.createUser 59 | addMiddleware(schema, 'Post', async function (root, args, context, info, next) { ... }); // will add middleware to Post.author (Post.*) 60 | 61 | // add middleware only to given type/field 62 | addMiddleware(schema, 'Query.posts', async function (root, args, context, info, next) { ... }); // will add middleware to Query.posts 63 | addMiddleware(schema, 'Post.author', async function (root, args, context, info, next) { ... }); // will add middleware to Post.author 64 | ``` 65 | 66 | ## License 67 | 68 | [License](LICENSE) 69 | -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// 3 | 4 | declare module 'graphql-add-middleware' { 5 | import { GraphQLSchema } from 'graphql'; 6 | 7 | type middlewareFn = (root: any, args: any, context: any, info: any, next: () => Promise) => Promise; 8 | 9 | export function addMiddleware ( 10 | schema: GraphQLSchema, 11 | fn: middlewareFn, 12 | ): void; 13 | 14 | export function addMiddleware ( 15 | schema: GraphQLSchema, 16 | path: string, 17 | fn: middlewareFn, 18 | ): void; 19 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "graphql-add-middleware", 3 | "version": "0.3.7", 4 | "engines": { 5 | "node": ">=6.0.0" 6 | }, 7 | "description": "GraphQL middleware for schema resolvers", 8 | "main": "dist/graphql-add-middleware.js", 9 | "keywords": [ 10 | "graphql", 11 | "middleware", 12 | "resolver" 13 | ], 14 | "scripts": { 15 | "build-test": "npm run build && npm test", 16 | "test": "./node_modules/.bin/mocha test-dist/test.js", 17 | "build": "./node_modules/.bin/babel src --out-dir dist && ./node_modules/.bin/babel test --out-dir test-dist", 18 | "preversion": "npm run build-test" 19 | }, 20 | "repository": { 21 | "type": "git", 22 | "url": "https://github.com/alekbarszczewski/graphql-add-middleware" 23 | }, 24 | "author": "Alek Barszczewski ", 25 | "license": "MIT", 26 | "dependencies": { 27 | "koa-compose": "^3.2.1" 28 | }, 29 | "devDependencies": { 30 | "babel-cli": "^6.24.0", 31 | "babel-plugin-transform-async-to-generator": "^6.22.0", 32 | "babel-plugin-transform-es2015-parameters": "^6.23.0", 33 | "babel-plugin-transform-object-rest-spread": "^6.22.0", 34 | "babel-preset-es2015-node6": "^0.4.0", 35 | "babel-preset-stage-0": "^6.16.0", 36 | "babel-register": "^6.23.0", 37 | "chai": "^3.5.0", 38 | "esm": "^3.0.51", 39 | "graphql-query-tree": "^0.3.0", 40 | "mocha": "^3.2.0", 41 | "graphql-tools": "4.0.7" 42 | }, 43 | "peerDependencies": { 44 | "graphql": "*" 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /src/graphql-add-middleware.js: -------------------------------------------------------------------------------- 1 | 2 | import compose from 'koa-compose'; 3 | import { getNullableType } from 'graphql'; 4 | 5 | const wrapMiddleware = function wrapMiddleware (fn) { 6 | return function (context = {}, next) { 7 | const args = (context.args || []).concat(next); 8 | return fn.apply(this, args); 9 | } 10 | } 11 | 12 | const getType = function getType (type) { 13 | type = getNullableType(type); 14 | if (type.ofType) { 15 | type = getType(type.ofType); 16 | } 17 | return type; 18 | }; 19 | 20 | const pre = function pre (pre, fn) { 21 | pre = wrapMiddleware(pre); 22 | if (!fn.__chain) { 23 | fn = (function (fn) { 24 | return async function ({ args }) { 25 | return fn.apply(this, args); 26 | } 27 | })(fn); 28 | } 29 | const chain = fn.__chain || [fn]; 30 | const last = chain.pop(); 31 | chain.push(pre); 32 | chain.push(last); 33 | const newFn = compose(chain); 34 | const wrappedFn = async function (...args) { 35 | return newFn.call(this, { args }); 36 | } 37 | wrappedFn.__chain = chain; 38 | return wrappedFn; 39 | } 40 | 41 | export function addMiddleware (schema, path, fn) { 42 | if (!fn) { 43 | fn = path; 44 | path = null; 45 | } 46 | let parentType, parentField; 47 | if (path) { 48 | [parentType, parentField] = path.split('.'); 49 | } 50 | const rootTypes = ([ 51 | schema.getQueryType(), 52 | schema.getMutationType(), 53 | schema.getSubscriptionType(), 54 | ]).filter(x => !!x); 55 | let middlewaredTypes = {}; 56 | rootTypes.forEach((type) => { 57 | middlewaredTypes = addMiddlewareToType(type, fn, { parentType, parentField, middlewaredTypes }); 58 | }); 59 | }; 60 | 61 | const addMiddlewareToType = function (type, fn, { 62 | parentType, 63 | parentField, 64 | middlewaredTypes = {} 65 | }) { 66 | 67 | if (type && type.name && middlewaredTypes[type.name]) { 68 | // Stop going into recursion with adding middlewares 69 | // on recursive types 70 | return middlewaredTypes; 71 | } else { 72 | middlewaredTypes[type.name] = true; 73 | } 74 | 75 | 76 | const matchesParent = parentType ? parentType === type.name : true; 77 | const fields = type.getFields(); 78 | Object.keys(fields).forEach((fieldName) => { 79 | const matchesField = parentField ? parentField === fieldName : true; 80 | if (fields[fieldName].resolve && matchesField && matchesParent) { 81 | fields[fieldName].resolve = pre(fn, fields[fieldName].resolve); 82 | } 83 | const fieldType = getType(fields[fieldName].type); 84 | if (fieldType.getFields) { 85 | addMiddlewareToType(fieldType, fn, { 86 | parentType, 87 | parentField, 88 | middlewaredTypes 89 | }); 90 | } 91 | }); 92 | 93 | return middlewaredTypes; 94 | } 95 | -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- 1 | 2 | import { makeExecutableSchema, addResolveFunctionsToSchema } from 'graphql-tools'; 3 | import { graphql } from 'graphql'; 4 | import { expect } from 'chai'; 5 | import GraphqlQueryTree from 'graphql-query-tree'; 6 | import { addMiddleware } from './../dist/graphql-add-middleware'; 7 | 8 | const typeDefs = [` 9 | type User { 10 | id: Int! 11 | name: String! 12 | } 13 | type Post { 14 | id: Int! 15 | title: String! 16 | author: User! 17 | } 18 | extend type User { 19 | posts: [Post] 20 | } 21 | type Query { 22 | posts: [Post!]! 23 | user: User 24 | } 25 | type Mutation { 26 | test: User 27 | } 28 | type schema { 29 | query: Query 30 | mutation: Mutation 31 | } 32 | `]; 33 | 34 | const resolvers = { 35 | Query: { 36 | posts (root, args, context, info) { 37 | return [{ id: 1, title: 'a', author: { id: 1, name: 'John' } }]; 38 | }, 39 | user (root, args, context, info) { 40 | return null; 41 | }, 42 | }, 43 | }; 44 | 45 | describe('graphql-add-middleware', function () { 46 | 47 | beforeEach(function () { 48 | this.schema = makeExecutableSchema({ typeDefs, resolvers }); 49 | }) 50 | 51 | it('should return correct result without middleware', async function () { 52 | const query = ` 53 | query { 54 | posts { id, title, author { id, name } } 55 | } 56 | `; 57 | const result = await graphql(this.schema, query); 58 | expect(result.data.posts).to.eql([{ id: 1, title: 'a', author: { id: 1, name: 'John' } }]); 59 | }); 60 | 61 | it('should allow to run middleware after resolver', async function () { 62 | addMiddleware(this.schema, async function (root, args, context, info, next) { 63 | const result = await next(); 64 | return result.concat([{ id: 2, title: 'b', author: { id: 2, name: 'Jack' } }]); 65 | }); 66 | const query = ` 67 | query { 68 | posts { id, title, author { id, name } } 69 | } 70 | `; 71 | const result = await graphql(this.schema, query); 72 | expect(result.data.posts).to.eql([ 73 | { id: 1, title: 'a', author: { id: 1, name: 'John' } }, 74 | { id: 2, title: 'b', author: { id: 2, name: 'Jack' } }, 75 | ]); 76 | }); 77 | 78 | it('should allow to run middleware instead of resolver', async function () { 79 | addMiddleware(this.schema, async function (root, args, context, info, next) { 80 | return [{ id: 2, title: 'b', author: { id: 2, name: 'Jack' } }]; 81 | }); 82 | const query = ` 83 | query { 84 | posts { id, title, author { id, name } } 85 | } 86 | `; 87 | const result = await graphql(this.schema, query); 88 | expect(result.data.posts).to.eql([ 89 | { id: 2, title: 'b', author: { id: 2, name: 'Jack' } }, 90 | ]); 91 | }); 92 | 93 | it('should allow to run more than one middleware and preserve correct order', async function () { 94 | addMiddleware(this.schema, async function (root, args, context, info, next) { 95 | const result = await next(); 96 | return result.concat([{ id: 3, title: 'c', author: { id: 3, name: 'Peter' } }]); 97 | }); 98 | addMiddleware(this.schema, async function (root, args, context, info, next) { 99 | const result = await next(); 100 | return result.concat([{ id: 2, title: 'b', author: { id: 2, name: 'Jack' } }]); 101 | }); 102 | const query = ` 103 | query { 104 | posts { id, title, author { id, name } } 105 | } 106 | `; 107 | const result = await graphql(this.schema, query); 108 | expect(result.data.posts).to.eql([ 109 | { id: 1, title: 'a', author: { id: 1, name: 'John' } }, 110 | { id: 2, title: 'b', author: { id: 2, name: 'Jack' } }, 111 | { id: 3, title: 'c', author: { id: 3, name: 'Peter' } }, 112 | ]); 113 | }); 114 | 115 | it('should allow to modify arguments', async function () { 116 | addMiddleware(this.schema, async function (root, args, context, info, next) { 117 | root._changed = args._changed = context._changed = info._changed = true; 118 | return await next(); 119 | }); 120 | let rootChanged, argsChanged, contextChanged, infoChanged; 121 | addMiddleware(this.schema, async function (root, args, context, info, next) { 122 | rootChanged = root._changed; 123 | argsChanged = args._changed; 124 | contextChanged = context._changed; 125 | infoChanged = info._changed; 126 | return await next(); 127 | }); 128 | const query = ` 129 | query { 130 | posts { id, title, author { id, name } } 131 | } 132 | `; 133 | const result = await graphql(this.schema, query, {}, {}, {}); 134 | expect(result.data.posts).to.eql([ 135 | { id: 1, title: 'a', author: { id: 1, name: 'John' } }, 136 | ]); 137 | expect(rootChanged).to.equal(true); 138 | expect(argsChanged).to.equal(true); 139 | expect(contextChanged).to.equal(true); 140 | expect(infoChanged).to.equal(true); 141 | }); 142 | 143 | it('should affect nested resolvers', async function () { 144 | addResolveFunctionsToSchema(this.schema, { 145 | Post: { 146 | author (root, args, context, info) { 147 | return { id: 1, name: 'Mark' }; 148 | }, 149 | }, 150 | }); 151 | const query = ` 152 | query { 153 | posts { id, title, author { id, name } } 154 | } 155 | `; 156 | const result = await graphql(this.schema, query, {}, {}, {}); 157 | expect(result.data.posts).to.eql([{ id: 1, title: 'a', author: { id: 1, name: 'Mark' } }]); 158 | addMiddleware(this.schema, async function (root, args, context, info, next) { 159 | const tree = new GraphqlQueryTree(info); 160 | const path = `${tree.getParentType()}.${tree.getParentField()}`; 161 | if (path === 'Post.author') { 162 | return { id: 10, name: 'Jacob' }; 163 | } else { 164 | return await next(); 165 | } 166 | }); 167 | const result2 = await graphql(this.schema, query); 168 | expect(result2.data.posts).to.eql([{ id: 1, title: 'a', author: { id: 10, name: 'Jacob' } }]); 169 | }); 170 | 171 | it('should add middleware only to given type', async function () { 172 | const query = ` 173 | query { 174 | posts { id, title, author { id, name } } 175 | user { id, name } 176 | } 177 | `; 178 | const result = await graphql(this.schema, query, {}, {}, {}); 179 | expect(result.data.posts).to.eql([{ id: 1, title: 'a', author: { id: 1, name: 'John' } }]); 180 | expect(result.data.user).to.equal(null); 181 | 182 | let paths = []; 183 | 184 | addMiddleware(this.schema, 'Query.posts', async function (root, args, context, info, next) { 185 | const tree = new GraphqlQueryTree(info); 186 | const path = `${tree.getParentType()}.${tree.getParentField()}`; 187 | paths.push(path); 188 | return await next(); 189 | }); 190 | await graphql(this.schema, query); 191 | expect(paths.sort()).to.eql([ 'Query.posts' ]); 192 | 193 | paths = []; 194 | 195 | addMiddleware(this.schema, 'Query.user', async function (root, args, context, info, next) { 196 | const tree = new GraphqlQueryTree(info); 197 | const path = `${tree.getParentType()}.${tree.getParentField()}`; 198 | paths.push(path); 199 | return await next(); 200 | }); 201 | await graphql(this.schema, query); 202 | expect(paths.sort()).to.eql([ 'Query.posts', 'Query.user' ]); 203 | 204 | paths = []; 205 | 206 | addMiddleware(this.schema, 'Query', async function (root, args, context, info, next) { 207 | const tree = new GraphqlQueryTree(info); 208 | const path = `${tree.getParentType()}.${tree.getParentField()}`; 209 | paths.push(path); 210 | return await next(); 211 | }); 212 | await graphql(this.schema, query); 213 | expect(paths.sort()).to.eql([ 'Query.posts', 'Query.posts', 'Query.user', 'Query.user' ]); 214 | 215 | addResolveFunctionsToSchema(this.schema, { 216 | Post: { 217 | title (root, args, context, info) { 218 | return 'some title'; 219 | }, 220 | }, 221 | }); 222 | 223 | paths = []; 224 | 225 | addMiddleware(this.schema, 'Post', async function (root, args, context, info, next) { 226 | const tree = new GraphqlQueryTree(info); 227 | const path = `${tree.getParentType()}.${tree.getParentField()}`; 228 | paths.push(path); 229 | return await next(); 230 | }); 231 | await graphql(this.schema, query); 232 | expect(paths.sort()).to.eql([ 'Post.title', 'Query.posts', 'Query.posts', 'Query.user', 'Query.user' ]); 233 | 234 | paths = []; 235 | 236 | await graphql(this.schema, 'mutation { test { id, name } }'); 237 | expect(paths.sort()).to.eql([]); 238 | }); 239 | 240 | it('should add middleware to given field only once', async function () { 241 | const query = ` 242 | query { 243 | user { id } 244 | } 245 | `; 246 | 247 | addResolveFunctionsToSchema(this.schema, { 248 | Query: { 249 | user (root, args, context, info) { 250 | return { id: 2 }; 251 | }, 252 | }, 253 | User: { 254 | id (root, args, context, info) { 255 | return root.id; 256 | }, 257 | } 258 | }); 259 | 260 | addMiddleware(this.schema, 'User.id', async function (root, args, context, info, next) { 261 | const originalId = await next(); 262 | return originalId + 40; 263 | }); 264 | 265 | const result = await graphql(this.schema, query); 266 | expect(result.data.user.id).to.eql(42); 267 | }); 268 | 269 | it('should work with normal functions', async function () { 270 | const query = ` 271 | query { 272 | posts { id, title, author { id, name } } 273 | } 274 | `; 275 | addMiddleware(this.schema, 'Query.posts', function (root, args, context, info, next) { 276 | return [{ id: 99, title: 'z', author: { id: 99, name: 'Michael' } }]; 277 | }); 278 | const result = await graphql(this.schema, query); 279 | expect(result.data.posts).to.eql([{ id: 99, title: 'z', author: { id: 99, name: 'Michael' } }]); 280 | }); 281 | 282 | it('should work with promises', async function () { 283 | const query = ` 284 | query { 285 | posts { id, title, author { id, name } } 286 | } 287 | `; 288 | addMiddleware(this.schema, 'Query.posts', function (root, args, context, info, next) { 289 | return Promise.resolve([{ id: 99, title: 'z', author: { id: 99, name: 'Michael' } }]); 290 | }); 291 | const result = await graphql(this.schema, query); 292 | expect(result.data.posts).to.eql([{ id: 99, title: 'z', author: { id: 99, name: 'Michael' } }]); 293 | }); 294 | 295 | }); 296 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@wry/equality@^0.1.2": 6 | version "0.1.11" 7 | resolved "https://registry.yarnpkg.com/@wry/equality/-/equality-0.1.11.tgz#35cb156e4a96695aa81a9ecc4d03787bc17f1790" 8 | integrity sha512-mwEVBDUVODlsQQ5dfuLUS5/Tf7jqUKyhKYHmVi4fPB6bDMOfWvUPJmKgS1Z7Za/sOI3vzWt4+O7yCiL/70MogA== 9 | dependencies: 10 | tslib "^1.9.3" 11 | 12 | abbrev@1: 13 | version "1.1.1" 14 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 15 | 16 | ansi-regex@^2.0.0: 17 | version "2.1.1" 18 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 19 | 20 | ansi-regex@^3.0.0: 21 | version "3.0.0" 22 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 23 | 24 | ansi-styles@^2.2.1: 25 | version "2.2.1" 26 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 27 | 28 | any-promise@^1.1.0: 29 | version "1.3.0" 30 | resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" 31 | 32 | anymatch@^1.3.0: 33 | version "1.3.2" 34 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 35 | dependencies: 36 | micromatch "^2.1.5" 37 | normalize-path "^2.0.0" 38 | 39 | apollo-link@^1.2.3: 40 | version "1.2.14" 41 | resolved "https://registry.yarnpkg.com/apollo-link/-/apollo-link-1.2.14.tgz#3feda4b47f9ebba7f4160bef8b977ba725b684d9" 42 | integrity sha512-p67CMEFP7kOG1JZ0ZkYZwRDa369w5PIjtMjvrQd/HnIV8FRsHRqLqK+oAZQnFa1DDdZtOtHTi+aMIW6EatC2jg== 43 | dependencies: 44 | apollo-utilities "^1.3.0" 45 | ts-invariant "^0.4.0" 46 | tslib "^1.9.3" 47 | zen-observable-ts "^0.8.21" 48 | 49 | apollo-utilities@^1.0.1: 50 | version "1.0.15" 51 | resolved "https://registry.yarnpkg.com/apollo-utilities/-/apollo-utilities-1.0.15.tgz#8f1ba6e4ed9b92cb0de2ce7c032315a768860aae" 52 | dependencies: 53 | fast-json-stable-stringify "^2.0.0" 54 | 55 | apollo-utilities@^1.3.0: 56 | version "1.3.3" 57 | resolved "https://registry.yarnpkg.com/apollo-utilities/-/apollo-utilities-1.3.3.tgz#f1854715a7be80cd810bc3ac95df085815c0787c" 58 | integrity sha512-F14aX2R/fKNYMvhuP2t9GD9fggID7zp5I96MF5QeKYWDWTrkRdHRp4+SVfXUVN+cXOaB/IebfvRtzPf25CM0zw== 59 | dependencies: 60 | "@wry/equality" "^0.1.2" 61 | fast-json-stable-stringify "^2.0.0" 62 | ts-invariant "^0.4.0" 63 | tslib "^1.10.0" 64 | 65 | aproba@^1.0.3: 66 | version "1.2.0" 67 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 68 | 69 | are-we-there-yet@~1.1.2: 70 | version "1.1.5" 71 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" 72 | dependencies: 73 | delegates "^1.0.0" 74 | readable-stream "^2.0.6" 75 | 76 | arr-diff@^2.0.0: 77 | version "2.0.0" 78 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 79 | dependencies: 80 | arr-flatten "^1.0.1" 81 | 82 | arr-flatten@^1.0.1: 83 | version "1.1.0" 84 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 85 | 86 | array-unique@^0.2.1: 87 | version "0.2.1" 88 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 89 | 90 | assertion-error@^1.0.1: 91 | version "1.1.0" 92 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b" 93 | 94 | async-each@^1.0.0: 95 | version "1.0.1" 96 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 97 | 98 | babel-cli@^6.24.0: 99 | version "6.26.0" 100 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1" 101 | dependencies: 102 | babel-core "^6.26.0" 103 | babel-polyfill "^6.26.0" 104 | babel-register "^6.26.0" 105 | babel-runtime "^6.26.0" 106 | commander "^2.11.0" 107 | convert-source-map "^1.5.0" 108 | fs-readdir-recursive "^1.0.0" 109 | glob "^7.1.2" 110 | lodash "^4.17.4" 111 | output-file-sync "^1.1.2" 112 | path-is-absolute "^1.0.1" 113 | slash "^1.0.0" 114 | source-map "^0.5.6" 115 | v8flags "^2.1.1" 116 | optionalDependencies: 117 | chokidar "^1.6.1" 118 | 119 | babel-code-frame@^6.26.0: 120 | version "6.26.0" 121 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 122 | dependencies: 123 | chalk "^1.1.3" 124 | esutils "^2.0.2" 125 | js-tokens "^3.0.2" 126 | 127 | babel-core@^6.26.0: 128 | version "6.26.3" 129 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207" 130 | dependencies: 131 | babel-code-frame "^6.26.0" 132 | babel-generator "^6.26.0" 133 | babel-helpers "^6.24.1" 134 | babel-messages "^6.23.0" 135 | babel-register "^6.26.0" 136 | babel-runtime "^6.26.0" 137 | babel-template "^6.26.0" 138 | babel-traverse "^6.26.0" 139 | babel-types "^6.26.0" 140 | babylon "^6.18.0" 141 | convert-source-map "^1.5.1" 142 | debug "^2.6.9" 143 | json5 "^0.5.1" 144 | lodash "^4.17.4" 145 | minimatch "^3.0.4" 146 | path-is-absolute "^1.0.1" 147 | private "^0.1.8" 148 | slash "^1.0.0" 149 | source-map "^0.5.7" 150 | 151 | babel-generator@^6.26.0: 152 | version "6.26.1" 153 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" 154 | dependencies: 155 | babel-messages "^6.23.0" 156 | babel-runtime "^6.26.0" 157 | babel-types "^6.26.0" 158 | detect-indent "^4.0.0" 159 | jsesc "^1.3.0" 160 | lodash "^4.17.4" 161 | source-map "^0.5.7" 162 | trim-right "^1.0.1" 163 | 164 | babel-helper-bindify-decorators@^6.24.1: 165 | version "6.24.1" 166 | resolved "https://registry.yarnpkg.com/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.24.1.tgz#14c19e5f142d7b47f19a52431e52b1ccbc40a330" 167 | dependencies: 168 | babel-runtime "^6.22.0" 169 | babel-traverse "^6.24.1" 170 | babel-types "^6.24.1" 171 | 172 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 173 | version "6.24.1" 174 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 175 | dependencies: 176 | babel-helper-explode-assignable-expression "^6.24.1" 177 | babel-runtime "^6.22.0" 178 | babel-types "^6.24.1" 179 | 180 | babel-helper-call-delegate@^6.24.1: 181 | version "6.24.1" 182 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 183 | dependencies: 184 | babel-helper-hoist-variables "^6.24.1" 185 | babel-runtime "^6.22.0" 186 | babel-traverse "^6.24.1" 187 | babel-types "^6.24.1" 188 | 189 | babel-helper-explode-assignable-expression@^6.24.1: 190 | version "6.24.1" 191 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 192 | dependencies: 193 | babel-runtime "^6.22.0" 194 | babel-traverse "^6.24.1" 195 | babel-types "^6.24.1" 196 | 197 | babel-helper-explode-class@^6.24.1: 198 | version "6.24.1" 199 | resolved "https://registry.yarnpkg.com/babel-helper-explode-class/-/babel-helper-explode-class-6.24.1.tgz#7dc2a3910dee007056e1e31d640ced3d54eaa9eb" 200 | dependencies: 201 | babel-helper-bindify-decorators "^6.24.1" 202 | babel-runtime "^6.22.0" 203 | babel-traverse "^6.24.1" 204 | babel-types "^6.24.1" 205 | 206 | babel-helper-function-name@^6.24.1: 207 | version "6.24.1" 208 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 209 | dependencies: 210 | babel-helper-get-function-arity "^6.24.1" 211 | babel-runtime "^6.22.0" 212 | babel-template "^6.24.1" 213 | babel-traverse "^6.24.1" 214 | babel-types "^6.24.1" 215 | 216 | babel-helper-get-function-arity@^6.24.1: 217 | version "6.24.1" 218 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 219 | dependencies: 220 | babel-runtime "^6.22.0" 221 | babel-types "^6.24.1" 222 | 223 | babel-helper-hoist-variables@^6.24.1: 224 | version "6.24.1" 225 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 226 | dependencies: 227 | babel-runtime "^6.22.0" 228 | babel-types "^6.24.1" 229 | 230 | babel-helper-remap-async-to-generator@^6.24.1: 231 | version "6.24.1" 232 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 233 | dependencies: 234 | babel-helper-function-name "^6.24.1" 235 | babel-runtime "^6.22.0" 236 | babel-template "^6.24.1" 237 | babel-traverse "^6.24.1" 238 | babel-types "^6.24.1" 239 | 240 | babel-helpers@^6.24.1: 241 | version "6.24.1" 242 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 243 | dependencies: 244 | babel-runtime "^6.22.0" 245 | babel-template "^6.24.1" 246 | 247 | babel-messages@^6.23.0: 248 | version "6.23.0" 249 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 250 | dependencies: 251 | babel-runtime "^6.22.0" 252 | 253 | babel-plugin-syntax-async-functions@^6.8.0: 254 | version "6.13.0" 255 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 256 | 257 | babel-plugin-syntax-async-generators@^6.5.0: 258 | version "6.13.0" 259 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a" 260 | 261 | babel-plugin-syntax-class-constructor-call@^6.18.0: 262 | version "6.18.0" 263 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-constructor-call/-/babel-plugin-syntax-class-constructor-call-6.18.0.tgz#9cb9d39fe43c8600bec8146456ddcbd4e1a76416" 264 | 265 | babel-plugin-syntax-class-properties@^6.8.0: 266 | version "6.13.0" 267 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 268 | 269 | babel-plugin-syntax-decorators@^6.13.0: 270 | version "6.13.0" 271 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b" 272 | 273 | babel-plugin-syntax-do-expressions@^6.8.0: 274 | version "6.13.0" 275 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-do-expressions/-/babel-plugin-syntax-do-expressions-6.13.0.tgz#5747756139aa26d390d09410b03744ba07e4796d" 276 | 277 | babel-plugin-syntax-dynamic-import@^6.18.0: 278 | version "6.18.0" 279 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da" 280 | 281 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 282 | version "6.13.0" 283 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 284 | 285 | babel-plugin-syntax-export-extensions@^6.8.0: 286 | version "6.13.0" 287 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-export-extensions/-/babel-plugin-syntax-export-extensions-6.13.0.tgz#70a1484f0f9089a4e84ad44bac353c95b9b12721" 288 | 289 | babel-plugin-syntax-function-bind@^6.8.0: 290 | version "6.13.0" 291 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-function-bind/-/babel-plugin-syntax-function-bind-6.13.0.tgz#48c495f177bdf31a981e732f55adc0bdd2601f46" 292 | 293 | babel-plugin-syntax-object-rest-spread@^6.8.0: 294 | version "6.13.0" 295 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 296 | 297 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 298 | version "6.22.0" 299 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 300 | 301 | babel-plugin-transform-async-generator-functions@^6.24.1: 302 | version "6.24.1" 303 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.24.1.tgz#f058900145fd3e9907a6ddf28da59f215258a5db" 304 | dependencies: 305 | babel-helper-remap-async-to-generator "^6.24.1" 306 | babel-plugin-syntax-async-generators "^6.5.0" 307 | babel-runtime "^6.22.0" 308 | 309 | babel-plugin-transform-async-to-generator@^6.22.0, babel-plugin-transform-async-to-generator@^6.24.1: 310 | version "6.24.1" 311 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 312 | dependencies: 313 | babel-helper-remap-async-to-generator "^6.24.1" 314 | babel-plugin-syntax-async-functions "^6.8.0" 315 | babel-runtime "^6.22.0" 316 | 317 | babel-plugin-transform-class-constructor-call@^6.24.1: 318 | version "6.24.1" 319 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-constructor-call/-/babel-plugin-transform-class-constructor-call-6.24.1.tgz#80dc285505ac067dcb8d6c65e2f6f11ab7765ef9" 320 | dependencies: 321 | babel-plugin-syntax-class-constructor-call "^6.18.0" 322 | babel-runtime "^6.22.0" 323 | babel-template "^6.24.1" 324 | 325 | babel-plugin-transform-class-properties@^6.24.1: 326 | version "6.24.1" 327 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac" 328 | dependencies: 329 | babel-helper-function-name "^6.24.1" 330 | babel-plugin-syntax-class-properties "^6.8.0" 331 | babel-runtime "^6.22.0" 332 | babel-template "^6.24.1" 333 | 334 | babel-plugin-transform-decorators@^6.24.1: 335 | version "6.24.1" 336 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.24.1.tgz#788013d8f8c6b5222bdf7b344390dfd77569e24d" 337 | dependencies: 338 | babel-helper-explode-class "^6.24.1" 339 | babel-plugin-syntax-decorators "^6.13.0" 340 | babel-runtime "^6.22.0" 341 | babel-template "^6.24.1" 342 | babel-types "^6.24.1" 343 | 344 | babel-plugin-transform-do-expressions@^6.22.0: 345 | version "6.22.0" 346 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-do-expressions/-/babel-plugin-transform-do-expressions-6.22.0.tgz#28ccaf92812d949c2cd1281f690c8fdc468ae9bb" 347 | dependencies: 348 | babel-plugin-syntax-do-expressions "^6.8.0" 349 | babel-runtime "^6.22.0" 350 | 351 | babel-plugin-transform-es2015-destructuring@^6.6.5: 352 | version "6.23.0" 353 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 354 | dependencies: 355 | babel-runtime "^6.22.0" 356 | 357 | babel-plugin-transform-es2015-function-name@^6.5.0: 358 | version "6.24.1" 359 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 360 | dependencies: 361 | babel-helper-function-name "^6.24.1" 362 | babel-runtime "^6.22.0" 363 | babel-types "^6.24.1" 364 | 365 | babel-plugin-transform-es2015-modules-commonjs@^6.7.4: 366 | version "6.26.2" 367 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz#58a793863a9e7ca870bdc5a881117ffac27db6f3" 368 | dependencies: 369 | babel-plugin-transform-strict-mode "^6.24.1" 370 | babel-runtime "^6.26.0" 371 | babel-template "^6.26.0" 372 | babel-types "^6.26.0" 373 | 374 | babel-plugin-transform-es2015-parameters@^6.23.0, babel-plugin-transform-es2015-parameters@^6.8.0: 375 | version "6.24.1" 376 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 377 | dependencies: 378 | babel-helper-call-delegate "^6.24.1" 379 | babel-helper-get-function-arity "^6.24.1" 380 | babel-runtime "^6.22.0" 381 | babel-template "^6.24.1" 382 | babel-traverse "^6.24.1" 383 | babel-types "^6.24.1" 384 | 385 | babel-plugin-transform-exponentiation-operator@^6.24.1: 386 | version "6.24.1" 387 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 388 | dependencies: 389 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 390 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 391 | babel-runtime "^6.22.0" 392 | 393 | babel-plugin-transform-export-extensions@^6.22.0: 394 | version "6.22.0" 395 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-export-extensions/-/babel-plugin-transform-export-extensions-6.22.0.tgz#53738b47e75e8218589eea946cbbd39109bbe653" 396 | dependencies: 397 | babel-plugin-syntax-export-extensions "^6.8.0" 398 | babel-runtime "^6.22.0" 399 | 400 | babel-plugin-transform-function-bind@^6.22.0: 401 | version "6.22.0" 402 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-function-bind/-/babel-plugin-transform-function-bind-6.22.0.tgz#c6fb8e96ac296a310b8cf8ea401462407ddf6a97" 403 | dependencies: 404 | babel-plugin-syntax-function-bind "^6.8.0" 405 | babel-runtime "^6.22.0" 406 | 407 | babel-plugin-transform-object-rest-spread@^6.22.0: 408 | version "6.26.0" 409 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06" 410 | dependencies: 411 | babel-plugin-syntax-object-rest-spread "^6.8.0" 412 | babel-runtime "^6.26.0" 413 | 414 | babel-plugin-transform-strict-mode@^6.24.1: 415 | version "6.24.1" 416 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 417 | dependencies: 418 | babel-runtime "^6.22.0" 419 | babel-types "^6.24.1" 420 | 421 | babel-polyfill@^6.26.0: 422 | version "6.26.0" 423 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" 424 | dependencies: 425 | babel-runtime "^6.26.0" 426 | core-js "^2.5.0" 427 | regenerator-runtime "^0.10.5" 428 | 429 | babel-preset-es2015-node6@^0.4.0: 430 | version "0.4.0" 431 | resolved "https://registry.yarnpkg.com/babel-preset-es2015-node6/-/babel-preset-es2015-node6-0.4.0.tgz#f8893f81b6533747924c657348867bd63b4f9dc2" 432 | dependencies: 433 | babel-plugin-transform-es2015-destructuring "^6.6.5" 434 | babel-plugin-transform-es2015-function-name "^6.5.0" 435 | babel-plugin-transform-es2015-modules-commonjs "^6.7.4" 436 | babel-plugin-transform-es2015-parameters "^6.8.0" 437 | 438 | babel-preset-stage-0@^6.16.0: 439 | version "6.24.1" 440 | resolved "https://registry.yarnpkg.com/babel-preset-stage-0/-/babel-preset-stage-0-6.24.1.tgz#5642d15042f91384d7e5af8bc88b1db95b039e6a" 441 | dependencies: 442 | babel-plugin-transform-do-expressions "^6.22.0" 443 | babel-plugin-transform-function-bind "^6.22.0" 444 | babel-preset-stage-1 "^6.24.1" 445 | 446 | babel-preset-stage-1@^6.24.1: 447 | version "6.24.1" 448 | resolved "https://registry.yarnpkg.com/babel-preset-stage-1/-/babel-preset-stage-1-6.24.1.tgz#7692cd7dcd6849907e6ae4a0a85589cfb9e2bfb0" 449 | dependencies: 450 | babel-plugin-transform-class-constructor-call "^6.24.1" 451 | babel-plugin-transform-export-extensions "^6.22.0" 452 | babel-preset-stage-2 "^6.24.1" 453 | 454 | babel-preset-stage-2@^6.24.1: 455 | version "6.24.1" 456 | resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.24.1.tgz#d9e2960fb3d71187f0e64eec62bc07767219bdc1" 457 | dependencies: 458 | babel-plugin-syntax-dynamic-import "^6.18.0" 459 | babel-plugin-transform-class-properties "^6.24.1" 460 | babel-plugin-transform-decorators "^6.24.1" 461 | babel-preset-stage-3 "^6.24.1" 462 | 463 | babel-preset-stage-3@^6.24.1: 464 | version "6.24.1" 465 | resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.24.1.tgz#836ada0a9e7a7fa37cb138fb9326f87934a48395" 466 | dependencies: 467 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 468 | babel-plugin-transform-async-generator-functions "^6.24.1" 469 | babel-plugin-transform-async-to-generator "^6.24.1" 470 | babel-plugin-transform-exponentiation-operator "^6.24.1" 471 | babel-plugin-transform-object-rest-spread "^6.22.0" 472 | 473 | babel-register@^6.23.0, babel-register@^6.26.0: 474 | version "6.26.0" 475 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 476 | dependencies: 477 | babel-core "^6.26.0" 478 | babel-runtime "^6.26.0" 479 | core-js "^2.5.0" 480 | home-or-tmp "^2.0.0" 481 | lodash "^4.17.4" 482 | mkdirp "^0.5.1" 483 | source-map-support "^0.4.15" 484 | 485 | babel-runtime@^6.22.0, babel-runtime@^6.26.0: 486 | version "6.26.0" 487 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 488 | dependencies: 489 | core-js "^2.4.0" 490 | regenerator-runtime "^0.11.0" 491 | 492 | babel-template@^6.24.1, babel-template@^6.26.0: 493 | version "6.26.0" 494 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 495 | dependencies: 496 | babel-runtime "^6.26.0" 497 | babel-traverse "^6.26.0" 498 | babel-types "^6.26.0" 499 | babylon "^6.18.0" 500 | lodash "^4.17.4" 501 | 502 | babel-traverse@^6.24.1, babel-traverse@^6.26.0: 503 | version "6.26.0" 504 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 505 | dependencies: 506 | babel-code-frame "^6.26.0" 507 | babel-messages "^6.23.0" 508 | babel-runtime "^6.26.0" 509 | babel-types "^6.26.0" 510 | babylon "^6.18.0" 511 | debug "^2.6.8" 512 | globals "^9.18.0" 513 | invariant "^2.2.2" 514 | lodash "^4.17.4" 515 | 516 | babel-types@^6.24.1, babel-types@^6.26.0: 517 | version "6.26.0" 518 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 519 | dependencies: 520 | babel-runtime "^6.26.0" 521 | esutils "^2.0.2" 522 | lodash "^4.17.4" 523 | to-fast-properties "^1.0.3" 524 | 525 | babylon@^6.18.0: 526 | version "6.18.0" 527 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 528 | 529 | balanced-match@^1.0.0: 530 | version "1.0.0" 531 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 532 | 533 | binary-extensions@^1.0.0: 534 | version "1.11.0" 535 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 536 | 537 | brace-expansion@^1.1.7: 538 | version "1.1.11" 539 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 540 | dependencies: 541 | balanced-match "^1.0.0" 542 | concat-map "0.0.1" 543 | 544 | braces@^1.8.2: 545 | version "1.8.5" 546 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 547 | dependencies: 548 | expand-range "^1.8.1" 549 | preserve "^0.2.0" 550 | repeat-element "^1.1.2" 551 | 552 | brackets2dots@^1.1.0: 553 | version "1.1.0" 554 | resolved "https://registry.yarnpkg.com/brackets2dots/-/brackets2dots-1.1.0.tgz#3f3d40375fc660ce0fd004fa27d67b34f9469ac3" 555 | 556 | browser-stdout@1.3.0: 557 | version "1.3.0" 558 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" 559 | 560 | chai@^3.5.0: 561 | version "3.5.0" 562 | resolved "https://registry.yarnpkg.com/chai/-/chai-3.5.0.tgz#4d02637b067fe958bdbfdd3a40ec56fef7373247" 563 | dependencies: 564 | assertion-error "^1.0.1" 565 | deep-eql "^0.1.3" 566 | type-detect "^1.0.0" 567 | 568 | chalk@^1.1.3: 569 | version "1.1.3" 570 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 571 | dependencies: 572 | ansi-styles "^2.2.1" 573 | escape-string-regexp "^1.0.2" 574 | has-ansi "^2.0.0" 575 | strip-ansi "^3.0.0" 576 | supports-color "^2.0.0" 577 | 578 | chokidar@^1.6.1: 579 | version "1.7.0" 580 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 581 | dependencies: 582 | anymatch "^1.3.0" 583 | async-each "^1.0.0" 584 | glob-parent "^2.0.0" 585 | inherits "^2.0.1" 586 | is-binary-path "^1.0.0" 587 | is-glob "^2.0.0" 588 | path-is-absolute "^1.0.0" 589 | readdirp "^2.0.0" 590 | optionalDependencies: 591 | fsevents "^1.0.0" 592 | 593 | chownr@^1.0.1: 594 | version "1.0.1" 595 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.0.1.tgz#e2a75042a9551908bebd25b8523d5f9769d79181" 596 | 597 | code-point-at@^1.0.0: 598 | version "1.1.0" 599 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 600 | 601 | commander@2.9.0: 602 | version "2.9.0" 603 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 604 | dependencies: 605 | graceful-readlink ">= 1.0.0" 606 | 607 | commander@^2.11.0: 608 | version "2.15.1" 609 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.15.1.tgz#df46e867d0fc2aec66a34662b406a9ccafff5b0f" 610 | 611 | concat-map@0.0.1: 612 | version "0.0.1" 613 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 614 | 615 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 616 | version "1.1.0" 617 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 618 | 619 | convert-source-map@^1.5.0, convert-source-map@^1.5.1: 620 | version "1.5.1" 621 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 622 | 623 | core-js@^2.4.0, core-js@^2.5.0: 624 | version "2.5.7" 625 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.7.tgz#f972608ff0cead68b841a16a932d0b183791814e" 626 | 627 | core-util-is@~1.0.0: 628 | version "1.0.2" 629 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 630 | 631 | curry2@^1.0.0: 632 | version "1.0.3" 633 | resolved "https://registry.yarnpkg.com/curry2/-/curry2-1.0.3.tgz#38191d55f1060bfea47ca08009385bb878f6612f" 634 | dependencies: 635 | fast-bind "^1.0.0" 636 | 637 | debug@2.6.8: 638 | version "2.6.8" 639 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 640 | dependencies: 641 | ms "2.0.0" 642 | 643 | debug@^2.1.2, debug@^2.5.2, debug@^2.6.8, debug@^2.6.9: 644 | version "2.6.9" 645 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 646 | dependencies: 647 | ms "2.0.0" 648 | 649 | deep-eql@^0.1.3: 650 | version "0.1.3" 651 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-0.1.3.tgz#ef558acab8de25206cd713906d74e56930eb69f2" 652 | dependencies: 653 | type-detect "0.1.1" 654 | 655 | deep-extend@^0.6.0: 656 | version "0.6.0" 657 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 658 | 659 | delegates@^1.0.0: 660 | version "1.0.0" 661 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 662 | 663 | deprecated-decorator@^0.1.6: 664 | version "0.1.6" 665 | resolved "https://registry.yarnpkg.com/deprecated-decorator/-/deprecated-decorator-0.1.6.tgz#00966317b7a12fe92f3cc831f7583af329b86c37" 666 | 667 | detect-indent@^4.0.0: 668 | version "4.0.0" 669 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 670 | dependencies: 671 | repeating "^2.0.0" 672 | 673 | detect-libc@^1.0.2: 674 | version "1.0.3" 675 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 676 | 677 | diff@3.2.0: 678 | version "3.2.0" 679 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 680 | 681 | dotsplit.js@^1.0.3: 682 | version "1.1.0" 683 | resolved "https://registry.yarnpkg.com/dotsplit.js/-/dotsplit.js-1.1.0.tgz#25a239eabe922a91ffa5d2a172d6c9fb82451e02" 684 | 685 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2: 686 | version "1.0.5" 687 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 688 | 689 | esm@^3.0.51: 690 | version "3.0.51" 691 | resolved "https://registry.yarnpkg.com/esm/-/esm-3.0.51.tgz#35c3bcd0237867ab09020728135bfdb91ec79c90" 692 | 693 | esutils@^2.0.2: 694 | version "2.0.2" 695 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 696 | 697 | expand-brackets@^0.1.4: 698 | version "0.1.5" 699 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 700 | dependencies: 701 | is-posix-bracket "^0.1.0" 702 | 703 | expand-range@^1.8.1: 704 | version "1.8.2" 705 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 706 | dependencies: 707 | fill-range "^2.1.0" 708 | 709 | extglob@^0.3.1: 710 | version "0.3.2" 711 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 712 | dependencies: 713 | is-extglob "^1.0.0" 714 | 715 | fast-bind@^1.0.0: 716 | version "1.0.0" 717 | resolved "https://registry.yarnpkg.com/fast-bind/-/fast-bind-1.0.0.tgz#7fa9652cb3325f5cd1e252d6cb4f160de1a76e75" 718 | 719 | fast-json-stable-stringify@^2.0.0: 720 | version "2.0.0" 721 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 722 | 723 | filename-regex@^2.0.0: 724 | version "2.0.1" 725 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 726 | 727 | fill-range@^2.1.0: 728 | version "2.2.4" 729 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565" 730 | dependencies: 731 | is-number "^2.1.0" 732 | isobject "^2.0.0" 733 | randomatic "^3.0.0" 734 | repeat-element "^1.1.2" 735 | repeat-string "^1.5.2" 736 | 737 | for-in@^1.0.1: 738 | version "1.0.2" 739 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 740 | 741 | for-own@^0.1.4: 742 | version "0.1.5" 743 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 744 | dependencies: 745 | for-in "^1.0.1" 746 | 747 | fs-minipass@^1.2.5: 748 | version "1.2.5" 749 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d" 750 | dependencies: 751 | minipass "^2.2.1" 752 | 753 | fs-readdir-recursive@^1.0.0: 754 | version "1.1.0" 755 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" 756 | 757 | fs.realpath@^1.0.0: 758 | version "1.0.0" 759 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 760 | 761 | fsevents@^1.0.0: 762 | version "1.2.4" 763 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.4.tgz#f41dcb1af2582af3692da36fc55cbd8e1041c426" 764 | dependencies: 765 | nan "^2.9.2" 766 | node-pre-gyp "^0.10.0" 767 | 768 | gauge@~2.7.3: 769 | version "2.7.4" 770 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 771 | dependencies: 772 | aproba "^1.0.3" 773 | console-control-strings "^1.0.0" 774 | has-unicode "^2.0.0" 775 | object-assign "^4.1.0" 776 | signal-exit "^3.0.0" 777 | string-width "^1.0.1" 778 | strip-ansi "^3.0.1" 779 | wide-align "^1.1.0" 780 | 781 | glob-base@^0.3.0: 782 | version "0.3.0" 783 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 784 | dependencies: 785 | glob-parent "^2.0.0" 786 | is-glob "^2.0.0" 787 | 788 | glob-parent@^2.0.0: 789 | version "2.0.0" 790 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 791 | dependencies: 792 | is-glob "^2.0.0" 793 | 794 | glob@7.1.1: 795 | version "7.1.1" 796 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 797 | dependencies: 798 | fs.realpath "^1.0.0" 799 | inflight "^1.0.4" 800 | inherits "2" 801 | minimatch "^3.0.2" 802 | once "^1.3.0" 803 | path-is-absolute "^1.0.0" 804 | 805 | glob@^7.0.5, glob@^7.1.2: 806 | version "7.1.2" 807 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 808 | dependencies: 809 | fs.realpath "^1.0.0" 810 | inflight "^1.0.4" 811 | inherits "2" 812 | minimatch "^3.0.4" 813 | once "^1.3.0" 814 | path-is-absolute "^1.0.0" 815 | 816 | globals@^9.18.0: 817 | version "9.18.0" 818 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 819 | 820 | graceful-fs@^4.1.2, graceful-fs@^4.1.4: 821 | version "4.1.11" 822 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 823 | 824 | "graceful-readlink@>= 1.0.0": 825 | version "1.0.1" 826 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 827 | 828 | graphql-query-tree@^0.3.0: 829 | version "0.3.0" 830 | resolved "https://registry.yarnpkg.com/graphql-query-tree/-/graphql-query-tree-0.3.0.tgz#6d2dc06e77ce03774f30d7cc6f8f01f353d25452" 831 | dependencies: 832 | graphql "^0.13.2" 833 | selectn "^1.1.2" 834 | 835 | graphql-tools@4.0.7: 836 | version "4.0.7" 837 | resolved "https://registry.yarnpkg.com/graphql-tools/-/graphql-tools-4.0.7.tgz#743309b96cb657ff45b607ee0a07193cd987e43c" 838 | integrity sha512-rApl8sT8t/W1uQRcwzxMYyUBiCl/XicluApiDkNze5TX/GR0BSTQMjM2UcRGdTmkbsb1Eqq6afkyyeG/zMxZYQ== 839 | dependencies: 840 | apollo-link "^1.2.3" 841 | apollo-utilities "^1.0.1" 842 | deprecated-decorator "^0.1.6" 843 | iterall "^1.1.3" 844 | uuid "^3.1.0" 845 | 846 | graphql@^0.13.2: 847 | version "0.13.2" 848 | resolved "https://registry.yarnpkg.com/graphql/-/graphql-0.13.2.tgz#4c740ae3c222823e7004096f832e7b93b2108270" 849 | dependencies: 850 | iterall "^1.2.1" 851 | 852 | growl@1.9.2: 853 | version "1.9.2" 854 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f" 855 | 856 | has-ansi@^2.0.0: 857 | version "2.0.0" 858 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 859 | dependencies: 860 | ansi-regex "^2.0.0" 861 | 862 | has-flag@^1.0.0: 863 | version "1.0.0" 864 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 865 | 866 | has-unicode@^2.0.0: 867 | version "2.0.1" 868 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 869 | 870 | he@1.1.1: 871 | version "1.1.1" 872 | resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" 873 | 874 | home-or-tmp@^2.0.0: 875 | version "2.0.0" 876 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 877 | dependencies: 878 | os-homedir "^1.0.0" 879 | os-tmpdir "^1.0.1" 880 | 881 | iconv-lite@^0.4.4: 882 | version "0.4.23" 883 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.23.tgz#297871f63be507adcfbfca715d0cd0eed84e9a63" 884 | dependencies: 885 | safer-buffer ">= 2.1.2 < 3" 886 | 887 | ignore-walk@^3.0.1: 888 | version "3.0.1" 889 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" 890 | dependencies: 891 | minimatch "^3.0.4" 892 | 893 | inflight@^1.0.4: 894 | version "1.0.6" 895 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 896 | dependencies: 897 | once "^1.3.0" 898 | wrappy "1" 899 | 900 | inherits@2, inherits@^2.0.1, inherits@~2.0.3: 901 | version "2.0.3" 902 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 903 | 904 | ini@~1.3.0: 905 | version "1.3.5" 906 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 907 | 908 | invariant@^2.2.2: 909 | version "2.2.4" 910 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 911 | dependencies: 912 | loose-envify "^1.0.0" 913 | 914 | is-binary-path@^1.0.0: 915 | version "1.0.1" 916 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 917 | dependencies: 918 | binary-extensions "^1.0.0" 919 | 920 | is-buffer@^1.1.5: 921 | version "1.1.6" 922 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 923 | 924 | is-dotfile@^1.0.0: 925 | version "1.0.3" 926 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 927 | 928 | is-equal-shallow@^0.1.3: 929 | version "0.1.3" 930 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 931 | dependencies: 932 | is-primitive "^2.0.0" 933 | 934 | is-extendable@^0.1.1: 935 | version "0.1.1" 936 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 937 | 938 | is-extglob@^1.0.0: 939 | version "1.0.0" 940 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 941 | 942 | is-finite@^1.0.0: 943 | version "1.0.2" 944 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 945 | dependencies: 946 | number-is-nan "^1.0.0" 947 | 948 | is-fullwidth-code-point@^1.0.0: 949 | version "1.0.0" 950 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 951 | dependencies: 952 | number-is-nan "^1.0.0" 953 | 954 | is-fullwidth-code-point@^2.0.0: 955 | version "2.0.0" 956 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 957 | 958 | is-glob@^2.0.0, is-glob@^2.0.1: 959 | version "2.0.1" 960 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 961 | dependencies: 962 | is-extglob "^1.0.0" 963 | 964 | is-number@^2.1.0: 965 | version "2.1.0" 966 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 967 | dependencies: 968 | kind-of "^3.0.2" 969 | 970 | is-number@^4.0.0: 971 | version "4.0.0" 972 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" 973 | 974 | is-posix-bracket@^0.1.0: 975 | version "0.1.1" 976 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 977 | 978 | is-primitive@^2.0.0: 979 | version "2.0.0" 980 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 981 | 982 | isarray@1.0.0, isarray@~1.0.0: 983 | version "1.0.0" 984 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 985 | 986 | isobject@^2.0.0: 987 | version "2.1.0" 988 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 989 | dependencies: 990 | isarray "1.0.0" 991 | 992 | iterall@^1.1.3, iterall@^1.2.1: 993 | version "1.2.2" 994 | resolved "https://registry.yarnpkg.com/iterall/-/iterall-1.2.2.tgz#92d70deb8028e0c39ff3164fdbf4d8b088130cd7" 995 | 996 | js-tokens@^3.0.0, js-tokens@^3.0.2: 997 | version "3.0.2" 998 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 999 | 1000 | jsesc@^1.3.0: 1001 | version "1.3.0" 1002 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1003 | 1004 | json3@3.3.2: 1005 | version "3.3.2" 1006 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 1007 | 1008 | json5@^0.5.1: 1009 | version "0.5.1" 1010 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1011 | 1012 | kind-of@^3.0.2: 1013 | version "3.2.2" 1014 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1015 | dependencies: 1016 | is-buffer "^1.1.5" 1017 | 1018 | kind-of@^6.0.0: 1019 | version "6.0.2" 1020 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 1021 | 1022 | koa-compose@^3.2.1: 1023 | version "3.2.1" 1024 | resolved "https://registry.yarnpkg.com/koa-compose/-/koa-compose-3.2.1.tgz#a85ccb40b7d986d8e5a345b3a1ace8eabcf54de7" 1025 | dependencies: 1026 | any-promise "^1.1.0" 1027 | 1028 | lodash._baseassign@^3.0.0: 1029 | version "3.2.0" 1030 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 1031 | dependencies: 1032 | lodash._basecopy "^3.0.0" 1033 | lodash.keys "^3.0.0" 1034 | 1035 | lodash._basecopy@^3.0.0: 1036 | version "3.0.1" 1037 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 1038 | 1039 | lodash._basecreate@^3.0.0: 1040 | version "3.0.3" 1041 | resolved "https://registry.yarnpkg.com/lodash._basecreate/-/lodash._basecreate-3.0.3.tgz#1bc661614daa7fc311b7d03bf16806a0213cf821" 1042 | 1043 | lodash._getnative@^3.0.0: 1044 | version "3.9.1" 1045 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 1046 | 1047 | lodash._isiterateecall@^3.0.0: 1048 | version "3.0.9" 1049 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 1050 | 1051 | lodash.create@3.1.1: 1052 | version "3.1.1" 1053 | resolved "https://registry.yarnpkg.com/lodash.create/-/lodash.create-3.1.1.tgz#d7f2849f0dbda7e04682bb8cd72ab022461debe7" 1054 | dependencies: 1055 | lodash._baseassign "^3.0.0" 1056 | lodash._basecreate "^3.0.0" 1057 | lodash._isiterateecall "^3.0.0" 1058 | 1059 | lodash.isarguments@^3.0.0: 1060 | version "3.1.0" 1061 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 1062 | 1063 | lodash.isarray@^3.0.0: 1064 | version "3.0.4" 1065 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 1066 | 1067 | lodash.keys@^3.0.0: 1068 | version "3.1.2" 1069 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 1070 | dependencies: 1071 | lodash._getnative "^3.0.0" 1072 | lodash.isarguments "^3.0.0" 1073 | lodash.isarray "^3.0.0" 1074 | 1075 | lodash@^4.17.4: 1076 | version "4.17.10" 1077 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7" 1078 | 1079 | loose-envify@^1.0.0: 1080 | version "1.3.1" 1081 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1082 | dependencies: 1083 | js-tokens "^3.0.0" 1084 | 1085 | math-random@^1.0.1: 1086 | version "1.0.1" 1087 | resolved "https://registry.yarnpkg.com/math-random/-/math-random-1.0.1.tgz#8b3aac588b8a66e4975e3cdea67f7bb329601fac" 1088 | 1089 | micromatch@^2.1.5: 1090 | version "2.3.11" 1091 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1092 | dependencies: 1093 | arr-diff "^2.0.0" 1094 | array-unique "^0.2.1" 1095 | braces "^1.8.2" 1096 | expand-brackets "^0.1.4" 1097 | extglob "^0.3.1" 1098 | filename-regex "^2.0.0" 1099 | is-extglob "^1.0.0" 1100 | is-glob "^2.0.1" 1101 | kind-of "^3.0.2" 1102 | normalize-path "^2.0.1" 1103 | object.omit "^2.0.0" 1104 | parse-glob "^3.0.4" 1105 | regex-cache "^0.4.2" 1106 | 1107 | minimatch@^3.0.2, minimatch@^3.0.4: 1108 | version "3.0.4" 1109 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1110 | dependencies: 1111 | brace-expansion "^1.1.7" 1112 | 1113 | minimist@0.0.8: 1114 | version "0.0.8" 1115 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1116 | 1117 | minimist@^1.2.0: 1118 | version "1.2.0" 1119 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1120 | 1121 | minipass@^2.2.1, minipass@^2.3.3: 1122 | version "2.3.3" 1123 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.3.tgz#a7dcc8b7b833f5d368759cce544dccb55f50f233" 1124 | dependencies: 1125 | safe-buffer "^5.1.2" 1126 | yallist "^3.0.0" 1127 | 1128 | minizlib@^1.1.0: 1129 | version "1.1.0" 1130 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.1.0.tgz#11e13658ce46bc3a70a267aac58359d1e0c29ceb" 1131 | dependencies: 1132 | minipass "^2.2.1" 1133 | 1134 | mkdirp@0.5.1, mkdirp@^0.5.0, mkdirp@^0.5.1: 1135 | version "0.5.1" 1136 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1137 | dependencies: 1138 | minimist "0.0.8" 1139 | 1140 | mocha@^3.2.0: 1141 | version "3.5.3" 1142 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-3.5.3.tgz#1e0480fe36d2da5858d1eb6acc38418b26eaa20d" 1143 | dependencies: 1144 | browser-stdout "1.3.0" 1145 | commander "2.9.0" 1146 | debug "2.6.8" 1147 | diff "3.2.0" 1148 | escape-string-regexp "1.0.5" 1149 | glob "7.1.1" 1150 | growl "1.9.2" 1151 | he "1.1.1" 1152 | json3 "3.3.2" 1153 | lodash.create "3.1.1" 1154 | mkdirp "0.5.1" 1155 | supports-color "3.1.2" 1156 | 1157 | ms@2.0.0: 1158 | version "2.0.0" 1159 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1160 | 1161 | nan@^2.9.2: 1162 | version "2.10.0" 1163 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.10.0.tgz#96d0cd610ebd58d4b4de9cc0c6828cda99c7548f" 1164 | 1165 | needle@^2.2.0: 1166 | version "2.2.1" 1167 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.1.tgz#b5e325bd3aae8c2678902fa296f729455d1d3a7d" 1168 | dependencies: 1169 | debug "^2.1.2" 1170 | iconv-lite "^0.4.4" 1171 | sax "^1.2.4" 1172 | 1173 | node-pre-gyp@^0.10.0: 1174 | version "0.10.0" 1175 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.10.0.tgz#6e4ef5bb5c5203c6552448828c852c40111aac46" 1176 | dependencies: 1177 | detect-libc "^1.0.2" 1178 | mkdirp "^0.5.1" 1179 | needle "^2.2.0" 1180 | nopt "^4.0.1" 1181 | npm-packlist "^1.1.6" 1182 | npmlog "^4.0.2" 1183 | rc "^1.1.7" 1184 | rimraf "^2.6.1" 1185 | semver "^5.3.0" 1186 | tar "^4" 1187 | 1188 | nopt@^4.0.1: 1189 | version "4.0.1" 1190 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1191 | dependencies: 1192 | abbrev "1" 1193 | osenv "^0.1.4" 1194 | 1195 | normalize-path@^2.0.0, normalize-path@^2.0.1: 1196 | version "2.1.1" 1197 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1198 | dependencies: 1199 | remove-trailing-separator "^1.0.1" 1200 | 1201 | npm-bundled@^1.0.1: 1202 | version "1.0.3" 1203 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.3.tgz#7e71703d973af3370a9591bafe3a63aca0be2308" 1204 | 1205 | npm-packlist@^1.1.6: 1206 | version "1.1.10" 1207 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.1.10.tgz#1039db9e985727e464df066f4cf0ab6ef85c398a" 1208 | dependencies: 1209 | ignore-walk "^3.0.1" 1210 | npm-bundled "^1.0.1" 1211 | 1212 | npmlog@^4.0.2: 1213 | version "4.1.2" 1214 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1215 | dependencies: 1216 | are-we-there-yet "~1.1.2" 1217 | console-control-strings "~1.1.0" 1218 | gauge "~2.7.3" 1219 | set-blocking "~2.0.0" 1220 | 1221 | number-is-nan@^1.0.0: 1222 | version "1.0.1" 1223 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1224 | 1225 | object-assign@^4.1.0: 1226 | version "4.1.1" 1227 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1228 | 1229 | object.omit@^2.0.0: 1230 | version "2.0.1" 1231 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1232 | dependencies: 1233 | for-own "^0.1.4" 1234 | is-extendable "^0.1.1" 1235 | 1236 | once@^1.3.0: 1237 | version "1.4.0" 1238 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1239 | dependencies: 1240 | wrappy "1" 1241 | 1242 | os-homedir@^1.0.0: 1243 | version "1.0.2" 1244 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1245 | 1246 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 1247 | version "1.0.2" 1248 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1249 | 1250 | osenv@^0.1.4: 1251 | version "0.1.5" 1252 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 1253 | dependencies: 1254 | os-homedir "^1.0.0" 1255 | os-tmpdir "^1.0.0" 1256 | 1257 | output-file-sync@^1.1.2: 1258 | version "1.1.2" 1259 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 1260 | dependencies: 1261 | graceful-fs "^4.1.4" 1262 | mkdirp "^0.5.1" 1263 | object-assign "^4.1.0" 1264 | 1265 | parse-glob@^3.0.4: 1266 | version "3.0.4" 1267 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1268 | dependencies: 1269 | glob-base "^0.3.0" 1270 | is-dotfile "^1.0.0" 1271 | is-extglob "^1.0.0" 1272 | is-glob "^2.0.0" 1273 | 1274 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 1275 | version "1.0.1" 1276 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1277 | 1278 | preserve@^0.2.0: 1279 | version "0.2.0" 1280 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1281 | 1282 | private@^0.1.8: 1283 | version "0.1.8" 1284 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 1285 | 1286 | process-nextick-args@~2.0.0: 1287 | version "2.0.0" 1288 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 1289 | 1290 | randomatic@^3.0.0: 1291 | version "3.0.0" 1292 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-3.0.0.tgz#d35490030eb4f7578de292ce6dfb04a91a128923" 1293 | dependencies: 1294 | is-number "^4.0.0" 1295 | kind-of "^6.0.0" 1296 | math-random "^1.0.1" 1297 | 1298 | rc@^1.1.7: 1299 | version "1.2.8" 1300 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 1301 | dependencies: 1302 | deep-extend "^0.6.0" 1303 | ini "~1.3.0" 1304 | minimist "^1.2.0" 1305 | strip-json-comments "~2.0.1" 1306 | 1307 | readable-stream@^2.0.2, readable-stream@^2.0.6: 1308 | version "2.3.6" 1309 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 1310 | dependencies: 1311 | core-util-is "~1.0.0" 1312 | inherits "~2.0.3" 1313 | isarray "~1.0.0" 1314 | process-nextick-args "~2.0.0" 1315 | safe-buffer "~5.1.1" 1316 | string_decoder "~1.1.1" 1317 | util-deprecate "~1.0.1" 1318 | 1319 | readdirp@^2.0.0: 1320 | version "2.1.0" 1321 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 1322 | dependencies: 1323 | graceful-fs "^4.1.2" 1324 | minimatch "^3.0.2" 1325 | readable-stream "^2.0.2" 1326 | set-immediate-shim "^1.0.1" 1327 | 1328 | regenerator-runtime@^0.10.5: 1329 | version "0.10.5" 1330 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 1331 | 1332 | regenerator-runtime@^0.11.0: 1333 | version "0.11.1" 1334 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 1335 | 1336 | regex-cache@^0.4.2: 1337 | version "0.4.4" 1338 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 1339 | dependencies: 1340 | is-equal-shallow "^0.1.3" 1341 | 1342 | remove-trailing-separator@^1.0.1: 1343 | version "1.1.0" 1344 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 1345 | 1346 | repeat-element@^1.1.2: 1347 | version "1.1.2" 1348 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1349 | 1350 | repeat-string@^1.5.2: 1351 | version "1.6.1" 1352 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1353 | 1354 | repeating@^2.0.0: 1355 | version "2.0.1" 1356 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1357 | dependencies: 1358 | is-finite "^1.0.0" 1359 | 1360 | rimraf@^2.6.1: 1361 | version "2.6.2" 1362 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 1363 | dependencies: 1364 | glob "^7.0.5" 1365 | 1366 | safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1367 | version "5.1.2" 1368 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 1369 | 1370 | "safer-buffer@>= 2.1.2 < 3": 1371 | version "2.1.2" 1372 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 1373 | 1374 | sax@^1.2.4: 1375 | version "1.2.4" 1376 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 1377 | 1378 | selectn@^1.1.2: 1379 | version "1.1.2" 1380 | resolved "https://registry.yarnpkg.com/selectn/-/selectn-1.1.2.tgz#fc8acd91df3f45acb01891c6773ae529851d6b17" 1381 | dependencies: 1382 | brackets2dots "^1.1.0" 1383 | curry2 "^1.0.0" 1384 | debug "^2.5.2" 1385 | dotsplit.js "^1.0.3" 1386 | 1387 | semver@^5.3.0: 1388 | version "5.5.0" 1389 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 1390 | 1391 | set-blocking@~2.0.0: 1392 | version "2.0.0" 1393 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1394 | 1395 | set-immediate-shim@^1.0.1: 1396 | version "1.0.1" 1397 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 1398 | 1399 | signal-exit@^3.0.0: 1400 | version "3.0.2" 1401 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1402 | 1403 | slash@^1.0.0: 1404 | version "1.0.0" 1405 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 1406 | 1407 | source-map-support@^0.4.15: 1408 | version "0.4.18" 1409 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 1410 | dependencies: 1411 | source-map "^0.5.6" 1412 | 1413 | source-map@^0.5.6, source-map@^0.5.7: 1414 | version "0.5.7" 1415 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 1416 | 1417 | string-width@^1.0.1: 1418 | version "1.0.2" 1419 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1420 | dependencies: 1421 | code-point-at "^1.0.0" 1422 | is-fullwidth-code-point "^1.0.0" 1423 | strip-ansi "^3.0.0" 1424 | 1425 | "string-width@^1.0.2 || 2": 1426 | version "2.1.1" 1427 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 1428 | dependencies: 1429 | is-fullwidth-code-point "^2.0.0" 1430 | strip-ansi "^4.0.0" 1431 | 1432 | string_decoder@~1.1.1: 1433 | version "1.1.1" 1434 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 1435 | dependencies: 1436 | safe-buffer "~5.1.0" 1437 | 1438 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1439 | version "3.0.1" 1440 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1441 | dependencies: 1442 | ansi-regex "^2.0.0" 1443 | 1444 | strip-ansi@^4.0.0: 1445 | version "4.0.0" 1446 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 1447 | dependencies: 1448 | ansi-regex "^3.0.0" 1449 | 1450 | strip-json-comments@~2.0.1: 1451 | version "2.0.1" 1452 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1453 | 1454 | supports-color@3.1.2: 1455 | version "3.1.2" 1456 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" 1457 | dependencies: 1458 | has-flag "^1.0.0" 1459 | 1460 | supports-color@^2.0.0: 1461 | version "2.0.0" 1462 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1463 | 1464 | tar@^4: 1465 | version "4.4.4" 1466 | resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.4.tgz#ec8409fae9f665a4355cc3b4087d0820232bb8cd" 1467 | dependencies: 1468 | chownr "^1.0.1" 1469 | fs-minipass "^1.2.5" 1470 | minipass "^2.3.3" 1471 | minizlib "^1.1.0" 1472 | mkdirp "^0.5.0" 1473 | safe-buffer "^5.1.2" 1474 | yallist "^3.0.2" 1475 | 1476 | to-fast-properties@^1.0.3: 1477 | version "1.0.3" 1478 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 1479 | 1480 | trim-right@^1.0.1: 1481 | version "1.0.1" 1482 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 1483 | 1484 | ts-invariant@^0.4.0: 1485 | version "0.4.4" 1486 | resolved "https://registry.yarnpkg.com/ts-invariant/-/ts-invariant-0.4.4.tgz#97a523518688f93aafad01b0e80eb803eb2abd86" 1487 | integrity sha512-uEtWkFM/sdZvRNNDL3Ehu4WVpwaulhwQszV8mrtcdeE8nN00BV9mAmQ88RkrBhFgl9gMgvjJLAQcZbnPXI9mlA== 1488 | dependencies: 1489 | tslib "^1.9.3" 1490 | 1491 | tslib@^1.10.0, tslib@^1.9.3: 1492 | version "1.11.1" 1493 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.11.1.tgz#eb15d128827fbee2841549e171f45ed338ac7e35" 1494 | integrity sha512-aZW88SY8kQbU7gpV19lN24LtXh/yD4ZZg6qieAJDDg+YBsJcSmLGK9QpnUjAKVG/xefmvJGd1WUmfpT/g6AJGA== 1495 | 1496 | type-detect@0.1.1: 1497 | version "0.1.1" 1498 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-0.1.1.tgz#0ba5ec2a885640e470ea4e8505971900dac58822" 1499 | 1500 | type-detect@^1.0.0: 1501 | version "1.0.0" 1502 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-1.0.0.tgz#762217cc06db258ec48908a1298e8b95121e8ea2" 1503 | 1504 | user-home@^1.1.1: 1505 | version "1.1.1" 1506 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 1507 | 1508 | util-deprecate@~1.0.1: 1509 | version "1.0.2" 1510 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1511 | 1512 | uuid@^3.1.0: 1513 | version "3.2.1" 1514 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14" 1515 | 1516 | v8flags@^2.1.1: 1517 | version "2.1.1" 1518 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 1519 | dependencies: 1520 | user-home "^1.1.1" 1521 | 1522 | wide-align@^1.1.0: 1523 | version "1.1.3" 1524 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 1525 | dependencies: 1526 | string-width "^1.0.2 || 2" 1527 | 1528 | wrappy@1: 1529 | version "1.0.2" 1530 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1531 | 1532 | yallist@^3.0.0, yallist@^3.0.2: 1533 | version "3.0.2" 1534 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.2.tgz#8452b4bb7e83c7c188d8041c1a837c773d6d8bb9" 1535 | 1536 | zen-observable-ts@^0.8.21: 1537 | version "0.8.21" 1538 | resolved "https://registry.yarnpkg.com/zen-observable-ts/-/zen-observable-ts-0.8.21.tgz#85d0031fbbde1eba3cd07d3ba90da241215f421d" 1539 | integrity sha512-Yj3yXweRc8LdRMrCC8nIc4kkjWecPAUVh0TI0OUrWXx6aX790vLcDlWca6I4vsyCGH3LpWxq0dJRcMOFoVqmeg== 1540 | dependencies: 1541 | tslib "^1.9.3" 1542 | zen-observable "^0.8.0" 1543 | 1544 | zen-observable@^0.8.0: 1545 | version "0.8.8" 1546 | resolved "https://registry.yarnpkg.com/zen-observable/-/zen-observable-0.8.8.tgz#1ea93995bf098754a58215a1e0a7309e5749ec42" 1547 | --------------------------------------------------------------------------------