├── .babelrc ├── .eslintrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── package.json ├── src └── index.js ├── tests ├── fieldMatch.test.js ├── findMatchingPaths.test.js ├── integration.test.js ├── invalidateFields.test.js └── matchFinder.test.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "stage-0"] 3 | } 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | extends: [ "taller" ], 3 | globals: { 4 | jest: true 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | lib 3 | temp 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | temp 3 | tests 4 | .babelrc 5 | .eslintrc 6 | .gitignore 7 | .travis.yml 8 | yarn.lock 9 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "stable" 4 | - "7" 5 | - "6" 6 | - "5" 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2016 Lucas Constantino Silva 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 | # Apollo Cache Invalidation 2 | 3 | A library to simplify cache invalidation for [Apollo clients](https://github.com/apollographql/apollo-client). 4 | 5 | ![Build status](https://travis-ci.org/lucasconstantino/apollo-cache-invalidation.svg?branch=master) 6 | [![sponsored by Taller](https://raw.githubusercontent.com/TallerWebSolutions/tallerwebsolutions.github.io/master/sponsored-by-taller.png)](https://taller.net.br/en/) 7 | 8 | ## Installation 9 | 10 | ``` 11 | yarn add apollo-cache-invalidation 12 | ``` 13 | 14 | > Or `npm install --save apollo-cache-invalidation`, if you are still in the old days. 15 | 16 | ## Motivation 17 | 18 | Cache control - and most of invalidation - is still a [discussing issue](https://github.com/apollographql/apollo-client/search?utf8=%E2%9C%93&q=cache+invalidation&type=Issues) for the Apollo Client team and the community involved. While participating in [one of those issues](https://github.com/apollographql/apollo-client/issues/621#issuecomment-281809084), I've proposed a way to do field-based cache invalidation. This projects aims to fulfil this need, while something like this isn't implemented in core. 19 | 20 | ## How does it work 21 | 22 | This project exposes *invalidateFields*: a generator for a mutation [`update function`](https://www.apollographql.com/docs/react/advanced/caching.html#after-mutations) implementation specialized in invalidating cache based on field paths. 23 | 24 | In some cases after a mutation you want to invalidate cache on other queries that might have become outdated, but you can't really update their results from the data provided by the mutation. The *refetchQueries* is often the tool of choice, but it allows no deep field invalidation, meaning you'll have to invalidate the exact and very specific performed queries. *invalidateFields* is an alternative. 25 | 26 | ## Usage 27 | 28 | ```js 29 | import { invalidateFields, ROOT } from 'apollo-cache-invalidation' 30 | import gql from 'graphql-tag' 31 | 32 | import { client } from './client' // Apollo Client instance. 33 | 34 | const mutation = gql` 35 | mutation MakeUserHappy($user: ID!) { 36 | makeUserHappy(user: $user) { 37 | id 38 | } 39 | } 40 | ` 41 | 42 | // Invalidate happyPeople field on the Root Query. Force it to run again. 43 | const update = invalidateFields((proxy, result) => [ 44 | [ROOT, 'happyPeople'] 45 | ]) 46 | 47 | client.mutate({ mutation, update, variables: { user: 1 } }) 48 | ``` 49 | 50 | The function provided to *invalidateFields* will receive a *[DataProxy](http://dev.apollodata.com/core/apollo-client-api.html#DataProxy)* instance and the result for the mutation as arguments. It must then return an array of field paths to invalidate. Each field path consist of an array of keys. Each key can be one of: 51 | 52 | - **String:** the key to invalidate; 53 | - **RegExp:** regex to match keys to invalidate; 54 | - **Function:** custom matching function to match keys to invalidate. 55 | 56 | Each path will be compared individually to the whole cached data, invalidating any matched fields (possibly multiple) along the way. 57 | 58 | The first key in a field path will test against either an object id (as resolved by the [`dataIdFromObject`](http://dev.apollodata.com/core/apollo-client-api.html#apollo-client) Apollo client config) or the *ROOT_QUERY* special key. In that case, you can provide the string `'ROOT_QUERY'`, or better, use the exported `ROOT` constant, as shown above. 59 | 60 | ### Regex matching sample 61 | 62 | Imagine you wan't to invalidate field *happy* for every user after a given mutation. Having a `dataIdFromObject` as such: 63 | 64 | ```js 65 | // Concatenate "__typename" and "id" field values to find identification. 66 | // Do not uniquely identify resource if one of the fields is not provided 67 | // (will use queried field name and variables, by default). 68 | const dataIdFromObject = ({ __typename, id }) => { 69 | if (__typename && id) return __typename + id 70 | return null 71 | } 72 | ``` 73 | 74 | you can invalidate a given field on all User type cached object with the following: 75 | 76 | ```js 77 | const update = invalidateFields(() => [[/^User[0-9]+$/, 'happy']]) 78 | 79 | client.mutate({ mutation, update }) 80 | ``` 81 | 82 | ### Function matching 83 | 84 | Similar to the Regex matching, you can do any customized field matching as so: 85 | 86 | ```js 87 | const randomKeyMatch = key => Math.random() >= 0.5 88 | 89 | const update = invalidateFields(() => [ 90 | [randomKeyMatch, 'happy'] 91 | ]) 92 | 93 | client.mutate({ mutation, update }) 94 | ``` 95 | 96 | ## This package should be temporary 97 | 98 | I believe something similar to what is accomplished by this package should be soon added to the [Apollo Client](https://github.com/apollographql/apollo-client) core. If someday that happens, this package will either be deprecated or hold other experimental functionality on the subject of caching and invalidation. 99 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "apollo-cache-invalidation", 3 | "version": "0.0.3", 4 | "description": "Experimental caching tools for Apollo.", 5 | "main": "lib/index.js", 6 | "directories": { 7 | "test": "test" 8 | }, 9 | "scripts": { 10 | "clean": "rm -Rf lib", 11 | "build": "npm run clean && babel src -d lib", 12 | "lint": "eslint src tests", 13 | "test": "jest", 14 | "prepush": "npm run lint && npm run test", 15 | "prepublish": "npm run lint && npm run test && npm run build" 16 | }, 17 | "keywords": [ 18 | "apollo", 19 | "graphql", 20 | "cache", 21 | "apollo-client" 22 | ], 23 | "author": "Lucas Constantino Silva ", 24 | "license": "MIT", 25 | "devDependencies": { 26 | "apollo-cache-inmemory": "^1.2.10", 27 | "apollo-client": "^2.4.2", 28 | "babel-cli": "^6.18.0", 29 | "babel-core": "^6.18.2", 30 | "babel-preset-taller": "^0.1.1", 31 | "babel-register": "^6.18.0", 32 | "eslint": "^3.10.2", 33 | "eslint-config-taller": "^1.0.4", 34 | "graphql": "^14.0.2", 35 | "graphql-tag": "^2.9.2", 36 | "husky": "^0.13.2", 37 | "jest": "^19.0.2" 38 | }, 39 | "repository": { 40 | "type": "git", 41 | "url": "git+https://github.com/lucasconstantino/apollo-cache-invalidation.git" 42 | }, 43 | "bugs": { 44 | "url": "https://github.com/lucasconstantino/apollo-cache-invalidation/issues" 45 | }, 46 | "homepage": "https://github.com/lucasconstantino/apollo-cache-invalidation#readme", 47 | "dependencies": { 48 | "object-path": "^0.11.4", 49 | "traverse": "^0.6.6" 50 | }, 51 | "jest": { 52 | "moduleNameMapper": { 53 | "apollo-cache-invalidation": "/src" 54 | } 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import traverse from 'traverse' 2 | import { del } from 'object-path' 3 | 4 | export const ROOT = 'ROOT_QUERY' 5 | 6 | /** 7 | * Test a field name match against a given key. 8 | * 9 | * @param {String|RegExp|Function} key The key to look for. 10 | * @param {String} name The name to compare the key against. 11 | * @return {Boolean} key/name matches. 12 | */ 13 | export const fieldMatch = (key, name, context = {}) => { 14 | if (typeof key === 'string') return key === name 15 | if (key instanceof RegExp) return !!name.match(key) 16 | if (key instanceof Function) return key(name, context) 17 | return false 18 | } 19 | 20 | /** 21 | * Checks if a given traversing node is a reference. 22 | * 23 | * @param {Object} node Traversing node. 24 | * @return {Boolean} wheter or not the node is a reference. 25 | */ 26 | const isReference = (node = {}) => Object.keys(node).every( 27 | key => ['type', 'id', 'generated'].includes(key) 28 | ) && Object.keys(node).length > 0 29 | 30 | /** 31 | * Find matching paths on a given data object and add new paths 32 | * to search queue when references are found. 33 | * 34 | * @param {Object} data The data object (i.g. apollo cache store). 35 | * @param {Array[String]]} path Key path array. 36 | * @param {Function} addPath Method to add paths to queue (used on references). 37 | * @return {Function} reducer. 38 | */ 39 | export const findMatchingPaths = (data, path, addPath) => { 40 | function findMatches (matches) { 41 | if (this.isRoot) return matches 42 | if (!fieldMatch(path[this.level - 1], this.key, this)) return (this.block(), matches) 43 | 44 | // Add reference path. 45 | if (isReference(this.node)) { 46 | addPath([this.node.id].concat(path.slice(this.path.length))) 47 | } 48 | 49 | // Add array of reference paths. 50 | if (Array.isArray(this.node) && isReference(this.node[0])) { 51 | this.node.forEach(({ id }) => addPath([id].concat(path.slice(this.path.length)))) 52 | } 53 | 54 | // Matched and last. 55 | if (path.length === this.path.length) matches.push(this.path) 56 | 57 | return matches 58 | } 59 | 60 | return traverse(data).reduce(findMatches, []) 61 | } 62 | 63 | /** 64 | * Given an array of paths, find matching field paths. 65 | * 66 | * @param {Object} data The data object (i.g. apollo cache store). 67 | * @param {Array[Array[String]]} paths Array of paths of keys. 68 | * @return {Array} matching field paths. 69 | */ 70 | export const matchFinder = (data, paths) => { 71 | let i = 0 72 | let result = [] 73 | 74 | const addPath = path => paths.push(path) 75 | 76 | while (paths[i]) { 77 | result = result.concat(findMatchingPaths(data, paths[i], addPath)) 78 | i++ 79 | } 80 | 81 | return result 82 | } 83 | 84 | /** 85 | * Apollo cache invalidator based on paths. 86 | * 87 | * @param {Function} generator A function which will be executed with the proxy 88 | * and the query result as as arguments and must return 89 | * an array of invalidating field paths. 90 | * @return {Function} update Update function such as expected by Apollo option. 91 | */ 92 | export const invalidateFields = generator => (proxy, result) => { 93 | // This relies on a couple of implementation details of apollo-cache-inmemory, 94 | // namely that `proxy` will actually be the cache itself and its `data` property 95 | // will be an instance of the internal class `ObjectCache`. 96 | // These are not guaranteed by the public API and so invalidateFields could break without 97 | // warning 98 | const objectCacheData = proxy.data && proxy.data.data 99 | if (!objectCacheData) { 100 | throw new Error('`invalidateFields` is only known to work with apollo-cache-inmemory and the default `storeFactory`.') 101 | } 102 | matchFinder(objectCacheData, generator(proxy, result) || []) 103 | .forEach(path => path.length === 1 && path[0] === ROOT 104 | ? Object.keys(objectCacheData[ROOT]).forEach(key => del(objectCacheData, [ROOT, key])) 105 | : del(objectCacheData, path) 106 | ) 107 | } 108 | -------------------------------------------------------------------------------- /tests/fieldMatch.test.js: -------------------------------------------------------------------------------- 1 | import { fieldMatch } from 'apollo-cache-invalidation' 2 | 3 | describe('[method] fieldMatch', () => { 4 | it('should match against string keys', () => { 5 | expect(fieldMatch('id', 'id')).toBe(true) 6 | expect(fieldMatch('id', 'wrong-id')).toBe(false) 7 | }) 8 | 9 | it('should match against regex keys', () => { 10 | // Simple forced match. 11 | expect(fieldMatch(/^id$/, 'id')).toBe(true) 12 | expect(fieldMatch(/^id$/, 'wrong-id')).toBe(false) 13 | 14 | // Loose matching. 15 | expect(fieldMatch(/id/, 'loose-id')).toBe(true) 16 | expect(fieldMatch(/id/, 'id-loose')).toBe(true) 17 | }) 18 | 19 | it('should match against function keys', () => { 20 | const key = value => ['id1', 'id2'].includes(value) 21 | 22 | expect(fieldMatch(key, 'id1')).toBe(true) 23 | expect(fieldMatch(key, 'id2')).toBe(true) 24 | expect(fieldMatch(key, 'wrong-id')).toBe(false) 25 | }) 26 | }) 27 | -------------------------------------------------------------------------------- /tests/findMatchingPaths.test.js: -------------------------------------------------------------------------------- 1 | import { findMatchingPaths } from 'apollo-cache-invalidation' 2 | 3 | describe('[method] findMatchingPaths', () => { 4 | const cached = { 5 | 'ROOT_QUERY': { 6 | 'refField1': { type: 'id', id: 'id1', generated: false }, 7 | 'refField2': { type: 'id', id: 'id2', generated: false }, 8 | 'multiRefField1': [ 9 | { type: 'id', id: 'id1', generated: false }, 10 | { type: 'id', id: 'id2', generated: false }, 11 | ] 12 | }, 13 | 'id1': { 'f1': 'id1 field one value', 'f2': 'id1 field two value' }, 14 | 'id2': { 'f1': 'id2 field one value', 'f2': 'id2 field two value' }, 15 | 'id3': { 'f1': 'id3 field one value', 'f2': 'id3 field two value' }, 16 | } 17 | 18 | const addPath = jest.fn() 19 | const matcher = path => findMatchingPaths(cached, path, addPath) 20 | 21 | beforeEach(() => addPath.mockReset()) 22 | 23 | it('should match root level keys', () => { 24 | expect(matcher(['id1'])).toContainEqual(['id1']) 25 | expect(matcher(['ROOT_QUERY'])).toContainEqual(['ROOT_QUERY']) 26 | expect(matcher(['wrong-id']).length).toBe(0) 27 | }) 28 | 29 | it('should match second level keys', () => { 30 | expect(matcher(['ROOT_QUERY', 'refField1'])).toContainEqual(['ROOT_QUERY', 'refField1']) 31 | expect(matcher(['ROOT_QUERY', 'wrong-field']).length).toBe(0) 32 | }) 33 | 34 | it('should add paths on third level keys', () => { 35 | matcher(['ROOT_QUERY', 'refField2', 'f1']) 36 | expect(addPath).toHaveBeenCalledWith(['id2', 'f1']) 37 | }) 38 | 39 | it('should add paths on third level array of keys', () => { 40 | matcher(['ROOT_QUERY', 'multiRefField1', 'f1']) 41 | expect(addPath).toHaveBeenCalledWith(['id1', 'f1']) 42 | expect(addPath).toHaveBeenCalledWith(['id2', 'f1']) 43 | }) 44 | }) 45 | -------------------------------------------------------------------------------- /tests/integration.test.js: -------------------------------------------------------------------------------- 1 | import ApolloClient from 'apollo-client' 2 | import { ApolloLink, Observable } from 'apollo-link' 3 | import { InMemoryCache } from 'apollo-cache-inmemory' 4 | import gql from 'graphql-tag' 5 | 6 | import { invalidateFields } from 'apollo-cache-invalidation' 7 | 8 | const dataIdFromObject = ({ __typename, id }) => 9 | !id || !__typename ? null : __typename + id 10 | 11 | const mockLink = resolver => new ApolloLink((operation, forward) => { 12 | const resultPromise = resolver(operation) 13 | return new Observable(observer => resultPromise.then(result => { 14 | observer.next(result) 15 | observer.complete() 16 | return result 17 | }, err => { 18 | observer.error(err) 19 | })) 20 | }) 21 | 22 | const mockedClient = query => new ApolloClient({ 23 | ssrMode: true, 24 | dataIdFromObject, 25 | cache: new InMemoryCache(), 26 | link: mockLink(query), 27 | }) 28 | 29 | /* 30 | Reference schema: 31 | 32 | type Person { 33 | id: ID! 34 | name: String! 35 | happy: Boolean 36 | } 37 | 38 | type Query { 39 | happyPeople: [Person] 40 | } 41 | 42 | type Mutation { 43 | winWorldCup: Boolean 44 | } 45 | 46 | schema { 47 | query: Query 48 | mutation: Mutation 49 | } 50 | */ 51 | 52 | describe('integration', () => { 53 | it('should clear cache on a real apollo-client', async () => { 54 | const results = { 55 | HappyPeople: { 56 | happyPeople: [ 57 | { __typename: 'Person', id: 1, happy: true }, 58 | { __typename: 'Person', id: 2, happy: false }, 59 | ] 60 | }, 61 | WinWorldCup: { 62 | winWorldCup: true 63 | } 64 | } 65 | 66 | const resolver = jest.fn( 67 | async ({ operationName }) => ({ data: results[operationName] }) 68 | ) 69 | 70 | const client = mockedClient(resolver) 71 | const query = gql`query HappyPeople { happyPeople { id, happy } }` 72 | const mutation = gql`mutation WinWorldCup { winWorldCup }` 73 | const update = invalidateFields((proxy) => [['ROOT_QUERY', 'happyPeople']]) 74 | 75 | await client.query({ query }) 76 | await client.mutate({ mutation }) 77 | await client.query({ query }) 78 | 79 | // // Second query should have been cached, therefore not called. 80 | expect(resolver).toHaveBeenCalledTimes(2) 81 | 82 | await client.mutate({ mutation, update }) 83 | await client.query({ query }) 84 | 85 | // Second query now should have been called. 86 | expect(resolver).toHaveBeenCalledTimes(4) 87 | }) 88 | 89 | it('should clear whole cache when ROOT_QUERY is provided as key', async () => { 90 | const results = { 91 | HappyPeople: { 92 | happyPeople: [ 93 | { __typename: 'Person', id: 1, happy: true }, 94 | { __typename: 'Person', id: 2, happy: false }, 95 | ] 96 | }, 97 | WinWorldCup: { 98 | winWorldCup: true 99 | } 100 | } 101 | 102 | const resolver = jest.fn( 103 | async ({ operationName }) => ({ data: results[operationName] }) 104 | ) 105 | 106 | const client = mockedClient(resolver) 107 | const query = gql`query HappyPeople { happyPeople { id, happy } }` 108 | const mutation = gql`mutation WinWorldCup { winWorldCup }` 109 | const update = invalidateFields((proxy) => [['ROOT_QUERY']]) 110 | 111 | await client.query({ query }) 112 | await client.mutate({ mutation }) 113 | await client.query({ query }) 114 | 115 | // // Second query should have been cached, therefore not called. 116 | expect(resolver).toHaveBeenCalledTimes(2) 117 | 118 | await client.mutate({ mutation, update }) 119 | await client.query({ query }) 120 | 121 | // Second query now should have been called. 122 | expect(resolver).toHaveBeenCalledTimes(4) 123 | }) 124 | }) 125 | -------------------------------------------------------------------------------- /tests/invalidateFields.test.js: -------------------------------------------------------------------------------- 1 | import { invalidateFields } from 'apollo-cache-invalidation' 2 | 3 | const getProxyObject = () => ({ 4 | data: { 5 | data: { 6 | 'ROOT_QUERY': { 7 | 'refField1': { type: 'id', id: 'id1', generated: false }, 8 | 'refField2': { type: 'id', id: 'id2', generated: false }, 9 | 'refField3': { type: 'id', id: 'id3', generated: false } 10 | }, 11 | 'id1': { 'f1': 'id1 field one value', 'f2': 'id1 field two value' }, 12 | 'id2': { 'f1': 'id2 field one value', 'f2': 'id2 field two value' }, 13 | 'id3': { 'refField4': { type: 'id', id: 'id4', generated: false } }, 14 | 'id4': { 'f1': 'id3 field one value', 'f2': 'id3 field two value' }, 15 | } 16 | } 17 | }) 18 | 19 | describe('[method] invalidateFields', () => { 20 | it('should invalidate root level paths', () => { 21 | const proxy = getProxyObject() 22 | const invalidator = invalidateFields(() => [['id1']]) 23 | 24 | expect(proxy).toHaveProperty('data.data.id1') 25 | invalidator(proxy, {}) 26 | expect(proxy).not.toHaveProperty('data.data.id1') 27 | }) 28 | 29 | it('should invalidate second level paths', () => { 30 | const proxy = getProxyObject() 31 | const invalidator = invalidateFields(() => [['id1', 'f1']]) 32 | 33 | expect(proxy).toHaveProperty('data.data.id1.f1') 34 | invalidator(proxy, {}) 35 | expect(proxy).toHaveProperty('data.data.id1') 36 | expect(proxy).not.toHaveProperty('data.data.id1.f1') 37 | }) 38 | 39 | it('should invalidate third level (via reference) paths', () => { 40 | const proxy = getProxyObject() 41 | const invalidator = invalidateFields(() => [['ROOT_QUERY', 'refField2', 'f1']]) 42 | 43 | expect(proxy).toHaveProperty('data.data.id2.f1') 44 | invalidator(proxy, {}) 45 | expect(proxy).toHaveProperty('data.data.ROOT_QUERY.refField2') 46 | expect(proxy).toHaveProperty('data.data.id2') 47 | expect(proxy).not.toHaveProperty('data.data.id2.f1') 48 | }) 49 | 50 | it('should invalidate fourth level (via double reference) paths', () => { 51 | const proxy = getProxyObject() 52 | const invalidator = invalidateFields(() => [['ROOT_QUERY', 'refField3', 'refField4', 'f1']]) 53 | 54 | expect(proxy).toHaveProperty('data.data.id4.f1') 55 | invalidator(proxy, {}) 56 | expect(proxy).toHaveProperty('data.data.ROOT_QUERY.refField3') 57 | expect(proxy).toHaveProperty('data.data.id3.refField4') 58 | expect(proxy).toHaveProperty('data.data.id4') 59 | expect(proxy).not.toHaveProperty('data.data.id4.f1') 60 | }) 61 | 62 | it('should invalidate paths paths', () => { 63 | const proxy = getProxyObject() 64 | const invalidator = invalidateFields(() => [['ROOT_QUERY'], ['id1', 'f1']]) 65 | 66 | expect(proxy).toHaveProperty('data.data.ROOT_QUERY') 67 | expect(proxy).toHaveProperty('data.data.id1.f1') 68 | invalidator(proxy, {}) 69 | expect(proxy).toHaveProperty('data.data.ROOT_QUERY', {}) 70 | expect(proxy).not.toHaveProperty('data.data.id1.f1') 71 | }) 72 | }) 73 | -------------------------------------------------------------------------------- /tests/matchFinder.test.js: -------------------------------------------------------------------------------- 1 | import { matchFinder } from 'apollo-cache-invalidation' 2 | 3 | describe('[method] matchFinder', () => { 4 | const cached = { 5 | 'ROOT_QUERY': { 6 | 'refField1': { type: 'id', id: 'id1', generated: false }, 7 | 'refField2': { type: 'id', id: 'id2', generated: false }, 8 | 'refField3': { type: 'id', id: 'id3', generated: false } 9 | }, 10 | 'id1': { 'f1': 'id1 field one value', 'f2': 'id1 field two value' }, 11 | 'id2': { 'f1': 'id2 field one value', 'f2': 'id2 field two value' }, 12 | 'id3': { 'refField4': { type: 'id', id: 'id4', generated: false } }, 13 | 'id4': { 'f1': 'id3 field one value', 'f2': 'id3 field two value' }, 14 | } 15 | 16 | it('should match root level keys', () => { 17 | expect(matchFinder(cached, [['id1']])).toContainEqual(['id1']) 18 | expect(matchFinder(cached, [['ROOT_QUERY']])).toContainEqual(['ROOT_QUERY']) 19 | expect(matchFinder(cached, [['wrong-id']]).length).toBe(0) 20 | }) 21 | 22 | it('should match second level keys', () => { 23 | expect(matchFinder(cached, [['ROOT_QUERY', 'refField1']])).toContainEqual(['ROOT_QUERY', 'refField1']) 24 | expect(matchFinder(cached, [['ROOT_QUERY', 'wrong-field']]).length).toBe(0) 25 | }) 26 | 27 | it('should match third level keys', () => { 28 | expect(matchFinder(cached, [['ROOT_QUERY', 'refField2', 'f1']])).toContainEqual(['id2', 'f1']) 29 | }) 30 | 31 | it('should match fourth level keys', () => { 32 | expect(matchFinder(cached, [['ROOT_QUERY', 'refField3', 'refField4', 'f1']])).toContainEqual(['id4', 'f1']) 33 | }) 34 | 35 | it('should match multiple paths', () => { 36 | const result = matchFinder(cached, [['ROOT_QUERY'], ['id1', 'f1'], ['wrong-id']]) 37 | expect(result).toContainEqual(['ROOT_QUERY']) 38 | expect(result).toContainEqual(['id1', 'f1']) 39 | expect(result.length).toBe(2) 40 | }) 41 | }) 42 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@types/async@2.0.49": 6 | version "2.0.49" 7 | resolved "https://registry.yarnpkg.com/@types/async/-/async-2.0.49.tgz#92e33d13f74c895cb9a7f38ba97db8431ed14bc0" 8 | 9 | "@types/zen-observable@^0.8.0": 10 | version "0.8.0" 11 | resolved "https://registry.yarnpkg.com/@types/zen-observable/-/zen-observable-0.8.0.tgz#8b63ab7f1aa5321248aad5ac890a485656dcea4d" 12 | 13 | abab@^1.0.3: 14 | version "1.0.3" 15 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.3.tgz#b81de5f7274ec4e756d797cd834f303642724e5d" 16 | 17 | abbrev@1: 18 | version "1.1.0" 19 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 20 | 21 | acorn-globals@^3.1.0: 22 | version "3.1.0" 23 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 24 | dependencies: 25 | acorn "^4.0.4" 26 | 27 | acorn-jsx@^3.0.0: 28 | version "3.0.1" 29 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 30 | dependencies: 31 | acorn "^3.0.4" 32 | 33 | acorn@4.0.4, acorn@^4.0.4: 34 | version "4.0.4" 35 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.4.tgz#17a8d6a7a6c4ef538b814ec9abac2779293bf30a" 36 | 37 | acorn@^3.0.4: 38 | version "3.3.0" 39 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 40 | 41 | ajv-keywords@^1.0.0: 42 | version "1.5.1" 43 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 44 | 45 | ajv@^4.7.0, ajv@^4.9.1: 46 | version "4.11.5" 47 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.5.tgz#b6ee74657b993a01dce44b7944d56f485828d5bd" 48 | dependencies: 49 | co "^4.6.0" 50 | json-stable-stringify "^1.0.1" 51 | 52 | align-text@^0.1.1, align-text@^0.1.3: 53 | version "0.1.4" 54 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 55 | dependencies: 56 | kind-of "^3.0.2" 57 | longest "^1.0.1" 58 | repeat-string "^1.5.2" 59 | 60 | amdefine@>=0.0.4: 61 | version "1.0.1" 62 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 63 | 64 | ansi-escapes@^1.1.0, ansi-escapes@^1.4.0: 65 | version "1.4.0" 66 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 67 | 68 | ansi-regex@^2.0.0: 69 | version "2.1.1" 70 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 71 | 72 | ansi-styles@^2.2.1: 73 | version "2.2.1" 74 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 75 | 76 | ansi-styles@^3.0.0: 77 | version "3.0.0" 78 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.0.0.tgz#5404e93a544c4fec7f048262977bebfe3155e0c1" 79 | dependencies: 80 | color-convert "^1.0.0" 81 | 82 | anymatch@^1.3.0: 83 | version "1.3.0" 84 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 85 | dependencies: 86 | arrify "^1.0.0" 87 | micromatch "^2.1.5" 88 | 89 | apollo-cache-inmemory@^1.2.10: 90 | version "1.2.10" 91 | resolved "https://registry.yarnpkg.com/apollo-cache-inmemory/-/apollo-cache-inmemory-1.2.10.tgz#362d6c36cfd815a309b966f71e5d2b6c770c7989" 92 | dependencies: 93 | apollo-cache "^1.1.17" 94 | apollo-utilities "^1.0.21" 95 | graphql-anywhere "^4.1.19" 96 | 97 | apollo-cache@1.1.17, apollo-cache@^1.1.17: 98 | version "1.1.17" 99 | resolved "https://registry.yarnpkg.com/apollo-cache/-/apollo-cache-1.1.17.tgz#1fcca8423125223723b97fd72808be91a1a76490" 100 | dependencies: 101 | apollo-utilities "^1.0.21" 102 | 103 | apollo-client@^2.4.2: 104 | version "2.4.2" 105 | resolved "https://registry.yarnpkg.com/apollo-client/-/apollo-client-2.4.2.tgz#d2f044d8740723bf98a6d8d8b9684ee8c36150e6" 106 | dependencies: 107 | "@types/zen-observable" "^0.8.0" 108 | apollo-cache "1.1.17" 109 | apollo-link "^1.0.0" 110 | apollo-link-dedup "^1.0.0" 111 | apollo-utilities "1.0.21" 112 | symbol-observable "^1.0.2" 113 | zen-observable "^0.8.0" 114 | optionalDependencies: 115 | "@types/async" "2.0.49" 116 | 117 | apollo-link-dedup@^1.0.0: 118 | version "1.0.10" 119 | resolved "https://registry.yarnpkg.com/apollo-link-dedup/-/apollo-link-dedup-1.0.10.tgz#7b94589fe7f969777efd18a129043c78430800ae" 120 | dependencies: 121 | apollo-link "^1.2.3" 122 | 123 | apollo-link@^1.0.0, apollo-link@^1.2.3: 124 | version "1.2.3" 125 | resolved "https://registry.yarnpkg.com/apollo-link/-/apollo-link-1.2.3.tgz#9bd8d5fe1d88d31dc91dae9ecc22474d451fb70d" 126 | dependencies: 127 | apollo-utilities "^1.0.0" 128 | zen-observable-ts "^0.8.10" 129 | 130 | apollo-utilities@1.0.21, apollo-utilities@^1.0.0, apollo-utilities@^1.0.21: 131 | version "1.0.21" 132 | resolved "https://registry.yarnpkg.com/apollo-utilities/-/apollo-utilities-1.0.21.tgz#cb8b5779fe275850b16046ff8373f4af2de90765" 133 | dependencies: 134 | fast-json-stable-stringify "^2.0.0" 135 | fclone "^1.0.11" 136 | 137 | append-transform@^0.4.0: 138 | version "0.4.0" 139 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 140 | dependencies: 141 | default-require-extensions "^1.0.0" 142 | 143 | aproba@^1.0.3: 144 | version "1.1.1" 145 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab" 146 | 147 | are-we-there-yet@~1.1.2: 148 | version "1.1.2" 149 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 150 | dependencies: 151 | delegates "^1.0.0" 152 | readable-stream "^2.0.0 || ^1.1.13" 153 | 154 | argparse@^1.0.7: 155 | version "1.0.9" 156 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 157 | dependencies: 158 | sprintf-js "~1.0.2" 159 | 160 | arr-diff@^2.0.0: 161 | version "2.0.0" 162 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 163 | dependencies: 164 | arr-flatten "^1.0.1" 165 | 166 | arr-flatten@^1.0.1: 167 | version "1.0.1" 168 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 169 | 170 | array-equal@^1.0.0: 171 | version "1.0.0" 172 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 173 | 174 | array-union@^1.0.1: 175 | version "1.0.2" 176 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 177 | dependencies: 178 | array-uniq "^1.0.1" 179 | 180 | array-uniq@^1.0.1: 181 | version "1.0.3" 182 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 183 | 184 | array-unique@^0.2.1: 185 | version "0.2.1" 186 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 187 | 188 | array.prototype.find@^2.0.1: 189 | version "2.0.3" 190 | resolved "https://registry.yarnpkg.com/array.prototype.find/-/array.prototype.find-2.0.3.tgz#08c3ec33e32ec4bab362a2958e686ae92f59271d" 191 | dependencies: 192 | define-properties "^1.1.2" 193 | es-abstract "^1.7.0" 194 | 195 | arrify@^1.0.0, arrify@^1.0.1: 196 | version "1.0.1" 197 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 198 | 199 | asn1@~0.2.3: 200 | version "0.2.3" 201 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 202 | 203 | assert-plus@1.0.0, assert-plus@^1.0.0: 204 | version "1.0.0" 205 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 206 | 207 | assert-plus@^0.2.0: 208 | version "0.2.0" 209 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 210 | 211 | async-each@^1.0.0: 212 | version "1.0.1" 213 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 214 | 215 | async@^1.4.0, async@^1.4.2: 216 | version "1.5.2" 217 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 218 | 219 | async@^2.1.4: 220 | version "2.1.5" 221 | resolved "https://registry.yarnpkg.com/async/-/async-2.1.5.tgz#e587c68580994ac67fc56ff86d3ac56bdbe810bc" 222 | dependencies: 223 | lodash "^4.14.0" 224 | 225 | asynckit@^0.4.0: 226 | version "0.4.0" 227 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 228 | 229 | aws-sign2@~0.6.0: 230 | version "0.6.0" 231 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 232 | 233 | aws4@^1.2.1: 234 | version "1.6.0" 235 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 236 | 237 | babel-cli@^6.18.0: 238 | version "6.24.0" 239 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.24.0.tgz#a05ffd210dca0c288a26d5319c5ac8669a265ad0" 240 | dependencies: 241 | babel-core "^6.24.0" 242 | babel-polyfill "^6.23.0" 243 | babel-register "^6.24.0" 244 | babel-runtime "^6.22.0" 245 | commander "^2.8.1" 246 | convert-source-map "^1.1.0" 247 | fs-readdir-recursive "^1.0.0" 248 | glob "^7.0.0" 249 | lodash "^4.2.0" 250 | output-file-sync "^1.1.0" 251 | path-is-absolute "^1.0.0" 252 | slash "^1.0.0" 253 | source-map "^0.5.0" 254 | v8flags "^2.0.10" 255 | optionalDependencies: 256 | chokidar "^1.6.1" 257 | 258 | babel-code-frame@^6.16.0, babel-code-frame@^6.22.0: 259 | version "6.22.0" 260 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 261 | dependencies: 262 | chalk "^1.1.0" 263 | esutils "^2.0.2" 264 | js-tokens "^3.0.0" 265 | 266 | babel-core@^6.0.0, babel-core@^6.18.2, babel-core@^6.24.0: 267 | version "6.24.0" 268 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.0.tgz#8f36a0a77f5c155aed6f920b844d23ba56742a02" 269 | dependencies: 270 | babel-code-frame "^6.22.0" 271 | babel-generator "^6.24.0" 272 | babel-helpers "^6.23.0" 273 | babel-messages "^6.23.0" 274 | babel-register "^6.24.0" 275 | babel-runtime "^6.22.0" 276 | babel-template "^6.23.0" 277 | babel-traverse "^6.23.1" 278 | babel-types "^6.23.0" 279 | babylon "^6.11.0" 280 | convert-source-map "^1.1.0" 281 | debug "^2.1.1" 282 | json5 "^0.5.0" 283 | lodash "^4.2.0" 284 | minimatch "^3.0.2" 285 | path-is-absolute "^1.0.0" 286 | private "^0.1.6" 287 | slash "^1.0.0" 288 | source-map "^0.5.0" 289 | 290 | babel-eslint@^7.1.0: 291 | version "7.1.1" 292 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.1.1.tgz#8a6a884f085aa7060af69cfc77341c2f99370fb2" 293 | dependencies: 294 | babel-code-frame "^6.16.0" 295 | babel-traverse "^6.15.0" 296 | babel-types "^6.15.0" 297 | babylon "^6.13.0" 298 | lodash.pickby "^4.6.0" 299 | 300 | babel-generator@^6.18.0, babel-generator@^6.24.0: 301 | version "6.24.0" 302 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.0.tgz#eba270a8cc4ce6e09a61be43465d7c62c1f87c56" 303 | dependencies: 304 | babel-messages "^6.23.0" 305 | babel-runtime "^6.22.0" 306 | babel-types "^6.23.0" 307 | detect-indent "^4.0.0" 308 | jsesc "^1.3.0" 309 | lodash "^4.2.0" 310 | source-map "^0.5.0" 311 | trim-right "^1.0.1" 312 | 313 | babel-helper-bindify-decorators@^6.22.0: 314 | version "6.22.0" 315 | resolved "https://registry.yarnpkg.com/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.22.0.tgz#d7f5bc261275941ac62acfc4e20dacfb8a3fe952" 316 | dependencies: 317 | babel-runtime "^6.22.0" 318 | babel-traverse "^6.22.0" 319 | babel-types "^6.22.0" 320 | 321 | babel-helper-builder-binary-assignment-operator-visitor@^6.22.0: 322 | version "6.22.0" 323 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.22.0.tgz#29df56be144d81bdeac08262bfa41d2c5e91cdcd" 324 | dependencies: 325 | babel-helper-explode-assignable-expression "^6.22.0" 326 | babel-runtime "^6.22.0" 327 | babel-types "^6.22.0" 328 | 329 | babel-helper-call-delegate@^6.22.0: 330 | version "6.22.0" 331 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.22.0.tgz#119921b56120f17e9dae3f74b4f5cc7bcc1b37ef" 332 | dependencies: 333 | babel-helper-hoist-variables "^6.22.0" 334 | babel-runtime "^6.22.0" 335 | babel-traverse "^6.22.0" 336 | babel-types "^6.22.0" 337 | 338 | babel-helper-define-map@^6.23.0: 339 | version "6.23.0" 340 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.23.0.tgz#1444f960c9691d69a2ced6a205315f8fd00804e7" 341 | dependencies: 342 | babel-helper-function-name "^6.23.0" 343 | babel-runtime "^6.22.0" 344 | babel-types "^6.23.0" 345 | lodash "^4.2.0" 346 | 347 | babel-helper-explode-assignable-expression@^6.22.0: 348 | version "6.22.0" 349 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.22.0.tgz#c97bf76eed3e0bae4048121f2b9dae1a4e7d0478" 350 | dependencies: 351 | babel-runtime "^6.22.0" 352 | babel-traverse "^6.22.0" 353 | babel-types "^6.22.0" 354 | 355 | babel-helper-explode-class@^6.22.0: 356 | version "6.22.0" 357 | resolved "https://registry.yarnpkg.com/babel-helper-explode-class/-/babel-helper-explode-class-6.22.0.tgz#646304924aa6388a516843ba7f1855ef8dfeb69b" 358 | dependencies: 359 | babel-helper-bindify-decorators "^6.22.0" 360 | babel-runtime "^6.22.0" 361 | babel-traverse "^6.22.0" 362 | babel-types "^6.22.0" 363 | 364 | babel-helper-function-name@^6.22.0, babel-helper-function-name@^6.23.0: 365 | version "6.23.0" 366 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.23.0.tgz#25742d67175c8903dbe4b6cb9d9e1fcb8dcf23a6" 367 | dependencies: 368 | babel-helper-get-function-arity "^6.22.0" 369 | babel-runtime "^6.22.0" 370 | babel-template "^6.23.0" 371 | babel-traverse "^6.23.0" 372 | babel-types "^6.23.0" 373 | 374 | babel-helper-get-function-arity@^6.22.0: 375 | version "6.22.0" 376 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.22.0.tgz#0beb464ad69dc7347410ac6ade9f03a50634f5ce" 377 | dependencies: 378 | babel-runtime "^6.22.0" 379 | babel-types "^6.22.0" 380 | 381 | babel-helper-hoist-variables@^6.22.0: 382 | version "6.22.0" 383 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.22.0.tgz#3eacbf731d80705845dd2e9718f600cfb9b4ba72" 384 | dependencies: 385 | babel-runtime "^6.22.0" 386 | babel-types "^6.22.0" 387 | 388 | babel-helper-optimise-call-expression@^6.23.0: 389 | version "6.23.0" 390 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.23.0.tgz#f3ee7eed355b4282138b33d02b78369e470622f5" 391 | dependencies: 392 | babel-runtime "^6.22.0" 393 | babel-types "^6.23.0" 394 | 395 | babel-helper-regex@^6.22.0: 396 | version "6.22.0" 397 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.22.0.tgz#79f532be1647b1f0ee3474b5f5c3da58001d247d" 398 | dependencies: 399 | babel-runtime "^6.22.0" 400 | babel-types "^6.22.0" 401 | lodash "^4.2.0" 402 | 403 | babel-helper-remap-async-to-generator@^6.22.0: 404 | version "6.22.0" 405 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.22.0.tgz#2186ae73278ed03b8b15ced089609da981053383" 406 | dependencies: 407 | babel-helper-function-name "^6.22.0" 408 | babel-runtime "^6.22.0" 409 | babel-template "^6.22.0" 410 | babel-traverse "^6.22.0" 411 | babel-types "^6.22.0" 412 | 413 | babel-helper-replace-supers@^6.22.0, babel-helper-replace-supers@^6.23.0: 414 | version "6.23.0" 415 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.23.0.tgz#eeaf8ad9b58ec4337ca94223bacdca1f8d9b4bfd" 416 | dependencies: 417 | babel-helper-optimise-call-expression "^6.23.0" 418 | babel-messages "^6.23.0" 419 | babel-runtime "^6.22.0" 420 | babel-template "^6.23.0" 421 | babel-traverse "^6.23.0" 422 | babel-types "^6.23.0" 423 | 424 | babel-helpers@^6.23.0: 425 | version "6.23.0" 426 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.23.0.tgz#4f8f2e092d0b6a8808a4bde79c27f1e2ecf0d992" 427 | dependencies: 428 | babel-runtime "^6.22.0" 429 | babel-template "^6.23.0" 430 | 431 | babel-jest@^19.0.0: 432 | version "19.0.0" 433 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-19.0.0.tgz#59323ced99a3a84d359da219ca881074ffc6ce3f" 434 | dependencies: 435 | babel-core "^6.0.0" 436 | babel-plugin-istanbul "^4.0.0" 437 | babel-preset-jest "^19.0.0" 438 | 439 | babel-messages@^6.23.0: 440 | version "6.23.0" 441 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 442 | dependencies: 443 | babel-runtime "^6.22.0" 444 | 445 | babel-plugin-check-es2015-constants@^6.22.0: 446 | version "6.22.0" 447 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 448 | dependencies: 449 | babel-runtime "^6.22.0" 450 | 451 | babel-plugin-istanbul@^4.0.0: 452 | version "4.0.0" 453 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.0.0.tgz#36bde8fbef4837e5ff0366531a2beabd7b1ffa10" 454 | dependencies: 455 | find-up "^2.1.0" 456 | istanbul-lib-instrument "^1.4.2" 457 | test-exclude "^4.0.0" 458 | 459 | babel-plugin-jest-hoist@^19.0.0: 460 | version "19.0.0" 461 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-19.0.0.tgz#4ae2a04ea612a6e73651f3fde52c178991304bea" 462 | 463 | babel-plugin-syntax-async-functions@^6.8.0: 464 | version "6.13.0" 465 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 466 | 467 | babel-plugin-syntax-async-generators@^6.5.0: 468 | version "6.13.0" 469 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a" 470 | 471 | babel-plugin-syntax-class-constructor-call@^6.18.0: 472 | version "6.18.0" 473 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-constructor-call/-/babel-plugin-syntax-class-constructor-call-6.18.0.tgz#9cb9d39fe43c8600bec8146456ddcbd4e1a76416" 474 | 475 | babel-plugin-syntax-class-properties@^6.8.0: 476 | version "6.13.0" 477 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 478 | 479 | babel-plugin-syntax-decorators@^6.1.18, babel-plugin-syntax-decorators@^6.13.0: 480 | version "6.13.0" 481 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b" 482 | 483 | babel-plugin-syntax-do-expressions@^6.8.0: 484 | version "6.13.0" 485 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-do-expressions/-/babel-plugin-syntax-do-expressions-6.13.0.tgz#5747756139aa26d390d09410b03744ba07e4796d" 486 | 487 | babel-plugin-syntax-dynamic-import@^6.18.0: 488 | version "6.18.0" 489 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da" 490 | 491 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 492 | version "6.13.0" 493 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 494 | 495 | babel-plugin-syntax-export-extensions@^6.8.0: 496 | version "6.13.0" 497 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-export-extensions/-/babel-plugin-syntax-export-extensions-6.13.0.tgz#70a1484f0f9089a4e84ad44bac353c95b9b12721" 498 | 499 | babel-plugin-syntax-function-bind@^6.8.0: 500 | version "6.13.0" 501 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-function-bind/-/babel-plugin-syntax-function-bind-6.13.0.tgz#48c495f177bdf31a981e732f55adc0bdd2601f46" 502 | 503 | babel-plugin-syntax-object-rest-spread@^6.8.0: 504 | version "6.13.0" 505 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 506 | 507 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 508 | version "6.22.0" 509 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 510 | 511 | babel-plugin-transform-async-generator-functions@^6.22.0: 512 | version "6.22.0" 513 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.22.0.tgz#a720a98153a7596f204099cd5409f4b3c05bab46" 514 | dependencies: 515 | babel-helper-remap-async-to-generator "^6.22.0" 516 | babel-plugin-syntax-async-generators "^6.5.0" 517 | babel-runtime "^6.22.0" 518 | 519 | babel-plugin-transform-async-to-generator@^6.22.0: 520 | version "6.22.0" 521 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.22.0.tgz#194b6938ec195ad36efc4c33a971acf00d8cd35e" 522 | dependencies: 523 | babel-helper-remap-async-to-generator "^6.22.0" 524 | babel-plugin-syntax-async-functions "^6.8.0" 525 | babel-runtime "^6.22.0" 526 | 527 | babel-plugin-transform-class-constructor-call@^6.22.0: 528 | version "6.22.0" 529 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-constructor-call/-/babel-plugin-transform-class-constructor-call-6.22.0.tgz#11a4d2216abb5b0eef298b493748f4f2f4869120" 530 | dependencies: 531 | babel-plugin-syntax-class-constructor-call "^6.18.0" 532 | babel-runtime "^6.22.0" 533 | babel-template "^6.22.0" 534 | 535 | babel-plugin-transform-class-properties@^6.22.0: 536 | version "6.23.0" 537 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.23.0.tgz#187b747ee404399013563c993db038f34754ac3b" 538 | dependencies: 539 | babel-helper-function-name "^6.23.0" 540 | babel-plugin-syntax-class-properties "^6.8.0" 541 | babel-runtime "^6.22.0" 542 | babel-template "^6.23.0" 543 | 544 | babel-plugin-transform-decorators-legacy@^1.3.4: 545 | version "1.3.4" 546 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators-legacy/-/babel-plugin-transform-decorators-legacy-1.3.4.tgz#741b58f6c5bce9e6027e0882d9c994f04f366925" 547 | dependencies: 548 | babel-plugin-syntax-decorators "^6.1.18" 549 | babel-runtime "^6.2.0" 550 | babel-template "^6.3.0" 551 | 552 | babel-plugin-transform-decorators@^6.22.0: 553 | version "6.22.0" 554 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.22.0.tgz#c03635b27a23b23b7224f49232c237a73988d27c" 555 | dependencies: 556 | babel-helper-explode-class "^6.22.0" 557 | babel-plugin-syntax-decorators "^6.13.0" 558 | babel-runtime "^6.22.0" 559 | babel-template "^6.22.0" 560 | babel-types "^6.22.0" 561 | 562 | babel-plugin-transform-do-expressions@^6.22.0: 563 | version "6.22.0" 564 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-do-expressions/-/babel-plugin-transform-do-expressions-6.22.0.tgz#28ccaf92812d949c2cd1281f690c8fdc468ae9bb" 565 | dependencies: 566 | babel-plugin-syntax-do-expressions "^6.8.0" 567 | babel-runtime "^6.22.0" 568 | 569 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 570 | version "6.22.0" 571 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 572 | dependencies: 573 | babel-runtime "^6.22.0" 574 | 575 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 576 | version "6.22.0" 577 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 578 | dependencies: 579 | babel-runtime "^6.22.0" 580 | 581 | babel-plugin-transform-es2015-block-scoping@^6.22.0: 582 | version "6.23.0" 583 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.23.0.tgz#e48895cf0b375be148cd7c8879b422707a053b51" 584 | dependencies: 585 | babel-runtime "^6.22.0" 586 | babel-template "^6.23.0" 587 | babel-traverse "^6.23.0" 588 | babel-types "^6.23.0" 589 | lodash "^4.2.0" 590 | 591 | babel-plugin-transform-es2015-classes@^6.22.0: 592 | version "6.23.0" 593 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.23.0.tgz#49b53f326202a2fd1b3bbaa5e2edd8a4f78643c1" 594 | dependencies: 595 | babel-helper-define-map "^6.23.0" 596 | babel-helper-function-name "^6.23.0" 597 | babel-helper-optimise-call-expression "^6.23.0" 598 | babel-helper-replace-supers "^6.23.0" 599 | babel-messages "^6.23.0" 600 | babel-runtime "^6.22.0" 601 | babel-template "^6.23.0" 602 | babel-traverse "^6.23.0" 603 | babel-types "^6.23.0" 604 | 605 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 606 | version "6.22.0" 607 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.22.0.tgz#7c383e9629bba4820c11b0425bdd6290f7f057e7" 608 | dependencies: 609 | babel-runtime "^6.22.0" 610 | babel-template "^6.22.0" 611 | 612 | babel-plugin-transform-es2015-destructuring@^6.22.0: 613 | version "6.23.0" 614 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 615 | dependencies: 616 | babel-runtime "^6.22.0" 617 | 618 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 619 | version "6.22.0" 620 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.22.0.tgz#672397031c21610d72dd2bbb0ba9fb6277e1c36b" 621 | dependencies: 622 | babel-runtime "^6.22.0" 623 | babel-types "^6.22.0" 624 | 625 | babel-plugin-transform-es2015-for-of@^6.22.0: 626 | version "6.23.0" 627 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 628 | dependencies: 629 | babel-runtime "^6.22.0" 630 | 631 | babel-plugin-transform-es2015-function-name@^6.22.0: 632 | version "6.22.0" 633 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.22.0.tgz#f5fcc8b09093f9a23c76ac3d9e392c3ec4b77104" 634 | dependencies: 635 | babel-helper-function-name "^6.22.0" 636 | babel-runtime "^6.22.0" 637 | babel-types "^6.22.0" 638 | 639 | babel-plugin-transform-es2015-literals@^6.22.0: 640 | version "6.22.0" 641 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 642 | dependencies: 643 | babel-runtime "^6.22.0" 644 | 645 | babel-plugin-transform-es2015-modules-amd@^6.24.0: 646 | version "6.24.0" 647 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.0.tgz#a1911fb9b7ec7e05a43a63c5995007557bcf6a2e" 648 | dependencies: 649 | babel-plugin-transform-es2015-modules-commonjs "^6.24.0" 650 | babel-runtime "^6.22.0" 651 | babel-template "^6.22.0" 652 | 653 | babel-plugin-transform-es2015-modules-commonjs@^6.24.0: 654 | version "6.24.0" 655 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.0.tgz#e921aefb72c2cc26cb03d107626156413222134f" 656 | dependencies: 657 | babel-plugin-transform-strict-mode "^6.22.0" 658 | babel-runtime "^6.22.0" 659 | babel-template "^6.23.0" 660 | babel-types "^6.23.0" 661 | 662 | babel-plugin-transform-es2015-modules-systemjs@^6.22.0: 663 | version "6.23.0" 664 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.23.0.tgz#ae3469227ffac39b0310d90fec73bfdc4f6317b0" 665 | dependencies: 666 | babel-helper-hoist-variables "^6.22.0" 667 | babel-runtime "^6.22.0" 668 | babel-template "^6.23.0" 669 | 670 | babel-plugin-transform-es2015-modules-umd@^6.24.0: 671 | version "6.24.0" 672 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.0.tgz#fd5fa63521cae8d273927c3958afd7c067733450" 673 | dependencies: 674 | babel-plugin-transform-es2015-modules-amd "^6.24.0" 675 | babel-runtime "^6.22.0" 676 | babel-template "^6.23.0" 677 | 678 | babel-plugin-transform-es2015-object-super@^6.22.0: 679 | version "6.22.0" 680 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.22.0.tgz#daa60e114a042ea769dd53fe528fc82311eb98fc" 681 | dependencies: 682 | babel-helper-replace-supers "^6.22.0" 683 | babel-runtime "^6.22.0" 684 | 685 | babel-plugin-transform-es2015-parameters@^6.22.0: 686 | version "6.23.0" 687 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.23.0.tgz#3a2aabb70c8af945d5ce386f1a4250625a83ae3b" 688 | dependencies: 689 | babel-helper-call-delegate "^6.22.0" 690 | babel-helper-get-function-arity "^6.22.0" 691 | babel-runtime "^6.22.0" 692 | babel-template "^6.23.0" 693 | babel-traverse "^6.23.0" 694 | babel-types "^6.23.0" 695 | 696 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 697 | version "6.22.0" 698 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.22.0.tgz#8ba776e0affaa60bff21e921403b8a652a2ff723" 699 | dependencies: 700 | babel-runtime "^6.22.0" 701 | babel-types "^6.22.0" 702 | 703 | babel-plugin-transform-es2015-spread@^6.22.0: 704 | version "6.22.0" 705 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 706 | dependencies: 707 | babel-runtime "^6.22.0" 708 | 709 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 710 | version "6.22.0" 711 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.22.0.tgz#ab316829e866ee3f4b9eb96939757d19a5bc4593" 712 | dependencies: 713 | babel-helper-regex "^6.22.0" 714 | babel-runtime "^6.22.0" 715 | babel-types "^6.22.0" 716 | 717 | babel-plugin-transform-es2015-template-literals@^6.22.0: 718 | version "6.22.0" 719 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 720 | dependencies: 721 | babel-runtime "^6.22.0" 722 | 723 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 724 | version "6.23.0" 725 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 726 | dependencies: 727 | babel-runtime "^6.22.0" 728 | 729 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 730 | version "6.22.0" 731 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.22.0.tgz#8d9cc27e7ee1decfe65454fb986452a04a613d20" 732 | dependencies: 733 | babel-helper-regex "^6.22.0" 734 | babel-runtime "^6.22.0" 735 | regexpu-core "^2.0.0" 736 | 737 | babel-plugin-transform-es3-member-expression-literals@^6.8.0: 738 | version "6.22.0" 739 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es3-member-expression-literals/-/babel-plugin-transform-es3-member-expression-literals-6.22.0.tgz#733d3444f3ecc41bef8ed1a6a4e09657b8969ebb" 740 | dependencies: 741 | babel-runtime "^6.22.0" 742 | 743 | babel-plugin-transform-es3-property-literals@^6.8.0: 744 | version "6.22.0" 745 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es3-property-literals/-/babel-plugin-transform-es3-property-literals-6.22.0.tgz#b2078d5842e22abf40f73e8cde9cd3711abd5758" 746 | dependencies: 747 | babel-runtime "^6.22.0" 748 | 749 | babel-plugin-transform-exponentiation-operator@^6.22.0: 750 | version "6.22.0" 751 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.22.0.tgz#d57c8335281918e54ef053118ce6eb108468084d" 752 | dependencies: 753 | babel-helper-builder-binary-assignment-operator-visitor "^6.22.0" 754 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 755 | babel-runtime "^6.22.0" 756 | 757 | babel-plugin-transform-export-extensions@^6.22.0: 758 | version "6.22.0" 759 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-export-extensions/-/babel-plugin-transform-export-extensions-6.22.0.tgz#53738b47e75e8218589eea946cbbd39109bbe653" 760 | dependencies: 761 | babel-plugin-syntax-export-extensions "^6.8.0" 762 | babel-runtime "^6.22.0" 763 | 764 | babel-plugin-transform-function-bind@^6.22.0: 765 | version "6.22.0" 766 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-function-bind/-/babel-plugin-transform-function-bind-6.22.0.tgz#c6fb8e96ac296a310b8cf8ea401462407ddf6a97" 767 | dependencies: 768 | babel-plugin-syntax-function-bind "^6.8.0" 769 | babel-runtime "^6.22.0" 770 | 771 | babel-plugin-transform-object-rest-spread@^6.22.0: 772 | version "6.23.0" 773 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz#875d6bc9be761c58a2ae3feee5dc4895d8c7f921" 774 | dependencies: 775 | babel-plugin-syntax-object-rest-spread "^6.8.0" 776 | babel-runtime "^6.22.0" 777 | 778 | babel-plugin-transform-regenerator@^6.22.0: 779 | version "6.22.0" 780 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.22.0.tgz#65740593a319c44522157538d690b84094617ea6" 781 | dependencies: 782 | regenerator-transform "0.9.8" 783 | 784 | babel-plugin-transform-runtime@^6.6.0: 785 | version "6.23.0" 786 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.23.0.tgz#88490d446502ea9b8e7efb0fe09ec4d99479b1ee" 787 | dependencies: 788 | babel-runtime "^6.22.0" 789 | 790 | babel-plugin-transform-strict-mode@^6.22.0: 791 | version "6.22.0" 792 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.22.0.tgz#e008df01340fdc87e959da65991b7e05970c8c7c" 793 | dependencies: 794 | babel-runtime "^6.22.0" 795 | babel-types "^6.22.0" 796 | 797 | babel-polyfill@^6.23.0: 798 | version "6.23.0" 799 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d" 800 | dependencies: 801 | babel-runtime "^6.22.0" 802 | core-js "^2.4.0" 803 | regenerator-runtime "^0.10.0" 804 | 805 | babel-preset-es2015@^6.3.13: 806 | version "6.24.0" 807 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.0.tgz#c162d68b1932696e036cd3110dc1ccd303d2673a" 808 | dependencies: 809 | babel-plugin-check-es2015-constants "^6.22.0" 810 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 811 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 812 | babel-plugin-transform-es2015-block-scoping "^6.22.0" 813 | babel-plugin-transform-es2015-classes "^6.22.0" 814 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 815 | babel-plugin-transform-es2015-destructuring "^6.22.0" 816 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 817 | babel-plugin-transform-es2015-for-of "^6.22.0" 818 | babel-plugin-transform-es2015-function-name "^6.22.0" 819 | babel-plugin-transform-es2015-literals "^6.22.0" 820 | babel-plugin-transform-es2015-modules-amd "^6.24.0" 821 | babel-plugin-transform-es2015-modules-commonjs "^6.24.0" 822 | babel-plugin-transform-es2015-modules-systemjs "^6.22.0" 823 | babel-plugin-transform-es2015-modules-umd "^6.24.0" 824 | babel-plugin-transform-es2015-object-super "^6.22.0" 825 | babel-plugin-transform-es2015-parameters "^6.22.0" 826 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 827 | babel-plugin-transform-es2015-spread "^6.22.0" 828 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 829 | babel-plugin-transform-es2015-template-literals "^6.22.0" 830 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 831 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 832 | babel-plugin-transform-regenerator "^6.22.0" 833 | 834 | babel-preset-jest@^19.0.0: 835 | version "19.0.0" 836 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-19.0.0.tgz#22d67201d02324a195811288eb38294bb3cac396" 837 | dependencies: 838 | babel-plugin-jest-hoist "^19.0.0" 839 | 840 | babel-preset-stage-0@^6.5.0: 841 | version "6.22.0" 842 | resolved "https://registry.yarnpkg.com/babel-preset-stage-0/-/babel-preset-stage-0-6.22.0.tgz#707eeb5b415da769eff9c42f4547f644f9296ef9" 843 | dependencies: 844 | babel-plugin-transform-do-expressions "^6.22.0" 845 | babel-plugin-transform-function-bind "^6.22.0" 846 | babel-preset-stage-1 "^6.22.0" 847 | 848 | babel-preset-stage-1@^6.22.0: 849 | version "6.22.0" 850 | resolved "https://registry.yarnpkg.com/babel-preset-stage-1/-/babel-preset-stage-1-6.22.0.tgz#7da05bffea6ad5a10aef93e320cfc6dd465dbc1a" 851 | dependencies: 852 | babel-plugin-transform-class-constructor-call "^6.22.0" 853 | babel-plugin-transform-export-extensions "^6.22.0" 854 | babel-preset-stage-2 "^6.22.0" 855 | 856 | babel-preset-stage-2@^6.22.0: 857 | version "6.22.0" 858 | resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.22.0.tgz#ccd565f19c245cade394b21216df704a73b27c07" 859 | dependencies: 860 | babel-plugin-syntax-dynamic-import "^6.18.0" 861 | babel-plugin-transform-class-properties "^6.22.0" 862 | babel-plugin-transform-decorators "^6.22.0" 863 | babel-preset-stage-3 "^6.22.0" 864 | 865 | babel-preset-stage-3@^6.22.0: 866 | version "6.22.0" 867 | resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.22.0.tgz#a4e92bbace7456fafdf651d7a7657ee0bbca9c2e" 868 | dependencies: 869 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 870 | babel-plugin-transform-async-generator-functions "^6.22.0" 871 | babel-plugin-transform-async-to-generator "^6.22.0" 872 | babel-plugin-transform-exponentiation-operator "^6.22.0" 873 | babel-plugin-transform-object-rest-spread "^6.22.0" 874 | 875 | babel-preset-taller@^0.1.1: 876 | version "0.1.3" 877 | resolved "https://registry.yarnpkg.com/babel-preset-taller/-/babel-preset-taller-0.1.3.tgz#83039de96941fc25520ae36edf1e9fb183898105" 878 | dependencies: 879 | babel-plugin-transform-decorators-legacy "^1.3.4" 880 | babel-plugin-transform-es3-member-expression-literals "^6.8.0" 881 | babel-plugin-transform-es3-property-literals "^6.8.0" 882 | babel-plugin-transform-runtime "^6.6.0" 883 | babel-preset-es2015 "^6.3.13" 884 | babel-preset-stage-0 "^6.5.0" 885 | 886 | babel-register@^6.18.0, babel-register@^6.24.0: 887 | version "6.24.0" 888 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.0.tgz#5e89f8463ba9970356d02eb07dabe3308b080cfd" 889 | dependencies: 890 | babel-core "^6.24.0" 891 | babel-runtime "^6.22.0" 892 | core-js "^2.4.0" 893 | home-or-tmp "^2.0.0" 894 | lodash "^4.2.0" 895 | mkdirp "^0.5.1" 896 | source-map-support "^0.4.2" 897 | 898 | babel-runtime@^6.18.0, babel-runtime@^6.2.0, babel-runtime@^6.22.0: 899 | version "6.23.0" 900 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 901 | dependencies: 902 | core-js "^2.4.0" 903 | regenerator-runtime "^0.10.0" 904 | 905 | babel-template@^6.16.0, babel-template@^6.22.0, babel-template@^6.23.0, babel-template@^6.3.0: 906 | version "6.23.0" 907 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.23.0.tgz#04d4f270adbb3aa704a8143ae26faa529238e638" 908 | dependencies: 909 | babel-runtime "^6.22.0" 910 | babel-traverse "^6.23.0" 911 | babel-types "^6.23.0" 912 | babylon "^6.11.0" 913 | lodash "^4.2.0" 914 | 915 | babel-traverse@^6.15.0, babel-traverse@^6.18.0, babel-traverse@^6.22.0, babel-traverse@^6.23.0, babel-traverse@^6.23.1: 916 | version "6.23.1" 917 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.23.1.tgz#d3cb59010ecd06a97d81310065f966b699e14f48" 918 | dependencies: 919 | babel-code-frame "^6.22.0" 920 | babel-messages "^6.23.0" 921 | babel-runtime "^6.22.0" 922 | babel-types "^6.23.0" 923 | babylon "^6.15.0" 924 | debug "^2.2.0" 925 | globals "^9.0.0" 926 | invariant "^2.2.0" 927 | lodash "^4.2.0" 928 | 929 | babel-types@^6.15.0, babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.22.0, babel-types@^6.23.0: 930 | version "6.23.0" 931 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.23.0.tgz#bb17179d7538bad38cd0c9e115d340f77e7e9acf" 932 | dependencies: 933 | babel-runtime "^6.22.0" 934 | esutils "^2.0.2" 935 | lodash "^4.2.0" 936 | to-fast-properties "^1.0.1" 937 | 938 | babylon@^6.11.0, babylon@^6.13.0, babylon@^6.15.0: 939 | version "6.16.1" 940 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.16.1.tgz#30c5a22f481978a9e7f8cdfdf496b11d94b404d3" 941 | 942 | balanced-match@^0.4.1: 943 | version "0.4.2" 944 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 945 | 946 | bcrypt-pbkdf@^1.0.0: 947 | version "1.0.1" 948 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 949 | dependencies: 950 | tweetnacl "^0.14.3" 951 | 952 | binary-extensions@^1.0.0: 953 | version "1.8.0" 954 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 955 | 956 | block-stream@*: 957 | version "0.0.9" 958 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 959 | dependencies: 960 | inherits "~2.0.0" 961 | 962 | boom@2.x.x: 963 | version "2.10.1" 964 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 965 | dependencies: 966 | hoek "2.x.x" 967 | 968 | brace-expansion@^1.0.0: 969 | version "1.1.6" 970 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 971 | dependencies: 972 | balanced-match "^0.4.1" 973 | concat-map "0.0.1" 974 | 975 | braces@^1.8.2: 976 | version "1.8.5" 977 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 978 | dependencies: 979 | expand-range "^1.8.1" 980 | preserve "^0.2.0" 981 | repeat-element "^1.1.2" 982 | 983 | browser-resolve@^1.11.2: 984 | version "1.11.2" 985 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 986 | dependencies: 987 | resolve "1.1.7" 988 | 989 | bser@1.0.2: 990 | version "1.0.2" 991 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" 992 | dependencies: 993 | node-int64 "^0.4.0" 994 | 995 | bser@^2.0.0: 996 | version "2.0.0" 997 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 998 | dependencies: 999 | node-int64 "^0.4.0" 1000 | 1001 | buffer-shims@^1.0.0: 1002 | version "1.0.0" 1003 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 1004 | 1005 | builtin-modules@^1.0.0: 1006 | version "1.1.1" 1007 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 1008 | 1009 | caller-path@^0.1.0: 1010 | version "0.1.0" 1011 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 1012 | dependencies: 1013 | callsites "^0.2.0" 1014 | 1015 | callsites@^0.2.0: 1016 | version "0.2.0" 1017 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 1018 | 1019 | callsites@^2.0.0: 1020 | version "2.0.0" 1021 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 1022 | 1023 | camelcase@^1.0.2: 1024 | version "1.2.1" 1025 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 1026 | 1027 | camelcase@^3.0.0: 1028 | version "3.0.0" 1029 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 1030 | 1031 | caseless@~0.12.0: 1032 | version "0.12.0" 1033 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 1034 | 1035 | center-align@^0.1.1: 1036 | version "0.1.3" 1037 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 1038 | dependencies: 1039 | align-text "^0.1.3" 1040 | lazy-cache "^1.0.3" 1041 | 1042 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 1043 | version "1.1.3" 1044 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 1045 | dependencies: 1046 | ansi-styles "^2.2.1" 1047 | escape-string-regexp "^1.0.2" 1048 | has-ansi "^2.0.0" 1049 | strip-ansi "^3.0.0" 1050 | supports-color "^2.0.0" 1051 | 1052 | chokidar@^1.6.1: 1053 | version "1.6.1" 1054 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 1055 | dependencies: 1056 | anymatch "^1.3.0" 1057 | async-each "^1.0.0" 1058 | glob-parent "^2.0.0" 1059 | inherits "^2.0.1" 1060 | is-binary-path "^1.0.0" 1061 | is-glob "^2.0.0" 1062 | path-is-absolute "^1.0.0" 1063 | readdirp "^2.0.0" 1064 | optionalDependencies: 1065 | fsevents "^1.0.0" 1066 | 1067 | ci-info@^1.0.0: 1068 | version "1.0.0" 1069 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 1070 | 1071 | circular-json@^0.3.1: 1072 | version "0.3.1" 1073 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 1074 | 1075 | cli-cursor@^1.0.1: 1076 | version "1.0.2" 1077 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 1078 | dependencies: 1079 | restore-cursor "^1.0.1" 1080 | 1081 | cli-width@^2.0.0: 1082 | version "2.1.0" 1083 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 1084 | 1085 | cliui@^2.1.0: 1086 | version "2.1.0" 1087 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 1088 | dependencies: 1089 | center-align "^0.1.1" 1090 | right-align "^0.1.1" 1091 | wordwrap "0.0.2" 1092 | 1093 | cliui@^3.2.0: 1094 | version "3.2.0" 1095 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 1096 | dependencies: 1097 | string-width "^1.0.1" 1098 | strip-ansi "^3.0.1" 1099 | wrap-ansi "^2.0.0" 1100 | 1101 | co@^4.6.0: 1102 | version "4.6.0" 1103 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1104 | 1105 | code-point-at@^1.0.0: 1106 | version "1.1.0" 1107 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1108 | 1109 | color-convert@^1.0.0: 1110 | version "1.9.0" 1111 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 1112 | dependencies: 1113 | color-name "^1.1.1" 1114 | 1115 | color-name@^1.1.1: 1116 | version "1.1.2" 1117 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.2.tgz#5c8ab72b64bd2215d617ae9559ebb148475cf98d" 1118 | 1119 | combined-stream@^1.0.5, combined-stream@~1.0.5: 1120 | version "1.0.5" 1121 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 1122 | dependencies: 1123 | delayed-stream "~1.0.0" 1124 | 1125 | commander@^2.8.1: 1126 | version "2.9.0" 1127 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 1128 | dependencies: 1129 | graceful-readlink ">= 1.0.0" 1130 | 1131 | concat-map@0.0.1: 1132 | version "0.0.1" 1133 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1134 | 1135 | concat-stream@^1.4.6: 1136 | version "1.6.0" 1137 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 1138 | dependencies: 1139 | inherits "^2.0.3" 1140 | readable-stream "^2.2.2" 1141 | typedarray "^0.0.6" 1142 | 1143 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1144 | version "1.1.0" 1145 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1146 | 1147 | content-type-parser@^1.0.1: 1148 | version "1.0.1" 1149 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 1150 | 1151 | convert-source-map@^1.1.0: 1152 | version "1.4.0" 1153 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.4.0.tgz#e3dad195bf61bfe13a7a3c73e9876ec14a0268f3" 1154 | 1155 | core-js@^2.4.0: 1156 | version "2.4.1" 1157 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 1158 | 1159 | core-util-is@~1.0.0: 1160 | version "1.0.2" 1161 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1162 | 1163 | cryptiles@2.x.x: 1164 | version "2.0.5" 1165 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1166 | dependencies: 1167 | boom "2.x.x" 1168 | 1169 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 1170 | version "0.3.2" 1171 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 1172 | 1173 | "cssstyle@>= 0.2.37 < 0.3.0": 1174 | version "0.2.37" 1175 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 1176 | dependencies: 1177 | cssom "0.3.x" 1178 | 1179 | d@1: 1180 | version "1.0.0" 1181 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 1182 | dependencies: 1183 | es5-ext "^0.10.9" 1184 | 1185 | dashdash@^1.12.0: 1186 | version "1.14.1" 1187 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1188 | dependencies: 1189 | assert-plus "^1.0.0" 1190 | 1191 | debug@^2.1.1, debug@^2.2.0: 1192 | version "2.6.3" 1193 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.3.tgz#0f7eb8c30965ec08c72accfa0130c8b79984141d" 1194 | dependencies: 1195 | ms "0.7.2" 1196 | 1197 | debug@~2.2.0: 1198 | version "2.2.0" 1199 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 1200 | dependencies: 1201 | ms "0.7.1" 1202 | 1203 | decamelize@^1.0.0, decamelize@^1.1.1: 1204 | version "1.2.0" 1205 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1206 | 1207 | deep-extend@~0.4.0: 1208 | version "0.4.1" 1209 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 1210 | 1211 | deep-is@~0.1.3: 1212 | version "0.1.3" 1213 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1214 | 1215 | default-require-extensions@^1.0.0: 1216 | version "1.0.0" 1217 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 1218 | dependencies: 1219 | strip-bom "^2.0.0" 1220 | 1221 | define-properties@^1.1.2: 1222 | version "1.1.2" 1223 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 1224 | dependencies: 1225 | foreach "^2.0.5" 1226 | object-keys "^1.0.8" 1227 | 1228 | del@^2.0.2: 1229 | version "2.2.2" 1230 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1231 | dependencies: 1232 | globby "^5.0.0" 1233 | is-path-cwd "^1.0.0" 1234 | is-path-in-cwd "^1.0.0" 1235 | object-assign "^4.0.1" 1236 | pify "^2.0.0" 1237 | pinkie-promise "^2.0.0" 1238 | rimraf "^2.2.8" 1239 | 1240 | delayed-stream@~1.0.0: 1241 | version "1.0.0" 1242 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1243 | 1244 | delegates@^1.0.0: 1245 | version "1.0.0" 1246 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1247 | 1248 | detect-indent@^4.0.0: 1249 | version "4.0.0" 1250 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1251 | dependencies: 1252 | repeating "^2.0.0" 1253 | 1254 | diff@^3.0.0: 1255 | version "3.2.0" 1256 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 1257 | 1258 | doctrine@^1.2.2: 1259 | version "1.5.0" 1260 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 1261 | dependencies: 1262 | esutils "^2.0.2" 1263 | isarray "^1.0.0" 1264 | 1265 | ecc-jsbn@~0.1.1: 1266 | version "0.1.1" 1267 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1268 | dependencies: 1269 | jsbn "~0.1.0" 1270 | 1271 | "errno@>=0.1.1 <0.2.0-0": 1272 | version "0.1.4" 1273 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 1274 | dependencies: 1275 | prr "~0.0.0" 1276 | 1277 | error-ex@^1.2.0: 1278 | version "1.3.1" 1279 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1280 | dependencies: 1281 | is-arrayish "^0.2.1" 1282 | 1283 | es-abstract@^1.7.0: 1284 | version "1.7.0" 1285 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.7.0.tgz#dfade774e01bfcd97f96180298c449c8623fb94c" 1286 | dependencies: 1287 | es-to-primitive "^1.1.1" 1288 | function-bind "^1.1.0" 1289 | is-callable "^1.1.3" 1290 | is-regex "^1.0.3" 1291 | 1292 | es-to-primitive@^1.1.1: 1293 | version "1.1.1" 1294 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 1295 | dependencies: 1296 | is-callable "^1.1.1" 1297 | is-date-object "^1.0.1" 1298 | is-symbol "^1.0.1" 1299 | 1300 | es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14: 1301 | version "0.10.14" 1302 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.14.tgz#625bc9ab9cac0f6fb9dc271525823d1800b3d360" 1303 | dependencies: 1304 | es6-iterator "2" 1305 | es6-symbol "~3.1" 1306 | 1307 | es6-iterator@2, es6-iterator@^2.0.1, es6-iterator@~2.0.1: 1308 | version "2.0.1" 1309 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512" 1310 | dependencies: 1311 | d "1" 1312 | es5-ext "^0.10.14" 1313 | es6-symbol "^3.1" 1314 | 1315 | es6-map@^0.1.3: 1316 | version "0.1.5" 1317 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" 1318 | dependencies: 1319 | d "1" 1320 | es5-ext "~0.10.14" 1321 | es6-iterator "~2.0.1" 1322 | es6-set "~0.1.5" 1323 | es6-symbol "~3.1.1" 1324 | event-emitter "~0.3.5" 1325 | 1326 | es6-set@~0.1.5: 1327 | version "0.1.5" 1328 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" 1329 | dependencies: 1330 | d "1" 1331 | es5-ext "~0.10.14" 1332 | es6-iterator "~2.0.1" 1333 | es6-symbol "3.1.1" 1334 | event-emitter "~0.3.5" 1335 | 1336 | es6-symbol@3.1.1, es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1, es6-symbol@~3.1.1: 1337 | version "3.1.1" 1338 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 1339 | dependencies: 1340 | d "1" 1341 | es5-ext "~0.10.14" 1342 | 1343 | es6-weak-map@^2.0.1: 1344 | version "2.0.2" 1345 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 1346 | dependencies: 1347 | d "1" 1348 | es5-ext "^0.10.14" 1349 | es6-iterator "^2.0.1" 1350 | es6-symbol "^3.1.1" 1351 | 1352 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1353 | version "1.0.5" 1354 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1355 | 1356 | escodegen@^1.6.1: 1357 | version "1.8.1" 1358 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 1359 | dependencies: 1360 | esprima "^2.7.1" 1361 | estraverse "^1.9.1" 1362 | esutils "^2.0.2" 1363 | optionator "^0.8.1" 1364 | optionalDependencies: 1365 | source-map "~0.2.0" 1366 | 1367 | escope@^3.6.0: 1368 | version "3.6.0" 1369 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 1370 | dependencies: 1371 | es6-map "^0.1.3" 1372 | es6-weak-map "^2.0.1" 1373 | esrecurse "^4.1.0" 1374 | estraverse "^4.1.1" 1375 | 1376 | "eslint-config-standard-jsx@>= 1", eslint-config-standard-jsx@^3.0.0: 1377 | version "3.3.0" 1378 | resolved "https://registry.yarnpkg.com/eslint-config-standard-jsx/-/eslint-config-standard-jsx-3.3.0.tgz#cab0801a15a360bf63facb97ab22fbdd88d8a5e0" 1379 | 1380 | "eslint-config-standard-react@>= 2": 1381 | version "4.3.0" 1382 | resolved "https://registry.yarnpkg.com/eslint-config-standard-react/-/eslint-config-standard-react-4.3.0.tgz#7e0d3575f15a3c0b6639ccb63949dfb5ba3a0a8a" 1383 | dependencies: 1384 | eslint-config-standard-jsx "^3.0.0" 1385 | 1386 | "eslint-config-standard@>= 5": 1387 | version "7.0.1" 1388 | resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-7.0.1.tgz#6cec96084de9ac862c33ccb953d13a7c59872342" 1389 | 1390 | eslint-config-taller@^1.0.4: 1391 | version "1.0.4" 1392 | resolved "https://registry.yarnpkg.com/eslint-config-taller/-/eslint-config-taller-1.0.4.tgz#4dc49afed2dd8aa2fe7b0eaf75397768b2069dc5" 1393 | dependencies: 1394 | babel-eslint "^7.1.0" 1395 | eslint ">= 3" 1396 | eslint-config-standard ">= 5" 1397 | eslint-config-standard-jsx ">= 1" 1398 | eslint-config-standard-react ">= 2" 1399 | eslint-plugin-promise ">= 1" 1400 | eslint-plugin-react ">= 5" 1401 | eslint-plugin-standard ">= 1" 1402 | 1403 | "eslint-plugin-promise@>= 1": 1404 | version "3.5.0" 1405 | resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-3.5.0.tgz#78fbb6ffe047201627569e85a6c5373af2a68fca" 1406 | 1407 | "eslint-plugin-react@>= 5": 1408 | version "6.10.0" 1409 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-6.10.0.tgz#9c48b48d101554b5355413e7c64238abde6ef1ef" 1410 | dependencies: 1411 | array.prototype.find "^2.0.1" 1412 | doctrine "^1.2.2" 1413 | has "^1.0.1" 1414 | jsx-ast-utils "^1.3.4" 1415 | object.assign "^4.0.4" 1416 | 1417 | "eslint-plugin-standard@>= 1": 1418 | version "2.1.1" 1419 | resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-2.1.1.tgz#97960b1537e1718bb633877d0a650050effff3b0" 1420 | 1421 | "eslint@>= 3", eslint@^3.10.2: 1422 | version "3.17.1" 1423 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.17.1.tgz#b80ae12d9c406d858406fccda627afce33ea10ea" 1424 | dependencies: 1425 | babel-code-frame "^6.16.0" 1426 | chalk "^1.1.3" 1427 | concat-stream "^1.4.6" 1428 | debug "^2.1.1" 1429 | doctrine "^1.2.2" 1430 | escope "^3.6.0" 1431 | espree "^3.4.0" 1432 | estraverse "^4.2.0" 1433 | esutils "^2.0.2" 1434 | file-entry-cache "^2.0.0" 1435 | glob "^7.0.3" 1436 | globals "^9.14.0" 1437 | ignore "^3.2.0" 1438 | imurmurhash "^0.1.4" 1439 | inquirer "^0.12.0" 1440 | is-my-json-valid "^2.10.0" 1441 | is-resolvable "^1.0.0" 1442 | js-yaml "^3.5.1" 1443 | json-stable-stringify "^1.0.0" 1444 | levn "^0.3.0" 1445 | lodash "^4.0.0" 1446 | mkdirp "^0.5.0" 1447 | natural-compare "^1.4.0" 1448 | optionator "^0.8.2" 1449 | path-is-inside "^1.0.1" 1450 | pluralize "^1.2.1" 1451 | progress "^1.1.8" 1452 | require-uncached "^1.0.2" 1453 | shelljs "^0.7.5" 1454 | strip-bom "^3.0.0" 1455 | strip-json-comments "~2.0.1" 1456 | table "^3.7.8" 1457 | text-table "~0.2.0" 1458 | user-home "^2.0.0" 1459 | 1460 | espree@^3.4.0: 1461 | version "3.4.0" 1462 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.0.tgz#41656fa5628e042878025ef467e78f125cb86e1d" 1463 | dependencies: 1464 | acorn "4.0.4" 1465 | acorn-jsx "^3.0.0" 1466 | 1467 | esprima@^2.7.1: 1468 | version "2.7.3" 1469 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1470 | 1471 | esprima@^3.1.1: 1472 | version "3.1.3" 1473 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1474 | 1475 | esrecurse@^4.1.0: 1476 | version "4.1.0" 1477 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 1478 | dependencies: 1479 | estraverse "~4.1.0" 1480 | object-assign "^4.0.1" 1481 | 1482 | estraverse@^1.9.1: 1483 | version "1.9.3" 1484 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 1485 | 1486 | estraverse@^4.1.1, estraverse@^4.2.0: 1487 | version "4.2.0" 1488 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1489 | 1490 | estraverse@~4.1.0: 1491 | version "4.1.1" 1492 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 1493 | 1494 | esutils@^2.0.2: 1495 | version "2.0.2" 1496 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1497 | 1498 | event-emitter@~0.3.5: 1499 | version "0.3.5" 1500 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 1501 | dependencies: 1502 | d "1" 1503 | es5-ext "~0.10.14" 1504 | 1505 | exec-sh@^0.2.0: 1506 | version "0.2.0" 1507 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" 1508 | dependencies: 1509 | merge "^1.1.3" 1510 | 1511 | exit-hook@^1.0.0: 1512 | version "1.1.1" 1513 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1514 | 1515 | expand-brackets@^0.1.4: 1516 | version "0.1.5" 1517 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1518 | dependencies: 1519 | is-posix-bracket "^0.1.0" 1520 | 1521 | expand-range@^1.8.1: 1522 | version "1.8.2" 1523 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1524 | dependencies: 1525 | fill-range "^2.1.0" 1526 | 1527 | extend@~3.0.0: 1528 | version "3.0.0" 1529 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 1530 | 1531 | extglob@^0.3.1: 1532 | version "0.3.2" 1533 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1534 | dependencies: 1535 | is-extglob "^1.0.0" 1536 | 1537 | extsprintf@1.0.2: 1538 | version "1.0.2" 1539 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1540 | 1541 | fast-json-stable-stringify@^2.0.0: 1542 | version "2.0.0" 1543 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1544 | 1545 | fast-levenshtein@~2.0.4: 1546 | version "2.0.6" 1547 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1548 | 1549 | fb-watchman@^1.8.0: 1550 | version "1.9.2" 1551 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383" 1552 | dependencies: 1553 | bser "1.0.2" 1554 | 1555 | fb-watchman@^2.0.0: 1556 | version "2.0.0" 1557 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 1558 | dependencies: 1559 | bser "^2.0.0" 1560 | 1561 | fclone@^1.0.11: 1562 | version "1.0.11" 1563 | resolved "https://registry.yarnpkg.com/fclone/-/fclone-1.0.11.tgz#10e85da38bfea7fc599341c296ee1d77266ee640" 1564 | 1565 | figures@^1.3.5: 1566 | version "1.7.0" 1567 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1568 | dependencies: 1569 | escape-string-regexp "^1.0.5" 1570 | object-assign "^4.1.0" 1571 | 1572 | file-entry-cache@^2.0.0: 1573 | version "2.0.0" 1574 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1575 | dependencies: 1576 | flat-cache "^1.2.1" 1577 | object-assign "^4.0.1" 1578 | 1579 | filename-regex@^2.0.0: 1580 | version "2.0.0" 1581 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 1582 | 1583 | fileset@^2.0.2: 1584 | version "2.0.3" 1585 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 1586 | dependencies: 1587 | glob "^7.0.3" 1588 | minimatch "^3.0.3" 1589 | 1590 | fill-range@^2.1.0: 1591 | version "2.2.3" 1592 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1593 | dependencies: 1594 | is-number "^2.1.0" 1595 | isobject "^2.0.0" 1596 | randomatic "^1.1.3" 1597 | repeat-element "^1.1.2" 1598 | repeat-string "^1.5.2" 1599 | 1600 | find-parent-dir@^0.3.0: 1601 | version "0.3.0" 1602 | resolved "https://registry.yarnpkg.com/find-parent-dir/-/find-parent-dir-0.3.0.tgz#33c44b429ab2b2f0646299c5f9f718f376ff8d54" 1603 | 1604 | find-up@^1.0.0: 1605 | version "1.1.2" 1606 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1607 | dependencies: 1608 | path-exists "^2.0.0" 1609 | pinkie-promise "^2.0.0" 1610 | 1611 | find-up@^2.1.0: 1612 | version "2.1.0" 1613 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1614 | dependencies: 1615 | locate-path "^2.0.0" 1616 | 1617 | flat-cache@^1.2.1: 1618 | version "1.2.2" 1619 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 1620 | dependencies: 1621 | circular-json "^0.3.1" 1622 | del "^2.0.2" 1623 | graceful-fs "^4.1.2" 1624 | write "^0.2.1" 1625 | 1626 | for-in@^1.0.1: 1627 | version "1.0.2" 1628 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1629 | 1630 | for-own@^0.1.4: 1631 | version "0.1.5" 1632 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1633 | dependencies: 1634 | for-in "^1.0.1" 1635 | 1636 | foreach@^2.0.5: 1637 | version "2.0.5" 1638 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1639 | 1640 | forever-agent@~0.6.1: 1641 | version "0.6.1" 1642 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1643 | 1644 | form-data@~2.1.1: 1645 | version "2.1.2" 1646 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 1647 | dependencies: 1648 | asynckit "^0.4.0" 1649 | combined-stream "^1.0.5" 1650 | mime-types "^2.1.12" 1651 | 1652 | fs-readdir-recursive@^1.0.0: 1653 | version "1.0.0" 1654 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1655 | 1656 | fs.realpath@^1.0.0: 1657 | version "1.0.0" 1658 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1659 | 1660 | fsevents@^1.0.0: 1661 | version "1.1.1" 1662 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff" 1663 | dependencies: 1664 | nan "^2.3.0" 1665 | node-pre-gyp "^0.6.29" 1666 | 1667 | fstream-ignore@~1.0.5: 1668 | version "1.0.5" 1669 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1670 | dependencies: 1671 | fstream "^1.0.0" 1672 | inherits "2" 1673 | minimatch "^3.0.0" 1674 | 1675 | fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.10: 1676 | version "1.0.11" 1677 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1678 | dependencies: 1679 | graceful-fs "^4.1.2" 1680 | inherits "~2.0.0" 1681 | mkdirp ">=0.5 0" 1682 | rimraf "2" 1683 | 1684 | function-bind@^1.0.2, function-bind@^1.1.0: 1685 | version "1.1.0" 1686 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 1687 | 1688 | gauge@~2.7.1: 1689 | version "2.7.3" 1690 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.3.tgz#1c23855f962f17b3ad3d0dc7443f304542edfe09" 1691 | dependencies: 1692 | aproba "^1.0.3" 1693 | console-control-strings "^1.0.0" 1694 | has-unicode "^2.0.0" 1695 | object-assign "^4.1.0" 1696 | signal-exit "^3.0.0" 1697 | string-width "^1.0.1" 1698 | strip-ansi "^3.0.1" 1699 | wide-align "^1.1.0" 1700 | 1701 | generate-function@^2.0.0: 1702 | version "2.0.0" 1703 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1704 | 1705 | generate-object-property@^1.1.0: 1706 | version "1.2.0" 1707 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1708 | dependencies: 1709 | is-property "^1.0.0" 1710 | 1711 | get-caller-file@^1.0.1: 1712 | version "1.0.2" 1713 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1714 | 1715 | getpass@^0.1.1: 1716 | version "0.1.6" 1717 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 1718 | dependencies: 1719 | assert-plus "^1.0.0" 1720 | 1721 | glob-base@^0.3.0: 1722 | version "0.3.0" 1723 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1724 | dependencies: 1725 | glob-parent "^2.0.0" 1726 | is-glob "^2.0.0" 1727 | 1728 | glob-parent@^2.0.0: 1729 | version "2.0.0" 1730 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1731 | dependencies: 1732 | is-glob "^2.0.0" 1733 | 1734 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5: 1735 | version "7.1.1" 1736 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1737 | dependencies: 1738 | fs.realpath "^1.0.0" 1739 | inflight "^1.0.4" 1740 | inherits "2" 1741 | minimatch "^3.0.2" 1742 | once "^1.3.0" 1743 | path-is-absolute "^1.0.0" 1744 | 1745 | globals@^9.0.0, globals@^9.14.0: 1746 | version "9.16.0" 1747 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.16.0.tgz#63e903658171ec2d9f51b1d31de5e2b8dc01fb80" 1748 | 1749 | globby@^5.0.0: 1750 | version "5.0.0" 1751 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1752 | dependencies: 1753 | array-union "^1.0.1" 1754 | arrify "^1.0.0" 1755 | glob "^7.0.3" 1756 | object-assign "^4.0.1" 1757 | pify "^2.0.0" 1758 | pinkie-promise "^2.0.0" 1759 | 1760 | graceful-fs@^4.1.2, graceful-fs@^4.1.4, graceful-fs@^4.1.6: 1761 | version "4.1.11" 1762 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1763 | 1764 | "graceful-readlink@>= 1.0.0": 1765 | version "1.0.1" 1766 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1767 | 1768 | graphql-anywhere@^4.1.19: 1769 | version "4.1.19" 1770 | resolved "https://registry.yarnpkg.com/graphql-anywhere/-/graphql-anywhere-4.1.19.tgz#5f6ca3b58218e5449f4798e3c6d942fcd2fef082" 1771 | dependencies: 1772 | apollo-utilities "^1.0.21" 1773 | 1774 | graphql-tag@^2.9.2: 1775 | version "2.9.2" 1776 | resolved "https://registry.yarnpkg.com/graphql-tag/-/graphql-tag-2.9.2.tgz#2f60a5a981375f430bf1e6e95992427dc18af686" 1777 | 1778 | graphql@^14.0.2: 1779 | version "14.0.2" 1780 | resolved "https://registry.yarnpkg.com/graphql/-/graphql-14.0.2.tgz#7dded337a4c3fd2d075692323384034b357f5650" 1781 | dependencies: 1782 | iterall "^1.2.2" 1783 | 1784 | growly@^1.3.0: 1785 | version "1.3.0" 1786 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1787 | 1788 | handlebars@^4.0.3: 1789 | version "4.0.6" 1790 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.6.tgz#2ce4484850537f9c97a8026d5399b935c4ed4ed7" 1791 | dependencies: 1792 | async "^1.4.0" 1793 | optimist "^0.6.1" 1794 | source-map "^0.4.4" 1795 | optionalDependencies: 1796 | uglify-js "^2.6" 1797 | 1798 | har-schema@^1.0.5: 1799 | version "1.0.5" 1800 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1801 | 1802 | har-validator@~4.2.1: 1803 | version "4.2.1" 1804 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1805 | dependencies: 1806 | ajv "^4.9.1" 1807 | har-schema "^1.0.5" 1808 | 1809 | has-ansi@^2.0.0: 1810 | version "2.0.0" 1811 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1812 | dependencies: 1813 | ansi-regex "^2.0.0" 1814 | 1815 | has-flag@^1.0.0: 1816 | version "1.0.0" 1817 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1818 | 1819 | has-unicode@^2.0.0: 1820 | version "2.0.1" 1821 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1822 | 1823 | has@^1.0.1: 1824 | version "1.0.1" 1825 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1826 | dependencies: 1827 | function-bind "^1.0.2" 1828 | 1829 | hawk@~3.1.3: 1830 | version "3.1.3" 1831 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1832 | dependencies: 1833 | boom "2.x.x" 1834 | cryptiles "2.x.x" 1835 | hoek "2.x.x" 1836 | sntp "1.x.x" 1837 | 1838 | hoek@2.x.x: 1839 | version "2.16.3" 1840 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1841 | 1842 | home-or-tmp@^2.0.0: 1843 | version "2.0.0" 1844 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1845 | dependencies: 1846 | os-homedir "^1.0.0" 1847 | os-tmpdir "^1.0.1" 1848 | 1849 | hosted-git-info@^2.1.4: 1850 | version "2.2.0" 1851 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.2.0.tgz#7a0d097863d886c0fabbdcd37bf1758d8becf8a5" 1852 | 1853 | html-encoding-sniffer@^1.0.1: 1854 | version "1.0.1" 1855 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 1856 | dependencies: 1857 | whatwg-encoding "^1.0.1" 1858 | 1859 | http-signature@~1.1.0: 1860 | version "1.1.1" 1861 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1862 | dependencies: 1863 | assert-plus "^0.2.0" 1864 | jsprim "^1.2.2" 1865 | sshpk "^1.7.0" 1866 | 1867 | husky@^0.13.2: 1868 | version "0.13.2" 1869 | resolved "https://registry.yarnpkg.com/husky/-/husky-0.13.2.tgz#9dcf212f88e61dba36f17be1a202ed61ff6c0661" 1870 | dependencies: 1871 | chalk "^1.1.3" 1872 | find-parent-dir "^0.3.0" 1873 | is-ci "^1.0.9" 1874 | normalize-path "^1.0.0" 1875 | 1876 | iconv-lite@0.4.13: 1877 | version "0.4.13" 1878 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 1879 | 1880 | ignore@^3.2.0: 1881 | version "3.2.6" 1882 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.2.6.tgz#26e8da0644be0bb4cb39516f6c79f0e0f4ffe48c" 1883 | 1884 | imurmurhash@^0.1.4: 1885 | version "0.1.4" 1886 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1887 | 1888 | inflight@^1.0.4: 1889 | version "1.0.6" 1890 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1891 | dependencies: 1892 | once "^1.3.0" 1893 | wrappy "1" 1894 | 1895 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1: 1896 | version "2.0.3" 1897 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1898 | 1899 | ini@~1.3.0: 1900 | version "1.3.4" 1901 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1902 | 1903 | inquirer@^0.12.0: 1904 | version "0.12.0" 1905 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 1906 | dependencies: 1907 | ansi-escapes "^1.1.0" 1908 | ansi-regex "^2.0.0" 1909 | chalk "^1.0.0" 1910 | cli-cursor "^1.0.1" 1911 | cli-width "^2.0.0" 1912 | figures "^1.3.5" 1913 | lodash "^4.3.0" 1914 | readline2 "^1.0.1" 1915 | run-async "^0.1.0" 1916 | rx-lite "^3.1.2" 1917 | string-width "^1.0.1" 1918 | strip-ansi "^3.0.0" 1919 | through "^2.3.6" 1920 | 1921 | interpret@^1.0.0: 1922 | version "1.0.1" 1923 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.1.tgz#d579fb7f693b858004947af39fa0db49f795602c" 1924 | 1925 | invariant@^2.2.0: 1926 | version "2.2.2" 1927 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1928 | dependencies: 1929 | loose-envify "^1.0.0" 1930 | 1931 | invert-kv@^1.0.0: 1932 | version "1.0.0" 1933 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1934 | 1935 | is-arrayish@^0.2.1: 1936 | version "0.2.1" 1937 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1938 | 1939 | is-binary-path@^1.0.0: 1940 | version "1.0.1" 1941 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1942 | dependencies: 1943 | binary-extensions "^1.0.0" 1944 | 1945 | is-buffer@^1.0.2: 1946 | version "1.1.5" 1947 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1948 | 1949 | is-builtin-module@^1.0.0: 1950 | version "1.0.0" 1951 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1952 | dependencies: 1953 | builtin-modules "^1.0.0" 1954 | 1955 | is-callable@^1.1.1, is-callable@^1.1.3: 1956 | version "1.1.3" 1957 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 1958 | 1959 | is-ci@^1.0.9: 1960 | version "1.0.10" 1961 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1962 | dependencies: 1963 | ci-info "^1.0.0" 1964 | 1965 | is-date-object@^1.0.1: 1966 | version "1.0.1" 1967 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1968 | 1969 | is-dotfile@^1.0.0: 1970 | version "1.0.2" 1971 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1972 | 1973 | is-equal-shallow@^0.1.3: 1974 | version "0.1.3" 1975 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1976 | dependencies: 1977 | is-primitive "^2.0.0" 1978 | 1979 | is-extendable@^0.1.1: 1980 | version "0.1.1" 1981 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1982 | 1983 | is-extglob@^1.0.0: 1984 | version "1.0.0" 1985 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1986 | 1987 | is-finite@^1.0.0: 1988 | version "1.0.2" 1989 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1990 | dependencies: 1991 | number-is-nan "^1.0.0" 1992 | 1993 | is-fullwidth-code-point@^1.0.0: 1994 | version "1.0.0" 1995 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1996 | dependencies: 1997 | number-is-nan "^1.0.0" 1998 | 1999 | is-fullwidth-code-point@^2.0.0: 2000 | version "2.0.0" 2001 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 2002 | 2003 | is-glob@^2.0.0, is-glob@^2.0.1: 2004 | version "2.0.1" 2005 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 2006 | dependencies: 2007 | is-extglob "^1.0.0" 2008 | 2009 | is-my-json-valid@^2.10.0: 2010 | version "2.16.0" 2011 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693" 2012 | dependencies: 2013 | generate-function "^2.0.0" 2014 | generate-object-property "^1.1.0" 2015 | jsonpointer "^4.0.0" 2016 | xtend "^4.0.0" 2017 | 2018 | is-number@^2.0.2, is-number@^2.1.0: 2019 | version "2.1.0" 2020 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 2021 | dependencies: 2022 | kind-of "^3.0.2" 2023 | 2024 | is-path-cwd@^1.0.0: 2025 | version "1.0.0" 2026 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 2027 | 2028 | is-path-in-cwd@^1.0.0: 2029 | version "1.0.0" 2030 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 2031 | dependencies: 2032 | is-path-inside "^1.0.0" 2033 | 2034 | is-path-inside@^1.0.0: 2035 | version "1.0.0" 2036 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 2037 | dependencies: 2038 | path-is-inside "^1.0.1" 2039 | 2040 | is-posix-bracket@^0.1.0: 2041 | version "0.1.1" 2042 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2043 | 2044 | is-primitive@^2.0.0: 2045 | version "2.0.0" 2046 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2047 | 2048 | is-property@^1.0.0: 2049 | version "1.0.2" 2050 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 2051 | 2052 | is-regex@^1.0.3: 2053 | version "1.0.4" 2054 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 2055 | dependencies: 2056 | has "^1.0.1" 2057 | 2058 | is-resolvable@^1.0.0: 2059 | version "1.0.0" 2060 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 2061 | dependencies: 2062 | tryit "^1.0.1" 2063 | 2064 | is-symbol@^1.0.1: 2065 | version "1.0.1" 2066 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 2067 | 2068 | is-typedarray@~1.0.0: 2069 | version "1.0.0" 2070 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2071 | 2072 | is-utf8@^0.2.0: 2073 | version "0.2.1" 2074 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 2075 | 2076 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2077 | version "1.0.0" 2078 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2079 | 2080 | isexe@^1.1.1: 2081 | version "1.1.2" 2082 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-1.1.2.tgz#36f3e22e60750920f5e7241a476a8c6a42275ad0" 2083 | 2084 | isobject@^2.0.0: 2085 | version "2.1.0" 2086 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2087 | dependencies: 2088 | isarray "1.0.0" 2089 | 2090 | isstream@~0.1.2: 2091 | version "0.1.2" 2092 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2093 | 2094 | istanbul-api@^1.1.0-alpha.1: 2095 | version "1.1.1" 2096 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.1.tgz#d36e2f1560d1a43ce304c4ff7338182de61c8f73" 2097 | dependencies: 2098 | async "^2.1.4" 2099 | fileset "^2.0.2" 2100 | istanbul-lib-coverage "^1.0.0" 2101 | istanbul-lib-hook "^1.0.0" 2102 | istanbul-lib-instrument "^1.3.0" 2103 | istanbul-lib-report "^1.0.0-alpha.3" 2104 | istanbul-lib-source-maps "^1.1.0" 2105 | istanbul-reports "^1.0.0" 2106 | js-yaml "^3.7.0" 2107 | mkdirp "^0.5.1" 2108 | once "^1.4.0" 2109 | 2110 | istanbul-lib-coverage@^1.0.0, istanbul-lib-coverage@^1.0.0-alpha, istanbul-lib-coverage@^1.0.0-alpha.0: 2111 | version "1.0.1" 2112 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.0.1.tgz#f263efb519c051c5f1f3343034fc40e7b43ff212" 2113 | 2114 | istanbul-lib-hook@^1.0.0: 2115 | version "1.0.0" 2116 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.0.tgz#fc5367ee27f59268e8f060b0c7aaf051d9c425c5" 2117 | dependencies: 2118 | append-transform "^0.4.0" 2119 | 2120 | istanbul-lib-instrument@^1.1.1, istanbul-lib-instrument@^1.3.0, istanbul-lib-instrument@^1.4.2: 2121 | version "1.4.2" 2122 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.4.2.tgz#0e2fdfac93c1dabf2e31578637dc78a19089f43e" 2123 | dependencies: 2124 | babel-generator "^6.18.0" 2125 | babel-template "^6.16.0" 2126 | babel-traverse "^6.18.0" 2127 | babel-types "^6.18.0" 2128 | babylon "^6.13.0" 2129 | istanbul-lib-coverage "^1.0.0" 2130 | semver "^5.3.0" 2131 | 2132 | istanbul-lib-report@^1.0.0-alpha.3: 2133 | version "1.0.0-alpha.3" 2134 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.0.0-alpha.3.tgz#32d5f6ec7f33ca3a602209e278b2e6ff143498af" 2135 | dependencies: 2136 | async "^1.4.2" 2137 | istanbul-lib-coverage "^1.0.0-alpha" 2138 | mkdirp "^0.5.1" 2139 | path-parse "^1.0.5" 2140 | rimraf "^2.4.3" 2141 | supports-color "^3.1.2" 2142 | 2143 | istanbul-lib-source-maps@^1.1.0: 2144 | version "1.1.0" 2145 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.1.0.tgz#9d429218f35b823560ea300a96ff0c3bbdab785f" 2146 | dependencies: 2147 | istanbul-lib-coverage "^1.0.0-alpha.0" 2148 | mkdirp "^0.5.1" 2149 | rimraf "^2.4.4" 2150 | source-map "^0.5.3" 2151 | 2152 | istanbul-reports@^1.0.0: 2153 | version "1.0.1" 2154 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.0.1.tgz#9a17176bc4a6cbebdae52b2f15961d52fa623fbc" 2155 | dependencies: 2156 | handlebars "^4.0.3" 2157 | 2158 | iterall@^1.2.2: 2159 | version "1.2.2" 2160 | resolved "https://registry.yarnpkg.com/iterall/-/iterall-1.2.2.tgz#92d70deb8028e0c39ff3164fdbf4d8b088130cd7" 2161 | 2162 | jest-changed-files@^19.0.2: 2163 | version "19.0.2" 2164 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-19.0.2.tgz#16c54c84c3270be408e06d2e8af3f3e37a885824" 2165 | 2166 | jest-cli@^19.0.2: 2167 | version "19.0.2" 2168 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-19.0.2.tgz#cc3620b62acac5f2d93a548cb6ef697d4ec85443" 2169 | dependencies: 2170 | ansi-escapes "^1.4.0" 2171 | callsites "^2.0.0" 2172 | chalk "^1.1.1" 2173 | graceful-fs "^4.1.6" 2174 | is-ci "^1.0.9" 2175 | istanbul-api "^1.1.0-alpha.1" 2176 | istanbul-lib-coverage "^1.0.0" 2177 | istanbul-lib-instrument "^1.1.1" 2178 | jest-changed-files "^19.0.2" 2179 | jest-config "^19.0.2" 2180 | jest-environment-jsdom "^19.0.2" 2181 | jest-haste-map "^19.0.0" 2182 | jest-jasmine2 "^19.0.2" 2183 | jest-message-util "^19.0.0" 2184 | jest-regex-util "^19.0.0" 2185 | jest-resolve-dependencies "^19.0.0" 2186 | jest-runtime "^19.0.2" 2187 | jest-snapshot "^19.0.2" 2188 | jest-util "^19.0.2" 2189 | micromatch "^2.3.11" 2190 | node-notifier "^5.0.1" 2191 | slash "^1.0.0" 2192 | string-length "^1.0.1" 2193 | throat "^3.0.0" 2194 | which "^1.1.1" 2195 | worker-farm "^1.3.1" 2196 | yargs "^6.3.0" 2197 | 2198 | jest-config@^19.0.2: 2199 | version "19.0.2" 2200 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-19.0.2.tgz#1b9bd2db0ddd16df61c2b10a54009e1768da6411" 2201 | dependencies: 2202 | chalk "^1.1.1" 2203 | jest-environment-jsdom "^19.0.2" 2204 | jest-environment-node "^19.0.2" 2205 | jest-jasmine2 "^19.0.2" 2206 | jest-regex-util "^19.0.0" 2207 | jest-resolve "^19.0.2" 2208 | jest-validate "^19.0.2" 2209 | pretty-format "^19.0.0" 2210 | 2211 | jest-diff@^19.0.0: 2212 | version "19.0.0" 2213 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-19.0.0.tgz#d1563cfc56c8b60232988fbc05d4d16ed90f063c" 2214 | dependencies: 2215 | chalk "^1.1.3" 2216 | diff "^3.0.0" 2217 | jest-matcher-utils "^19.0.0" 2218 | pretty-format "^19.0.0" 2219 | 2220 | jest-environment-jsdom@^19.0.2: 2221 | version "19.0.2" 2222 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-19.0.2.tgz#ceda859c4a4b94ab35e4de7dab54b926f293e4a3" 2223 | dependencies: 2224 | jest-mock "^19.0.0" 2225 | jest-util "^19.0.2" 2226 | jsdom "^9.11.0" 2227 | 2228 | jest-environment-node@^19.0.2: 2229 | version "19.0.2" 2230 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-19.0.2.tgz#6e84079db87ed21d0c05e1f9669f207b116fe99b" 2231 | dependencies: 2232 | jest-mock "^19.0.0" 2233 | jest-util "^19.0.2" 2234 | 2235 | jest-file-exists@^19.0.0: 2236 | version "19.0.0" 2237 | resolved "https://registry.yarnpkg.com/jest-file-exists/-/jest-file-exists-19.0.0.tgz#cca2e587a11ec92e24cfeab3f8a94d657f3fceb8" 2238 | 2239 | jest-haste-map@^19.0.0: 2240 | version "19.0.0" 2241 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-19.0.0.tgz#adde00b62b1fe04432a104b3254fc5004514b55e" 2242 | dependencies: 2243 | fb-watchman "^2.0.0" 2244 | graceful-fs "^4.1.6" 2245 | micromatch "^2.3.11" 2246 | sane "~1.5.0" 2247 | worker-farm "^1.3.1" 2248 | 2249 | jest-jasmine2@^19.0.2: 2250 | version "19.0.2" 2251 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-19.0.2.tgz#167991ac825981fb1a800af126e83afcca832c73" 2252 | dependencies: 2253 | graceful-fs "^4.1.6" 2254 | jest-matcher-utils "^19.0.0" 2255 | jest-matchers "^19.0.0" 2256 | jest-message-util "^19.0.0" 2257 | jest-snapshot "^19.0.2" 2258 | 2259 | jest-matcher-utils@^19.0.0: 2260 | version "19.0.0" 2261 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-19.0.0.tgz#5ecd9b63565d2b001f61fbf7ec4c7f537964564d" 2262 | dependencies: 2263 | chalk "^1.1.3" 2264 | pretty-format "^19.0.0" 2265 | 2266 | jest-matchers@^19.0.0: 2267 | version "19.0.0" 2268 | resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-19.0.0.tgz#c74ecc6ebfec06f384767ba4d6fa4a42d6755754" 2269 | dependencies: 2270 | jest-diff "^19.0.0" 2271 | jest-matcher-utils "^19.0.0" 2272 | jest-message-util "^19.0.0" 2273 | jest-regex-util "^19.0.0" 2274 | 2275 | jest-message-util@^19.0.0: 2276 | version "19.0.0" 2277 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-19.0.0.tgz#721796b89c0e4d761606f9ba8cb828a3b6246416" 2278 | dependencies: 2279 | chalk "^1.1.1" 2280 | micromatch "^2.3.11" 2281 | 2282 | jest-mock@^19.0.0: 2283 | version "19.0.0" 2284 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-19.0.0.tgz#67038641e9607ab2ce08ec4a8cb83aabbc899d01" 2285 | 2286 | jest-regex-util@^19.0.0: 2287 | version "19.0.0" 2288 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-19.0.0.tgz#b7754587112aede1456510bb1f6afe74ef598691" 2289 | 2290 | jest-resolve-dependencies@^19.0.0: 2291 | version "19.0.0" 2292 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-19.0.0.tgz#a741ad1fa094140e64ecf2642a504f834ece22ee" 2293 | dependencies: 2294 | jest-file-exists "^19.0.0" 2295 | 2296 | jest-resolve@^19.0.2: 2297 | version "19.0.2" 2298 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-19.0.2.tgz#5793575de4f07aec32f7d7ff0c6c181963eefb3c" 2299 | dependencies: 2300 | browser-resolve "^1.11.2" 2301 | jest-haste-map "^19.0.0" 2302 | resolve "^1.2.0" 2303 | 2304 | jest-runtime@^19.0.2: 2305 | version "19.0.2" 2306 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-19.0.2.tgz#d9a43e72de416d27d196fd9c7940d98fe6685407" 2307 | dependencies: 2308 | babel-core "^6.0.0" 2309 | babel-jest "^19.0.0" 2310 | babel-plugin-istanbul "^4.0.0" 2311 | chalk "^1.1.3" 2312 | graceful-fs "^4.1.6" 2313 | jest-config "^19.0.2" 2314 | jest-file-exists "^19.0.0" 2315 | jest-haste-map "^19.0.0" 2316 | jest-regex-util "^19.0.0" 2317 | jest-resolve "^19.0.2" 2318 | jest-util "^19.0.2" 2319 | json-stable-stringify "^1.0.1" 2320 | micromatch "^2.3.11" 2321 | strip-bom "3.0.0" 2322 | yargs "^6.3.0" 2323 | 2324 | jest-snapshot@^19.0.2: 2325 | version "19.0.2" 2326 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-19.0.2.tgz#9c1b216214f7187c38bfd5c70b1efab16b0ff50b" 2327 | dependencies: 2328 | chalk "^1.1.3" 2329 | jest-diff "^19.0.0" 2330 | jest-file-exists "^19.0.0" 2331 | jest-matcher-utils "^19.0.0" 2332 | jest-util "^19.0.2" 2333 | natural-compare "^1.4.0" 2334 | pretty-format "^19.0.0" 2335 | 2336 | jest-util@^19.0.2: 2337 | version "19.0.2" 2338 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-19.0.2.tgz#e0a0232a2ab9e6b2b53668bdb3534c2b5977ed41" 2339 | dependencies: 2340 | chalk "^1.1.1" 2341 | graceful-fs "^4.1.6" 2342 | jest-file-exists "^19.0.0" 2343 | jest-message-util "^19.0.0" 2344 | jest-mock "^19.0.0" 2345 | jest-validate "^19.0.2" 2346 | leven "^2.0.0" 2347 | mkdirp "^0.5.1" 2348 | 2349 | jest-validate@^19.0.2: 2350 | version "19.0.2" 2351 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-19.0.2.tgz#dc534df5f1278d5b63df32b14241d4dbf7244c0c" 2352 | dependencies: 2353 | chalk "^1.1.1" 2354 | jest-matcher-utils "^19.0.0" 2355 | leven "^2.0.0" 2356 | pretty-format "^19.0.0" 2357 | 2358 | jest@^19.0.2: 2359 | version "19.0.2" 2360 | resolved "https://registry.yarnpkg.com/jest/-/jest-19.0.2.tgz#b794faaf8ff461e7388f28beef559a54f20b2c10" 2361 | dependencies: 2362 | jest-cli "^19.0.2" 2363 | 2364 | jodid25519@^1.0.0: 2365 | version "1.0.2" 2366 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 2367 | dependencies: 2368 | jsbn "~0.1.0" 2369 | 2370 | js-tokens@^3.0.0: 2371 | version "3.0.1" 2372 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 2373 | 2374 | js-yaml@^3.5.1, js-yaml@^3.7.0: 2375 | version "3.8.2" 2376 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.2.tgz#02d3e2c0f6beab20248d412c352203827d786721" 2377 | dependencies: 2378 | argparse "^1.0.7" 2379 | esprima "^3.1.1" 2380 | 2381 | jsbn@~0.1.0: 2382 | version "0.1.1" 2383 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2384 | 2385 | jsdom@^9.11.0: 2386 | version "9.12.0" 2387 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 2388 | dependencies: 2389 | abab "^1.0.3" 2390 | acorn "^4.0.4" 2391 | acorn-globals "^3.1.0" 2392 | array-equal "^1.0.0" 2393 | content-type-parser "^1.0.1" 2394 | cssom ">= 0.3.2 < 0.4.0" 2395 | cssstyle ">= 0.2.37 < 0.3.0" 2396 | escodegen "^1.6.1" 2397 | html-encoding-sniffer "^1.0.1" 2398 | nwmatcher ">= 1.3.9 < 2.0.0" 2399 | parse5 "^1.5.1" 2400 | request "^2.79.0" 2401 | sax "^1.2.1" 2402 | symbol-tree "^3.2.1" 2403 | tough-cookie "^2.3.2" 2404 | webidl-conversions "^4.0.0" 2405 | whatwg-encoding "^1.0.1" 2406 | whatwg-url "^4.3.0" 2407 | xml-name-validator "^2.0.1" 2408 | 2409 | jsesc@^1.3.0: 2410 | version "1.3.0" 2411 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2412 | 2413 | jsesc@~0.5.0: 2414 | version "0.5.0" 2415 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2416 | 2417 | json-schema@0.2.3: 2418 | version "0.2.3" 2419 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2420 | 2421 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 2422 | version "1.0.1" 2423 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2424 | dependencies: 2425 | jsonify "~0.0.0" 2426 | 2427 | json-stringify-safe@~5.0.1: 2428 | version "5.0.1" 2429 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2430 | 2431 | json5@^0.5.0: 2432 | version "0.5.1" 2433 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2434 | 2435 | jsonify@~0.0.0: 2436 | version "0.0.0" 2437 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2438 | 2439 | jsonpointer@^4.0.0: 2440 | version "4.0.1" 2441 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 2442 | 2443 | jsprim@^1.2.2: 2444 | version "1.4.0" 2445 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 2446 | dependencies: 2447 | assert-plus "1.0.0" 2448 | extsprintf "1.0.2" 2449 | json-schema "0.2.3" 2450 | verror "1.3.6" 2451 | 2452 | jsx-ast-utils@^1.3.4: 2453 | version "1.4.0" 2454 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-1.4.0.tgz#5afe38868f56bc8cc7aeaef0100ba8c75bd12591" 2455 | dependencies: 2456 | object-assign "^4.1.0" 2457 | 2458 | kind-of@^3.0.2: 2459 | version "3.1.0" 2460 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" 2461 | dependencies: 2462 | is-buffer "^1.0.2" 2463 | 2464 | lazy-cache@^1.0.3: 2465 | version "1.0.4" 2466 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2467 | 2468 | lcid@^1.0.0: 2469 | version "1.0.0" 2470 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2471 | dependencies: 2472 | invert-kv "^1.0.0" 2473 | 2474 | leven@^2.0.0: 2475 | version "2.1.0" 2476 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 2477 | 2478 | levn@^0.3.0, levn@~0.3.0: 2479 | version "0.3.0" 2480 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2481 | dependencies: 2482 | prelude-ls "~1.1.2" 2483 | type-check "~0.3.2" 2484 | 2485 | load-json-file@^1.0.0: 2486 | version "1.1.0" 2487 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2488 | dependencies: 2489 | graceful-fs "^4.1.2" 2490 | parse-json "^2.2.0" 2491 | pify "^2.0.0" 2492 | pinkie-promise "^2.0.0" 2493 | strip-bom "^2.0.0" 2494 | 2495 | locate-path@^2.0.0: 2496 | version "2.0.0" 2497 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2498 | dependencies: 2499 | p-locate "^2.0.0" 2500 | path-exists "^3.0.0" 2501 | 2502 | lodash.pickby@^4.6.0: 2503 | version "4.6.0" 2504 | resolved "https://registry.yarnpkg.com/lodash.pickby/-/lodash.pickby-4.6.0.tgz#7dea21d8c18d7703a27c704c15d3b84a67e33aff" 2505 | 2506 | lodash@^4.0.0, lodash@^4.14.0, lodash@^4.2.0, lodash@^4.3.0: 2507 | version "4.17.4" 2508 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2509 | 2510 | longest@^1.0.1: 2511 | version "1.0.1" 2512 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2513 | 2514 | loose-envify@^1.0.0: 2515 | version "1.3.1" 2516 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2517 | dependencies: 2518 | js-tokens "^3.0.0" 2519 | 2520 | makeerror@1.0.x: 2521 | version "1.0.11" 2522 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2523 | dependencies: 2524 | tmpl "1.0.x" 2525 | 2526 | merge@^1.1.3: 2527 | version "1.2.0" 2528 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 2529 | 2530 | micromatch@^2.1.5, micromatch@^2.3.11: 2531 | version "2.3.11" 2532 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2533 | dependencies: 2534 | arr-diff "^2.0.0" 2535 | array-unique "^0.2.1" 2536 | braces "^1.8.2" 2537 | expand-brackets "^0.1.4" 2538 | extglob "^0.3.1" 2539 | filename-regex "^2.0.0" 2540 | is-extglob "^1.0.0" 2541 | is-glob "^2.0.1" 2542 | kind-of "^3.0.2" 2543 | normalize-path "^2.0.1" 2544 | object.omit "^2.0.0" 2545 | parse-glob "^3.0.4" 2546 | regex-cache "^0.4.2" 2547 | 2548 | mime-db@~1.26.0: 2549 | version "1.26.0" 2550 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.26.0.tgz#eaffcd0e4fc6935cf8134da246e2e6c35305adff" 2551 | 2552 | mime-types@^2.1.12, mime-types@~2.1.7: 2553 | version "2.1.14" 2554 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.14.tgz#f7ef7d97583fcaf3b7d282b6f8b5679dab1e94ee" 2555 | dependencies: 2556 | mime-db "~1.26.0" 2557 | 2558 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3: 2559 | version "3.0.3" 2560 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 2561 | dependencies: 2562 | brace-expansion "^1.0.0" 2563 | 2564 | minimist@0.0.8, minimist@~0.0.1: 2565 | version "0.0.8" 2566 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2567 | 2568 | minimist@^1.1.1, minimist@^1.2.0: 2569 | version "1.2.0" 2570 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2571 | 2572 | "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.1: 2573 | version "0.5.1" 2574 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2575 | dependencies: 2576 | minimist "0.0.8" 2577 | 2578 | ms@0.7.1: 2579 | version "0.7.1" 2580 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 2581 | 2582 | ms@0.7.2: 2583 | version "0.7.2" 2584 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 2585 | 2586 | mute-stream@0.0.5: 2587 | version "0.0.5" 2588 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 2589 | 2590 | nan@^2.3.0: 2591 | version "2.5.1" 2592 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.5.1.tgz#d5b01691253326a97a2bbee9e61c55d8d60351e2" 2593 | 2594 | natural-compare@^1.4.0: 2595 | version "1.4.0" 2596 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2597 | 2598 | node-int64@^0.4.0: 2599 | version "0.4.0" 2600 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2601 | 2602 | node-notifier@^5.0.1: 2603 | version "5.1.2" 2604 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 2605 | dependencies: 2606 | growly "^1.3.0" 2607 | semver "^5.3.0" 2608 | shellwords "^0.1.0" 2609 | which "^1.2.12" 2610 | 2611 | node-pre-gyp@^0.6.29: 2612 | version "0.6.33" 2613 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.33.tgz#640ac55198f6a925972e0c16c4ac26a034d5ecc9" 2614 | dependencies: 2615 | mkdirp "~0.5.1" 2616 | nopt "~3.0.6" 2617 | npmlog "^4.0.1" 2618 | rc "~1.1.6" 2619 | request "^2.79.0" 2620 | rimraf "~2.5.4" 2621 | semver "~5.3.0" 2622 | tar "~2.2.1" 2623 | tar-pack "~3.3.0" 2624 | 2625 | nopt@~3.0.6: 2626 | version "3.0.6" 2627 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 2628 | dependencies: 2629 | abbrev "1" 2630 | 2631 | normalize-package-data@^2.3.2: 2632 | version "2.3.6" 2633 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.6.tgz#498fa420c96401f787402ba21e600def9f981fff" 2634 | dependencies: 2635 | hosted-git-info "^2.1.4" 2636 | is-builtin-module "^1.0.0" 2637 | semver "2 || 3 || 4 || 5" 2638 | validate-npm-package-license "^3.0.1" 2639 | 2640 | normalize-path@^1.0.0: 2641 | version "1.0.0" 2642 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-1.0.0.tgz#32d0e472f91ff345701c15a8311018d3b0a90379" 2643 | 2644 | normalize-path@^2.0.1: 2645 | version "2.0.1" 2646 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" 2647 | 2648 | npmlog@^4.0.1: 2649 | version "4.0.2" 2650 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f" 2651 | dependencies: 2652 | are-we-there-yet "~1.1.2" 2653 | console-control-strings "~1.1.0" 2654 | gauge "~2.7.1" 2655 | set-blocking "~2.0.0" 2656 | 2657 | number-is-nan@^1.0.0: 2658 | version "1.0.1" 2659 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2660 | 2661 | "nwmatcher@>= 1.3.9 < 2.0.0": 2662 | version "1.3.9" 2663 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.3.9.tgz#8bab486ff7fa3dfd086656bbe8b17116d3692d2a" 2664 | 2665 | oauth-sign@~0.8.1: 2666 | version "0.8.2" 2667 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2668 | 2669 | object-assign@^4.0.1, object-assign@^4.1.0: 2670 | version "4.1.1" 2671 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2672 | 2673 | object-keys@^1.0.10, object-keys@^1.0.8: 2674 | version "1.0.11" 2675 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 2676 | 2677 | object-path@^0.11.4: 2678 | version "0.11.4" 2679 | resolved "https://registry.yarnpkg.com/object-path/-/object-path-0.11.4.tgz#370ae752fbf37de3ea70a861c23bba8915691949" 2680 | 2681 | object.assign@^4.0.4: 2682 | version "4.0.4" 2683 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.0.4.tgz#b1c9cc044ef1b9fe63606fc141abbb32e14730cc" 2684 | dependencies: 2685 | define-properties "^1.1.2" 2686 | function-bind "^1.1.0" 2687 | object-keys "^1.0.10" 2688 | 2689 | object.omit@^2.0.0: 2690 | version "2.0.1" 2691 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2692 | dependencies: 2693 | for-own "^0.1.4" 2694 | is-extendable "^0.1.1" 2695 | 2696 | once@^1.3.0, once@^1.4.0: 2697 | version "1.4.0" 2698 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2699 | dependencies: 2700 | wrappy "1" 2701 | 2702 | once@~1.3.3: 2703 | version "1.3.3" 2704 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 2705 | dependencies: 2706 | wrappy "1" 2707 | 2708 | onetime@^1.0.0: 2709 | version "1.1.0" 2710 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2711 | 2712 | optimist@^0.6.1: 2713 | version "0.6.1" 2714 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2715 | dependencies: 2716 | minimist "~0.0.1" 2717 | wordwrap "~0.0.2" 2718 | 2719 | optionator@^0.8.1, optionator@^0.8.2: 2720 | version "0.8.2" 2721 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2722 | dependencies: 2723 | deep-is "~0.1.3" 2724 | fast-levenshtein "~2.0.4" 2725 | levn "~0.3.0" 2726 | prelude-ls "~1.1.2" 2727 | type-check "~0.3.2" 2728 | wordwrap "~1.0.0" 2729 | 2730 | os-homedir@^1.0.0: 2731 | version "1.0.2" 2732 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2733 | 2734 | os-locale@^1.4.0: 2735 | version "1.4.0" 2736 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2737 | dependencies: 2738 | lcid "^1.0.0" 2739 | 2740 | os-tmpdir@^1.0.1: 2741 | version "1.0.2" 2742 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2743 | 2744 | output-file-sync@^1.1.0: 2745 | version "1.1.2" 2746 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2747 | dependencies: 2748 | graceful-fs "^4.1.4" 2749 | mkdirp "^0.5.1" 2750 | object-assign "^4.1.0" 2751 | 2752 | p-limit@^1.1.0: 2753 | version "1.1.0" 2754 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2755 | 2756 | p-locate@^2.0.0: 2757 | version "2.0.0" 2758 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2759 | dependencies: 2760 | p-limit "^1.1.0" 2761 | 2762 | parse-glob@^3.0.4: 2763 | version "3.0.4" 2764 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2765 | dependencies: 2766 | glob-base "^0.3.0" 2767 | is-dotfile "^1.0.0" 2768 | is-extglob "^1.0.0" 2769 | is-glob "^2.0.0" 2770 | 2771 | parse-json@^2.2.0: 2772 | version "2.2.0" 2773 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2774 | dependencies: 2775 | error-ex "^1.2.0" 2776 | 2777 | parse5@^1.5.1: 2778 | version "1.5.1" 2779 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 2780 | 2781 | path-exists@^2.0.0: 2782 | version "2.1.0" 2783 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2784 | dependencies: 2785 | pinkie-promise "^2.0.0" 2786 | 2787 | path-exists@^3.0.0: 2788 | version "3.0.0" 2789 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2790 | 2791 | path-is-absolute@^1.0.0: 2792 | version "1.0.1" 2793 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2794 | 2795 | path-is-inside@^1.0.1: 2796 | version "1.0.2" 2797 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2798 | 2799 | path-parse@^1.0.5: 2800 | version "1.0.5" 2801 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2802 | 2803 | path-type@^1.0.0: 2804 | version "1.1.0" 2805 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2806 | dependencies: 2807 | graceful-fs "^4.1.2" 2808 | pify "^2.0.0" 2809 | pinkie-promise "^2.0.0" 2810 | 2811 | performance-now@^0.2.0: 2812 | version "0.2.0" 2813 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2814 | 2815 | pify@^2.0.0: 2816 | version "2.3.0" 2817 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2818 | 2819 | pinkie-promise@^2.0.0: 2820 | version "2.0.1" 2821 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2822 | dependencies: 2823 | pinkie "^2.0.0" 2824 | 2825 | pinkie@^2.0.0: 2826 | version "2.0.4" 2827 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2828 | 2829 | pluralize@^1.2.1: 2830 | version "1.2.1" 2831 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 2832 | 2833 | prelude-ls@~1.1.2: 2834 | version "1.1.2" 2835 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2836 | 2837 | preserve@^0.2.0: 2838 | version "0.2.0" 2839 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2840 | 2841 | pretty-format@^19.0.0: 2842 | version "19.0.0" 2843 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-19.0.0.tgz#56530d32acb98a3fa4851c4e2b9d37b420684c84" 2844 | dependencies: 2845 | ansi-styles "^3.0.0" 2846 | 2847 | private@^0.1.6: 2848 | version "0.1.7" 2849 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2850 | 2851 | process-nextick-args@~1.0.6: 2852 | version "1.0.7" 2853 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2854 | 2855 | progress@^1.1.8: 2856 | version "1.1.8" 2857 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 2858 | 2859 | prr@~0.0.0: 2860 | version "0.0.0" 2861 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 2862 | 2863 | punycode@^1.4.1: 2864 | version "1.4.1" 2865 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2866 | 2867 | qs@~6.4.0: 2868 | version "6.4.0" 2869 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2870 | 2871 | randomatic@^1.1.3: 2872 | version "1.1.6" 2873 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 2874 | dependencies: 2875 | is-number "^2.0.2" 2876 | kind-of "^3.0.2" 2877 | 2878 | rc@~1.1.6: 2879 | version "1.1.7" 2880 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.7.tgz#c5ea564bb07aff9fd3a5b32e906c1d3a65940fea" 2881 | dependencies: 2882 | deep-extend "~0.4.0" 2883 | ini "~1.3.0" 2884 | minimist "^1.2.0" 2885 | strip-json-comments "~2.0.1" 2886 | 2887 | read-pkg-up@^1.0.1: 2888 | version "1.0.1" 2889 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2890 | dependencies: 2891 | find-up "^1.0.0" 2892 | read-pkg "^1.0.0" 2893 | 2894 | read-pkg@^1.0.0: 2895 | version "1.1.0" 2896 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2897 | dependencies: 2898 | load-json-file "^1.0.0" 2899 | normalize-package-data "^2.3.2" 2900 | path-type "^1.0.0" 2901 | 2902 | "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.2, readable-stream@^2.2.2: 2903 | version "2.2.6" 2904 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.6.tgz#8b43aed76e71483938d12a8d46c6cf1a00b1f816" 2905 | dependencies: 2906 | buffer-shims "^1.0.0" 2907 | core-util-is "~1.0.0" 2908 | inherits "~2.0.1" 2909 | isarray "~1.0.0" 2910 | process-nextick-args "~1.0.6" 2911 | string_decoder "~0.10.x" 2912 | util-deprecate "~1.0.1" 2913 | 2914 | readable-stream@~2.1.4: 2915 | version "2.1.5" 2916 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" 2917 | dependencies: 2918 | buffer-shims "^1.0.0" 2919 | core-util-is "~1.0.0" 2920 | inherits "~2.0.1" 2921 | isarray "~1.0.0" 2922 | process-nextick-args "~1.0.6" 2923 | string_decoder "~0.10.x" 2924 | util-deprecate "~1.0.1" 2925 | 2926 | readdirp@^2.0.0: 2927 | version "2.1.0" 2928 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2929 | dependencies: 2930 | graceful-fs "^4.1.2" 2931 | minimatch "^3.0.2" 2932 | readable-stream "^2.0.2" 2933 | set-immediate-shim "^1.0.1" 2934 | 2935 | readline2@^1.0.1: 2936 | version "1.0.1" 2937 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 2938 | dependencies: 2939 | code-point-at "^1.0.0" 2940 | is-fullwidth-code-point "^1.0.0" 2941 | mute-stream "0.0.5" 2942 | 2943 | rechoir@^0.6.2: 2944 | version "0.6.2" 2945 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 2946 | dependencies: 2947 | resolve "^1.1.6" 2948 | 2949 | regenerate@^1.2.1: 2950 | version "1.3.2" 2951 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 2952 | 2953 | regenerator-runtime@^0.10.0: 2954 | version "0.10.3" 2955 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.3.tgz#8c4367a904b51ea62a908ac310bf99ff90a82a3e" 2956 | 2957 | regenerator-transform@0.9.8: 2958 | version "0.9.8" 2959 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.8.tgz#0f88bb2bc03932ddb7b6b7312e68078f01026d6c" 2960 | dependencies: 2961 | babel-runtime "^6.18.0" 2962 | babel-types "^6.19.0" 2963 | private "^0.1.6" 2964 | 2965 | regex-cache@^0.4.2: 2966 | version "0.4.3" 2967 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2968 | dependencies: 2969 | is-equal-shallow "^0.1.3" 2970 | is-primitive "^2.0.0" 2971 | 2972 | regexpu-core@^2.0.0: 2973 | version "2.0.0" 2974 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2975 | dependencies: 2976 | regenerate "^1.2.1" 2977 | regjsgen "^0.2.0" 2978 | regjsparser "^0.1.4" 2979 | 2980 | regjsgen@^0.2.0: 2981 | version "0.2.0" 2982 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2983 | 2984 | regjsparser@^0.1.4: 2985 | version "0.1.5" 2986 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2987 | dependencies: 2988 | jsesc "~0.5.0" 2989 | 2990 | repeat-element@^1.1.2: 2991 | version "1.1.2" 2992 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2993 | 2994 | repeat-string@^1.5.2: 2995 | version "1.6.1" 2996 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2997 | 2998 | repeating@^2.0.0: 2999 | version "2.0.1" 3000 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3001 | dependencies: 3002 | is-finite "^1.0.0" 3003 | 3004 | request@^2.79.0: 3005 | version "2.81.0" 3006 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 3007 | dependencies: 3008 | aws-sign2 "~0.6.0" 3009 | aws4 "^1.2.1" 3010 | caseless "~0.12.0" 3011 | combined-stream "~1.0.5" 3012 | extend "~3.0.0" 3013 | forever-agent "~0.6.1" 3014 | form-data "~2.1.1" 3015 | har-validator "~4.2.1" 3016 | hawk "~3.1.3" 3017 | http-signature "~1.1.0" 3018 | is-typedarray "~1.0.0" 3019 | isstream "~0.1.2" 3020 | json-stringify-safe "~5.0.1" 3021 | mime-types "~2.1.7" 3022 | oauth-sign "~0.8.1" 3023 | performance-now "^0.2.0" 3024 | qs "~6.4.0" 3025 | safe-buffer "^5.0.1" 3026 | stringstream "~0.0.4" 3027 | tough-cookie "~2.3.0" 3028 | tunnel-agent "^0.6.0" 3029 | uuid "^3.0.0" 3030 | 3031 | require-directory@^2.1.1: 3032 | version "2.1.1" 3033 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3034 | 3035 | require-main-filename@^1.0.1: 3036 | version "1.0.1" 3037 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3038 | 3039 | require-uncached@^1.0.2: 3040 | version "1.0.3" 3041 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 3042 | dependencies: 3043 | caller-path "^0.1.0" 3044 | resolve-from "^1.0.0" 3045 | 3046 | resolve-from@^1.0.0: 3047 | version "1.0.1" 3048 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 3049 | 3050 | resolve@1.1.7: 3051 | version "1.1.7" 3052 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 3053 | 3054 | resolve@^1.1.6, resolve@^1.2.0: 3055 | version "1.3.2" 3056 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.2.tgz#1f0442c9e0cbb8136e87b9305f932f46c7f28235" 3057 | dependencies: 3058 | path-parse "^1.0.5" 3059 | 3060 | restore-cursor@^1.0.1: 3061 | version "1.0.1" 3062 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 3063 | dependencies: 3064 | exit-hook "^1.0.0" 3065 | onetime "^1.0.0" 3066 | 3067 | right-align@^0.1.1: 3068 | version "0.1.3" 3069 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3070 | dependencies: 3071 | align-text "^0.1.1" 3072 | 3073 | rimraf@2, rimraf@^2.2.8, rimraf@^2.4.3, rimraf@^2.4.4, rimraf@~2.5.1, rimraf@~2.5.4: 3074 | version "2.5.4" 3075 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" 3076 | dependencies: 3077 | glob "^7.0.5" 3078 | 3079 | run-async@^0.1.0: 3080 | version "0.1.0" 3081 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 3082 | dependencies: 3083 | once "^1.3.0" 3084 | 3085 | rx-lite@^3.1.2: 3086 | version "3.1.2" 3087 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 3088 | 3089 | safe-buffer@^5.0.1: 3090 | version "5.0.1" 3091 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 3092 | 3093 | sane@~1.5.0: 3094 | version "1.5.0" 3095 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.5.0.tgz#a4adeae764d048621ecb27d5f9ecf513101939f3" 3096 | dependencies: 3097 | anymatch "^1.3.0" 3098 | exec-sh "^0.2.0" 3099 | fb-watchman "^1.8.0" 3100 | minimatch "^3.0.2" 3101 | minimist "^1.1.1" 3102 | walker "~1.0.5" 3103 | watch "~0.10.0" 3104 | 3105 | sax@^1.2.1: 3106 | version "1.2.2" 3107 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.2.tgz#fd8631a23bc7826bef5d871bdb87378c95647828" 3108 | 3109 | "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@~5.3.0: 3110 | version "5.3.0" 3111 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 3112 | 3113 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3114 | version "2.0.0" 3115 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3116 | 3117 | set-immediate-shim@^1.0.1: 3118 | version "1.0.1" 3119 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3120 | 3121 | shelljs@^0.7.5: 3122 | version "0.7.7" 3123 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.7.tgz#b2f5c77ef97148f4b4f6e22682e10bba8667cff1" 3124 | dependencies: 3125 | glob "^7.0.0" 3126 | interpret "^1.0.0" 3127 | rechoir "^0.6.2" 3128 | 3129 | shellwords@^0.1.0: 3130 | version "0.1.0" 3131 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.0.tgz#66afd47b6a12932d9071cbfd98a52e785cd0ba14" 3132 | 3133 | signal-exit@^3.0.0: 3134 | version "3.0.2" 3135 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3136 | 3137 | slash@^1.0.0: 3138 | version "1.0.0" 3139 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3140 | 3141 | slice-ansi@0.0.4: 3142 | version "0.0.4" 3143 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 3144 | 3145 | sntp@1.x.x: 3146 | version "1.0.9" 3147 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3148 | dependencies: 3149 | hoek "2.x.x" 3150 | 3151 | source-map-support@^0.4.2: 3152 | version "0.4.13" 3153 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.13.tgz#9782e6f7deb424d5f173327a1879eb46453bdcd4" 3154 | dependencies: 3155 | source-map "^0.5.6" 3156 | 3157 | source-map@^0.4.4: 3158 | version "0.4.4" 3159 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3160 | dependencies: 3161 | amdefine ">=0.0.4" 3162 | 3163 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 3164 | version "0.5.6" 3165 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 3166 | 3167 | source-map@~0.2.0: 3168 | version "0.2.0" 3169 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 3170 | dependencies: 3171 | amdefine ">=0.0.4" 3172 | 3173 | spdx-correct@~1.0.0: 3174 | version "1.0.2" 3175 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3176 | dependencies: 3177 | spdx-license-ids "^1.0.2" 3178 | 3179 | spdx-expression-parse@~1.0.0: 3180 | version "1.0.4" 3181 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3182 | 3183 | spdx-license-ids@^1.0.2: 3184 | version "1.2.2" 3185 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3186 | 3187 | sprintf-js@~1.0.2: 3188 | version "1.0.3" 3189 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3190 | 3191 | sshpk@^1.7.0: 3192 | version "1.11.0" 3193 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.11.0.tgz#2d8d5ebb4a6fab28ffba37fa62a90f4a3ea59d77" 3194 | dependencies: 3195 | asn1 "~0.2.3" 3196 | assert-plus "^1.0.0" 3197 | dashdash "^1.12.0" 3198 | getpass "^0.1.1" 3199 | optionalDependencies: 3200 | bcrypt-pbkdf "^1.0.0" 3201 | ecc-jsbn "~0.1.1" 3202 | jodid25519 "^1.0.0" 3203 | jsbn "~0.1.0" 3204 | tweetnacl "~0.14.0" 3205 | 3206 | string-length@^1.0.1: 3207 | version "1.0.1" 3208 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 3209 | dependencies: 3210 | strip-ansi "^3.0.0" 3211 | 3212 | string-width@^1.0.1, string-width@^1.0.2: 3213 | version "1.0.2" 3214 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3215 | dependencies: 3216 | code-point-at "^1.0.0" 3217 | is-fullwidth-code-point "^1.0.0" 3218 | strip-ansi "^3.0.0" 3219 | 3220 | string-width@^2.0.0: 3221 | version "2.0.0" 3222 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 3223 | dependencies: 3224 | is-fullwidth-code-point "^2.0.0" 3225 | strip-ansi "^3.0.0" 3226 | 3227 | string_decoder@~0.10.x: 3228 | version "0.10.31" 3229 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 3230 | 3231 | stringstream@~0.0.4: 3232 | version "0.0.5" 3233 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3234 | 3235 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3236 | version "3.0.1" 3237 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3238 | dependencies: 3239 | ansi-regex "^2.0.0" 3240 | 3241 | strip-bom@3.0.0, strip-bom@^3.0.0: 3242 | version "3.0.0" 3243 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3244 | 3245 | strip-bom@^2.0.0: 3246 | version "2.0.0" 3247 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3248 | dependencies: 3249 | is-utf8 "^0.2.0" 3250 | 3251 | strip-json-comments@~2.0.1: 3252 | version "2.0.1" 3253 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3254 | 3255 | supports-color@^2.0.0: 3256 | version "2.0.0" 3257 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3258 | 3259 | supports-color@^3.1.2: 3260 | version "3.2.3" 3261 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3262 | dependencies: 3263 | has-flag "^1.0.0" 3264 | 3265 | symbol-observable@^1.0.2: 3266 | version "1.0.4" 3267 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d" 3268 | 3269 | symbol-tree@^3.2.1: 3270 | version "3.2.2" 3271 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 3272 | 3273 | table@^3.7.8: 3274 | version "3.8.3" 3275 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 3276 | dependencies: 3277 | ajv "^4.7.0" 3278 | ajv-keywords "^1.0.0" 3279 | chalk "^1.1.1" 3280 | lodash "^4.0.0" 3281 | slice-ansi "0.0.4" 3282 | string-width "^2.0.0" 3283 | 3284 | tar-pack@~3.3.0: 3285 | version "3.3.0" 3286 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.3.0.tgz#30931816418f55afc4d21775afdd6720cee45dae" 3287 | dependencies: 3288 | debug "~2.2.0" 3289 | fstream "~1.0.10" 3290 | fstream-ignore "~1.0.5" 3291 | once "~1.3.3" 3292 | readable-stream "~2.1.4" 3293 | rimraf "~2.5.1" 3294 | tar "~2.2.1" 3295 | uid-number "~0.0.6" 3296 | 3297 | tar@~2.2.1: 3298 | version "2.2.1" 3299 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3300 | dependencies: 3301 | block-stream "*" 3302 | fstream "^1.0.2" 3303 | inherits "2" 3304 | 3305 | test-exclude@^4.0.0: 3306 | version "4.0.0" 3307 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.0.0.tgz#0ddc0100b8ae7e88b34eb4fd98a907e961991900" 3308 | dependencies: 3309 | arrify "^1.0.1" 3310 | micromatch "^2.3.11" 3311 | object-assign "^4.1.0" 3312 | read-pkg-up "^1.0.1" 3313 | require-main-filename "^1.0.1" 3314 | 3315 | text-table@~0.2.0: 3316 | version "0.2.0" 3317 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3318 | 3319 | throat@^3.0.0: 3320 | version "3.0.0" 3321 | resolved "https://registry.yarnpkg.com/throat/-/throat-3.0.0.tgz#e7c64c867cbb3845f10877642f7b60055b8ec0d6" 3322 | 3323 | through@^2.3.6: 3324 | version "2.3.8" 3325 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3326 | 3327 | tmpl@1.0.x: 3328 | version "1.0.4" 3329 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 3330 | 3331 | to-fast-properties@^1.0.1: 3332 | version "1.0.2" 3333 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 3334 | 3335 | tough-cookie@^2.3.2, tough-cookie@~2.3.0: 3336 | version "2.3.2" 3337 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3338 | dependencies: 3339 | punycode "^1.4.1" 3340 | 3341 | tr46@~0.0.3: 3342 | version "0.0.3" 3343 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 3344 | 3345 | traverse@^0.6.6: 3346 | version "0.6.6" 3347 | resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.6.tgz#cbdf560fd7b9af632502fed40f918c157ea97137" 3348 | 3349 | trim-right@^1.0.1: 3350 | version "1.0.1" 3351 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3352 | 3353 | tryit@^1.0.1: 3354 | version "1.0.3" 3355 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 3356 | 3357 | tunnel-agent@^0.6.0: 3358 | version "0.6.0" 3359 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3360 | dependencies: 3361 | safe-buffer "^5.0.1" 3362 | 3363 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3364 | version "0.14.5" 3365 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3366 | 3367 | type-check@~0.3.2: 3368 | version "0.3.2" 3369 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3370 | dependencies: 3371 | prelude-ls "~1.1.2" 3372 | 3373 | typedarray@^0.0.6: 3374 | version "0.0.6" 3375 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3376 | 3377 | uglify-js@^2.6: 3378 | version "2.8.13" 3379 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.13.tgz#d0cdf02f3c661484fac601b7e723207b735a374c" 3380 | dependencies: 3381 | source-map "~0.5.1" 3382 | uglify-to-browserify "~1.0.0" 3383 | yargs "~3.10.0" 3384 | 3385 | uglify-to-browserify@~1.0.0: 3386 | version "1.0.2" 3387 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3388 | 3389 | uid-number@~0.0.6: 3390 | version "0.0.6" 3391 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3392 | 3393 | user-home@^1.1.1: 3394 | version "1.1.1" 3395 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 3396 | 3397 | user-home@^2.0.0: 3398 | version "2.0.0" 3399 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 3400 | dependencies: 3401 | os-homedir "^1.0.0" 3402 | 3403 | util-deprecate@~1.0.1: 3404 | version "1.0.2" 3405 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3406 | 3407 | uuid@^3.0.0: 3408 | version "3.0.1" 3409 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 3410 | 3411 | v8flags@^2.0.10: 3412 | version "2.0.11" 3413 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.0.11.tgz#bca8f30f0d6d60612cc2c00641e6962d42ae6881" 3414 | dependencies: 3415 | user-home "^1.1.1" 3416 | 3417 | validate-npm-package-license@^3.0.1: 3418 | version "3.0.1" 3419 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3420 | dependencies: 3421 | spdx-correct "~1.0.0" 3422 | spdx-expression-parse "~1.0.0" 3423 | 3424 | verror@1.3.6: 3425 | version "1.3.6" 3426 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 3427 | dependencies: 3428 | extsprintf "1.0.2" 3429 | 3430 | walker@~1.0.5: 3431 | version "1.0.7" 3432 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 3433 | dependencies: 3434 | makeerror "1.0.x" 3435 | 3436 | watch@~0.10.0: 3437 | version "0.10.0" 3438 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 3439 | 3440 | webidl-conversions@^3.0.0: 3441 | version "3.0.1" 3442 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 3443 | 3444 | webidl-conversions@^4.0.0: 3445 | version "4.0.1" 3446 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.1.tgz#8015a17ab83e7e1b311638486ace81da6ce206a0" 3447 | 3448 | whatwg-encoding@^1.0.1: 3449 | version "1.0.1" 3450 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 3451 | dependencies: 3452 | iconv-lite "0.4.13" 3453 | 3454 | whatwg-url@^4.3.0: 3455 | version "4.6.0" 3456 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.6.0.tgz#ef98da442273be04cf9632e176f257d2395a1ae4" 3457 | dependencies: 3458 | tr46 "~0.0.3" 3459 | webidl-conversions "^3.0.0" 3460 | 3461 | which-module@^1.0.0: 3462 | version "1.0.0" 3463 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 3464 | 3465 | which@^1.1.1, which@^1.2.12: 3466 | version "1.2.12" 3467 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.12.tgz#de67b5e450269f194909ef23ece4ebe416fa1192" 3468 | dependencies: 3469 | isexe "^1.1.1" 3470 | 3471 | wide-align@^1.1.0: 3472 | version "1.1.0" 3473 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 3474 | dependencies: 3475 | string-width "^1.0.1" 3476 | 3477 | window-size@0.1.0: 3478 | version "0.1.0" 3479 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3480 | 3481 | wordwrap@0.0.2, wordwrap@~0.0.2: 3482 | version "0.0.2" 3483 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3484 | 3485 | wordwrap@~1.0.0: 3486 | version "1.0.0" 3487 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3488 | 3489 | worker-farm@^1.3.1: 3490 | version "1.3.1" 3491 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.3.1.tgz#4333112bb49b17aa050b87895ca6b2cacf40e5ff" 3492 | dependencies: 3493 | errno ">=0.1.1 <0.2.0-0" 3494 | xtend ">=4.0.0 <4.1.0-0" 3495 | 3496 | wrap-ansi@^2.0.0: 3497 | version "2.1.0" 3498 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3499 | dependencies: 3500 | string-width "^1.0.1" 3501 | strip-ansi "^3.0.1" 3502 | 3503 | wrappy@1: 3504 | version "1.0.2" 3505 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3506 | 3507 | write@^0.2.1: 3508 | version "0.2.1" 3509 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 3510 | dependencies: 3511 | mkdirp "^0.5.1" 3512 | 3513 | xml-name-validator@^2.0.1: 3514 | version "2.0.1" 3515 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 3516 | 3517 | "xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0: 3518 | version "4.0.1" 3519 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3520 | 3521 | y18n@^3.2.1: 3522 | version "3.2.1" 3523 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3524 | 3525 | yargs-parser@^4.2.0: 3526 | version "4.2.1" 3527 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" 3528 | dependencies: 3529 | camelcase "^3.0.0" 3530 | 3531 | yargs@^6.3.0: 3532 | version "6.6.0" 3533 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" 3534 | dependencies: 3535 | camelcase "^3.0.0" 3536 | cliui "^3.2.0" 3537 | decamelize "^1.1.1" 3538 | get-caller-file "^1.0.1" 3539 | os-locale "^1.4.0" 3540 | read-pkg-up "^1.0.1" 3541 | require-directory "^2.1.1" 3542 | require-main-filename "^1.0.1" 3543 | set-blocking "^2.0.0" 3544 | string-width "^1.0.2" 3545 | which-module "^1.0.0" 3546 | y18n "^3.2.1" 3547 | yargs-parser "^4.2.0" 3548 | 3549 | yargs@~3.10.0: 3550 | version "3.10.0" 3551 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3552 | dependencies: 3553 | camelcase "^1.0.2" 3554 | cliui "^2.1.0" 3555 | decamelize "^1.0.0" 3556 | window-size "0.1.0" 3557 | 3558 | zen-observable-ts@^0.8.10: 3559 | version "0.8.10" 3560 | resolved "https://registry.yarnpkg.com/zen-observable-ts/-/zen-observable-ts-0.8.10.tgz#18e2ce1c89fe026e9621fd83cc05168228fce829" 3561 | dependencies: 3562 | zen-observable "^0.8.0" 3563 | 3564 | zen-observable@^0.8.0: 3565 | version "0.8.9" 3566 | resolved "https://registry.yarnpkg.com/zen-observable/-/zen-observable-0.8.9.tgz#0475c760ff0eda046bbdfa4dc3f95d392807ac53" 3567 | --------------------------------------------------------------------------------