├── .babelrc ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── README.md ├── circle.yml ├── package.json ├── rollup.config.js ├── src ├── createFetch.js ├── createFetch.test.js ├── main.d.ts ├── main.js ├── reducers.js └── reducers.test.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "ignore": [ 3 | "node_modules/**" 4 | ], 5 | "env": { 6 | "test": { 7 | "presets": [ 8 | "env" 9 | ], 10 | "sourceMaps": "inline" 11 | }, 12 | "development": { 13 | "presets": [ 14 | "es2015-rollup" 15 | ], 16 | "plugins": [ 17 | "transform-async-to-generator" 18 | ] 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | interceptors/ 3 | coverage/ 4 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: 'airbnb-base', 3 | parserOptions: { 4 | ecmaVersion: 2017, 5 | sourceType: 'module', 6 | }, 7 | env: { 8 | jest: true, 9 | }, 10 | globals: { 11 | fetch: true, 12 | }, 13 | rules: { 14 | 'max-len': 0, 15 | 'require-jsdoc': 0, 16 | }, 17 | }; 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Created by https://www.gitignore.io/api/code,node 3 | 4 | ### Code ### 5 | # Visual Studio Code - https://code.visualstudio.com/ 6 | .settings/ 7 | .vscode/ 8 | tsconfig.json 9 | jsconfig.json 10 | 11 | ### Node ### 12 | # Logs 13 | logs 14 | *.log 15 | npm-debug.log* 16 | yarn-debug.log* 17 | yarn-error.log* 18 | 19 | # Runtime data 20 | pids 21 | *.pid 22 | *.seed 23 | *.pid.lock 24 | 25 | # Directory for instrumented libs generated by jscoverage/JSCover 26 | lib-cov 27 | 28 | # Coverage directory used by tools like istanbul 29 | coverage 30 | 31 | # nyc test coverage 32 | .nyc_output 33 | 34 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 35 | .grunt 36 | 37 | # Bower dependency directory (https://bower.io/) 38 | bower_components 39 | 40 | # node-waf configuration 41 | .lock-wscript 42 | 43 | # Compiled binary addons (http://nodejs.org/api/addons.html) 44 | build/Release 45 | 46 | # Dependency directories 47 | node_modules/ 48 | jspm_packages/ 49 | 50 | # Typescript v1 declaration files 51 | typings/ 52 | 53 | # Optional npm cache directory 54 | .npm 55 | 56 | # Optional eslint cache 57 | .eslintcache 58 | 59 | # Optional REPL history 60 | .node_repl_history 61 | 62 | # Output of 'npm pack' 63 | *.tgz 64 | 65 | # Yarn Integrity file 66 | .yarn-integrity 67 | 68 | # dotenv environment variables file 69 | .env 70 | 71 | 72 | # End of https://www.gitignore.io/api/code,node 73 | dist/ 74 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # micro-http-client 2 | 3 | A thin wrapper over [fetch](https://developer.mozilla.org/en/docs/Web/API/Fetch_API), used to specify common request and response processing in a single location. 4 | 5 | Special thanks to [Remerge](https://www.remerge.io/) for open sourcing this library. 6 | 7 | ## Motivation 8 | 9 | The Fetch API covers about 90% of the use cases that most existing HTTP client libraries exist to address. However, in practice you often want to handle all of an application's requests the same way, coupled to application state (like authentication credentials). This library exists to solve that problem. 10 | 11 | Many of the existing implementations also offer extensive APIs for common scenarios, with fluent interfaces and lots of methods. This library aims to do the opposite, offering the minimum surface area capable of addressing all typical application scenarios. 12 | 13 | In particular this library aims to offer an API whose usage can be verified through static analysis, so the utility functions offered here are all named exports, they never mutate their inputs, and they're stateless. In other words, aim to be unbreakable. 14 | 15 | ## Usage 16 | 17 | ```js 18 | import { createFetch, prependHost, addHeaders, processBody, rejectIfUnsuccessful } from '@remerge/http-client'; 19 | import store from 'my-application-state'; 20 | 21 | const fetch = createFetch({ 22 | requestReducers: [ 23 | prependHost(process.env.API_HOST), 24 | addHeaders({ 25 | Accept: 'application/vnd.api+json', 26 | 'Content-Type': 'application/json', 27 | }), 28 | addHeaders(() => store.getAuthorizationHeaders()), 29 | processBody(JSON.stringify), 30 | ], 31 | responseReducers: [ 32 | rejectIfUnsuccessful, 33 | response => response.json(), 34 | ], 35 | }); 36 | 37 | fetch('/profile'); 38 | ``` 39 | 40 | This defines a client which will prepend the `process.env.API_HOST` host to incoming request URLs, add default content type headers and authorization headers from the application store and send the request body as a JSON string. 41 | 42 | Responses with a non-successful status code will cause the Promise chain to reject, and will otherwise be unwrapped, returning only the parsed JSON body of the Response. 43 | 44 | ## Installation 45 | 46 | Available as an NPM exporting a UMD module. 47 | 48 | ```sh 49 | # npm install micro-http-client 50 | yarn add micro-http-client 51 | ``` 52 | 53 | ## Reducers 54 | 55 | A reducer is a function which takes a request or response object and returns a new object. Each will be called in turn to set up the request before it's passed to `global.fetch()`, and process the response once it's received. 56 | 57 | Reducers may return a Promise. 58 | 59 | ### Request Reducer 60 | 61 | ```js 62 | function requestReducer(request: Object) => Promise | Object; 63 | ``` 64 | 65 | A request reducer is any function that takes a request object and returns a new request object. A simple example of a request reducer might be one that adds headers to the request before it's sent. 66 | 67 | #### `request` 68 | 69 | The `request` parameter is always an object matching the second parameter of the [Request constructor](https://developer.mozilla.org/en-US/docs/Web/API/Request/Request), with an additional `url` property assigned the value passed as the first argument to the `fetch()` method. 70 | 71 | It is a plain JavaScript object rather than a `Request` instance because `Request` instances are very difficult to reduce over: you can only mutate the `Headers` object in-place, and the `body` of the `Request` is only accessible as a stream, which is single-use and difficult to clone. 72 | 73 | Plain JavaScript objects, on the other hand, are easy to work with, well-understood and many tools exist that can process them. 74 | 75 | ### Response Reducer 76 | 77 | ```js 78 | function responseReducer(response: any) => any; 79 | ``` 80 | 81 | Response reducers may take and receive anything, the only restriction is that the first response reducer will receive the result of the `fetch()` call directly, so it is guaranteed to be a [`Response`](https://developer.mozilla.org/en-US/docs/Web/API/Response) instance. 82 | 83 | Like `Request`s, `Response` instances are very difficult to reduce over, but there are many situations where the stream properties of the `Response` might be useful, so this library does not modify the original `Response` object at all. 84 | 85 | For the common case where only the body of the `Response` is desired, it can be trivially converted with a one-line function. Subsequent reducers can then process the result as a plain JavaScript object. 86 | 87 | ```js 88 | const fetch = createFetch({ 89 | responseReducers: [ 90 | response => response.json(), 91 | ], 92 | }); 93 | ``` 94 | 95 | ## API 96 | 97 | ### `createFetch({ requestReducers: [], responseReducers: [] })` 98 | 99 | Takes as input two arrays, one of request reducers and one of response reducers. 100 | 101 | Returns a function identical to the global [`fetch()`](https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/fetch) method in its two-parameter form. 102 | 103 | ```js 104 | function fetch(url: String, options: Object) => Promise 105 | ``` 106 | 107 | Note that it does not accept a `Request` object (as in the one-parameter form of `fetch()`) because these are problematic to reduce over. 108 | 109 | When called, it will: 110 | 111 | 1. Construct a copy of the `options` object with an additional `url` property assigned the value of the `url` parameter 112 | 2. Iterate over the `requestReducers` array, invoking the first function with the object from `#1`, and each subsequent reducer function with the return value of the last 113 | 3. Call the global `fetch()` method with the result 114 | 4. Iterate over the `responseReducers` array, invoking the first function with the `Response` from `fetch()`, and each subsequent reducer function with the return value of the last 115 | 5. Return a Promise that resolves with the result 116 | 117 | ## Standard Reducers 118 | 119 | Included is a collection of basic reducers to facilitate common application scenarios. Don't like them? Don't use them, they're very small and easy to replace with your own functions. 120 | 121 | ### `prependHost(string)` 122 | 123 | Prepends the given host to all requests. Requests are expected to contain a URL which is an absolute path fragment. 124 | 125 | Note that any URL which isn't an absolute path will cause an error, since "prepend host" doesn't make sense if a host is already present. We could replace the host, but that's not necessarily predictable behavior. 126 | 127 | Worse, by using this reducer the consumer is indicating that they expect all processed requests to be delivered to the same host and it's likely they'll be adding authentication information etc. If we transparently deliver the request to a different host we might accidentally expose that. 128 | 129 | Moreover, it's more likely to be an error than not if the consumer has given us a URL with a fully-specified host. 130 | 131 | #### Examples 132 | 133 | ```js 134 | const fetch = createFetch({ requestReducers: [ 135 | prependHost('https://api.remerge.io/'), 136 | ]}); 137 | fetch('/campaigns'); // -> GET "https://api.remerge.io/campaigns" 138 | fetch('https://www.google.com') // throws ReducerError 139 | ``` 140 | 141 | ### `addHeaders(object|function)` 142 | 143 | Includes the given headers in every request. Useful for MIME type and authentication headers. 144 | 145 | Parameter may be an object or a function returning an object or a Promise resolving to an object. 146 | 147 | Any headers specified on the request will override those set using `addHeaders()`. 148 | 149 | #### Examples 150 | 151 | ```js 152 | const fetch = createFetch({ requestReducers: [ 153 | addHeaders({ Accept: 'application/json' }), 154 | addHeaders(() => this.getAuthenticationHeaders()), 155 | ]}); 156 | fetch('/campaigns'); // -> { Accept: 'application/json', auth headers... } 157 | fetch('/campaigns', { headers: { Accept: 'text/csv' } }); // -> { Accept: 'text/csv' } 158 | ``` 159 | 160 | ### `processBody(function)` 161 | 162 | Applies the given function to the request or response body, replacing the original. The function may return a promise. 163 | 164 | The function will not be invoked unless the body property is present. 165 | 166 | Note that a GET or HEAD request cannot have a body, and no special handling is included for converting the body to URL parameters, although this would be a good candidate for a future reducer. 167 | 168 | #### Examples 169 | 170 | ```js 171 | const fetch = createFetch({ 172 | requestReducers: [ processBody(JSON.stringify) ], 173 | responseReducers: [ (response) => response.json(), processBody(JSON.parse) ], 174 | }); 175 | ``` 176 | 177 | ### `rejectIfUnsuccessful` 178 | 179 | Throws an error on any non-success HTTP status code. 180 | 181 | #### Examples 182 | 183 | ```js 184 | const fetch = createFetch({ 185 | responseReducers: [ rejectIfUnsuccessful ], 186 | }); 187 | fetch('/my/profile', { method: 'PUT' }) 188 | .catch((error) => { 189 | if (error.response.status === 422) { 190 | // Handle validation failure 191 | } 192 | }) 193 | ``` 194 | -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- 1 | machine: 2 | environment: 3 | PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin" 4 | 5 | dependencies: 6 | override: 7 | - yarn 8 | cache_directories: 9 | - ~/.cache/yarn 10 | 11 | test: 12 | override: 13 | - yarn test 14 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "micro-http-client", 3 | "version": "0.0.8", 4 | "description": "Wraps the Fetch API adding straightforward request and response processing", 5 | "main": "dist/main.js", 6 | "types": "src/main.d.ts", 7 | "files": [ 8 | "dist/main.js", 9 | "src" 10 | ], 11 | "license": "MIT", 12 | "scripts": { 13 | "prepublish": "rollup -c", 14 | "start": "rollup -c --watch", 15 | "start-test": "jest --watch", 16 | "test": "eslint . && jest" 17 | }, 18 | "repository": "remerge/micro-http-client", 19 | "devDependencies": { 20 | "babel-plugin-transform-async-to-generator": "^6.24.1", 21 | "babel-preset-env": "^1.4.0", 22 | "babel-preset-es2015-rollup": "^3.0.0", 23 | "eslint": "^3.19.0", 24 | "eslint-config-airbnb-base": "^11.2.0", 25 | "eslint-plugin-import": "^2.2.0", 26 | "jest": "^20.0.1", 27 | "rollup": "^0.41.6", 28 | "rollup-plugin-babel": "^2.7.1", 29 | "rollup-watch": "^3.2.2" 30 | }, 31 | "module": "src/main.js" 32 | } 33 | -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- 1 | import babel from 'rollup-plugin-babel'; 2 | 3 | export default { 4 | entry: 'src/main.js', 5 | format: 'umd', 6 | dest: 'dist/main.js', 7 | moduleName: 'micro-http-client', 8 | plugins: [babel()], 9 | }; 10 | -------------------------------------------------------------------------------- /src/createFetch.js: -------------------------------------------------------------------------------- 1 | async function processInterceptor(memo, interceptor) { 2 | return interceptor(await memo); 3 | } 4 | 5 | async function localFetch(globalFetch, requestReducers, responseReducers, url, options) { 6 | const requestObject = await requestReducers.reduce(processInterceptor, Object.assign({}, { url }, options)); 7 | const response = await globalFetch(requestObject.url, requestObject); 8 | return responseReducers.reduce(processInterceptor, response); 9 | } 10 | 11 | export default function createFetch({ requestReducers = [], responseReducers = [] }) { 12 | return localFetch.bind(null, fetch, requestReducers, responseReducers); 13 | } 14 | -------------------------------------------------------------------------------- /src/createFetch.test.js: -------------------------------------------------------------------------------- 1 | import createFetch from './createFetch'; 2 | 3 | (function mockGlobalFetch() { 4 | const originalFetch = global.fetch; 5 | 6 | beforeEach(() => { 7 | global.fetch = jest.fn(() => Promise.resolve()); 8 | }); 9 | 10 | afterAll(() => { 11 | global.fetch = originalFetch; 12 | }); 13 | }()); 14 | 15 | describe('createFetch', () => { 16 | it('calls `fetch`', async () => { 17 | const newFetch = createFetch({}); 18 | const url = 'some/url'; 19 | const requestObject = { foo: 'bar' }; 20 | await newFetch(url, requestObject); 21 | expect(global.fetch).toHaveBeenCalledWith(url, { url, foo: 'bar' }); 22 | }); 23 | 24 | it('invokes request reducers with the request object', async () => { 25 | const reducer = jest.fn(() => ({})); 26 | const newFetch = createFetch({ requestReducers: [reducer] }); 27 | const url = 'some/url'; 28 | await newFetch(url, { body: 'some body' }); 29 | expect(reducer).toHaveBeenCalledWith({ url, body: 'some body' }); 30 | }); 31 | 32 | it('waits for an asynchronous request reducer', async () => { 33 | const mockRequest = { url: 'mockUrl', foo: 'bar' }; 34 | const reducer = jest.fn(() => Promise.resolve(mockRequest)); 35 | 36 | const newFetch = createFetch({ requestReducers: [reducer] }); 37 | await newFetch(); 38 | expect(global.fetch).toHaveBeenCalledWith(mockRequest.url, mockRequest); 39 | }); 40 | 41 | it('calls `fetch` with the output of the reducers', async () => { 42 | const reducerResult = { method: 'POST', url: 'somewhere.com' }; 43 | const reducer = () => reducerResult; 44 | const newFetch = createFetch({ requestReducers: [reducer] }); 45 | await newFetch(); 46 | expect(global.fetch).toHaveBeenCalledWith(reducerResult.url, reducerResult); 47 | }); 48 | 49 | describe('with multiple request reducers', () => { 50 | it('passes the result of the first reducer to the second reducer', async () => { 51 | const firstInterceptorResult = { foo: 'bar' }; 52 | const firstInterceptor = jest.fn(() => firstInterceptorResult); 53 | const secondInterceptor = jest.fn(() => ({})); 54 | const newFetch = createFetch({ 55 | requestReducers: [firstInterceptor, secondInterceptor], 56 | }); 57 | await newFetch('someUrl'); 58 | expect(secondInterceptor).toHaveBeenCalledWith(firstInterceptorResult); 59 | }); 60 | }); 61 | 62 | describe('with multiple asynchronous request reducers', () => { 63 | it('passes the result of the first reducer to the second reducer', async () => { 64 | const firstInterceptorResult = { foo: 'bar' }; 65 | const firstInterceptor = jest.fn(() => Promise.resolve(firstInterceptorResult)); 66 | const secondInterceptor = jest.fn(() => Promise.resolve({})); 67 | const newFetch = createFetch({ 68 | requestReducers: [firstInterceptor, secondInterceptor], 69 | }); 70 | await newFetch('someUrl'); 71 | expect(secondInterceptor).toHaveBeenCalledWith(firstInterceptorResult); 72 | }); 73 | }); 74 | 75 | describe('when a request reducer throws an error', () => { 76 | it('is immediately raised', async () => { 77 | const reducerError = new Error(); 78 | const reducer = () => { 79 | throw reducerError; 80 | }; 81 | const newFetch = createFetch({ requestReducers: [reducer] }); 82 | await expect(newFetch()).rejects.toBe(reducerError); 83 | }); 84 | }); 85 | 86 | describe('when the fetch() resolves', () => { 87 | it('invokes the response reducers with the Response', async () => { 88 | const mockResponse = { foo: 'bar' }; 89 | global.fetch = jest.fn(() => Promise.resolve(mockResponse)); 90 | 91 | const reducer = jest.fn(() => ({})); 92 | const newFetch = createFetch({ responseReducers: [reducer] }); 93 | 94 | await newFetch(); 95 | expect(reducer).toHaveBeenCalledWith(mockResponse); 96 | }); 97 | 98 | it('returns a Promise that resolves with the return value of the reducer', async () => { 99 | const mockResult = { foo: 'bar' }; 100 | const reducer = jest.fn(() => mockResult); 101 | const newFetch = createFetch({ responseReducers: [reducer] }); 102 | 103 | const result = await newFetch(); 104 | expect(result).toBe(mockResult); 105 | }); 106 | 107 | it('waits for an asynchronous response reducer', async () => { 108 | const mockResult = { foo: 'bar' }; 109 | const reducer = jest.fn(() => Promise.resolve(mockResult)); 110 | 111 | const newFetch = createFetch({ responseReducers: [reducer] }); 112 | 113 | const result = await newFetch(); 114 | expect(result).toBe(mockResult); 115 | }); 116 | 117 | describe('and there are multiple response reducers', () => { 118 | it('invokes the second response reducer with the result of the first', async () => { 119 | const firstInterceptorResult = { foo: 'bar' }; 120 | const firstInterceptor = jest.fn(() => firstInterceptorResult); 121 | const secondInterceptor = jest.fn(() => ({})); 122 | 123 | const newFetch = createFetch({ 124 | responseReducers: [firstInterceptor, secondInterceptor], 125 | }); 126 | 127 | await newFetch(); 128 | expect(secondInterceptor).toHaveBeenCalledWith(firstInterceptorResult); 129 | }); 130 | }); 131 | 132 | describe('and there are multiple asynchronous response reducers', () => { 133 | it('invokes the second response reducer with the result of the first', async () => { 134 | const firstInterceptorResult = { foo: 'bar' }; 135 | const firstInterceptor = jest.fn(() => Promise.resolve(firstInterceptorResult)); 136 | const secondInterceptor = jest.fn(() => {}); 137 | 138 | const newFetch = createFetch({ 139 | responseReducers: [firstInterceptor, secondInterceptor], 140 | }); 141 | 142 | await newFetch(); 143 | expect(secondInterceptor).toHaveBeenCalledWith(firstInterceptorResult); 144 | }); 145 | }); 146 | }); 147 | 148 | describe('when a response reducer throws an error', () => { 149 | it('is immediately raised', async () => { 150 | const reducerError = new Error(); 151 | const reducer = () => { 152 | throw reducerError; 153 | }; 154 | const newFetch = createFetch({ responseReducers: [reducer] }); 155 | await expect(newFetch()).rejects.toBe(reducerError); 156 | }); 157 | }); 158 | }); 159 | -------------------------------------------------------------------------------- /src/main.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'micro-http-client' { 2 | export interface ResponseReducer extends Function { 3 | (response: any): any 4 | } 5 | 6 | export interface RequestReducer extends Function { 7 | (request: Object): Object | Promise 8 | } 9 | 10 | interface Config { 11 | requestReducers: RequestReducer[], 12 | responseReducers: ResponseReducer[], 13 | } 14 | 15 | interface Headers { 16 | [name: string]: string; 17 | } 18 | 19 | interface HeaderBuilder extends Function { 20 | ():Promise; 21 | } 22 | 23 | interface BodyProcessor extends Function { 24 | (body: string):any; 25 | } 26 | 27 | interface Fetch extends Function { 28 | (path: string):Promise; 29 | } 30 | 31 | export function createFetch(config: Config):Fetch; 32 | export function prependHost(host: string): RequestReducer; 33 | export function addHeaders(headers: HeaderBuilder | Headers): RequestReducer; 34 | export function processBody(processor: BodyProcessor): RequestReducer; 35 | 36 | export function rejectIfUnsuccessful(response: Response):Response; 37 | } 38 | -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- 1 | import createFetch from './createFetch'; 2 | import { ReducerError, prependHost, addHeaders, processBody, rejectIfUnsuccessful } from './reducers'; 3 | 4 | export { createFetch, ReducerError, prependHost, addHeaders, processBody, rejectIfUnsuccessful }; 5 | -------------------------------------------------------------------------------- /src/reducers.js: -------------------------------------------------------------------------------- 1 | const hasOwnProperty = (object, property) => Object.hasOwnProperty.call(object, property); 2 | 3 | export function ReducerError(message, additional = {}) { 4 | Error.call(this, message); 5 | this.message = message; 6 | Object.assign(this, additional); 7 | return this; 8 | } 9 | 10 | function stripTrailingSlash(string) { 11 | if (string[string.length - 1] !== '/') return string; 12 | return string.slice(0, -1); 13 | } 14 | 15 | export function prependHost(host) { 16 | const sanitizedHost = stripTrailingSlash(host); 17 | return (request) => { 18 | const { url: absolutePath } = request; 19 | if (absolutePath[0] !== '/') { 20 | throw new ReducerError('prependHost() requires an absolute path', { request }); 21 | } 22 | return Object.assign({}, request, { url: `${sanitizedHost}${absolutePath}` }); 23 | }; 24 | } 25 | 26 | export function addHeaders(headers) { 27 | return async (request) => { 28 | if (typeof headers === 'function') { 29 | const newHeaders = Object.assign({}, await headers(), request.headers); 30 | return Object.assign({}, request, { headers: newHeaders }); 31 | } 32 | 33 | const newHeaders = Object.assign({}, headers, request.headers); 34 | return Object.assign({}, request, { headers: newHeaders }); 35 | }; 36 | } 37 | 38 | export function processBody(processorFunction) { 39 | return async (request) => { 40 | if (!hasOwnProperty(request, 'body')) return request; 41 | return Object.assign({}, request, { body: await processorFunction(request.body) }); 42 | }; 43 | } 44 | 45 | export function rejectIfUnsuccessful(response) { 46 | if (response.status < 200 || response.status >= 400) { 47 | throw new ReducerError('Response is not successful', { response }); 48 | } 49 | return response; 50 | } 51 | -------------------------------------------------------------------------------- /src/reducers.test.js: -------------------------------------------------------------------------------- 1 | import { ReducerError, addHeaders, prependHost, processBody, rejectIfUnsuccessful } from './reducers'; 2 | 3 | describe('the prependHost() reducer', () => { 4 | it('prepends the host to the request URL', () => { 5 | const reducer = prependHost('example.com'); 6 | const result = reducer({ url: '/foo' }); 7 | expect(result).toEqual({ url: 'example.com/foo' }); 8 | }); 9 | 10 | it('requires an absolute path', () => { 11 | const reducer = prependHost('example.com'); 12 | const request = { url: './relative' }; 13 | expect(() => reducer(request)).toThrow(new ReducerError('prependHost() requires an absolute path', { request })); 14 | }); 15 | 16 | it('preserves the rest of the request', () => { 17 | const reducer = prependHost('example.com'); 18 | const result = reducer({ url: '/foo', headers: { Accept: 'application/json' } }); 19 | expect(result).toEqual({ url: 'example.com/foo', headers: { Accept: 'application/json' } }); 20 | }); 21 | 22 | describe('when the host has a trailing slash', () => { 23 | it('only outputs a single connecting slash', () => { 24 | const reducer = prependHost('example.com/'); 25 | const result = reducer({ url: '/foo' }); 26 | expect(result).toEqual({ url: 'example.com/foo' }); 27 | }); 28 | }); 29 | }); 30 | 31 | describe('the addHeaders() reducer', () => { 32 | describe('given an object', () => { 33 | it('adds the given headers hash to the request', async () => { 34 | const reducer = addHeaders({ Accept: 'application/json' }); 35 | const result = await reducer({}); 36 | expect(result).toEqual({ headers: { Accept: 'application/json' } }); 37 | }); 38 | 39 | it('preserves the rest of the request', async () => { 40 | const reducer = addHeaders({ Accept: 'application/json' }); 41 | const result = await reducer({ body: 'somebody' }); 42 | expect(result).toEqual({ body: 'somebody', headers: { Accept: 'application/json' } }); 43 | }); 44 | 45 | describe('when the request already contains headers', () => { 46 | it('includes the union of headers', async () => { 47 | const reducer = addHeaders({ Accept: 'application/json' }); 48 | const result = await reducer({ headers: { Authorization: 'token' } }); 49 | expect(result).toEqual({ headers: { Authorization: 'token', Accept: 'application/json' } }); 50 | }); 51 | }); 52 | 53 | describe('when the request contains the same headers passed to addHeaders()', () => { 54 | it('preserves the request headers', async () => { 55 | const reducer = addHeaders({ Accept: 'application/json' }); 56 | const result = await reducer({ headers: { Accept: 'text/csv' } }); 57 | expect(result).toEqual({ headers: { Accept: 'text/csv' } }); 58 | }); 59 | }); 60 | }); 61 | 62 | describe('when addHeaders() is given a function', () => { 63 | it('adds the headers returned by the function', async () => { 64 | const reducer = addHeaders(() => ({ Accept: 'application/json' })); 65 | const result = await reducer({}); 66 | expect(result).toEqual({ headers: { Accept: 'application/json' } }); 67 | }); 68 | 69 | describe('which is asynchronous', () => { 70 | it('adds the headers returned by the function', async () => { 71 | const reducer = addHeaders(() => Promise.resolve({ Accept: 'application/json' })); 72 | const result = await reducer({}); 73 | expect(result).toEqual({ headers: { Accept: 'application/json' } }); 74 | }); 75 | }); 76 | }); 77 | }); 78 | 79 | describe('the processBody() reducer', () => { 80 | describe('when the request has a body', () => { 81 | it('calls the given function with the request body', async () => { 82 | const originalBody = 'foobar'; 83 | const processorFunction = jest.fn(); 84 | const reducer = processBody(processorFunction); 85 | await reducer({ body: originalBody }); 86 | expect(processorFunction).toHaveBeenCalledWith(originalBody); 87 | }); 88 | 89 | it('replaces the request body with the result of the given function', async () => { 90 | const processedBody = 'bazboz'; 91 | const reducer = processBody(() => processedBody); 92 | const result = await reducer({ body: 'foobar' }); 93 | expect(result.body).toBe(processedBody); 94 | }); 95 | 96 | it('preserves the rest of the request', async () => { 97 | const reducer = processBody(() => {}); 98 | const result = await reducer({ body: 'somebody', headers: { Accept: 'application/json' } }); 99 | expect(result).toEqual({ body: undefined, headers: { Accept: 'application/json' } }); 100 | }); 101 | 102 | describe('and the given function is asynchronous', () => { 103 | it('waits for the processor function to complete', async () => { 104 | const processedBody = 'bazboz'; 105 | const reducer = processBody(() => Promise.resolve(processedBody)); 106 | const result = await reducer({ body: 'foobar' }); 107 | expect(result.body).toBe(processedBody); 108 | }); 109 | }); 110 | }); 111 | 112 | describe('when the request has no body', () => { 113 | it('does not add a body to the request', async () => { 114 | const reducer = processBody(() => ({})); 115 | const result = await reducer({ url: 'example.com' }); 116 | expect(result).not.toHaveProperty('body'); 117 | }); 118 | }); 119 | }); 120 | 121 | describe('the rejectIfUnsuccessful() reducer', () => { 122 | describe('when the response is successful', () => { 123 | it('returns the response', () => { 124 | const response = { status: 200 }; 125 | expect(rejectIfUnsuccessful(response)).toBe(response); 126 | }); 127 | }); 128 | 129 | describe('when the response is not successful', () => { 130 | it('throws an ReducerError', () => { 131 | const response = { status: 400 }; 132 | expect(() => rejectIfUnsuccessful(response)).toThrow( 133 | new ReducerError('Response is not successful', { response }), 134 | ); 135 | }); 136 | }); 137 | }); 138 | -------------------------------------------------------------------------------- /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.11" 27 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.11.tgz#edcda3bd937e7556410d42ed5860f67399c794c0" 28 | 29 | acorn@^5.0.1: 30 | version "5.0.3" 31 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.0.3.tgz#c460df08491463f028ccb82eab3730bf01087b3d" 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, ajv@^4.9.1: 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 | align-text@^0.1.1, align-text@^0.1.3: 45 | version "0.1.4" 46 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 47 | dependencies: 48 | kind-of "^3.0.2" 49 | longest "^1.0.1" 50 | repeat-string "^1.5.2" 51 | 52 | amdefine@>=0.0.4: 53 | version "1.0.1" 54 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 55 | 56 | ansi-escapes@^1.1.0, ansi-escapes@^1.4.0: 57 | version "1.4.0" 58 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 59 | 60 | ansi-regex@^2.0.0, ansi-regex@^2.1.1: 61 | version "2.1.1" 62 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 63 | 64 | ansi-styles@^2.2.1: 65 | version "2.2.1" 66 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 67 | 68 | ansi-styles@^3.0.0: 69 | version "3.0.0" 70 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.0.0.tgz#5404e93a544c4fec7f048262977bebfe3155e0c1" 71 | dependencies: 72 | color-convert "^1.0.0" 73 | 74 | anymatch@^1.3.0: 75 | version "1.3.0" 76 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 77 | dependencies: 78 | arrify "^1.0.0" 79 | micromatch "^2.1.5" 80 | 81 | append-transform@^0.4.0: 82 | version "0.4.0" 83 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 84 | dependencies: 85 | default-require-extensions "^1.0.0" 86 | 87 | argparse@^1.0.7: 88 | version "1.0.9" 89 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 90 | dependencies: 91 | sprintf-js "~1.0.2" 92 | 93 | arr-diff@^2.0.0: 94 | version "2.0.0" 95 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 96 | dependencies: 97 | arr-flatten "^1.0.1" 98 | 99 | arr-flatten@^1.0.1: 100 | version "1.0.3" 101 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1" 102 | 103 | array-equal@^1.0.0: 104 | version "1.0.0" 105 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 106 | 107 | array-union@^1.0.1: 108 | version "1.0.2" 109 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 110 | dependencies: 111 | array-uniq "^1.0.1" 112 | 113 | array-uniq@^1.0.1: 114 | version "1.0.3" 115 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 116 | 117 | array-unique@^0.2.1: 118 | version "0.2.1" 119 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 120 | 121 | arrify@^1.0.0, arrify@^1.0.1: 122 | version "1.0.1" 123 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 124 | 125 | asn1@~0.2.3: 126 | version "0.2.3" 127 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 128 | 129 | assert-plus@1.0.0, assert-plus@^1.0.0: 130 | version "1.0.0" 131 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 132 | 133 | assert-plus@^0.2.0: 134 | version "0.2.0" 135 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 136 | 137 | async@^1.4.0: 138 | version "1.5.2" 139 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 140 | 141 | async@^2.1.4: 142 | version "2.4.0" 143 | resolved "https://registry.yarnpkg.com/async/-/async-2.4.0.tgz#4990200f18ea5b837c2cc4f8c031a6985c385611" 144 | dependencies: 145 | lodash "^4.14.0" 146 | 147 | asynckit@^0.4.0: 148 | version "0.4.0" 149 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 150 | 151 | aws-sign2@~0.6.0: 152 | version "0.6.0" 153 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 154 | 155 | aws4@^1.2.1: 156 | version "1.6.0" 157 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 158 | 159 | babel-code-frame@^6.16.0, babel-code-frame@^6.22.0: 160 | version "6.22.0" 161 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 162 | dependencies: 163 | chalk "^1.1.0" 164 | esutils "^2.0.2" 165 | js-tokens "^3.0.0" 166 | 167 | babel-core@6, babel-core@^6.0.0, babel-core@^6.24.1: 168 | version "6.24.1" 169 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.1.tgz#8c428564dce1e1f41fb337ec34f4c3b022b5ad83" 170 | dependencies: 171 | babel-code-frame "^6.22.0" 172 | babel-generator "^6.24.1" 173 | babel-helpers "^6.24.1" 174 | babel-messages "^6.23.0" 175 | babel-register "^6.24.1" 176 | babel-runtime "^6.22.0" 177 | babel-template "^6.24.1" 178 | babel-traverse "^6.24.1" 179 | babel-types "^6.24.1" 180 | babylon "^6.11.0" 181 | convert-source-map "^1.1.0" 182 | debug "^2.1.1" 183 | json5 "^0.5.0" 184 | lodash "^4.2.0" 185 | minimatch "^3.0.2" 186 | path-is-absolute "^1.0.0" 187 | private "^0.1.6" 188 | slash "^1.0.0" 189 | source-map "^0.5.0" 190 | 191 | babel-generator@^6.18.0, babel-generator@^6.24.1: 192 | version "6.24.1" 193 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.1.tgz#e715f486c58ded25649d888944d52aa07c5d9497" 194 | dependencies: 195 | babel-messages "^6.23.0" 196 | babel-runtime "^6.22.0" 197 | babel-types "^6.24.1" 198 | detect-indent "^4.0.0" 199 | jsesc "^1.3.0" 200 | lodash "^4.2.0" 201 | source-map "^0.5.0" 202 | trim-right "^1.0.1" 203 | 204 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 205 | version "6.24.1" 206 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 207 | dependencies: 208 | babel-helper-explode-assignable-expression "^6.24.1" 209 | babel-runtime "^6.22.0" 210 | babel-types "^6.24.1" 211 | 212 | babel-helper-call-delegate@^6.24.1: 213 | version "6.24.1" 214 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 215 | dependencies: 216 | babel-helper-hoist-variables "^6.24.1" 217 | babel-runtime "^6.22.0" 218 | babel-traverse "^6.24.1" 219 | babel-types "^6.24.1" 220 | 221 | babel-helper-define-map@^6.24.1: 222 | version "6.24.1" 223 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz#7a9747f258d8947d32d515f6aa1c7bd02204a080" 224 | dependencies: 225 | babel-helper-function-name "^6.24.1" 226 | babel-runtime "^6.22.0" 227 | babel-types "^6.24.1" 228 | lodash "^4.2.0" 229 | 230 | babel-helper-explode-assignable-expression@^6.24.1: 231 | version "6.24.1" 232 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 233 | dependencies: 234 | babel-runtime "^6.22.0" 235 | babel-traverse "^6.24.1" 236 | babel-types "^6.24.1" 237 | 238 | babel-helper-function-name@^6.24.1: 239 | version "6.24.1" 240 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 241 | dependencies: 242 | babel-helper-get-function-arity "^6.24.1" 243 | babel-runtime "^6.22.0" 244 | babel-template "^6.24.1" 245 | babel-traverse "^6.24.1" 246 | babel-types "^6.24.1" 247 | 248 | babel-helper-get-function-arity@^6.24.1: 249 | version "6.24.1" 250 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 251 | dependencies: 252 | babel-runtime "^6.22.0" 253 | babel-types "^6.24.1" 254 | 255 | babel-helper-hoist-variables@^6.24.1: 256 | version "6.24.1" 257 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 258 | dependencies: 259 | babel-runtime "^6.22.0" 260 | babel-types "^6.24.1" 261 | 262 | babel-helper-optimise-call-expression@^6.24.1: 263 | version "6.24.1" 264 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 265 | dependencies: 266 | babel-runtime "^6.22.0" 267 | babel-types "^6.24.1" 268 | 269 | babel-helper-regex@^6.24.1: 270 | version "6.24.1" 271 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8" 272 | dependencies: 273 | babel-runtime "^6.22.0" 274 | babel-types "^6.24.1" 275 | lodash "^4.2.0" 276 | 277 | babel-helper-remap-async-to-generator@^6.24.1: 278 | version "6.24.1" 279 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 280 | dependencies: 281 | babel-helper-function-name "^6.24.1" 282 | babel-runtime "^6.22.0" 283 | babel-template "^6.24.1" 284 | babel-traverse "^6.24.1" 285 | babel-types "^6.24.1" 286 | 287 | babel-helper-replace-supers@^6.24.1: 288 | version "6.24.1" 289 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 290 | dependencies: 291 | babel-helper-optimise-call-expression "^6.24.1" 292 | babel-messages "^6.23.0" 293 | babel-runtime "^6.22.0" 294 | babel-template "^6.24.1" 295 | babel-traverse "^6.24.1" 296 | babel-types "^6.24.1" 297 | 298 | babel-helpers@^6.24.1: 299 | version "6.24.1" 300 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 301 | dependencies: 302 | babel-runtime "^6.22.0" 303 | babel-template "^6.24.1" 304 | 305 | babel-jest@^20.0.1: 306 | version "20.0.1" 307 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-20.0.1.tgz#9cbe9a15bbe3f1ca1b727dc8e45a4161771d3655" 308 | dependencies: 309 | babel-core "^6.0.0" 310 | babel-plugin-istanbul "^4.0.0" 311 | babel-preset-jest "^20.0.1" 312 | 313 | babel-messages@^6.23.0: 314 | version "6.23.0" 315 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 316 | dependencies: 317 | babel-runtime "^6.22.0" 318 | 319 | babel-plugin-check-es2015-constants@^6.22.0: 320 | version "6.22.0" 321 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 322 | dependencies: 323 | babel-runtime "^6.22.0" 324 | 325 | babel-plugin-external-helpers@^6.18.0: 326 | version "6.22.0" 327 | resolved "https://registry.yarnpkg.com/babel-plugin-external-helpers/-/babel-plugin-external-helpers-6.22.0.tgz#2285f48b02bd5dede85175caf8c62e86adccefa1" 328 | dependencies: 329 | babel-runtime "^6.22.0" 330 | 331 | babel-plugin-istanbul@^4.0.0: 332 | version "4.1.3" 333 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.3.tgz#6ee6280410dcf59c7747518c3dfd98680958f102" 334 | dependencies: 335 | find-up "^2.1.0" 336 | istanbul-lib-instrument "^1.7.1" 337 | test-exclude "^4.1.0" 338 | 339 | babel-plugin-jest-hoist@^20.0.1: 340 | version "20.0.1" 341 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-20.0.1.tgz#1b9cc322cff704d3812d1bca8dccd12205eedfd5" 342 | 343 | babel-plugin-syntax-async-functions@^6.8.0: 344 | version "6.13.0" 345 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 346 | 347 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 348 | version "6.13.0" 349 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 350 | 351 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 352 | version "6.22.0" 353 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 354 | 355 | babel-plugin-transform-async-to-generator@^6.22.0, babel-plugin-transform-async-to-generator@^6.24.1: 356 | version "6.24.1" 357 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 358 | dependencies: 359 | babel-helper-remap-async-to-generator "^6.24.1" 360 | babel-plugin-syntax-async-functions "^6.8.0" 361 | babel-runtime "^6.22.0" 362 | 363 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 364 | version "6.22.0" 365 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 366 | dependencies: 367 | babel-runtime "^6.22.0" 368 | 369 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 370 | version "6.22.0" 371 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 372 | dependencies: 373 | babel-runtime "^6.22.0" 374 | 375 | babel-plugin-transform-es2015-block-scoping@^6.23.0, babel-plugin-transform-es2015-block-scoping@^6.24.1: 376 | version "6.24.1" 377 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz#76c295dc3a4741b1665adfd3167215dcff32a576" 378 | dependencies: 379 | babel-runtime "^6.22.0" 380 | babel-template "^6.24.1" 381 | babel-traverse "^6.24.1" 382 | babel-types "^6.24.1" 383 | lodash "^4.2.0" 384 | 385 | babel-plugin-transform-es2015-classes@^6.23.0, babel-plugin-transform-es2015-classes@^6.24.1, babel-plugin-transform-es2015-classes@^6.9.0: 386 | version "6.24.1" 387 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 388 | dependencies: 389 | babel-helper-define-map "^6.24.1" 390 | babel-helper-function-name "^6.24.1" 391 | babel-helper-optimise-call-expression "^6.24.1" 392 | babel-helper-replace-supers "^6.24.1" 393 | babel-messages "^6.23.0" 394 | babel-runtime "^6.22.0" 395 | babel-template "^6.24.1" 396 | babel-traverse "^6.24.1" 397 | babel-types "^6.24.1" 398 | 399 | babel-plugin-transform-es2015-computed-properties@^6.22.0, babel-plugin-transform-es2015-computed-properties@^6.24.1: 400 | version "6.24.1" 401 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 402 | dependencies: 403 | babel-runtime "^6.22.0" 404 | babel-template "^6.24.1" 405 | 406 | babel-plugin-transform-es2015-destructuring@^6.22.0, babel-plugin-transform-es2015-destructuring@^6.23.0: 407 | version "6.23.0" 408 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 409 | dependencies: 410 | babel-runtime "^6.22.0" 411 | 412 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0, babel-plugin-transform-es2015-duplicate-keys@^6.24.1: 413 | version "6.24.1" 414 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 415 | dependencies: 416 | babel-runtime "^6.22.0" 417 | babel-types "^6.24.1" 418 | 419 | babel-plugin-transform-es2015-for-of@^6.22.0, babel-plugin-transform-es2015-for-of@^6.23.0: 420 | version "6.23.0" 421 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 422 | dependencies: 423 | babel-runtime "^6.22.0" 424 | 425 | babel-plugin-transform-es2015-function-name@^6.22.0, babel-plugin-transform-es2015-function-name@^6.24.1: 426 | version "6.24.1" 427 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 428 | dependencies: 429 | babel-helper-function-name "^6.24.1" 430 | babel-runtime "^6.22.0" 431 | babel-types "^6.24.1" 432 | 433 | babel-plugin-transform-es2015-literals@^6.22.0: 434 | version "6.22.0" 435 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 436 | dependencies: 437 | babel-runtime "^6.22.0" 438 | 439 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 440 | version "6.24.1" 441 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 442 | dependencies: 443 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 444 | babel-runtime "^6.22.0" 445 | babel-template "^6.24.1" 446 | 447 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 448 | version "6.24.1" 449 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" 450 | dependencies: 451 | babel-plugin-transform-strict-mode "^6.24.1" 452 | babel-runtime "^6.22.0" 453 | babel-template "^6.24.1" 454 | babel-types "^6.24.1" 455 | 456 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0, babel-plugin-transform-es2015-modules-systemjs@^6.24.1: 457 | version "6.24.1" 458 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 459 | dependencies: 460 | babel-helper-hoist-variables "^6.24.1" 461 | babel-runtime "^6.22.0" 462 | babel-template "^6.24.1" 463 | 464 | babel-plugin-transform-es2015-modules-umd@^6.23.0, babel-plugin-transform-es2015-modules-umd@^6.24.1: 465 | version "6.24.1" 466 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 467 | dependencies: 468 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 469 | babel-runtime "^6.22.0" 470 | babel-template "^6.24.1" 471 | 472 | babel-plugin-transform-es2015-object-super@^6.22.0, babel-plugin-transform-es2015-object-super@^6.24.1: 473 | version "6.24.1" 474 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 475 | dependencies: 476 | babel-helper-replace-supers "^6.24.1" 477 | babel-runtime "^6.22.0" 478 | 479 | babel-plugin-transform-es2015-parameters@^6.23.0, babel-plugin-transform-es2015-parameters@^6.24.1: 480 | version "6.24.1" 481 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 482 | dependencies: 483 | babel-helper-call-delegate "^6.24.1" 484 | babel-helper-get-function-arity "^6.24.1" 485 | babel-runtime "^6.22.0" 486 | babel-template "^6.24.1" 487 | babel-traverse "^6.24.1" 488 | babel-types "^6.24.1" 489 | 490 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0, babel-plugin-transform-es2015-shorthand-properties@^6.24.1: 491 | version "6.24.1" 492 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 493 | dependencies: 494 | babel-runtime "^6.22.0" 495 | babel-types "^6.24.1" 496 | 497 | babel-plugin-transform-es2015-spread@^6.22.0: 498 | version "6.22.0" 499 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 500 | dependencies: 501 | babel-runtime "^6.22.0" 502 | 503 | babel-plugin-transform-es2015-sticky-regex@^6.22.0, babel-plugin-transform-es2015-sticky-regex@^6.24.1: 504 | version "6.24.1" 505 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 506 | dependencies: 507 | babel-helper-regex "^6.24.1" 508 | babel-runtime "^6.22.0" 509 | babel-types "^6.24.1" 510 | 511 | babel-plugin-transform-es2015-template-literals@^6.22.0: 512 | version "6.22.0" 513 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 514 | dependencies: 515 | babel-runtime "^6.22.0" 516 | 517 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0, babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 518 | version "6.23.0" 519 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 520 | dependencies: 521 | babel-runtime "^6.22.0" 522 | 523 | babel-plugin-transform-es2015-unicode-regex@^6.22.0, babel-plugin-transform-es2015-unicode-regex@^6.24.1: 524 | version "6.24.1" 525 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 526 | dependencies: 527 | babel-helper-regex "^6.24.1" 528 | babel-runtime "^6.22.0" 529 | regexpu-core "^2.0.0" 530 | 531 | babel-plugin-transform-exponentiation-operator@^6.22.0: 532 | version "6.24.1" 533 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 534 | dependencies: 535 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 536 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 537 | babel-runtime "^6.22.0" 538 | 539 | babel-plugin-transform-regenerator@^6.22.0, babel-plugin-transform-regenerator@^6.24.1: 540 | version "6.24.1" 541 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz#b8da305ad43c3c99b4848e4fe4037b770d23c418" 542 | dependencies: 543 | regenerator-transform "0.9.11" 544 | 545 | babel-plugin-transform-strict-mode@^6.24.1: 546 | version "6.24.1" 547 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 548 | dependencies: 549 | babel-runtime "^6.22.0" 550 | babel-types "^6.24.1" 551 | 552 | babel-preset-env@^1.4.0: 553 | version "1.4.0" 554 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.4.0.tgz#c8e02a3bcc7792f23cded68e0355b9d4c28f0f7a" 555 | dependencies: 556 | babel-plugin-check-es2015-constants "^6.22.0" 557 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 558 | babel-plugin-transform-async-to-generator "^6.22.0" 559 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 560 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 561 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 562 | babel-plugin-transform-es2015-classes "^6.23.0" 563 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 564 | babel-plugin-transform-es2015-destructuring "^6.23.0" 565 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 566 | babel-plugin-transform-es2015-for-of "^6.23.0" 567 | babel-plugin-transform-es2015-function-name "^6.22.0" 568 | babel-plugin-transform-es2015-literals "^6.22.0" 569 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 570 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 571 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 572 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 573 | babel-plugin-transform-es2015-object-super "^6.22.0" 574 | babel-plugin-transform-es2015-parameters "^6.23.0" 575 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 576 | babel-plugin-transform-es2015-spread "^6.22.0" 577 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 578 | babel-plugin-transform-es2015-template-literals "^6.22.0" 579 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 580 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 581 | babel-plugin-transform-exponentiation-operator "^6.22.0" 582 | babel-plugin-transform-regenerator "^6.22.0" 583 | browserslist "^1.4.0" 584 | invariant "^2.2.2" 585 | 586 | babel-preset-es2015-rollup@^3.0.0: 587 | version "3.0.0" 588 | resolved "https://registry.yarnpkg.com/babel-preset-es2015-rollup/-/babel-preset-es2015-rollup-3.0.0.tgz#854b63ecde2ee98cac40e882f67bfcf185b1f24a" 589 | dependencies: 590 | babel-plugin-external-helpers "^6.18.0" 591 | babel-preset-es2015 "^6.3.13" 592 | require-relative "^0.8.7" 593 | 594 | babel-preset-es2015@^6.3.13: 595 | version "6.24.1" 596 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" 597 | dependencies: 598 | babel-plugin-check-es2015-constants "^6.22.0" 599 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 600 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 601 | babel-plugin-transform-es2015-block-scoping "^6.24.1" 602 | babel-plugin-transform-es2015-classes "^6.24.1" 603 | babel-plugin-transform-es2015-computed-properties "^6.24.1" 604 | babel-plugin-transform-es2015-destructuring "^6.22.0" 605 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1" 606 | babel-plugin-transform-es2015-for-of "^6.22.0" 607 | babel-plugin-transform-es2015-function-name "^6.24.1" 608 | babel-plugin-transform-es2015-literals "^6.22.0" 609 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 610 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 611 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1" 612 | babel-plugin-transform-es2015-modules-umd "^6.24.1" 613 | babel-plugin-transform-es2015-object-super "^6.24.1" 614 | babel-plugin-transform-es2015-parameters "^6.24.1" 615 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1" 616 | babel-plugin-transform-es2015-spread "^6.22.0" 617 | babel-plugin-transform-es2015-sticky-regex "^6.24.1" 618 | babel-plugin-transform-es2015-template-literals "^6.22.0" 619 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 620 | babel-plugin-transform-es2015-unicode-regex "^6.24.1" 621 | babel-plugin-transform-regenerator "^6.24.1" 622 | 623 | babel-preset-jest@^20.0.1: 624 | version "20.0.1" 625 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-20.0.1.tgz#8a9e23ce8a0f0c49835de53ed73ecf75dd6daa2e" 626 | dependencies: 627 | babel-plugin-jest-hoist "^20.0.1" 628 | 629 | babel-register@^6.24.1: 630 | version "6.24.1" 631 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 632 | dependencies: 633 | babel-core "^6.24.1" 634 | babel-runtime "^6.22.0" 635 | core-js "^2.4.0" 636 | home-or-tmp "^2.0.0" 637 | lodash "^4.2.0" 638 | mkdirp "^0.5.1" 639 | source-map-support "^0.4.2" 640 | 641 | babel-runtime@^6.18.0, babel-runtime@^6.22.0: 642 | version "6.23.0" 643 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 644 | dependencies: 645 | core-js "^2.4.0" 646 | regenerator-runtime "^0.10.0" 647 | 648 | babel-template@^6.16.0, babel-template@^6.24.1: 649 | version "6.24.1" 650 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333" 651 | dependencies: 652 | babel-runtime "^6.22.0" 653 | babel-traverse "^6.24.1" 654 | babel-types "^6.24.1" 655 | babylon "^6.11.0" 656 | lodash "^4.2.0" 657 | 658 | babel-traverse@^6.18.0, babel-traverse@^6.24.1: 659 | version "6.24.1" 660 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695" 661 | dependencies: 662 | babel-code-frame "^6.22.0" 663 | babel-messages "^6.23.0" 664 | babel-runtime "^6.22.0" 665 | babel-types "^6.24.1" 666 | babylon "^6.15.0" 667 | debug "^2.2.0" 668 | globals "^9.0.0" 669 | invariant "^2.2.0" 670 | lodash "^4.2.0" 671 | 672 | babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.24.1: 673 | version "6.24.1" 674 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975" 675 | dependencies: 676 | babel-runtime "^6.22.0" 677 | esutils "^2.0.2" 678 | lodash "^4.2.0" 679 | to-fast-properties "^1.0.1" 680 | 681 | babylon@^6.11.0, babylon@^6.13.0, babylon@^6.15.0: 682 | version "6.17.0" 683 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.0.tgz#37da948878488b9c4e3c4038893fa3314b3fc932" 684 | 685 | balanced-match@^0.4.1: 686 | version "0.4.2" 687 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 688 | 689 | bcrypt-pbkdf@^1.0.0: 690 | version "1.0.1" 691 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 692 | dependencies: 693 | tweetnacl "^0.14.3" 694 | 695 | boom@2.x.x: 696 | version "2.10.1" 697 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 698 | dependencies: 699 | hoek "2.x.x" 700 | 701 | brace-expansion@^1.1.7: 702 | version "1.1.7" 703 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.7.tgz#3effc3c50e000531fb720eaff80f0ae8ef23cf59" 704 | dependencies: 705 | balanced-match "^0.4.1" 706 | concat-map "0.0.1" 707 | 708 | braces@^1.8.2: 709 | version "1.8.5" 710 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 711 | dependencies: 712 | expand-range "^1.8.1" 713 | preserve "^0.2.0" 714 | repeat-element "^1.1.2" 715 | 716 | browser-resolve@^1.11.2: 717 | version "1.11.2" 718 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 719 | dependencies: 720 | resolve "1.1.7" 721 | 722 | browserslist@^1.4.0: 723 | version "1.7.7" 724 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-1.7.7.tgz#0bd76704258be829b2398bb50e4b62d1a166b0b9" 725 | dependencies: 726 | caniuse-db "^1.0.30000639" 727 | electron-to-chromium "^1.2.7" 728 | 729 | bser@1.0.2: 730 | version "1.0.2" 731 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" 732 | dependencies: 733 | node-int64 "^0.4.0" 734 | 735 | bser@^2.0.0: 736 | version "2.0.0" 737 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 738 | dependencies: 739 | node-int64 "^0.4.0" 740 | 741 | buffer-shims@~1.0.0: 742 | version "1.0.0" 743 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 744 | 745 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 746 | version "1.1.1" 747 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 748 | 749 | caller-path@^0.1.0: 750 | version "0.1.0" 751 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 752 | dependencies: 753 | callsites "^0.2.0" 754 | 755 | callsites@^0.2.0: 756 | version "0.2.0" 757 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 758 | 759 | callsites@^2.0.0: 760 | version "2.0.0" 761 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 762 | 763 | camelcase@^1.0.2: 764 | version "1.2.1" 765 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 766 | 767 | camelcase@^3.0.0: 768 | version "3.0.0" 769 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 770 | 771 | caniuse-db@^1.0.30000639: 772 | version "1.0.30000670" 773 | resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000670.tgz#90d33b79e3090e25829c311113c56d6b1788bf43" 774 | 775 | caseless@~0.12.0: 776 | version "0.12.0" 777 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 778 | 779 | center-align@^0.1.1: 780 | version "0.1.3" 781 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 782 | dependencies: 783 | align-text "^0.1.3" 784 | lazy-cache "^1.0.3" 785 | 786 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 787 | version "1.1.3" 788 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 789 | dependencies: 790 | ansi-styles "^2.2.1" 791 | escape-string-regexp "^1.0.2" 792 | has-ansi "^2.0.0" 793 | strip-ansi "^3.0.0" 794 | supports-color "^2.0.0" 795 | 796 | ci-info@^1.0.0: 797 | version "1.0.0" 798 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 799 | 800 | circular-json@^0.3.1: 801 | version "0.3.1" 802 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 803 | 804 | cli-cursor@^1.0.1: 805 | version "1.0.2" 806 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 807 | dependencies: 808 | restore-cursor "^1.0.1" 809 | 810 | cli-width@^2.0.0: 811 | version "2.1.0" 812 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 813 | 814 | cliui@^2.1.0: 815 | version "2.1.0" 816 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 817 | dependencies: 818 | center-align "^0.1.1" 819 | right-align "^0.1.1" 820 | wordwrap "0.0.2" 821 | 822 | cliui@^3.2.0: 823 | version "3.2.0" 824 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 825 | dependencies: 826 | string-width "^1.0.1" 827 | strip-ansi "^3.0.1" 828 | wrap-ansi "^2.0.0" 829 | 830 | co@^4.6.0: 831 | version "4.6.0" 832 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 833 | 834 | code-point-at@^1.0.0: 835 | version "1.1.0" 836 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 837 | 838 | color-convert@^1.0.0: 839 | version "1.9.0" 840 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 841 | dependencies: 842 | color-name "^1.1.1" 843 | 844 | color-name@^1.1.1: 845 | version "1.1.2" 846 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.2.tgz#5c8ab72b64bd2215d617ae9559ebb148475cf98d" 847 | 848 | combined-stream@^1.0.5, combined-stream@~1.0.5: 849 | version "1.0.5" 850 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 851 | dependencies: 852 | delayed-stream "~1.0.0" 853 | 854 | concat-map@0.0.1: 855 | version "0.0.1" 856 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 857 | 858 | concat-stream@^1.5.2: 859 | version "1.6.0" 860 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 861 | dependencies: 862 | inherits "^2.0.3" 863 | readable-stream "^2.2.2" 864 | typedarray "^0.0.6" 865 | 866 | contains-path@^0.1.0: 867 | version "0.1.0" 868 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 869 | 870 | content-type-parser@^1.0.1: 871 | version "1.0.1" 872 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 873 | 874 | convert-source-map@^1.1.0, convert-source-map@^1.4.0: 875 | version "1.5.0" 876 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 877 | 878 | core-js@^2.4.0: 879 | version "2.4.1" 880 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 881 | 882 | core-util-is@~1.0.0: 883 | version "1.0.2" 884 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 885 | 886 | cryptiles@2.x.x: 887 | version "2.0.5" 888 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 889 | dependencies: 890 | boom "2.x.x" 891 | 892 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 893 | version "0.3.2" 894 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 895 | 896 | "cssstyle@>= 0.2.37 < 0.3.0": 897 | version "0.2.37" 898 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 899 | dependencies: 900 | cssom "0.3.x" 901 | 902 | d@1: 903 | version "1.0.0" 904 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 905 | dependencies: 906 | es5-ext "^0.10.9" 907 | 908 | dashdash@^1.12.0: 909 | version "1.14.1" 910 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 911 | dependencies: 912 | assert-plus "^1.0.0" 913 | 914 | debug@2.2.0: 915 | version "2.2.0" 916 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 917 | dependencies: 918 | ms "0.7.1" 919 | 920 | debug@^2.1.1, debug@^2.2.0, debug@^2.6.3: 921 | version "2.6.6" 922 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.6.tgz#a9fa6fbe9ca43cf1e79f73b75c0189cbb7d6db5a" 923 | dependencies: 924 | ms "0.7.3" 925 | 926 | decamelize@^1.0.0, decamelize@^1.1.1: 927 | version "1.2.0" 928 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 929 | 930 | deep-is@~0.1.3: 931 | version "0.1.3" 932 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 933 | 934 | default-require-extensions@^1.0.0: 935 | version "1.0.0" 936 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 937 | dependencies: 938 | strip-bom "^2.0.0" 939 | 940 | del@^2.0.2: 941 | version "2.2.2" 942 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 943 | dependencies: 944 | globby "^5.0.0" 945 | is-path-cwd "^1.0.0" 946 | is-path-in-cwd "^1.0.0" 947 | object-assign "^4.0.1" 948 | pify "^2.0.0" 949 | pinkie-promise "^2.0.0" 950 | rimraf "^2.2.8" 951 | 952 | delayed-stream@~1.0.0: 953 | version "1.0.0" 954 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 955 | 956 | detect-indent@^4.0.0: 957 | version "4.0.0" 958 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 959 | dependencies: 960 | repeating "^2.0.0" 961 | 962 | diff@^3.2.0: 963 | version "3.2.0" 964 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 965 | 966 | doctrine@1.5.0: 967 | version "1.5.0" 968 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 969 | dependencies: 970 | esutils "^2.0.2" 971 | isarray "^1.0.0" 972 | 973 | doctrine@^2.0.0: 974 | version "2.0.0" 975 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" 976 | dependencies: 977 | esutils "^2.0.2" 978 | isarray "^1.0.0" 979 | 980 | ecc-jsbn@~0.1.1: 981 | version "0.1.1" 982 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 983 | dependencies: 984 | jsbn "~0.1.0" 985 | 986 | electron-to-chromium@^1.2.7: 987 | version "1.3.10" 988 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.10.tgz#63d62b785471f0d8dda85199d64579de8a449f08" 989 | 990 | "errno@>=0.1.1 <0.2.0-0": 991 | version "0.1.4" 992 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 993 | dependencies: 994 | prr "~0.0.0" 995 | 996 | error-ex@^1.2.0: 997 | version "1.3.1" 998 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 999 | dependencies: 1000 | is-arrayish "^0.2.1" 1001 | 1002 | es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14: 1003 | version "0.10.16" 1004 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.16.tgz#1ef1b04f3d09db6a5d630226d62202f2e425e45a" 1005 | dependencies: 1006 | es6-iterator "2" 1007 | es6-symbol "~3.1" 1008 | 1009 | es6-iterator@2, es6-iterator@^2.0.1, es6-iterator@~2.0.1: 1010 | version "2.0.1" 1011 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512" 1012 | dependencies: 1013 | d "1" 1014 | es5-ext "^0.10.14" 1015 | es6-symbol "^3.1" 1016 | 1017 | es6-map@^0.1.3: 1018 | version "0.1.5" 1019 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" 1020 | dependencies: 1021 | d "1" 1022 | es5-ext "~0.10.14" 1023 | es6-iterator "~2.0.1" 1024 | es6-set "~0.1.5" 1025 | es6-symbol "~3.1.1" 1026 | event-emitter "~0.3.5" 1027 | 1028 | es6-set@~0.1.5: 1029 | version "0.1.5" 1030 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" 1031 | dependencies: 1032 | d "1" 1033 | es5-ext "~0.10.14" 1034 | es6-iterator "~2.0.1" 1035 | es6-symbol "3.1.1" 1036 | event-emitter "~0.3.5" 1037 | 1038 | es6-symbol@3.1.1, es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1, es6-symbol@~3.1.1: 1039 | version "3.1.1" 1040 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 1041 | dependencies: 1042 | d "1" 1043 | es5-ext "~0.10.14" 1044 | 1045 | es6-weak-map@^2.0.1: 1046 | version "2.0.2" 1047 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 1048 | dependencies: 1049 | d "1" 1050 | es5-ext "^0.10.14" 1051 | es6-iterator "^2.0.1" 1052 | es6-symbol "^3.1.1" 1053 | 1054 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1055 | version "1.0.5" 1056 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1057 | 1058 | escodegen@^1.6.1: 1059 | version "1.8.1" 1060 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 1061 | dependencies: 1062 | esprima "^2.7.1" 1063 | estraverse "^1.9.1" 1064 | esutils "^2.0.2" 1065 | optionator "^0.8.1" 1066 | optionalDependencies: 1067 | source-map "~0.2.0" 1068 | 1069 | escope@^3.6.0: 1070 | version "3.6.0" 1071 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 1072 | dependencies: 1073 | es6-map "^0.1.3" 1074 | es6-weak-map "^2.0.1" 1075 | esrecurse "^4.1.0" 1076 | estraverse "^4.1.1" 1077 | 1078 | eslint-config-airbnb-base@^11.2.0: 1079 | version "11.2.0" 1080 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-11.2.0.tgz#19a9dc4481a26f70904545ec040116876018f853" 1081 | 1082 | eslint-import-resolver-node@^0.2.0: 1083 | version "0.2.3" 1084 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.2.3.tgz#5add8106e8c928db2cba232bcd9efa846e3da16c" 1085 | dependencies: 1086 | debug "^2.2.0" 1087 | object-assign "^4.0.1" 1088 | resolve "^1.1.6" 1089 | 1090 | eslint-module-utils@^2.0.0: 1091 | version "2.0.0" 1092 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.0.0.tgz#a6f8c21d901358759cdc35dbac1982ae1ee58bce" 1093 | dependencies: 1094 | debug "2.2.0" 1095 | pkg-dir "^1.0.0" 1096 | 1097 | eslint-plugin-import@^2.2.0: 1098 | version "2.2.0" 1099 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.2.0.tgz#72ba306fad305d67c4816348a4699a4229ac8b4e" 1100 | dependencies: 1101 | builtin-modules "^1.1.1" 1102 | contains-path "^0.1.0" 1103 | debug "^2.2.0" 1104 | doctrine "1.5.0" 1105 | eslint-import-resolver-node "^0.2.0" 1106 | eslint-module-utils "^2.0.0" 1107 | has "^1.0.1" 1108 | lodash.cond "^4.3.0" 1109 | minimatch "^3.0.3" 1110 | pkg-up "^1.0.0" 1111 | 1112 | eslint@^3.19.0: 1113 | version "3.19.0" 1114 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.19.0.tgz#c8fc6201c7f40dd08941b87c085767386a679acc" 1115 | dependencies: 1116 | babel-code-frame "^6.16.0" 1117 | chalk "^1.1.3" 1118 | concat-stream "^1.5.2" 1119 | debug "^2.1.1" 1120 | doctrine "^2.0.0" 1121 | escope "^3.6.0" 1122 | espree "^3.4.0" 1123 | esquery "^1.0.0" 1124 | estraverse "^4.2.0" 1125 | esutils "^2.0.2" 1126 | file-entry-cache "^2.0.0" 1127 | glob "^7.0.3" 1128 | globals "^9.14.0" 1129 | ignore "^3.2.0" 1130 | imurmurhash "^0.1.4" 1131 | inquirer "^0.12.0" 1132 | is-my-json-valid "^2.10.0" 1133 | is-resolvable "^1.0.0" 1134 | js-yaml "^3.5.1" 1135 | json-stable-stringify "^1.0.0" 1136 | levn "^0.3.0" 1137 | lodash "^4.0.0" 1138 | mkdirp "^0.5.0" 1139 | natural-compare "^1.4.0" 1140 | optionator "^0.8.2" 1141 | path-is-inside "^1.0.1" 1142 | pluralize "^1.2.1" 1143 | progress "^1.1.8" 1144 | require-uncached "^1.0.2" 1145 | shelljs "^0.7.5" 1146 | strip-bom "^3.0.0" 1147 | strip-json-comments "~2.0.1" 1148 | table "^3.7.8" 1149 | text-table "~0.2.0" 1150 | user-home "^2.0.0" 1151 | 1152 | espree@^3.4.0: 1153 | version "3.4.3" 1154 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.3.tgz#2910b5ccd49ce893c2ffffaab4fd8b3a31b82374" 1155 | dependencies: 1156 | acorn "^5.0.1" 1157 | acorn-jsx "^3.0.0" 1158 | 1159 | esprima@^2.7.1: 1160 | version "2.7.3" 1161 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1162 | 1163 | esprima@^3.1.1: 1164 | version "3.1.3" 1165 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1166 | 1167 | esquery@^1.0.0: 1168 | version "1.0.0" 1169 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 1170 | dependencies: 1171 | estraverse "^4.0.0" 1172 | 1173 | esrecurse@^4.1.0: 1174 | version "4.1.0" 1175 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 1176 | dependencies: 1177 | estraverse "~4.1.0" 1178 | object-assign "^4.0.1" 1179 | 1180 | estraverse@^1.9.1: 1181 | version "1.9.3" 1182 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 1183 | 1184 | estraverse@^4.0.0, estraverse@^4.1.1, estraverse@^4.2.0: 1185 | version "4.2.0" 1186 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1187 | 1188 | estraverse@~4.1.0: 1189 | version "4.1.1" 1190 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 1191 | 1192 | estree-walker@^0.2.1: 1193 | version "0.2.1" 1194 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.2.1.tgz#bdafe8095383d8414d5dc2ecf4c9173b6db9412e" 1195 | 1196 | esutils@^2.0.2: 1197 | version "2.0.2" 1198 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1199 | 1200 | event-emitter@~0.3.5: 1201 | version "0.3.5" 1202 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 1203 | dependencies: 1204 | d "1" 1205 | es5-ext "~0.10.14" 1206 | 1207 | exec-sh@^0.2.0: 1208 | version "0.2.0" 1209 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" 1210 | dependencies: 1211 | merge "^1.1.3" 1212 | 1213 | exit-hook@^1.0.0: 1214 | version "1.1.1" 1215 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1216 | 1217 | expand-brackets@^0.1.4: 1218 | version "0.1.5" 1219 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1220 | dependencies: 1221 | is-posix-bracket "^0.1.0" 1222 | 1223 | expand-range@^1.8.1: 1224 | version "1.8.2" 1225 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1226 | dependencies: 1227 | fill-range "^2.1.0" 1228 | 1229 | extend@~3.0.0: 1230 | version "3.0.1" 1231 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1232 | 1233 | extglob@^0.3.1: 1234 | version "0.3.2" 1235 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1236 | dependencies: 1237 | is-extglob "^1.0.0" 1238 | 1239 | extsprintf@1.0.2: 1240 | version "1.0.2" 1241 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1242 | 1243 | fast-levenshtein@~2.0.4: 1244 | version "2.0.6" 1245 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1246 | 1247 | fb-watchman@^1.8.0: 1248 | version "1.9.2" 1249 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383" 1250 | dependencies: 1251 | bser "1.0.2" 1252 | 1253 | fb-watchman@^2.0.0: 1254 | version "2.0.0" 1255 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 1256 | dependencies: 1257 | bser "^2.0.0" 1258 | 1259 | figures@^1.3.5: 1260 | version "1.7.0" 1261 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1262 | dependencies: 1263 | escape-string-regexp "^1.0.5" 1264 | object-assign "^4.1.0" 1265 | 1266 | file-entry-cache@^2.0.0: 1267 | version "2.0.0" 1268 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1269 | dependencies: 1270 | flat-cache "^1.2.1" 1271 | object-assign "^4.0.1" 1272 | 1273 | filename-regex@^2.0.0: 1274 | version "2.0.1" 1275 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1276 | 1277 | fileset@^2.0.2: 1278 | version "2.0.3" 1279 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 1280 | dependencies: 1281 | glob "^7.0.3" 1282 | minimatch "^3.0.3" 1283 | 1284 | fill-range@^2.1.0: 1285 | version "2.2.3" 1286 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1287 | dependencies: 1288 | is-number "^2.1.0" 1289 | isobject "^2.0.0" 1290 | randomatic "^1.1.3" 1291 | repeat-element "^1.1.2" 1292 | repeat-string "^1.5.2" 1293 | 1294 | find-up@^1.0.0: 1295 | version "1.1.2" 1296 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1297 | dependencies: 1298 | path-exists "^2.0.0" 1299 | pinkie-promise "^2.0.0" 1300 | 1301 | find-up@^2.1.0: 1302 | version "2.1.0" 1303 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1304 | dependencies: 1305 | locate-path "^2.0.0" 1306 | 1307 | flat-cache@^1.2.1: 1308 | version "1.2.2" 1309 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 1310 | dependencies: 1311 | circular-json "^0.3.1" 1312 | del "^2.0.2" 1313 | graceful-fs "^4.1.2" 1314 | write "^0.2.1" 1315 | 1316 | for-in@^1.0.1: 1317 | version "1.0.2" 1318 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1319 | 1320 | for-own@^0.1.4: 1321 | version "0.1.5" 1322 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1323 | dependencies: 1324 | for-in "^1.0.1" 1325 | 1326 | forever-agent@~0.6.1: 1327 | version "0.6.1" 1328 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1329 | 1330 | form-data@~2.1.1: 1331 | version "2.1.4" 1332 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1333 | dependencies: 1334 | asynckit "^0.4.0" 1335 | combined-stream "^1.0.5" 1336 | mime-types "^2.1.12" 1337 | 1338 | fs.realpath@^1.0.0: 1339 | version "1.0.0" 1340 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1341 | 1342 | function-bind@^1.0.2: 1343 | version "1.1.0" 1344 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 1345 | 1346 | generate-function@^2.0.0: 1347 | version "2.0.0" 1348 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1349 | 1350 | generate-object-property@^1.1.0: 1351 | version "1.2.0" 1352 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1353 | dependencies: 1354 | is-property "^1.0.0" 1355 | 1356 | get-caller-file@^1.0.1: 1357 | version "1.0.2" 1358 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1359 | 1360 | getpass@^0.1.1: 1361 | version "0.1.7" 1362 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1363 | dependencies: 1364 | assert-plus "^1.0.0" 1365 | 1366 | glob-base@^0.3.0: 1367 | version "0.3.0" 1368 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1369 | dependencies: 1370 | glob-parent "^2.0.0" 1371 | is-glob "^2.0.0" 1372 | 1373 | glob-parent@^2.0.0: 1374 | version "2.0.0" 1375 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1376 | dependencies: 1377 | is-glob "^2.0.0" 1378 | 1379 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.1.1: 1380 | version "7.1.1" 1381 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1382 | dependencies: 1383 | fs.realpath "^1.0.0" 1384 | inflight "^1.0.4" 1385 | inherits "2" 1386 | minimatch "^3.0.2" 1387 | once "^1.3.0" 1388 | path-is-absolute "^1.0.0" 1389 | 1390 | globals@^9.0.0, globals@^9.14.0: 1391 | version "9.17.0" 1392 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 1393 | 1394 | globby@^5.0.0: 1395 | version "5.0.0" 1396 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1397 | dependencies: 1398 | array-union "^1.0.1" 1399 | arrify "^1.0.0" 1400 | glob "^7.0.3" 1401 | object-assign "^4.0.1" 1402 | pify "^2.0.0" 1403 | pinkie-promise "^2.0.0" 1404 | 1405 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 1406 | version "4.1.11" 1407 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1408 | 1409 | growly@^1.3.0: 1410 | version "1.3.0" 1411 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1412 | 1413 | handlebars@^4.0.3: 1414 | version "4.0.8" 1415 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.8.tgz#22b875cd3f0e6cbea30314f144e82bc7a72ff420" 1416 | dependencies: 1417 | async "^1.4.0" 1418 | optimist "^0.6.1" 1419 | source-map "^0.4.4" 1420 | optionalDependencies: 1421 | uglify-js "^2.6" 1422 | 1423 | har-schema@^1.0.5: 1424 | version "1.0.5" 1425 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1426 | 1427 | har-validator@~4.2.1: 1428 | version "4.2.1" 1429 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1430 | dependencies: 1431 | ajv "^4.9.1" 1432 | har-schema "^1.0.5" 1433 | 1434 | has-ansi@^2.0.0: 1435 | version "2.0.0" 1436 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1437 | dependencies: 1438 | ansi-regex "^2.0.0" 1439 | 1440 | has-flag@^1.0.0: 1441 | version "1.0.0" 1442 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1443 | 1444 | has@^1.0.1: 1445 | version "1.0.1" 1446 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1447 | dependencies: 1448 | function-bind "^1.0.2" 1449 | 1450 | hawk@~3.1.3: 1451 | version "3.1.3" 1452 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1453 | dependencies: 1454 | boom "2.x.x" 1455 | cryptiles "2.x.x" 1456 | hoek "2.x.x" 1457 | sntp "1.x.x" 1458 | 1459 | hoek@2.x.x: 1460 | version "2.16.3" 1461 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1462 | 1463 | home-or-tmp@^2.0.0: 1464 | version "2.0.0" 1465 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1466 | dependencies: 1467 | os-homedir "^1.0.0" 1468 | os-tmpdir "^1.0.1" 1469 | 1470 | hosted-git-info@^2.1.4: 1471 | version "2.4.2" 1472 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.2.tgz#0076b9f46a270506ddbaaea56496897460612a67" 1473 | 1474 | html-encoding-sniffer@^1.0.1: 1475 | version "1.0.1" 1476 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 1477 | dependencies: 1478 | whatwg-encoding "^1.0.1" 1479 | 1480 | http-signature@~1.1.0: 1481 | version "1.1.1" 1482 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1483 | dependencies: 1484 | assert-plus "^0.2.0" 1485 | jsprim "^1.2.2" 1486 | sshpk "^1.7.0" 1487 | 1488 | iconv-lite@0.4.13: 1489 | version "0.4.13" 1490 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 1491 | 1492 | ignore@^3.2.0: 1493 | version "3.3.0" 1494 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.0.tgz#3812d22cbe9125f2c2b4915755a1b8abd745a001" 1495 | 1496 | imurmurhash@^0.1.4: 1497 | version "0.1.4" 1498 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1499 | 1500 | inflight@^1.0.4: 1501 | version "1.0.6" 1502 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1503 | dependencies: 1504 | once "^1.3.0" 1505 | wrappy "1" 1506 | 1507 | inherits@2, inherits@^2.0.3, inherits@~2.0.1: 1508 | version "2.0.3" 1509 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1510 | 1511 | inquirer@^0.12.0: 1512 | version "0.12.0" 1513 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 1514 | dependencies: 1515 | ansi-escapes "^1.1.0" 1516 | ansi-regex "^2.0.0" 1517 | chalk "^1.0.0" 1518 | cli-cursor "^1.0.1" 1519 | cli-width "^2.0.0" 1520 | figures "^1.3.5" 1521 | lodash "^4.3.0" 1522 | readline2 "^1.0.1" 1523 | run-async "^0.1.0" 1524 | rx-lite "^3.1.2" 1525 | string-width "^1.0.1" 1526 | strip-ansi "^3.0.0" 1527 | through "^2.3.6" 1528 | 1529 | interpret@^1.0.0: 1530 | version "1.0.3" 1531 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.3.tgz#cbc35c62eeee73f19ab7b10a801511401afc0f90" 1532 | 1533 | invariant@^2.2.0, invariant@^2.2.2: 1534 | version "2.2.2" 1535 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1536 | dependencies: 1537 | loose-envify "^1.0.0" 1538 | 1539 | invert-kv@^1.0.0: 1540 | version "1.0.0" 1541 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1542 | 1543 | is-arrayish@^0.2.1: 1544 | version "0.2.1" 1545 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1546 | 1547 | is-buffer@^1.1.5: 1548 | version "1.1.5" 1549 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1550 | 1551 | is-builtin-module@^1.0.0: 1552 | version "1.0.0" 1553 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1554 | dependencies: 1555 | builtin-modules "^1.0.0" 1556 | 1557 | is-ci@^1.0.10: 1558 | version "1.0.10" 1559 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1560 | dependencies: 1561 | ci-info "^1.0.0" 1562 | 1563 | is-dotfile@^1.0.0: 1564 | version "1.0.2" 1565 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1566 | 1567 | is-equal-shallow@^0.1.3: 1568 | version "0.1.3" 1569 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1570 | dependencies: 1571 | is-primitive "^2.0.0" 1572 | 1573 | is-extendable@^0.1.1: 1574 | version "0.1.1" 1575 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1576 | 1577 | is-extglob@^1.0.0: 1578 | version "1.0.0" 1579 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1580 | 1581 | is-finite@^1.0.0: 1582 | version "1.0.2" 1583 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1584 | dependencies: 1585 | number-is-nan "^1.0.0" 1586 | 1587 | is-fullwidth-code-point@^1.0.0: 1588 | version "1.0.0" 1589 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1590 | dependencies: 1591 | number-is-nan "^1.0.0" 1592 | 1593 | is-fullwidth-code-point@^2.0.0: 1594 | version "2.0.0" 1595 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1596 | 1597 | is-glob@^2.0.0, is-glob@^2.0.1: 1598 | version "2.0.1" 1599 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1600 | dependencies: 1601 | is-extglob "^1.0.0" 1602 | 1603 | is-my-json-valid@^2.10.0: 1604 | version "2.16.0" 1605 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693" 1606 | dependencies: 1607 | generate-function "^2.0.0" 1608 | generate-object-property "^1.1.0" 1609 | jsonpointer "^4.0.0" 1610 | xtend "^4.0.0" 1611 | 1612 | is-number@^2.0.2, is-number@^2.1.0: 1613 | version "2.1.0" 1614 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1615 | dependencies: 1616 | kind-of "^3.0.2" 1617 | 1618 | is-path-cwd@^1.0.0: 1619 | version "1.0.0" 1620 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1621 | 1622 | is-path-in-cwd@^1.0.0: 1623 | version "1.0.0" 1624 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1625 | dependencies: 1626 | is-path-inside "^1.0.0" 1627 | 1628 | is-path-inside@^1.0.0: 1629 | version "1.0.0" 1630 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 1631 | dependencies: 1632 | path-is-inside "^1.0.1" 1633 | 1634 | is-posix-bracket@^0.1.0: 1635 | version "0.1.1" 1636 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1637 | 1638 | is-primitive@^2.0.0: 1639 | version "2.0.0" 1640 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1641 | 1642 | is-property@^1.0.0: 1643 | version "1.0.2" 1644 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1645 | 1646 | is-resolvable@^1.0.0: 1647 | version "1.0.0" 1648 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 1649 | dependencies: 1650 | tryit "^1.0.1" 1651 | 1652 | is-typedarray@~1.0.0: 1653 | version "1.0.0" 1654 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1655 | 1656 | is-utf8@^0.2.0: 1657 | version "0.2.1" 1658 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1659 | 1660 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1661 | version "1.0.0" 1662 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1663 | 1664 | isexe@^2.0.0: 1665 | version "2.0.0" 1666 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1667 | 1668 | isobject@^2.0.0: 1669 | version "2.1.0" 1670 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1671 | dependencies: 1672 | isarray "1.0.0" 1673 | 1674 | isstream@~0.1.2: 1675 | version "0.1.2" 1676 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1677 | 1678 | istanbul-api@^1.1.1: 1679 | version "1.1.8" 1680 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.8.tgz#a844e55c6f9aeee292e7f42942196f60b23dc93e" 1681 | dependencies: 1682 | async "^2.1.4" 1683 | fileset "^2.0.2" 1684 | istanbul-lib-coverage "^1.1.0" 1685 | istanbul-lib-hook "^1.0.6" 1686 | istanbul-lib-instrument "^1.7.1" 1687 | istanbul-lib-report "^1.1.0" 1688 | istanbul-lib-source-maps "^1.2.0" 1689 | istanbul-reports "^1.1.0" 1690 | js-yaml "^3.7.0" 1691 | mkdirp "^0.5.1" 1692 | once "^1.4.0" 1693 | 1694 | istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.1.0: 1695 | version "1.1.0" 1696 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.0.tgz#caca19decaef3525b5d6331d701f3f3b7ad48528" 1697 | 1698 | istanbul-lib-hook@^1.0.6: 1699 | version "1.0.6" 1700 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.6.tgz#c0866d1e81cf2d5319249510131fc16dee49231f" 1701 | dependencies: 1702 | append-transform "^0.4.0" 1703 | 1704 | istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.7.1: 1705 | version "1.7.1" 1706 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.1.tgz#169e31bc62c778851a99439dd99c3cc12184d360" 1707 | dependencies: 1708 | babel-generator "^6.18.0" 1709 | babel-template "^6.16.0" 1710 | babel-traverse "^6.18.0" 1711 | babel-types "^6.18.0" 1712 | babylon "^6.13.0" 1713 | istanbul-lib-coverage "^1.1.0" 1714 | semver "^5.3.0" 1715 | 1716 | istanbul-lib-report@^1.1.0: 1717 | version "1.1.0" 1718 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.0.tgz#444c4ecca9afa93cf584f56b10f195bf768c0770" 1719 | dependencies: 1720 | istanbul-lib-coverage "^1.1.0" 1721 | mkdirp "^0.5.1" 1722 | path-parse "^1.0.5" 1723 | supports-color "^3.1.2" 1724 | 1725 | istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.0: 1726 | version "1.2.0" 1727 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.0.tgz#8c7706d497e26feeb6af3e0c28fd5b0669598d0e" 1728 | dependencies: 1729 | debug "^2.6.3" 1730 | istanbul-lib-coverage "^1.1.0" 1731 | mkdirp "^0.5.1" 1732 | rimraf "^2.6.1" 1733 | source-map "^0.5.3" 1734 | 1735 | istanbul-reports@^1.1.0: 1736 | version "1.1.0" 1737 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.0.tgz#1ef3b795889219cfb5fad16365f6ce108d5f8c66" 1738 | dependencies: 1739 | handlebars "^4.0.3" 1740 | 1741 | jest-changed-files@^20.0.1: 1742 | version "20.0.1" 1743 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-20.0.1.tgz#ba9bd42c3fddb1b7c4ae40065199b44a2335e152" 1744 | 1745 | jest-cli@^20.0.1: 1746 | version "20.0.1" 1747 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-20.0.1.tgz#86ca0bc2e47215ad8e7dc85455c0210f86648502" 1748 | dependencies: 1749 | ansi-escapes "^1.4.0" 1750 | callsites "^2.0.0" 1751 | chalk "^1.1.3" 1752 | graceful-fs "^4.1.11" 1753 | is-ci "^1.0.10" 1754 | istanbul-api "^1.1.1" 1755 | istanbul-lib-coverage "^1.0.1" 1756 | istanbul-lib-instrument "^1.4.2" 1757 | istanbul-lib-source-maps "^1.1.0" 1758 | jest-changed-files "^20.0.1" 1759 | jest-config "^20.0.1" 1760 | jest-docblock "^20.0.1" 1761 | jest-environment-jsdom "^20.0.1" 1762 | jest-haste-map "^20.0.1" 1763 | jest-jasmine2 "^20.0.1" 1764 | jest-message-util "^20.0.1" 1765 | jest-regex-util "^20.0.1" 1766 | jest-resolve-dependencies "^20.0.1" 1767 | jest-runtime "^20.0.1" 1768 | jest-snapshot "^20.0.1" 1769 | jest-util "^20.0.1" 1770 | micromatch "^2.3.11" 1771 | node-notifier "^5.0.2" 1772 | pify "^2.3.0" 1773 | slash "^1.0.0" 1774 | string-length "^1.0.1" 1775 | throat "^3.0.0" 1776 | which "^1.2.12" 1777 | worker-farm "^1.3.1" 1778 | yargs "^7.0.2" 1779 | 1780 | jest-config@^20.0.1: 1781 | version "20.0.1" 1782 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-20.0.1.tgz#c6934f585c3e1775c96133efb302f986c3909ad8" 1783 | dependencies: 1784 | chalk "^1.1.3" 1785 | glob "^7.1.1" 1786 | jest-environment-jsdom "^20.0.1" 1787 | jest-environment-node "^20.0.1" 1788 | jest-jasmine2 "^20.0.1" 1789 | jest-matcher-utils "^20.0.1" 1790 | jest-regex-util "^20.0.1" 1791 | jest-resolve "^20.0.1" 1792 | jest-validate "^20.0.1" 1793 | pretty-format "^20.0.1" 1794 | 1795 | jest-diff@^20.0.1: 1796 | version "20.0.1" 1797 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-20.0.1.tgz#2567c80c324243328321386f8871a28ec9d350ac" 1798 | dependencies: 1799 | chalk "^1.1.3" 1800 | diff "^3.2.0" 1801 | jest-matcher-utils "^20.0.1" 1802 | pretty-format "^20.0.1" 1803 | 1804 | jest-docblock@^20.0.1: 1805 | version "20.0.1" 1806 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-20.0.1.tgz#055e0bbcb76798198479901f92d2733bf619f854" 1807 | 1808 | jest-environment-jsdom@^20.0.1: 1809 | version "20.0.1" 1810 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-20.0.1.tgz#2d29f81368987d387c70ce4f500c6aa560f9b4f7" 1811 | dependencies: 1812 | jest-mock "^20.0.1" 1813 | jest-util "^20.0.1" 1814 | jsdom "^9.12.0" 1815 | 1816 | jest-environment-node@^20.0.1: 1817 | version "20.0.1" 1818 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-20.0.1.tgz#75ab5358072ee1efebc54f43474357d7b3d674c7" 1819 | dependencies: 1820 | jest-mock "^20.0.1" 1821 | jest-util "^20.0.1" 1822 | 1823 | jest-haste-map@^20.0.1: 1824 | version "20.0.1" 1825 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-20.0.1.tgz#e6ba4db99ab512e7c081a5b0a0af731d0e193d56" 1826 | dependencies: 1827 | fb-watchman "^2.0.0" 1828 | graceful-fs "^4.1.11" 1829 | jest-docblock "^20.0.1" 1830 | micromatch "^2.3.11" 1831 | sane "~1.6.0" 1832 | worker-farm "^1.3.1" 1833 | 1834 | jest-jasmine2@^20.0.1: 1835 | version "20.0.1" 1836 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-20.0.1.tgz#675772b1fd32ad74e92e8ae8282f8ea71d1de168" 1837 | dependencies: 1838 | chalk "^1.1.3" 1839 | graceful-fs "^4.1.11" 1840 | jest-diff "^20.0.1" 1841 | jest-matcher-utils "^20.0.1" 1842 | jest-matchers "^20.0.1" 1843 | jest-message-util "^20.0.1" 1844 | jest-snapshot "^20.0.1" 1845 | once "^1.4.0" 1846 | p-map "^1.1.1" 1847 | 1848 | jest-matcher-utils@^20.0.1: 1849 | version "20.0.1" 1850 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-20.0.1.tgz#31aef67f59535af3c2271a3a3685db604dbd1622" 1851 | dependencies: 1852 | chalk "^1.1.3" 1853 | pretty-format "^20.0.1" 1854 | 1855 | jest-matchers@^20.0.1: 1856 | version "20.0.1" 1857 | resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-20.0.1.tgz#053b7654ce60129268f39992886e987a5201bb90" 1858 | dependencies: 1859 | jest-diff "^20.0.1" 1860 | jest-matcher-utils "^20.0.1" 1861 | jest-message-util "^20.0.1" 1862 | jest-regex-util "^20.0.1" 1863 | 1864 | jest-message-util@^20.0.1: 1865 | version "20.0.1" 1866 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-20.0.1.tgz#ac21cb055a6a5786b7f127ac7e705df5ffb1c335" 1867 | dependencies: 1868 | chalk "^1.1.3" 1869 | micromatch "^2.3.11" 1870 | slash "^1.0.0" 1871 | 1872 | jest-mock@^20.0.1: 1873 | version "20.0.1" 1874 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-20.0.1.tgz#f4cca2e87e441b66fabe4ead6a6d61773ec0773a" 1875 | 1876 | jest-regex-util@^20.0.1: 1877 | version "20.0.1" 1878 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-20.0.1.tgz#ecbcca8fbe4e217bca7f6f42a9b831d051224dc4" 1879 | 1880 | jest-resolve-dependencies@^20.0.1: 1881 | version "20.0.1" 1882 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-20.0.1.tgz#38fc012191775b0b277fabebb37aa8282e26846f" 1883 | dependencies: 1884 | jest-regex-util "^20.0.1" 1885 | 1886 | jest-resolve@^20.0.1: 1887 | version "20.0.1" 1888 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-20.0.1.tgz#cace553663f25c703dc977a4ce176e29eda92772" 1889 | dependencies: 1890 | browser-resolve "^1.11.2" 1891 | is-builtin-module "^1.0.0" 1892 | resolve "^1.3.2" 1893 | 1894 | jest-runtime@^20.0.1: 1895 | version "20.0.1" 1896 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-20.0.1.tgz#384f9298b8e8a177870c6d9ad0023db10ddcaedc" 1897 | dependencies: 1898 | babel-core "^6.0.0" 1899 | babel-jest "^20.0.1" 1900 | babel-plugin-istanbul "^4.0.0" 1901 | chalk "^1.1.3" 1902 | convert-source-map "^1.4.0" 1903 | graceful-fs "^4.1.11" 1904 | jest-config "^20.0.1" 1905 | jest-haste-map "^20.0.1" 1906 | jest-regex-util "^20.0.1" 1907 | jest-resolve "^20.0.1" 1908 | jest-util "^20.0.1" 1909 | json-stable-stringify "^1.0.1" 1910 | micromatch "^2.3.11" 1911 | strip-bom "3.0.0" 1912 | yargs "^7.0.2" 1913 | 1914 | jest-snapshot@^20.0.1: 1915 | version "20.0.1" 1916 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-20.0.1.tgz#3704c599705042f20ec7c95ba76a4524c744dfac" 1917 | dependencies: 1918 | chalk "^1.1.3" 1919 | jest-diff "^20.0.1" 1920 | jest-matcher-utils "^20.0.1" 1921 | jest-util "^20.0.1" 1922 | natural-compare "^1.4.0" 1923 | pretty-format "^20.0.1" 1924 | 1925 | jest-util@^20.0.1: 1926 | version "20.0.1" 1927 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-20.0.1.tgz#a3e7afb67110b2c3ac77b82e9a51ca57f4ff72a1" 1928 | dependencies: 1929 | chalk "^1.1.3" 1930 | graceful-fs "^4.1.11" 1931 | jest-message-util "^20.0.1" 1932 | jest-mock "^20.0.1" 1933 | jest-validate "^20.0.1" 1934 | leven "^2.1.0" 1935 | mkdirp "^0.5.1" 1936 | 1937 | jest-validate@^20.0.1: 1938 | version "20.0.1" 1939 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-20.0.1.tgz#a236c29e3c29e9b92a1e5da211a732f0238da928" 1940 | dependencies: 1941 | chalk "^1.1.3" 1942 | jest-matcher-utils "^20.0.1" 1943 | leven "^2.1.0" 1944 | pretty-format "^20.0.1" 1945 | 1946 | jest@^20.0.1: 1947 | version "20.0.1" 1948 | resolved "https://registry.yarnpkg.com/jest/-/jest-20.0.1.tgz#4e268159ccc3b659966939de817c75bfe9e0157d" 1949 | dependencies: 1950 | jest-cli "^20.0.1" 1951 | 1952 | jodid25519@^1.0.0: 1953 | version "1.0.2" 1954 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 1955 | dependencies: 1956 | jsbn "~0.1.0" 1957 | 1958 | js-tokens@^3.0.0: 1959 | version "3.0.1" 1960 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 1961 | 1962 | js-yaml@^3.5.1, js-yaml@^3.7.0: 1963 | version "3.8.4" 1964 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.4.tgz#520b4564f86573ba96662af85a8cafa7b4b5a6f6" 1965 | dependencies: 1966 | argparse "^1.0.7" 1967 | esprima "^3.1.1" 1968 | 1969 | jsbn@~0.1.0: 1970 | version "0.1.1" 1971 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1972 | 1973 | jsdom@^9.12.0: 1974 | version "9.12.0" 1975 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 1976 | dependencies: 1977 | abab "^1.0.3" 1978 | acorn "^4.0.4" 1979 | acorn-globals "^3.1.0" 1980 | array-equal "^1.0.0" 1981 | content-type-parser "^1.0.1" 1982 | cssom ">= 0.3.2 < 0.4.0" 1983 | cssstyle ">= 0.2.37 < 0.3.0" 1984 | escodegen "^1.6.1" 1985 | html-encoding-sniffer "^1.0.1" 1986 | nwmatcher ">= 1.3.9 < 2.0.0" 1987 | parse5 "^1.5.1" 1988 | request "^2.79.0" 1989 | sax "^1.2.1" 1990 | symbol-tree "^3.2.1" 1991 | tough-cookie "^2.3.2" 1992 | webidl-conversions "^4.0.0" 1993 | whatwg-encoding "^1.0.1" 1994 | whatwg-url "^4.3.0" 1995 | xml-name-validator "^2.0.1" 1996 | 1997 | jsesc@^1.3.0: 1998 | version "1.3.0" 1999 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2000 | 2001 | jsesc@~0.5.0: 2002 | version "0.5.0" 2003 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2004 | 2005 | json-schema@0.2.3: 2006 | version "0.2.3" 2007 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2008 | 2009 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 2010 | version "1.0.1" 2011 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2012 | dependencies: 2013 | jsonify "~0.0.0" 2014 | 2015 | json-stringify-safe@~5.0.1: 2016 | version "5.0.1" 2017 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2018 | 2019 | json5@^0.5.0: 2020 | version "0.5.1" 2021 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2022 | 2023 | jsonify@~0.0.0: 2024 | version "0.0.0" 2025 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2026 | 2027 | jsonpointer@^4.0.0: 2028 | version "4.0.1" 2029 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 2030 | 2031 | jsprim@^1.2.2: 2032 | version "1.4.0" 2033 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 2034 | dependencies: 2035 | assert-plus "1.0.0" 2036 | extsprintf "1.0.2" 2037 | json-schema "0.2.3" 2038 | verror "1.3.6" 2039 | 2040 | kind-of@^3.0.2: 2041 | version "3.2.0" 2042 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.0.tgz#b58abe4d5c044ad33726a8c1525b48cf891bff07" 2043 | dependencies: 2044 | is-buffer "^1.1.5" 2045 | 2046 | lazy-cache@^1.0.3: 2047 | version "1.0.4" 2048 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2049 | 2050 | lcid@^1.0.0: 2051 | version "1.0.0" 2052 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2053 | dependencies: 2054 | invert-kv "^1.0.0" 2055 | 2056 | leven@^2.1.0: 2057 | version "2.1.0" 2058 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 2059 | 2060 | levn@^0.3.0, levn@~0.3.0: 2061 | version "0.3.0" 2062 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2063 | dependencies: 2064 | prelude-ls "~1.1.2" 2065 | type-check "~0.3.2" 2066 | 2067 | load-json-file@^1.0.0: 2068 | version "1.1.0" 2069 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2070 | dependencies: 2071 | graceful-fs "^4.1.2" 2072 | parse-json "^2.2.0" 2073 | pify "^2.0.0" 2074 | pinkie-promise "^2.0.0" 2075 | strip-bom "^2.0.0" 2076 | 2077 | locate-path@^2.0.0: 2078 | version "2.0.0" 2079 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2080 | dependencies: 2081 | p-locate "^2.0.0" 2082 | path-exists "^3.0.0" 2083 | 2084 | lodash.cond@^4.3.0: 2085 | version "4.5.2" 2086 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" 2087 | 2088 | lodash@^4.0.0, lodash@^4.14.0, lodash@^4.2.0, lodash@^4.3.0: 2089 | version "4.17.4" 2090 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2091 | 2092 | longest@^1.0.1: 2093 | version "1.0.1" 2094 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2095 | 2096 | loose-envify@^1.0.0: 2097 | version "1.3.1" 2098 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2099 | dependencies: 2100 | js-tokens "^3.0.0" 2101 | 2102 | makeerror@1.0.x: 2103 | version "1.0.11" 2104 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2105 | dependencies: 2106 | tmpl "1.0.x" 2107 | 2108 | merge@^1.1.3: 2109 | version "1.2.0" 2110 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 2111 | 2112 | micromatch@^2.1.5, micromatch@^2.3.11: 2113 | version "2.3.11" 2114 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2115 | dependencies: 2116 | arr-diff "^2.0.0" 2117 | array-unique "^0.2.1" 2118 | braces "^1.8.2" 2119 | expand-brackets "^0.1.4" 2120 | extglob "^0.3.1" 2121 | filename-regex "^2.0.0" 2122 | is-extglob "^1.0.0" 2123 | is-glob "^2.0.1" 2124 | kind-of "^3.0.2" 2125 | normalize-path "^2.0.1" 2126 | object.omit "^2.0.0" 2127 | parse-glob "^3.0.4" 2128 | regex-cache "^0.4.2" 2129 | 2130 | mime-db@~1.27.0: 2131 | version "1.27.0" 2132 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 2133 | 2134 | mime-types@^2.1.12, mime-types@~2.1.7: 2135 | version "2.1.15" 2136 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 2137 | dependencies: 2138 | mime-db "~1.27.0" 2139 | 2140 | minimatch@^3.0.2, minimatch@^3.0.3: 2141 | version "3.0.4" 2142 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2143 | dependencies: 2144 | brace-expansion "^1.1.7" 2145 | 2146 | minimist@0.0.8, minimist@~0.0.1: 2147 | version "0.0.8" 2148 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2149 | 2150 | minimist@^1.1.1: 2151 | version "1.2.0" 2152 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2153 | 2154 | mkdirp@^0.5.0, mkdirp@^0.5.1: 2155 | version "0.5.1" 2156 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2157 | dependencies: 2158 | minimist "0.0.8" 2159 | 2160 | ms@0.7.1: 2161 | version "0.7.1" 2162 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 2163 | 2164 | ms@0.7.3: 2165 | version "0.7.3" 2166 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.3.tgz#708155a5e44e33f5fd0fc53e81d0d40a91be1fff" 2167 | 2168 | mute-stream@0.0.5: 2169 | version "0.0.5" 2170 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 2171 | 2172 | natural-compare@^1.4.0: 2173 | version "1.4.0" 2174 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2175 | 2176 | node-int64@^0.4.0: 2177 | version "0.4.0" 2178 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2179 | 2180 | node-notifier@^5.0.2: 2181 | version "5.1.2" 2182 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 2183 | dependencies: 2184 | growly "^1.3.0" 2185 | semver "^5.3.0" 2186 | shellwords "^0.1.0" 2187 | which "^1.2.12" 2188 | 2189 | normalize-package-data@^2.3.2: 2190 | version "2.3.8" 2191 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" 2192 | dependencies: 2193 | hosted-git-info "^2.1.4" 2194 | is-builtin-module "^1.0.0" 2195 | semver "2 || 3 || 4 || 5" 2196 | validate-npm-package-license "^3.0.1" 2197 | 2198 | normalize-path@^2.0.1: 2199 | version "2.1.1" 2200 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2201 | dependencies: 2202 | remove-trailing-separator "^1.0.1" 2203 | 2204 | number-is-nan@^1.0.0: 2205 | version "1.0.1" 2206 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2207 | 2208 | "nwmatcher@>= 1.3.9 < 2.0.0": 2209 | version "1.3.9" 2210 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.3.9.tgz#8bab486ff7fa3dfd086656bbe8b17116d3692d2a" 2211 | 2212 | oauth-sign@~0.8.1: 2213 | version "0.8.2" 2214 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2215 | 2216 | object-assign@^4.0.1, object-assign@^4.1.0: 2217 | version "4.1.1" 2218 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2219 | 2220 | object.omit@^2.0.0: 2221 | version "2.0.1" 2222 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2223 | dependencies: 2224 | for-own "^0.1.4" 2225 | is-extendable "^0.1.1" 2226 | 2227 | once@^1.3.0, once@^1.4.0: 2228 | version "1.4.0" 2229 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2230 | dependencies: 2231 | wrappy "1" 2232 | 2233 | onetime@^1.0.0: 2234 | version "1.1.0" 2235 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2236 | 2237 | optimist@^0.6.1: 2238 | version "0.6.1" 2239 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2240 | dependencies: 2241 | minimist "~0.0.1" 2242 | wordwrap "~0.0.2" 2243 | 2244 | optionator@^0.8.1, optionator@^0.8.2: 2245 | version "0.8.2" 2246 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2247 | dependencies: 2248 | deep-is "~0.1.3" 2249 | fast-levenshtein "~2.0.4" 2250 | levn "~0.3.0" 2251 | prelude-ls "~1.1.2" 2252 | type-check "~0.3.2" 2253 | wordwrap "~1.0.0" 2254 | 2255 | os-homedir@^1.0.0: 2256 | version "1.0.2" 2257 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2258 | 2259 | os-locale@^1.4.0: 2260 | version "1.4.0" 2261 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2262 | dependencies: 2263 | lcid "^1.0.0" 2264 | 2265 | os-tmpdir@^1.0.1: 2266 | version "1.0.2" 2267 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2268 | 2269 | p-limit@^1.1.0: 2270 | version "1.1.0" 2271 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2272 | 2273 | p-locate@^2.0.0: 2274 | version "2.0.0" 2275 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2276 | dependencies: 2277 | p-limit "^1.1.0" 2278 | 2279 | p-map@^1.1.1: 2280 | version "1.1.1" 2281 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.1.1.tgz#05f5e4ae97a068371bc2a5cc86bfbdbc19c4ae7a" 2282 | 2283 | parse-glob@^3.0.4: 2284 | version "3.0.4" 2285 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2286 | dependencies: 2287 | glob-base "^0.3.0" 2288 | is-dotfile "^1.0.0" 2289 | is-extglob "^1.0.0" 2290 | is-glob "^2.0.0" 2291 | 2292 | parse-json@^2.2.0: 2293 | version "2.2.0" 2294 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2295 | dependencies: 2296 | error-ex "^1.2.0" 2297 | 2298 | parse5@^1.5.1: 2299 | version "1.5.1" 2300 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 2301 | 2302 | path-exists@^2.0.0: 2303 | version "2.1.0" 2304 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2305 | dependencies: 2306 | pinkie-promise "^2.0.0" 2307 | 2308 | path-exists@^3.0.0: 2309 | version "3.0.0" 2310 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2311 | 2312 | path-is-absolute@^1.0.0: 2313 | version "1.0.1" 2314 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2315 | 2316 | path-is-inside@^1.0.1: 2317 | version "1.0.2" 2318 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2319 | 2320 | path-parse@^1.0.5: 2321 | version "1.0.5" 2322 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2323 | 2324 | path-type@^1.0.0: 2325 | version "1.1.0" 2326 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2327 | dependencies: 2328 | graceful-fs "^4.1.2" 2329 | pify "^2.0.0" 2330 | pinkie-promise "^2.0.0" 2331 | 2332 | performance-now@^0.2.0: 2333 | version "0.2.0" 2334 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2335 | 2336 | pify@^2.0.0, pify@^2.3.0: 2337 | version "2.3.0" 2338 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2339 | 2340 | pinkie-promise@^2.0.0: 2341 | version "2.0.1" 2342 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2343 | dependencies: 2344 | pinkie "^2.0.0" 2345 | 2346 | pinkie@^2.0.0: 2347 | version "2.0.4" 2348 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2349 | 2350 | pkg-dir@^1.0.0: 2351 | version "1.0.0" 2352 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 2353 | dependencies: 2354 | find-up "^1.0.0" 2355 | 2356 | pkg-up@^1.0.0: 2357 | version "1.0.0" 2358 | resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-1.0.0.tgz#3e08fb461525c4421624a33b9f7e6d0af5b05a26" 2359 | dependencies: 2360 | find-up "^1.0.0" 2361 | 2362 | pluralize@^1.2.1: 2363 | version "1.2.1" 2364 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 2365 | 2366 | prelude-ls@~1.1.2: 2367 | version "1.1.2" 2368 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2369 | 2370 | preserve@^0.2.0: 2371 | version "0.2.0" 2372 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2373 | 2374 | pretty-format@^20.0.1: 2375 | version "20.0.1" 2376 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-20.0.1.tgz#ba95329771907c189643dd251e244061ff642350" 2377 | dependencies: 2378 | ansi-regex "^2.1.1" 2379 | ansi-styles "^3.0.0" 2380 | 2381 | private@^0.1.6: 2382 | version "0.1.7" 2383 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2384 | 2385 | process-nextick-args@~1.0.6: 2386 | version "1.0.7" 2387 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2388 | 2389 | progress@^1.1.8: 2390 | version "1.1.8" 2391 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 2392 | 2393 | prr@~0.0.0: 2394 | version "0.0.0" 2395 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 2396 | 2397 | punycode@^1.4.1: 2398 | version "1.4.1" 2399 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2400 | 2401 | qs@~6.4.0: 2402 | version "6.4.0" 2403 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2404 | 2405 | randomatic@^1.1.3: 2406 | version "1.1.6" 2407 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 2408 | dependencies: 2409 | is-number "^2.0.2" 2410 | kind-of "^3.0.2" 2411 | 2412 | read-pkg-up@^1.0.1: 2413 | version "1.0.1" 2414 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2415 | dependencies: 2416 | find-up "^1.0.0" 2417 | read-pkg "^1.0.0" 2418 | 2419 | read-pkg@^1.0.0: 2420 | version "1.1.0" 2421 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2422 | dependencies: 2423 | load-json-file "^1.0.0" 2424 | normalize-package-data "^2.3.2" 2425 | path-type "^1.0.0" 2426 | 2427 | readable-stream@^2.2.2: 2428 | version "2.2.9" 2429 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.9.tgz#cf78ec6f4a6d1eb43d26488cac97f042e74b7fc8" 2430 | dependencies: 2431 | buffer-shims "~1.0.0" 2432 | core-util-is "~1.0.0" 2433 | inherits "~2.0.1" 2434 | isarray "~1.0.0" 2435 | process-nextick-args "~1.0.6" 2436 | string_decoder "~1.0.0" 2437 | util-deprecate "~1.0.1" 2438 | 2439 | readline2@^1.0.1: 2440 | version "1.0.1" 2441 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 2442 | dependencies: 2443 | code-point-at "^1.0.0" 2444 | is-fullwidth-code-point "^1.0.0" 2445 | mute-stream "0.0.5" 2446 | 2447 | rechoir@^0.6.2: 2448 | version "0.6.2" 2449 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 2450 | dependencies: 2451 | resolve "^1.1.6" 2452 | 2453 | regenerate@^1.2.1: 2454 | version "1.3.2" 2455 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 2456 | 2457 | regenerator-runtime@^0.10.0: 2458 | version "0.10.5" 2459 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 2460 | 2461 | regenerator-transform@0.9.11: 2462 | version "0.9.11" 2463 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.11.tgz#3a7d067520cb7b7176769eb5ff868691befe1283" 2464 | dependencies: 2465 | babel-runtime "^6.18.0" 2466 | babel-types "^6.19.0" 2467 | private "^0.1.6" 2468 | 2469 | regex-cache@^0.4.2: 2470 | version "0.4.3" 2471 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2472 | dependencies: 2473 | is-equal-shallow "^0.1.3" 2474 | is-primitive "^2.0.0" 2475 | 2476 | regexpu-core@^2.0.0: 2477 | version "2.0.0" 2478 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2479 | dependencies: 2480 | regenerate "^1.2.1" 2481 | regjsgen "^0.2.0" 2482 | regjsparser "^0.1.4" 2483 | 2484 | regjsgen@^0.2.0: 2485 | version "0.2.0" 2486 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2487 | 2488 | regjsparser@^0.1.4: 2489 | version "0.1.5" 2490 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2491 | dependencies: 2492 | jsesc "~0.5.0" 2493 | 2494 | remove-trailing-separator@^1.0.1: 2495 | version "1.0.1" 2496 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" 2497 | 2498 | repeat-element@^1.1.2: 2499 | version "1.1.2" 2500 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2501 | 2502 | repeat-string@^1.5.2: 2503 | version "1.6.1" 2504 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2505 | 2506 | repeating@^2.0.0: 2507 | version "2.0.1" 2508 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2509 | dependencies: 2510 | is-finite "^1.0.0" 2511 | 2512 | request@^2.79.0: 2513 | version "2.81.0" 2514 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2515 | dependencies: 2516 | aws-sign2 "~0.6.0" 2517 | aws4 "^1.2.1" 2518 | caseless "~0.12.0" 2519 | combined-stream "~1.0.5" 2520 | extend "~3.0.0" 2521 | forever-agent "~0.6.1" 2522 | form-data "~2.1.1" 2523 | har-validator "~4.2.1" 2524 | hawk "~3.1.3" 2525 | http-signature "~1.1.0" 2526 | is-typedarray "~1.0.0" 2527 | isstream "~0.1.2" 2528 | json-stringify-safe "~5.0.1" 2529 | mime-types "~2.1.7" 2530 | oauth-sign "~0.8.1" 2531 | performance-now "^0.2.0" 2532 | qs "~6.4.0" 2533 | safe-buffer "^5.0.1" 2534 | stringstream "~0.0.4" 2535 | tough-cookie "~2.3.0" 2536 | tunnel-agent "^0.6.0" 2537 | uuid "^3.0.0" 2538 | 2539 | require-directory@^2.1.1: 2540 | version "2.1.1" 2541 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2542 | 2543 | require-main-filename@^1.0.1: 2544 | version "1.0.1" 2545 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2546 | 2547 | require-relative@0.8.7, require-relative@^0.8.7: 2548 | version "0.8.7" 2549 | resolved "https://registry.yarnpkg.com/require-relative/-/require-relative-0.8.7.tgz#7999539fc9e047a37928fa196f8e1563dabd36de" 2550 | 2551 | require-uncached@^1.0.2: 2552 | version "1.0.3" 2553 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 2554 | dependencies: 2555 | caller-path "^0.1.0" 2556 | resolve-from "^1.0.0" 2557 | 2558 | resolve-from@^1.0.0: 2559 | version "1.0.1" 2560 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 2561 | 2562 | resolve@1.1.7: 2563 | version "1.1.7" 2564 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2565 | 2566 | resolve@^1.1.6, resolve@^1.3.2: 2567 | version "1.3.3" 2568 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5" 2569 | dependencies: 2570 | path-parse "^1.0.5" 2571 | 2572 | restore-cursor@^1.0.1: 2573 | version "1.0.1" 2574 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 2575 | dependencies: 2576 | exit-hook "^1.0.0" 2577 | onetime "^1.0.0" 2578 | 2579 | right-align@^0.1.1: 2580 | version "0.1.3" 2581 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2582 | dependencies: 2583 | align-text "^0.1.1" 2584 | 2585 | rimraf@^2.2.8, rimraf@^2.6.1: 2586 | version "2.6.1" 2587 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 2588 | dependencies: 2589 | glob "^7.0.5" 2590 | 2591 | rollup-plugin-babel@^2.7.1: 2592 | version "2.7.1" 2593 | resolved "https://registry.yarnpkg.com/rollup-plugin-babel/-/rollup-plugin-babel-2.7.1.tgz#16528197b0f938a1536f44683c7a93d573182f57" 2594 | dependencies: 2595 | babel-core "6" 2596 | babel-plugin-transform-es2015-classes "^6.9.0" 2597 | object-assign "^4.1.0" 2598 | rollup-pluginutils "^1.5.0" 2599 | 2600 | rollup-pluginutils@^1.5.0: 2601 | version "1.5.2" 2602 | resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-1.5.2.tgz#1e156e778f94b7255bfa1b3d0178be8f5c552408" 2603 | dependencies: 2604 | estree-walker "^0.2.1" 2605 | minimatch "^3.0.2" 2606 | 2607 | rollup-watch@^3.2.2: 2608 | version "3.2.2" 2609 | resolved "https://registry.yarnpkg.com/rollup-watch/-/rollup-watch-3.2.2.tgz#5e574232e9ef36da9177f46946d8080cb267354b" 2610 | dependencies: 2611 | require-relative "0.8.7" 2612 | 2613 | rollup@^0.41.6: 2614 | version "0.41.6" 2615 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.41.6.tgz#e0d05497877a398c104d816d2733a718a7a94e2a" 2616 | dependencies: 2617 | source-map-support "^0.4.0" 2618 | 2619 | run-async@^0.1.0: 2620 | version "0.1.0" 2621 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 2622 | dependencies: 2623 | once "^1.3.0" 2624 | 2625 | rx-lite@^3.1.2: 2626 | version "3.1.2" 2627 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 2628 | 2629 | safe-buffer@^5.0.1: 2630 | version "5.0.1" 2631 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 2632 | 2633 | sane@~1.6.0: 2634 | version "1.6.0" 2635 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.6.0.tgz#9610c452307a135d29c1fdfe2547034180c46775" 2636 | dependencies: 2637 | anymatch "^1.3.0" 2638 | exec-sh "^0.2.0" 2639 | fb-watchman "^1.8.0" 2640 | minimatch "^3.0.2" 2641 | minimist "^1.1.1" 2642 | walker "~1.0.5" 2643 | watch "~0.10.0" 2644 | 2645 | sax@^1.2.1: 2646 | version "1.2.2" 2647 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.2.tgz#fd8631a23bc7826bef5d871bdb87378c95647828" 2648 | 2649 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 2650 | version "5.3.0" 2651 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 2652 | 2653 | set-blocking@^2.0.0: 2654 | version "2.0.0" 2655 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2656 | 2657 | shelljs@^0.7.5: 2658 | version "0.7.7" 2659 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.7.tgz#b2f5c77ef97148f4b4f6e22682e10bba8667cff1" 2660 | dependencies: 2661 | glob "^7.0.0" 2662 | interpret "^1.0.0" 2663 | rechoir "^0.6.2" 2664 | 2665 | shellwords@^0.1.0: 2666 | version "0.1.0" 2667 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.0.tgz#66afd47b6a12932d9071cbfd98a52e785cd0ba14" 2668 | 2669 | slash@^1.0.0: 2670 | version "1.0.0" 2671 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2672 | 2673 | slice-ansi@0.0.4: 2674 | version "0.0.4" 2675 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 2676 | 2677 | sntp@1.x.x: 2678 | version "1.0.9" 2679 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2680 | dependencies: 2681 | hoek "2.x.x" 2682 | 2683 | source-map-support@^0.4.0, source-map-support@^0.4.2: 2684 | version "0.4.15" 2685 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1" 2686 | dependencies: 2687 | source-map "^0.5.6" 2688 | 2689 | source-map@^0.4.4: 2690 | version "0.4.4" 2691 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 2692 | dependencies: 2693 | amdefine ">=0.0.4" 2694 | 2695 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 2696 | version "0.5.6" 2697 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 2698 | 2699 | source-map@~0.2.0: 2700 | version "0.2.0" 2701 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 2702 | dependencies: 2703 | amdefine ">=0.0.4" 2704 | 2705 | spdx-correct@~1.0.0: 2706 | version "1.0.2" 2707 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2708 | dependencies: 2709 | spdx-license-ids "^1.0.2" 2710 | 2711 | spdx-expression-parse@~1.0.0: 2712 | version "1.0.4" 2713 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2714 | 2715 | spdx-license-ids@^1.0.2: 2716 | version "1.2.2" 2717 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2718 | 2719 | sprintf-js@~1.0.2: 2720 | version "1.0.3" 2721 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2722 | 2723 | sshpk@^1.7.0: 2724 | version "1.13.0" 2725 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.0.tgz#ff2a3e4fd04497555fed97b39a0fd82fafb3a33c" 2726 | dependencies: 2727 | asn1 "~0.2.3" 2728 | assert-plus "^1.0.0" 2729 | dashdash "^1.12.0" 2730 | getpass "^0.1.1" 2731 | optionalDependencies: 2732 | bcrypt-pbkdf "^1.0.0" 2733 | ecc-jsbn "~0.1.1" 2734 | jodid25519 "^1.0.0" 2735 | jsbn "~0.1.0" 2736 | tweetnacl "~0.14.0" 2737 | 2738 | string-length@^1.0.1: 2739 | version "1.0.1" 2740 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 2741 | dependencies: 2742 | strip-ansi "^3.0.0" 2743 | 2744 | string-width@^1.0.1, string-width@^1.0.2: 2745 | version "1.0.2" 2746 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2747 | dependencies: 2748 | code-point-at "^1.0.0" 2749 | is-fullwidth-code-point "^1.0.0" 2750 | strip-ansi "^3.0.0" 2751 | 2752 | string-width@^2.0.0: 2753 | version "2.0.0" 2754 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 2755 | dependencies: 2756 | is-fullwidth-code-point "^2.0.0" 2757 | strip-ansi "^3.0.0" 2758 | 2759 | string_decoder@~1.0.0: 2760 | version "1.0.0" 2761 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.0.tgz#f06f41157b664d86069f84bdbdc9b0d8ab281667" 2762 | dependencies: 2763 | buffer-shims "~1.0.0" 2764 | 2765 | stringstream@~0.0.4: 2766 | version "0.0.5" 2767 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2768 | 2769 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2770 | version "3.0.1" 2771 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2772 | dependencies: 2773 | ansi-regex "^2.0.0" 2774 | 2775 | strip-bom@3.0.0, strip-bom@^3.0.0: 2776 | version "3.0.0" 2777 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2778 | 2779 | strip-bom@^2.0.0: 2780 | version "2.0.0" 2781 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2782 | dependencies: 2783 | is-utf8 "^0.2.0" 2784 | 2785 | strip-json-comments@~2.0.1: 2786 | version "2.0.1" 2787 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2788 | 2789 | supports-color@^2.0.0: 2790 | version "2.0.0" 2791 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2792 | 2793 | supports-color@^3.1.2: 2794 | version "3.2.3" 2795 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 2796 | dependencies: 2797 | has-flag "^1.0.0" 2798 | 2799 | symbol-tree@^3.2.1: 2800 | version "3.2.2" 2801 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 2802 | 2803 | table@^3.7.8: 2804 | version "3.8.3" 2805 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 2806 | dependencies: 2807 | ajv "^4.7.0" 2808 | ajv-keywords "^1.0.0" 2809 | chalk "^1.1.1" 2810 | lodash "^4.0.0" 2811 | slice-ansi "0.0.4" 2812 | string-width "^2.0.0" 2813 | 2814 | test-exclude@^4.1.0: 2815 | version "4.1.0" 2816 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.0.tgz#04ca70b7390dd38c98d4a003a173806ca7991c91" 2817 | dependencies: 2818 | arrify "^1.0.1" 2819 | micromatch "^2.3.11" 2820 | object-assign "^4.1.0" 2821 | read-pkg-up "^1.0.1" 2822 | require-main-filename "^1.0.1" 2823 | 2824 | text-table@~0.2.0: 2825 | version "0.2.0" 2826 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 2827 | 2828 | throat@^3.0.0: 2829 | version "3.0.0" 2830 | resolved "https://registry.yarnpkg.com/throat/-/throat-3.0.0.tgz#e7c64c867cbb3845f10877642f7b60055b8ec0d6" 2831 | 2832 | through@^2.3.6: 2833 | version "2.3.8" 2834 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2835 | 2836 | tmpl@1.0.x: 2837 | version "1.0.4" 2838 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 2839 | 2840 | to-fast-properties@^1.0.1: 2841 | version "1.0.3" 2842 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2843 | 2844 | tough-cookie@^2.3.2, tough-cookie@~2.3.0: 2845 | version "2.3.2" 2846 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 2847 | dependencies: 2848 | punycode "^1.4.1" 2849 | 2850 | tr46@~0.0.3: 2851 | version "0.0.3" 2852 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 2853 | 2854 | trim-right@^1.0.1: 2855 | version "1.0.1" 2856 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2857 | 2858 | tryit@^1.0.1: 2859 | version "1.0.3" 2860 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 2861 | 2862 | tunnel-agent@^0.6.0: 2863 | version "0.6.0" 2864 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2865 | dependencies: 2866 | safe-buffer "^5.0.1" 2867 | 2868 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2869 | version "0.14.5" 2870 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2871 | 2872 | type-check@~0.3.2: 2873 | version "0.3.2" 2874 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 2875 | dependencies: 2876 | prelude-ls "~1.1.2" 2877 | 2878 | typedarray@^0.0.6: 2879 | version "0.0.6" 2880 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 2881 | 2882 | uglify-js@^2.6: 2883 | version "2.8.23" 2884 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.23.tgz#8230dd9783371232d62a7821e2cf9a817270a8a0" 2885 | dependencies: 2886 | source-map "~0.5.1" 2887 | yargs "~3.10.0" 2888 | optionalDependencies: 2889 | uglify-to-browserify "~1.0.0" 2890 | 2891 | uglify-to-browserify@~1.0.0: 2892 | version "1.0.2" 2893 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 2894 | 2895 | user-home@^2.0.0: 2896 | version "2.0.0" 2897 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 2898 | dependencies: 2899 | os-homedir "^1.0.0" 2900 | 2901 | util-deprecate@~1.0.1: 2902 | version "1.0.2" 2903 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2904 | 2905 | uuid@^3.0.0: 2906 | version "3.0.1" 2907 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 2908 | 2909 | validate-npm-package-license@^3.0.1: 2910 | version "3.0.1" 2911 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 2912 | dependencies: 2913 | spdx-correct "~1.0.0" 2914 | spdx-expression-parse "~1.0.0" 2915 | 2916 | verror@1.3.6: 2917 | version "1.3.6" 2918 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 2919 | dependencies: 2920 | extsprintf "1.0.2" 2921 | 2922 | walker@~1.0.5: 2923 | version "1.0.7" 2924 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 2925 | dependencies: 2926 | makeerror "1.0.x" 2927 | 2928 | watch@~0.10.0: 2929 | version "0.10.0" 2930 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 2931 | 2932 | webidl-conversions@^3.0.0: 2933 | version "3.0.1" 2934 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 2935 | 2936 | webidl-conversions@^4.0.0: 2937 | version "4.0.1" 2938 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.1.tgz#8015a17ab83e7e1b311638486ace81da6ce206a0" 2939 | 2940 | whatwg-encoding@^1.0.1: 2941 | version "1.0.1" 2942 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 2943 | dependencies: 2944 | iconv-lite "0.4.13" 2945 | 2946 | whatwg-url@^4.3.0: 2947 | version "4.7.1" 2948 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.7.1.tgz#df4dc2e3f25a63b1fa5b32ed6d6c139577d690de" 2949 | dependencies: 2950 | tr46 "~0.0.3" 2951 | webidl-conversions "^3.0.0" 2952 | 2953 | which-module@^1.0.0: 2954 | version "1.0.0" 2955 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 2956 | 2957 | which@^1.2.12: 2958 | version "1.2.14" 2959 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 2960 | dependencies: 2961 | isexe "^2.0.0" 2962 | 2963 | window-size@0.1.0: 2964 | version "0.1.0" 2965 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 2966 | 2967 | wordwrap@0.0.2: 2968 | version "0.0.2" 2969 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 2970 | 2971 | wordwrap@~0.0.2: 2972 | version "0.0.3" 2973 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 2974 | 2975 | wordwrap@~1.0.0: 2976 | version "1.0.0" 2977 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 2978 | 2979 | worker-farm@^1.3.1: 2980 | version "1.3.1" 2981 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.3.1.tgz#4333112bb49b17aa050b87895ca6b2cacf40e5ff" 2982 | dependencies: 2983 | errno ">=0.1.1 <0.2.0-0" 2984 | xtend ">=4.0.0 <4.1.0-0" 2985 | 2986 | wrap-ansi@^2.0.0: 2987 | version "2.1.0" 2988 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 2989 | dependencies: 2990 | string-width "^1.0.1" 2991 | strip-ansi "^3.0.1" 2992 | 2993 | wrappy@1: 2994 | version "1.0.2" 2995 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2996 | 2997 | write@^0.2.1: 2998 | version "0.2.1" 2999 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 3000 | dependencies: 3001 | mkdirp "^0.5.1" 3002 | 3003 | xml-name-validator@^2.0.1: 3004 | version "2.0.1" 3005 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 3006 | 3007 | "xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0: 3008 | version "4.0.1" 3009 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3010 | 3011 | y18n@^3.2.1: 3012 | version "3.2.1" 3013 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3014 | 3015 | yargs-parser@^5.0.0: 3016 | version "5.0.0" 3017 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" 3018 | dependencies: 3019 | camelcase "^3.0.0" 3020 | 3021 | yargs@^7.0.2: 3022 | version "7.1.0" 3023 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" 3024 | dependencies: 3025 | camelcase "^3.0.0" 3026 | cliui "^3.2.0" 3027 | decamelize "^1.1.1" 3028 | get-caller-file "^1.0.1" 3029 | os-locale "^1.4.0" 3030 | read-pkg-up "^1.0.1" 3031 | require-directory "^2.1.1" 3032 | require-main-filename "^1.0.1" 3033 | set-blocking "^2.0.0" 3034 | string-width "^1.0.2" 3035 | which-module "^1.0.0" 3036 | y18n "^3.2.1" 3037 | yargs-parser "^5.0.0" 3038 | 3039 | yargs@~3.10.0: 3040 | version "3.10.0" 3041 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3042 | dependencies: 3043 | camelcase "^1.0.2" 3044 | cliui "^2.1.0" 3045 | decamelize "^1.0.0" 3046 | window-size "0.1.0" 3047 | --------------------------------------------------------------------------------