├── .travis.yml ├── src ├── index.js ├── __snapshots__ │ ├── cache.spec.js.snap │ └── lru-cache.spec.js.snap ├── lru-cache.js ├── cache.js ├── cache.spec.js └── lru-cache.spec.js ├── CHANGELOG.md ├── .eslintrc ├── .editorconfig ├── LICENSE ├── .gitignore ├── package.json ├── README.md └── yarn.lock /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 6 4 | - 7 5 | - 8 6 | after_success: 7 | - npm run coveralls -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | LruCache: require('./lru-cache'), 3 | withCache: require('./cache'), 4 | }; 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.2 2 | * Fix cache key and return value on first call 3 | * Fix error if no argument is passed to constructor 4 | 5 | # 1.0.1 6 | * Initial implementation 7 | 8 | # 1.0.0 9 | * Initial commit 10 | -------------------------------------------------------------------------------- /src/__snapshots__/cache.spec.js.snap: -------------------------------------------------------------------------------- 1 | // Jest Snapshot v1, https://goo.gl/fbAQLP 2 | 3 | exports[`cache() errors throws when no resolverCache is configured 1`] = `"Missing resolverCache property on the Graphql context."`; 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "globals": { "Promise": true }, 3 | "parserOptions": { 4 | "ecmaVersion": 6 5 | }, 6 | "env": { 7 | "node": true, 8 | "jest": true, 9 | "browser": true 10 | }, 11 | "extends": ["eslint:recommended", "prettier"] 12 | } 13 | -------------------------------------------------------------------------------- /src/__snapshots__/lru-cache.spec.js.snap: -------------------------------------------------------------------------------- 1 | // Jest Snapshot v1, https://goo.gl/fbAQLP 2 | 3 | exports[`Lru .constructor() constructs the cache properly 1`] = ` 4 | LruCache { 5 | "cache": LRUCache { 6 | Symbol(max): 10, 7 | Symbol(lengthCalculator): [Function], 8 | Symbol(allowStale): false, 9 | Symbol(maxAge): 0, 10 | Symbol(dispose): undefined, 11 | Symbol(noDisposeOnSet): false, 12 | Symbol(cache): Map {}, 13 | Symbol(lruList): Yallist { 14 | "head": null, 15 | "length": 0, 16 | "tail": null, 17 | }, 18 | Symbol(length): 0, 19 | }, 20 | } 21 | `; 22 | -------------------------------------------------------------------------------- /src/lru-cache.js: -------------------------------------------------------------------------------- 1 | const lru = require('lru-cache'); 2 | 3 | module.exports = class LruCache { 4 | constructor(options) { 5 | const maxItems = options && options.maxItems 6 | this.cache = lru(maxItems); 7 | } 8 | 9 | get(key) { 10 | return Promise.resolve(this.cache.get(key)); 11 | } 12 | 13 | set(key, value, options) { 14 | const { maxAge } = options || {}; 15 | this.cache.set(key, value, maxAge); 16 | return Promise.resolve(key); 17 | } 18 | 19 | values() { 20 | return Promise.resolve(this.cache.values()); 21 | } 22 | 23 | length() { 24 | return this.cache.length; 25 | } 26 | }; 27 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | end_of_line = lf 5 | charset = utf-8 6 | trim_trailing_whitespace = true 7 | insert_final_newline = true 8 | 9 | [vcbuild.bat] 10 | end_of_line = crlf 11 | 12 | [{lib,src,test}/**.js] 13 | indent_style = space 14 | indent_size = 2 15 | 16 | [src/**.{h,cc}] 17 | indent_style = space 18 | indent_size = 2 19 | 20 | [test/*.py] 21 | indent_style = space 22 | indent_size = 2 23 | 24 | [configure] 25 | indent_style = space 26 | indent_size = 2 27 | 28 | [Makefile] 29 | indent_style = tab 30 | indent_size = 8 31 | 32 | [{deps,tools}/**] 33 | indent_style = ignore 34 | indent_size = ignore 35 | end_of_line = ignore 36 | trim_trailing_whitespace = ignore 37 | charset = ignore 38 | 39 | [{test/fixtures,deps,tools/eslint,tools/gyp,tools/icu,tools/msvs}/**] 40 | insert_final_newline = false -------------------------------------------------------------------------------- /src/cache.js: -------------------------------------------------------------------------------- 1 | const hash = require('object-hash'); 2 | 3 | const toSafeObject = obj => JSON.parse(JSON.stringify(obj || {})); 4 | 5 | function cache(func, options = {}) { 6 | return (root, args, context) => { 7 | if (!context.resolverCache) { 8 | throw new Error('Missing resolverCache property on the Graphql context.'); 9 | } 10 | 11 | const key = options.key 12 | ? options.key(root, args, context) 13 | : `${hash(func)}:${hash(toSafeObject(root))}:${hash(toSafeObject(args))}`; 14 | 15 | const executeAndCache = () => 16 | Promise.resolve(func(root, args, context)).then((value) => { 17 | context.resolverCache.set(key, value, options); 18 | return value; 19 | }); 20 | 21 | return ( 22 | context.resolverCache 23 | .get(key) 24 | .then(value => (value ? value : executeAndCache())) 25 | // Error 26 | .catch(() => executeAndCache()) 27 | ); 28 | }; 29 | } 30 | 31 | module.exports = cache; 32 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Tom Hastjarjanto 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 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | *.pid.lock 13 | 14 | # Directory for instrumented libs generated by jscoverage/JSCover 15 | lib-cov 16 | 17 | # Coverage directory used by tools like istanbul 18 | coverage 19 | 20 | # nyc test coverage 21 | .nyc_output 22 | 23 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 24 | .grunt 25 | 26 | # Bower dependency directory (https://bower.io/) 27 | bower_components 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # Compiled binary addons (http://nodejs.org/api/addons.html) 33 | build/Release 34 | 35 | # Dependency directories 36 | node_modules/ 37 | jspm_packages/ 38 | 39 | # Typescript v1 declaration files 40 | typings/ 41 | 42 | # Optional npm cache directory 43 | .npm 44 | 45 | # Optional eslint cache 46 | .eslintcache 47 | 48 | # Optional REPL history 49 | .node_repl_history 50 | 51 | # Output of 'npm pack' 52 | *.tgz 53 | 54 | # Yarn Integrity file 55 | .yarn-integrity 56 | 57 | # dotenv environment variables file 58 | .env 59 | 60 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "graphql-resolver-cache", 3 | "version": "1.1.0", 4 | "description": "Caching for Graphql resolvers", 5 | "main": "src/index.js", 6 | "scripts": { 7 | "format": "prettier --trailing-comma es5 --single-quote --write src/**/*.js", 8 | "lint": "eslint src", 9 | "test": "jest --coverage", 10 | "coveralls": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js", 11 | "precommit": "lint-staged" 12 | }, 13 | "lint-staged": { 14 | "*.js": [ 15 | "npm run format", 16 | "npm run lint", 17 | "git add" 18 | ] 19 | }, 20 | "repository": { 21 | "type": "git", 22 | "url": "git+https://github.com/Intellicode/graphql-resolver-cache.git" 23 | }, 24 | "keywords": [ 25 | "graphql", 26 | "apollo" 27 | ], 28 | "author": "Tom Hastjarjanto ", 29 | "license": "MIT", 30 | "bugs": { 31 | "url": "https://github.com/Intellicode/graphql-resolver-cache/issues" 32 | }, 33 | "homepage": "https://github.com/Intellicode/graphql-resolver-cache#readme", 34 | "devDependencies": { 35 | "coveralls": "^3.0.0", 36 | "eslint": "^4.4.1", 37 | "eslint-config-prettier": "^2.3.0", 38 | "husky": "^0.14.3", 39 | "jest": "^21.0.0", 40 | "lint-staged": "^4.0.3", 41 | "prettier": "^1.5.3" 42 | }, 43 | "dependencies": { 44 | "lru-cache": "^4.1.1", 45 | "object-hash": "^1.1.8" 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /src/cache.spec.js: -------------------------------------------------------------------------------- 1 | const cache = require('./cache'); 2 | 3 | describe('cache()', () => { 4 | const parent = { id: 1 }; 5 | const args = { name: 'hello' }; 6 | let cacheMock = {}; 7 | 8 | beforeEach(() => { 9 | cacheMock = { 10 | get: jest.fn(() => Promise.resolve()), 11 | set: jest.fn((key, result) => Promise.resolve(result)), 12 | }; 13 | }); 14 | 15 | describe('errors', () => { 16 | it('throws when no resolverCache is configured', () => { 17 | const resolver = cache(() => {}); 18 | expect(() => 19 | resolver(parent, args, { resolverCache: undefined }) 20 | ).toThrowErrorMatchingSnapshot(); 21 | }); 22 | }); 23 | 24 | describe('hashing', () => { 25 | it('hashes the root and arguments consistently', () => { 26 | const resolver = cache(() => {}); 27 | 28 | resolver(parent, args, { resolverCache: cacheMock }); 29 | resolver(parent, args, { resolverCache: cacheMock }); 30 | 31 | const call1Args = cacheMock.get.mock.calls[0][0]; 32 | const call2Args = cacheMock.get.mock.calls[1][0]; 33 | 34 | expect(call1Args).toEqual(call2Args); 35 | }); 36 | }); 37 | 38 | describe('cache behavior', () => { 39 | const cachedValue = 'cached'; 40 | const uncachedValue = 'uncached'; 41 | const resolver = cache(() => uncachedValue); 42 | 43 | it('returns cached value if the cache returns a value', () => { 44 | cacheMock.get = jest.fn(() => Promise.resolve(cachedValue)); 45 | 46 | expect.assertions(1); 47 | 48 | return resolver(parent, args, { 49 | resolverCache: cacheMock, 50 | }).then(actual => { 51 | expect(actual).toEqual(cachedValue); 52 | }); 53 | }); 54 | 55 | it('does not re-cache cached value', () => { 56 | cacheMock.get = jest.fn(() => Promise.resolve(cachedValue)); 57 | 58 | expect.assertions(1); 59 | 60 | return resolver(parent, args, { 61 | resolverCache: cacheMock, 62 | }).then(() => { 63 | expect(cacheMock.set).toHaveBeenCalledTimes(0); 64 | }); 65 | }); 66 | 67 | it('returns uncached value if the cache returns undefined', () => { 68 | cacheMock.get = jest.fn(() => Promise.resolve(undefined)); 69 | 70 | expect.assertions(2); 71 | 72 | return resolver(parent, args, { 73 | resolverCache: cacheMock, 74 | }).then(actual => { 75 | expect(actual).toEqual(uncachedValue); 76 | expect(cacheMock.set).toHaveBeenCalledTimes(1); 77 | }); 78 | }); 79 | 80 | it('sets uncached value in cache', () => { 81 | cacheMock.get = jest.fn(() => Promise.resolve(undefined)); 82 | 83 | expect.assertions(1); 84 | 85 | return resolver(parent, args, { 86 | resolverCache: cacheMock, 87 | }).then(() => { 88 | expect(cacheMock.set).toHaveBeenCalledTimes(1); 89 | }); 90 | }); 91 | }); 92 | }); 93 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | Graphql resolver cache 3 | ============================== 4 | 5 | [![Greenkeeper badge](https://badges.greenkeeper.io/Intellicode/graphql-resolver-cache.svg)](https://greenkeeper.io/) 6 | 7 | [![Maintenance Status][status-image]][status-url] [![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Dependency Status][deps-image]][deps-url] [![Coverage Status][coverage-image]][coverage-url] [![Code Climate][climate-image]][climate-url] [![BCH compliance][bettercode-image]][bettercode-url] 8 | 9 | Easy wrapper around resolvers to cache results based on root elements and Graphql query arguments. Works best with Apollo Graphql. 10 | 11 | # Installation 12 | 13 | ```sh 14 | $ npm install graphql-resolver-cache --save 15 | ``` 16 | 17 | # Configuration 18 | 19 | Add a cache to your Graphql middleware: 20 | 21 | ```js 22 | import express from 'express'; 23 | import bodyParser from 'body-parser'; 24 | import { graphqlExpress } from 'apollo-server-express'; 25 | import { LruCache } from 'graphql-resolver-cache'; 26 | 27 | const myGraphQLSchema = // ... define or import your schema here! 28 | const PORT = 3000; 29 | 30 | const app = express(); 31 | const resolverCache = new LruCache(); 32 | 33 | // bodyParser is needed just for POST. 34 | app.use('/graphql', bodyParser.json(), graphqlExpress({ 35 | schema: myGraphQLSchema, 36 | context: { resolverCache } 37 | })); 38 | 39 | app.listen(PORT); 40 | ``` 41 | 42 | Wrap your resolver in a cache function: 43 | 44 | ```js 45 | import { withCache } from 'graphql-resolver-cache'; 46 | export default { 47 | User: { 48 | getFriends: withCache((root, args, context) => { /* logic */ }), 49 | }, 50 | }; 51 | ``` 52 | 53 | [npm-url]: https://npmjs.org/package/graphql-resolver-cache 54 | [npm-image]: http://img.shields.io/npm/v/graphql-resolver-cache.svg?style=flat-square 55 | 56 | [travis-url]: https://travis-ci.org/Intellicode/graphql-resolver-cache 57 | [travis-image]: http://img.shields.io/travis/Intellicode/graphql-resolver-cache/master.svg?style=flat-square 58 | 59 | [deps-url]: https://david-dm.org/Intellicode/graphql-resolver-cache 60 | [deps-image]: https://img.shields.io/david/dev/Intellicode/graphql-resolver-cache.svg?style=flat-square 61 | 62 | [coverage-url]: https://coveralls.io/r/Intellicode/graphql-resolver-cache?branch=master 63 | [coverage-image]: http://img.shields.io/coveralls/Intellicode/graphql-resolver-cache/master.svg?style=flat-square 64 | 65 | [climate-url]: https://codeclimate.com/github/Intellicode/graphql-resolver-cache 66 | [climate-image]: http://img.shields.io/codeclimate/github/Intellicode/graphql-resolver-cache.svg?style=flat-square 67 | 68 | [status-url]: https://github.com/Intellicode/graphql-resolver-cache/pulse 69 | [status-image]: http://img.shields.io/badge/status-maintained-brightgreen.svg?style=flat-square 70 | 71 | [bettercode-image]: https://bettercodehub.com/edge/badge/Intellicode/graphql-resolver-cache 72 | [bettercode-url]: https://bettercodehub.com 73 | 74 | -------------------------------------------------------------------------------- /src/lru-cache.spec.js: -------------------------------------------------------------------------------- 1 | const Lru = require('./lru-cache'); 2 | 3 | describe('Lru', () => { 4 | describe('.constructor()', () => { 5 | it('constructs the cache properly', () => { 6 | const actual = new Lru({ maxItems: 10 }); 7 | expect(actual).toMatchSnapshot(); 8 | }); 9 | }); 10 | 11 | describe('.get(key)', () => { 12 | let instance; 13 | const maxItems = 10; 14 | 15 | beforeEach(() => { 16 | instance = new Lru({ maxItems }); 17 | }); 18 | 19 | it('returns a promise', () => { 20 | const actual = instance.get('key'); 21 | expect(actual).toBeInstanceOf(Promise); 22 | }); 23 | 24 | it('returns undefined when the key is not set', () => { 25 | expect.assertions(1); 26 | return instance.get('key').then(actual => expect(actual).toBeUndefined()); 27 | }); 28 | 29 | it('returns the correct item when the key is set', () => { 30 | const expected = 'hello world'; 31 | expect.assertions(1); 32 | return instance 33 | .set('key', expected) 34 | .then(() => instance.get('key')) 35 | .then(actual => expect(actual).toEqual(expected)); 36 | }); 37 | 38 | it('returns undefined when the key is ejected', () => { 39 | const expected = 'hello world'; 40 | const range = Array.from(new Array(maxItems), (x, i) => i); 41 | 42 | expect.assertions(1); 43 | 44 | return instance 45 | .set('key', expected) 46 | .then(() => 47 | Promise.all(range.map(i => instance.set(`key${i}`, 'hello universe'))) 48 | ) 49 | .then(() => instance.get('key')) 50 | .then(actual => expect(actual).toEqual(undefined)); 51 | }); 52 | }); 53 | 54 | describe('.set(key, value, options)', () => { 55 | let instance; 56 | const maxItems = 10; 57 | 58 | beforeEach(() => { 59 | instance = new Lru({ maxItems }); 60 | }); 61 | 62 | it('increments the item count', () => { 63 | expect.assertions(1); 64 | return instance 65 | .set('key', 'value') 66 | .then(() => expect(instance.length()).toEqual(1)); 67 | }); 68 | 69 | it('adheres to maxItems when more items are inserted', () => { 70 | const range = Array.from(new Array(maxItems + 1), (x, i) => i); 71 | 72 | expect.assertions(1); 73 | 74 | return Promise.all( 75 | range.map(i => instance.set(`key${i}`, 'hello universe')) 76 | ).then(() => expect(instance.length()).toEqual(maxItems)); 77 | }); 78 | 79 | it('only stores the last items in order of last insertion', () => { 80 | const range = Array.from(new Array(maxItems), (x, i) => i); 81 | 82 | expect.assertions(1); 83 | 84 | return instance 85 | .set('key', 'value') 86 | .then(() => 87 | Promise.all( 88 | range.map(i => instance.set(`key${i}`, `hello universe ${i}`)) 89 | ) 90 | ) 91 | .then(() => instance.values()) 92 | .then(values => 93 | expect(values).toEqual( 94 | range.map(i => `hello universe ${i}`).reverse() 95 | ) 96 | ); 97 | }); 98 | }); 99 | }); 100 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abab@^1.0.3: 6 | version "1.0.3" 7 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.3.tgz#b81de5f7274ec4e756d797cd834f303642724e5d" 8 | 9 | acorn-globals@^3.1.0: 10 | version "3.1.0" 11 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 12 | dependencies: 13 | acorn "^4.0.4" 14 | 15 | acorn-jsx@^3.0.0: 16 | version "3.0.1" 17 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 18 | dependencies: 19 | acorn "^3.0.4" 20 | 21 | acorn@^3.0.4: 22 | version "3.3.0" 23 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 24 | 25 | acorn@^4.0.4: 26 | version "4.0.13" 27 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 28 | 29 | acorn@^5.1.1: 30 | version "5.1.1" 31 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.1.1.tgz#53fe161111f912ab999ee887a90a0bc52822fd75" 32 | 33 | ajv-keywords@^1.0.0: 34 | version "1.5.1" 35 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 36 | 37 | ajv@^4.7.0: 38 | version "4.11.8" 39 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 40 | dependencies: 41 | co "^4.6.0" 42 | json-stable-stringify "^1.0.1" 43 | 44 | ajv@^5.2.0: 45 | version "5.2.2" 46 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.2.2.tgz#47c68d69e86f5d953103b0074a9430dc63da5e39" 47 | dependencies: 48 | co "^4.6.0" 49 | fast-deep-equal "^1.0.0" 50 | json-schema-traverse "^0.3.0" 51 | json-stable-stringify "^1.0.1" 52 | 53 | align-text@^0.1.1, align-text@^0.1.3: 54 | version "0.1.4" 55 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 56 | dependencies: 57 | kind-of "^3.0.2" 58 | longest "^1.0.1" 59 | repeat-string "^1.5.2" 60 | 61 | amdefine@>=0.0.4: 62 | version "1.0.1" 63 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 64 | 65 | ansi-escapes@^1.0.0, ansi-escapes@^1.4.0: 66 | version "1.4.0" 67 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 68 | 69 | ansi-escapes@^2.0.0: 70 | version "2.0.0" 71 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-2.0.0.tgz#5bae52be424878dd9783e8910e3fc2922e83c81b" 72 | 73 | ansi-regex@^2.0.0, ansi-regex@^2.1.1: 74 | version "2.1.1" 75 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 76 | 77 | ansi-regex@^3.0.0: 78 | version "3.0.0" 79 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 80 | 81 | ansi-styles@^2.2.1: 82 | version "2.2.1" 83 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 84 | 85 | ansi-styles@^3.0.0, ansi-styles@^3.1.0: 86 | version "3.2.0" 87 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 88 | dependencies: 89 | color-convert "^1.9.0" 90 | 91 | anymatch@^1.3.0: 92 | version "1.3.2" 93 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 94 | dependencies: 95 | micromatch "^2.1.5" 96 | normalize-path "^2.0.0" 97 | 98 | app-root-path@^2.0.0: 99 | version "2.0.1" 100 | resolved "https://registry.yarnpkg.com/app-root-path/-/app-root-path-2.0.1.tgz#cd62dcf8e4fd5a417efc664d2e5b10653c651b46" 101 | 102 | append-transform@^0.4.0: 103 | version "0.4.0" 104 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 105 | dependencies: 106 | default-require-extensions "^1.0.0" 107 | 108 | argparse@^1.0.7: 109 | version "1.0.9" 110 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 111 | dependencies: 112 | sprintf-js "~1.0.2" 113 | 114 | arr-diff@^2.0.0: 115 | version "2.0.0" 116 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 117 | dependencies: 118 | arr-flatten "^1.0.1" 119 | 120 | arr-flatten@^1.0.1: 121 | version "1.1.0" 122 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 123 | 124 | array-equal@^1.0.0: 125 | version "1.0.0" 126 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 127 | 128 | array-union@^1.0.1: 129 | version "1.0.2" 130 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 131 | dependencies: 132 | array-uniq "^1.0.1" 133 | 134 | array-uniq@^1.0.1: 135 | version "1.0.3" 136 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 137 | 138 | array-unique@^0.2.1: 139 | version "0.2.1" 140 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 141 | 142 | arrify@^1.0.0, arrify@^1.0.1: 143 | version "1.0.1" 144 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 145 | 146 | asn1@~0.2.3: 147 | version "0.2.3" 148 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 149 | 150 | assert-plus@1.0.0, assert-plus@^1.0.0: 151 | version "1.0.0" 152 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 153 | 154 | assert-plus@^0.2.0: 155 | version "0.2.0" 156 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 157 | 158 | async@^1.4.0: 159 | version "1.5.2" 160 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 161 | 162 | async@^2.1.4: 163 | version "2.5.0" 164 | resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d" 165 | dependencies: 166 | lodash "^4.14.0" 167 | 168 | asynckit@^0.4.0: 169 | version "0.4.0" 170 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 171 | 172 | aws-sign2@~0.6.0: 173 | version "0.6.0" 174 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 175 | 176 | aws4@^1.2.1: 177 | version "1.6.0" 178 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 179 | 180 | babel-code-frame@^6.22.0: 181 | version "6.22.0" 182 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 183 | dependencies: 184 | chalk "^1.1.0" 185 | esutils "^2.0.2" 186 | js-tokens "^3.0.0" 187 | 188 | babel-core@^6.0.0, babel-core@^6.24.1: 189 | version "6.25.0" 190 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.25.0.tgz#7dd42b0463c742e9d5296deb3ec67a9322dad729" 191 | dependencies: 192 | babel-code-frame "^6.22.0" 193 | babel-generator "^6.25.0" 194 | babel-helpers "^6.24.1" 195 | babel-messages "^6.23.0" 196 | babel-register "^6.24.1" 197 | babel-runtime "^6.22.0" 198 | babel-template "^6.25.0" 199 | babel-traverse "^6.25.0" 200 | babel-types "^6.25.0" 201 | babylon "^6.17.2" 202 | convert-source-map "^1.1.0" 203 | debug "^2.1.1" 204 | json5 "^0.5.0" 205 | lodash "^4.2.0" 206 | minimatch "^3.0.2" 207 | path-is-absolute "^1.0.0" 208 | private "^0.1.6" 209 | slash "^1.0.0" 210 | source-map "^0.5.0" 211 | 212 | babel-generator@^6.18.0, babel-generator@^6.25.0: 213 | version "6.25.0" 214 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.25.0.tgz#33a1af70d5f2890aeb465a4a7793c1df6a9ea9fc" 215 | dependencies: 216 | babel-messages "^6.23.0" 217 | babel-runtime "^6.22.0" 218 | babel-types "^6.25.0" 219 | detect-indent "^4.0.0" 220 | jsesc "^1.3.0" 221 | lodash "^4.2.0" 222 | source-map "^0.5.0" 223 | trim-right "^1.0.1" 224 | 225 | babel-helpers@^6.24.1: 226 | version "6.24.1" 227 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 228 | dependencies: 229 | babel-runtime "^6.22.0" 230 | babel-template "^6.24.1" 231 | 232 | babel-jest@^20.0.3: 233 | version "20.0.3" 234 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-20.0.3.tgz#e4a03b13dc10389e140fc645d09ffc4ced301671" 235 | dependencies: 236 | babel-core "^6.0.0" 237 | babel-plugin-istanbul "^4.0.0" 238 | babel-preset-jest "^20.0.3" 239 | 240 | babel-messages@^6.23.0: 241 | version "6.23.0" 242 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 243 | dependencies: 244 | babel-runtime "^6.22.0" 245 | 246 | babel-plugin-istanbul@^4.0.0: 247 | version "4.1.4" 248 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.4.tgz#18dde84bf3ce329fddf3f4103fae921456d8e587" 249 | dependencies: 250 | find-up "^2.1.0" 251 | istanbul-lib-instrument "^1.7.2" 252 | test-exclude "^4.1.1" 253 | 254 | babel-plugin-jest-hoist@^20.0.3: 255 | version "20.0.3" 256 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-20.0.3.tgz#afedc853bd3f8dc3548ea671fbe69d03cc2c1767" 257 | 258 | babel-preset-jest@^20.0.3: 259 | version "20.0.3" 260 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-20.0.3.tgz#cbacaadecb5d689ca1e1de1360ebfc66862c178a" 261 | dependencies: 262 | babel-plugin-jest-hoist "^20.0.3" 263 | 264 | babel-register@^6.24.1: 265 | version "6.24.1" 266 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 267 | dependencies: 268 | babel-core "^6.24.1" 269 | babel-runtime "^6.22.0" 270 | core-js "^2.4.0" 271 | home-or-tmp "^2.0.0" 272 | lodash "^4.2.0" 273 | mkdirp "^0.5.1" 274 | source-map-support "^0.4.2" 275 | 276 | babel-runtime@^6.22.0: 277 | version "6.25.0" 278 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.25.0.tgz#33b98eaa5d482bb01a8d1aa6b437ad2b01aec41c" 279 | dependencies: 280 | core-js "^2.4.0" 281 | regenerator-runtime "^0.10.0" 282 | 283 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.25.0: 284 | version "6.25.0" 285 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.25.0.tgz#665241166b7c2aa4c619d71e192969552b10c071" 286 | dependencies: 287 | babel-runtime "^6.22.0" 288 | babel-traverse "^6.25.0" 289 | babel-types "^6.25.0" 290 | babylon "^6.17.2" 291 | lodash "^4.2.0" 292 | 293 | babel-traverse@^6.18.0, babel-traverse@^6.25.0: 294 | version "6.25.0" 295 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.25.0.tgz#2257497e2fcd19b89edc13c4c91381f9512496f1" 296 | dependencies: 297 | babel-code-frame "^6.22.0" 298 | babel-messages "^6.23.0" 299 | babel-runtime "^6.22.0" 300 | babel-types "^6.25.0" 301 | babylon "^6.17.2" 302 | debug "^2.2.0" 303 | globals "^9.0.0" 304 | invariant "^2.2.0" 305 | lodash "^4.2.0" 306 | 307 | babel-types@^6.18.0, babel-types@^6.25.0: 308 | version "6.25.0" 309 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.25.0.tgz#70afb248d5660e5d18f811d91c8303b54134a18e" 310 | dependencies: 311 | babel-runtime "^6.22.0" 312 | esutils "^2.0.2" 313 | lodash "^4.2.0" 314 | to-fast-properties "^1.0.1" 315 | 316 | babylon@^6.17.2, babylon@^6.17.4: 317 | version "6.17.4" 318 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.4.tgz#3e8b7402b88d22c3423e137a1577883b15ff869a" 319 | 320 | balanced-match@^1.0.0: 321 | version "1.0.0" 322 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 323 | 324 | bcrypt-pbkdf@^1.0.0: 325 | version "1.0.1" 326 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 327 | dependencies: 328 | tweetnacl "^0.14.3" 329 | 330 | boom@2.x.x: 331 | version "2.10.1" 332 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 333 | dependencies: 334 | hoek "2.x.x" 335 | 336 | brace-expansion@^1.1.7: 337 | version "1.1.8" 338 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 339 | dependencies: 340 | balanced-match "^1.0.0" 341 | concat-map "0.0.1" 342 | 343 | braces@^1.8.2: 344 | version "1.8.5" 345 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 346 | dependencies: 347 | expand-range "^1.8.1" 348 | preserve "^0.2.0" 349 | repeat-element "^1.1.2" 350 | 351 | browser-resolve@^1.11.2: 352 | version "1.11.2" 353 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 354 | dependencies: 355 | resolve "1.1.7" 356 | 357 | bser@1.0.2: 358 | version "1.0.2" 359 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" 360 | dependencies: 361 | node-int64 "^0.4.0" 362 | 363 | bser@^2.0.0: 364 | version "2.0.0" 365 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 366 | dependencies: 367 | node-int64 "^0.4.0" 368 | 369 | builtin-modules@^1.0.0: 370 | version "1.1.1" 371 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 372 | 373 | caller-path@^0.1.0: 374 | version "0.1.0" 375 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 376 | dependencies: 377 | callsites "^0.2.0" 378 | 379 | callsites@^0.2.0: 380 | version "0.2.0" 381 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 382 | 383 | callsites@^2.0.0: 384 | version "2.0.0" 385 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 386 | 387 | camelcase@^1.0.2: 388 | version "1.2.1" 389 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 390 | 391 | camelcase@^3.0.0: 392 | version "3.0.0" 393 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 394 | 395 | caseless@~0.11.0: 396 | version "0.11.0" 397 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 398 | 399 | center-align@^0.1.1: 400 | version "0.1.3" 401 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 402 | dependencies: 403 | align-text "^0.1.3" 404 | lazy-cache "^1.0.3" 405 | 406 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 407 | version "1.1.3" 408 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 409 | dependencies: 410 | ansi-styles "^2.2.1" 411 | escape-string-regexp "^1.0.2" 412 | has-ansi "^2.0.0" 413 | strip-ansi "^3.0.0" 414 | supports-color "^2.0.0" 415 | 416 | chalk@^2.0.0: 417 | version "2.1.0" 418 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.1.0.tgz#ac5becf14fa21b99c6c92ca7a7d7cfd5b17e743e" 419 | dependencies: 420 | ansi-styles "^3.1.0" 421 | escape-string-regexp "^1.0.5" 422 | supports-color "^4.0.0" 423 | 424 | ci-info@^1.0.0: 425 | version "1.0.0" 426 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 427 | 428 | circular-json@^0.3.1: 429 | version "0.3.3" 430 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" 431 | 432 | cli-cursor@^1.0.2: 433 | version "1.0.2" 434 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 435 | dependencies: 436 | restore-cursor "^1.0.1" 437 | 438 | cli-cursor@^2.1.0: 439 | version "2.1.0" 440 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 441 | dependencies: 442 | restore-cursor "^2.0.0" 443 | 444 | cli-spinners@^0.1.2: 445 | version "0.1.2" 446 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-0.1.2.tgz#bb764d88e185fb9e1e6a2a1f19772318f605e31c" 447 | 448 | cli-truncate@^0.2.1: 449 | version "0.2.1" 450 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-0.2.1.tgz#9f15cfbb0705005369216c626ac7d05ab90dd574" 451 | dependencies: 452 | slice-ansi "0.0.4" 453 | string-width "^1.0.1" 454 | 455 | cli-width@^2.0.0: 456 | version "2.1.0" 457 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 458 | 459 | cliui@^2.1.0: 460 | version "2.1.0" 461 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 462 | dependencies: 463 | center-align "^0.1.1" 464 | right-align "^0.1.1" 465 | wordwrap "0.0.2" 466 | 467 | cliui@^3.2.0: 468 | version "3.2.0" 469 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 470 | dependencies: 471 | string-width "^1.0.1" 472 | strip-ansi "^3.0.1" 473 | wrap-ansi "^2.0.0" 474 | 475 | co@^4.6.0: 476 | version "4.6.0" 477 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 478 | 479 | code-point-at@^1.0.0: 480 | version "1.1.0" 481 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 482 | 483 | color-convert@^1.9.0: 484 | version "1.9.0" 485 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 486 | dependencies: 487 | color-name "^1.1.1" 488 | 489 | color-name@^1.1.1: 490 | version "1.1.3" 491 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 492 | 493 | combined-stream@^1.0.5, combined-stream@~1.0.5: 494 | version "1.0.5" 495 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 496 | dependencies: 497 | delayed-stream "~1.0.0" 498 | 499 | commander@^2.9.0: 500 | version "2.11.0" 501 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" 502 | 503 | concat-map@0.0.1: 504 | version "0.0.1" 505 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 506 | 507 | concat-stream@^1.6.0: 508 | version "1.6.0" 509 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 510 | dependencies: 511 | inherits "^2.0.3" 512 | readable-stream "^2.2.2" 513 | typedarray "^0.0.6" 514 | 515 | content-type-parser@^1.0.1: 516 | version "1.0.1" 517 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 518 | 519 | convert-source-map@^1.1.0, convert-source-map@^1.4.0: 520 | version "1.5.0" 521 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 522 | 523 | core-js@^2.4.0: 524 | version "2.5.0" 525 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.0.tgz#569c050918be6486b3837552028ae0466b717086" 526 | 527 | core-util-is@1.0.2, core-util-is@~1.0.0: 528 | version "1.0.2" 529 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 530 | 531 | cosmiconfig@^1.1.0: 532 | version "1.1.0" 533 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-1.1.0.tgz#0dea0f9804efdfb929fbb1b188e25553ea053d37" 534 | dependencies: 535 | graceful-fs "^4.1.2" 536 | js-yaml "^3.4.3" 537 | minimist "^1.2.0" 538 | object-assign "^4.0.1" 539 | os-homedir "^1.0.1" 540 | parse-json "^2.2.0" 541 | pinkie-promise "^2.0.0" 542 | require-from-string "^1.1.0" 543 | 544 | coveralls@^2.13.1: 545 | version "2.13.1" 546 | resolved "https://registry.yarnpkg.com/coveralls/-/coveralls-2.13.1.tgz#d70bb9acc1835ec4f063ff9dac5423c17b11f178" 547 | dependencies: 548 | js-yaml "3.6.1" 549 | lcov-parse "0.0.10" 550 | log-driver "1.2.5" 551 | minimist "1.2.0" 552 | request "2.79.0" 553 | 554 | cross-spawn@^5.0.1, cross-spawn@^5.1.0: 555 | version "5.1.0" 556 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 557 | dependencies: 558 | lru-cache "^4.0.1" 559 | shebang-command "^1.2.0" 560 | which "^1.2.9" 561 | 562 | cryptiles@2.x.x: 563 | version "2.0.5" 564 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 565 | dependencies: 566 | boom "2.x.x" 567 | 568 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 569 | version "0.3.2" 570 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 571 | 572 | "cssstyle@>= 0.2.37 < 0.3.0": 573 | version "0.2.37" 574 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 575 | dependencies: 576 | cssom "0.3.x" 577 | 578 | dashdash@^1.12.0: 579 | version "1.14.1" 580 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 581 | dependencies: 582 | assert-plus "^1.0.0" 583 | 584 | date-fns@^1.27.2: 585 | version "1.28.5" 586 | resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.28.5.tgz#257cfc45d322df45ef5658665967ee841cd73faf" 587 | 588 | debug@^2.1.1, debug@^2.2.0, debug@^2.6.3, debug@^2.6.8: 589 | version "2.6.8" 590 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 591 | dependencies: 592 | ms "2.0.0" 593 | 594 | decamelize@^1.0.0, decamelize@^1.1.1: 595 | version "1.2.0" 596 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 597 | 598 | deep-is@~0.1.3: 599 | version "0.1.3" 600 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 601 | 602 | default-require-extensions@^1.0.0: 603 | version "1.0.0" 604 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 605 | dependencies: 606 | strip-bom "^2.0.0" 607 | 608 | del@^2.0.2: 609 | version "2.2.2" 610 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 611 | dependencies: 612 | globby "^5.0.0" 613 | is-path-cwd "^1.0.0" 614 | is-path-in-cwd "^1.0.0" 615 | object-assign "^4.0.1" 616 | pify "^2.0.0" 617 | pinkie-promise "^2.0.0" 618 | rimraf "^2.2.8" 619 | 620 | delayed-stream@~1.0.0: 621 | version "1.0.0" 622 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 623 | 624 | detect-indent@^4.0.0: 625 | version "4.0.0" 626 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 627 | dependencies: 628 | repeating "^2.0.0" 629 | 630 | diff@^3.2.0: 631 | version "3.3.0" 632 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.3.0.tgz#056695150d7aa93237ca7e378ac3b1682b7963b9" 633 | 634 | doctrine@^2.0.0: 635 | version "2.0.0" 636 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" 637 | dependencies: 638 | esutils "^2.0.2" 639 | isarray "^1.0.0" 640 | 641 | ecc-jsbn@~0.1.1: 642 | version "0.1.1" 643 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 644 | dependencies: 645 | jsbn "~0.1.0" 646 | 647 | elegant-spinner@^1.0.1: 648 | version "1.0.1" 649 | resolved "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e" 650 | 651 | errno@^0.1.4: 652 | version "0.1.4" 653 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 654 | dependencies: 655 | prr "~0.0.0" 656 | 657 | error-ex@^1.2.0: 658 | version "1.3.1" 659 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 660 | dependencies: 661 | is-arrayish "^0.2.1" 662 | 663 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 664 | version "1.0.5" 665 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 666 | 667 | escodegen@^1.6.1: 668 | version "1.8.1" 669 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 670 | dependencies: 671 | esprima "^2.7.1" 672 | estraverse "^1.9.1" 673 | esutils "^2.0.2" 674 | optionator "^0.8.1" 675 | optionalDependencies: 676 | source-map "~0.2.0" 677 | 678 | eslint-config-prettier@^2.3.0: 679 | version "2.3.0" 680 | resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-2.3.0.tgz#b75b1eabea0c8b97b34403647ee25db349b9d8a0" 681 | dependencies: 682 | get-stdin "^5.0.1" 683 | 684 | eslint-scope@^3.7.1: 685 | version "3.7.1" 686 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" 687 | dependencies: 688 | esrecurse "^4.1.0" 689 | estraverse "^4.1.1" 690 | 691 | eslint@^4.4.1: 692 | version "4.4.1" 693 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.4.1.tgz#99cd7eafcffca2ff99a5c8f5f2a474d6364b4bd3" 694 | dependencies: 695 | ajv "^5.2.0" 696 | babel-code-frame "^6.22.0" 697 | chalk "^1.1.3" 698 | concat-stream "^1.6.0" 699 | cross-spawn "^5.1.0" 700 | debug "^2.6.8" 701 | doctrine "^2.0.0" 702 | eslint-scope "^3.7.1" 703 | espree "^3.5.0" 704 | esquery "^1.0.0" 705 | estraverse "^4.2.0" 706 | esutils "^2.0.2" 707 | file-entry-cache "^2.0.0" 708 | functional-red-black-tree "^1.0.1" 709 | glob "^7.1.2" 710 | globals "^9.17.0" 711 | ignore "^3.3.3" 712 | imurmurhash "^0.1.4" 713 | inquirer "^3.0.6" 714 | is-resolvable "^1.0.0" 715 | js-yaml "^3.9.1" 716 | json-stable-stringify "^1.0.1" 717 | levn "^0.3.0" 718 | lodash "^4.17.4" 719 | minimatch "^3.0.2" 720 | mkdirp "^0.5.1" 721 | natural-compare "^1.4.0" 722 | optionator "^0.8.2" 723 | path-is-inside "^1.0.2" 724 | pluralize "^4.0.0" 725 | progress "^2.0.0" 726 | require-uncached "^1.0.3" 727 | semver "^5.3.0" 728 | strip-json-comments "~2.0.1" 729 | table "^4.0.1" 730 | text-table "~0.2.0" 731 | 732 | espree@^3.5.0: 733 | version "3.5.0" 734 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.0.tgz#98358625bdd055861ea27e2867ea729faf463d8d" 735 | dependencies: 736 | acorn "^5.1.1" 737 | acorn-jsx "^3.0.0" 738 | 739 | esprima@^2.6.0, esprima@^2.7.1: 740 | version "2.7.3" 741 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 742 | 743 | esprima@^4.0.0: 744 | version "4.0.0" 745 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 746 | 747 | esquery@^1.0.0: 748 | version "1.0.0" 749 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 750 | dependencies: 751 | estraverse "^4.0.0" 752 | 753 | esrecurse@^4.1.0: 754 | version "4.2.0" 755 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" 756 | dependencies: 757 | estraverse "^4.1.0" 758 | object-assign "^4.0.1" 759 | 760 | estraverse@^1.9.1: 761 | version "1.9.3" 762 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 763 | 764 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: 765 | version "4.2.0" 766 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 767 | 768 | esutils@^2.0.2: 769 | version "2.0.2" 770 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 771 | 772 | exec-sh@^0.2.0: 773 | version "0.2.0" 774 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" 775 | dependencies: 776 | merge "^1.1.3" 777 | 778 | execa@^0.8.0: 779 | version "0.8.0" 780 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.8.0.tgz#d8d76bbc1b55217ed190fd6dd49d3c774ecfc8da" 781 | dependencies: 782 | cross-spawn "^5.0.1" 783 | get-stream "^3.0.0" 784 | is-stream "^1.1.0" 785 | npm-run-path "^2.0.0" 786 | p-finally "^1.0.0" 787 | signal-exit "^3.0.0" 788 | strip-eof "^1.0.0" 789 | 790 | exit-hook@^1.0.0: 791 | version "1.1.1" 792 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 793 | 794 | expand-brackets@^0.1.4: 795 | version "0.1.5" 796 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 797 | dependencies: 798 | is-posix-bracket "^0.1.0" 799 | 800 | expand-range@^1.8.1: 801 | version "1.8.2" 802 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 803 | dependencies: 804 | fill-range "^2.1.0" 805 | 806 | extend@~3.0.0: 807 | version "3.0.1" 808 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 809 | 810 | external-editor@^2.0.4: 811 | version "2.0.4" 812 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.0.4.tgz#1ed9199da9cbfe2ef2f7a31b2fde8b0d12368972" 813 | dependencies: 814 | iconv-lite "^0.4.17" 815 | jschardet "^1.4.2" 816 | tmp "^0.0.31" 817 | 818 | extglob@^0.3.1: 819 | version "0.3.2" 820 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 821 | dependencies: 822 | is-extglob "^1.0.0" 823 | 824 | extsprintf@1.3.0, extsprintf@^1.2.0: 825 | version "1.3.0" 826 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 827 | 828 | fast-deep-equal@^1.0.0: 829 | version "1.0.0" 830 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 831 | 832 | fast-levenshtein@~2.0.4: 833 | version "2.0.6" 834 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 835 | 836 | fb-watchman@^1.8.0: 837 | version "1.9.2" 838 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383" 839 | dependencies: 840 | bser "1.0.2" 841 | 842 | fb-watchman@^2.0.0: 843 | version "2.0.0" 844 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 845 | dependencies: 846 | bser "^2.0.0" 847 | 848 | figures@^1.7.0: 849 | version "1.7.0" 850 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 851 | dependencies: 852 | escape-string-regexp "^1.0.5" 853 | object-assign "^4.1.0" 854 | 855 | figures@^2.0.0: 856 | version "2.0.0" 857 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 858 | dependencies: 859 | escape-string-regexp "^1.0.5" 860 | 861 | file-entry-cache@^2.0.0: 862 | version "2.0.0" 863 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 864 | dependencies: 865 | flat-cache "^1.2.1" 866 | object-assign "^4.0.1" 867 | 868 | filename-regex@^2.0.0: 869 | version "2.0.1" 870 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 871 | 872 | fileset@^2.0.2: 873 | version "2.0.3" 874 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 875 | dependencies: 876 | glob "^7.0.3" 877 | minimatch "^3.0.3" 878 | 879 | fill-range@^2.1.0: 880 | version "2.2.3" 881 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 882 | dependencies: 883 | is-number "^2.1.0" 884 | isobject "^2.0.0" 885 | randomatic "^1.1.3" 886 | repeat-element "^1.1.2" 887 | repeat-string "^1.5.2" 888 | 889 | find-up@^1.0.0: 890 | version "1.1.2" 891 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 892 | dependencies: 893 | path-exists "^2.0.0" 894 | pinkie-promise "^2.0.0" 895 | 896 | find-up@^2.1.0: 897 | version "2.1.0" 898 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 899 | dependencies: 900 | locate-path "^2.0.0" 901 | 902 | flat-cache@^1.2.1: 903 | version "1.2.2" 904 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 905 | dependencies: 906 | circular-json "^0.3.1" 907 | del "^2.0.2" 908 | graceful-fs "^4.1.2" 909 | write "^0.2.1" 910 | 911 | for-in@^1.0.1: 912 | version "1.0.2" 913 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 914 | 915 | for-own@^0.1.4: 916 | version "0.1.5" 917 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 918 | dependencies: 919 | for-in "^1.0.1" 920 | 921 | forever-agent@~0.6.1: 922 | version "0.6.1" 923 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 924 | 925 | form-data@~2.1.1: 926 | version "2.1.4" 927 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 928 | dependencies: 929 | asynckit "^0.4.0" 930 | combined-stream "^1.0.5" 931 | mime-types "^2.1.12" 932 | 933 | fs.realpath@^1.0.0: 934 | version "1.0.0" 935 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 936 | 937 | functional-red-black-tree@^1.0.1: 938 | version "1.0.1" 939 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 940 | 941 | generate-function@^2.0.0: 942 | version "2.0.0" 943 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 944 | 945 | generate-object-property@^1.1.0: 946 | version "1.2.0" 947 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 948 | dependencies: 949 | is-property "^1.0.0" 950 | 951 | get-caller-file@^1.0.1: 952 | version "1.0.2" 953 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 954 | 955 | get-stdin@^5.0.1: 956 | version "5.0.1" 957 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" 958 | 959 | get-stream@^3.0.0: 960 | version "3.0.0" 961 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 962 | 963 | getpass@^0.1.1: 964 | version "0.1.7" 965 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 966 | dependencies: 967 | assert-plus "^1.0.0" 968 | 969 | glob-base@^0.3.0: 970 | version "0.3.0" 971 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 972 | dependencies: 973 | glob-parent "^2.0.0" 974 | is-glob "^2.0.0" 975 | 976 | glob-parent@^2.0.0: 977 | version "2.0.0" 978 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 979 | dependencies: 980 | is-glob "^2.0.0" 981 | 982 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2: 983 | version "7.1.2" 984 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 985 | dependencies: 986 | fs.realpath "^1.0.0" 987 | inflight "^1.0.4" 988 | inherits "2" 989 | minimatch "^3.0.4" 990 | once "^1.3.0" 991 | path-is-absolute "^1.0.0" 992 | 993 | globals@^9.0.0, globals@^9.17.0: 994 | version "9.18.0" 995 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 996 | 997 | globby@^5.0.0: 998 | version "5.0.0" 999 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1000 | dependencies: 1001 | array-union "^1.0.1" 1002 | arrify "^1.0.0" 1003 | glob "^7.0.3" 1004 | object-assign "^4.0.1" 1005 | pify "^2.0.0" 1006 | pinkie-promise "^2.0.0" 1007 | 1008 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 1009 | version "4.1.11" 1010 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1011 | 1012 | growly@^1.3.0: 1013 | version "1.3.0" 1014 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1015 | 1016 | handlebars@^4.0.3: 1017 | version "4.0.10" 1018 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.10.tgz#3d30c718b09a3d96f23ea4cc1f403c4d3ba9ff4f" 1019 | dependencies: 1020 | async "^1.4.0" 1021 | optimist "^0.6.1" 1022 | source-map "^0.4.4" 1023 | optionalDependencies: 1024 | uglify-js "^2.6" 1025 | 1026 | har-validator@~2.0.6: 1027 | version "2.0.6" 1028 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 1029 | dependencies: 1030 | chalk "^1.1.1" 1031 | commander "^2.9.0" 1032 | is-my-json-valid "^2.12.4" 1033 | pinkie-promise "^2.0.0" 1034 | 1035 | has-ansi@^2.0.0: 1036 | version "2.0.0" 1037 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1038 | dependencies: 1039 | ansi-regex "^2.0.0" 1040 | 1041 | has-flag@^1.0.0: 1042 | version "1.0.0" 1043 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1044 | 1045 | has-flag@^2.0.0: 1046 | version "2.0.0" 1047 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1048 | 1049 | hawk@~3.1.3: 1050 | version "3.1.3" 1051 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1052 | dependencies: 1053 | boom "2.x.x" 1054 | cryptiles "2.x.x" 1055 | hoek "2.x.x" 1056 | sntp "1.x.x" 1057 | 1058 | hoek@2.x.x: 1059 | version "2.16.3" 1060 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1061 | 1062 | home-or-tmp@^2.0.0: 1063 | version "2.0.0" 1064 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1065 | dependencies: 1066 | os-homedir "^1.0.0" 1067 | os-tmpdir "^1.0.1" 1068 | 1069 | hosted-git-info@^2.1.4: 1070 | version "2.5.0" 1071 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 1072 | 1073 | html-encoding-sniffer@^1.0.1: 1074 | version "1.0.1" 1075 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 1076 | dependencies: 1077 | whatwg-encoding "^1.0.1" 1078 | 1079 | http-signature@~1.1.0: 1080 | version "1.1.1" 1081 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1082 | dependencies: 1083 | assert-plus "^0.2.0" 1084 | jsprim "^1.2.2" 1085 | sshpk "^1.7.0" 1086 | 1087 | husky@^0.14.3: 1088 | version "0.14.3" 1089 | resolved "https://registry.yarnpkg.com/husky/-/husky-0.14.3.tgz#c69ed74e2d2779769a17ba8399b54ce0b63c12c3" 1090 | dependencies: 1091 | is-ci "^1.0.10" 1092 | normalize-path "^1.0.0" 1093 | strip-indent "^2.0.0" 1094 | 1095 | iconv-lite@0.4.13: 1096 | version "0.4.13" 1097 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 1098 | 1099 | iconv-lite@^0.4.17: 1100 | version "0.4.18" 1101 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.18.tgz#23d8656b16aae6742ac29732ea8f0336a4789cf2" 1102 | 1103 | ignore@^3.3.3: 1104 | version "3.3.3" 1105 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.3.tgz#432352e57accd87ab3110e82d3fea0e47812156d" 1106 | 1107 | imurmurhash@^0.1.4: 1108 | version "0.1.4" 1109 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1110 | 1111 | indent-string@^2.1.0: 1112 | version "2.1.0" 1113 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 1114 | dependencies: 1115 | repeating "^2.0.0" 1116 | 1117 | indent-string@^3.0.0: 1118 | version "3.2.0" 1119 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" 1120 | 1121 | inflight@^1.0.4: 1122 | version "1.0.6" 1123 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1124 | dependencies: 1125 | once "^1.3.0" 1126 | wrappy "1" 1127 | 1128 | inherits@2, inherits@^2.0.3, inherits@~2.0.3: 1129 | version "2.0.3" 1130 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1131 | 1132 | inquirer@^3.0.6: 1133 | version "3.2.1" 1134 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.2.1.tgz#06ceb0f540f45ca548c17d6840959878265fa175" 1135 | dependencies: 1136 | ansi-escapes "^2.0.0" 1137 | chalk "^2.0.0" 1138 | cli-cursor "^2.1.0" 1139 | cli-width "^2.0.0" 1140 | external-editor "^2.0.4" 1141 | figures "^2.0.0" 1142 | lodash "^4.3.0" 1143 | mute-stream "0.0.7" 1144 | run-async "^2.2.0" 1145 | rx-lite "^4.0.8" 1146 | rx-lite-aggregates "^4.0.8" 1147 | string-width "^2.1.0" 1148 | strip-ansi "^4.0.0" 1149 | through "^2.3.6" 1150 | 1151 | invariant@^2.2.0: 1152 | version "2.2.2" 1153 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1154 | dependencies: 1155 | loose-envify "^1.0.0" 1156 | 1157 | invert-kv@^1.0.0: 1158 | version "1.0.0" 1159 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1160 | 1161 | is-arrayish@^0.2.1: 1162 | version "0.2.1" 1163 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1164 | 1165 | is-buffer@^1.1.5: 1166 | version "1.1.5" 1167 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1168 | 1169 | is-builtin-module@^1.0.0: 1170 | version "1.0.0" 1171 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1172 | dependencies: 1173 | builtin-modules "^1.0.0" 1174 | 1175 | is-ci@^1.0.10: 1176 | version "1.0.10" 1177 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1178 | dependencies: 1179 | ci-info "^1.0.0" 1180 | 1181 | is-dotfile@^1.0.0: 1182 | version "1.0.3" 1183 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1184 | 1185 | is-equal-shallow@^0.1.3: 1186 | version "0.1.3" 1187 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1188 | dependencies: 1189 | is-primitive "^2.0.0" 1190 | 1191 | is-extendable@^0.1.1: 1192 | version "0.1.1" 1193 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1194 | 1195 | is-extglob@^1.0.0: 1196 | version "1.0.0" 1197 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1198 | 1199 | is-finite@^1.0.0: 1200 | version "1.0.2" 1201 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1202 | dependencies: 1203 | number-is-nan "^1.0.0" 1204 | 1205 | is-fullwidth-code-point@^1.0.0: 1206 | version "1.0.0" 1207 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1208 | dependencies: 1209 | number-is-nan "^1.0.0" 1210 | 1211 | is-fullwidth-code-point@^2.0.0: 1212 | version "2.0.0" 1213 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1214 | 1215 | is-glob@^2.0.0, is-glob@^2.0.1: 1216 | version "2.0.1" 1217 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1218 | dependencies: 1219 | is-extglob "^1.0.0" 1220 | 1221 | is-my-json-valid@^2.12.4: 1222 | version "2.16.0" 1223 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693" 1224 | dependencies: 1225 | generate-function "^2.0.0" 1226 | generate-object-property "^1.1.0" 1227 | jsonpointer "^4.0.0" 1228 | xtend "^4.0.0" 1229 | 1230 | is-number@^2.1.0: 1231 | version "2.1.0" 1232 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1233 | dependencies: 1234 | kind-of "^3.0.2" 1235 | 1236 | is-number@^3.0.0: 1237 | version "3.0.0" 1238 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1239 | dependencies: 1240 | kind-of "^3.0.2" 1241 | 1242 | is-path-cwd@^1.0.0: 1243 | version "1.0.0" 1244 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1245 | 1246 | is-path-in-cwd@^1.0.0: 1247 | version "1.0.0" 1248 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1249 | dependencies: 1250 | is-path-inside "^1.0.0" 1251 | 1252 | is-path-inside@^1.0.0: 1253 | version "1.0.0" 1254 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 1255 | dependencies: 1256 | path-is-inside "^1.0.1" 1257 | 1258 | is-posix-bracket@^0.1.0: 1259 | version "0.1.1" 1260 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1261 | 1262 | is-primitive@^2.0.0: 1263 | version "2.0.0" 1264 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1265 | 1266 | is-promise@^2.1.0: 1267 | version "2.1.0" 1268 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1269 | 1270 | is-property@^1.0.0: 1271 | version "1.0.2" 1272 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1273 | 1274 | is-resolvable@^1.0.0: 1275 | version "1.0.0" 1276 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 1277 | dependencies: 1278 | tryit "^1.0.1" 1279 | 1280 | is-stream@^1.1.0: 1281 | version "1.1.0" 1282 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1283 | 1284 | is-typedarray@~1.0.0: 1285 | version "1.0.0" 1286 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1287 | 1288 | is-utf8@^0.2.0: 1289 | version "0.2.1" 1290 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1291 | 1292 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1293 | version "1.0.0" 1294 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1295 | 1296 | isexe@^2.0.0: 1297 | version "2.0.0" 1298 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1299 | 1300 | isobject@^2.0.0: 1301 | version "2.1.0" 1302 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1303 | dependencies: 1304 | isarray "1.0.0" 1305 | 1306 | isstream@~0.1.2: 1307 | version "0.1.2" 1308 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1309 | 1310 | istanbul-api@^1.1.1: 1311 | version "1.1.11" 1312 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.11.tgz#fcc0b461e2b3bda71e305155138238768257d9de" 1313 | dependencies: 1314 | async "^2.1.4" 1315 | fileset "^2.0.2" 1316 | istanbul-lib-coverage "^1.1.1" 1317 | istanbul-lib-hook "^1.0.7" 1318 | istanbul-lib-instrument "^1.7.4" 1319 | istanbul-lib-report "^1.1.1" 1320 | istanbul-lib-source-maps "^1.2.1" 1321 | istanbul-reports "^1.1.1" 1322 | js-yaml "^3.7.0" 1323 | mkdirp "^0.5.1" 1324 | once "^1.4.0" 1325 | 1326 | istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.1.1: 1327 | version "1.1.1" 1328 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" 1329 | 1330 | istanbul-lib-hook@^1.0.7: 1331 | version "1.0.7" 1332 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.7.tgz#dd6607f03076578fe7d6f2a630cf143b49bacddc" 1333 | dependencies: 1334 | append-transform "^0.4.0" 1335 | 1336 | istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.7.2, istanbul-lib-instrument@^1.7.4: 1337 | version "1.7.4" 1338 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.4.tgz#e9fd920e4767f3d19edc765e2d6b3f5ccbd0eea8" 1339 | dependencies: 1340 | babel-generator "^6.18.0" 1341 | babel-template "^6.16.0" 1342 | babel-traverse "^6.18.0" 1343 | babel-types "^6.18.0" 1344 | babylon "^6.17.4" 1345 | istanbul-lib-coverage "^1.1.1" 1346 | semver "^5.3.0" 1347 | 1348 | istanbul-lib-report@^1.1.1: 1349 | version "1.1.1" 1350 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#f0e55f56655ffa34222080b7a0cd4760e1405fc9" 1351 | dependencies: 1352 | istanbul-lib-coverage "^1.1.1" 1353 | mkdirp "^0.5.1" 1354 | path-parse "^1.0.5" 1355 | supports-color "^3.1.2" 1356 | 1357 | istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.1: 1358 | version "1.2.1" 1359 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.1.tgz#a6fe1acba8ce08eebc638e572e294d267008aa0c" 1360 | dependencies: 1361 | debug "^2.6.3" 1362 | istanbul-lib-coverage "^1.1.1" 1363 | mkdirp "^0.5.1" 1364 | rimraf "^2.6.1" 1365 | source-map "^0.5.3" 1366 | 1367 | istanbul-reports@^1.1.1: 1368 | version "1.1.1" 1369 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.1.tgz#042be5c89e175bc3f86523caab29c014e77fee4e" 1370 | dependencies: 1371 | handlebars "^4.0.3" 1372 | 1373 | jest-changed-files@^20.0.3: 1374 | version "20.0.3" 1375 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-20.0.3.tgz#9394d5cc65c438406149bef1bf4d52b68e03e3f8" 1376 | 1377 | jest-cli@^20.0.4: 1378 | version "20.0.4" 1379 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-20.0.4.tgz#e532b19d88ae5bc6c417e8b0593a6fe954b1dc93" 1380 | dependencies: 1381 | ansi-escapes "^1.4.0" 1382 | callsites "^2.0.0" 1383 | chalk "^1.1.3" 1384 | graceful-fs "^4.1.11" 1385 | is-ci "^1.0.10" 1386 | istanbul-api "^1.1.1" 1387 | istanbul-lib-coverage "^1.0.1" 1388 | istanbul-lib-instrument "^1.4.2" 1389 | istanbul-lib-source-maps "^1.1.0" 1390 | jest-changed-files "^20.0.3" 1391 | jest-config "^20.0.4" 1392 | jest-docblock "^20.0.3" 1393 | jest-environment-jsdom "^20.0.3" 1394 | jest-haste-map "^20.0.4" 1395 | jest-jasmine2 "^20.0.4" 1396 | jest-message-util "^20.0.3" 1397 | jest-regex-util "^20.0.3" 1398 | jest-resolve-dependencies "^20.0.3" 1399 | jest-runtime "^20.0.4" 1400 | jest-snapshot "^20.0.3" 1401 | jest-util "^20.0.3" 1402 | micromatch "^2.3.11" 1403 | node-notifier "^5.0.2" 1404 | pify "^2.3.0" 1405 | slash "^1.0.0" 1406 | string-length "^1.0.1" 1407 | throat "^3.0.0" 1408 | which "^1.2.12" 1409 | worker-farm "^1.3.1" 1410 | yargs "^7.0.2" 1411 | 1412 | jest-config@^20.0.4: 1413 | version "20.0.4" 1414 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-20.0.4.tgz#e37930ab2217c913605eff13e7bd763ec48faeea" 1415 | dependencies: 1416 | chalk "^1.1.3" 1417 | glob "^7.1.1" 1418 | jest-environment-jsdom "^20.0.3" 1419 | jest-environment-node "^20.0.3" 1420 | jest-jasmine2 "^20.0.4" 1421 | jest-matcher-utils "^20.0.3" 1422 | jest-regex-util "^20.0.3" 1423 | jest-resolve "^20.0.4" 1424 | jest-validate "^20.0.3" 1425 | pretty-format "^20.0.3" 1426 | 1427 | jest-diff@^20.0.3: 1428 | version "20.0.3" 1429 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-20.0.3.tgz#81f288fd9e675f0fb23c75f1c2b19445fe586617" 1430 | dependencies: 1431 | chalk "^1.1.3" 1432 | diff "^3.2.0" 1433 | jest-matcher-utils "^20.0.3" 1434 | pretty-format "^20.0.3" 1435 | 1436 | jest-docblock@^20.0.3: 1437 | version "20.0.3" 1438 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-20.0.3.tgz#17bea984342cc33d83c50fbe1545ea0efaa44712" 1439 | 1440 | jest-environment-jsdom@^20.0.3: 1441 | version "20.0.3" 1442 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-20.0.3.tgz#048a8ac12ee225f7190417713834bb999787de99" 1443 | dependencies: 1444 | jest-mock "^20.0.3" 1445 | jest-util "^20.0.3" 1446 | jsdom "^9.12.0" 1447 | 1448 | jest-environment-node@^20.0.3: 1449 | version "20.0.3" 1450 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-20.0.3.tgz#d488bc4612af2c246e986e8ae7671a099163d403" 1451 | dependencies: 1452 | jest-mock "^20.0.3" 1453 | jest-util "^20.0.3" 1454 | 1455 | jest-haste-map@^20.0.4: 1456 | version "20.0.5" 1457 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-20.0.5.tgz#abad74efb1a005974a7b6517e11010709cab9112" 1458 | dependencies: 1459 | fb-watchman "^2.0.0" 1460 | graceful-fs "^4.1.11" 1461 | jest-docblock "^20.0.3" 1462 | micromatch "^2.3.11" 1463 | sane "~1.6.0" 1464 | worker-farm "^1.3.1" 1465 | 1466 | jest-jasmine2@^20.0.4: 1467 | version "20.0.4" 1468 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-20.0.4.tgz#fcc5b1411780d911d042902ef1859e852e60d5e1" 1469 | dependencies: 1470 | chalk "^1.1.3" 1471 | graceful-fs "^4.1.11" 1472 | jest-diff "^20.0.3" 1473 | jest-matcher-utils "^20.0.3" 1474 | jest-matchers "^20.0.3" 1475 | jest-message-util "^20.0.3" 1476 | jest-snapshot "^20.0.3" 1477 | once "^1.4.0" 1478 | p-map "^1.1.1" 1479 | 1480 | jest-matcher-utils@^20.0.3: 1481 | version "20.0.3" 1482 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-20.0.3.tgz#b3a6b8e37ca577803b0832a98b164f44b7815612" 1483 | dependencies: 1484 | chalk "^1.1.3" 1485 | pretty-format "^20.0.3" 1486 | 1487 | jest-matchers@^20.0.3: 1488 | version "20.0.3" 1489 | resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-20.0.3.tgz#ca69db1c32db5a6f707fa5e0401abb55700dfd60" 1490 | dependencies: 1491 | jest-diff "^20.0.3" 1492 | jest-matcher-utils "^20.0.3" 1493 | jest-message-util "^20.0.3" 1494 | jest-regex-util "^20.0.3" 1495 | 1496 | jest-message-util@^20.0.3: 1497 | version "20.0.3" 1498 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-20.0.3.tgz#6aec2844306fcb0e6e74d5796c1006d96fdd831c" 1499 | dependencies: 1500 | chalk "^1.1.3" 1501 | micromatch "^2.3.11" 1502 | slash "^1.0.0" 1503 | 1504 | jest-mock@^20.0.3: 1505 | version "20.0.3" 1506 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-20.0.3.tgz#8bc070e90414aa155c11a8d64c869a0d5c71da59" 1507 | 1508 | jest-regex-util@^20.0.3: 1509 | version "20.0.3" 1510 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-20.0.3.tgz#85bbab5d133e44625b19faf8c6aa5122d085d762" 1511 | 1512 | jest-resolve-dependencies@^20.0.3: 1513 | version "20.0.3" 1514 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-20.0.3.tgz#6e14a7b717af0f2cb3667c549de40af017b1723a" 1515 | dependencies: 1516 | jest-regex-util "^20.0.3" 1517 | 1518 | jest-resolve@^20.0.4: 1519 | version "20.0.4" 1520 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-20.0.4.tgz#9448b3e8b6bafc15479444c6499045b7ffe597a5" 1521 | dependencies: 1522 | browser-resolve "^1.11.2" 1523 | is-builtin-module "^1.0.0" 1524 | resolve "^1.3.2" 1525 | 1526 | jest-runtime@^20.0.4: 1527 | version "20.0.4" 1528 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-20.0.4.tgz#a2c802219c4203f754df1404e490186169d124d8" 1529 | dependencies: 1530 | babel-core "^6.0.0" 1531 | babel-jest "^20.0.3" 1532 | babel-plugin-istanbul "^4.0.0" 1533 | chalk "^1.1.3" 1534 | convert-source-map "^1.4.0" 1535 | graceful-fs "^4.1.11" 1536 | jest-config "^20.0.4" 1537 | jest-haste-map "^20.0.4" 1538 | jest-regex-util "^20.0.3" 1539 | jest-resolve "^20.0.4" 1540 | jest-util "^20.0.3" 1541 | json-stable-stringify "^1.0.1" 1542 | micromatch "^2.3.11" 1543 | strip-bom "3.0.0" 1544 | yargs "^7.0.2" 1545 | 1546 | jest-snapshot@^20.0.3: 1547 | version "20.0.3" 1548 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-20.0.3.tgz#5b847e1adb1a4d90852a7f9f125086e187c76566" 1549 | dependencies: 1550 | chalk "^1.1.3" 1551 | jest-diff "^20.0.3" 1552 | jest-matcher-utils "^20.0.3" 1553 | jest-util "^20.0.3" 1554 | natural-compare "^1.4.0" 1555 | pretty-format "^20.0.3" 1556 | 1557 | jest-util@^20.0.3: 1558 | version "20.0.3" 1559 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-20.0.3.tgz#0c07f7d80d82f4e5a67c6f8b9c3fe7f65cfd32ad" 1560 | dependencies: 1561 | chalk "^1.1.3" 1562 | graceful-fs "^4.1.11" 1563 | jest-message-util "^20.0.3" 1564 | jest-mock "^20.0.3" 1565 | jest-validate "^20.0.3" 1566 | leven "^2.1.0" 1567 | mkdirp "^0.5.1" 1568 | 1569 | jest-validate@^20.0.3: 1570 | version "20.0.3" 1571 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-20.0.3.tgz#d0cfd1de4f579f298484925c280f8f1d94ec3cab" 1572 | dependencies: 1573 | chalk "^1.1.3" 1574 | jest-matcher-utils "^20.0.3" 1575 | leven "^2.1.0" 1576 | pretty-format "^20.0.3" 1577 | 1578 | jest@^20.0.4: 1579 | version "20.0.4" 1580 | resolved "https://registry.yarnpkg.com/jest/-/jest-20.0.4.tgz#3dd260c2989d6dad678b1e9cc4d91944f6d602ac" 1581 | dependencies: 1582 | jest-cli "^20.0.4" 1583 | 1584 | js-tokens@^3.0.0: 1585 | version "3.0.2" 1586 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1587 | 1588 | js-yaml@3.6.1: 1589 | version "3.6.1" 1590 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.6.1.tgz#6e5fe67d8b205ce4d22fad05b7781e8dadcc4b30" 1591 | dependencies: 1592 | argparse "^1.0.7" 1593 | esprima "^2.6.0" 1594 | 1595 | js-yaml@^3.4.3, js-yaml@^3.7.0, js-yaml@^3.9.1: 1596 | version "3.9.1" 1597 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.9.1.tgz#08775cebdfdd359209f0d2acd383c8f86a6904a0" 1598 | dependencies: 1599 | argparse "^1.0.7" 1600 | esprima "^4.0.0" 1601 | 1602 | jsbn@~0.1.0: 1603 | version "0.1.1" 1604 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1605 | 1606 | jschardet@^1.4.2: 1607 | version "1.5.1" 1608 | resolved "https://registry.yarnpkg.com/jschardet/-/jschardet-1.5.1.tgz#c519f629f86b3a5bedba58a88d311309eec097f9" 1609 | 1610 | jsdom@^9.12.0: 1611 | version "9.12.0" 1612 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 1613 | dependencies: 1614 | abab "^1.0.3" 1615 | acorn "^4.0.4" 1616 | acorn-globals "^3.1.0" 1617 | array-equal "^1.0.0" 1618 | content-type-parser "^1.0.1" 1619 | cssom ">= 0.3.2 < 0.4.0" 1620 | cssstyle ">= 0.2.37 < 0.3.0" 1621 | escodegen "^1.6.1" 1622 | html-encoding-sniffer "^1.0.1" 1623 | nwmatcher ">= 1.3.9 < 2.0.0" 1624 | parse5 "^1.5.1" 1625 | request "^2.79.0" 1626 | sax "^1.2.1" 1627 | symbol-tree "^3.2.1" 1628 | tough-cookie "^2.3.2" 1629 | webidl-conversions "^4.0.0" 1630 | whatwg-encoding "^1.0.1" 1631 | whatwg-url "^4.3.0" 1632 | xml-name-validator "^2.0.1" 1633 | 1634 | jsesc@^1.3.0: 1635 | version "1.3.0" 1636 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1637 | 1638 | json-schema-traverse@^0.3.0: 1639 | version "0.3.1" 1640 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 1641 | 1642 | json-schema@0.2.3: 1643 | version "0.2.3" 1644 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1645 | 1646 | json-stable-stringify@^1.0.1: 1647 | version "1.0.1" 1648 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1649 | dependencies: 1650 | jsonify "~0.0.0" 1651 | 1652 | json-stringify-safe@~5.0.1: 1653 | version "5.0.1" 1654 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1655 | 1656 | json5@^0.5.0: 1657 | version "0.5.1" 1658 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1659 | 1660 | jsonify@~0.0.0: 1661 | version "0.0.0" 1662 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1663 | 1664 | jsonpointer@^4.0.0: 1665 | version "4.0.1" 1666 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 1667 | 1668 | jsprim@^1.2.2: 1669 | version "1.4.1" 1670 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1671 | dependencies: 1672 | assert-plus "1.0.0" 1673 | extsprintf "1.3.0" 1674 | json-schema "0.2.3" 1675 | verror "1.10.0" 1676 | 1677 | kind-of@^3.0.2: 1678 | version "3.2.2" 1679 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1680 | dependencies: 1681 | is-buffer "^1.1.5" 1682 | 1683 | kind-of@^4.0.0: 1684 | version "4.0.0" 1685 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1686 | dependencies: 1687 | is-buffer "^1.1.5" 1688 | 1689 | lazy-cache@^1.0.3: 1690 | version "1.0.4" 1691 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1692 | 1693 | lcid@^1.0.0: 1694 | version "1.0.0" 1695 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1696 | dependencies: 1697 | invert-kv "^1.0.0" 1698 | 1699 | lcov-parse@0.0.10: 1700 | version "0.0.10" 1701 | resolved "https://registry.yarnpkg.com/lcov-parse/-/lcov-parse-0.0.10.tgz#1b0b8ff9ac9c7889250582b70b71315d9da6d9a3" 1702 | 1703 | leven@^2.1.0: 1704 | version "2.1.0" 1705 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 1706 | 1707 | levn@^0.3.0, levn@~0.3.0: 1708 | version "0.3.0" 1709 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1710 | dependencies: 1711 | prelude-ls "~1.1.2" 1712 | type-check "~0.3.2" 1713 | 1714 | lint-staged@^4.0.3: 1715 | version "4.0.3" 1716 | resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-4.0.3.tgz#1ce55591bc2c83a781a90b69a0a0c8aa0fc6370b" 1717 | dependencies: 1718 | app-root-path "^2.0.0" 1719 | cosmiconfig "^1.1.0" 1720 | execa "^0.8.0" 1721 | listr "^0.12.0" 1722 | lodash.chunk "^4.2.0" 1723 | minimatch "^3.0.0" 1724 | npm-which "^3.0.1" 1725 | p-map "^1.1.1" 1726 | staged-git-files "0.0.4" 1727 | 1728 | listr-silent-renderer@^1.1.1: 1729 | version "1.1.1" 1730 | resolved "https://registry.yarnpkg.com/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz#924b5a3757153770bf1a8e3fbf74b8bbf3f9242e" 1731 | 1732 | listr-update-renderer@^0.2.0: 1733 | version "0.2.0" 1734 | resolved "https://registry.yarnpkg.com/listr-update-renderer/-/listr-update-renderer-0.2.0.tgz#ca80e1779b4e70266807e8eed1ad6abe398550f9" 1735 | dependencies: 1736 | chalk "^1.1.3" 1737 | cli-truncate "^0.2.1" 1738 | elegant-spinner "^1.0.1" 1739 | figures "^1.7.0" 1740 | indent-string "^3.0.0" 1741 | log-symbols "^1.0.2" 1742 | log-update "^1.0.2" 1743 | strip-ansi "^3.0.1" 1744 | 1745 | listr-verbose-renderer@^0.4.0: 1746 | version "0.4.0" 1747 | resolved "https://registry.yarnpkg.com/listr-verbose-renderer/-/listr-verbose-renderer-0.4.0.tgz#44dc01bb0c34a03c572154d4d08cde9b1dc5620f" 1748 | dependencies: 1749 | chalk "^1.1.3" 1750 | cli-cursor "^1.0.2" 1751 | date-fns "^1.27.2" 1752 | figures "^1.7.0" 1753 | 1754 | listr@^0.12.0: 1755 | version "0.12.0" 1756 | resolved "https://registry.yarnpkg.com/listr/-/listr-0.12.0.tgz#6bce2c0f5603fa49580ea17cd6a00cc0e5fa451a" 1757 | dependencies: 1758 | chalk "^1.1.3" 1759 | cli-truncate "^0.2.1" 1760 | figures "^1.7.0" 1761 | indent-string "^2.1.0" 1762 | is-promise "^2.1.0" 1763 | is-stream "^1.1.0" 1764 | listr-silent-renderer "^1.1.1" 1765 | listr-update-renderer "^0.2.0" 1766 | listr-verbose-renderer "^0.4.0" 1767 | log-symbols "^1.0.2" 1768 | log-update "^1.0.2" 1769 | ora "^0.2.3" 1770 | p-map "^1.1.1" 1771 | rxjs "^5.0.0-beta.11" 1772 | stream-to-observable "^0.1.0" 1773 | strip-ansi "^3.0.1" 1774 | 1775 | load-json-file@^1.0.0: 1776 | version "1.1.0" 1777 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1778 | dependencies: 1779 | graceful-fs "^4.1.2" 1780 | parse-json "^2.2.0" 1781 | pify "^2.0.0" 1782 | pinkie-promise "^2.0.0" 1783 | strip-bom "^2.0.0" 1784 | 1785 | locate-path@^2.0.0: 1786 | version "2.0.0" 1787 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1788 | dependencies: 1789 | p-locate "^2.0.0" 1790 | path-exists "^3.0.0" 1791 | 1792 | lodash.chunk@^4.2.0: 1793 | version "4.2.0" 1794 | resolved "https://registry.yarnpkg.com/lodash.chunk/-/lodash.chunk-4.2.0.tgz#66e5ce1f76ed27b4303d8c6512e8d1216e8106bc" 1795 | 1796 | lodash@^4.0.0, lodash@^4.14.0, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.3.0: 1797 | version "4.17.4" 1798 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1799 | 1800 | log-driver@1.2.5: 1801 | version "1.2.5" 1802 | resolved "https://registry.yarnpkg.com/log-driver/-/log-driver-1.2.5.tgz#7ae4ec257302fd790d557cb10c97100d857b0056" 1803 | 1804 | log-symbols@^1.0.2: 1805 | version "1.0.2" 1806 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" 1807 | dependencies: 1808 | chalk "^1.0.0" 1809 | 1810 | log-update@^1.0.2: 1811 | version "1.0.2" 1812 | resolved "https://registry.yarnpkg.com/log-update/-/log-update-1.0.2.tgz#19929f64c4093d2d2e7075a1dad8af59c296b8d1" 1813 | dependencies: 1814 | ansi-escapes "^1.0.0" 1815 | cli-cursor "^1.0.2" 1816 | 1817 | longest@^1.0.1: 1818 | version "1.0.1" 1819 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1820 | 1821 | loose-envify@^1.0.0: 1822 | version "1.3.1" 1823 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1824 | dependencies: 1825 | js-tokens "^3.0.0" 1826 | 1827 | lru-cache@^4.0.1, lru-cache@^4.1.1: 1828 | version "4.1.1" 1829 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 1830 | dependencies: 1831 | pseudomap "^1.0.2" 1832 | yallist "^2.1.2" 1833 | 1834 | makeerror@1.0.x: 1835 | version "1.0.11" 1836 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 1837 | dependencies: 1838 | tmpl "1.0.x" 1839 | 1840 | merge@^1.1.3: 1841 | version "1.2.0" 1842 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 1843 | 1844 | micromatch@^2.1.5, micromatch@^2.3.11: 1845 | version "2.3.11" 1846 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1847 | dependencies: 1848 | arr-diff "^2.0.0" 1849 | array-unique "^0.2.1" 1850 | braces "^1.8.2" 1851 | expand-brackets "^0.1.4" 1852 | extglob "^0.3.1" 1853 | filename-regex "^2.0.0" 1854 | is-extglob "^1.0.0" 1855 | is-glob "^2.0.1" 1856 | kind-of "^3.0.2" 1857 | normalize-path "^2.0.1" 1858 | object.omit "^2.0.0" 1859 | parse-glob "^3.0.4" 1860 | regex-cache "^0.4.2" 1861 | 1862 | mime-db@~1.29.0: 1863 | version "1.29.0" 1864 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.29.0.tgz#48d26d235589651704ac5916ca06001914266878" 1865 | 1866 | mime-types@^2.1.12, mime-types@~2.1.7: 1867 | version "2.1.16" 1868 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.16.tgz#2b858a52e5ecd516db897ac2be87487830698e23" 1869 | dependencies: 1870 | mime-db "~1.29.0" 1871 | 1872 | mimic-fn@^1.0.0: 1873 | version "1.1.0" 1874 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 1875 | 1876 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 1877 | version "3.0.4" 1878 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1879 | dependencies: 1880 | brace-expansion "^1.1.7" 1881 | 1882 | minimist@0.0.8, minimist@~0.0.1: 1883 | version "0.0.8" 1884 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1885 | 1886 | minimist@1.2.0, minimist@^1.1.1, minimist@^1.2.0: 1887 | version "1.2.0" 1888 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1889 | 1890 | mkdirp@^0.5.1: 1891 | version "0.5.1" 1892 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1893 | dependencies: 1894 | minimist "0.0.8" 1895 | 1896 | ms@2.0.0: 1897 | version "2.0.0" 1898 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1899 | 1900 | mute-stream@0.0.7: 1901 | version "0.0.7" 1902 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 1903 | 1904 | natural-compare@^1.4.0: 1905 | version "1.4.0" 1906 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1907 | 1908 | node-int64@^0.4.0: 1909 | version "0.4.0" 1910 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 1911 | 1912 | node-notifier@^5.0.2: 1913 | version "5.1.2" 1914 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 1915 | dependencies: 1916 | growly "^1.3.0" 1917 | semver "^5.3.0" 1918 | shellwords "^0.1.0" 1919 | which "^1.2.12" 1920 | 1921 | normalize-package-data@^2.3.2: 1922 | version "2.4.0" 1923 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 1924 | dependencies: 1925 | hosted-git-info "^2.1.4" 1926 | is-builtin-module "^1.0.0" 1927 | semver "2 || 3 || 4 || 5" 1928 | validate-npm-package-license "^3.0.1" 1929 | 1930 | normalize-path@^1.0.0: 1931 | version "1.0.0" 1932 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-1.0.0.tgz#32d0e472f91ff345701c15a8311018d3b0a90379" 1933 | 1934 | normalize-path@^2.0.0, normalize-path@^2.0.1: 1935 | version "2.1.1" 1936 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1937 | dependencies: 1938 | remove-trailing-separator "^1.0.1" 1939 | 1940 | npm-path@^2.0.2: 1941 | version "2.0.3" 1942 | resolved "https://registry.yarnpkg.com/npm-path/-/npm-path-2.0.3.tgz#15cff4e1c89a38da77f56f6055b24f975dfb2bbe" 1943 | dependencies: 1944 | which "^1.2.10" 1945 | 1946 | npm-run-path@^2.0.0: 1947 | version "2.0.2" 1948 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 1949 | dependencies: 1950 | path-key "^2.0.0" 1951 | 1952 | npm-which@^3.0.1: 1953 | version "3.0.1" 1954 | resolved "https://registry.yarnpkg.com/npm-which/-/npm-which-3.0.1.tgz#9225f26ec3a285c209cae67c3b11a6b4ab7140aa" 1955 | dependencies: 1956 | commander "^2.9.0" 1957 | npm-path "^2.0.2" 1958 | which "^1.2.10" 1959 | 1960 | number-is-nan@^1.0.0: 1961 | version "1.0.1" 1962 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1963 | 1964 | "nwmatcher@>= 1.3.9 < 2.0.0": 1965 | version "1.4.1" 1966 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.1.tgz#7ae9b07b0ea804db7e25f05cb5fe4097d4e4949f" 1967 | 1968 | oauth-sign@~0.8.1: 1969 | version "0.8.2" 1970 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1971 | 1972 | object-assign@^4.0.1, object-assign@^4.1.0: 1973 | version "4.1.1" 1974 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1975 | 1976 | object-hash@^1.1.8: 1977 | version "1.1.8" 1978 | resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-1.1.8.tgz#28a659cf987d96a4dabe7860289f3b5326c4a03c" 1979 | 1980 | object.omit@^2.0.0: 1981 | version "2.0.1" 1982 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1983 | dependencies: 1984 | for-own "^0.1.4" 1985 | is-extendable "^0.1.1" 1986 | 1987 | once@^1.3.0, once@^1.4.0: 1988 | version "1.4.0" 1989 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1990 | dependencies: 1991 | wrappy "1" 1992 | 1993 | onetime@^1.0.0: 1994 | version "1.1.0" 1995 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 1996 | 1997 | onetime@^2.0.0: 1998 | version "2.0.1" 1999 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2000 | dependencies: 2001 | mimic-fn "^1.0.0" 2002 | 2003 | optimist@^0.6.1: 2004 | version "0.6.1" 2005 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2006 | dependencies: 2007 | minimist "~0.0.1" 2008 | wordwrap "~0.0.2" 2009 | 2010 | optionator@^0.8.1, optionator@^0.8.2: 2011 | version "0.8.2" 2012 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2013 | dependencies: 2014 | deep-is "~0.1.3" 2015 | fast-levenshtein "~2.0.4" 2016 | levn "~0.3.0" 2017 | prelude-ls "~1.1.2" 2018 | type-check "~0.3.2" 2019 | wordwrap "~1.0.0" 2020 | 2021 | ora@^0.2.3: 2022 | version "0.2.3" 2023 | resolved "https://registry.yarnpkg.com/ora/-/ora-0.2.3.tgz#37527d220adcd53c39b73571d754156d5db657a4" 2024 | dependencies: 2025 | chalk "^1.1.1" 2026 | cli-cursor "^1.0.2" 2027 | cli-spinners "^0.1.2" 2028 | object-assign "^4.0.1" 2029 | 2030 | os-homedir@^1.0.0, os-homedir@^1.0.1: 2031 | version "1.0.2" 2032 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2033 | 2034 | os-locale@^1.4.0: 2035 | version "1.4.0" 2036 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2037 | dependencies: 2038 | lcid "^1.0.0" 2039 | 2040 | os-tmpdir@^1.0.1, os-tmpdir@~1.0.1: 2041 | version "1.0.2" 2042 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2043 | 2044 | p-finally@^1.0.0: 2045 | version "1.0.0" 2046 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2047 | 2048 | p-limit@^1.1.0: 2049 | version "1.1.0" 2050 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2051 | 2052 | p-locate@^2.0.0: 2053 | version "2.0.0" 2054 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2055 | dependencies: 2056 | p-limit "^1.1.0" 2057 | 2058 | p-map@^1.1.1: 2059 | version "1.1.1" 2060 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.1.1.tgz#05f5e4ae97a068371bc2a5cc86bfbdbc19c4ae7a" 2061 | 2062 | parse-glob@^3.0.4: 2063 | version "3.0.4" 2064 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2065 | dependencies: 2066 | glob-base "^0.3.0" 2067 | is-dotfile "^1.0.0" 2068 | is-extglob "^1.0.0" 2069 | is-glob "^2.0.0" 2070 | 2071 | parse-json@^2.2.0: 2072 | version "2.2.0" 2073 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2074 | dependencies: 2075 | error-ex "^1.2.0" 2076 | 2077 | parse5@^1.5.1: 2078 | version "1.5.1" 2079 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 2080 | 2081 | path-exists@^2.0.0: 2082 | version "2.1.0" 2083 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2084 | dependencies: 2085 | pinkie-promise "^2.0.0" 2086 | 2087 | path-exists@^3.0.0: 2088 | version "3.0.0" 2089 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2090 | 2091 | path-is-absolute@^1.0.0: 2092 | version "1.0.1" 2093 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2094 | 2095 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 2096 | version "1.0.2" 2097 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2098 | 2099 | path-key@^2.0.0: 2100 | version "2.0.1" 2101 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2102 | 2103 | path-parse@^1.0.5: 2104 | version "1.0.5" 2105 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2106 | 2107 | path-type@^1.0.0: 2108 | version "1.1.0" 2109 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2110 | dependencies: 2111 | graceful-fs "^4.1.2" 2112 | pify "^2.0.0" 2113 | pinkie-promise "^2.0.0" 2114 | 2115 | pify@^2.0.0, pify@^2.3.0: 2116 | version "2.3.0" 2117 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2118 | 2119 | pinkie-promise@^2.0.0: 2120 | version "2.0.1" 2121 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2122 | dependencies: 2123 | pinkie "^2.0.0" 2124 | 2125 | pinkie@^2.0.0: 2126 | version "2.0.4" 2127 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2128 | 2129 | pluralize@^4.0.0: 2130 | version "4.0.0" 2131 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-4.0.0.tgz#59b708c1c0190a2f692f1c7618c446b052fd1762" 2132 | 2133 | prelude-ls@~1.1.2: 2134 | version "1.1.2" 2135 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2136 | 2137 | preserve@^0.2.0: 2138 | version "0.2.0" 2139 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2140 | 2141 | prettier@^1.5.3: 2142 | version "1.5.3" 2143 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.5.3.tgz#59dadc683345ec6b88f88b94ed4ae7e1da394bfe" 2144 | 2145 | pretty-format@^20.0.3: 2146 | version "20.0.3" 2147 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-20.0.3.tgz#020e350a560a1fe1a98dc3beb6ccffb386de8b14" 2148 | dependencies: 2149 | ansi-regex "^2.1.1" 2150 | ansi-styles "^3.0.0" 2151 | 2152 | private@^0.1.6: 2153 | version "0.1.7" 2154 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2155 | 2156 | process-nextick-args@~1.0.6: 2157 | version "1.0.7" 2158 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2159 | 2160 | progress@^2.0.0: 2161 | version "2.0.0" 2162 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 2163 | 2164 | prr@~0.0.0: 2165 | version "0.0.0" 2166 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 2167 | 2168 | pseudomap@^1.0.2: 2169 | version "1.0.2" 2170 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2171 | 2172 | punycode@^1.4.1: 2173 | version "1.4.1" 2174 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2175 | 2176 | qs@~6.3.0: 2177 | version "6.3.2" 2178 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.2.tgz#e75bd5f6e268122a2a0e0bda630b2550c166502c" 2179 | 2180 | randomatic@^1.1.3: 2181 | version "1.1.7" 2182 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 2183 | dependencies: 2184 | is-number "^3.0.0" 2185 | kind-of "^4.0.0" 2186 | 2187 | read-pkg-up@^1.0.1: 2188 | version "1.0.1" 2189 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2190 | dependencies: 2191 | find-up "^1.0.0" 2192 | read-pkg "^1.0.0" 2193 | 2194 | read-pkg@^1.0.0: 2195 | version "1.1.0" 2196 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2197 | dependencies: 2198 | load-json-file "^1.0.0" 2199 | normalize-package-data "^2.3.2" 2200 | path-type "^1.0.0" 2201 | 2202 | readable-stream@^2.2.2: 2203 | version "2.3.3" 2204 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 2205 | dependencies: 2206 | core-util-is "~1.0.0" 2207 | inherits "~2.0.3" 2208 | isarray "~1.0.0" 2209 | process-nextick-args "~1.0.6" 2210 | safe-buffer "~5.1.1" 2211 | string_decoder "~1.0.3" 2212 | util-deprecate "~1.0.1" 2213 | 2214 | regenerator-runtime@^0.10.0: 2215 | version "0.10.5" 2216 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 2217 | 2218 | regex-cache@^0.4.2: 2219 | version "0.4.3" 2220 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2221 | dependencies: 2222 | is-equal-shallow "^0.1.3" 2223 | is-primitive "^2.0.0" 2224 | 2225 | remove-trailing-separator@^1.0.1: 2226 | version "1.0.2" 2227 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.2.tgz#69b062d978727ad14dc6b56ba4ab772fd8d70511" 2228 | 2229 | repeat-element@^1.1.2: 2230 | version "1.1.2" 2231 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2232 | 2233 | repeat-string@^1.5.2: 2234 | version "1.6.1" 2235 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2236 | 2237 | repeating@^2.0.0: 2238 | version "2.0.1" 2239 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2240 | dependencies: 2241 | is-finite "^1.0.0" 2242 | 2243 | request@2.79.0, request@^2.79.0: 2244 | version "2.79.0" 2245 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" 2246 | dependencies: 2247 | aws-sign2 "~0.6.0" 2248 | aws4 "^1.2.1" 2249 | caseless "~0.11.0" 2250 | combined-stream "~1.0.5" 2251 | extend "~3.0.0" 2252 | forever-agent "~0.6.1" 2253 | form-data "~2.1.1" 2254 | har-validator "~2.0.6" 2255 | hawk "~3.1.3" 2256 | http-signature "~1.1.0" 2257 | is-typedarray "~1.0.0" 2258 | isstream "~0.1.2" 2259 | json-stringify-safe "~5.0.1" 2260 | mime-types "~2.1.7" 2261 | oauth-sign "~0.8.1" 2262 | qs "~6.3.0" 2263 | stringstream "~0.0.4" 2264 | tough-cookie "~2.3.0" 2265 | tunnel-agent "~0.4.1" 2266 | uuid "^3.0.0" 2267 | 2268 | require-directory@^2.1.1: 2269 | version "2.1.1" 2270 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2271 | 2272 | require-from-string@^1.1.0: 2273 | version "1.2.1" 2274 | resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-1.2.1.tgz#529c9ccef27380adfec9a2f965b649bbee636418" 2275 | 2276 | require-main-filename@^1.0.1: 2277 | version "1.0.1" 2278 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2279 | 2280 | require-uncached@^1.0.3: 2281 | version "1.0.3" 2282 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 2283 | dependencies: 2284 | caller-path "^0.1.0" 2285 | resolve-from "^1.0.0" 2286 | 2287 | resolve-from@^1.0.0: 2288 | version "1.0.1" 2289 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 2290 | 2291 | resolve@1.1.7: 2292 | version "1.1.7" 2293 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2294 | 2295 | resolve@^1.3.2: 2296 | version "1.4.0" 2297 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.4.0.tgz#a75be01c53da25d934a98ebd0e4c4a7312f92a86" 2298 | dependencies: 2299 | path-parse "^1.0.5" 2300 | 2301 | restore-cursor@^1.0.1: 2302 | version "1.0.1" 2303 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 2304 | dependencies: 2305 | exit-hook "^1.0.0" 2306 | onetime "^1.0.0" 2307 | 2308 | restore-cursor@^2.0.0: 2309 | version "2.0.0" 2310 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 2311 | dependencies: 2312 | onetime "^2.0.0" 2313 | signal-exit "^3.0.2" 2314 | 2315 | right-align@^0.1.1: 2316 | version "0.1.3" 2317 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2318 | dependencies: 2319 | align-text "^0.1.1" 2320 | 2321 | rimraf@^2.2.8, rimraf@^2.6.1: 2322 | version "2.6.1" 2323 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 2324 | dependencies: 2325 | glob "^7.0.5" 2326 | 2327 | run-async@^2.2.0: 2328 | version "2.3.0" 2329 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 2330 | dependencies: 2331 | is-promise "^2.1.0" 2332 | 2333 | rx-lite-aggregates@^4.0.8: 2334 | version "4.0.8" 2335 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 2336 | dependencies: 2337 | rx-lite "*" 2338 | 2339 | rx-lite@*, rx-lite@^4.0.8: 2340 | version "4.0.8" 2341 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 2342 | 2343 | rxjs@^5.0.0-beta.11: 2344 | version "5.4.3" 2345 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.4.3.tgz#0758cddee6033d68e0fd53676f0f3596ce3d483f" 2346 | dependencies: 2347 | symbol-observable "^1.0.1" 2348 | 2349 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2350 | version "5.1.1" 2351 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2352 | 2353 | sane@~1.6.0: 2354 | version "1.6.0" 2355 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.6.0.tgz#9610c452307a135d29c1fdfe2547034180c46775" 2356 | dependencies: 2357 | anymatch "^1.3.0" 2358 | exec-sh "^0.2.0" 2359 | fb-watchman "^1.8.0" 2360 | minimatch "^3.0.2" 2361 | minimist "^1.1.1" 2362 | walker "~1.0.5" 2363 | watch "~0.10.0" 2364 | 2365 | sax@^1.2.1: 2366 | version "1.2.4" 2367 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2368 | 2369 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 2370 | version "5.4.1" 2371 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 2372 | 2373 | set-blocking@^2.0.0: 2374 | version "2.0.0" 2375 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2376 | 2377 | shebang-command@^1.2.0: 2378 | version "1.2.0" 2379 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2380 | dependencies: 2381 | shebang-regex "^1.0.0" 2382 | 2383 | shebang-regex@^1.0.0: 2384 | version "1.0.0" 2385 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2386 | 2387 | shellwords@^0.1.0: 2388 | version "0.1.0" 2389 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.0.tgz#66afd47b6a12932d9071cbfd98a52e785cd0ba14" 2390 | 2391 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2392 | version "3.0.2" 2393 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2394 | 2395 | slash@^1.0.0: 2396 | version "1.0.0" 2397 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2398 | 2399 | slice-ansi@0.0.4: 2400 | version "0.0.4" 2401 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 2402 | 2403 | sntp@1.x.x: 2404 | version "1.0.9" 2405 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2406 | dependencies: 2407 | hoek "2.x.x" 2408 | 2409 | source-map-support@^0.4.2: 2410 | version "0.4.15" 2411 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1" 2412 | dependencies: 2413 | source-map "^0.5.6" 2414 | 2415 | source-map@^0.4.4: 2416 | version "0.4.4" 2417 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 2418 | dependencies: 2419 | amdefine ">=0.0.4" 2420 | 2421 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 2422 | version "0.5.6" 2423 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 2424 | 2425 | source-map@~0.2.0: 2426 | version "0.2.0" 2427 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 2428 | dependencies: 2429 | amdefine ">=0.0.4" 2430 | 2431 | spdx-correct@~1.0.0: 2432 | version "1.0.2" 2433 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2434 | dependencies: 2435 | spdx-license-ids "^1.0.2" 2436 | 2437 | spdx-expression-parse@~1.0.0: 2438 | version "1.0.4" 2439 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2440 | 2441 | spdx-license-ids@^1.0.2: 2442 | version "1.2.2" 2443 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2444 | 2445 | sprintf-js@~1.0.2: 2446 | version "1.0.3" 2447 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2448 | 2449 | sshpk@^1.7.0: 2450 | version "1.13.1" 2451 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 2452 | dependencies: 2453 | asn1 "~0.2.3" 2454 | assert-plus "^1.0.0" 2455 | dashdash "^1.12.0" 2456 | getpass "^0.1.1" 2457 | optionalDependencies: 2458 | bcrypt-pbkdf "^1.0.0" 2459 | ecc-jsbn "~0.1.1" 2460 | jsbn "~0.1.0" 2461 | tweetnacl "~0.14.0" 2462 | 2463 | staged-git-files@0.0.4: 2464 | version "0.0.4" 2465 | resolved "https://registry.yarnpkg.com/staged-git-files/-/staged-git-files-0.0.4.tgz#d797e1b551ca7a639dec0237dc6eb4bb9be17d35" 2466 | 2467 | stream-to-observable@^0.1.0: 2468 | version "0.1.0" 2469 | resolved "https://registry.yarnpkg.com/stream-to-observable/-/stream-to-observable-0.1.0.tgz#45bf1d9f2d7dc09bed81f1c307c430e68b84cffe" 2470 | 2471 | string-length@^1.0.1: 2472 | version "1.0.1" 2473 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 2474 | dependencies: 2475 | strip-ansi "^3.0.0" 2476 | 2477 | string-width@^1.0.1, string-width@^1.0.2: 2478 | version "1.0.2" 2479 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2480 | dependencies: 2481 | code-point-at "^1.0.0" 2482 | is-fullwidth-code-point "^1.0.0" 2483 | strip-ansi "^3.0.0" 2484 | 2485 | string-width@^2.0.0, string-width@^2.1.0: 2486 | version "2.1.1" 2487 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2488 | dependencies: 2489 | is-fullwidth-code-point "^2.0.0" 2490 | strip-ansi "^4.0.0" 2491 | 2492 | string_decoder@~1.0.3: 2493 | version "1.0.3" 2494 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 2495 | dependencies: 2496 | safe-buffer "~5.1.0" 2497 | 2498 | stringstream@~0.0.4: 2499 | version "0.0.5" 2500 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2501 | 2502 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2503 | version "3.0.1" 2504 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2505 | dependencies: 2506 | ansi-regex "^2.0.0" 2507 | 2508 | strip-ansi@^4.0.0: 2509 | version "4.0.0" 2510 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2511 | dependencies: 2512 | ansi-regex "^3.0.0" 2513 | 2514 | strip-bom@3.0.0: 2515 | version "3.0.0" 2516 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2517 | 2518 | strip-bom@^2.0.0: 2519 | version "2.0.0" 2520 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2521 | dependencies: 2522 | is-utf8 "^0.2.0" 2523 | 2524 | strip-eof@^1.0.0: 2525 | version "1.0.0" 2526 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 2527 | 2528 | strip-indent@^2.0.0: 2529 | version "2.0.0" 2530 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" 2531 | 2532 | strip-json-comments@~2.0.1: 2533 | version "2.0.1" 2534 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2535 | 2536 | supports-color@^2.0.0: 2537 | version "2.0.0" 2538 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2539 | 2540 | supports-color@^3.1.2: 2541 | version "3.2.3" 2542 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 2543 | dependencies: 2544 | has-flag "^1.0.0" 2545 | 2546 | supports-color@^4.0.0: 2547 | version "4.2.1" 2548 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.2.1.tgz#65a4bb2631e90e02420dba5554c375a4754bb836" 2549 | dependencies: 2550 | has-flag "^2.0.0" 2551 | 2552 | symbol-observable@^1.0.1: 2553 | version "1.0.4" 2554 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d" 2555 | 2556 | symbol-tree@^3.2.1: 2557 | version "3.2.2" 2558 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 2559 | 2560 | table@^4.0.1: 2561 | version "4.0.1" 2562 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.1.tgz#a8116c133fac2c61f4a420ab6cdf5c4d61f0e435" 2563 | dependencies: 2564 | ajv "^4.7.0" 2565 | ajv-keywords "^1.0.0" 2566 | chalk "^1.1.1" 2567 | lodash "^4.0.0" 2568 | slice-ansi "0.0.4" 2569 | string-width "^2.0.0" 2570 | 2571 | test-exclude@^4.1.1: 2572 | version "4.1.1" 2573 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26" 2574 | dependencies: 2575 | arrify "^1.0.1" 2576 | micromatch "^2.3.11" 2577 | object-assign "^4.1.0" 2578 | read-pkg-up "^1.0.1" 2579 | require-main-filename "^1.0.1" 2580 | 2581 | text-table@~0.2.0: 2582 | version "0.2.0" 2583 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 2584 | 2585 | throat@^3.0.0: 2586 | version "3.2.0" 2587 | resolved "https://registry.yarnpkg.com/throat/-/throat-3.2.0.tgz#50cb0670edbc40237b9e347d7e1f88e4620af836" 2588 | 2589 | through@^2.3.6: 2590 | version "2.3.8" 2591 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2592 | 2593 | tmp@^0.0.31: 2594 | version "0.0.31" 2595 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.31.tgz#8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7" 2596 | dependencies: 2597 | os-tmpdir "~1.0.1" 2598 | 2599 | tmpl@1.0.x: 2600 | version "1.0.4" 2601 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 2602 | 2603 | to-fast-properties@^1.0.1: 2604 | version "1.0.3" 2605 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2606 | 2607 | tough-cookie@^2.3.2, tough-cookie@~2.3.0: 2608 | version "2.3.2" 2609 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 2610 | dependencies: 2611 | punycode "^1.4.1" 2612 | 2613 | tr46@~0.0.3: 2614 | version "0.0.3" 2615 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 2616 | 2617 | trim-right@^1.0.1: 2618 | version "1.0.1" 2619 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2620 | 2621 | tryit@^1.0.1: 2622 | version "1.0.3" 2623 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 2624 | 2625 | tunnel-agent@~0.4.1: 2626 | version "0.4.3" 2627 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 2628 | 2629 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2630 | version "0.14.5" 2631 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2632 | 2633 | type-check@~0.3.2: 2634 | version "0.3.2" 2635 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 2636 | dependencies: 2637 | prelude-ls "~1.1.2" 2638 | 2639 | typedarray@^0.0.6: 2640 | version "0.0.6" 2641 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 2642 | 2643 | uglify-js@^2.6: 2644 | version "2.8.29" 2645 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 2646 | dependencies: 2647 | source-map "~0.5.1" 2648 | yargs "~3.10.0" 2649 | optionalDependencies: 2650 | uglify-to-browserify "~1.0.0" 2651 | 2652 | uglify-to-browserify@~1.0.0: 2653 | version "1.0.2" 2654 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 2655 | 2656 | util-deprecate@~1.0.1: 2657 | version "1.0.2" 2658 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2659 | 2660 | uuid@^3.0.0: 2661 | version "3.1.0" 2662 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 2663 | 2664 | validate-npm-package-license@^3.0.1: 2665 | version "3.0.1" 2666 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 2667 | dependencies: 2668 | spdx-correct "~1.0.0" 2669 | spdx-expression-parse "~1.0.0" 2670 | 2671 | verror@1.10.0: 2672 | version "1.10.0" 2673 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 2674 | dependencies: 2675 | assert-plus "^1.0.0" 2676 | core-util-is "1.0.2" 2677 | extsprintf "^1.2.0" 2678 | 2679 | walker@~1.0.5: 2680 | version "1.0.7" 2681 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 2682 | dependencies: 2683 | makeerror "1.0.x" 2684 | 2685 | watch@~0.10.0: 2686 | version "0.10.0" 2687 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 2688 | 2689 | webidl-conversions@^3.0.0: 2690 | version "3.0.1" 2691 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 2692 | 2693 | webidl-conversions@^4.0.0: 2694 | version "4.0.2" 2695 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" 2696 | 2697 | whatwg-encoding@^1.0.1: 2698 | version "1.0.1" 2699 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 2700 | dependencies: 2701 | iconv-lite "0.4.13" 2702 | 2703 | whatwg-url@^4.3.0: 2704 | version "4.8.0" 2705 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0" 2706 | dependencies: 2707 | tr46 "~0.0.3" 2708 | webidl-conversions "^3.0.0" 2709 | 2710 | which-module@^1.0.0: 2711 | version "1.0.0" 2712 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 2713 | 2714 | which@^1.2.10, which@^1.2.12, which@^1.2.9: 2715 | version "1.3.0" 2716 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 2717 | dependencies: 2718 | isexe "^2.0.0" 2719 | 2720 | window-size@0.1.0: 2721 | version "0.1.0" 2722 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 2723 | 2724 | wordwrap@0.0.2, wordwrap@~0.0.2: 2725 | version "0.0.2" 2726 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 2727 | 2728 | wordwrap@~1.0.0: 2729 | version "1.0.0" 2730 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 2731 | 2732 | worker-farm@^1.3.1: 2733 | version "1.5.0" 2734 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.5.0.tgz#adfdf0cd40581465ed0a1f648f9735722afd5c8d" 2735 | dependencies: 2736 | errno "^0.1.4" 2737 | xtend "^4.0.1" 2738 | 2739 | wrap-ansi@^2.0.0: 2740 | version "2.1.0" 2741 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 2742 | dependencies: 2743 | string-width "^1.0.1" 2744 | strip-ansi "^3.0.1" 2745 | 2746 | wrappy@1: 2747 | version "1.0.2" 2748 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2749 | 2750 | write@^0.2.1: 2751 | version "0.2.1" 2752 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 2753 | dependencies: 2754 | mkdirp "^0.5.1" 2755 | 2756 | xml-name-validator@^2.0.1: 2757 | version "2.0.1" 2758 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 2759 | 2760 | xtend@^4.0.0, xtend@^4.0.1: 2761 | version "4.0.1" 2762 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2763 | 2764 | y18n@^3.2.1: 2765 | version "3.2.1" 2766 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 2767 | 2768 | yallist@^2.1.2: 2769 | version "2.1.2" 2770 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 2771 | 2772 | yargs-parser@^5.0.0: 2773 | version "5.0.0" 2774 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" 2775 | dependencies: 2776 | camelcase "^3.0.0" 2777 | 2778 | yargs@^7.0.2: 2779 | version "7.1.0" 2780 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" 2781 | dependencies: 2782 | camelcase "^3.0.0" 2783 | cliui "^3.2.0" 2784 | decamelize "^1.1.1" 2785 | get-caller-file "^1.0.1" 2786 | os-locale "^1.4.0" 2787 | read-pkg-up "^1.0.1" 2788 | require-directory "^2.1.1" 2789 | require-main-filename "^1.0.1" 2790 | set-blocking "^2.0.0" 2791 | string-width "^1.0.2" 2792 | which-module "^1.0.0" 2793 | y18n "^3.2.1" 2794 | yargs-parser "^5.0.0" 2795 | 2796 | yargs@~3.10.0: 2797 | version "3.10.0" 2798 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 2799 | dependencies: 2800 | camelcase "^1.0.2" 2801 | cliui "^2.1.0" 2802 | decamelize "^1.0.0" 2803 | window-size "0.1.0" 2804 | --------------------------------------------------------------------------------