├── .npmrc-ci ├── .npmignore ├── .gitignore ├── .babelrc ├── .circleci └── config.yml ├── package.json ├── readme.md ├── src ├── index.js └── index.test.js ├── .eslintrc.js ├── LICENSE └── yarn.lock /.npmrc-ci: -------------------------------------------------------------------------------- 1 | //registry.npmjs.org/:_authToken=${NPM_TOKEN} 2 | 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | spec/* 3 | *.test.js 4 | __mocks__ 5 | __snapshots__ 6 | jest 7 | coverage 8 | example 9 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.sublime-project 3 | *.sublime-workspace 4 | *.log 5 | v8-compile-cache-* 6 | jest/* 7 | coverage 8 | dist 9 | -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "comments": false, 3 | "presets": [ 4 | ["env", { 5 | "targets": { 6 | "node": ["4.2"] 7 | } 8 | }] 9 | ], 10 | "plugins": [ 11 | ["transform-runtime", {"polyfill": false, "regenerator": true}] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- 1 | defaults: &defaults 2 | docker: 3 | - image: circleci/node:8.10 4 | working_directory: ~/circleci-deployment 5 | 6 | version: 2 7 | 8 | jobs: 9 | install: 10 | <<: *defaults 11 | steps: 12 | - checkout 13 | - restore_cache: 14 | key: yarn-cache-{{ .Branch }}-{{ checksum "yarn.lock" }} 15 | - run: yarn 16 | - save_cache: 17 | paths: 18 | - node_modules 19 | key: yarn-cache-{{ .Branch }}-{{ checksum "yarn.lock" }} 20 | 21 | test: 22 | <<: *defaults 23 | steps: 24 | - checkout 25 | - restore_cache: 26 | key: yarn-cache-{{ .Branch }}-{{ checksum "yarn.lock" }} 27 | - run: yarn 28 | - run: yarn test 29 | - save_cache: 30 | key: v1-dist-{{ .Environment.CIRCLE_BRANCH }}-{{ .Environment.CIRCLE_SHA1 }} 31 | paths: 32 | - dist 33 | 34 | deploy: 35 | <<: *defaults 36 | steps: 37 | - checkout 38 | - restore_cache: 39 | keys: 40 | - yarn-cache-{{ .Branch }}-{{ checksum "yarn.lock" }} 41 | - v1-dist-{{ .Environment.CIRCLE_BRANCH }}-{{ .Environment.CIRCLE_SHA1 }} 42 | - run: cp .npmrc-ci .npmrc 43 | - run: npm publish 44 | 45 | workflows: 46 | version: 2 47 | test_build_deploy: 48 | jobs: 49 | - install 50 | - test: 51 | requires: 52 | - install 53 | - deploy: 54 | requires: 55 | - install 56 | - test 57 | filters: 58 | branches: 59 | ignore: /.*/ 60 | tags: 61 | only: /^v.*/ 62 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "IOpipe ", 3 | "bugs": { 4 | "url": "https://github.com/iopipe/sqs-to-lambda-async/issues" 5 | }, 6 | "dependencies": { 7 | "aws-sdk": "^2.7.20", 8 | "babel-runtime": "^6.23.0", 9 | "debug": "^2.6.8", 10 | "lodash": "^4.17.4", 11 | "p-forever": "^1.0.1", 12 | "p-settle": "^2.0.0" 13 | }, 14 | "description": "SQS To Lambda (Async)", 15 | "devDependencies": { 16 | "aws-sdk-mock": "^1.7.0", 17 | "babel-cli": "^6.18.0", 18 | "babel-core": "^6.25.0", 19 | "babel-eslint": "^7.2.1", 20 | "babel-plugin-transform-runtime": "^6.23.0", 21 | "babel-preset-env": "^1.5.2", 22 | "delay": "^2.0.0", 23 | "eslint": "^3.19.0", 24 | "eslint-plugin-jest": "^19.0.1", 25 | "eslint-plugin-prettier": "^2.1.2", 26 | "jest": "^19.0.2", 27 | "pre-commit": "^1.2.2", 28 | "prettier": "^1.5.2" 29 | }, 30 | "engines": { 31 | "node": ">=4.2.6" 32 | }, 33 | "files": [ 34 | "dist/" 35 | ], 36 | "homepage": "https://github.com/iopipe/sqs-to-lambda-async#readme", 37 | "jest": { 38 | "coveragePathIgnorePatterns": [ 39 | "/node_modules/", 40 | "example", 41 | "dist" 42 | ] 43 | }, 44 | "keywords": [ 45 | "lambda", 46 | "serverless", 47 | "sqs", 48 | "iopipe" 49 | ], 50 | "license": "Apache-2.0", 51 | "main": "dist/index.js", 52 | "name": "sqs-to-lambda-async", 53 | "pre-commit": [ 54 | "test" 55 | ], 56 | "repository": { 57 | "type": "git", 58 | "url": "git+https://github.com/iopipe/sqs-to-lambda-async.git" 59 | }, 60 | "scripts": { 61 | "build": "NODE_ENV=production npm run folder && npm run babel", 62 | "babel": "babel src --out-dir dist --ignore **/*.test.js,**/__mocks__/**", 63 | "eslint": "eslint src", 64 | "eslintFix": "npm run eslint -- --fix", 65 | "folder": "rm -rf dist && mkdir dist", 66 | "jest": "jest", 67 | "prepublish": "npm run build", 68 | "test": "npm run eslint && npm run build && npm run jest" 69 | }, 70 | "version": "0.2.0" 71 | } 72 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # SQS to Lambda (Async) 2 | 3 | [![CircleCI](https://circleci.com/gh/iopipe/sqs-to-lambda-async.svg?style=svg&circle-token=54579c6f78d8dd9bcc6f96696a8481e7bc007596)](https://circleci.com/gh/iopipe/sqs-to-lambda-async) 4 | [![styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg)](https://github.com/prettier/prettier) 5 | 6 | So you want to trigger a Lambda function via SQS? Great! You might be able to use [sqs-to-lambda](https://github.com/robinjmurphy/sqs-to-lambda). But what if you want your Lambda function to delete the SQS message, instead of the sqs-to-lambda implementation? Or, what if you want to setup multiple SQS => Lambda configurations? That's where this package comes in. 7 | 8 | ## Requirements 9 | - Node >= `4.3.2` 10 | - NPM >= `2.14.12` 11 | 12 | ## Install 13 | 14 | With [yarn](https://yarnpkg.com) (recommended) in project directory: 15 | ``` 16 | yarn add sqs-to-lambda-async 17 | ``` 18 | 19 | With npm in project directory: 20 | ``` 21 | npm install sqs-to-lambda-async 22 | ``` 23 | 24 | Then, run your application: 25 | ```js 26 | import worker from 'sqs-to-lambda-async'; 27 | 28 | worker([ 29 | { 30 | queueUrl: 'sqs-queue-url-here', 31 | functionName: 'lambda-arn-here' 32 | } 33 | ]); 34 | ``` 35 | 36 | ## Config 37 | 38 | The package accepts an array of mapping configurations. A mapping configuration is an object with the following properties: 39 | 40 | #### `queueUrl` (string: required) 41 | 42 | The SQS queue you want to pull from. 43 | 44 | #### `functionName` (string: required) 45 | 46 | The Lambda function you want to execute. 47 | 48 | #### `messageFormatter` (function: optional) 49 | 50 | A function that allows transformation of the SQS message before send to Lambda. 51 | 52 | Example: 53 | ```js 54 | worker([ 55 | { 56 | queueUrl: 'sqs-queue-url-here', 57 | functionName: 'lambda-arn-here', 58 | messageFormatter: (msg) => { 59 | return Object.assign({}, msg, { 60 | Body: 'reconfigure the sqs body here' 61 | }) 62 | } 63 | } 64 | ]); 65 | ``` 66 | 67 | #### `deleteMessage` (boolean: optional, default = false) 68 | 69 | Use this flag to allow this package to delete the message for you, instead of your Lambda function. 70 | 71 | #### `maxNumberOfMessages` (integer: optional, default = 5) 72 | 73 | The maximum number of messages to return. [AWS Documenation](http://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_ReceiveMessage.html) 74 | 75 | #### `waitTimeSeconds` (integer: optional, default = 5) 76 | 77 | The duration (in seconds) for which the call waits for a message to arrive in the queue before returning. [AWS Documenation](http://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_ReceiveMessage.html) 78 | 79 | #### `postInvoke` (function: optional) 80 | 81 | Optional callback that is invoked after each lambda invocation. Useful for error handling. 82 | 83 | Example: 84 | ```js 85 | worker([ 86 | { 87 | queueUrl: 'sqs-queue-url-here', 88 | functionName: 'lambda-arn-here', 89 | postInvoke(err, value){ 90 | // err will be undefined if lambda invoked successfully 91 | // value includes FunctionName and Payload 92 | } 93 | } 94 | ]); 95 | ``` 96 | 97 | ## Contributing 98 | - This project uses [Prettier](https://github.com/prettier/prettier). Please execute `npm run eslintFix` to auto-format the code before submitting pull requests. 99 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import _ from 'lodash'; 2 | import AWS from 'aws-sdk'; 3 | import pForever from 'p-forever'; 4 | import pSettle from 'p-settle'; 5 | 6 | const debug = require('debug')('sqs-to-lambda-async'); 7 | 8 | let sqs = undefined; 9 | let lambda = undefined; 10 | 11 | function handleMessage(message = {}, kwargs = {}) { 12 | return new Promise((resolve, reject) => { 13 | debug(`Incoming message: ${JSON.stringify(message)}`); 14 | const { MessageFormatter, FunctionName, DeleteMessage, QueueUrl } = kwargs; 15 | //no sqs message to process 16 | if (_.isEmpty(message)) { 17 | return resolve('Message is empty'); 18 | } 19 | if (typeof MessageFormatter !== 'function') { 20 | return reject('Message formatter is not a function.'); 21 | } 22 | if (typeof FunctionName !== 'string') { 23 | return reject('Function ARN not valid.'); 24 | } 25 | const Payload = JSON.stringify(MessageFormatter(message)); 26 | debug(`Invoking lambda ${FunctionName}`); 27 | return lambda.invoke( 28 | { 29 | InvocationType: 'Event', 30 | FunctionName, 31 | Payload 32 | }, 33 | (err, res) => { 34 | if (err) { 35 | return reject(err); 36 | } 37 | if (DeleteMessage) { 38 | return sqs.deleteMessage( 39 | { 40 | QueueUrl, 41 | ReceiptHandle: message.ReceiptHandle 42 | }, 43 | deleteMessageErr => { 44 | return deleteMessageErr ? reject(deleteMessageErr) : resolve(res); 45 | } 46 | ); 47 | } 48 | return resolve(res); 49 | } 50 | ); 51 | }); 52 | } 53 | 54 | function receiveMessages(kwargs = {}) { 55 | return new Promise(resolve => { 56 | const recieveArgs = _.chain(kwargs) 57 | .pick([ 58 | 'MaxNumberOfMessages', 59 | 'QueueUrl', 60 | 'WaitTimeSeconds', 61 | 'VisibilityTimeout' 62 | ]) 63 | .pickBy() 64 | .value(); 65 | sqs.receiveMessage(recieveArgs, (err, data) => { 66 | const messages = _.isArray(data.Messages) ? data.Messages : []; 67 | pSettle( 68 | messages.map(msg => { 69 | return handleMessage(msg, kwargs); 70 | }) 71 | ).then(resolve); 72 | }); 73 | }); 74 | } 75 | 76 | function handleLambdaCallback(kwargs, values = []) { 77 | const { PostInvoke } = kwargs; 78 | if (_.isArray(values) && _.isFunction(PostInvoke)) { 79 | try { 80 | values.forEach((obj = {}) => { 81 | return obj.isFulfilled 82 | ? PostInvoke(undefined, obj.value) 83 | : PostInvoke(obj.reason || new Error('Unknown lambda error.')); 84 | }); 85 | } catch (err) { 86 | _.noop(); 87 | } 88 | } 89 | } 90 | 91 | function createReader(kwargs) { 92 | debug(`Creating reader with args: ${JSON.stringify(kwargs)}`); 93 | let readerIndex = -1; 94 | return pForever(previousVal => { 95 | handleLambdaCallback(kwargs, previousVal); 96 | readerIndex++; 97 | return readerIndex < kwargs.NumberOfRuns 98 | ? receiveMessages(kwargs) 99 | : pForever.end; 100 | }, []); 101 | } 102 | 103 | function setupServices() { 104 | debug('Setting up AWS services'); 105 | sqs = new AWS.SQS(); 106 | lambda = new AWS.Lambda(); 107 | } 108 | 109 | module.exports = async function run(mapping = []) { 110 | debug(`Initializing with mapping ${JSON.stringify(mapping)}`); 111 | try { 112 | const mappingIsValid = _.chain(mapping) 113 | .map((obj = {}) => { 114 | return _.every([obj.functionName, obj.queueUrl]); 115 | }) 116 | .every() 117 | .value(); 118 | if (!_.isArray(mapping) || !mapping.length || !mappingIsValid) { 119 | throw new Error( 120 | `Your sqs/lambda mapping object must be an array of objects like {functionName: foo, queueUrl: bar}, got ${JSON.stringify( 121 | mapping 122 | )}` 123 | ); 124 | } 125 | // we use this really only for mocking/testing purposes 126 | setupServices(); 127 | const readers = mapping.map(obj => { 128 | // capitalize obj keys for ease of use later 129 | const msgArgs = _.chain(obj) 130 | .mapKeys((val, key) => _.camelCase(key)) 131 | .defaults({ 132 | maxNumberOfMessages: 5, 133 | waitTimeSeconds: 5, 134 | messageFormatter: a => a, 135 | numberOfRuns: Infinity, 136 | deleteMessage: false, 137 | postInvoke: _.noop 138 | }) 139 | .mapKeys((val, key) => _.upperFirst(key)) 140 | .value(); 141 | return createReader(msgArgs); 142 | }); 143 | await Promise.all(readers); 144 | } catch (err) { 145 | throw err; 146 | } 147 | }; 148 | -------------------------------------------------------------------------------- /src/index.test.js: -------------------------------------------------------------------------------- 1 | import _ from 'lodash'; 2 | import delay from 'delay'; 3 | import lib from './index'; 4 | import AWS from 'aws-sdk-mock'; 5 | 6 | const defaultMessages = [ 7 | { 8 | ReceiptHandle: '1', 9 | QueueUrl: 'test-1', 10 | Body: 'A wonderful test body' 11 | }, 12 | { 13 | ReceiptHandle: '2', 14 | QueueUrl: 'test-1', 15 | Body: 'A truly great test body' 16 | }, 17 | { 18 | ReceiptHandle: '3', 19 | QueueUrl: 'test-2', 20 | Body: 'A spectacular test body' 21 | }, 22 | { 23 | ReceiptHandle: '4', 24 | QueueUrl: 'test-2', 25 | Body: 'An awesome test body' 26 | } 27 | ]; 28 | 29 | let messages = defaultMessages; 30 | let lambdaInvocations = []; 31 | 32 | function resetMessages() { 33 | messages = [].concat(defaultMessages); 34 | } 35 | 36 | AWS.mock('Lambda', 'invoke', (kwargs, cb) => { 37 | if (kwargs.FunctionName === 'badFunction') { 38 | return cb(new Error('That is a bad function yo.')); 39 | } 40 | lambdaInvocations.push(kwargs); 41 | return cb(null, kwargs); 42 | }); 43 | 44 | AWS.mock('SQS', 'receiveMessage', (kwargs, cb) => { 45 | return cb(null, { 46 | Messages: _.filter(messages, m => m.QueueUrl === kwargs.QueueUrl) 47 | }); 48 | }); 49 | 50 | AWS.mock('SQS', 'deleteMessage', (kwargs, cb) => { 51 | const newMessages = _.reject(messages, m => { 52 | const keys = ['ReceiptHandle', 'QueueUrl']; 53 | return _.isEqual(_.pick(m, keys), _.pick(kwargs, keys)); 54 | }); 55 | messages = newMessages; 56 | return cb(null, true); 57 | }); 58 | 59 | test('Throws error when setup with no args', async () => { 60 | expect.assertions(2); 61 | let targetErr = undefined; 62 | try { 63 | await lib(); 64 | } catch (err) { 65 | targetErr = err; 66 | } 67 | expect(targetErr).toBeInstanceOf(Error); 68 | expect(targetErr.message).toMatch(/must be an array of objects/); 69 | }); 70 | 71 | test('Throws error when setup with wrong args', async () => { 72 | expect.assertions(2); 73 | let targetErr = undefined; 74 | try { 75 | await lib([ 76 | { 77 | queueUrl: 'foo' 78 | } 79 | ]); 80 | } catch (err) { 81 | targetErr = err; 82 | } 83 | expect(targetErr).toBeInstanceOf(Error); 84 | expect(targetErr.message).toMatch(/must be an array of objects/); 85 | }); 86 | 87 | test('Runs successfully with good functions', async () => { 88 | expect.assertions(4); 89 | try { 90 | expect(messages.length).toEqual(4); 91 | expect(lambdaInvocations.length).toEqual(0); 92 | await lib([ 93 | { 94 | queueUrl: 'test-1', 95 | functionName: 'bar', 96 | numberOfRuns: 1 97 | }, 98 | { 99 | queueUrl: 'test-2', 100 | functionName: 'boop', 101 | numberOfRuns: 2 102 | } 103 | ]); 104 | await delay(10); 105 | // 2 messages * 3 runs total 106 | expect(lambdaInvocations.length).toBe(6); 107 | expect(lambdaInvocations[0].FunctionName).toEqual('bar'); 108 | } catch (err) { 109 | throw err; 110 | } 111 | }); 112 | 113 | test('Runs successfully when using DeleteMessage', async () => { 114 | expect.assertions(5); 115 | try { 116 | lambdaInvocations = []; 117 | resetMessages(); 118 | expect(messages.length).toEqual(4); 119 | expect(lambdaInvocations.length).toEqual(0); 120 | await lib([ 121 | { 122 | queueUrl: 'test-2', 123 | functionName: 'boop', 124 | numberOfRuns: 1, 125 | deleteMessage: true 126 | } 127 | ]); 128 | await delay(10); 129 | // 2 messages * 3 runs total 130 | expect(lambdaInvocations.length).toBe(2); 131 | expect(lambdaInvocations[0].FunctionName).toEqual('boop'); 132 | expect(messages.length).toEqual(2); 133 | } catch (err) { 134 | throw err; 135 | } 136 | }); 137 | 138 | test('Runs successfully when using MessageFormatter', async () => { 139 | expect.assertions(9); 140 | try { 141 | lambdaInvocations = []; 142 | resetMessages(); 143 | expect(messages.length).toEqual(4); 144 | expect(lambdaInvocations.length).toEqual(0); 145 | await lib([ 146 | { 147 | queueUrl: 'test-1', 148 | functionName: 'boop', 149 | numberOfRuns: 1 150 | }, 151 | { 152 | queueUrl: 'test-2', 153 | functionName: 'boop', 154 | numberOfRuns: 1, 155 | messageFormatter: obj => { 156 | return _.assign({}, obj, { 157 | Body: 'dingDong' 158 | }); 159 | } 160 | } 161 | ]); 162 | await delay(10); 163 | // 2 messages * 3 runs total 164 | expect(lambdaInvocations.length).toBe(4); 165 | expect(lambdaInvocations[0]).toBeInstanceOf(Object); 166 | expect(messages.length).toEqual(4); 167 | 168 | expect(typeof lambdaInvocations[0].Payload).toEqual('string'); 169 | const obj = JSON.parse(lambdaInvocations[0].Payload); 170 | expect(obj.Body).toEqual('A wonderful test body'); 171 | 172 | expect(typeof lambdaInvocations[3].Payload).toEqual('string'); 173 | const obj2 = JSON.parse(lambdaInvocations[3].Payload); 174 | expect(obj2.Body).toEqual('dingDong'); 175 | } catch (err) { 176 | throw err; 177 | } 178 | }); 179 | 180 | test('Does not halt with bad functions', async () => { 181 | resetMessages(); 182 | expect.assertions(2); 183 | let targetErr = undefined; 184 | try { 185 | lambdaInvocations = []; 186 | await lib([ 187 | { 188 | queueUrl: 'test-1', 189 | functionName: 'badFunction', 190 | numberOfRuns: 2 191 | } 192 | ]); 193 | await delay(10); 194 | } catch (err) { 195 | targetErr = err; 196 | } 197 | expect(lambdaInvocations.length).toBe(0); 198 | expect(targetErr).toBe(undefined); 199 | }); 200 | 201 | test('Uses postInvoke function correctly', async () => { 202 | resetMessages(); 203 | lambdaInvocations = []; 204 | const settled = []; 205 | const postInvoke = (err, val) => settled.push({ err, val }); 206 | await lib([ 207 | { 208 | queueUrl: 'test-1', 209 | functionName: 'badFunction', 210 | numberOfRuns: 1, 211 | postInvoke 212 | }, 213 | { 214 | queueUrl: 'test-1', 215 | functionName: 'boop', 216 | numberOfRuns: 1, 217 | postInvoke 218 | } 219 | ]); 220 | await delay(10); 221 | expect(settled.length).toBe(4); 222 | expect(_.filter(settled, obj => obj.err).length).toBe(2); 223 | expect(_.filter(settled, obj => obj.val).length).toBe(2); 224 | expect(_.find(settled, obj => obj.val).val.FunctionName).toBe('boop'); 225 | expect(_.find(settled, obj => obj.err).err.message.match(/bad function yo/)); 226 | }); 227 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | "parser": "babel-eslint", 3 | "extends": [ 4 | "eslint:recommended", 5 | ], 6 | "plugins": [ 7 | "jest", 8 | "prettier" 9 | ], 10 | "env": { 11 | "browser": true, 12 | "node": true, 13 | "es6": true, 14 | "jest/globals": true 15 | }, 16 | "ecmaFeatures": { 17 | "arrowFunctions": true, 18 | "blockBindings": true, 19 | "classes": true, 20 | "defaultParams": true, 21 | "destructuring": true, 22 | "forOf": true, 23 | "generators": false, 24 | "modules": true, 25 | "objectLiteralComputedProperties": true, 26 | "objectLiteralDuplicateProperties": false, 27 | "objectLiteralShorthandMethods": true, 28 | "objectLiteralShorthandProperties": true, 29 | "restParams": true, 30 | "spread": true, 31 | "superInFunctions": true, 32 | "templateStrings": true, 33 | "jsx": true 34 | }, 35 | "rules": { 36 | /** 37 | * Strict mode 38 | */ 39 | // babel inserts "use strict"; for us 40 | // http://eslint.org/docs/rules/strict 41 | "prettier/prettier": ["error", { 42 | "singleQuote": true 43 | }], 44 | "strict": [2, "never"], 45 | "no-var": 2, // http://eslint.org/docs/rules/no-var 46 | "no-shadow": 2, // http://eslint.org/docs/rules/no-shadow 47 | "no-shadow-restricted-names": 2, // http://eslint.org/docs/rules/no-shadow-restricted-names 48 | "no-unused-vars": [2, { // http://eslint.org/docs/rules/no-unused-vars 49 | "vars": "local", 50 | "args": "after-used", 51 | "varsIgnorePattern": "_" 52 | }], 53 | "no-use-before-define": 2, // http://eslint.org/docs/rules/no-use-before-define 54 | "comma-dangle": [2, "never"], // http://eslint.org/docs/rules/comma-dangle 55 | "no-alert": 2, // http://eslint.org/docs/rules/no-alert 56 | "no-console": 0, // http://eslint.org/docs/rules/no-console 57 | "block-scoped-var": 2, // http://eslint.org/docs/rules/block-scoped-var 58 | "consistent-return": 2, // http://eslint.org/docs/rules/consistent-return 59 | "default-case": 2, // http://eslint.org/docs/rules/default-case 60 | "guard-for-in": 2, // http://eslint.org/docs/rules/guard-for-in 61 | "no-caller": 2, // http://eslint.org/docs/rules/no-caller 62 | "no-else-return": 2, // http://eslint.org/docs/rules/no-else-return 63 | "no-eq-null": 2, // http://eslint.org/docs/rules/no-eq-null 64 | "no-eval": 2, // http://eslint.org/docs/rules/no-eval 65 | "no-extend-native": 2, // http://eslint.org/docs/rules/no-extend-native 66 | "no-extra-bind": 2, // http://eslint.org/docs/rules/no-extra-bind 67 | "no-floating-decimal": 2, // http://eslint.org/docs/rules/no-floating-decimal 68 | "no-implied-eval": 2, // http://eslint.org/docs/rules/no-implied-eval 69 | "no-lone-blocks": 2, // http://eslint.org/docs/rules/no-lone-blocks 70 | "no-loop-func": 2, // http://eslint.org/docs/rules/no-loop-func 71 | "no-multi-str": 2, // http://eslint.org/docs/rules/no-multi-str 72 | "no-global-assign": 2, // http://eslint.org/docs/rules/no-native-reassign 73 | "no-new": 2, // http://eslint.org/docs/rules/no-new 74 | "no-new-func": 2, // http://eslint.org/docs/rules/no-new-func 75 | "no-new-wrappers": 2, // http://eslint.org/docs/rules/no-new-wrappers 76 | "no-octal-escape": 2, // http://eslint.org/docs/rules/no-octal-escape 77 | "no-param-reassign": 2, // http://eslint.org/docs/rules/no-param-reassign 78 | "no-proto": 2, // http://eslint.org/docs/rules/no-proto 79 | "no-return-assign": 2, // http://eslint.org/docs/rules/no-return-assign 80 | "no-script-url": 2, // http://eslint.org/docs/rules/no-script-url 81 | "no-self-compare": 2, // http://eslint.org/docs/rules/no-self-compare 82 | "no-sequences": 2, // http://eslint.org/docs/rules/no-sequences 83 | "no-throw-literal": 2, // http://eslint.org/docs/rules/no-throw-literal 84 | "no-with": 2, // http://eslint.org/docs/rules/no-with 85 | "radix": 2, // http://eslint.org/docs/rules/radix 86 | "vars-on-top": 2, // http://eslint.org/docs/rules/vars-on-top 87 | "wrap-iife": [2, "any"], // http://eslint.org/docs/rules/wrap-iife 88 | "yoda": 2, // http://eslint.org/docs/rules/yoda 89 | 90 | /** 91 | * Style 92 | */ 93 | "indent": [2, 2], // http://eslint.org/docs/rules/ 94 | "brace-style": [2, // http://eslint.org/docs/rules/brace-style 95 | "1tbs", { 96 | "allowSingleLine": false 97 | }], 98 | "quotes": [ 99 | 2, "single", "avoid-escape" // http://eslint.org/docs/rules/quotes 100 | ], 101 | "camelcase": [2, { // http://eslint.org/docs/rules/camelcase 102 | "properties": "never" 103 | }], 104 | "comma-spacing": [2, { // http://eslint.org/docs/rules/comma-spacing 105 | "before": false, 106 | "after": true 107 | }], 108 | "comma-style": [2, "last"], // http://eslint.org/docs/rules/comma-style 109 | "func-names": 2, // http://eslint.org/docs/rules/func-names 110 | "key-spacing": [2, { // http://eslint.org/docs/rules/key-spacing 111 | "beforeColon": false, 112 | "afterColon": true 113 | }], 114 | "no-multiple-empty-lines": [2, { // http://eslint.org/docs/rules/no-multiple-empty-lines 115 | "max": 2 116 | }], 117 | "no-nested-ternary": 2, // http://eslint.org/docs/rules/no-nested-ternary 118 | "no-new-object": 2, // http://eslint.org/docs/rules/no-new-object 119 | "func-call-spacing": 2, // http://eslint.org/docs/rules/func-call-spacing 120 | "no-trailing-spaces": 2, // http://eslint.org/docs/rules/no-trailing-spaces 121 | "one-var": [2, "never"], // http://eslint.org/docs/rules/one-var 122 | "padded-blocks": [2, "never"], // http://eslint.org/docs/rules/padded-blocks 123 | "semi": [2, "always"], // http://eslint.org/docs/rules/semi 124 | "semi-spacing": [2, { // http://eslint.org/docs/rules/semi-spacing 125 | "before": false, 126 | "after": true 127 | }], 128 | "keyword-spacing": 2, // http://eslint.org/docs/rules/keyword-spacing 129 | "space-before-function-paren": [2, "never"], // http://eslint.org/docs/rules/space-before-function-paren 130 | "space-infix-ops": 2 // http://eslint.org/docs/rules/space-infix-ops 131 | } 132 | } 133 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | 2 | Apache License 3 | Version 2.0, January 2004 4 | https://www.apache.org/licenses/ 5 | 6 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 7 | 8 | 1. Definitions. 9 | 10 | "License" shall mean the terms and conditions for use, reproduction, 11 | and distribution as defined by Sections 1 through 9 of this document. 12 | 13 | "Licensor" shall mean the copyright owner or entity authorized by 14 | the copyright owner that is granting the License. 15 | 16 | "Legal Entity" shall mean the union of the acting entity and all 17 | other entities that control, are controlled by, or are under common 18 | control with that entity. For the purposes of this definition, 19 | "control" means (i) the power, direct or indirect, to cause the 20 | direction or management of such entity, whether by contract or 21 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 22 | outstanding shares, or (iii) beneficial ownership of such entity. 23 | 24 | "You" (or "Your") shall mean an individual or Legal Entity 25 | exercising permissions granted by this License. 26 | 27 | "Source" form shall mean the preferred form for making modifications, 28 | including but not limited to software source code, documentation 29 | source, and configuration files. 30 | 31 | "Object" form shall mean any form resulting from mechanical 32 | transformation or translation of a Source form, including but 33 | not limited to compiled object code, generated documentation, 34 | and conversions to other media types. 35 | 36 | "Work" shall mean the work of authorship, whether in Source or 37 | Object form, made available under the License, as indicated by a 38 | copyright notice that is included in or attached to the work 39 | (an example is provided in the Appendix below). 40 | 41 | "Derivative Works" shall mean any work, whether in Source or Object 42 | form, that is based on (or derived from) the Work and for which the 43 | editorial revisions, annotations, elaborations, or other modifications 44 | represent, as a whole, an original work of authorship. For the purposes 45 | of this License, Derivative Works shall not include works that remain 46 | separable from, or merely link (or bind by name) to the interfaces of, 47 | the Work and Derivative Works thereof. 48 | 49 | "Contribution" shall mean any work of authorship, including 50 | the original version of the Work and any modifications or additions 51 | to that Work or Derivative Works thereof, that is intentionally 52 | submitted to Licensor for inclusion in the Work by the copyright owner 53 | or by an individual or Legal Entity authorized to submit on behalf of 54 | the copyright owner. For the purposes of this definition, "submitted" 55 | means any form of electronic, verbal, or written communication sent 56 | to the Licensor or its representatives, including but not limited to 57 | communication on electronic mailing lists, source code control systems, 58 | and issue tracking systems that are managed by, or on behalf of, the 59 | Licensor for the purpose of discussing and improving the Work, but 60 | excluding communication that is conspicuously marked or otherwise 61 | designated in writing by the copyright owner as "Not a Contribution." 62 | 63 | "Contributor" shall mean Licensor and any individual or Legal Entity 64 | on behalf of whom a Contribution has been received by Licensor and 65 | subsequently incorporated within the Work. 66 | 67 | 2. Grant of yright License. Subject to the terms and conditions of 68 | this License, each Contributor hereby grants to You a perpetual, 69 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 70 | copyright license to reproduce, prepare Derivative Works of, 71 | publicly display, publicly perform, sublicense, and distribute the 72 | Work and such Derivative Works in Source or Object form. 73 | 74 | 3. Grant of Patent License. Subject to the terms and conditions of 75 | this License, each Contributor hereby grants to You a perpetual, 76 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 77 | (except as stated in this section) patent license to make, have made, 78 | use, offer to sell, sell, import, and otherwise transfer the Work, 79 | where such license applies only to those patent claims licensable 80 | by such Contributor that are necessarily infringed by their 81 | Contribution(s) alone or by combination of their Contribution(s) 82 | with the Work to which such Contribution(s) was submitted. If You 83 | institute patent litigation against any entity (including a 84 | cross-claim or counterclaim in a lawsuit) alleging that the Work 85 | or a Contribution incorporated within the Work constitutes direct 86 | or contributory patent infringement, then any patent licenses 87 | granted to You under this License for that Work shall terminate 88 | as of the date such litigation is filed. 89 | 90 | 4. Redistribution. You may reproduce and distribute copies of the 91 | Work or Derivative Works thereof in any medium, with or without 92 | modifications, and in Source or Object form, provided that You 93 | meet the following conditions: 94 | 95 | (a) You must give any other recipients of the Work or 96 | Derivative Works a copy of this License; and 97 | 98 | (b) You must cause any modified files to carry prominent notices 99 | stating that You changed the files; and 100 | 101 | (c) You must retain, in the Source form of any Derivative Works 102 | that You distribute, all copyright, patent, trademark, and 103 | attribution notices from the Source form of the Work, 104 | excluding those notices that do not pertain to any part of 105 | the Derivative Works; and 106 | 107 | (d) If the Work includes a "NOTICE" text file as part of its 108 | distribution, then any Derivative Works that You distribute must 109 | include a readable copy of the attribution notices contained 110 | within such NOTICE file, excluding those notices that do not 111 | pertain to any part of the Derivative Works, in at least one 112 | of the following places: within a NOTICE text file distributed 113 | as part of the Derivative Works; within the Source form or 114 | documentation, if provided along with the Derivative Works; or, 115 | within a display generated by the Derivative Works, if and 116 | wherever such third-party notices normally appear. The contents 117 | of the NOTICE file are for informational purposes only and 118 | do not modify the License. You may add Your own attribution 119 | notices within Derivative Works that You distribute, alongside 120 | or as an addendum to the NOTICE text from the Work, provided 121 | that such additional attribution notices cannot be construed 122 | as modifying the License. 123 | 124 | You may add Your own copyright statement to Your modifications and 125 | may provide additional or different license terms and conditions 126 | for use, reproduction, or distribution of Your modifications, or 127 | for any such Derivative Works as a whole, provided Your use, 128 | reproduction, and distribution of the Work otherwise complies with 129 | the conditions stated in this License. 130 | 131 | 5. Submission of Contributions. Unless You explicitly state otherwise, 132 | any Contribution intentionally submitted for inclusion in the Work 133 | by You to the Licensor shall be under the terms and conditions of 134 | this License, without any additional terms or conditions. 135 | Notwithstanding the above, nothing herein shall supersede or modify 136 | the terms of any separate license agreement you may have executed 137 | with Licensor regarding such Contributions. 138 | 139 | 6. Trademarks. This License does not grant permission to use the trade 140 | names, trademarks, service marks, or product names of the Licensor, 141 | except as required for reasonable and customary use in describing the 142 | origin of the Work and reproducing the content of the NOTICE file. 143 | 144 | 7. Disclaimer of Warranty. Unless required by applicable law or 145 | agreed to in writing, Licensor provides the Work (and each 146 | Contributor provides its Contributions) on an "AS IS" BASIS, 147 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 148 | implied, including, without limitation, any warranties or conditions 149 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 150 | PARTICULAR PURPOSE. You are solely responsible for determining the 151 | appropriateness of using or redistributing the Work and assume any 152 | risks associated with Your exercise of permissions under this License. 153 | 154 | 8. Limitation of Liability. In no event and under no legal theory, 155 | whether in tort (including negligence), contract, or otherwise, 156 | unless required by applicable law (such as deliberate and grossly 157 | negligent acts) or agreed to in writing, shall any Contributor be 158 | liable to You for damages, including any direct, indirect, special, 159 | incidental, or consequential damages of any character arising as a 160 | result of this License or out of the use or inability to use the 161 | Work (including but not limited to damages for loss of goodwill, 162 | work stoppage, computer failure or malfunction, or any and all 163 | other commercial damages or losses), even if such Contributor 164 | has been advised of the possibility of such damages. 165 | 166 | 9. Accepting Warranty or Additional Liability. While redistributing 167 | the Work or Derivative Works thereof, You may choose to offer, 168 | and charge a fee for, acceptance of support, warranty, indemnity, 169 | or other liability obligations and/or rights consistent with this 170 | License. However, in accepting such obligations, You may act only 171 | on Your own behalf and on Your sole responsibility, not on behalf 172 | of any other Contributor, and only if You agree to indemnify, 173 | defend, and hold each Contributor harmless for any liability 174 | incurred by, or claims asserted against, such Contributor by reason 175 | of your accepting any such warranty or additional liability. 176 | 177 | END OF TERMS AND CONDITIONS 178 | 179 | Copyright 2015-2017, Erica Windisch. IOpipe, Inc. 180 | 181 | Licensed under the Apache License, Version 2.0 (the "License"); 182 | you may not use this file except in compliance with the License. 183 | You may obtain a copy of the License at 184 | 185 | https://www.apache.org/licenses/LICENSE-2.0 186 | 187 | Unless required by applicable law or agreed to in writing, software 188 | distributed under the License is distributed on an "AS IS" BASIS, 189 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 190 | See the License for the specific language governing permissions and 191 | limitations under the License. 192 | -------------------------------------------------------------------------------- /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 | abbrev@1: 10 | version "1.1.0" 11 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 12 | 13 | acorn-globals@^3.1.0: 14 | version "3.1.0" 15 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 16 | dependencies: 17 | acorn "^4.0.4" 18 | 19 | acorn-jsx@^3.0.0: 20 | version "3.0.1" 21 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 22 | dependencies: 23 | acorn "^3.0.4" 24 | 25 | acorn@^3.0.4: 26 | version "3.3.0" 27 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 28 | 29 | acorn@^4.0.4: 30 | version "4.0.13" 31 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 32 | 33 | acorn@^5.0.1: 34 | version "5.0.3" 35 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.0.3.tgz#c460df08491463f028ccb82eab3730bf01087b3d" 36 | 37 | ajv-keywords@^1.0.0: 38 | version "1.5.1" 39 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 40 | 41 | ajv@^4.7.0, ajv@^4.9.1: 42 | version "4.11.8" 43 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 44 | dependencies: 45 | co "^4.6.0" 46 | json-stable-stringify "^1.0.1" 47 | 48 | align-text@^0.1.1, align-text@^0.1.3: 49 | version "0.1.4" 50 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 51 | dependencies: 52 | kind-of "^3.0.2" 53 | longest "^1.0.1" 54 | repeat-string "^1.5.2" 55 | 56 | amdefine@>=0.0.4: 57 | version "1.0.1" 58 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 59 | 60 | ansi-escapes@^1.1.0, ansi-escapes@^1.4.0: 61 | version "1.4.0" 62 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 63 | 64 | ansi-regex@^2.0.0: 65 | version "2.1.1" 66 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 67 | 68 | ansi-regex@^3.0.0: 69 | version "3.0.0" 70 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 71 | 72 | ansi-styles@^2.2.1: 73 | version "2.2.1" 74 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 75 | 76 | ansi-styles@^3.0.0: 77 | version "3.1.0" 78 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.1.0.tgz#09c202d5c917ec23188caa5c9cb9179cd9547750" 79 | dependencies: 80 | color-convert "^1.0.0" 81 | 82 | anymatch@^1.3.0: 83 | version "1.3.0" 84 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 85 | dependencies: 86 | arrify "^1.0.0" 87 | micromatch "^2.1.5" 88 | 89 | append-transform@^0.4.0: 90 | version "0.4.0" 91 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 92 | dependencies: 93 | default-require-extensions "^1.0.0" 94 | 95 | aproba@^1.0.3: 96 | version "1.1.2" 97 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.2.tgz#45c6629094de4e96f693ef7eab74ae079c240fc1" 98 | 99 | are-we-there-yet@~1.1.2: 100 | version "1.1.4" 101 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 102 | dependencies: 103 | delegates "^1.0.0" 104 | readable-stream "^2.0.6" 105 | 106 | argparse@^1.0.7: 107 | version "1.0.9" 108 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 109 | dependencies: 110 | sprintf-js "~1.0.2" 111 | 112 | arr-diff@^2.0.0: 113 | version "2.0.0" 114 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 115 | dependencies: 116 | arr-flatten "^1.0.1" 117 | 118 | arr-flatten@^1.0.1: 119 | version "1.0.3" 120 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1" 121 | 122 | array-equal@^1.0.0: 123 | version "1.0.0" 124 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 125 | 126 | array-union@^1.0.1: 127 | version "1.0.2" 128 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 129 | dependencies: 130 | array-uniq "^1.0.1" 131 | 132 | array-uniq@^1.0.1: 133 | version "1.0.3" 134 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 135 | 136 | array-unique@^0.2.1: 137 | version "0.2.1" 138 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 139 | 140 | arrify@^1.0.0, arrify@^1.0.1: 141 | version "1.0.1" 142 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 143 | 144 | asn1@~0.2.3: 145 | version "0.2.3" 146 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 147 | 148 | assert-plus@1.0.0, assert-plus@^1.0.0: 149 | version "1.0.0" 150 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 151 | 152 | assert-plus@^0.2.0: 153 | version "0.2.0" 154 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 155 | 156 | async-each@^1.0.0: 157 | version "1.0.1" 158 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 159 | 160 | async@^1.4.0: 161 | version "1.5.2" 162 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 163 | 164 | async@^2.1.4: 165 | version "2.5.0" 166 | resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d" 167 | dependencies: 168 | lodash "^4.14.0" 169 | 170 | asynckit@^0.4.0: 171 | version "0.4.0" 172 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 173 | 174 | aws-sdk-mock@^1.7.0: 175 | version "1.7.0" 176 | resolved "https://registry.yarnpkg.com/aws-sdk-mock/-/aws-sdk-mock-1.7.0.tgz#7698b3ba82f493f71ff060ae2123cd0806ad8676" 177 | dependencies: 178 | aws-sdk "^2.3.0" 179 | sinon "^1.17.3" 180 | traverse "^0.6.6" 181 | 182 | aws-sdk@^2.3.0, aws-sdk@^2.7.20: 183 | version "2.78.0" 184 | resolved "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.78.0.tgz#549556f2c1c8b516c1e21e9f6304d28d6c8542e8" 185 | dependencies: 186 | buffer "4.9.1" 187 | crypto-browserify "1.0.9" 188 | jmespath "0.15.0" 189 | querystring "0.2.0" 190 | sax "1.2.1" 191 | url "0.10.3" 192 | uuid "3.0.1" 193 | xml2js "0.4.17" 194 | xmlbuilder "4.2.1" 195 | 196 | aws-sign2@~0.6.0: 197 | version "0.6.0" 198 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 199 | 200 | aws4@^1.2.1: 201 | version "1.6.0" 202 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 203 | 204 | babel-cli@^6.18.0: 205 | version "6.24.1" 206 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.24.1.tgz#207cd705bba61489b2ea41b5312341cf6aca2283" 207 | dependencies: 208 | babel-core "^6.24.1" 209 | babel-polyfill "^6.23.0" 210 | babel-register "^6.24.1" 211 | babel-runtime "^6.22.0" 212 | commander "^2.8.1" 213 | convert-source-map "^1.1.0" 214 | fs-readdir-recursive "^1.0.0" 215 | glob "^7.0.0" 216 | lodash "^4.2.0" 217 | output-file-sync "^1.1.0" 218 | path-is-absolute "^1.0.0" 219 | slash "^1.0.0" 220 | source-map "^0.5.0" 221 | v8flags "^2.0.10" 222 | optionalDependencies: 223 | chokidar "^1.6.1" 224 | 225 | babel-code-frame@^6.16.0, babel-code-frame@^6.22.0: 226 | version "6.22.0" 227 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 228 | dependencies: 229 | chalk "^1.1.0" 230 | esutils "^2.0.2" 231 | js-tokens "^3.0.0" 232 | 233 | babel-core@^6.0.0, babel-core@^6.24.1, babel-core@^6.25.0: 234 | version "6.25.0" 235 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.25.0.tgz#7dd42b0463c742e9d5296deb3ec67a9322dad729" 236 | dependencies: 237 | babel-code-frame "^6.22.0" 238 | babel-generator "^6.25.0" 239 | babel-helpers "^6.24.1" 240 | babel-messages "^6.23.0" 241 | babel-register "^6.24.1" 242 | babel-runtime "^6.22.0" 243 | babel-template "^6.25.0" 244 | babel-traverse "^6.25.0" 245 | babel-types "^6.25.0" 246 | babylon "^6.17.2" 247 | convert-source-map "^1.1.0" 248 | debug "^2.1.1" 249 | json5 "^0.5.0" 250 | lodash "^4.2.0" 251 | minimatch "^3.0.2" 252 | path-is-absolute "^1.0.0" 253 | private "^0.1.6" 254 | slash "^1.0.0" 255 | source-map "^0.5.0" 256 | 257 | babel-eslint@^7.2.1: 258 | version "7.2.3" 259 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.2.3.tgz#b2fe2d80126470f5c19442dc757253a897710827" 260 | dependencies: 261 | babel-code-frame "^6.22.0" 262 | babel-traverse "^6.23.1" 263 | babel-types "^6.23.0" 264 | babylon "^6.17.0" 265 | 266 | babel-generator@^6.18.0, babel-generator@^6.25.0: 267 | version "6.25.0" 268 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.25.0.tgz#33a1af70d5f2890aeb465a4a7793c1df6a9ea9fc" 269 | dependencies: 270 | babel-messages "^6.23.0" 271 | babel-runtime "^6.22.0" 272 | babel-types "^6.25.0" 273 | detect-indent "^4.0.0" 274 | jsesc "^1.3.0" 275 | lodash "^4.2.0" 276 | source-map "^0.5.0" 277 | trim-right "^1.0.1" 278 | 279 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 280 | version "6.24.1" 281 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 282 | dependencies: 283 | babel-helper-explode-assignable-expression "^6.24.1" 284 | babel-runtime "^6.22.0" 285 | babel-types "^6.24.1" 286 | 287 | babel-helper-call-delegate@^6.24.1: 288 | version "6.24.1" 289 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 290 | dependencies: 291 | babel-helper-hoist-variables "^6.24.1" 292 | babel-runtime "^6.22.0" 293 | babel-traverse "^6.24.1" 294 | babel-types "^6.24.1" 295 | 296 | babel-helper-define-map@^6.24.1: 297 | version "6.24.1" 298 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz#7a9747f258d8947d32d515f6aa1c7bd02204a080" 299 | dependencies: 300 | babel-helper-function-name "^6.24.1" 301 | babel-runtime "^6.22.0" 302 | babel-types "^6.24.1" 303 | lodash "^4.2.0" 304 | 305 | babel-helper-explode-assignable-expression@^6.24.1: 306 | version "6.24.1" 307 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 308 | dependencies: 309 | babel-runtime "^6.22.0" 310 | babel-traverse "^6.24.1" 311 | babel-types "^6.24.1" 312 | 313 | babel-helper-function-name@^6.24.1: 314 | version "6.24.1" 315 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 316 | dependencies: 317 | babel-helper-get-function-arity "^6.24.1" 318 | babel-runtime "^6.22.0" 319 | babel-template "^6.24.1" 320 | babel-traverse "^6.24.1" 321 | babel-types "^6.24.1" 322 | 323 | babel-helper-get-function-arity@^6.24.1: 324 | version "6.24.1" 325 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 326 | dependencies: 327 | babel-runtime "^6.22.0" 328 | babel-types "^6.24.1" 329 | 330 | babel-helper-hoist-variables@^6.24.1: 331 | version "6.24.1" 332 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 333 | dependencies: 334 | babel-runtime "^6.22.0" 335 | babel-types "^6.24.1" 336 | 337 | babel-helper-optimise-call-expression@^6.24.1: 338 | version "6.24.1" 339 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 340 | dependencies: 341 | babel-runtime "^6.22.0" 342 | babel-types "^6.24.1" 343 | 344 | babel-helper-regex@^6.24.1: 345 | version "6.24.1" 346 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8" 347 | dependencies: 348 | babel-runtime "^6.22.0" 349 | babel-types "^6.24.1" 350 | lodash "^4.2.0" 351 | 352 | babel-helper-remap-async-to-generator@^6.24.1: 353 | version "6.24.1" 354 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 355 | dependencies: 356 | babel-helper-function-name "^6.24.1" 357 | babel-runtime "^6.22.0" 358 | babel-template "^6.24.1" 359 | babel-traverse "^6.24.1" 360 | babel-types "^6.24.1" 361 | 362 | babel-helper-replace-supers@^6.24.1: 363 | version "6.24.1" 364 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 365 | dependencies: 366 | babel-helper-optimise-call-expression "^6.24.1" 367 | babel-messages "^6.23.0" 368 | babel-runtime "^6.22.0" 369 | babel-template "^6.24.1" 370 | babel-traverse "^6.24.1" 371 | babel-types "^6.24.1" 372 | 373 | babel-helpers@^6.24.1: 374 | version "6.24.1" 375 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 376 | dependencies: 377 | babel-runtime "^6.22.0" 378 | babel-template "^6.24.1" 379 | 380 | babel-jest@^19.0.0: 381 | version "19.0.0" 382 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-19.0.0.tgz#59323ced99a3a84d359da219ca881074ffc6ce3f" 383 | dependencies: 384 | babel-core "^6.0.0" 385 | babel-plugin-istanbul "^4.0.0" 386 | babel-preset-jest "^19.0.0" 387 | 388 | babel-messages@^6.23.0: 389 | version "6.23.0" 390 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 391 | dependencies: 392 | babel-runtime "^6.22.0" 393 | 394 | babel-plugin-check-es2015-constants@^6.22.0: 395 | version "6.22.0" 396 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 397 | dependencies: 398 | babel-runtime "^6.22.0" 399 | 400 | babel-plugin-istanbul@^4.0.0: 401 | version "4.1.4" 402 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.4.tgz#18dde84bf3ce329fddf3f4103fae921456d8e587" 403 | dependencies: 404 | find-up "^2.1.0" 405 | istanbul-lib-instrument "^1.7.2" 406 | test-exclude "^4.1.1" 407 | 408 | babel-plugin-jest-hoist@^19.0.0: 409 | version "19.0.0" 410 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-19.0.0.tgz#4ae2a04ea612a6e73651f3fde52c178991304bea" 411 | 412 | babel-plugin-syntax-async-functions@^6.8.0: 413 | version "6.13.0" 414 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 415 | 416 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 417 | version "6.13.0" 418 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 419 | 420 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 421 | version "6.22.0" 422 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 423 | 424 | babel-plugin-transform-async-to-generator@^6.22.0: 425 | version "6.24.1" 426 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 427 | dependencies: 428 | babel-helper-remap-async-to-generator "^6.24.1" 429 | babel-plugin-syntax-async-functions "^6.8.0" 430 | babel-runtime "^6.22.0" 431 | 432 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 433 | version "6.22.0" 434 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 435 | dependencies: 436 | babel-runtime "^6.22.0" 437 | 438 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 439 | version "6.22.0" 440 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 441 | dependencies: 442 | babel-runtime "^6.22.0" 443 | 444 | babel-plugin-transform-es2015-block-scoping@^6.23.0: 445 | version "6.24.1" 446 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz#76c295dc3a4741b1665adfd3167215dcff32a576" 447 | dependencies: 448 | babel-runtime "^6.22.0" 449 | babel-template "^6.24.1" 450 | babel-traverse "^6.24.1" 451 | babel-types "^6.24.1" 452 | lodash "^4.2.0" 453 | 454 | babel-plugin-transform-es2015-classes@^6.23.0: 455 | version "6.24.1" 456 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 457 | dependencies: 458 | babel-helper-define-map "^6.24.1" 459 | babel-helper-function-name "^6.24.1" 460 | babel-helper-optimise-call-expression "^6.24.1" 461 | babel-helper-replace-supers "^6.24.1" 462 | babel-messages "^6.23.0" 463 | babel-runtime "^6.22.0" 464 | babel-template "^6.24.1" 465 | babel-traverse "^6.24.1" 466 | babel-types "^6.24.1" 467 | 468 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 469 | version "6.24.1" 470 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 471 | dependencies: 472 | babel-runtime "^6.22.0" 473 | babel-template "^6.24.1" 474 | 475 | babel-plugin-transform-es2015-destructuring@^6.23.0: 476 | version "6.23.0" 477 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 478 | dependencies: 479 | babel-runtime "^6.22.0" 480 | 481 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 482 | version "6.24.1" 483 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 484 | dependencies: 485 | babel-runtime "^6.22.0" 486 | babel-types "^6.24.1" 487 | 488 | babel-plugin-transform-es2015-for-of@^6.23.0: 489 | version "6.23.0" 490 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 491 | dependencies: 492 | babel-runtime "^6.22.0" 493 | 494 | babel-plugin-transform-es2015-function-name@^6.22.0: 495 | version "6.24.1" 496 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 497 | dependencies: 498 | babel-helper-function-name "^6.24.1" 499 | babel-runtime "^6.22.0" 500 | babel-types "^6.24.1" 501 | 502 | babel-plugin-transform-es2015-literals@^6.22.0: 503 | version "6.22.0" 504 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 505 | dependencies: 506 | babel-runtime "^6.22.0" 507 | 508 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 509 | version "6.24.1" 510 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 511 | dependencies: 512 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 513 | babel-runtime "^6.22.0" 514 | babel-template "^6.24.1" 515 | 516 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 517 | version "6.24.1" 518 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" 519 | dependencies: 520 | babel-plugin-transform-strict-mode "^6.24.1" 521 | babel-runtime "^6.22.0" 522 | babel-template "^6.24.1" 523 | babel-types "^6.24.1" 524 | 525 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0: 526 | version "6.24.1" 527 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 528 | dependencies: 529 | babel-helper-hoist-variables "^6.24.1" 530 | babel-runtime "^6.22.0" 531 | babel-template "^6.24.1" 532 | 533 | babel-plugin-transform-es2015-modules-umd@^6.23.0: 534 | version "6.24.1" 535 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 536 | dependencies: 537 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 538 | babel-runtime "^6.22.0" 539 | babel-template "^6.24.1" 540 | 541 | babel-plugin-transform-es2015-object-super@^6.22.0: 542 | version "6.24.1" 543 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 544 | dependencies: 545 | babel-helper-replace-supers "^6.24.1" 546 | babel-runtime "^6.22.0" 547 | 548 | babel-plugin-transform-es2015-parameters@^6.23.0: 549 | version "6.24.1" 550 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 551 | dependencies: 552 | babel-helper-call-delegate "^6.24.1" 553 | babel-helper-get-function-arity "^6.24.1" 554 | babel-runtime "^6.22.0" 555 | babel-template "^6.24.1" 556 | babel-traverse "^6.24.1" 557 | babel-types "^6.24.1" 558 | 559 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 560 | version "6.24.1" 561 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 562 | dependencies: 563 | babel-runtime "^6.22.0" 564 | babel-types "^6.24.1" 565 | 566 | babel-plugin-transform-es2015-spread@^6.22.0: 567 | version "6.22.0" 568 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 569 | dependencies: 570 | babel-runtime "^6.22.0" 571 | 572 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 573 | version "6.24.1" 574 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 575 | dependencies: 576 | babel-helper-regex "^6.24.1" 577 | babel-runtime "^6.22.0" 578 | babel-types "^6.24.1" 579 | 580 | babel-plugin-transform-es2015-template-literals@^6.22.0: 581 | version "6.22.0" 582 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 583 | dependencies: 584 | babel-runtime "^6.22.0" 585 | 586 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 587 | version "6.23.0" 588 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 589 | dependencies: 590 | babel-runtime "^6.22.0" 591 | 592 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 593 | version "6.24.1" 594 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 595 | dependencies: 596 | babel-helper-regex "^6.24.1" 597 | babel-runtime "^6.22.0" 598 | regexpu-core "^2.0.0" 599 | 600 | babel-plugin-transform-exponentiation-operator@^6.22.0: 601 | version "6.24.1" 602 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 603 | dependencies: 604 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 605 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 606 | babel-runtime "^6.22.0" 607 | 608 | babel-plugin-transform-regenerator@^6.22.0: 609 | version "6.24.1" 610 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz#b8da305ad43c3c99b4848e4fe4037b770d23c418" 611 | dependencies: 612 | regenerator-transform "0.9.11" 613 | 614 | babel-plugin-transform-runtime@^6.23.0: 615 | version "6.23.0" 616 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.23.0.tgz#88490d446502ea9b8e7efb0fe09ec4d99479b1ee" 617 | dependencies: 618 | babel-runtime "^6.22.0" 619 | 620 | babel-plugin-transform-strict-mode@^6.24.1: 621 | version "6.24.1" 622 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 623 | dependencies: 624 | babel-runtime "^6.22.0" 625 | babel-types "^6.24.1" 626 | 627 | babel-polyfill@^6.23.0: 628 | version "6.23.0" 629 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d" 630 | dependencies: 631 | babel-runtime "^6.22.0" 632 | core-js "^2.4.0" 633 | regenerator-runtime "^0.10.0" 634 | 635 | babel-preset-env@^1.5.2: 636 | version "1.5.2" 637 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.5.2.tgz#cd4ae90a6e94b709f97374b33e5f8b983556adef" 638 | dependencies: 639 | babel-plugin-check-es2015-constants "^6.22.0" 640 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 641 | babel-plugin-transform-async-to-generator "^6.22.0" 642 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 643 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 644 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 645 | babel-plugin-transform-es2015-classes "^6.23.0" 646 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 647 | babel-plugin-transform-es2015-destructuring "^6.23.0" 648 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 649 | babel-plugin-transform-es2015-for-of "^6.23.0" 650 | babel-plugin-transform-es2015-function-name "^6.22.0" 651 | babel-plugin-transform-es2015-literals "^6.22.0" 652 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 653 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 654 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 655 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 656 | babel-plugin-transform-es2015-object-super "^6.22.0" 657 | babel-plugin-transform-es2015-parameters "^6.23.0" 658 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 659 | babel-plugin-transform-es2015-spread "^6.22.0" 660 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 661 | babel-plugin-transform-es2015-template-literals "^6.22.0" 662 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 663 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 664 | babel-plugin-transform-exponentiation-operator "^6.22.0" 665 | babel-plugin-transform-regenerator "^6.22.0" 666 | browserslist "^2.1.2" 667 | invariant "^2.2.2" 668 | semver "^5.3.0" 669 | 670 | babel-preset-jest@^19.0.0: 671 | version "19.0.0" 672 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-19.0.0.tgz#22d67201d02324a195811288eb38294bb3cac396" 673 | dependencies: 674 | babel-plugin-jest-hoist "^19.0.0" 675 | 676 | babel-register@^6.24.1: 677 | version "6.24.1" 678 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 679 | dependencies: 680 | babel-core "^6.24.1" 681 | babel-runtime "^6.22.0" 682 | core-js "^2.4.0" 683 | home-or-tmp "^2.0.0" 684 | lodash "^4.2.0" 685 | mkdirp "^0.5.1" 686 | source-map-support "^0.4.2" 687 | 688 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.23.0: 689 | version "6.23.0" 690 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 691 | dependencies: 692 | core-js "^2.4.0" 693 | regenerator-runtime "^0.10.0" 694 | 695 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.25.0: 696 | version "6.25.0" 697 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.25.0.tgz#665241166b7c2aa4c619d71e192969552b10c071" 698 | dependencies: 699 | babel-runtime "^6.22.0" 700 | babel-traverse "^6.25.0" 701 | babel-types "^6.25.0" 702 | babylon "^6.17.2" 703 | lodash "^4.2.0" 704 | 705 | babel-traverse@^6.18.0, babel-traverse@^6.23.1, babel-traverse@^6.24.1, babel-traverse@^6.25.0: 706 | version "6.25.0" 707 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.25.0.tgz#2257497e2fcd19b89edc13c4c91381f9512496f1" 708 | dependencies: 709 | babel-code-frame "^6.22.0" 710 | babel-messages "^6.23.0" 711 | babel-runtime "^6.22.0" 712 | babel-types "^6.25.0" 713 | babylon "^6.17.2" 714 | debug "^2.2.0" 715 | globals "^9.0.0" 716 | invariant "^2.2.0" 717 | lodash "^4.2.0" 718 | 719 | babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.23.0, babel-types@^6.24.1, babel-types@^6.25.0: 720 | version "6.25.0" 721 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.25.0.tgz#70afb248d5660e5d18f811d91c8303b54134a18e" 722 | dependencies: 723 | babel-runtime "^6.22.0" 724 | esutils "^2.0.2" 725 | lodash "^4.2.0" 726 | to-fast-properties "^1.0.1" 727 | 728 | babylon@^6.17.0, babylon@^6.17.2, babylon@^6.17.4: 729 | version "6.17.4" 730 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.4.tgz#3e8b7402b88d22c3423e137a1577883b15ff869a" 731 | 732 | balanced-match@^1.0.0: 733 | version "1.0.0" 734 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 735 | 736 | base64-js@^1.0.2: 737 | version "1.2.1" 738 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.1.tgz#a91947da1f4a516ea38e5b4ec0ec3773675e0886" 739 | 740 | bcrypt-pbkdf@^1.0.0: 741 | version "1.0.1" 742 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 743 | dependencies: 744 | tweetnacl "^0.14.3" 745 | 746 | binary-extensions@^1.0.0: 747 | version "1.8.0" 748 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 749 | 750 | block-stream@*: 751 | version "0.0.9" 752 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 753 | dependencies: 754 | inherits "~2.0.0" 755 | 756 | boom@2.x.x: 757 | version "2.10.1" 758 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 759 | dependencies: 760 | hoek "2.x.x" 761 | 762 | brace-expansion@^1.1.7: 763 | version "1.1.8" 764 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 765 | dependencies: 766 | balanced-match "^1.0.0" 767 | concat-map "0.0.1" 768 | 769 | braces@^1.8.2: 770 | version "1.8.5" 771 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 772 | dependencies: 773 | expand-range "^1.8.1" 774 | preserve "^0.2.0" 775 | repeat-element "^1.1.2" 776 | 777 | browser-resolve@^1.11.2: 778 | version "1.11.2" 779 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 780 | dependencies: 781 | resolve "1.1.7" 782 | 783 | browserslist@^2.1.2: 784 | version "2.1.5" 785 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.1.5.tgz#e882550df3d1cd6d481c1a3e0038f2baf13a4711" 786 | dependencies: 787 | caniuse-lite "^1.0.30000684" 788 | electron-to-chromium "^1.3.14" 789 | 790 | bser@1.0.2: 791 | version "1.0.2" 792 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" 793 | dependencies: 794 | node-int64 "^0.4.0" 795 | 796 | bser@^2.0.0: 797 | version "2.0.0" 798 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 799 | dependencies: 800 | node-int64 "^0.4.0" 801 | 802 | buffer@4.9.1: 803 | version "4.9.1" 804 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 805 | dependencies: 806 | base64-js "^1.0.2" 807 | ieee754 "^1.1.4" 808 | isarray "^1.0.0" 809 | 810 | builtin-modules@^1.0.0: 811 | version "1.1.1" 812 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 813 | 814 | caller-path@^0.1.0: 815 | version "0.1.0" 816 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 817 | dependencies: 818 | callsites "^0.2.0" 819 | 820 | callsites@^0.2.0: 821 | version "0.2.0" 822 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 823 | 824 | callsites@^2.0.0: 825 | version "2.0.0" 826 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 827 | 828 | camelcase@^1.0.2: 829 | version "1.2.1" 830 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 831 | 832 | camelcase@^3.0.0: 833 | version "3.0.0" 834 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 835 | 836 | caniuse-lite@^1.0.30000684: 837 | version "1.0.30000696" 838 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000696.tgz#30f2695d2a01a0dfd779a26ab83f4d134b3da5cc" 839 | 840 | caseless@~0.12.0: 841 | version "0.12.0" 842 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 843 | 844 | center-align@^0.1.1: 845 | version "0.1.3" 846 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 847 | dependencies: 848 | align-text "^0.1.3" 849 | lazy-cache "^1.0.3" 850 | 851 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 852 | version "1.1.3" 853 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 854 | dependencies: 855 | ansi-styles "^2.2.1" 856 | escape-string-regexp "^1.0.2" 857 | has-ansi "^2.0.0" 858 | strip-ansi "^3.0.0" 859 | supports-color "^2.0.0" 860 | 861 | chokidar@^1.6.1: 862 | version "1.7.0" 863 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 864 | dependencies: 865 | anymatch "^1.3.0" 866 | async-each "^1.0.0" 867 | glob-parent "^2.0.0" 868 | inherits "^2.0.1" 869 | is-binary-path "^1.0.0" 870 | is-glob "^2.0.0" 871 | path-is-absolute "^1.0.0" 872 | readdirp "^2.0.0" 873 | optionalDependencies: 874 | fsevents "^1.0.0" 875 | 876 | ci-info@^1.0.0: 877 | version "1.0.0" 878 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 879 | 880 | circular-json@^0.3.1: 881 | version "0.3.1" 882 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 883 | 884 | cli-cursor@^1.0.1: 885 | version "1.0.2" 886 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 887 | dependencies: 888 | restore-cursor "^1.0.1" 889 | 890 | cli-width@^2.0.0: 891 | version "2.1.0" 892 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 893 | 894 | cliui@^2.1.0: 895 | version "2.1.0" 896 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 897 | dependencies: 898 | center-align "^0.1.1" 899 | right-align "^0.1.1" 900 | wordwrap "0.0.2" 901 | 902 | cliui@^3.2.0: 903 | version "3.2.0" 904 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 905 | dependencies: 906 | string-width "^1.0.1" 907 | strip-ansi "^3.0.1" 908 | wrap-ansi "^2.0.0" 909 | 910 | co@^4.6.0: 911 | version "4.6.0" 912 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 913 | 914 | code-point-at@^1.0.0: 915 | version "1.1.0" 916 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 917 | 918 | color-convert@^1.0.0: 919 | version "1.9.0" 920 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 921 | dependencies: 922 | color-name "^1.1.1" 923 | 924 | color-name@^1.1.1: 925 | version "1.1.2" 926 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.2.tgz#5c8ab72b64bd2215d617ae9559ebb148475cf98d" 927 | 928 | combined-stream@^1.0.5, combined-stream@~1.0.5: 929 | version "1.0.5" 930 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 931 | dependencies: 932 | delayed-stream "~1.0.0" 933 | 934 | commander@^2.8.1: 935 | version "2.10.0" 936 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.10.0.tgz#e1f5d3245de246d1a5ca04702fa1ad1bd7e405fe" 937 | dependencies: 938 | graceful-readlink ">= 1.0.0" 939 | 940 | concat-map@0.0.1: 941 | version "0.0.1" 942 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 943 | 944 | concat-stream@^1.4.7, concat-stream@^1.5.2: 945 | version "1.6.0" 946 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 947 | dependencies: 948 | inherits "^2.0.3" 949 | readable-stream "^2.2.2" 950 | typedarray "^0.0.6" 951 | 952 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 953 | version "1.1.0" 954 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 955 | 956 | content-type-parser@^1.0.1: 957 | version "1.0.1" 958 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 959 | 960 | convert-source-map@^1.1.0: 961 | version "1.5.0" 962 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 963 | 964 | core-js@^2.4.0: 965 | version "2.4.1" 966 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 967 | 968 | core-util-is@~1.0.0: 969 | version "1.0.2" 970 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 971 | 972 | cross-spawn@^5.0.1: 973 | version "5.1.0" 974 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 975 | dependencies: 976 | lru-cache "^4.0.1" 977 | shebang-command "^1.2.0" 978 | which "^1.2.9" 979 | 980 | cryptiles@2.x.x: 981 | version "2.0.5" 982 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 983 | dependencies: 984 | boom "2.x.x" 985 | 986 | crypto-browserify@1.0.9: 987 | version "1.0.9" 988 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-1.0.9.tgz#cc5449685dfb85eb11c9828acc7cb87ab5bbfcc0" 989 | 990 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 991 | version "0.3.2" 992 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 993 | 994 | "cssstyle@>= 0.2.37 < 0.3.0": 995 | version "0.2.37" 996 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 997 | dependencies: 998 | cssom "0.3.x" 999 | 1000 | d@1: 1001 | version "1.0.0" 1002 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 1003 | dependencies: 1004 | es5-ext "^0.10.9" 1005 | 1006 | dashdash@^1.12.0: 1007 | version "1.14.1" 1008 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1009 | dependencies: 1010 | assert-plus "^1.0.0" 1011 | 1012 | debug@^2.1.1, debug@^2.2.0, debug@^2.6.3, debug@^2.6.8: 1013 | version "2.6.8" 1014 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 1015 | dependencies: 1016 | ms "2.0.0" 1017 | 1018 | decamelize@^1.0.0, decamelize@^1.1.1: 1019 | version "1.2.0" 1020 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1021 | 1022 | deep-extend@~0.4.0: 1023 | version "0.4.2" 1024 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1025 | 1026 | deep-is@~0.1.3: 1027 | version "0.1.3" 1028 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1029 | 1030 | default-require-extensions@^1.0.0: 1031 | version "1.0.0" 1032 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 1033 | dependencies: 1034 | strip-bom "^2.0.0" 1035 | 1036 | del@^2.0.2: 1037 | version "2.2.2" 1038 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1039 | dependencies: 1040 | globby "^5.0.0" 1041 | is-path-cwd "^1.0.0" 1042 | is-path-in-cwd "^1.0.0" 1043 | object-assign "^4.0.1" 1044 | pify "^2.0.0" 1045 | pinkie-promise "^2.0.0" 1046 | rimraf "^2.2.8" 1047 | 1048 | delay@^2.0.0: 1049 | version "2.0.0" 1050 | resolved "https://registry.yarnpkg.com/delay/-/delay-2.0.0.tgz#9112eadc03e4ec7e00297337896f273bbd91fae5" 1051 | dependencies: 1052 | p-defer "^1.0.0" 1053 | 1054 | delayed-stream@~1.0.0: 1055 | version "1.0.0" 1056 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1057 | 1058 | delegates@^1.0.0: 1059 | version "1.0.0" 1060 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1061 | 1062 | detect-indent@^4.0.0: 1063 | version "4.0.0" 1064 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1065 | dependencies: 1066 | repeating "^2.0.0" 1067 | 1068 | diff@^3.0.0: 1069 | version "3.2.0" 1070 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 1071 | 1072 | doctrine@^2.0.0: 1073 | version "2.0.0" 1074 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" 1075 | dependencies: 1076 | esutils "^2.0.2" 1077 | isarray "^1.0.0" 1078 | 1079 | ecc-jsbn@~0.1.1: 1080 | version "0.1.1" 1081 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1082 | dependencies: 1083 | jsbn "~0.1.0" 1084 | 1085 | electron-to-chromium@^1.3.14: 1086 | version "1.3.14" 1087 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.14.tgz#64af0f9efd3c3c6acd57d71f83b49ca7ee9c4b43" 1088 | 1089 | "errno@>=0.1.1 <0.2.0-0": 1090 | version "0.1.4" 1091 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 1092 | dependencies: 1093 | prr "~0.0.0" 1094 | 1095 | error-ex@^1.2.0: 1096 | version "1.3.1" 1097 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1098 | dependencies: 1099 | is-arrayish "^0.2.1" 1100 | 1101 | es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14: 1102 | version "0.10.23" 1103 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.23.tgz#7578b51be974207a5487821b56538c224e4e7b38" 1104 | dependencies: 1105 | es6-iterator "2" 1106 | es6-symbol "~3.1" 1107 | 1108 | es6-iterator@2, es6-iterator@^2.0.1, es6-iterator@~2.0.1: 1109 | version "2.0.1" 1110 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512" 1111 | dependencies: 1112 | d "1" 1113 | es5-ext "^0.10.14" 1114 | es6-symbol "^3.1" 1115 | 1116 | es6-map@^0.1.3: 1117 | version "0.1.5" 1118 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" 1119 | dependencies: 1120 | d "1" 1121 | es5-ext "~0.10.14" 1122 | es6-iterator "~2.0.1" 1123 | es6-set "~0.1.5" 1124 | es6-symbol "~3.1.1" 1125 | event-emitter "~0.3.5" 1126 | 1127 | es6-set@~0.1.5: 1128 | version "0.1.5" 1129 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" 1130 | dependencies: 1131 | d "1" 1132 | es5-ext "~0.10.14" 1133 | es6-iterator "~2.0.1" 1134 | es6-symbol "3.1.1" 1135 | event-emitter "~0.3.5" 1136 | 1137 | es6-symbol@3.1.1, es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1, es6-symbol@~3.1.1: 1138 | version "3.1.1" 1139 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 1140 | dependencies: 1141 | d "1" 1142 | es5-ext "~0.10.14" 1143 | 1144 | es6-weak-map@^2.0.1: 1145 | version "2.0.2" 1146 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 1147 | dependencies: 1148 | d "1" 1149 | es5-ext "^0.10.14" 1150 | es6-iterator "^2.0.1" 1151 | es6-symbol "^3.1.1" 1152 | 1153 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1154 | version "1.0.5" 1155 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1156 | 1157 | escodegen@^1.6.1: 1158 | version "1.8.1" 1159 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 1160 | dependencies: 1161 | esprima "^2.7.1" 1162 | estraverse "^1.9.1" 1163 | esutils "^2.0.2" 1164 | optionator "^0.8.1" 1165 | optionalDependencies: 1166 | source-map "~0.2.0" 1167 | 1168 | escope@^3.6.0: 1169 | version "3.6.0" 1170 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 1171 | dependencies: 1172 | es6-map "^0.1.3" 1173 | es6-weak-map "^2.0.1" 1174 | esrecurse "^4.1.0" 1175 | estraverse "^4.1.1" 1176 | 1177 | eslint-plugin-jest@^19.0.1: 1178 | version "19.0.1" 1179 | resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-19.0.1.tgz#42a420e90e81aa74e162c16166e43a31b890eece" 1180 | 1181 | eslint-plugin-prettier@^2.1.2: 1182 | version "2.1.2" 1183 | resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-2.1.2.tgz#4b90f4ee7f92bfbe2e926017e1ca40eb628965ea" 1184 | dependencies: 1185 | fast-diff "^1.1.1" 1186 | jest-docblock "^20.0.1" 1187 | 1188 | eslint@^3.19.0: 1189 | version "3.19.0" 1190 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.19.0.tgz#c8fc6201c7f40dd08941b87c085767386a679acc" 1191 | dependencies: 1192 | babel-code-frame "^6.16.0" 1193 | chalk "^1.1.3" 1194 | concat-stream "^1.5.2" 1195 | debug "^2.1.1" 1196 | doctrine "^2.0.0" 1197 | escope "^3.6.0" 1198 | espree "^3.4.0" 1199 | esquery "^1.0.0" 1200 | estraverse "^4.2.0" 1201 | esutils "^2.0.2" 1202 | file-entry-cache "^2.0.0" 1203 | glob "^7.0.3" 1204 | globals "^9.14.0" 1205 | ignore "^3.2.0" 1206 | imurmurhash "^0.1.4" 1207 | inquirer "^0.12.0" 1208 | is-my-json-valid "^2.10.0" 1209 | is-resolvable "^1.0.0" 1210 | js-yaml "^3.5.1" 1211 | json-stable-stringify "^1.0.0" 1212 | levn "^0.3.0" 1213 | lodash "^4.0.0" 1214 | mkdirp "^0.5.0" 1215 | natural-compare "^1.4.0" 1216 | optionator "^0.8.2" 1217 | path-is-inside "^1.0.1" 1218 | pluralize "^1.2.1" 1219 | progress "^1.1.8" 1220 | require-uncached "^1.0.2" 1221 | shelljs "^0.7.5" 1222 | strip-bom "^3.0.0" 1223 | strip-json-comments "~2.0.1" 1224 | table "^3.7.8" 1225 | text-table "~0.2.0" 1226 | user-home "^2.0.0" 1227 | 1228 | espree@^3.4.0: 1229 | version "3.4.3" 1230 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.3.tgz#2910b5ccd49ce893c2ffffaab4fd8b3a31b82374" 1231 | dependencies: 1232 | acorn "^5.0.1" 1233 | acorn-jsx "^3.0.0" 1234 | 1235 | esprima@^2.7.1: 1236 | version "2.7.3" 1237 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1238 | 1239 | esprima@^3.1.1: 1240 | version "3.1.3" 1241 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1242 | 1243 | esquery@^1.0.0: 1244 | version "1.0.0" 1245 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 1246 | dependencies: 1247 | estraverse "^4.0.0" 1248 | 1249 | esrecurse@^4.1.0: 1250 | version "4.2.0" 1251 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" 1252 | dependencies: 1253 | estraverse "^4.1.0" 1254 | object-assign "^4.0.1" 1255 | 1256 | estraverse@^1.9.1: 1257 | version "1.9.3" 1258 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 1259 | 1260 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: 1261 | version "4.2.0" 1262 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1263 | 1264 | esutils@^2.0.2: 1265 | version "2.0.2" 1266 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1267 | 1268 | event-emitter@~0.3.5: 1269 | version "0.3.5" 1270 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 1271 | dependencies: 1272 | d "1" 1273 | es5-ext "~0.10.14" 1274 | 1275 | exec-sh@^0.2.0: 1276 | version "0.2.0" 1277 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" 1278 | dependencies: 1279 | merge "^1.1.3" 1280 | 1281 | exit-hook@^1.0.0: 1282 | version "1.1.1" 1283 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1284 | 1285 | expand-brackets@^0.1.4: 1286 | version "0.1.5" 1287 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1288 | dependencies: 1289 | is-posix-bracket "^0.1.0" 1290 | 1291 | expand-range@^1.8.1: 1292 | version "1.8.2" 1293 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1294 | dependencies: 1295 | fill-range "^2.1.0" 1296 | 1297 | extend@~3.0.0: 1298 | version "3.0.1" 1299 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1300 | 1301 | extglob@^0.3.1: 1302 | version "0.3.2" 1303 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1304 | dependencies: 1305 | is-extglob "^1.0.0" 1306 | 1307 | extsprintf@1.0.2: 1308 | version "1.0.2" 1309 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1310 | 1311 | fast-diff@^1.1.1: 1312 | version "1.1.1" 1313 | resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.1.1.tgz#0aea0e4e605b6a2189f0e936d4b7fbaf1b7cfd9b" 1314 | 1315 | fast-levenshtein@~2.0.4: 1316 | version "2.0.6" 1317 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1318 | 1319 | fb-watchman@^1.8.0: 1320 | version "1.9.2" 1321 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383" 1322 | dependencies: 1323 | bser "1.0.2" 1324 | 1325 | fb-watchman@^2.0.0: 1326 | version "2.0.0" 1327 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 1328 | dependencies: 1329 | bser "^2.0.0" 1330 | 1331 | figures@^1.3.5: 1332 | version "1.7.0" 1333 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1334 | dependencies: 1335 | escape-string-regexp "^1.0.5" 1336 | object-assign "^4.1.0" 1337 | 1338 | file-entry-cache@^2.0.0: 1339 | version "2.0.0" 1340 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1341 | dependencies: 1342 | flat-cache "^1.2.1" 1343 | object-assign "^4.0.1" 1344 | 1345 | filename-regex@^2.0.0: 1346 | version "2.0.1" 1347 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1348 | 1349 | fileset@^2.0.2: 1350 | version "2.0.3" 1351 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 1352 | dependencies: 1353 | glob "^7.0.3" 1354 | minimatch "^3.0.3" 1355 | 1356 | fill-range@^2.1.0: 1357 | version "2.2.3" 1358 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1359 | dependencies: 1360 | is-number "^2.1.0" 1361 | isobject "^2.0.0" 1362 | randomatic "^1.1.3" 1363 | repeat-element "^1.1.2" 1364 | repeat-string "^1.5.2" 1365 | 1366 | find-up@^1.0.0: 1367 | version "1.1.2" 1368 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1369 | dependencies: 1370 | path-exists "^2.0.0" 1371 | pinkie-promise "^2.0.0" 1372 | 1373 | find-up@^2.1.0: 1374 | version "2.1.0" 1375 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1376 | dependencies: 1377 | locate-path "^2.0.0" 1378 | 1379 | flat-cache@^1.2.1: 1380 | version "1.2.2" 1381 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 1382 | dependencies: 1383 | circular-json "^0.3.1" 1384 | del "^2.0.2" 1385 | graceful-fs "^4.1.2" 1386 | write "^0.2.1" 1387 | 1388 | for-in@^1.0.1: 1389 | version "1.0.2" 1390 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1391 | 1392 | for-own@^0.1.4: 1393 | version "0.1.5" 1394 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1395 | dependencies: 1396 | for-in "^1.0.1" 1397 | 1398 | forever-agent@~0.6.1: 1399 | version "0.6.1" 1400 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1401 | 1402 | form-data@~2.1.1: 1403 | version "2.1.4" 1404 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1405 | dependencies: 1406 | asynckit "^0.4.0" 1407 | combined-stream "^1.0.5" 1408 | mime-types "^2.1.12" 1409 | 1410 | formatio@1.1.1: 1411 | version "1.1.1" 1412 | resolved "https://registry.yarnpkg.com/formatio/-/formatio-1.1.1.tgz#5ed3ccd636551097383465d996199100e86161e9" 1413 | dependencies: 1414 | samsam "~1.1" 1415 | 1416 | fs-readdir-recursive@^1.0.0: 1417 | version "1.0.0" 1418 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1419 | 1420 | fs.realpath@^1.0.0: 1421 | version "1.0.0" 1422 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1423 | 1424 | fsevents@^1.0.0: 1425 | version "1.1.2" 1426 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4" 1427 | dependencies: 1428 | nan "^2.3.0" 1429 | node-pre-gyp "^0.6.36" 1430 | 1431 | fstream-ignore@^1.0.5: 1432 | version "1.0.5" 1433 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1434 | dependencies: 1435 | fstream "^1.0.0" 1436 | inherits "2" 1437 | minimatch "^3.0.0" 1438 | 1439 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1440 | version "1.0.11" 1441 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1442 | dependencies: 1443 | graceful-fs "^4.1.2" 1444 | inherits "~2.0.0" 1445 | mkdirp ">=0.5 0" 1446 | rimraf "2" 1447 | 1448 | gauge@~2.7.3: 1449 | version "2.7.4" 1450 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1451 | dependencies: 1452 | aproba "^1.0.3" 1453 | console-control-strings "^1.0.0" 1454 | has-unicode "^2.0.0" 1455 | object-assign "^4.1.0" 1456 | signal-exit "^3.0.0" 1457 | string-width "^1.0.1" 1458 | strip-ansi "^3.0.1" 1459 | wide-align "^1.1.0" 1460 | 1461 | generate-function@^2.0.0: 1462 | version "2.0.0" 1463 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1464 | 1465 | generate-object-property@^1.1.0: 1466 | version "1.2.0" 1467 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1468 | dependencies: 1469 | is-property "^1.0.0" 1470 | 1471 | get-caller-file@^1.0.1: 1472 | version "1.0.2" 1473 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1474 | 1475 | getpass@^0.1.1: 1476 | version "0.1.7" 1477 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1478 | dependencies: 1479 | assert-plus "^1.0.0" 1480 | 1481 | glob-base@^0.3.0: 1482 | version "0.3.0" 1483 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1484 | dependencies: 1485 | glob-parent "^2.0.0" 1486 | is-glob "^2.0.0" 1487 | 1488 | glob-parent@^2.0.0: 1489 | version "2.0.0" 1490 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1491 | dependencies: 1492 | is-glob "^2.0.0" 1493 | 1494 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5: 1495 | version "7.1.2" 1496 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1497 | dependencies: 1498 | fs.realpath "^1.0.0" 1499 | inflight "^1.0.4" 1500 | inherits "2" 1501 | minimatch "^3.0.4" 1502 | once "^1.3.0" 1503 | path-is-absolute "^1.0.0" 1504 | 1505 | globals@^9.0.0, globals@^9.14.0: 1506 | version "9.18.0" 1507 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1508 | 1509 | globby@^5.0.0: 1510 | version "5.0.0" 1511 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1512 | dependencies: 1513 | array-union "^1.0.1" 1514 | arrify "^1.0.0" 1515 | glob "^7.0.3" 1516 | object-assign "^4.0.1" 1517 | pify "^2.0.0" 1518 | pinkie-promise "^2.0.0" 1519 | 1520 | graceful-fs@^4.1.2, graceful-fs@^4.1.4, graceful-fs@^4.1.6: 1521 | version "4.1.11" 1522 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1523 | 1524 | "graceful-readlink@>= 1.0.0": 1525 | version "1.0.1" 1526 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1527 | 1528 | growly@^1.3.0: 1529 | version "1.3.0" 1530 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1531 | 1532 | handlebars@^4.0.3: 1533 | version "4.0.10" 1534 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.10.tgz#3d30c718b09a3d96f23ea4cc1f403c4d3ba9ff4f" 1535 | dependencies: 1536 | async "^1.4.0" 1537 | optimist "^0.6.1" 1538 | source-map "^0.4.4" 1539 | optionalDependencies: 1540 | uglify-js "^2.6" 1541 | 1542 | har-schema@^1.0.5: 1543 | version "1.0.5" 1544 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1545 | 1546 | har-validator@~4.2.1: 1547 | version "4.2.1" 1548 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1549 | dependencies: 1550 | ajv "^4.9.1" 1551 | har-schema "^1.0.5" 1552 | 1553 | has-ansi@^2.0.0: 1554 | version "2.0.0" 1555 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1556 | dependencies: 1557 | ansi-regex "^2.0.0" 1558 | 1559 | has-flag@^1.0.0: 1560 | version "1.0.0" 1561 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1562 | 1563 | has-unicode@^2.0.0: 1564 | version "2.0.1" 1565 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1566 | 1567 | hawk@~3.1.3: 1568 | version "3.1.3" 1569 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1570 | dependencies: 1571 | boom "2.x.x" 1572 | cryptiles "2.x.x" 1573 | hoek "2.x.x" 1574 | sntp "1.x.x" 1575 | 1576 | hoek@2.x.x: 1577 | version "2.16.3" 1578 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1579 | 1580 | home-or-tmp@^2.0.0: 1581 | version "2.0.0" 1582 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1583 | dependencies: 1584 | os-homedir "^1.0.0" 1585 | os-tmpdir "^1.0.1" 1586 | 1587 | hosted-git-info@^2.1.4: 1588 | version "2.5.0" 1589 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 1590 | 1591 | html-encoding-sniffer@^1.0.1: 1592 | version "1.0.1" 1593 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 1594 | dependencies: 1595 | whatwg-encoding "^1.0.1" 1596 | 1597 | http-signature@~1.1.0: 1598 | version "1.1.1" 1599 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1600 | dependencies: 1601 | assert-plus "^0.2.0" 1602 | jsprim "^1.2.2" 1603 | sshpk "^1.7.0" 1604 | 1605 | iconv-lite@0.4.13: 1606 | version "0.4.13" 1607 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 1608 | 1609 | ieee754@^1.1.4: 1610 | version "1.1.8" 1611 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 1612 | 1613 | ignore@^3.2.0: 1614 | version "3.3.3" 1615 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.3.tgz#432352e57accd87ab3110e82d3fea0e47812156d" 1616 | 1617 | imurmurhash@^0.1.4: 1618 | version "0.1.4" 1619 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1620 | 1621 | inflight@^1.0.4: 1622 | version "1.0.6" 1623 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1624 | dependencies: 1625 | once "^1.3.0" 1626 | wrappy "1" 1627 | 1628 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.3: 1629 | version "2.0.3" 1630 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1631 | 1632 | inherits@2.0.1: 1633 | version "2.0.1" 1634 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 1635 | 1636 | ini@~1.3.0: 1637 | version "1.3.4" 1638 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1639 | 1640 | inquirer@^0.12.0: 1641 | version "0.12.0" 1642 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 1643 | dependencies: 1644 | ansi-escapes "^1.1.0" 1645 | ansi-regex "^2.0.0" 1646 | chalk "^1.0.0" 1647 | cli-cursor "^1.0.1" 1648 | cli-width "^2.0.0" 1649 | figures "^1.3.5" 1650 | lodash "^4.3.0" 1651 | readline2 "^1.0.1" 1652 | run-async "^0.1.0" 1653 | rx-lite "^3.1.2" 1654 | string-width "^1.0.1" 1655 | strip-ansi "^3.0.0" 1656 | through "^2.3.6" 1657 | 1658 | interpret@^1.0.0: 1659 | version "1.0.3" 1660 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.3.tgz#cbc35c62eeee73f19ab7b10a801511401afc0f90" 1661 | 1662 | invariant@^2.2.0, invariant@^2.2.2: 1663 | version "2.2.2" 1664 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1665 | dependencies: 1666 | loose-envify "^1.0.0" 1667 | 1668 | invert-kv@^1.0.0: 1669 | version "1.0.0" 1670 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1671 | 1672 | is-arrayish@^0.2.1: 1673 | version "0.2.1" 1674 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1675 | 1676 | is-binary-path@^1.0.0: 1677 | version "1.0.1" 1678 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1679 | dependencies: 1680 | binary-extensions "^1.0.0" 1681 | 1682 | is-buffer@^1.1.5: 1683 | version "1.1.5" 1684 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1685 | 1686 | is-builtin-module@^1.0.0: 1687 | version "1.0.0" 1688 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1689 | dependencies: 1690 | builtin-modules "^1.0.0" 1691 | 1692 | is-ci@^1.0.9: 1693 | version "1.0.10" 1694 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1695 | dependencies: 1696 | ci-info "^1.0.0" 1697 | 1698 | is-dotfile@^1.0.0: 1699 | version "1.0.3" 1700 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1701 | 1702 | is-equal-shallow@^0.1.3: 1703 | version "0.1.3" 1704 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1705 | dependencies: 1706 | is-primitive "^2.0.0" 1707 | 1708 | is-extendable@^0.1.1: 1709 | version "0.1.1" 1710 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1711 | 1712 | is-extglob@^1.0.0: 1713 | version "1.0.0" 1714 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1715 | 1716 | is-finite@^1.0.0: 1717 | version "1.0.2" 1718 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1719 | dependencies: 1720 | number-is-nan "^1.0.0" 1721 | 1722 | is-fullwidth-code-point@^1.0.0: 1723 | version "1.0.0" 1724 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1725 | dependencies: 1726 | number-is-nan "^1.0.0" 1727 | 1728 | is-fullwidth-code-point@^2.0.0: 1729 | version "2.0.0" 1730 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1731 | 1732 | is-glob@^2.0.0, is-glob@^2.0.1: 1733 | version "2.0.1" 1734 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1735 | dependencies: 1736 | is-extglob "^1.0.0" 1737 | 1738 | is-my-json-valid@^2.10.0: 1739 | version "2.16.0" 1740 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693" 1741 | dependencies: 1742 | generate-function "^2.0.0" 1743 | generate-object-property "^1.1.0" 1744 | jsonpointer "^4.0.0" 1745 | xtend "^4.0.0" 1746 | 1747 | is-number@^2.1.0: 1748 | version "2.1.0" 1749 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1750 | dependencies: 1751 | kind-of "^3.0.2" 1752 | 1753 | is-number@^3.0.0: 1754 | version "3.0.0" 1755 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1756 | dependencies: 1757 | kind-of "^3.0.2" 1758 | 1759 | is-path-cwd@^1.0.0: 1760 | version "1.0.0" 1761 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1762 | 1763 | is-path-in-cwd@^1.0.0: 1764 | version "1.0.0" 1765 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1766 | dependencies: 1767 | is-path-inside "^1.0.0" 1768 | 1769 | is-path-inside@^1.0.0: 1770 | version "1.0.0" 1771 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 1772 | dependencies: 1773 | path-is-inside "^1.0.1" 1774 | 1775 | is-posix-bracket@^0.1.0: 1776 | version "0.1.1" 1777 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1778 | 1779 | is-primitive@^2.0.0: 1780 | version "2.0.0" 1781 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1782 | 1783 | is-property@^1.0.0: 1784 | version "1.0.2" 1785 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1786 | 1787 | is-resolvable@^1.0.0: 1788 | version "1.0.0" 1789 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 1790 | dependencies: 1791 | tryit "^1.0.1" 1792 | 1793 | is-typedarray@~1.0.0: 1794 | version "1.0.0" 1795 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1796 | 1797 | is-utf8@^0.2.0: 1798 | version "0.2.1" 1799 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1800 | 1801 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1802 | version "1.0.0" 1803 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1804 | 1805 | isexe@^2.0.0: 1806 | version "2.0.0" 1807 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1808 | 1809 | isobject@^2.0.0: 1810 | version "2.1.0" 1811 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1812 | dependencies: 1813 | isarray "1.0.0" 1814 | 1815 | isstream@~0.1.2: 1816 | version "0.1.2" 1817 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1818 | 1819 | istanbul-api@^1.1.0-alpha.1: 1820 | version "1.1.10" 1821 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.10.tgz#f27e5e7125c8de13f6a80661af78f512e5439b2b" 1822 | dependencies: 1823 | async "^2.1.4" 1824 | fileset "^2.0.2" 1825 | istanbul-lib-coverage "^1.1.1" 1826 | istanbul-lib-hook "^1.0.7" 1827 | istanbul-lib-instrument "^1.7.3" 1828 | istanbul-lib-report "^1.1.1" 1829 | istanbul-lib-source-maps "^1.2.1" 1830 | istanbul-reports "^1.1.1" 1831 | js-yaml "^3.7.0" 1832 | mkdirp "^0.5.1" 1833 | once "^1.4.0" 1834 | 1835 | istanbul-lib-coverage@^1.0.0, istanbul-lib-coverage@^1.1.1: 1836 | version "1.1.1" 1837 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" 1838 | 1839 | istanbul-lib-hook@^1.0.7: 1840 | version "1.0.7" 1841 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.7.tgz#dd6607f03076578fe7d6f2a630cf143b49bacddc" 1842 | dependencies: 1843 | append-transform "^0.4.0" 1844 | 1845 | istanbul-lib-instrument@^1.1.1, istanbul-lib-instrument@^1.7.2, istanbul-lib-instrument@^1.7.3: 1846 | version "1.7.3" 1847 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.3.tgz#925b239163eabdd68cc4048f52c2fa4f899ecfa7" 1848 | dependencies: 1849 | babel-generator "^6.18.0" 1850 | babel-template "^6.16.0" 1851 | babel-traverse "^6.18.0" 1852 | babel-types "^6.18.0" 1853 | babylon "^6.17.4" 1854 | istanbul-lib-coverage "^1.1.1" 1855 | semver "^5.3.0" 1856 | 1857 | istanbul-lib-report@^1.1.1: 1858 | version "1.1.1" 1859 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#f0e55f56655ffa34222080b7a0cd4760e1405fc9" 1860 | dependencies: 1861 | istanbul-lib-coverage "^1.1.1" 1862 | mkdirp "^0.5.1" 1863 | path-parse "^1.0.5" 1864 | supports-color "^3.1.2" 1865 | 1866 | istanbul-lib-source-maps@^1.2.1: 1867 | version "1.2.1" 1868 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.1.tgz#a6fe1acba8ce08eebc638e572e294d267008aa0c" 1869 | dependencies: 1870 | debug "^2.6.3" 1871 | istanbul-lib-coverage "^1.1.1" 1872 | mkdirp "^0.5.1" 1873 | rimraf "^2.6.1" 1874 | source-map "^0.5.3" 1875 | 1876 | istanbul-reports@^1.1.1: 1877 | version "1.1.1" 1878 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.1.tgz#042be5c89e175bc3f86523caab29c014e77fee4e" 1879 | dependencies: 1880 | handlebars "^4.0.3" 1881 | 1882 | jest-changed-files@^19.0.2: 1883 | version "19.0.2" 1884 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-19.0.2.tgz#16c54c84c3270be408e06d2e8af3f3e37a885824" 1885 | 1886 | jest-cli@^19.0.2: 1887 | version "19.0.2" 1888 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-19.0.2.tgz#cc3620b62acac5f2d93a548cb6ef697d4ec85443" 1889 | dependencies: 1890 | ansi-escapes "^1.4.0" 1891 | callsites "^2.0.0" 1892 | chalk "^1.1.1" 1893 | graceful-fs "^4.1.6" 1894 | is-ci "^1.0.9" 1895 | istanbul-api "^1.1.0-alpha.1" 1896 | istanbul-lib-coverage "^1.0.0" 1897 | istanbul-lib-instrument "^1.1.1" 1898 | jest-changed-files "^19.0.2" 1899 | jest-config "^19.0.2" 1900 | jest-environment-jsdom "^19.0.2" 1901 | jest-haste-map "^19.0.0" 1902 | jest-jasmine2 "^19.0.2" 1903 | jest-message-util "^19.0.0" 1904 | jest-regex-util "^19.0.0" 1905 | jest-resolve-dependencies "^19.0.0" 1906 | jest-runtime "^19.0.2" 1907 | jest-snapshot "^19.0.2" 1908 | jest-util "^19.0.2" 1909 | micromatch "^2.3.11" 1910 | node-notifier "^5.0.1" 1911 | slash "^1.0.0" 1912 | string-length "^1.0.1" 1913 | throat "^3.0.0" 1914 | which "^1.1.1" 1915 | worker-farm "^1.3.1" 1916 | yargs "^6.3.0" 1917 | 1918 | jest-config@^19.0.2: 1919 | version "19.0.4" 1920 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-19.0.4.tgz#42980211d46417e91ca7abffd086c270234f73fd" 1921 | dependencies: 1922 | chalk "^1.1.1" 1923 | jest-environment-jsdom "^19.0.2" 1924 | jest-environment-node "^19.0.2" 1925 | jest-jasmine2 "^19.0.2" 1926 | jest-regex-util "^19.0.0" 1927 | jest-resolve "^19.0.2" 1928 | jest-validate "^19.0.2" 1929 | pretty-format "^19.0.0" 1930 | 1931 | jest-diff@^19.0.0: 1932 | version "19.0.0" 1933 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-19.0.0.tgz#d1563cfc56c8b60232988fbc05d4d16ed90f063c" 1934 | dependencies: 1935 | chalk "^1.1.3" 1936 | diff "^3.0.0" 1937 | jest-matcher-utils "^19.0.0" 1938 | pretty-format "^19.0.0" 1939 | 1940 | jest-docblock@^20.0.1: 1941 | version "20.0.3" 1942 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-20.0.3.tgz#17bea984342cc33d83c50fbe1545ea0efaa44712" 1943 | 1944 | jest-environment-jsdom@^19.0.2: 1945 | version "19.0.2" 1946 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-19.0.2.tgz#ceda859c4a4b94ab35e4de7dab54b926f293e4a3" 1947 | dependencies: 1948 | jest-mock "^19.0.0" 1949 | jest-util "^19.0.2" 1950 | jsdom "^9.11.0" 1951 | 1952 | jest-environment-node@^19.0.2: 1953 | version "19.0.2" 1954 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-19.0.2.tgz#6e84079db87ed21d0c05e1f9669f207b116fe99b" 1955 | dependencies: 1956 | jest-mock "^19.0.0" 1957 | jest-util "^19.0.2" 1958 | 1959 | jest-file-exists@^19.0.0: 1960 | version "19.0.0" 1961 | resolved "https://registry.yarnpkg.com/jest-file-exists/-/jest-file-exists-19.0.0.tgz#cca2e587a11ec92e24cfeab3f8a94d657f3fceb8" 1962 | 1963 | jest-haste-map@^19.0.0: 1964 | version "19.0.2" 1965 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-19.0.2.tgz#286484c3a16e86da7872b0877c35dce30c3d6f07" 1966 | dependencies: 1967 | fb-watchman "^2.0.0" 1968 | graceful-fs "^4.1.6" 1969 | micromatch "^2.3.11" 1970 | sane "~1.5.0" 1971 | worker-farm "^1.3.1" 1972 | 1973 | jest-jasmine2@^19.0.2: 1974 | version "19.0.2" 1975 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-19.0.2.tgz#167991ac825981fb1a800af126e83afcca832c73" 1976 | dependencies: 1977 | graceful-fs "^4.1.6" 1978 | jest-matcher-utils "^19.0.0" 1979 | jest-matchers "^19.0.0" 1980 | jest-message-util "^19.0.0" 1981 | jest-snapshot "^19.0.2" 1982 | 1983 | jest-matcher-utils@^19.0.0: 1984 | version "19.0.0" 1985 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-19.0.0.tgz#5ecd9b63565d2b001f61fbf7ec4c7f537964564d" 1986 | dependencies: 1987 | chalk "^1.1.3" 1988 | pretty-format "^19.0.0" 1989 | 1990 | jest-matchers@^19.0.0: 1991 | version "19.0.0" 1992 | resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-19.0.0.tgz#c74ecc6ebfec06f384767ba4d6fa4a42d6755754" 1993 | dependencies: 1994 | jest-diff "^19.0.0" 1995 | jest-matcher-utils "^19.0.0" 1996 | jest-message-util "^19.0.0" 1997 | jest-regex-util "^19.0.0" 1998 | 1999 | jest-message-util@^19.0.0: 2000 | version "19.0.0" 2001 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-19.0.0.tgz#721796b89c0e4d761606f9ba8cb828a3b6246416" 2002 | dependencies: 2003 | chalk "^1.1.1" 2004 | micromatch "^2.3.11" 2005 | 2006 | jest-mock@^19.0.0: 2007 | version "19.0.0" 2008 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-19.0.0.tgz#67038641e9607ab2ce08ec4a8cb83aabbc899d01" 2009 | 2010 | jest-regex-util@^19.0.0: 2011 | version "19.0.0" 2012 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-19.0.0.tgz#b7754587112aede1456510bb1f6afe74ef598691" 2013 | 2014 | jest-resolve-dependencies@^19.0.0: 2015 | version "19.0.0" 2016 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-19.0.0.tgz#a741ad1fa094140e64ecf2642a504f834ece22ee" 2017 | dependencies: 2018 | jest-file-exists "^19.0.0" 2019 | 2020 | jest-resolve@^19.0.2: 2021 | version "19.0.2" 2022 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-19.0.2.tgz#5793575de4f07aec32f7d7ff0c6c181963eefb3c" 2023 | dependencies: 2024 | browser-resolve "^1.11.2" 2025 | jest-haste-map "^19.0.0" 2026 | resolve "^1.2.0" 2027 | 2028 | jest-runtime@^19.0.2: 2029 | version "19.0.4" 2030 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-19.0.4.tgz#f167d9f1347752f2027361067926485349fcc245" 2031 | dependencies: 2032 | babel-core "^6.0.0" 2033 | babel-jest "^19.0.0" 2034 | babel-plugin-istanbul "^4.0.0" 2035 | chalk "^1.1.3" 2036 | graceful-fs "^4.1.6" 2037 | jest-config "^19.0.2" 2038 | jest-file-exists "^19.0.0" 2039 | jest-haste-map "^19.0.0" 2040 | jest-regex-util "^19.0.0" 2041 | jest-resolve "^19.0.2" 2042 | jest-util "^19.0.2" 2043 | json-stable-stringify "^1.0.1" 2044 | micromatch "^2.3.11" 2045 | strip-bom "3.0.0" 2046 | yargs "^6.3.0" 2047 | 2048 | jest-snapshot@^19.0.2: 2049 | version "19.0.2" 2050 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-19.0.2.tgz#9c1b216214f7187c38bfd5c70b1efab16b0ff50b" 2051 | dependencies: 2052 | chalk "^1.1.3" 2053 | jest-diff "^19.0.0" 2054 | jest-file-exists "^19.0.0" 2055 | jest-matcher-utils "^19.0.0" 2056 | jest-util "^19.0.2" 2057 | natural-compare "^1.4.0" 2058 | pretty-format "^19.0.0" 2059 | 2060 | jest-util@^19.0.2: 2061 | version "19.0.2" 2062 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-19.0.2.tgz#e0a0232a2ab9e6b2b53668bdb3534c2b5977ed41" 2063 | dependencies: 2064 | chalk "^1.1.1" 2065 | graceful-fs "^4.1.6" 2066 | jest-file-exists "^19.0.0" 2067 | jest-message-util "^19.0.0" 2068 | jest-mock "^19.0.0" 2069 | jest-validate "^19.0.2" 2070 | leven "^2.0.0" 2071 | mkdirp "^0.5.1" 2072 | 2073 | jest-validate@^19.0.2: 2074 | version "19.0.2" 2075 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-19.0.2.tgz#dc534df5f1278d5b63df32b14241d4dbf7244c0c" 2076 | dependencies: 2077 | chalk "^1.1.1" 2078 | jest-matcher-utils "^19.0.0" 2079 | leven "^2.0.0" 2080 | pretty-format "^19.0.0" 2081 | 2082 | jest@^19.0.2: 2083 | version "19.0.2" 2084 | resolved "https://registry.yarnpkg.com/jest/-/jest-19.0.2.tgz#b794faaf8ff461e7388f28beef559a54f20b2c10" 2085 | dependencies: 2086 | jest-cli "^19.0.2" 2087 | 2088 | jmespath@0.15.0: 2089 | version "0.15.0" 2090 | resolved "https://registry.yarnpkg.com/jmespath/-/jmespath-0.15.0.tgz#a3f222a9aae9f966f5d27c796510e28091764217" 2091 | 2092 | js-tokens@^3.0.0: 2093 | version "3.0.1" 2094 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 2095 | 2096 | js-yaml@^3.5.1, js-yaml@^3.7.0: 2097 | version "3.8.4" 2098 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.4.tgz#520b4564f86573ba96662af85a8cafa7b4b5a6f6" 2099 | dependencies: 2100 | argparse "^1.0.7" 2101 | esprima "^3.1.1" 2102 | 2103 | jsbn@~0.1.0: 2104 | version "0.1.1" 2105 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2106 | 2107 | jsdom@^9.11.0: 2108 | version "9.12.0" 2109 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 2110 | dependencies: 2111 | abab "^1.0.3" 2112 | acorn "^4.0.4" 2113 | acorn-globals "^3.1.0" 2114 | array-equal "^1.0.0" 2115 | content-type-parser "^1.0.1" 2116 | cssom ">= 0.3.2 < 0.4.0" 2117 | cssstyle ">= 0.2.37 < 0.3.0" 2118 | escodegen "^1.6.1" 2119 | html-encoding-sniffer "^1.0.1" 2120 | nwmatcher ">= 1.3.9 < 2.0.0" 2121 | parse5 "^1.5.1" 2122 | request "^2.79.0" 2123 | sax "^1.2.1" 2124 | symbol-tree "^3.2.1" 2125 | tough-cookie "^2.3.2" 2126 | webidl-conversions "^4.0.0" 2127 | whatwg-encoding "^1.0.1" 2128 | whatwg-url "^4.3.0" 2129 | xml-name-validator "^2.0.1" 2130 | 2131 | jsesc@^1.3.0: 2132 | version "1.3.0" 2133 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2134 | 2135 | jsesc@~0.5.0: 2136 | version "0.5.0" 2137 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2138 | 2139 | json-schema@0.2.3: 2140 | version "0.2.3" 2141 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2142 | 2143 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 2144 | version "1.0.1" 2145 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2146 | dependencies: 2147 | jsonify "~0.0.0" 2148 | 2149 | json-stringify-safe@~5.0.1: 2150 | version "5.0.1" 2151 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2152 | 2153 | json5@^0.5.0: 2154 | version "0.5.1" 2155 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2156 | 2157 | jsonify@~0.0.0: 2158 | version "0.0.0" 2159 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2160 | 2161 | jsonpointer@^4.0.0: 2162 | version "4.0.1" 2163 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 2164 | 2165 | jsprim@^1.2.2: 2166 | version "1.4.0" 2167 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 2168 | dependencies: 2169 | assert-plus "1.0.0" 2170 | extsprintf "1.0.2" 2171 | json-schema "0.2.3" 2172 | verror "1.3.6" 2173 | 2174 | kind-of@^3.0.2: 2175 | version "3.2.2" 2176 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2177 | dependencies: 2178 | is-buffer "^1.1.5" 2179 | 2180 | kind-of@^4.0.0: 2181 | version "4.0.0" 2182 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2183 | dependencies: 2184 | is-buffer "^1.1.5" 2185 | 2186 | lazy-cache@^1.0.3: 2187 | version "1.0.4" 2188 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2189 | 2190 | lcid@^1.0.0: 2191 | version "1.0.0" 2192 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2193 | dependencies: 2194 | invert-kv "^1.0.0" 2195 | 2196 | leven@^2.0.0: 2197 | version "2.1.0" 2198 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 2199 | 2200 | levn@^0.3.0, levn@~0.3.0: 2201 | version "0.3.0" 2202 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2203 | dependencies: 2204 | prelude-ls "~1.1.2" 2205 | type-check "~0.3.2" 2206 | 2207 | load-json-file@^1.0.0: 2208 | version "1.1.0" 2209 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2210 | dependencies: 2211 | graceful-fs "^4.1.2" 2212 | parse-json "^2.2.0" 2213 | pify "^2.0.0" 2214 | pinkie-promise "^2.0.0" 2215 | strip-bom "^2.0.0" 2216 | 2217 | locate-path@^2.0.0: 2218 | version "2.0.0" 2219 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2220 | dependencies: 2221 | p-locate "^2.0.0" 2222 | path-exists "^3.0.0" 2223 | 2224 | lodash@^4.0.0, lodash@^4.14.0, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.3.0: 2225 | version "4.17.4" 2226 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2227 | 2228 | lolex@1.3.2: 2229 | version "1.3.2" 2230 | resolved "https://registry.yarnpkg.com/lolex/-/lolex-1.3.2.tgz#7c3da62ffcb30f0f5a80a2566ca24e45d8a01f31" 2231 | 2232 | longest@^1.0.1: 2233 | version "1.0.1" 2234 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2235 | 2236 | loose-envify@^1.0.0: 2237 | version "1.3.1" 2238 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2239 | dependencies: 2240 | js-tokens "^3.0.0" 2241 | 2242 | lru-cache@^4.0.1: 2243 | version "4.1.1" 2244 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 2245 | dependencies: 2246 | pseudomap "^1.0.2" 2247 | yallist "^2.1.2" 2248 | 2249 | makeerror@1.0.x: 2250 | version "1.0.11" 2251 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2252 | dependencies: 2253 | tmpl "1.0.x" 2254 | 2255 | merge@^1.1.3: 2256 | version "1.2.0" 2257 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 2258 | 2259 | micromatch@^2.1.5, micromatch@^2.3.11: 2260 | version "2.3.11" 2261 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2262 | dependencies: 2263 | arr-diff "^2.0.0" 2264 | array-unique "^0.2.1" 2265 | braces "^1.8.2" 2266 | expand-brackets "^0.1.4" 2267 | extglob "^0.3.1" 2268 | filename-regex "^2.0.0" 2269 | is-extglob "^1.0.0" 2270 | is-glob "^2.0.1" 2271 | kind-of "^3.0.2" 2272 | normalize-path "^2.0.1" 2273 | object.omit "^2.0.0" 2274 | parse-glob "^3.0.4" 2275 | regex-cache "^0.4.2" 2276 | 2277 | mime-db@~1.27.0: 2278 | version "1.27.0" 2279 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 2280 | 2281 | mime-types@^2.1.12, mime-types@~2.1.7: 2282 | version "2.1.15" 2283 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 2284 | dependencies: 2285 | mime-db "~1.27.0" 2286 | 2287 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 2288 | version "3.0.4" 2289 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2290 | dependencies: 2291 | brace-expansion "^1.1.7" 2292 | 2293 | minimist@0.0.8, minimist@~0.0.1: 2294 | version "0.0.8" 2295 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2296 | 2297 | minimist@^1.1.1, minimist@^1.2.0: 2298 | version "1.2.0" 2299 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2300 | 2301 | "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1: 2302 | version "0.5.1" 2303 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2304 | dependencies: 2305 | minimist "0.0.8" 2306 | 2307 | ms@2.0.0: 2308 | version "2.0.0" 2309 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2310 | 2311 | mute-stream@0.0.5: 2312 | version "0.0.5" 2313 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 2314 | 2315 | nan@^2.3.0: 2316 | version "2.6.2" 2317 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45" 2318 | 2319 | natural-compare@^1.4.0: 2320 | version "1.4.0" 2321 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2322 | 2323 | node-int64@^0.4.0: 2324 | version "0.4.0" 2325 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2326 | 2327 | node-notifier@^5.0.1: 2328 | version "5.1.2" 2329 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 2330 | dependencies: 2331 | growly "^1.3.0" 2332 | semver "^5.3.0" 2333 | shellwords "^0.1.0" 2334 | which "^1.2.12" 2335 | 2336 | node-pre-gyp@^0.6.36: 2337 | version "0.6.36" 2338 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz#db604112cb74e0d477554e9b505b17abddfab786" 2339 | dependencies: 2340 | mkdirp "^0.5.1" 2341 | nopt "^4.0.1" 2342 | npmlog "^4.0.2" 2343 | rc "^1.1.7" 2344 | request "^2.81.0" 2345 | rimraf "^2.6.1" 2346 | semver "^5.3.0" 2347 | tar "^2.2.1" 2348 | tar-pack "^3.4.0" 2349 | 2350 | nopt@^4.0.1: 2351 | version "4.0.1" 2352 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2353 | dependencies: 2354 | abbrev "1" 2355 | osenv "^0.1.4" 2356 | 2357 | normalize-package-data@^2.3.2: 2358 | version "2.4.0" 2359 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2360 | dependencies: 2361 | hosted-git-info "^2.1.4" 2362 | is-builtin-module "^1.0.0" 2363 | semver "2 || 3 || 4 || 5" 2364 | validate-npm-package-license "^3.0.1" 2365 | 2366 | normalize-path@^2.0.1: 2367 | version "2.1.1" 2368 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2369 | dependencies: 2370 | remove-trailing-separator "^1.0.1" 2371 | 2372 | npmlog@^4.0.2: 2373 | version "4.1.2" 2374 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2375 | dependencies: 2376 | are-we-there-yet "~1.1.2" 2377 | console-control-strings "~1.1.0" 2378 | gauge "~2.7.3" 2379 | set-blocking "~2.0.0" 2380 | 2381 | number-is-nan@^1.0.0: 2382 | version "1.0.1" 2383 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2384 | 2385 | "nwmatcher@>= 1.3.9 < 2.0.0": 2386 | version "1.4.1" 2387 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.1.tgz#7ae9b07b0ea804db7e25f05cb5fe4097d4e4949f" 2388 | 2389 | oauth-sign@~0.8.1: 2390 | version "0.8.2" 2391 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2392 | 2393 | object-assign@^4.0.1, object-assign@^4.1.0: 2394 | version "4.1.1" 2395 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2396 | 2397 | object.omit@^2.0.0: 2398 | version "2.0.1" 2399 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2400 | dependencies: 2401 | for-own "^0.1.4" 2402 | is-extendable "^0.1.1" 2403 | 2404 | once@^1.3.0, once@^1.3.3, once@^1.4.0: 2405 | version "1.4.0" 2406 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2407 | dependencies: 2408 | wrappy "1" 2409 | 2410 | onetime@^1.0.0: 2411 | version "1.1.0" 2412 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2413 | 2414 | optimist@^0.6.1: 2415 | version "0.6.1" 2416 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2417 | dependencies: 2418 | minimist "~0.0.1" 2419 | wordwrap "~0.0.2" 2420 | 2421 | optionator@^0.8.1, optionator@^0.8.2: 2422 | version "0.8.2" 2423 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2424 | dependencies: 2425 | deep-is "~0.1.3" 2426 | fast-levenshtein "~2.0.4" 2427 | levn "~0.3.0" 2428 | prelude-ls "~1.1.2" 2429 | type-check "~0.3.2" 2430 | wordwrap "~1.0.0" 2431 | 2432 | os-homedir@^1.0.0: 2433 | version "1.0.2" 2434 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2435 | 2436 | os-locale@^1.4.0: 2437 | version "1.4.0" 2438 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2439 | dependencies: 2440 | lcid "^1.0.0" 2441 | 2442 | os-shim@^0.1.2: 2443 | version "0.1.3" 2444 | resolved "https://registry.yarnpkg.com/os-shim/-/os-shim-0.1.3.tgz#6b62c3791cf7909ea35ed46e17658bb417cb3917" 2445 | 2446 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 2447 | version "1.0.2" 2448 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2449 | 2450 | osenv@^0.1.4: 2451 | version "0.1.4" 2452 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2453 | dependencies: 2454 | os-homedir "^1.0.0" 2455 | os-tmpdir "^1.0.0" 2456 | 2457 | output-file-sync@^1.1.0: 2458 | version "1.1.2" 2459 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2460 | dependencies: 2461 | graceful-fs "^4.1.4" 2462 | mkdirp "^0.5.1" 2463 | object-assign "^4.1.0" 2464 | 2465 | p-defer@^1.0.0: 2466 | version "1.0.0" 2467 | resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c" 2468 | 2469 | p-forever@^1.0.1: 2470 | version "1.0.1" 2471 | resolved "https://registry.yarnpkg.com/p-forever/-/p-forever-1.0.1.tgz#d8da0e9f88b3929e51596c2f8aa50cf2f1ad06ab" 2472 | 2473 | p-limit@^1.1.0: 2474 | version "1.1.0" 2475 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2476 | 2477 | p-locate@^2.0.0: 2478 | version "2.0.0" 2479 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2480 | dependencies: 2481 | p-limit "^1.1.0" 2482 | 2483 | p-reflect@^1.0.0: 2484 | version "1.0.0" 2485 | resolved "https://registry.yarnpkg.com/p-reflect/-/p-reflect-1.0.0.tgz#f4fa1ee1bb546d8eb3ec0321148dfe0a79137bb8" 2486 | 2487 | p-settle@^2.0.0: 2488 | version "2.0.0" 2489 | resolved "https://registry.yarnpkg.com/p-settle/-/p-settle-2.0.0.tgz#b6cda5ab86e7173639164909b526adcc42b87733" 2490 | dependencies: 2491 | p-reflect "^1.0.0" 2492 | 2493 | parse-glob@^3.0.4: 2494 | version "3.0.4" 2495 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2496 | dependencies: 2497 | glob-base "^0.3.0" 2498 | is-dotfile "^1.0.0" 2499 | is-extglob "^1.0.0" 2500 | is-glob "^2.0.0" 2501 | 2502 | parse-json@^2.2.0: 2503 | version "2.2.0" 2504 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2505 | dependencies: 2506 | error-ex "^1.2.0" 2507 | 2508 | parse5@^1.5.1: 2509 | version "1.5.1" 2510 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 2511 | 2512 | path-exists@^2.0.0: 2513 | version "2.1.0" 2514 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2515 | dependencies: 2516 | pinkie-promise "^2.0.0" 2517 | 2518 | path-exists@^3.0.0: 2519 | version "3.0.0" 2520 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2521 | 2522 | path-is-absolute@^1.0.0: 2523 | version "1.0.1" 2524 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2525 | 2526 | path-is-inside@^1.0.1: 2527 | version "1.0.2" 2528 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2529 | 2530 | path-parse@^1.0.5: 2531 | version "1.0.5" 2532 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2533 | 2534 | path-type@^1.0.0: 2535 | version "1.1.0" 2536 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2537 | dependencies: 2538 | graceful-fs "^4.1.2" 2539 | pify "^2.0.0" 2540 | pinkie-promise "^2.0.0" 2541 | 2542 | performance-now@^0.2.0: 2543 | version "0.2.0" 2544 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2545 | 2546 | pify@^2.0.0: 2547 | version "2.3.0" 2548 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2549 | 2550 | pinkie-promise@^2.0.0: 2551 | version "2.0.1" 2552 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2553 | dependencies: 2554 | pinkie "^2.0.0" 2555 | 2556 | pinkie@^2.0.0: 2557 | version "2.0.4" 2558 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2559 | 2560 | pluralize@^1.2.1: 2561 | version "1.2.1" 2562 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 2563 | 2564 | pre-commit@^1.2.2: 2565 | version "1.2.2" 2566 | resolved "https://registry.yarnpkg.com/pre-commit/-/pre-commit-1.2.2.tgz#dbcee0ee9de7235e57f79c56d7ce94641a69eec6" 2567 | dependencies: 2568 | cross-spawn "^5.0.1" 2569 | spawn-sync "^1.0.15" 2570 | which "1.2.x" 2571 | 2572 | prelude-ls@~1.1.2: 2573 | version "1.1.2" 2574 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2575 | 2576 | preserve@^0.2.0: 2577 | version "0.2.0" 2578 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2579 | 2580 | prettier@^1.5.2: 2581 | version "1.5.2" 2582 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.5.2.tgz#7ea0751da27b93bfb6cecfcec509994f52d83bb3" 2583 | 2584 | pretty-format@^19.0.0: 2585 | version "19.0.0" 2586 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-19.0.0.tgz#56530d32acb98a3fa4851c4e2b9d37b420684c84" 2587 | dependencies: 2588 | ansi-styles "^3.0.0" 2589 | 2590 | private@^0.1.6: 2591 | version "0.1.7" 2592 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2593 | 2594 | process-nextick-args@~1.0.6: 2595 | version "1.0.7" 2596 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2597 | 2598 | progress@^1.1.8: 2599 | version "1.1.8" 2600 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 2601 | 2602 | prr@~0.0.0: 2603 | version "0.0.0" 2604 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 2605 | 2606 | pseudomap@^1.0.2: 2607 | version "1.0.2" 2608 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2609 | 2610 | punycode@1.3.2: 2611 | version "1.3.2" 2612 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 2613 | 2614 | punycode@^1.4.1: 2615 | version "1.4.1" 2616 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2617 | 2618 | qs@~6.4.0: 2619 | version "6.4.0" 2620 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2621 | 2622 | querystring@0.2.0: 2623 | version "0.2.0" 2624 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 2625 | 2626 | randomatic@^1.1.3: 2627 | version "1.1.7" 2628 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 2629 | dependencies: 2630 | is-number "^3.0.0" 2631 | kind-of "^4.0.0" 2632 | 2633 | rc@^1.1.7: 2634 | version "1.2.1" 2635 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 2636 | dependencies: 2637 | deep-extend "~0.4.0" 2638 | ini "~1.3.0" 2639 | minimist "^1.2.0" 2640 | strip-json-comments "~2.0.1" 2641 | 2642 | read-pkg-up@^1.0.1: 2643 | version "1.0.1" 2644 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2645 | dependencies: 2646 | find-up "^1.0.0" 2647 | read-pkg "^1.0.0" 2648 | 2649 | read-pkg@^1.0.0: 2650 | version "1.1.0" 2651 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2652 | dependencies: 2653 | load-json-file "^1.0.0" 2654 | normalize-package-data "^2.3.2" 2655 | path-type "^1.0.0" 2656 | 2657 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.2: 2658 | version "2.3.2" 2659 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.2.tgz#5a04df05e4f57fe3f0dc68fdd11dc5c97c7e6f4d" 2660 | dependencies: 2661 | core-util-is "~1.0.0" 2662 | inherits "~2.0.3" 2663 | isarray "~1.0.0" 2664 | process-nextick-args "~1.0.6" 2665 | safe-buffer "~5.1.0" 2666 | string_decoder "~1.0.0" 2667 | util-deprecate "~1.0.1" 2668 | 2669 | readdirp@^2.0.0: 2670 | version "2.1.0" 2671 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2672 | dependencies: 2673 | graceful-fs "^4.1.2" 2674 | minimatch "^3.0.2" 2675 | readable-stream "^2.0.2" 2676 | set-immediate-shim "^1.0.1" 2677 | 2678 | readline2@^1.0.1: 2679 | version "1.0.1" 2680 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 2681 | dependencies: 2682 | code-point-at "^1.0.0" 2683 | is-fullwidth-code-point "^1.0.0" 2684 | mute-stream "0.0.5" 2685 | 2686 | rechoir@^0.6.2: 2687 | version "0.6.2" 2688 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 2689 | dependencies: 2690 | resolve "^1.1.6" 2691 | 2692 | regenerate@^1.2.1: 2693 | version "1.3.2" 2694 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 2695 | 2696 | regenerator-runtime@^0.10.0: 2697 | version "0.10.5" 2698 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 2699 | 2700 | regenerator-transform@0.9.11: 2701 | version "0.9.11" 2702 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.11.tgz#3a7d067520cb7b7176769eb5ff868691befe1283" 2703 | dependencies: 2704 | babel-runtime "^6.18.0" 2705 | babel-types "^6.19.0" 2706 | private "^0.1.6" 2707 | 2708 | regex-cache@^0.4.2: 2709 | version "0.4.3" 2710 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2711 | dependencies: 2712 | is-equal-shallow "^0.1.3" 2713 | is-primitive "^2.0.0" 2714 | 2715 | regexpu-core@^2.0.0: 2716 | version "2.0.0" 2717 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2718 | dependencies: 2719 | regenerate "^1.2.1" 2720 | regjsgen "^0.2.0" 2721 | regjsparser "^0.1.4" 2722 | 2723 | regjsgen@^0.2.0: 2724 | version "0.2.0" 2725 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2726 | 2727 | regjsparser@^0.1.4: 2728 | version "0.1.5" 2729 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2730 | dependencies: 2731 | jsesc "~0.5.0" 2732 | 2733 | remove-trailing-separator@^1.0.1: 2734 | version "1.0.2" 2735 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.2.tgz#69b062d978727ad14dc6b56ba4ab772fd8d70511" 2736 | 2737 | repeat-element@^1.1.2: 2738 | version "1.1.2" 2739 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2740 | 2741 | repeat-string@^1.5.2: 2742 | version "1.6.1" 2743 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2744 | 2745 | repeating@^2.0.0: 2746 | version "2.0.1" 2747 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2748 | dependencies: 2749 | is-finite "^1.0.0" 2750 | 2751 | request@^2.79.0, request@^2.81.0: 2752 | version "2.81.0" 2753 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2754 | dependencies: 2755 | aws-sign2 "~0.6.0" 2756 | aws4 "^1.2.1" 2757 | caseless "~0.12.0" 2758 | combined-stream "~1.0.5" 2759 | extend "~3.0.0" 2760 | forever-agent "~0.6.1" 2761 | form-data "~2.1.1" 2762 | har-validator "~4.2.1" 2763 | hawk "~3.1.3" 2764 | http-signature "~1.1.0" 2765 | is-typedarray "~1.0.0" 2766 | isstream "~0.1.2" 2767 | json-stringify-safe "~5.0.1" 2768 | mime-types "~2.1.7" 2769 | oauth-sign "~0.8.1" 2770 | performance-now "^0.2.0" 2771 | qs "~6.4.0" 2772 | safe-buffer "^5.0.1" 2773 | stringstream "~0.0.4" 2774 | tough-cookie "~2.3.0" 2775 | tunnel-agent "^0.6.0" 2776 | uuid "^3.0.0" 2777 | 2778 | require-directory@^2.1.1: 2779 | version "2.1.1" 2780 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2781 | 2782 | require-main-filename@^1.0.1: 2783 | version "1.0.1" 2784 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2785 | 2786 | require-uncached@^1.0.2: 2787 | version "1.0.3" 2788 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 2789 | dependencies: 2790 | caller-path "^0.1.0" 2791 | resolve-from "^1.0.0" 2792 | 2793 | resolve-from@^1.0.0: 2794 | version "1.0.1" 2795 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 2796 | 2797 | resolve@1.1.7: 2798 | version "1.1.7" 2799 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2800 | 2801 | resolve@^1.1.6, resolve@^1.2.0: 2802 | version "1.3.3" 2803 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5" 2804 | dependencies: 2805 | path-parse "^1.0.5" 2806 | 2807 | restore-cursor@^1.0.1: 2808 | version "1.0.1" 2809 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 2810 | dependencies: 2811 | exit-hook "^1.0.0" 2812 | onetime "^1.0.0" 2813 | 2814 | right-align@^0.1.1: 2815 | version "0.1.3" 2816 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2817 | dependencies: 2818 | align-text "^0.1.1" 2819 | 2820 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1: 2821 | version "2.6.1" 2822 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 2823 | dependencies: 2824 | glob "^7.0.5" 2825 | 2826 | run-async@^0.1.0: 2827 | version "0.1.0" 2828 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 2829 | dependencies: 2830 | once "^1.3.0" 2831 | 2832 | rx-lite@^3.1.2: 2833 | version "3.1.2" 2834 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 2835 | 2836 | safe-buffer@^5.0.1, safe-buffer@~5.1.0: 2837 | version "5.1.1" 2838 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2839 | 2840 | samsam@1.1.2, samsam@~1.1: 2841 | version "1.1.2" 2842 | resolved "https://registry.yarnpkg.com/samsam/-/samsam-1.1.2.tgz#bec11fdc83a9fda063401210e40176c3024d1567" 2843 | 2844 | sane@~1.5.0: 2845 | version "1.5.0" 2846 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.5.0.tgz#a4adeae764d048621ecb27d5f9ecf513101939f3" 2847 | dependencies: 2848 | anymatch "^1.3.0" 2849 | exec-sh "^0.2.0" 2850 | fb-watchman "^1.8.0" 2851 | minimatch "^3.0.2" 2852 | minimist "^1.1.1" 2853 | walker "~1.0.5" 2854 | watch "~0.10.0" 2855 | 2856 | sax@1.2.1, sax@>=0.6.0, sax@^1.2.1: 2857 | version "1.2.1" 2858 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.1.tgz#7b8e656190b228e81a66aea748480d828cd2d37a" 2859 | 2860 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 2861 | version "5.3.0" 2862 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 2863 | 2864 | set-blocking@^2.0.0, set-blocking@~2.0.0: 2865 | version "2.0.0" 2866 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2867 | 2868 | set-immediate-shim@^1.0.1: 2869 | version "1.0.1" 2870 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2871 | 2872 | shebang-command@^1.2.0: 2873 | version "1.2.0" 2874 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2875 | dependencies: 2876 | shebang-regex "^1.0.0" 2877 | 2878 | shebang-regex@^1.0.0: 2879 | version "1.0.0" 2880 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2881 | 2882 | shelljs@^0.7.5: 2883 | version "0.7.8" 2884 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.8.tgz#decbcf874b0d1e5fb72e14b164a9683048e9acb3" 2885 | dependencies: 2886 | glob "^7.0.0" 2887 | interpret "^1.0.0" 2888 | rechoir "^0.6.2" 2889 | 2890 | shellwords@^0.1.0: 2891 | version "0.1.0" 2892 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.0.tgz#66afd47b6a12932d9071cbfd98a52e785cd0ba14" 2893 | 2894 | signal-exit@^3.0.0: 2895 | version "3.0.2" 2896 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2897 | 2898 | sinon@^1.17.3: 2899 | version "1.17.7" 2900 | resolved "https://registry.yarnpkg.com/sinon/-/sinon-1.17.7.tgz#4542a4f49ba0c45c05eb2e9dd9d203e2b8efe0bf" 2901 | dependencies: 2902 | formatio "1.1.1" 2903 | lolex "1.3.2" 2904 | samsam "1.1.2" 2905 | util ">=0.10.3 <1" 2906 | 2907 | slash@^1.0.0: 2908 | version "1.0.0" 2909 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2910 | 2911 | slice-ansi@0.0.4: 2912 | version "0.0.4" 2913 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 2914 | 2915 | sntp@1.x.x: 2916 | version "1.0.9" 2917 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2918 | dependencies: 2919 | hoek "2.x.x" 2920 | 2921 | source-map-support@^0.4.2: 2922 | version "0.4.15" 2923 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1" 2924 | dependencies: 2925 | source-map "^0.5.6" 2926 | 2927 | source-map@^0.4.4: 2928 | version "0.4.4" 2929 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 2930 | dependencies: 2931 | amdefine ">=0.0.4" 2932 | 2933 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 2934 | version "0.5.6" 2935 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 2936 | 2937 | source-map@~0.2.0: 2938 | version "0.2.0" 2939 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 2940 | dependencies: 2941 | amdefine ">=0.0.4" 2942 | 2943 | spawn-sync@^1.0.15: 2944 | version "1.0.15" 2945 | resolved "https://registry.yarnpkg.com/spawn-sync/-/spawn-sync-1.0.15.tgz#b00799557eb7fb0c8376c29d44e8a1ea67e57476" 2946 | dependencies: 2947 | concat-stream "^1.4.7" 2948 | os-shim "^0.1.2" 2949 | 2950 | spdx-correct@~1.0.0: 2951 | version "1.0.2" 2952 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2953 | dependencies: 2954 | spdx-license-ids "^1.0.2" 2955 | 2956 | spdx-expression-parse@~1.0.0: 2957 | version "1.0.4" 2958 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2959 | 2960 | spdx-license-ids@^1.0.2: 2961 | version "1.2.2" 2962 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2963 | 2964 | sprintf-js@~1.0.2: 2965 | version "1.0.3" 2966 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2967 | 2968 | sshpk@^1.7.0: 2969 | version "1.13.1" 2970 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 2971 | dependencies: 2972 | asn1 "~0.2.3" 2973 | assert-plus "^1.0.0" 2974 | dashdash "^1.12.0" 2975 | getpass "^0.1.1" 2976 | optionalDependencies: 2977 | bcrypt-pbkdf "^1.0.0" 2978 | ecc-jsbn "~0.1.1" 2979 | jsbn "~0.1.0" 2980 | tweetnacl "~0.14.0" 2981 | 2982 | string-length@^1.0.1: 2983 | version "1.0.1" 2984 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 2985 | dependencies: 2986 | strip-ansi "^3.0.0" 2987 | 2988 | string-width@^1.0.1, string-width@^1.0.2: 2989 | version "1.0.2" 2990 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2991 | dependencies: 2992 | code-point-at "^1.0.0" 2993 | is-fullwidth-code-point "^1.0.0" 2994 | strip-ansi "^3.0.0" 2995 | 2996 | string-width@^2.0.0: 2997 | version "2.1.0" 2998 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.0.tgz#030664561fc146c9423ec7d978fe2457437fe6d0" 2999 | dependencies: 3000 | is-fullwidth-code-point "^2.0.0" 3001 | strip-ansi "^4.0.0" 3002 | 3003 | string_decoder@~1.0.0: 3004 | version "1.0.3" 3005 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 3006 | dependencies: 3007 | safe-buffer "~5.1.0" 3008 | 3009 | stringstream@~0.0.4: 3010 | version "0.0.5" 3011 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3012 | 3013 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3014 | version "3.0.1" 3015 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3016 | dependencies: 3017 | ansi-regex "^2.0.0" 3018 | 3019 | strip-ansi@^4.0.0: 3020 | version "4.0.0" 3021 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3022 | dependencies: 3023 | ansi-regex "^3.0.0" 3024 | 3025 | strip-bom@3.0.0, strip-bom@^3.0.0: 3026 | version "3.0.0" 3027 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3028 | 3029 | strip-bom@^2.0.0: 3030 | version "2.0.0" 3031 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3032 | dependencies: 3033 | is-utf8 "^0.2.0" 3034 | 3035 | strip-json-comments@~2.0.1: 3036 | version "2.0.1" 3037 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3038 | 3039 | supports-color@^2.0.0: 3040 | version "2.0.0" 3041 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3042 | 3043 | supports-color@^3.1.2: 3044 | version "3.2.3" 3045 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3046 | dependencies: 3047 | has-flag "^1.0.0" 3048 | 3049 | symbol-tree@^3.2.1: 3050 | version "3.2.2" 3051 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 3052 | 3053 | table@^3.7.8: 3054 | version "3.8.3" 3055 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 3056 | dependencies: 3057 | ajv "^4.7.0" 3058 | ajv-keywords "^1.0.0" 3059 | chalk "^1.1.1" 3060 | lodash "^4.0.0" 3061 | slice-ansi "0.0.4" 3062 | string-width "^2.0.0" 3063 | 3064 | tar-pack@^3.4.0: 3065 | version "3.4.0" 3066 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 3067 | dependencies: 3068 | debug "^2.2.0" 3069 | fstream "^1.0.10" 3070 | fstream-ignore "^1.0.5" 3071 | once "^1.3.3" 3072 | readable-stream "^2.1.4" 3073 | rimraf "^2.5.1" 3074 | tar "^2.2.1" 3075 | uid-number "^0.0.6" 3076 | 3077 | tar@^2.2.1: 3078 | version "2.2.1" 3079 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3080 | dependencies: 3081 | block-stream "*" 3082 | fstream "^1.0.2" 3083 | inherits "2" 3084 | 3085 | test-exclude@^4.1.1: 3086 | version "4.1.1" 3087 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26" 3088 | dependencies: 3089 | arrify "^1.0.1" 3090 | micromatch "^2.3.11" 3091 | object-assign "^4.1.0" 3092 | read-pkg-up "^1.0.1" 3093 | require-main-filename "^1.0.1" 3094 | 3095 | text-table@~0.2.0: 3096 | version "0.2.0" 3097 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3098 | 3099 | throat@^3.0.0: 3100 | version "3.2.0" 3101 | resolved "https://registry.yarnpkg.com/throat/-/throat-3.2.0.tgz#50cb0670edbc40237b9e347d7e1f88e4620af836" 3102 | 3103 | through@^2.3.6: 3104 | version "2.3.8" 3105 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3106 | 3107 | tmpl@1.0.x: 3108 | version "1.0.4" 3109 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 3110 | 3111 | to-fast-properties@^1.0.1: 3112 | version "1.0.3" 3113 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3114 | 3115 | tough-cookie@^2.3.2, tough-cookie@~2.3.0: 3116 | version "2.3.2" 3117 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3118 | dependencies: 3119 | punycode "^1.4.1" 3120 | 3121 | tr46@~0.0.3: 3122 | version "0.0.3" 3123 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 3124 | 3125 | traverse@^0.6.6: 3126 | version "0.6.6" 3127 | resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.6.tgz#cbdf560fd7b9af632502fed40f918c157ea97137" 3128 | 3129 | trim-right@^1.0.1: 3130 | version "1.0.1" 3131 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3132 | 3133 | tryit@^1.0.1: 3134 | version "1.0.3" 3135 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 3136 | 3137 | tunnel-agent@^0.6.0: 3138 | version "0.6.0" 3139 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3140 | dependencies: 3141 | safe-buffer "^5.0.1" 3142 | 3143 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3144 | version "0.14.5" 3145 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3146 | 3147 | type-check@~0.3.2: 3148 | version "0.3.2" 3149 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3150 | dependencies: 3151 | prelude-ls "~1.1.2" 3152 | 3153 | typedarray@^0.0.6: 3154 | version "0.0.6" 3155 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3156 | 3157 | uglify-js@^2.6: 3158 | version "2.8.29" 3159 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 3160 | dependencies: 3161 | source-map "~0.5.1" 3162 | yargs "~3.10.0" 3163 | optionalDependencies: 3164 | uglify-to-browserify "~1.0.0" 3165 | 3166 | uglify-to-browserify@~1.0.0: 3167 | version "1.0.2" 3168 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3169 | 3170 | uid-number@^0.0.6: 3171 | version "0.0.6" 3172 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3173 | 3174 | url@0.10.3: 3175 | version "0.10.3" 3176 | resolved "https://registry.yarnpkg.com/url/-/url-0.10.3.tgz#021e4d9c7705f21bbf37d03ceb58767402774c64" 3177 | dependencies: 3178 | punycode "1.3.2" 3179 | querystring "0.2.0" 3180 | 3181 | user-home@^1.1.1: 3182 | version "1.1.1" 3183 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 3184 | 3185 | user-home@^2.0.0: 3186 | version "2.0.0" 3187 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 3188 | dependencies: 3189 | os-homedir "^1.0.0" 3190 | 3191 | util-deprecate@~1.0.1: 3192 | version "1.0.2" 3193 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3194 | 3195 | "util@>=0.10.3 <1": 3196 | version "0.10.3" 3197 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 3198 | dependencies: 3199 | inherits "2.0.1" 3200 | 3201 | uuid@3.0.1, uuid@^3.0.0: 3202 | version "3.0.1" 3203 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 3204 | 3205 | v8flags@^2.0.10: 3206 | version "2.1.1" 3207 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 3208 | dependencies: 3209 | user-home "^1.1.1" 3210 | 3211 | validate-npm-package-license@^3.0.1: 3212 | version "3.0.1" 3213 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3214 | dependencies: 3215 | spdx-correct "~1.0.0" 3216 | spdx-expression-parse "~1.0.0" 3217 | 3218 | verror@1.3.6: 3219 | version "1.3.6" 3220 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 3221 | dependencies: 3222 | extsprintf "1.0.2" 3223 | 3224 | walker@~1.0.5: 3225 | version "1.0.7" 3226 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 3227 | dependencies: 3228 | makeerror "1.0.x" 3229 | 3230 | watch@~0.10.0: 3231 | version "0.10.0" 3232 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 3233 | 3234 | webidl-conversions@^3.0.0: 3235 | version "3.0.1" 3236 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 3237 | 3238 | webidl-conversions@^4.0.0: 3239 | version "4.0.1" 3240 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.1.tgz#8015a17ab83e7e1b311638486ace81da6ce206a0" 3241 | 3242 | whatwg-encoding@^1.0.1: 3243 | version "1.0.1" 3244 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 3245 | dependencies: 3246 | iconv-lite "0.4.13" 3247 | 3248 | whatwg-url@^4.3.0: 3249 | version "4.8.0" 3250 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0" 3251 | dependencies: 3252 | tr46 "~0.0.3" 3253 | webidl-conversions "^3.0.0" 3254 | 3255 | which-module@^1.0.0: 3256 | version "1.0.0" 3257 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 3258 | 3259 | which@1.2.x, which@^1.1.1, which@^1.2.12, which@^1.2.9: 3260 | version "1.2.14" 3261 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 3262 | dependencies: 3263 | isexe "^2.0.0" 3264 | 3265 | wide-align@^1.1.0: 3266 | version "1.1.2" 3267 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3268 | dependencies: 3269 | string-width "^1.0.2" 3270 | 3271 | window-size@0.1.0: 3272 | version "0.1.0" 3273 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3274 | 3275 | wordwrap@0.0.2: 3276 | version "0.0.2" 3277 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3278 | 3279 | wordwrap@~0.0.2: 3280 | version "0.0.3" 3281 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3282 | 3283 | wordwrap@~1.0.0: 3284 | version "1.0.0" 3285 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3286 | 3287 | worker-farm@^1.3.1: 3288 | version "1.3.1" 3289 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.3.1.tgz#4333112bb49b17aa050b87895ca6b2cacf40e5ff" 3290 | dependencies: 3291 | errno ">=0.1.1 <0.2.0-0" 3292 | xtend ">=4.0.0 <4.1.0-0" 3293 | 3294 | wrap-ansi@^2.0.0: 3295 | version "2.1.0" 3296 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3297 | dependencies: 3298 | string-width "^1.0.1" 3299 | strip-ansi "^3.0.1" 3300 | 3301 | wrappy@1: 3302 | version "1.0.2" 3303 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3304 | 3305 | write@^0.2.1: 3306 | version "0.2.1" 3307 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 3308 | dependencies: 3309 | mkdirp "^0.5.1" 3310 | 3311 | xml-name-validator@^2.0.1: 3312 | version "2.0.1" 3313 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 3314 | 3315 | xml2js@0.4.17: 3316 | version "0.4.17" 3317 | resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.17.tgz#17be93eaae3f3b779359c795b419705a8817e868" 3318 | dependencies: 3319 | sax ">=0.6.0" 3320 | xmlbuilder "^4.1.0" 3321 | 3322 | xmlbuilder@4.2.1, xmlbuilder@^4.1.0: 3323 | version "4.2.1" 3324 | resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-4.2.1.tgz#aa58a3041a066f90eaa16c2f5389ff19f3f461a5" 3325 | dependencies: 3326 | lodash "^4.0.0" 3327 | 3328 | "xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0: 3329 | version "4.0.1" 3330 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3331 | 3332 | y18n@^3.2.1: 3333 | version "3.2.1" 3334 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3335 | 3336 | yallist@^2.1.2: 3337 | version "2.1.2" 3338 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3339 | 3340 | yargs-parser@^4.2.0: 3341 | version "4.2.1" 3342 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" 3343 | dependencies: 3344 | camelcase "^3.0.0" 3345 | 3346 | yargs@^6.3.0: 3347 | version "6.6.0" 3348 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" 3349 | dependencies: 3350 | camelcase "^3.0.0" 3351 | cliui "^3.2.0" 3352 | decamelize "^1.1.1" 3353 | get-caller-file "^1.0.1" 3354 | os-locale "^1.4.0" 3355 | read-pkg-up "^1.0.1" 3356 | require-directory "^2.1.1" 3357 | require-main-filename "^1.0.1" 3358 | set-blocking "^2.0.0" 3359 | string-width "^1.0.2" 3360 | which-module "^1.0.0" 3361 | y18n "^3.2.1" 3362 | yargs-parser "^4.2.0" 3363 | 3364 | yargs@~3.10.0: 3365 | version "3.10.0" 3366 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3367 | dependencies: 3368 | camelcase "^1.0.2" 3369 | cliui "^2.1.0" 3370 | decamelize "^1.0.0" 3371 | window-size "0.1.0" 3372 | --------------------------------------------------------------------------------