├── .gitattributes ├── .github └── FUNDING.yml ├── .babelrc ├── .gitignore ├── .editorconfig ├── test ├── lib │ ├── setup.js │ └── client-mock.js └── unit │ ├── log-item.spec.js │ ├── cloudwatch-event-formatter.spec.js │ ├── relay.spec.js │ ├── queue.spec.js │ └── cloudwatch-client.spec.js ├── lib ├── log-item.js ├── queue.js ├── cloudwatch-event-formatter.js ├── index.js ├── relay.js └── cloudwatch-client.js ├── LICENSE ├── .circleci └── config.yml ├── README.md ├── package.json └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: timdp 2 | -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["env", {"targets": {"node": 6}}]], 3 | "plugins": ["transform-runtime"] 4 | } 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Thumbs.db 2 | .DS_Store 3 | npm-debug.log 4 | yarn-error.log 5 | node_modules/ 6 | test-results.xml 7 | coverage/ 8 | .nyc_output/ 9 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | end_of_line = lf 6 | indent_style = space 7 | indent_size = 2 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | -------------------------------------------------------------------------------- /test/lib/setup.js: -------------------------------------------------------------------------------- 1 | const chai = require('chai') 2 | const chaiAsPromised = require('chai-as-promised') 3 | const sinonChai = require('sinon-chai') 4 | const sinon = require('sinon') 5 | 6 | chai.use(chaiAsPromised) 7 | chai.use(sinonChai) 8 | 9 | global.expect = chai.expect 10 | global.sinon = sinon 11 | -------------------------------------------------------------------------------- /lib/log-item.js: -------------------------------------------------------------------------------- 1 | class LogItem { 2 | constructor (date, level, message, meta, callback) { 3 | this._date = date 4 | this._level = level 5 | this._message = message 6 | this._meta = meta 7 | this._callback = callback 8 | } 9 | 10 | get date () { 11 | return this._date 12 | } 13 | 14 | get level () { 15 | return this._level 16 | } 17 | 18 | get message () { 19 | return this._message 20 | } 21 | 22 | get meta () { 23 | return this._meta 24 | } 25 | 26 | get callback () { 27 | return this._callback 28 | } 29 | } 30 | 31 | module.exports = LogItem 32 | -------------------------------------------------------------------------------- /lib/queue.js: -------------------------------------------------------------------------------- 1 | const _debug = require('debug') 2 | 3 | const debug = _debug('winston-aws-cloudwatch:Queue') 4 | 5 | class Queue { 6 | constructor () { 7 | this._contents = [] 8 | } 9 | 10 | get size () { 11 | return this._contents.length 12 | } 13 | 14 | push (item) { 15 | debug('push', { item }) 16 | this._contents.push(item) 17 | } 18 | 19 | head (num) { 20 | debug('head', { num }) 21 | return this._contents.slice(0, num) 22 | } 23 | 24 | remove (num) { 25 | debug('remove', { num }) 26 | this._contents.splice(0, num) 27 | } 28 | } 29 | 30 | module.exports = Queue 31 | -------------------------------------------------------------------------------- /test/lib/client-mock.js: -------------------------------------------------------------------------------- 1 | class MockClient { 2 | constructor (failures = []) { 3 | this._submitted = [] 4 | this._failures = failures.slice() 5 | } 6 | 7 | submit (batch) { 8 | if (this._failures.length === 0) { 9 | this._submitted = this._submitted.concat(batch) 10 | return Promise.resolve() 11 | } else { 12 | const code = this._failures.shift() 13 | const error = new Error(code) 14 | error.code = code 15 | return Promise.reject(error) 16 | } 17 | } 18 | 19 | get submitted () { 20 | return this._submitted 21 | } 22 | } 23 | 24 | module.exports = MockClient 25 | -------------------------------------------------------------------------------- /lib/cloudwatch-event-formatter.js: -------------------------------------------------------------------------------- 1 | const isEmpty = require('lodash.isempty') 2 | 3 | class CloudWatchEventFormatter { 4 | constructor ({ formatLog, formatLogItem } = {}) { 5 | if (typeof formatLog === 'function') { 6 | this.formatLog = formatLog 7 | } else if (typeof formatLogItem === 'function') { 8 | this.formatLogItem = formatLogItem 9 | } 10 | } 11 | 12 | formatLogItem (item) { 13 | return { 14 | message: this.formatLog(item), 15 | timestamp: item.date 16 | } 17 | } 18 | 19 | formatLog (item) { 20 | const meta = isEmpty(item.meta) 21 | ? '' 22 | : ' ' + JSON.stringify(item.meta, null, 2) 23 | return `[${item.level.toUpperCase()}] ${item.message}${meta}` 24 | } 25 | } 26 | 27 | module.exports = CloudWatchEventFormatter 28 | -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- 1 | const Transport = require('winston-transport') 2 | const CloudWatchClient = require('./cloudwatch-client') 3 | const LogItem = require('./log-item') 4 | const Relay = require('./relay') 5 | 6 | class CloudWatchTransport extends Transport { 7 | constructor (options) { 8 | super(options) 9 | const client = new CloudWatchClient( 10 | options.logGroupName, 11 | options.logStreamName, 12 | options 13 | ) 14 | this._relay = new Relay(client, options) 15 | this._relay.on('error', err => this.emit('error', err)) 16 | this._relay.start() 17 | } 18 | 19 | log (info, callback) { 20 | const level = info.level 21 | const msg = info.message 22 | const meta = Object.assign({}, info) 23 | delete meta.level 24 | delete meta.message 25 | this._relay.submit(new LogItem(+new Date(), level, msg, meta, callback)) 26 | } 27 | } 28 | 29 | module.exports = CloudWatchTransport 30 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2017 Tim De Pauw 2 | 3 | Permission is hereby granted, free of charge, to any person 4 | obtaining a copy of this software and associated documentation 5 | files (the "Software"), to deal in the Software without 6 | restriction, including without limitation the rights to use, 7 | copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | copies of the Software, and to permit persons to whom the 9 | Software is furnished to do so, subject to the following 10 | conditions: 11 | 12 | The above copyright notice and this permission notice shall be 13 | included in all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 17 | OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 19 | HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 20 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 | OTHER DEALINGS IN THE SOFTWARE. 23 | -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- 1 | version: 2.0 2 | 3 | jobs: 4 | node-8: 5 | docker: 6 | - image: circleci/node:8-stretch 7 | working_directory: ~/code 8 | steps: 9 | - run: 10 | name: Install Yarn 11 | command: | 12 | sudo apt-get update 13 | sudo apt-get install apt-transport-https 14 | curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - 15 | echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list 16 | sudo apt-get update 17 | sudo rm -f /usr/local/bin/yarn 18 | sudo apt-get install --no-install-recommends yarn=1.9.4-1 19 | - run: 20 | name: Create test result directory 21 | command: mkdir -p /tmp/test-results/unit 22 | - checkout 23 | - restore_cache: 24 | keys: 25 | - v1-dependencies-{{ checksum "yarn.lock" }} 26 | - run: 27 | name: Install dependencies 28 | command: yarn 29 | - save_cache: 30 | paths: 31 | - node_modules 32 | key: v1-dependencies-{{ checksum "yarn.lock" }} 33 | - run: 34 | name: Run tests 35 | command: yarn run test:ci 36 | environment: 37 | MOCHA_FILE: /tmp/test-results/unit/report.xml 38 | - store_test_results: 39 | path: /tmp/test-results 40 | when: always 41 | - store_artifacts: 42 | path: /tmp/test-results 43 | destination: test-results 44 | when: always 45 | 46 | workflows: 47 | version: 2 48 | build: 49 | jobs: 50 | - node-8 51 | -------------------------------------------------------------------------------- /test/unit/log-item.spec.js: -------------------------------------------------------------------------------- 1 | const LogItem = require('../../lib/log-item') 2 | 3 | describe('LogItem', () => { 4 | describe('#date', () => { 5 | it("returns the item's date", () => { 6 | const date = +new Date() 7 | const level = 'info' 8 | const message = 'Hello, world' 9 | const meta = {} 10 | const callback = () => {} 11 | const item = new LogItem(date, level, message, meta, callback) 12 | expect(item.date).to.equal(date) 13 | }) 14 | }) 15 | 16 | describe('#level', () => { 17 | it("returns the item's level", () => { 18 | const date = +new Date() 19 | const level = 'info' 20 | const message = 'Hello, world' 21 | const meta = {} 22 | const callback = () => {} 23 | const item = new LogItem(date, level, message, meta, callback) 24 | expect(item.level).to.equal(level) 25 | }) 26 | }) 27 | 28 | describe('#message', () => { 29 | it("returns the item's message", () => { 30 | const date = +new Date() 31 | const level = 'info' 32 | const message = 'Hello, world' 33 | const meta = {} 34 | const callback = () => {} 35 | const item = new LogItem(date, level, message, meta, callback) 36 | expect(item.message).to.equal(message) 37 | }) 38 | }) 39 | 40 | describe('#meta', () => { 41 | it("returns the item's meta object", () => { 42 | const date = +new Date() 43 | const level = 'info' 44 | const message = 'Hello, world' 45 | const meta = {} 46 | const callback = () => {} 47 | const item = new LogItem(date, level, message, meta, callback) 48 | expect(item.meta).to.deep.equal(meta) 49 | }) 50 | }) 51 | 52 | describe('#callback', () => { 53 | it("returns the item's callback function", () => { 54 | const date = +new Date() 55 | const level = 'info' 56 | const message = 'Hello, world' 57 | const meta = {} 58 | const callback = () => {} 59 | const item = new LogItem(date, level, message, meta, callback) 60 | expect(item.callback).to.equal(callback) 61 | }) 62 | }) 63 | }) 64 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # winston-aws-cloudwatch 2 | 3 | [![npm](https://img.shields.io/npm/v/winston-aws-cloudwatch.svg)](https://www.npmjs.com/package/winston-aws-cloudwatch) [![Dependencies](https://img.shields.io/david/timdp/winston-aws-cloudwatch.svg)](https://david-dm.org/timdp/winston-aws-cloudwatch) [![Build Status](https://img.shields.io/circleci/project/github/timdp/winston-aws-cloudwatch/master.svg?label=build)](https://circleci.com/gh/timdp/winston-aws-cloudwatch) [![Coverage Status](https://img.shields.io/coveralls/timdp/winston-aws-cloudwatch/master.svg)](https://coveralls.io/r/timdp/winston-aws-cloudwatch) [![JavaScript Standard Style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg)](https://standardjs.com/) 4 | 5 | A [Winston](https://www.npmjs.com/package/winston) transport for 6 | [Amazon CloudWatch](https://aws.amazon.com/cloudwatch/). 7 | 8 | ## Usage 9 | 10 | ```js 11 | const winston = require('winston') 12 | const CloudWatchTransport = require('winston-aws-cloudwatch') 13 | 14 | const logger = winston.createLogger({ 15 | transports: [ 16 | new CloudWatchTransport({ 17 | logGroupName: '...', // REQUIRED 18 | logStreamName: '...', // REQUIRED 19 | createLogGroup: true, 20 | createLogStream: true, 21 | submissionInterval: 2000, 22 | submissionRetryCount: 1, 23 | batchSize: 20, 24 | awsConfig: { 25 | accessKeyId: '...', 26 | secretAccessKey: '...', 27 | region: '...' 28 | }, 29 | formatLog: item => 30 | `${item.level}: ${item.message} ${JSON.stringify(item.meta)}` 31 | }) 32 | ] 33 | }) 34 | ``` 35 | 36 | ## Error Handling 37 | 38 | If, for any reason, logging to CloudWatch should fail, then the transport will 39 | emit an `error` event. It is recommended that you 40 | [subscribe to this event](https://www.npmjs.com/package/winston#awaiting-logs-to-be-written-in-winston) 41 | to avoid crashes. 42 | 43 | ## But Why? 44 | 45 | As you may have noticed, there is also 46 | [winston-cloudwatch](https://www.npmjs.com/package/winston-cloudwatch), which 47 | predates this module. After making some contributions to that one, I felt like 48 | writing my own version. Feel free to use whichever you like best. 49 | 50 | ## Author 51 | 52 | [Tim De Pauw](https://tmdpw.eu/) 53 | 54 | ## License 55 | 56 | MIT 57 | -------------------------------------------------------------------------------- /lib/relay.js: -------------------------------------------------------------------------------- 1 | const _debug = require('debug') 2 | const Bottleneck = require('bottleneck') 3 | const Queue = require('./queue') 4 | const { EventEmitter } = require('events') 5 | 6 | const debug = _debug('winston-aws-cloudwatch:Relay') 7 | 8 | const DEFAULT_OPTIONS = { 9 | submissionInterval: 2000, 10 | batchSize: 20 11 | } 12 | 13 | class Relay extends EventEmitter { 14 | constructor (client, options) { 15 | super() 16 | debug('constructor', { client, options }) 17 | this._client = client 18 | this._options = Object.assign({}, DEFAULT_OPTIONS, options) 19 | this._limiter = null 20 | this._queue = null 21 | } 22 | 23 | start () { 24 | debug('start') 25 | if (this._queue) { 26 | throw new Error('Already started') 27 | } 28 | this._limiter = new Bottleneck(1, this._options.submissionInterval, 1) 29 | this._queue = new Queue() 30 | // Initial call to postpone first submission 31 | this._limiter.schedule(() => Promise.resolve()) 32 | } 33 | 34 | submit (item) { 35 | this._queue.push(item) 36 | this._scheduleSubmission() 37 | } 38 | 39 | _scheduleSubmission () { 40 | debug('scheduleSubmission') 41 | this._limiter.schedule(() => this._submit()) 42 | } 43 | 44 | _submit () { 45 | if (this._queue.size === 0) { 46 | debug('submit: queue empty') 47 | return Promise.resolve() 48 | } 49 | const batch = this._queue.head(this._options.batchSize) 50 | debug(`submit: submitting ${batch.length} item(s)`) 51 | return this._client 52 | .submit(batch) 53 | .then(() => this._onSubmitted(batch), err => this._onError(err, batch)) 54 | .then(() => this._scheduleSubmission()) 55 | } 56 | 57 | _onSubmitted (batch) { 58 | debug('onSubmitted', { batch }) 59 | this._queue.remove(batch.length) 60 | for (let i = 0; i < batch.length; ++i) { 61 | const item = batch[i] 62 | item.callback(null, true) 63 | } 64 | } 65 | 66 | _onError (err, batch) { 67 | debug('onError', { error: err }) 68 | if (err.code === 'DataAlreadyAcceptedException') { 69 | // Assume the request got replayed and remove the batch 70 | this._queue.remove(batch.length) 71 | } else if (err.code === 'InvalidSequenceTokenException') { 72 | // Keep retrying 73 | } else { 74 | this.emit('error', err) 75 | } 76 | } 77 | } 78 | 79 | module.exports = Relay 80 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "winston-aws-cloudwatch", 3 | "version": "3.0.0", 4 | "description": "A Winston transport for Amazon CloudWatch.", 5 | "keywords": [ 6 | "amazon", 7 | "aws", 8 | "cloudwatch", 9 | "winston", 10 | "log", 11 | "logs", 12 | "logging", 13 | "cloud", 14 | "saas" 15 | ], 16 | "author": "Tim De Pauw (https://tmdpw.eu/)", 17 | "engines": { 18 | "node": ">=8", 19 | "yarn": ">=1.6.0" 20 | }, 21 | "peerDependencies": { 22 | "winston": "^3.0.0" 23 | }, 24 | "dependencies": { 25 | "aws-sdk": "^2.293.0", 26 | "bottleneck": "^1.16.0", 27 | "debug": "^3.1.0", 28 | "lodash.isempty": "^4.2.1", 29 | "winston-transport": "^4.2.0" 30 | }, 31 | "devDependencies": { 32 | "chai": "^4.0.2", 33 | "chai-as-promised": "^7.0.0", 34 | "coveralls": "^3.0.2", 35 | "delay": "^3.0.0", 36 | "husky": "^0.14.3", 37 | "lint-staged": "^7.2.2", 38 | "mocha": "^5.2.0", 39 | "mocha-junit-reporter": "^1.18.0", 40 | "nyc": "^12.0.2", 41 | "prettier-standard": "^8.0.1", 42 | "rimraf": "^2.6.1", 43 | "sinon": "^6.1.5", 44 | "sinon-chai": "^3.2.0", 45 | "standard": "^10.0.0" 46 | }, 47 | "main": "lib/index.js", 48 | "files": [ 49 | "lib/" 50 | ], 51 | "scripts": { 52 | "test": "yarn run test:lint && yarn run test:cover", 53 | "test:lint": "standard '{lib,test}/**/*.js'", 54 | "test:unit": "mocha 'test/lib/setup.js' 'test/**/*.spec.js'", 55 | "test:cover": "nyc yarn run test:unit", 56 | "test:ci": "yarn run test:lint && yarn run test:ci:cover && yarn run test:ci:report", 57 | "test:ci:cover": "nyc mocha --reporter mocha-junit-reporter 'test/lib/setup.js' 'test/**/*.spec.js'", 58 | "test:ci:report": "nyc report --reporter text-lcov | coveralls", 59 | "format": "prettier-standard '{lib,test}/**/*.js'", 60 | "precommit": "lint-staged" 61 | }, 62 | "repository": "timdp/winston-aws-cloudwatch", 63 | "bugs": "https://github.com/timdp/winston-aws-cloudwatch/issues", 64 | "license": "MIT", 65 | "standard": { 66 | "globals": [ 67 | "describe", 68 | "it", 69 | "expect", 70 | "before", 71 | "after", 72 | "beforeEach", 73 | "afterEach", 74 | "sinon" 75 | ] 76 | }, 77 | "lint-staged": { 78 | "*.js": [ 79 | "prettier-standard", 80 | "git add" 81 | ] 82 | } 83 | } 84 | -------------------------------------------------------------------------------- /test/unit/cloudwatch-event-formatter.spec.js: -------------------------------------------------------------------------------- 1 | const CloudWatchEventFormatter = require('../../lib/cloudwatch-event-formatter') 2 | const LogItem = require('../../lib/log-item') 3 | 4 | describe('CloudWatchEventFormatter', () => { 5 | describe('constructor', () => { 6 | it('does not require options', () => { 7 | expect(() => { 8 | return new CloudWatchEventFormatter() 9 | }).to.not.throw(Error) 10 | }) 11 | }) 12 | 13 | describe('#formatLogItem()', () => { 14 | let formatter 15 | 16 | beforeEach(() => { 17 | formatter = new CloudWatchEventFormatter() 18 | }) 19 | 20 | it('formats a log item with metadata', () => { 21 | const date = 123456789 22 | const item = new LogItem( 23 | date, 24 | 'info', 25 | 'Hello, world', 26 | { foo: 'bar' }, 27 | () => {} 28 | ) 29 | const event = formatter.formatLogItem(item) 30 | expect(event.timestamp).to.equal(date) 31 | expect(event.message).to.equal(`[INFO] Hello, world { 32 | "foo": "bar" 33 | }`) 34 | }) 35 | }) 36 | 37 | describe('#formatLog()', () => { 38 | let formatter 39 | 40 | beforeEach(() => { 41 | formatter = new CloudWatchEventFormatter() 42 | }) 43 | 44 | it('formats a log message with metadata', () => { 45 | const date = 123456789 46 | const item = new LogItem( 47 | date, 48 | 'info', 49 | 'Hello, world', 50 | { foo: 'bar' }, 51 | () => {} 52 | ) 53 | const msg = formatter.formatLog(item) 54 | expect(msg).to.equal(`[INFO] Hello, world { 55 | "foo": "bar" 56 | }`) 57 | }) 58 | 59 | it('omits metadata when undefined', () => { 60 | const item = new LogItem( 61 | +new Date(), 62 | 'info', 63 | 'Hello, world', 64 | undefined, 65 | () => {} 66 | ) 67 | const msg = formatter.formatLog(item) 68 | expect(msg).to.equal('[INFO] Hello, world') 69 | }) 70 | 71 | it('omits metadata when empty', () => { 72 | const item = new LogItem( 73 | +new Date(), 74 | 'info', 75 | 'Hello, world', 76 | {}, 77 | () => {} 78 | ) 79 | const msg = formatter.formatLog(item) 80 | expect(msg).to.equal('[INFO] Hello, world') 81 | }) 82 | }) 83 | 84 | describe('#options.formatLog', () => { 85 | it('overrides formatLog', () => { 86 | const formatLog = () => {} 87 | const formatter = new CloudWatchEventFormatter({ formatLog }) 88 | expect(formatter.formatLog).to.equal(formatLog) 89 | }) 90 | }) 91 | 92 | describe('#options.formatLogItem', () => { 93 | it('overrides formatLogItem', () => { 94 | const formatLogItem = () => {} 95 | const formatter = new CloudWatchEventFormatter({ formatLogItem }) 96 | expect(formatter.formatLogItem).to.equal(formatLogItem) 97 | }) 98 | 99 | it('does not override formatLogItem if formatLog is also supplied', () => { 100 | const formatLog = () => {} 101 | const formatLogItem = () => {} 102 | const formatter = new CloudWatchEventFormatter({ 103 | formatLog, 104 | formatLogItem 105 | }) 106 | expect(formatter.formatLog).to.equal(formatLog) 107 | expect(formatter.formatLogItem).to.not.equal(formatLogItem) 108 | }) 109 | }) 110 | }) 111 | -------------------------------------------------------------------------------- /test/unit/relay.spec.js: -------------------------------------------------------------------------------- 1 | const delay = require('delay') 2 | const ClientMock = require('../lib/client-mock') 3 | const Relay = require('../../lib/relay') 4 | 5 | const createItem = () => ({ callback: sinon.spy() }) 6 | 7 | describe('Relay', () => { 8 | describe('#start()', () => { 9 | it('can only be called once', () => { 10 | const relay = new Relay(new ClientMock()) 11 | relay.start() 12 | expect(() => { 13 | relay.start() 14 | }).to.throw(Error) 15 | }) 16 | 17 | it('submits queue items to the client', async () => { 18 | const submissionInterval = 50 19 | const client = new ClientMock() 20 | const relay = new Relay(client, { submissionInterval }) 21 | relay.start() 22 | const items = [createItem(), createItem(), createItem()] 23 | for (const item of items) { 24 | relay.submit(item) 25 | } 26 | await delay(submissionInterval * 1.1) 27 | expect(client.submitted).to.deep.equal(items) 28 | }) 29 | 30 | it('calls the callback function for every item', async () => { 31 | const submissionInterval = 50 32 | const client = new ClientMock() 33 | const relay = new Relay(client, { submissionInterval }) 34 | relay.start() 35 | const items = [createItem(), createItem(), createItem()] 36 | for (const item of items) { 37 | relay.submit(item) 38 | } 39 | await delay(submissionInterval * 1.1) 40 | expect(items.map(item => item.callback.calledOnce)).to.deep.equal( 41 | new Array(items.length).fill(true) 42 | ) 43 | expect(items.map(item => item.callback.args[0])).to.deep.equal( 44 | new Array(items.length).fill([null, true]) 45 | ) 46 | }) 47 | 48 | it('throttles submissions', async () => { 49 | const submissionInterval = 50 50 | const batchSize = 10 51 | const batches = 3 52 | const client = new ClientMock() 53 | const relay = new Relay(client, { submissionInterval, batchSize }) 54 | relay.start() 55 | 56 | for (let i = 0; i < batchSize * batches; ++i) { 57 | relay.submit(createItem()) 58 | } 59 | 60 | const counts = [] 61 | for (let i = 0; i < batches; ++i) { 62 | await delay(submissionInterval * 1.1) 63 | counts.push(client.submitted.length) 64 | } 65 | 66 | const expected = [] 67 | for (let i = 1; i <= batches; ++i) { 68 | expected.push(batchSize * i) 69 | } 70 | 71 | expect(counts).to.deep.equal(expected) 72 | }) 73 | 74 | it('emits an error event', async () => { 75 | const submissionInterval = 50 76 | const failures = ['FAIL', 'FAIL', 'FAIL'] 77 | const spy = sinon.spy() 78 | const client = new ClientMock(failures) 79 | const relay = new Relay(client, { submissionInterval }) 80 | relay.on('error', spy) 81 | relay.start() 82 | relay.submit(createItem()) 83 | await delay(submissionInterval * failures.length * 1.1) 84 | expect(spy.callCount).to.equal(failures.length) 85 | }) 86 | 87 | it('silently handles a DataAlreadyAcceptedException error', async () => { 88 | const submissionInterval = 50 89 | const failures = ['DataAlreadyAcceptedException'] 90 | const spy = sinon.spy() 91 | const client = new ClientMock(failures) 92 | const relay = new Relay(client, { submissionInterval }) 93 | relay.on('error', spy) 94 | relay.start() 95 | relay.submit(createItem()) 96 | await delay(submissionInterval * failures.length * 1.1) 97 | expect(spy.callCount).to.equal(0) 98 | }) 99 | }) 100 | }) 101 | -------------------------------------------------------------------------------- /test/unit/queue.spec.js: -------------------------------------------------------------------------------- 1 | const Queue = require('../../lib/queue') 2 | 3 | const createItem = () => ({ callback () {} }) 4 | 5 | describe('Queue', () => { 6 | describe('#size', () => { 7 | it('is 0 by default', () => { 8 | const queue = new Queue() 9 | expect(queue.size).to.equal(0) 10 | }) 11 | }) 12 | 13 | describe('#push()', () => { 14 | it('adds an item to an empty queue', () => { 15 | const queue = new Queue() 16 | const item = createItem() 17 | queue.push(item) 18 | expect(queue.size).to.equal(1) 19 | }) 20 | 21 | it('adds an item to a non-empty queue', () => { 22 | const queue = new Queue() 23 | for (let i = 0; i < 5; ++i) { 24 | queue.push(createItem()) 25 | } 26 | const prevSize = queue.size 27 | queue.push(createItem()) 28 | expect(queue.size).to.equal(prevSize + 1) 29 | }) 30 | }) 31 | 32 | describe('#head()', () => { 33 | it('returns the first items for a longer queue', () => { 34 | const queue = new Queue() 35 | const items = [] 36 | for (let i = 0; i < 3; ++i) { 37 | const item = createItem() 38 | items.push(item) 39 | queue.push(item) 40 | } 41 | for (let i = 0; i < 7; ++i) { 42 | queue.push(createItem()) 43 | } 44 | expect(queue.head(items.length)).to.deep.equal(items) 45 | }) 46 | 47 | it('returns as many items as it can for a shorter queue', () => { 48 | const queue = new Queue() 49 | const items = [] 50 | for (let i = 0; i < 10; ++i) { 51 | const item = createItem() 52 | items.push(item) 53 | queue.push(item) 54 | } 55 | expect(queue.head(items.length * 2)).to.deep.equal(items) 56 | }) 57 | 58 | it('returns all items for a queue of equal length', () => { 59 | const queue = new Queue() 60 | const items = [] 61 | for (let i = 0; i < 10; ++i) { 62 | const item = createItem() 63 | items.push(item) 64 | queue.push(item) 65 | } 66 | expect(queue.head(items.length)).to.deep.equal(items) 67 | }) 68 | 69 | it('returns no items for an empty queue', () => { 70 | const queue = new Queue() 71 | expect(queue.head(10)).to.deep.equal([]) 72 | }) 73 | 74 | it('returns no items when asked to do so', () => { 75 | const queue = new Queue() 76 | for (let i = 0; i < 10; ++i) { 77 | queue.push(createItem()) 78 | } 79 | expect(queue.head(0)).to.deep.equal([]) 80 | }) 81 | }) 82 | 83 | describe('#remove()', () => { 84 | it('removes the first items for a longer queue', () => { 85 | const queue = new Queue() 86 | const items = [] 87 | for (let i = 0; i < 3; ++i) { 88 | queue.push(createItem()) 89 | } 90 | for (let i = 0; i < 7; ++i) { 91 | const item = createItem() 92 | items.push(item) 93 | queue.push(item) 94 | } 95 | queue.remove(3) 96 | expect(queue.size).to.equal(items.length) 97 | expect(queue.head(items.length)).to.deep.equal(items) 98 | }) 99 | 100 | it('removes all items for a queue of equal length', () => { 101 | const queue = new Queue() 102 | const items = [] 103 | for (let i = 0; i < 10; ++i) { 104 | const item = createItem() 105 | items.push(item) 106 | queue.push(item) 107 | } 108 | queue.remove(items.length) 109 | expect(queue.size).to.equal(0) 110 | }) 111 | 112 | it('removes no items when asked to do so', () => { 113 | const queue = new Queue() 114 | const items = [] 115 | for (let i = 0; i < 10; ++i) { 116 | const item = createItem() 117 | items.push(item) 118 | queue.push(item) 119 | } 120 | queue.remove(0) 121 | expect(queue.size).to.equal(items.length) 122 | expect(queue.head(10)).to.deep.equal(items) 123 | }) 124 | }) 125 | }) 126 | -------------------------------------------------------------------------------- /lib/cloudwatch-client.js: -------------------------------------------------------------------------------- 1 | const _debug = require('debug') 2 | const AWS = require('aws-sdk') 3 | const CloudWatchEventFormatter = require('./cloudwatch-event-formatter') 4 | 5 | const debug = _debug('winston-aws-cloudwatch:CloudWatchClient') 6 | 7 | const DEFAULT_OPTIONS = { 8 | awsConfig: null, 9 | formatLog: null, 10 | formatLogItem: null, 11 | createLogGroup: false, 12 | createLogStream: false, 13 | submissionRetryCount: 1 14 | } 15 | 16 | class CloudWatchClient { 17 | constructor (logGroupName, logStreamName, options) { 18 | debug('constructor', { logGroupName, logStreamName, options }) 19 | this._logGroupName = logGroupName 20 | this._logStreamName = logStreamName 21 | this._options = Object.assign({}, DEFAULT_OPTIONS, options) 22 | this._formatter = new CloudWatchEventFormatter(this._options) 23 | this._sequenceToken = null 24 | this._client = new AWS.CloudWatchLogs(this._options.awsConfig) 25 | this._initializing = null 26 | } 27 | 28 | submit (batch) { 29 | debug('submit', { batch }) 30 | return this._initialize().then(() => this._doSubmit(batch, 0)) 31 | } 32 | 33 | _initialize () { 34 | if (this._initializing == null) { 35 | this._initializing = this._maybeCreateLogGroup().then(() => 36 | this._maybeCreateLogStream() 37 | ) 38 | } 39 | return this._initializing 40 | } 41 | 42 | _maybeCreateLogGroup () { 43 | if (!this._options.createLogGroup) { 44 | return Promise.resolve() 45 | } 46 | const params = { 47 | logGroupName: this._logGroupName 48 | } 49 | return this._client 50 | .createLogGroup(params) 51 | .promise() 52 | .catch(err => this._allowResourceAlreadyExistsException(err)) 53 | } 54 | 55 | _maybeCreateLogStream () { 56 | if (!this._options.createLogStream) { 57 | return Promise.resolve() 58 | } 59 | const params = { 60 | logGroupName: this._logGroupName, 61 | logStreamName: this._logStreamName 62 | } 63 | return this._client 64 | .createLogStream(params) 65 | .promise() 66 | .catch(err => this._allowResourceAlreadyExistsException(err)) 67 | } 68 | 69 | _allowResourceAlreadyExistsException (err) { 70 | return err.code === 'ResourceAlreadyExistsException' 71 | ? Promise.resolve() 72 | : Promise.reject(err) 73 | } 74 | 75 | _doSubmit (batch, retryCount) { 76 | return this._maybeUpdateSequenceToken() 77 | .then(() => this._putLogEventsAndStoreSequenceToken(batch)) 78 | .catch(err => this._handlePutError(err, batch, retryCount)) 79 | } 80 | 81 | _maybeUpdateSequenceToken () { 82 | return this._sequenceToken != null 83 | ? Promise.resolve() 84 | : this._fetchAndStoreSequenceToken() 85 | } 86 | 87 | _handlePutError (err, batch, retryCount) { 88 | if (err.code !== 'InvalidSequenceTokenException') { 89 | return Promise.reject(err) 90 | } 91 | if (retryCount >= this._options.submissionRetryCount) { 92 | const error = new Error('Invalid sequence token, will retry') 93 | error.code = 'InvalidSequenceTokenException' 94 | return Promise.reject(error) 95 | } 96 | this._sequenceToken = null 97 | return this._doSubmit(batch, retryCount + 1) 98 | } 99 | 100 | _putLogEventsAndStoreSequenceToken (batch) { 101 | return this._putLogEvents(batch).then(({ nextSequenceToken }) => 102 | this._storeSequenceToken(nextSequenceToken) 103 | ) 104 | } 105 | 106 | _putLogEvents (batch) { 107 | const sequenceToken = this._sequenceToken 108 | debug('putLogEvents', { batch, sequenceToken }) 109 | const params = { 110 | logGroupName: this._logGroupName, 111 | logStreamName: this._logStreamName, 112 | logEvents: batch.map(item => this._formatter.formatLogItem(item)), 113 | sequenceToken 114 | } 115 | return this._client.putLogEvents(params).promise() 116 | } 117 | 118 | _fetchAndStoreSequenceToken () { 119 | debug('fetchSequenceToken') 120 | return this._findLogStream().then(({ uploadSequenceToken }) => 121 | this._storeSequenceToken(uploadSequenceToken) 122 | ) 123 | } 124 | 125 | _storeSequenceToken (sequenceToken) { 126 | debug('storeSequenceToken', { sequenceToken }) 127 | this._sequenceToken = sequenceToken 128 | return sequenceToken 129 | } 130 | 131 | _findLogStream (nextToken) { 132 | debug('findLogStream', { nextToken }) 133 | const params = { 134 | logGroupName: this._logGroupName, 135 | logStreamNamePrefix: this._logStreamName, 136 | nextToken 137 | } 138 | return this._client 139 | .describeLogStreams(params) 140 | .promise() 141 | .then(({ logStreams, nextToken }) => { 142 | const match = logStreams.find( 143 | ({ logStreamName }) => logStreamName === this._logStreamName 144 | ) 145 | if (match) { 146 | return match 147 | } 148 | if (nextToken == null) { 149 | throw new Error('Log stream not found') 150 | } 151 | return this._findLogStream(nextToken) 152 | }) 153 | } 154 | } 155 | 156 | module.exports = CloudWatchClient 157 | -------------------------------------------------------------------------------- /test/unit/cloudwatch-client.spec.js: -------------------------------------------------------------------------------- 1 | const CloudWatchClient = require('../../lib/cloudwatch-client') 2 | const LogItem = require('../../lib/log-item') 3 | 4 | const logGroupName = 'testGroup' 5 | const logStreamName = 'testStream' 6 | 7 | let tokens = 0 8 | let streams = 0 9 | 10 | const withPromise = res => ({ promise: () => res }) 11 | 12 | const mapRequest = (stub, includeExpected, token, nextToken) => { 13 | const suffixes = [++streams, ++streams, includeExpected ? '' : ++streams] 14 | const res = Promise.resolve({ 15 | logStreams: suffixes.map(suf => ({ logStreamName: logStreamName + suf })), 16 | nextToken 17 | }) 18 | if (token) { 19 | stub.withArgs(sinon.match({ nextToken: token })).returns(withPromise(res)) 20 | } else { 21 | stub.returns(withPromise(res)) 22 | } 23 | } 24 | 25 | const mapRequests = (stub, pages, includeExpected) => { 26 | let prevToken = null 27 | for (let i = 0; i < pages - 1; ++i) { 28 | let token = 'token' + ++tokens 29 | mapRequest(stub, false, prevToken, token) 30 | prevToken = token 31 | } 32 | mapRequest(stub, includeExpected, prevToken) 33 | } 34 | 35 | const createErrorWithCode = code => { 36 | const error = new Error('Whoopsie daisies') 37 | error.code = code 38 | return error 39 | } 40 | 41 | const streamsStrategies = { 42 | default: stub => mapRequest(stub, true), 43 | notFound: stub => mapRequest(stub, false), 44 | paged: stub => mapRequests(stub, 3, true), 45 | pagedNotFound: stub => mapRequests(stub, 3, false) 46 | } 47 | 48 | const createClient = options => { 49 | options = Object.assign( 50 | { 51 | clientOptions: null, 52 | streamsStrategy: streamsStrategies.default, 53 | groupErrorCode: null, 54 | streamErrorCode: false, 55 | putRejectionCode: null 56 | }, 57 | options 58 | ) 59 | const client = new CloudWatchClient( 60 | logGroupName, 61 | logStreamName, 62 | options.clientOptions 63 | ) 64 | let putPromise 65 | if (options.putRejectionCode != null) { 66 | const err = new Error() 67 | err.code = options.putRejectionCode 68 | putPromise = Promise.reject(err) 69 | } else { 70 | putPromise = Promise.resolve({ nextSequenceToken: 'token42' }) 71 | } 72 | sinon.stub(client._client, 'putLogEvents').returns(withPromise(putPromise)) 73 | sinon 74 | .stub(client._client, 'createLogGroup') 75 | .returns( 76 | withPromise( 77 | options.groupErrorCode 78 | ? Promise.reject(createErrorWithCode(options.groupErrorCode)) 79 | : Promise.resolve() 80 | ) 81 | ) 82 | sinon 83 | .stub(client._client, 'createLogStream') 84 | .returns( 85 | withPromise( 86 | options.streamErrorCode 87 | ? Promise.reject(createErrorWithCode(options.streamErrorCode)) 88 | : Promise.resolve() 89 | ) 90 | ) 91 | const stub = sinon.stub(client._client, 'describeLogStreams') 92 | options.streamsStrategy(stub) 93 | return client 94 | } 95 | 96 | const createBatch = size => { 97 | const batch = [] 98 | for (let i = 0; i < size; ++i) { 99 | batch.push( 100 | new LogItem(+new Date(), 'info', 'Test', { foo: 'bar' }, () => {}) 101 | ) 102 | } 103 | return batch 104 | } 105 | 106 | describe('CloudWatchClient', () => { 107 | describe('#submit()', () => { 108 | it('calls putLogEvents', () => { 109 | const client = createClient() 110 | const batch = createBatch(1) 111 | return expect( 112 | client.submit(batch).then(() => client._client.putLogEvents.calledOnce) 113 | ).to.eventually.equal(true) 114 | }) 115 | 116 | it('handles log stream paging', () => { 117 | const client = createClient({ 118 | streamsStrategy: streamsStrategies.paged 119 | }) 120 | const batch = createBatch(1) 121 | return expect( 122 | client 123 | .submit(batch) 124 | .then(() => client._client.describeLogStreams.callCount) 125 | ).to.eventually.equal(3) 126 | }) 127 | 128 | it('rejects after retrying upon InvalidSequenceTokenException', () => { 129 | const client = createClient({ 130 | putRejectionCode: 'InvalidSequenceTokenException' 131 | }) 132 | const batch = createBatch(1) 133 | return expect(client.submit(batch)).to.be.rejectedWith( 134 | 'Invalid sequence token, will retry' 135 | ) 136 | }) 137 | 138 | it('rejects if the log stream is not found in a single page', () => { 139 | const client = createClient({ 140 | streamsStrategy: streamsStrategies.notFound 141 | }) 142 | const batch = createBatch(1) 143 | return expect(client.submit(batch)).to.be.rejected 144 | }) 145 | 146 | it('rejects if the log stream is not found in multiple pages', () => { 147 | const client = createClient({ 148 | streamsStrategy: streamsStrategies.pagedNotFound 149 | }) 150 | const batch = createBatch(1) 151 | return expect(client.submit(batch)).to.be.rejected 152 | }) 153 | }) 154 | 155 | describe('#options.formatLog', () => { 156 | it('uses the custom formatter', () => { 157 | const formatLog = sinon.spy(item => { 158 | return `CUSTOM__${JSON.stringify(item)}` 159 | }) 160 | const client = createClient({ 161 | clientOptions: { formatLog } 162 | }) 163 | const batch = createBatch(1) 164 | return expect( 165 | client.submit(batch).then(() => formatLog.calledOnce) 166 | ).to.eventually.equal(true) 167 | }) 168 | }) 169 | 170 | describe('#options.formatLogItem', () => { 171 | it('uses the custom formatter', () => { 172 | const formatLogItem = sinon.spy(item => { 173 | return { 174 | timestamp: item.date, 175 | message: `CUSTOM__${JSON.stringify(item)}` 176 | } 177 | }) 178 | const client = createClient({ 179 | clientOptions: { formatLogItem } 180 | }) 181 | const batch = createBatch(1) 182 | return expect( 183 | client.submit(batch).then(() => formatLogItem.calledOnce) 184 | ).to.eventually.equal(true) 185 | }) 186 | 187 | it('does not use the custom formatter if formatLog is specified', () => { 188 | const formatLog = sinon.spy(item => { 189 | return `CUSTOM__${JSON.stringify(item)}` 190 | }) 191 | const formatLogItem = sinon.spy(item => { 192 | return { 193 | timestamp: item.date, 194 | message: `CUSTOM__${JSON.stringify(item)}` 195 | } 196 | }) 197 | const client = createClient({ 198 | clientOptions: { formatLog, formatLogItem } 199 | }) 200 | const batch = createBatch(1) 201 | return expect( 202 | client.submit(batch).then(() => formatLogItem.calledOnce) 203 | ).to.eventually.equal(false) 204 | }) 205 | }) 206 | 207 | describe('#options.createLogGroup', () => { 208 | it('creates the log group', () => { 209 | const client = createClient({ 210 | clientOptions: { createLogGroup: true } 211 | }) 212 | const batch = createBatch(1) 213 | return expect( 214 | client 215 | .submit(batch) 216 | .then(() => client._client.createLogGroup.calledOnce) 217 | ).to.eventually.equal(true) 218 | }) 219 | 220 | it('does not throw if the log group already exists', () => { 221 | const client = createClient({ 222 | clientOptions: { createLogGroup: true }, 223 | groupErrorCode: 'ResourceAlreadyExistsException' 224 | }) 225 | const batch = createBatch(1) 226 | return expect(client.submit(batch)).to.be.fulfilled 227 | }) 228 | 229 | it('throws if another error occurs', () => { 230 | const client = createClient({ 231 | clientOptions: { createLogGroup: true }, 232 | groupErrorCode: 'UnicornDoesNotExistException' 233 | }) 234 | const batch = createBatch(1) 235 | return expect(client.submit(batch)).to.be.rejected 236 | }) 237 | }) 238 | 239 | describe('#options.createLogStream', () => { 240 | it('creates the log stream', () => { 241 | const client = createClient({ 242 | clientOptions: { createLogStream: true } 243 | }) 244 | const batch = createBatch(1) 245 | return expect( 246 | client 247 | .submit(batch) 248 | .then(() => client._client.createLogStream.calledOnce) 249 | ).to.eventually.equal(true) 250 | }) 251 | 252 | it('does not throw if the log stream already exists', () => { 253 | const client = createClient({ 254 | clientOptions: { createLogStream: true }, 255 | streamErrorCode: 'ResourceAlreadyExistsException' 256 | }) 257 | const batch = createBatch(1) 258 | return expect(client.submit(batch)).to.be.fulfilled 259 | }) 260 | 261 | it('throws if another error occurs', () => { 262 | const client = createClient({ 263 | clientOptions: { createLogStream: true }, 264 | streamErrorCode: 'UnicornDoesNotExistException' 265 | }) 266 | const batch = createBatch(1) 267 | return expect(client.submit(batch)).to.be.rejected 268 | }) 269 | }) 270 | }) 271 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@7.0.0-beta.44": 6 | version "7.0.0-beta.44" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0-beta.44.tgz#2a02643368de80916162be70865c97774f3adbd9" 8 | dependencies: 9 | "@babel/highlight" "7.0.0-beta.44" 10 | 11 | "@babel/code-frame@7.0.0-beta.51": 12 | version "7.0.0-beta.51" 13 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0-beta.51.tgz#bd71d9b192af978df915829d39d4094456439a0c" 14 | dependencies: 15 | "@babel/highlight" "7.0.0-beta.51" 16 | 17 | "@babel/generator@7.0.0-beta.44": 18 | version "7.0.0-beta.44" 19 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.0.0-beta.44.tgz#c7e67b9b5284afcf69b309b50d7d37f3e5033d42" 20 | dependencies: 21 | "@babel/types" "7.0.0-beta.44" 22 | jsesc "^2.5.1" 23 | lodash "^4.2.0" 24 | source-map "^0.5.0" 25 | trim-right "^1.0.1" 26 | 27 | "@babel/generator@7.0.0-beta.51": 28 | version "7.0.0-beta.51" 29 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.0.0-beta.51.tgz#6c7575ffde761d07485e04baedc0392c6d9e30f6" 30 | dependencies: 31 | "@babel/types" "7.0.0-beta.51" 32 | jsesc "^2.5.1" 33 | lodash "^4.17.5" 34 | source-map "^0.5.0" 35 | trim-right "^1.0.1" 36 | 37 | "@babel/helper-function-name@7.0.0-beta.44": 38 | version "7.0.0-beta.44" 39 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.0.0-beta.44.tgz#e18552aaae2231100a6e485e03854bc3532d44dd" 40 | dependencies: 41 | "@babel/helper-get-function-arity" "7.0.0-beta.44" 42 | "@babel/template" "7.0.0-beta.44" 43 | "@babel/types" "7.0.0-beta.44" 44 | 45 | "@babel/helper-function-name@7.0.0-beta.51": 46 | version "7.0.0-beta.51" 47 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.0.0-beta.51.tgz#21b4874a227cf99ecafcc30a90302da5a2640561" 48 | dependencies: 49 | "@babel/helper-get-function-arity" "7.0.0-beta.51" 50 | "@babel/template" "7.0.0-beta.51" 51 | "@babel/types" "7.0.0-beta.51" 52 | 53 | "@babel/helper-get-function-arity@7.0.0-beta.44": 54 | version "7.0.0-beta.44" 55 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0-beta.44.tgz#d03ca6dd2b9f7b0b1e6b32c56c72836140db3a15" 56 | dependencies: 57 | "@babel/types" "7.0.0-beta.44" 58 | 59 | "@babel/helper-get-function-arity@7.0.0-beta.51": 60 | version "7.0.0-beta.51" 61 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0-beta.51.tgz#3281b2d045af95c172ce91b20825d85ea4676411" 62 | dependencies: 63 | "@babel/types" "7.0.0-beta.51" 64 | 65 | "@babel/helper-split-export-declaration@7.0.0-beta.44": 66 | version "7.0.0-beta.44" 67 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.0.0-beta.44.tgz#c0b351735e0fbcb3822c8ad8db4e583b05ebd9dc" 68 | dependencies: 69 | "@babel/types" "7.0.0-beta.44" 70 | 71 | "@babel/helper-split-export-declaration@7.0.0-beta.51": 72 | version "7.0.0-beta.51" 73 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.0.0-beta.51.tgz#8a6c3f66c4d265352fc077484f9f6e80a51ab978" 74 | dependencies: 75 | "@babel/types" "7.0.0-beta.51" 76 | 77 | "@babel/highlight@7.0.0-beta.44": 78 | version "7.0.0-beta.44" 79 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0-beta.44.tgz#18c94ce543916a80553edcdcf681890b200747d5" 80 | dependencies: 81 | chalk "^2.0.0" 82 | esutils "^2.0.2" 83 | js-tokens "^3.0.0" 84 | 85 | "@babel/highlight@7.0.0-beta.51": 86 | version "7.0.0-beta.51" 87 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0-beta.51.tgz#e8844ae25a1595ccfd42b89623b4376ca06d225d" 88 | dependencies: 89 | chalk "^2.0.0" 90 | esutils "^2.0.2" 91 | js-tokens "^3.0.0" 92 | 93 | "@babel/parser@7.0.0-beta.51": 94 | version "7.0.0-beta.51" 95 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.0.0-beta.51.tgz#27cec2df409df60af58270ed8f6aa55409ea86f6" 96 | 97 | "@babel/template@7.0.0-beta.44": 98 | version "7.0.0-beta.44" 99 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.0.0-beta.44.tgz#f8832f4fdcee5d59bf515e595fc5106c529b394f" 100 | dependencies: 101 | "@babel/code-frame" "7.0.0-beta.44" 102 | "@babel/types" "7.0.0-beta.44" 103 | babylon "7.0.0-beta.44" 104 | lodash "^4.2.0" 105 | 106 | "@babel/template@7.0.0-beta.51": 107 | version "7.0.0-beta.51" 108 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.0.0-beta.51.tgz#9602a40aebcf357ae9677e2532ef5fc810f5fbff" 109 | dependencies: 110 | "@babel/code-frame" "7.0.0-beta.51" 111 | "@babel/parser" "7.0.0-beta.51" 112 | "@babel/types" "7.0.0-beta.51" 113 | lodash "^4.17.5" 114 | 115 | "@babel/traverse@7.0.0-beta.44": 116 | version "7.0.0-beta.44" 117 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.0.0-beta.44.tgz#a970a2c45477ad18017e2e465a0606feee0d2966" 118 | dependencies: 119 | "@babel/code-frame" "7.0.0-beta.44" 120 | "@babel/generator" "7.0.0-beta.44" 121 | "@babel/helper-function-name" "7.0.0-beta.44" 122 | "@babel/helper-split-export-declaration" "7.0.0-beta.44" 123 | "@babel/types" "7.0.0-beta.44" 124 | babylon "7.0.0-beta.44" 125 | debug "^3.1.0" 126 | globals "^11.1.0" 127 | invariant "^2.2.0" 128 | lodash "^4.2.0" 129 | 130 | "@babel/traverse@7.0.0-beta.51": 131 | version "7.0.0-beta.51" 132 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.0.0-beta.51.tgz#981daf2cec347a6231d3aa1d9e1803b03aaaa4a8" 133 | dependencies: 134 | "@babel/code-frame" "7.0.0-beta.51" 135 | "@babel/generator" "7.0.0-beta.51" 136 | "@babel/helper-function-name" "7.0.0-beta.51" 137 | "@babel/helper-split-export-declaration" "7.0.0-beta.51" 138 | "@babel/parser" "7.0.0-beta.51" 139 | "@babel/types" "7.0.0-beta.51" 140 | debug "^3.1.0" 141 | globals "^11.1.0" 142 | invariant "^2.2.0" 143 | lodash "^4.17.5" 144 | 145 | "@babel/types@7.0.0-beta.44": 146 | version "7.0.0-beta.44" 147 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.0.0-beta.44.tgz#6b1b164591f77dec0a0342aca995f2d046b3a757" 148 | dependencies: 149 | esutils "^2.0.2" 150 | lodash "^4.2.0" 151 | to-fast-properties "^2.0.0" 152 | 153 | "@babel/types@7.0.0-beta.51": 154 | version "7.0.0-beta.51" 155 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.0.0-beta.51.tgz#d802b7b543b5836c778aa691797abf00f3d97ea9" 156 | dependencies: 157 | esutils "^2.0.2" 158 | lodash "^4.17.5" 159 | to-fast-properties "^2.0.0" 160 | 161 | "@samverschueren/stream-to-observable@^0.3.0": 162 | version "0.3.0" 163 | resolved "https://registry.yarnpkg.com/@samverschueren/stream-to-observable/-/stream-to-observable-0.3.0.tgz#ecdf48d532c58ea477acfcab80348424f8d0662f" 164 | dependencies: 165 | any-observable "^0.3.0" 166 | 167 | "@sheerun/eslint-config-standard@^10.2.1": 168 | version "10.2.1" 169 | resolved "https://registry.yarnpkg.com/@sheerun/eslint-config-standard/-/eslint-config-standard-10.2.1.tgz#7d73397369c396b3625cab6ec313f6d4208300ef" 170 | 171 | "@sinonjs/commons@^1.0.1": 172 | version "1.0.2" 173 | resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.0.2.tgz#3e0ac737781627b8844257fadc3d803997d0526e" 174 | dependencies: 175 | type-detect "4.0.8" 176 | 177 | "@sinonjs/formatio@^2.0.0": 178 | version "2.0.0" 179 | resolved "https://registry.yarnpkg.com/@sinonjs/formatio/-/formatio-2.0.0.tgz#84db7e9eb5531df18a8c5e0bfb6e449e55e654b2" 180 | dependencies: 181 | samsam "1.3.0" 182 | 183 | "@sinonjs/samsam@^2.0.0": 184 | version "2.0.0" 185 | resolved "https://registry.yarnpkg.com/@sinonjs/samsam/-/samsam-2.0.0.tgz#9163742ac35c12d3602dece74317643b35db6a80" 186 | 187 | abbrev@1: 188 | version "1.1.1" 189 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 190 | 191 | acorn-jsx@^3.0.0: 192 | version "3.0.1" 193 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 194 | dependencies: 195 | acorn "^3.0.4" 196 | 197 | acorn@^3.0.4: 198 | version "3.3.0" 199 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 200 | 201 | acorn@^5.5.0: 202 | version "5.7.1" 203 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.1.tgz#f095829297706a7c9776958c0afc8930a9b9d9d8" 204 | 205 | ajv-keywords@^1.0.0: 206 | version "1.5.1" 207 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 208 | 209 | ajv-keywords@^2.1.0: 210 | version "2.1.1" 211 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762" 212 | 213 | ajv@^4.7.0: 214 | version "4.11.8" 215 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 216 | dependencies: 217 | co "^4.6.0" 218 | json-stable-stringify "^1.0.1" 219 | 220 | ajv@^5.2.3, ajv@^5.3.0: 221 | version "5.5.2" 222 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 223 | dependencies: 224 | co "^4.6.0" 225 | fast-deep-equal "^1.0.0" 226 | fast-json-stable-stringify "^2.0.0" 227 | json-schema-traverse "^0.3.0" 228 | 229 | align-text@^0.1.1, align-text@^0.1.3: 230 | version "0.1.4" 231 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 232 | dependencies: 233 | kind-of "^3.0.2" 234 | longest "^1.0.1" 235 | repeat-string "^1.5.2" 236 | 237 | amdefine@>=0.0.4: 238 | version "1.0.1" 239 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 240 | 241 | ansi-escapes@^1.0.0, ansi-escapes@^1.1.0: 242 | version "1.4.0" 243 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 244 | 245 | ansi-escapes@^3.0.0: 246 | version "3.1.0" 247 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30" 248 | 249 | ansi-regex@^2.0.0: 250 | version "2.1.1" 251 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 252 | 253 | ansi-regex@^3.0.0: 254 | version "3.0.0" 255 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 256 | 257 | ansi-styles@^2.2.1: 258 | version "2.2.1" 259 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 260 | 261 | ansi-styles@^3.2.0, ansi-styles@^3.2.1: 262 | version "3.2.1" 263 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 264 | dependencies: 265 | color-convert "^1.9.0" 266 | 267 | any-observable@^0.3.0: 268 | version "0.3.0" 269 | resolved "https://registry.yarnpkg.com/any-observable/-/any-observable-0.3.0.tgz#af933475e5806a67d0d7df090dd5e8bef65d119b" 270 | 271 | append-transform@^0.4.0: 272 | version "0.4.0" 273 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 274 | dependencies: 275 | default-require-extensions "^1.0.0" 276 | 277 | archy@^1.0.0: 278 | version "1.0.0" 279 | resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" 280 | 281 | argparse@^1.0.7: 282 | version "1.0.9" 283 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 284 | dependencies: 285 | sprintf-js "~1.0.2" 286 | 287 | arr-diff@^4.0.0: 288 | version "4.0.0" 289 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 290 | 291 | arr-flatten@^1.1.0: 292 | version "1.1.0" 293 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 294 | 295 | arr-union@^3.1.0: 296 | version "3.1.0" 297 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 298 | 299 | array-union@^1.0.1: 300 | version "1.0.2" 301 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 302 | dependencies: 303 | array-uniq "^1.0.1" 304 | 305 | array-uniq@^1.0.1: 306 | version "1.0.3" 307 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 308 | 309 | array-unique@^0.3.2: 310 | version "0.3.2" 311 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 312 | 313 | array.prototype.find@^2.0.1: 314 | version "2.0.4" 315 | resolved "https://registry.yarnpkg.com/array.prototype.find/-/array.prototype.find-2.0.4.tgz#556a5c5362c08648323ddaeb9de9d14bc1864c90" 316 | dependencies: 317 | define-properties "^1.1.2" 318 | es-abstract "^1.7.0" 319 | 320 | arrify@^1.0.0, arrify@^1.0.1: 321 | version "1.0.1" 322 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 323 | 324 | asn1@~0.2.3: 325 | version "0.2.3" 326 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 327 | 328 | assert-plus@1.0.0, assert-plus@^1.0.0: 329 | version "1.0.0" 330 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 331 | 332 | assertion-error@^1.0.1: 333 | version "1.0.2" 334 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.0.2.tgz#13ca515d86206da0bac66e834dd397d87581094c" 335 | 336 | assign-symbols@^1.0.0: 337 | version "1.0.0" 338 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 339 | 340 | async@^1.4.0: 341 | version "1.5.2" 342 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 343 | 344 | asynckit@^0.4.0: 345 | version "0.4.0" 346 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 347 | 348 | atob@^2.1.1: 349 | version "2.1.1" 350 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.1.tgz#ae2d5a729477f289d60dd7f96a6314a22dd6c22a" 351 | 352 | aws-sdk@^2.293.0: 353 | version "2.293.0" 354 | resolved "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.293.0.tgz#5474110972d1595f4386e3e0c350af9f6b71ccc8" 355 | dependencies: 356 | buffer "4.9.1" 357 | events "1.1.1" 358 | ieee754 "1.1.8" 359 | jmespath "0.15.0" 360 | querystring "0.2.0" 361 | sax "1.2.1" 362 | url "0.10.3" 363 | uuid "3.1.0" 364 | xml2js "0.4.19" 365 | 366 | aws-sign2@~0.7.0: 367 | version "0.7.0" 368 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 369 | 370 | aws4@^1.8.0: 371 | version "1.8.0" 372 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.8.0.tgz#f0e003d9ca9e7f59c7a508945d7b2ef9a04a542f" 373 | 374 | babel-code-frame@^6.16.0, babel-code-frame@^6.22.0: 375 | version "6.26.0" 376 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 377 | dependencies: 378 | chalk "^1.1.3" 379 | esutils "^2.0.2" 380 | js-tokens "^3.0.2" 381 | 382 | babel-eslint@>=7.2.3: 383 | version "8.2.6" 384 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-8.2.6.tgz#6270d0c73205628067c0f7ae1693a9e797acefd9" 385 | dependencies: 386 | "@babel/code-frame" "7.0.0-beta.44" 387 | "@babel/traverse" "7.0.0-beta.44" 388 | "@babel/types" "7.0.0-beta.44" 389 | babylon "7.0.0-beta.44" 390 | eslint-scope "3.7.1" 391 | eslint-visitor-keys "^1.0.0" 392 | 393 | babel-runtime@^6.23.0, babel-runtime@^6.26.0: 394 | version "6.26.0" 395 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 396 | dependencies: 397 | core-js "^2.4.0" 398 | regenerator-runtime "^0.11.0" 399 | 400 | babylon@7.0.0-beta.44: 401 | version "7.0.0-beta.44" 402 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-7.0.0-beta.44.tgz#89159e15e6e30c5096e22d738d8c0af8a0e8ca1d" 403 | 404 | balanced-match@^1.0.0: 405 | version "1.0.0" 406 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 407 | 408 | base64-js@^1.0.2: 409 | version "1.2.1" 410 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.1.tgz#a91947da1f4a516ea38e5b4ec0ec3773675e0886" 411 | 412 | base@^0.11.1: 413 | version "0.11.2" 414 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 415 | dependencies: 416 | cache-base "^1.0.1" 417 | class-utils "^0.3.5" 418 | component-emitter "^1.2.1" 419 | define-property "^1.0.0" 420 | isobject "^3.0.1" 421 | mixin-deep "^1.2.0" 422 | pascalcase "^0.1.1" 423 | 424 | bcrypt-pbkdf@^1.0.0: 425 | version "1.0.1" 426 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 427 | dependencies: 428 | tweetnacl "^0.14.3" 429 | 430 | bottleneck@^1.16.0: 431 | version "1.16.0" 432 | resolved "https://registry.yarnpkg.com/bottleneck/-/bottleneck-1.16.0.tgz#d6ce13808527afc80b69092f15606655e5b21f1a" 433 | 434 | brace-expansion@^1.1.7: 435 | version "1.1.8" 436 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 437 | dependencies: 438 | balanced-match "^1.0.0" 439 | concat-map "0.0.1" 440 | 441 | braces@^2.3.1: 442 | version "2.3.2" 443 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" 444 | dependencies: 445 | arr-flatten "^1.1.0" 446 | array-unique "^0.3.2" 447 | extend-shallow "^2.0.1" 448 | fill-range "^4.0.0" 449 | isobject "^3.0.1" 450 | repeat-element "^1.1.2" 451 | snapdragon "^0.8.1" 452 | snapdragon-node "^2.0.1" 453 | split-string "^3.0.2" 454 | to-regex "^3.0.1" 455 | 456 | browser-stdout@1.3.1: 457 | version "1.3.1" 458 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" 459 | 460 | buffer-from@^1.0.0: 461 | version "1.1.1" 462 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 463 | 464 | buffer@4.9.1: 465 | version "4.9.1" 466 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 467 | dependencies: 468 | base64-js "^1.0.2" 469 | ieee754 "^1.1.4" 470 | isarray "^1.0.0" 471 | 472 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 473 | version "1.1.1" 474 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 475 | 476 | cache-base@^1.0.1: 477 | version "1.0.1" 478 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 479 | dependencies: 480 | collection-visit "^1.0.0" 481 | component-emitter "^1.2.1" 482 | get-value "^2.0.6" 483 | has-value "^1.0.0" 484 | isobject "^3.0.1" 485 | set-value "^2.0.0" 486 | to-object-path "^0.3.0" 487 | union-value "^1.0.0" 488 | unset-value "^1.0.0" 489 | 490 | caching-transform@^1.0.0: 491 | version "1.0.1" 492 | resolved "https://registry.yarnpkg.com/caching-transform/-/caching-transform-1.0.1.tgz#6dbdb2f20f8d8fbce79f3e94e9d1742dcdf5c0a1" 493 | dependencies: 494 | md5-hex "^1.2.0" 495 | mkdirp "^0.5.1" 496 | write-file-atomic "^1.1.4" 497 | 498 | caller-path@^0.1.0: 499 | version "0.1.0" 500 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 501 | dependencies: 502 | callsites "^0.2.0" 503 | 504 | callsites@^0.2.0: 505 | version "0.2.0" 506 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 507 | 508 | camelcase@^1.0.2: 509 | version "1.2.1" 510 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 511 | 512 | camelcase@^4.1.0: 513 | version "4.1.0" 514 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 515 | 516 | caseless@~0.12.0: 517 | version "0.12.0" 518 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 519 | 520 | center-align@^0.1.1: 521 | version "0.1.3" 522 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 523 | dependencies: 524 | align-text "^0.1.3" 525 | lazy-cache "^1.0.3" 526 | 527 | chai-as-promised@^7.0.0: 528 | version "7.1.1" 529 | resolved "https://registry.yarnpkg.com/chai-as-promised/-/chai-as-promised-7.1.1.tgz#08645d825deb8696ee61725dbf590c012eb00ca0" 530 | dependencies: 531 | check-error "^1.0.2" 532 | 533 | chai@^4.0.2: 534 | version "4.1.2" 535 | resolved "https://registry.yarnpkg.com/chai/-/chai-4.1.2.tgz#0f64584ba642f0f2ace2806279f4f06ca23ad73c" 536 | dependencies: 537 | assertion-error "^1.0.1" 538 | check-error "^1.0.1" 539 | deep-eql "^3.0.0" 540 | get-func-name "^2.0.0" 541 | pathval "^1.0.0" 542 | type-detect "^4.0.0" 543 | 544 | chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3: 545 | version "1.1.3" 546 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 547 | dependencies: 548 | ansi-styles "^2.2.1" 549 | escape-string-regexp "^1.0.2" 550 | has-ansi "^2.0.0" 551 | strip-ansi "^3.0.0" 552 | supports-color "^2.0.0" 553 | 554 | chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.0, chalk@^2.3.1: 555 | version "2.4.1" 556 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e" 557 | dependencies: 558 | ansi-styles "^3.2.1" 559 | escape-string-regexp "^1.0.5" 560 | supports-color "^5.3.0" 561 | 562 | chardet@^0.4.0: 563 | version "0.4.2" 564 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" 565 | 566 | charenc@~0.0.1: 567 | version "0.0.2" 568 | resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667" 569 | 570 | check-error@^1.0.1, check-error@^1.0.2: 571 | version "1.0.2" 572 | resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82" 573 | 574 | ci-info@^1.0.0: 575 | version "1.3.0" 576 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.3.0.tgz#ea8219b0355a58692b762baf1cdd76ceb4503283" 577 | 578 | circular-json@^0.3.1: 579 | version "0.3.3" 580 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" 581 | 582 | class-utils@^0.3.5: 583 | version "0.3.6" 584 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 585 | dependencies: 586 | arr-union "^3.1.0" 587 | define-property "^0.2.5" 588 | isobject "^3.0.0" 589 | static-extend "^0.1.1" 590 | 591 | cli-cursor@^1.0.1, cli-cursor@^1.0.2: 592 | version "1.0.2" 593 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 594 | dependencies: 595 | restore-cursor "^1.0.1" 596 | 597 | cli-cursor@^2.1.0: 598 | version "2.1.0" 599 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 600 | dependencies: 601 | restore-cursor "^2.0.0" 602 | 603 | cli-spinners@^0.1.2: 604 | version "0.1.2" 605 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-0.1.2.tgz#bb764d88e185fb9e1e6a2a1f19772318f605e31c" 606 | 607 | cli-truncate@^0.2.1: 608 | version "0.2.1" 609 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-0.2.1.tgz#9f15cfbb0705005369216c626ac7d05ab90dd574" 610 | dependencies: 611 | slice-ansi "0.0.4" 612 | string-width "^1.0.1" 613 | 614 | cli-width@^2.0.0: 615 | version "2.2.0" 616 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 617 | 618 | cliui@^2.1.0: 619 | version "2.1.0" 620 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 621 | dependencies: 622 | center-align "^0.1.1" 623 | right-align "^0.1.1" 624 | wordwrap "0.0.2" 625 | 626 | cliui@^4.0.0: 627 | version "4.1.0" 628 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49" 629 | dependencies: 630 | string-width "^2.1.1" 631 | strip-ansi "^4.0.0" 632 | wrap-ansi "^2.0.0" 633 | 634 | co@^4.6.0: 635 | version "4.6.0" 636 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 637 | 638 | code-point-at@^1.0.0: 639 | version "1.1.0" 640 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 641 | 642 | collection-visit@^1.0.0: 643 | version "1.0.0" 644 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 645 | dependencies: 646 | map-visit "^1.0.0" 647 | object-visit "^1.0.0" 648 | 649 | color-convert@^1.9.0: 650 | version "1.9.2" 651 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.2.tgz#49881b8fba67df12a96bdf3f56c0aab9e7913147" 652 | dependencies: 653 | color-name "1.1.1" 654 | 655 | color-name@1.1.1: 656 | version "1.1.1" 657 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.1.tgz#4b1415304cf50028ea81643643bd82ea05803689" 658 | 659 | combined-stream@1.0.6, combined-stream@~1.0.6: 660 | version "1.0.6" 661 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818" 662 | dependencies: 663 | delayed-stream "~1.0.0" 664 | 665 | commander@2.15.1: 666 | version "2.15.1" 667 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.15.1.tgz#df46e867d0fc2aec66a34662b406a9ccafff5b0f" 668 | 669 | commander@^2.14.1, commander@^2.9.0: 670 | version "2.17.1" 671 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf" 672 | 673 | common-tags@^1.4.0: 674 | version "1.8.0" 675 | resolved "https://registry.yarnpkg.com/common-tags/-/common-tags-1.8.0.tgz#8e3153e542d4a39e9b10554434afaaf98956a937" 676 | 677 | commondir@^1.0.1: 678 | version "1.0.1" 679 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 680 | 681 | component-emitter@^1.2.1: 682 | version "1.2.1" 683 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 684 | 685 | concat-map@0.0.1: 686 | version "0.0.1" 687 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 688 | 689 | concat-stream@^1.5.2, concat-stream@^1.6.0: 690 | version "1.6.2" 691 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" 692 | dependencies: 693 | buffer-from "^1.0.0" 694 | inherits "^2.0.3" 695 | readable-stream "^2.2.2" 696 | typedarray "^0.0.6" 697 | 698 | contains-path@^0.1.0: 699 | version "0.1.0" 700 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 701 | 702 | convert-source-map@^1.5.1: 703 | version "1.5.1" 704 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 705 | 706 | copy-descriptor@^0.1.0: 707 | version "0.1.1" 708 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 709 | 710 | core-js@^2.4.0: 711 | version "2.5.3" 712 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e" 713 | 714 | core-js@^2.5.3: 715 | version "2.5.7" 716 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.7.tgz#f972608ff0cead68b841a16a932d0b183791814e" 717 | 718 | core-util-is@1.0.2, core-util-is@~1.0.0: 719 | version "1.0.2" 720 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 721 | 722 | cosmiconfig@^5.0.2: 723 | version "5.0.6" 724 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.0.6.tgz#dca6cf680a0bd03589aff684700858c81abeeb39" 725 | dependencies: 726 | is-directory "^0.3.1" 727 | js-yaml "^3.9.0" 728 | parse-json "^4.0.0" 729 | 730 | coveralls@^3.0.2: 731 | version "3.0.2" 732 | resolved "https://registry.yarnpkg.com/coveralls/-/coveralls-3.0.2.tgz#f5a0bcd90ca4e64e088b710fa8dda640aea4884f" 733 | dependencies: 734 | growl "~> 1.10.0" 735 | js-yaml "^3.11.0" 736 | lcov-parse "^0.0.10" 737 | log-driver "^1.2.7" 738 | minimist "^1.2.0" 739 | request "^2.85.0" 740 | 741 | cross-spawn@^4: 742 | version "4.0.2" 743 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41" 744 | dependencies: 745 | lru-cache "^4.0.1" 746 | which "^1.2.9" 747 | 748 | cross-spawn@^5.0.1, cross-spawn@^5.1.0: 749 | version "5.1.0" 750 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 751 | dependencies: 752 | lru-cache "^4.0.1" 753 | shebang-command "^1.2.0" 754 | which "^1.2.9" 755 | 756 | crypt@~0.0.1: 757 | version "0.0.2" 758 | resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b" 759 | 760 | d@1: 761 | version "1.0.0" 762 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 763 | dependencies: 764 | es5-ext "^0.10.9" 765 | 766 | dashdash@^1.12.0: 767 | version "1.14.1" 768 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 769 | dependencies: 770 | assert-plus "^1.0.0" 771 | 772 | date-fns@^1.27.2: 773 | version "1.29.0" 774 | resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.29.0.tgz#12e609cdcb935127311d04d33334e2960a2a54e6" 775 | 776 | debug-log@^1.0.0, debug-log@^1.0.1: 777 | version "1.0.1" 778 | resolved "https://registry.yarnpkg.com/debug-log/-/debug-log-1.0.1.tgz#2307632d4c04382b8df8a32f70b895046d52745f" 779 | 780 | debug@3.1.0, debug@^3.1.0: 781 | version "3.1.0" 782 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 783 | dependencies: 784 | ms "2.0.0" 785 | 786 | debug@^2.1.1, debug@^2.2.0, debug@^2.3.3, debug@^2.6.8: 787 | version "2.6.9" 788 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 789 | dependencies: 790 | ms "2.0.0" 791 | 792 | decamelize@^1.0.0, decamelize@^1.1.1: 793 | version "1.2.0" 794 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 795 | 796 | decode-uri-component@^0.2.0: 797 | version "0.2.0" 798 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 799 | 800 | dedent@^0.7.0: 801 | version "0.7.0" 802 | resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" 803 | 804 | deep-eql@^3.0.0: 805 | version "3.0.1" 806 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-3.0.1.tgz#dfc9404400ad1c8fe023e7da1df1c147c4b444df" 807 | dependencies: 808 | type-detect "^4.0.0" 809 | 810 | deep-is@~0.1.3: 811 | version "0.1.3" 812 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 813 | 814 | default-require-extensions@^1.0.0: 815 | version "1.0.0" 816 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 817 | dependencies: 818 | strip-bom "^2.0.0" 819 | 820 | define-properties@^1.1.2: 821 | version "1.1.2" 822 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 823 | dependencies: 824 | foreach "^2.0.5" 825 | object-keys "^1.0.8" 826 | 827 | define-property@^0.2.5: 828 | version "0.2.5" 829 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 830 | dependencies: 831 | is-descriptor "^0.1.0" 832 | 833 | define-property@^1.0.0: 834 | version "1.0.0" 835 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 836 | dependencies: 837 | is-descriptor "^1.0.0" 838 | 839 | define-property@^2.0.2: 840 | version "2.0.2" 841 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 842 | dependencies: 843 | is-descriptor "^1.0.2" 844 | isobject "^3.0.1" 845 | 846 | deglob@^2.1.0: 847 | version "2.1.0" 848 | resolved "https://registry.yarnpkg.com/deglob/-/deglob-2.1.0.tgz#4d44abe16ef32c779b4972bd141a80325029a14a" 849 | dependencies: 850 | find-root "^1.0.0" 851 | glob "^7.0.5" 852 | ignore "^3.0.9" 853 | pkg-config "^1.1.0" 854 | run-parallel "^1.1.2" 855 | uniq "^1.0.1" 856 | 857 | del@^2.0.2: 858 | version "2.2.2" 859 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 860 | dependencies: 861 | globby "^5.0.0" 862 | is-path-cwd "^1.0.0" 863 | is-path-in-cwd "^1.0.0" 864 | object-assign "^4.0.1" 865 | pify "^2.0.0" 866 | pinkie-promise "^2.0.0" 867 | rimraf "^2.2.8" 868 | 869 | delay@^3.0.0: 870 | version "3.0.0" 871 | resolved "https://registry.yarnpkg.com/delay/-/delay-3.0.0.tgz#97fc5c21028e20616e822ab11838c648808534eb" 872 | 873 | delayed-stream@~1.0.0: 874 | version "1.0.0" 875 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 876 | 877 | diff@3.5.0, diff@^3.5.0: 878 | version "3.5.0" 879 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" 880 | 881 | dlv@^1.1.0: 882 | version "1.1.2" 883 | resolved "https://registry.yarnpkg.com/dlv/-/dlv-1.1.2.tgz#270f6737b30d25b6657a7e962c784403f85137e5" 884 | 885 | doctrine@1.5.0, doctrine@^1.2.2: 886 | version "1.5.0" 887 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 888 | dependencies: 889 | esutils "^2.0.2" 890 | isarray "^1.0.0" 891 | 892 | doctrine@^2.0.0, doctrine@^2.1.0: 893 | version "2.1.0" 894 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 895 | dependencies: 896 | esutils "^2.0.2" 897 | 898 | ecc-jsbn@~0.1.1: 899 | version "0.1.1" 900 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 901 | dependencies: 902 | jsbn "~0.1.0" 903 | 904 | elegant-spinner@^1.0.1: 905 | version "1.0.1" 906 | resolved "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e" 907 | 908 | error-ex@^1.2.0: 909 | version "1.3.1" 910 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 911 | dependencies: 912 | is-arrayish "^0.2.1" 913 | 914 | error-ex@^1.3.1: 915 | version "1.3.2" 916 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 917 | dependencies: 918 | is-arrayish "^0.2.1" 919 | 920 | es-abstract@^1.7.0: 921 | version "1.10.0" 922 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.10.0.tgz#1ecb36c197842a00d8ee4c2dfd8646bb97d60864" 923 | dependencies: 924 | es-to-primitive "^1.1.1" 925 | function-bind "^1.1.1" 926 | has "^1.0.1" 927 | is-callable "^1.1.3" 928 | is-regex "^1.0.4" 929 | 930 | es-to-primitive@^1.1.1: 931 | version "1.1.1" 932 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 933 | dependencies: 934 | is-callable "^1.1.1" 935 | is-date-object "^1.0.1" 936 | is-symbol "^1.0.1" 937 | 938 | es5-ext@^0.10.14, es5-ext@^0.10.35, es5-ext@^0.10.9, es5-ext@~0.10.14: 939 | version "0.10.46" 940 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.46.tgz#efd99f67c5a7ec789baa3daa7f79870388f7f572" 941 | dependencies: 942 | es6-iterator "~2.0.3" 943 | es6-symbol "~3.1.1" 944 | next-tick "1" 945 | 946 | es6-iterator@^2.0.1, es6-iterator@~2.0.1, es6-iterator@~2.0.3: 947 | version "2.0.3" 948 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" 949 | dependencies: 950 | d "1" 951 | es5-ext "^0.10.35" 952 | es6-symbol "^3.1.1" 953 | 954 | es6-map@^0.1.3: 955 | version "0.1.5" 956 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" 957 | dependencies: 958 | d "1" 959 | es5-ext "~0.10.14" 960 | es6-iterator "~2.0.1" 961 | es6-set "~0.1.5" 962 | es6-symbol "~3.1.1" 963 | event-emitter "~0.3.5" 964 | 965 | es6-set@~0.1.5: 966 | version "0.1.5" 967 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" 968 | dependencies: 969 | d "1" 970 | es5-ext "~0.10.14" 971 | es6-iterator "~2.0.1" 972 | es6-symbol "3.1.1" 973 | event-emitter "~0.3.5" 974 | 975 | es6-symbol@3.1.1, es6-symbol@^3.1.1, es6-symbol@~3.1.1: 976 | version "3.1.1" 977 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 978 | dependencies: 979 | d "1" 980 | es5-ext "~0.10.14" 981 | 982 | es6-weak-map@^2.0.1: 983 | version "2.0.2" 984 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 985 | dependencies: 986 | d "1" 987 | es5-ext "^0.10.14" 988 | es6-iterator "^2.0.1" 989 | es6-symbol "^3.1.1" 990 | 991 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 992 | version "1.0.5" 993 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 994 | 995 | escope@^3.6.0: 996 | version "3.6.0" 997 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 998 | dependencies: 999 | es6-map "^0.1.3" 1000 | es6-weak-map "^2.0.1" 1001 | esrecurse "^4.1.0" 1002 | estraverse "^4.1.1" 1003 | 1004 | eslint-config-standard-jsx@4.0.2: 1005 | version "4.0.2" 1006 | resolved "https://registry.yarnpkg.com/eslint-config-standard-jsx/-/eslint-config-standard-jsx-4.0.2.tgz#009e53c4ddb1e9ee70b4650ffe63a7f39f8836e1" 1007 | 1008 | eslint-config-standard@10.2.1: 1009 | version "10.2.1" 1010 | resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-10.2.1.tgz#c061e4d066f379dc17cd562c64e819b4dd454591" 1011 | 1012 | eslint-import-resolver-node@^0.2.0: 1013 | version "0.2.3" 1014 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.2.3.tgz#5add8106e8c928db2cba232bcd9efa846e3da16c" 1015 | dependencies: 1016 | debug "^2.2.0" 1017 | object-assign "^4.0.1" 1018 | resolve "^1.1.6" 1019 | 1020 | eslint-module-utils@^2.0.0: 1021 | version "2.2.0" 1022 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.2.0.tgz#b270362cd88b1a48ad308976ce7fa54e98411746" 1023 | dependencies: 1024 | debug "^2.6.8" 1025 | pkg-dir "^1.0.0" 1026 | 1027 | eslint-plugin-import@~2.2.0: 1028 | version "2.2.0" 1029 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.2.0.tgz#72ba306fad305d67c4816348a4699a4229ac8b4e" 1030 | dependencies: 1031 | builtin-modules "^1.1.1" 1032 | contains-path "^0.1.0" 1033 | debug "^2.2.0" 1034 | doctrine "1.5.0" 1035 | eslint-import-resolver-node "^0.2.0" 1036 | eslint-module-utils "^2.0.0" 1037 | has "^1.0.1" 1038 | lodash.cond "^4.3.0" 1039 | minimatch "^3.0.3" 1040 | pkg-up "^1.0.0" 1041 | 1042 | eslint-plugin-node@~4.2.2: 1043 | version "4.2.3" 1044 | resolved "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-4.2.3.tgz#c04390ab8dbcbb6887174023d6f3a72769e63b97" 1045 | dependencies: 1046 | ignore "^3.0.11" 1047 | minimatch "^3.0.2" 1048 | object-assign "^4.0.1" 1049 | resolve "^1.1.7" 1050 | semver "5.3.0" 1051 | 1052 | eslint-plugin-promise@~3.5.0: 1053 | version "3.5.0" 1054 | resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-3.5.0.tgz#78fbb6ffe047201627569e85a6c5373af2a68fca" 1055 | 1056 | eslint-plugin-react@~6.10.0: 1057 | version "6.10.3" 1058 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-6.10.3.tgz#c5435beb06774e12c7db2f6abaddcbf900cd3f78" 1059 | dependencies: 1060 | array.prototype.find "^2.0.1" 1061 | doctrine "^1.2.2" 1062 | has "^1.0.1" 1063 | jsx-ast-utils "^1.3.4" 1064 | object.assign "^4.0.4" 1065 | 1066 | eslint-plugin-standard@~3.0.1: 1067 | version "3.0.1" 1068 | resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-3.0.1.tgz#34d0c915b45edc6f010393c7eef3823b08565cf2" 1069 | 1070 | eslint-scope@3.7.1: 1071 | version "3.7.1" 1072 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" 1073 | dependencies: 1074 | esrecurse "^4.1.0" 1075 | estraverse "^4.1.1" 1076 | 1077 | eslint-scope@^3.7.1: 1078 | version "3.7.3" 1079 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.3.tgz#bb507200d3d17f60247636160b4826284b108535" 1080 | dependencies: 1081 | esrecurse "^4.1.0" 1082 | estraverse "^4.1.1" 1083 | 1084 | eslint-visitor-keys@^1.0.0: 1085 | version "1.0.0" 1086 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d" 1087 | 1088 | eslint@^4.0.0, eslint@^4.7.2: 1089 | version "4.19.1" 1090 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.19.1.tgz#32d1d653e1d90408854bfb296f076ec7e186a300" 1091 | dependencies: 1092 | ajv "^5.3.0" 1093 | babel-code-frame "^6.22.0" 1094 | chalk "^2.1.0" 1095 | concat-stream "^1.6.0" 1096 | cross-spawn "^5.1.0" 1097 | debug "^3.1.0" 1098 | doctrine "^2.1.0" 1099 | eslint-scope "^3.7.1" 1100 | eslint-visitor-keys "^1.0.0" 1101 | espree "^3.5.4" 1102 | esquery "^1.0.0" 1103 | esutils "^2.0.2" 1104 | file-entry-cache "^2.0.0" 1105 | functional-red-black-tree "^1.0.1" 1106 | glob "^7.1.2" 1107 | globals "^11.0.1" 1108 | ignore "^3.3.3" 1109 | imurmurhash "^0.1.4" 1110 | inquirer "^3.0.6" 1111 | is-resolvable "^1.0.0" 1112 | js-yaml "^3.9.1" 1113 | json-stable-stringify-without-jsonify "^1.0.1" 1114 | levn "^0.3.0" 1115 | lodash "^4.17.4" 1116 | minimatch "^3.0.2" 1117 | mkdirp "^0.5.1" 1118 | natural-compare "^1.4.0" 1119 | optionator "^0.8.2" 1120 | path-is-inside "^1.0.2" 1121 | pluralize "^7.0.0" 1122 | progress "^2.0.0" 1123 | regexpp "^1.0.1" 1124 | require-uncached "^1.0.3" 1125 | semver "^5.3.0" 1126 | strip-ansi "^4.0.0" 1127 | strip-json-comments "~2.0.1" 1128 | table "4.0.2" 1129 | text-table "~0.2.0" 1130 | 1131 | eslint@~3.19.0: 1132 | version "3.19.0" 1133 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.19.0.tgz#c8fc6201c7f40dd08941b87c085767386a679acc" 1134 | dependencies: 1135 | babel-code-frame "^6.16.0" 1136 | chalk "^1.1.3" 1137 | concat-stream "^1.5.2" 1138 | debug "^2.1.1" 1139 | doctrine "^2.0.0" 1140 | escope "^3.6.0" 1141 | espree "^3.4.0" 1142 | esquery "^1.0.0" 1143 | estraverse "^4.2.0" 1144 | esutils "^2.0.2" 1145 | file-entry-cache "^2.0.0" 1146 | glob "^7.0.3" 1147 | globals "^9.14.0" 1148 | ignore "^3.2.0" 1149 | imurmurhash "^0.1.4" 1150 | inquirer "^0.12.0" 1151 | is-my-json-valid "^2.10.0" 1152 | is-resolvable "^1.0.0" 1153 | js-yaml "^3.5.1" 1154 | json-stable-stringify "^1.0.0" 1155 | levn "^0.3.0" 1156 | lodash "^4.0.0" 1157 | mkdirp "^0.5.0" 1158 | natural-compare "^1.4.0" 1159 | optionator "^0.8.2" 1160 | path-is-inside "^1.0.1" 1161 | pluralize "^1.2.1" 1162 | progress "^1.1.8" 1163 | require-uncached "^1.0.2" 1164 | shelljs "^0.7.5" 1165 | strip-bom "^3.0.0" 1166 | strip-json-comments "~2.0.1" 1167 | table "^3.7.8" 1168 | text-table "~0.2.0" 1169 | user-home "^2.0.0" 1170 | 1171 | espree@^3.4.0, espree@^3.5.2, espree@^3.5.4: 1172 | version "3.5.4" 1173 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.4.tgz#b0f447187c8a8bed944b815a660bddf5deb5d1a7" 1174 | dependencies: 1175 | acorn "^5.5.0" 1176 | acorn-jsx "^3.0.0" 1177 | 1178 | esprima@^4.0.0: 1179 | version "4.0.0" 1180 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1181 | 1182 | esquery@^1.0.0: 1183 | version "1.0.0" 1184 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 1185 | dependencies: 1186 | estraverse "^4.0.0" 1187 | 1188 | esrecurse@^4.1.0: 1189 | version "4.2.0" 1190 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" 1191 | dependencies: 1192 | estraverse "^4.1.0" 1193 | object-assign "^4.0.1" 1194 | 1195 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: 1196 | version "4.2.0" 1197 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1198 | 1199 | esutils@^2.0.2: 1200 | version "2.0.2" 1201 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1202 | 1203 | event-emitter@~0.3.5: 1204 | version "0.3.5" 1205 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 1206 | dependencies: 1207 | d "1" 1208 | es5-ext "~0.10.14" 1209 | 1210 | events@1.1.1: 1211 | version "1.1.1" 1212 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 1213 | 1214 | execa@^0.7.0: 1215 | version "0.7.0" 1216 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1217 | dependencies: 1218 | cross-spawn "^5.0.1" 1219 | get-stream "^3.0.0" 1220 | is-stream "^1.1.0" 1221 | npm-run-path "^2.0.0" 1222 | p-finally "^1.0.0" 1223 | signal-exit "^3.0.0" 1224 | strip-eof "^1.0.0" 1225 | 1226 | execa@^0.9.0: 1227 | version "0.9.0" 1228 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.9.0.tgz#adb7ce62cf985071f60580deb4a88b9e34712d01" 1229 | dependencies: 1230 | cross-spawn "^5.0.1" 1231 | get-stream "^3.0.0" 1232 | is-stream "^1.1.0" 1233 | npm-run-path "^2.0.0" 1234 | p-finally "^1.0.0" 1235 | signal-exit "^3.0.0" 1236 | strip-eof "^1.0.0" 1237 | 1238 | exit-hook@^1.0.0: 1239 | version "1.1.1" 1240 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1241 | 1242 | expand-brackets@^2.1.4: 1243 | version "2.1.4" 1244 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 1245 | dependencies: 1246 | debug "^2.3.3" 1247 | define-property "^0.2.5" 1248 | extend-shallow "^2.0.1" 1249 | posix-character-classes "^0.1.0" 1250 | regex-not "^1.0.0" 1251 | snapdragon "^0.8.1" 1252 | to-regex "^3.0.1" 1253 | 1254 | extend-shallow@^2.0.1: 1255 | version "2.0.1" 1256 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 1257 | dependencies: 1258 | is-extendable "^0.1.0" 1259 | 1260 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 1261 | version "3.0.2" 1262 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 1263 | dependencies: 1264 | assign-symbols "^1.0.0" 1265 | is-extendable "^1.0.1" 1266 | 1267 | extend@~3.0.2: 1268 | version "3.0.2" 1269 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 1270 | 1271 | external-editor@^2.0.4: 1272 | version "2.2.0" 1273 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5" 1274 | dependencies: 1275 | chardet "^0.4.0" 1276 | iconv-lite "^0.4.17" 1277 | tmp "^0.0.33" 1278 | 1279 | extglob@^2.0.4: 1280 | version "2.0.4" 1281 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 1282 | dependencies: 1283 | array-unique "^0.3.2" 1284 | define-property "^1.0.0" 1285 | expand-brackets "^2.1.4" 1286 | extend-shallow "^2.0.1" 1287 | fragment-cache "^0.2.1" 1288 | regex-not "^1.0.0" 1289 | snapdragon "^0.8.1" 1290 | to-regex "^3.0.1" 1291 | 1292 | extsprintf@1.3.0: 1293 | version "1.3.0" 1294 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1295 | 1296 | extsprintf@^1.2.0: 1297 | version "1.4.0" 1298 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 1299 | 1300 | fast-deep-equal@^1.0.0: 1301 | version "1.0.0" 1302 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 1303 | 1304 | fast-json-stable-stringify@^2.0.0: 1305 | version "2.0.0" 1306 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1307 | 1308 | fast-levenshtein@~2.0.4: 1309 | version "2.0.6" 1310 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1311 | 1312 | figures@^1.3.5, figures@^1.7.0: 1313 | version "1.7.0" 1314 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1315 | dependencies: 1316 | escape-string-regexp "^1.0.5" 1317 | object-assign "^4.1.0" 1318 | 1319 | figures@^2.0.0: 1320 | version "2.0.0" 1321 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1322 | dependencies: 1323 | escape-string-regexp "^1.0.5" 1324 | 1325 | file-entry-cache@^2.0.0: 1326 | version "2.0.0" 1327 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1328 | dependencies: 1329 | flat-cache "^1.2.1" 1330 | object-assign "^4.0.1" 1331 | 1332 | fill-range@^4.0.0: 1333 | version "4.0.0" 1334 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 1335 | dependencies: 1336 | extend-shallow "^2.0.1" 1337 | is-number "^3.0.0" 1338 | repeat-string "^1.6.1" 1339 | to-regex-range "^2.1.0" 1340 | 1341 | find-cache-dir@^0.1.1: 1342 | version "0.1.1" 1343 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" 1344 | dependencies: 1345 | commondir "^1.0.1" 1346 | mkdirp "^0.5.1" 1347 | pkg-dir "^1.0.0" 1348 | 1349 | find-parent-dir@^0.3.0: 1350 | version "0.3.0" 1351 | resolved "https://registry.yarnpkg.com/find-parent-dir/-/find-parent-dir-0.3.0.tgz#33c44b429ab2b2f0646299c5f9f718f376ff8d54" 1352 | 1353 | find-root@^1.0.0: 1354 | version "1.1.0" 1355 | resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4" 1356 | 1357 | find-up@^1.0.0: 1358 | version "1.1.2" 1359 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1360 | dependencies: 1361 | path-exists "^2.0.0" 1362 | pinkie-promise "^2.0.0" 1363 | 1364 | find-up@^2.0.0, find-up@^2.1.0: 1365 | version "2.1.0" 1366 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1367 | dependencies: 1368 | locate-path "^2.0.0" 1369 | 1370 | flat-cache@^1.2.1: 1371 | version "1.3.0" 1372 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481" 1373 | dependencies: 1374 | circular-json "^0.3.1" 1375 | del "^2.0.2" 1376 | graceful-fs "^4.1.2" 1377 | write "^0.2.1" 1378 | 1379 | for-in@^1.0.2: 1380 | version "1.0.2" 1381 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1382 | 1383 | foreach@^2.0.5: 1384 | version "2.0.5" 1385 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1386 | 1387 | foreground-child@^1.5.3, foreground-child@^1.5.6: 1388 | version "1.5.6" 1389 | resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-1.5.6.tgz#4fd71ad2dfde96789b980a5c0a295937cb2f5ce9" 1390 | dependencies: 1391 | cross-spawn "^4" 1392 | signal-exit "^3.0.0" 1393 | 1394 | forever-agent@~0.6.1: 1395 | version "0.6.1" 1396 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1397 | 1398 | form-data@~2.3.2: 1399 | version "2.3.2" 1400 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.2.tgz#4970498be604c20c005d4f5c23aecd21d6b49099" 1401 | dependencies: 1402 | asynckit "^0.4.0" 1403 | combined-stream "1.0.6" 1404 | mime-types "^2.1.12" 1405 | 1406 | fragment-cache@^0.2.1: 1407 | version "0.2.1" 1408 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 1409 | dependencies: 1410 | map-cache "^0.2.2" 1411 | 1412 | fs.realpath@^1.0.0: 1413 | version "1.0.0" 1414 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1415 | 1416 | function-bind@^1.0.2, function-bind@^1.1.1: 1417 | version "1.1.1" 1418 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1419 | 1420 | functional-red-black-tree@^1.0.1: 1421 | version "1.0.1" 1422 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 1423 | 1424 | generate-function@^2.0.0: 1425 | version "2.0.0" 1426 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1427 | 1428 | generate-object-property@^1.1.0: 1429 | version "1.2.0" 1430 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1431 | dependencies: 1432 | is-property "^1.0.0" 1433 | 1434 | get-caller-file@^1.0.1: 1435 | version "1.0.2" 1436 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1437 | 1438 | get-func-name@^2.0.0: 1439 | version "2.0.0" 1440 | resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41" 1441 | 1442 | get-own-enumerable-property-symbols@^2.0.1: 1443 | version "2.0.1" 1444 | resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-2.0.1.tgz#5c4ad87f2834c4b9b4e84549dc1e0650fb38c24b" 1445 | 1446 | get-stdin@^5.0.1: 1447 | version "5.0.1" 1448 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" 1449 | 1450 | get-stream@^3.0.0: 1451 | version "3.0.0" 1452 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1453 | 1454 | get-value@^2.0.3, get-value@^2.0.6: 1455 | version "2.0.6" 1456 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 1457 | 1458 | getpass@^0.1.1: 1459 | version "0.1.7" 1460 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1461 | dependencies: 1462 | assert-plus "^1.0.0" 1463 | 1464 | glob@7.1.2, glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.0.6, glob@^7.1.2: 1465 | version "7.1.2" 1466 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1467 | dependencies: 1468 | fs.realpath "^1.0.0" 1469 | inflight "^1.0.4" 1470 | inherits "2" 1471 | minimatch "^3.0.4" 1472 | once "^1.3.0" 1473 | path-is-absolute "^1.0.0" 1474 | 1475 | glob@~7.0.6: 1476 | version "7.0.6" 1477 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.0.6.tgz#211bafaf49e525b8cd93260d14ab136152b3f57a" 1478 | dependencies: 1479 | fs.realpath "^1.0.0" 1480 | inflight "^1.0.4" 1481 | inherits "2" 1482 | minimatch "^3.0.2" 1483 | once "^1.3.0" 1484 | path-is-absolute "^1.0.0" 1485 | 1486 | globals@^11.0.1, globals@^11.1.0: 1487 | version "11.7.0" 1488 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.7.0.tgz#a583faa43055b1aca771914bf68258e2fc125673" 1489 | 1490 | globals@^9.14.0: 1491 | version "9.18.0" 1492 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1493 | 1494 | globby@^5.0.0: 1495 | version "5.0.0" 1496 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1497 | dependencies: 1498 | array-union "^1.0.1" 1499 | arrify "^1.0.0" 1500 | glob "^7.0.3" 1501 | object-assign "^4.0.1" 1502 | pify "^2.0.0" 1503 | pinkie-promise "^2.0.0" 1504 | 1505 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 1506 | version "4.1.11" 1507 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1508 | 1509 | growl@1.10.5, "growl@~> 1.10.0": 1510 | version "1.10.5" 1511 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e" 1512 | 1513 | handlebars@^4.0.11: 1514 | version "4.0.11" 1515 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.11.tgz#630a35dfe0294bc281edae6ffc5d329fc7982dcc" 1516 | dependencies: 1517 | async "^1.4.0" 1518 | optimist "^0.6.1" 1519 | source-map "^0.4.4" 1520 | optionalDependencies: 1521 | uglify-js "^2.6" 1522 | 1523 | har-schema@^2.0.0: 1524 | version "2.0.0" 1525 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 1526 | 1527 | har-validator@~5.1.0: 1528 | version "5.1.0" 1529 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.0.tgz#44657f5688a22cfd4b72486e81b3a3fb11742c29" 1530 | dependencies: 1531 | ajv "^5.3.0" 1532 | har-schema "^2.0.0" 1533 | 1534 | has-ansi@^2.0.0: 1535 | version "2.0.0" 1536 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1537 | dependencies: 1538 | ansi-regex "^2.0.0" 1539 | 1540 | has-flag@^1.0.0: 1541 | version "1.0.0" 1542 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1543 | 1544 | has-flag@^3.0.0: 1545 | version "3.0.0" 1546 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1547 | 1548 | has-symbols@^1.0.0: 1549 | version "1.0.0" 1550 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" 1551 | 1552 | has-value@^0.3.1: 1553 | version "0.3.1" 1554 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 1555 | dependencies: 1556 | get-value "^2.0.3" 1557 | has-values "^0.1.4" 1558 | isobject "^2.0.0" 1559 | 1560 | has-value@^1.0.0: 1561 | version "1.0.0" 1562 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 1563 | dependencies: 1564 | get-value "^2.0.6" 1565 | has-values "^1.0.0" 1566 | isobject "^3.0.0" 1567 | 1568 | has-values@^0.1.4: 1569 | version "0.1.4" 1570 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 1571 | 1572 | has-values@^1.0.0: 1573 | version "1.0.0" 1574 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 1575 | dependencies: 1576 | is-number "^3.0.0" 1577 | kind-of "^4.0.0" 1578 | 1579 | has@^1.0.1: 1580 | version "1.0.1" 1581 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1582 | dependencies: 1583 | function-bind "^1.0.2" 1584 | 1585 | he@1.1.1: 1586 | version "1.1.1" 1587 | resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" 1588 | 1589 | hosted-git-info@^2.1.4: 1590 | version "2.5.0" 1591 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 1592 | 1593 | http-signature@~1.2.0: 1594 | version "1.2.0" 1595 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 1596 | dependencies: 1597 | assert-plus "^1.0.0" 1598 | jsprim "^1.2.2" 1599 | sshpk "^1.7.0" 1600 | 1601 | husky@^0.14.3: 1602 | version "0.14.3" 1603 | resolved "https://registry.yarnpkg.com/husky/-/husky-0.14.3.tgz#c69ed74e2d2779769a17ba8399b54ce0b63c12c3" 1604 | dependencies: 1605 | is-ci "^1.0.10" 1606 | normalize-path "^1.0.0" 1607 | strip-indent "^2.0.0" 1608 | 1609 | iconv-lite@^0.4.17: 1610 | version "0.4.23" 1611 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.23.tgz#297871f63be507adcfbfca715d0cd0eed84e9a63" 1612 | dependencies: 1613 | safer-buffer ">= 2.1.2 < 3" 1614 | 1615 | ieee754@1.1.8, ieee754@^1.1.4: 1616 | version "1.1.8" 1617 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 1618 | 1619 | ignore@^3.0.11, ignore@^3.2.0, ignore@^3.3.3: 1620 | version "3.3.10" 1621 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043" 1622 | 1623 | ignore@^3.0.9: 1624 | version "3.3.7" 1625 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.7.tgz#612289bfb3c220e186a58118618d5be8c1bab021" 1626 | 1627 | imurmurhash@^0.1.4: 1628 | version "0.1.4" 1629 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1630 | 1631 | indent-string@^2.1.0: 1632 | version "2.1.0" 1633 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 1634 | dependencies: 1635 | repeating "^2.0.0" 1636 | 1637 | indent-string@^3.0.0, indent-string@^3.1.0, indent-string@^3.2.0: 1638 | version "3.2.0" 1639 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" 1640 | 1641 | inflight@^1.0.4: 1642 | version "1.0.6" 1643 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1644 | dependencies: 1645 | once "^1.3.0" 1646 | wrappy "1" 1647 | 1648 | inherits@2, inherits@^2.0.3, inherits@~2.0.3: 1649 | version "2.0.3" 1650 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1651 | 1652 | inquirer@^0.12.0: 1653 | version "0.12.0" 1654 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 1655 | dependencies: 1656 | ansi-escapes "^1.1.0" 1657 | ansi-regex "^2.0.0" 1658 | chalk "^1.0.0" 1659 | cli-cursor "^1.0.1" 1660 | cli-width "^2.0.0" 1661 | figures "^1.3.5" 1662 | lodash "^4.3.0" 1663 | readline2 "^1.0.1" 1664 | run-async "^0.1.0" 1665 | rx-lite "^3.1.2" 1666 | string-width "^1.0.1" 1667 | strip-ansi "^3.0.0" 1668 | through "^2.3.6" 1669 | 1670 | inquirer@^3.0.6: 1671 | version "3.3.0" 1672 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" 1673 | dependencies: 1674 | ansi-escapes "^3.0.0" 1675 | chalk "^2.0.0" 1676 | cli-cursor "^2.1.0" 1677 | cli-width "^2.0.0" 1678 | external-editor "^2.0.4" 1679 | figures "^2.0.0" 1680 | lodash "^4.3.0" 1681 | mute-stream "0.0.7" 1682 | run-async "^2.2.0" 1683 | rx-lite "^4.0.8" 1684 | rx-lite-aggregates "^4.0.8" 1685 | string-width "^2.1.0" 1686 | strip-ansi "^4.0.0" 1687 | through "^2.3.6" 1688 | 1689 | interpret@^1.0.0: 1690 | version "1.1.0" 1691 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.1.0.tgz#7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614" 1692 | 1693 | invariant@^2.2.0: 1694 | version "2.2.4" 1695 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 1696 | dependencies: 1697 | loose-envify "^1.0.0" 1698 | 1699 | invert-kv@^1.0.0: 1700 | version "1.0.0" 1701 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1702 | 1703 | is-accessor-descriptor@^0.1.6: 1704 | version "0.1.6" 1705 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 1706 | dependencies: 1707 | kind-of "^3.0.2" 1708 | 1709 | is-accessor-descriptor@^1.0.0: 1710 | version "1.0.0" 1711 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 1712 | dependencies: 1713 | kind-of "^6.0.0" 1714 | 1715 | is-arrayish@^0.2.1: 1716 | version "0.2.1" 1717 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1718 | 1719 | is-buffer@^1.1.5, is-buffer@~1.1.1: 1720 | version "1.1.6" 1721 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1722 | 1723 | is-builtin-module@^1.0.0: 1724 | version "1.0.0" 1725 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1726 | dependencies: 1727 | builtin-modules "^1.0.0" 1728 | 1729 | is-callable@^1.1.1, is-callable@^1.1.3: 1730 | version "1.1.3" 1731 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 1732 | 1733 | is-ci@^1.0.10: 1734 | version "1.1.0" 1735 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.1.0.tgz#247e4162e7860cebbdaf30b774d6b0ac7dcfe7a5" 1736 | dependencies: 1737 | ci-info "^1.0.0" 1738 | 1739 | is-data-descriptor@^0.1.4: 1740 | version "0.1.4" 1741 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 1742 | dependencies: 1743 | kind-of "^3.0.2" 1744 | 1745 | is-data-descriptor@^1.0.0: 1746 | version "1.0.0" 1747 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 1748 | dependencies: 1749 | kind-of "^6.0.0" 1750 | 1751 | is-date-object@^1.0.1: 1752 | version "1.0.1" 1753 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1754 | 1755 | is-descriptor@^0.1.0: 1756 | version "0.1.6" 1757 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 1758 | dependencies: 1759 | is-accessor-descriptor "^0.1.6" 1760 | is-data-descriptor "^0.1.4" 1761 | kind-of "^5.0.0" 1762 | 1763 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 1764 | version "1.0.2" 1765 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 1766 | dependencies: 1767 | is-accessor-descriptor "^1.0.0" 1768 | is-data-descriptor "^1.0.0" 1769 | kind-of "^6.0.2" 1770 | 1771 | is-directory@^0.3.1: 1772 | version "0.3.1" 1773 | resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" 1774 | 1775 | is-extendable@^0.1.0, is-extendable@^0.1.1: 1776 | version "0.1.1" 1777 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1778 | 1779 | is-extendable@^1.0.1: 1780 | version "1.0.1" 1781 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 1782 | dependencies: 1783 | is-plain-object "^2.0.4" 1784 | 1785 | is-extglob@^2.1.1: 1786 | version "2.1.1" 1787 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1788 | 1789 | is-finite@^1.0.0: 1790 | version "1.0.2" 1791 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1792 | dependencies: 1793 | number-is-nan "^1.0.0" 1794 | 1795 | is-fullwidth-code-point@^1.0.0: 1796 | version "1.0.0" 1797 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1798 | dependencies: 1799 | number-is-nan "^1.0.0" 1800 | 1801 | is-fullwidth-code-point@^2.0.0: 1802 | version "2.0.0" 1803 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1804 | 1805 | is-glob@^4.0.0: 1806 | version "4.0.0" 1807 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.0.tgz#9521c76845cc2610a85203ddf080a958c2ffabc0" 1808 | dependencies: 1809 | is-extglob "^2.1.1" 1810 | 1811 | is-my-ip-valid@^1.0.0: 1812 | version "1.0.0" 1813 | resolved "https://registry.yarnpkg.com/is-my-ip-valid/-/is-my-ip-valid-1.0.0.tgz#7b351b8e8edd4d3995d4d066680e664d94696824" 1814 | 1815 | is-my-json-valid@^2.10.0: 1816 | version "2.19.0" 1817 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.19.0.tgz#8fd6e40363cd06b963fa877d444bfb5eddc62175" 1818 | dependencies: 1819 | generate-function "^2.0.0" 1820 | generate-object-property "^1.1.0" 1821 | is-my-ip-valid "^1.0.0" 1822 | jsonpointer "^4.0.0" 1823 | xtend "^4.0.0" 1824 | 1825 | is-number@^3.0.0: 1826 | version "3.0.0" 1827 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1828 | dependencies: 1829 | kind-of "^3.0.2" 1830 | 1831 | is-obj@^1.0.1: 1832 | version "1.0.1" 1833 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 1834 | 1835 | is-observable@^1.1.0: 1836 | version "1.1.0" 1837 | resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-1.1.0.tgz#b3e986c8f44de950867cab5403f5a3465005975e" 1838 | dependencies: 1839 | symbol-observable "^1.1.0" 1840 | 1841 | is-path-cwd@^1.0.0: 1842 | version "1.0.0" 1843 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1844 | 1845 | is-path-in-cwd@^1.0.0: 1846 | version "1.0.0" 1847 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1848 | dependencies: 1849 | is-path-inside "^1.0.0" 1850 | 1851 | is-path-inside@^1.0.0: 1852 | version "1.0.1" 1853 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" 1854 | dependencies: 1855 | path-is-inside "^1.0.1" 1856 | 1857 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: 1858 | version "2.0.4" 1859 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 1860 | dependencies: 1861 | isobject "^3.0.1" 1862 | 1863 | is-promise@^2.1.0: 1864 | version "2.1.0" 1865 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1866 | 1867 | is-property@^1.0.0: 1868 | version "1.0.2" 1869 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1870 | 1871 | is-regex@^1.0.4: 1872 | version "1.0.4" 1873 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 1874 | dependencies: 1875 | has "^1.0.1" 1876 | 1877 | is-regexp@^1.0.0: 1878 | version "1.0.0" 1879 | resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069" 1880 | 1881 | is-resolvable@^1.0.0: 1882 | version "1.0.1" 1883 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.1.tgz#acca1cd36dbe44b974b924321555a70ba03b1cf4" 1884 | 1885 | is-stream@^1.1.0: 1886 | version "1.1.0" 1887 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1888 | 1889 | is-symbol@^1.0.1: 1890 | version "1.0.1" 1891 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 1892 | 1893 | is-typedarray@~1.0.0: 1894 | version "1.0.0" 1895 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1896 | 1897 | is-utf8@^0.2.0: 1898 | version "0.2.1" 1899 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1900 | 1901 | is-windows@^1.0.2: 1902 | version "1.0.2" 1903 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 1904 | 1905 | isarray@0.0.1: 1906 | version "0.0.1" 1907 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 1908 | 1909 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1910 | version "1.0.0" 1911 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1912 | 1913 | isexe@^2.0.0: 1914 | version "2.0.0" 1915 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1916 | 1917 | isobject@^2.0.0: 1918 | version "2.1.0" 1919 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1920 | dependencies: 1921 | isarray "1.0.0" 1922 | 1923 | isobject@^3.0.0, isobject@^3.0.1: 1924 | version "3.0.1" 1925 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 1926 | 1927 | isstream@~0.1.2: 1928 | version "0.1.2" 1929 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1930 | 1931 | istanbul-lib-coverage@^1.1.2, istanbul-lib-coverage@^1.2.0: 1932 | version "1.2.0" 1933 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.0.tgz#f7d8f2e42b97e37fe796114cb0f9d68b5e3a4341" 1934 | 1935 | istanbul-lib-coverage@^2.0.1: 1936 | version "2.0.1" 1937 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.1.tgz#2aee0e073ad8c5f6a0b00e0dfbf52b4667472eda" 1938 | 1939 | istanbul-lib-hook@^1.1.0: 1940 | version "1.1.0" 1941 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.1.0.tgz#8538d970372cb3716d53e55523dd54b557a8d89b" 1942 | dependencies: 1943 | append-transform "^0.4.0" 1944 | 1945 | istanbul-lib-instrument@^2.1.0: 1946 | version "2.3.2" 1947 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-2.3.2.tgz#b287cbae2b5f65f3567b05e2e29b275eaf92d25e" 1948 | dependencies: 1949 | "@babel/generator" "7.0.0-beta.51" 1950 | "@babel/parser" "7.0.0-beta.51" 1951 | "@babel/template" "7.0.0-beta.51" 1952 | "@babel/traverse" "7.0.0-beta.51" 1953 | "@babel/types" "7.0.0-beta.51" 1954 | istanbul-lib-coverage "^2.0.1" 1955 | semver "^5.5.0" 1956 | 1957 | istanbul-lib-report@^1.1.3: 1958 | version "1.1.3" 1959 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.3.tgz#2df12188c0fa77990c0d2176d2d0ba3394188259" 1960 | dependencies: 1961 | istanbul-lib-coverage "^1.1.2" 1962 | mkdirp "^0.5.1" 1963 | path-parse "^1.0.5" 1964 | supports-color "^3.1.2" 1965 | 1966 | istanbul-lib-source-maps@^1.2.5: 1967 | version "1.2.5" 1968 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.5.tgz#ffe6be4e7ab86d3603e4290d54990b14506fc9b1" 1969 | dependencies: 1970 | debug "^3.1.0" 1971 | istanbul-lib-coverage "^1.2.0" 1972 | mkdirp "^0.5.1" 1973 | rimraf "^2.6.1" 1974 | source-map "^0.5.3" 1975 | 1976 | istanbul-reports@^1.4.1: 1977 | version "1.5.0" 1978 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.5.0.tgz#c6c2867fa65f59eb7dcedb7f845dfc76aaee70f9" 1979 | dependencies: 1980 | handlebars "^4.0.11" 1981 | 1982 | jest-get-type@^22.1.0: 1983 | version "22.4.3" 1984 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-22.4.3.tgz#e3a8504d8479342dd4420236b322869f18900ce4" 1985 | 1986 | jest-validate@^23.5.0: 1987 | version "23.5.0" 1988 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-23.5.0.tgz#f5df8f761cf43155e1b2e21d6e9de8a2852d0231" 1989 | dependencies: 1990 | chalk "^2.0.1" 1991 | jest-get-type "^22.1.0" 1992 | leven "^2.1.0" 1993 | pretty-format "^23.5.0" 1994 | 1995 | jmespath@0.15.0: 1996 | version "0.15.0" 1997 | resolved "https://registry.yarnpkg.com/jmespath/-/jmespath-0.15.0.tgz#a3f222a9aae9f966f5d27c796510e28091764217" 1998 | 1999 | js-tokens@^3.0.0, js-tokens@^3.0.2: 2000 | version "3.0.2" 2001 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 2002 | 2003 | js-yaml@^3.11.0, js-yaml@^3.5.1, js-yaml@^3.9.0, js-yaml@^3.9.1: 2004 | version "3.12.0" 2005 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.0.tgz#eaed656ec8344f10f527c6bfa1b6e2244de167d1" 2006 | dependencies: 2007 | argparse "^1.0.7" 2008 | esprima "^4.0.0" 2009 | 2010 | jsbn@~0.1.0: 2011 | version "0.1.1" 2012 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2013 | 2014 | jsesc@^2.5.1: 2015 | version "2.5.1" 2016 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.1.tgz#e421a2a8e20d6b0819df28908f782526b96dd1fe" 2017 | 2018 | json-parse-better-errors@^1.0.1: 2019 | version "1.0.2" 2020 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" 2021 | 2022 | json-schema-traverse@^0.3.0: 2023 | version "0.3.1" 2024 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 2025 | 2026 | json-schema@0.2.3: 2027 | version "0.2.3" 2028 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2029 | 2030 | json-stable-stringify-without-jsonify@^1.0.1: 2031 | version "1.0.1" 2032 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 2033 | 2034 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 2035 | version "1.0.1" 2036 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2037 | dependencies: 2038 | jsonify "~0.0.0" 2039 | 2040 | json-stringify-safe@~5.0.1: 2041 | version "5.0.1" 2042 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2043 | 2044 | jsonify@~0.0.0: 2045 | version "0.0.0" 2046 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2047 | 2048 | jsonpointer@^4.0.0: 2049 | version "4.0.1" 2050 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 2051 | 2052 | jsprim@^1.2.2: 2053 | version "1.4.1" 2054 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 2055 | dependencies: 2056 | assert-plus "1.0.0" 2057 | extsprintf "1.3.0" 2058 | json-schema "0.2.3" 2059 | verror "1.10.0" 2060 | 2061 | jsx-ast-utils@^1.3.4: 2062 | version "1.4.1" 2063 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-1.4.1.tgz#3867213e8dd79bf1e8f2300c0cfc1efb182c0df1" 2064 | 2065 | just-extend@^1.1.27: 2066 | version "1.1.27" 2067 | resolved "https://registry.yarnpkg.com/just-extend/-/just-extend-1.1.27.tgz#ec6e79410ff914e472652abfa0e603c03d60e905" 2068 | 2069 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 2070 | version "3.2.2" 2071 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2072 | dependencies: 2073 | is-buffer "^1.1.5" 2074 | 2075 | kind-of@^4.0.0: 2076 | version "4.0.0" 2077 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2078 | dependencies: 2079 | is-buffer "^1.1.5" 2080 | 2081 | kind-of@^5.0.0: 2082 | version "5.1.0" 2083 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 2084 | 2085 | kind-of@^6.0.0, kind-of@^6.0.2: 2086 | version "6.0.2" 2087 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 2088 | 2089 | lazy-cache@^1.0.3: 2090 | version "1.0.4" 2091 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2092 | 2093 | lcid@^1.0.0: 2094 | version "1.0.0" 2095 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2096 | dependencies: 2097 | invert-kv "^1.0.0" 2098 | 2099 | lcov-parse@^0.0.10: 2100 | version "0.0.10" 2101 | resolved "https://registry.yarnpkg.com/lcov-parse/-/lcov-parse-0.0.10.tgz#1b0b8ff9ac9c7889250582b70b71315d9da6d9a3" 2102 | 2103 | leven@^2.1.0: 2104 | version "2.1.0" 2105 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 2106 | 2107 | levn@^0.3.0, levn@~0.3.0: 2108 | version "0.3.0" 2109 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2110 | dependencies: 2111 | prelude-ls "~1.1.2" 2112 | type-check "~0.3.2" 2113 | 2114 | lint-staged@^7.2.2: 2115 | version "7.2.2" 2116 | resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-7.2.2.tgz#0983d55d497f19f36d11ff2c8242b2f56cc2dd05" 2117 | dependencies: 2118 | chalk "^2.3.1" 2119 | commander "^2.14.1" 2120 | cosmiconfig "^5.0.2" 2121 | debug "^3.1.0" 2122 | dedent "^0.7.0" 2123 | execa "^0.9.0" 2124 | find-parent-dir "^0.3.0" 2125 | is-glob "^4.0.0" 2126 | is-windows "^1.0.2" 2127 | jest-validate "^23.5.0" 2128 | listr "^0.14.1" 2129 | lodash "^4.17.5" 2130 | log-symbols "^2.2.0" 2131 | micromatch "^3.1.8" 2132 | npm-which "^3.0.1" 2133 | p-map "^1.1.1" 2134 | path-is-inside "^1.0.2" 2135 | pify "^3.0.0" 2136 | please-upgrade-node "^3.0.2" 2137 | staged-git-files "1.1.1" 2138 | string-argv "^0.0.2" 2139 | stringify-object "^3.2.2" 2140 | 2141 | listr-silent-renderer@^1.1.1: 2142 | version "1.1.1" 2143 | resolved "https://registry.yarnpkg.com/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz#924b5a3757153770bf1a8e3fbf74b8bbf3f9242e" 2144 | 2145 | listr-update-renderer@^0.4.0: 2146 | version "0.4.0" 2147 | resolved "https://registry.yarnpkg.com/listr-update-renderer/-/listr-update-renderer-0.4.0.tgz#344d980da2ca2e8b145ba305908f32ae3f4cc8a7" 2148 | dependencies: 2149 | chalk "^1.1.3" 2150 | cli-truncate "^0.2.1" 2151 | elegant-spinner "^1.0.1" 2152 | figures "^1.7.0" 2153 | indent-string "^3.0.0" 2154 | log-symbols "^1.0.2" 2155 | log-update "^1.0.2" 2156 | strip-ansi "^3.0.1" 2157 | 2158 | listr-verbose-renderer@^0.4.0: 2159 | version "0.4.1" 2160 | resolved "https://registry.yarnpkg.com/listr-verbose-renderer/-/listr-verbose-renderer-0.4.1.tgz#8206f4cf6d52ddc5827e5fd14989e0e965933a35" 2161 | dependencies: 2162 | chalk "^1.1.3" 2163 | cli-cursor "^1.0.2" 2164 | date-fns "^1.27.2" 2165 | figures "^1.7.0" 2166 | 2167 | listr@^0.14.1: 2168 | version "0.14.1" 2169 | resolved "https://registry.yarnpkg.com/listr/-/listr-0.14.1.tgz#8a7afa4a7135cee4c921d128e0b7dfc6e522d43d" 2170 | dependencies: 2171 | "@samverschueren/stream-to-observable" "^0.3.0" 2172 | cli-truncate "^0.2.1" 2173 | figures "^1.7.0" 2174 | indent-string "^2.1.0" 2175 | is-observable "^1.1.0" 2176 | is-promise "^2.1.0" 2177 | is-stream "^1.1.0" 2178 | listr-silent-renderer "^1.1.1" 2179 | listr-update-renderer "^0.4.0" 2180 | listr-verbose-renderer "^0.4.0" 2181 | log-symbols "^1.0.2" 2182 | log-update "^1.0.2" 2183 | ora "^0.2.3" 2184 | p-map "^1.1.1" 2185 | rxjs "^6.1.0" 2186 | strip-ansi "^3.0.1" 2187 | 2188 | load-json-file@^1.0.0: 2189 | version "1.1.0" 2190 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2191 | dependencies: 2192 | graceful-fs "^4.1.2" 2193 | parse-json "^2.2.0" 2194 | pify "^2.0.0" 2195 | pinkie-promise "^2.0.0" 2196 | strip-bom "^2.0.0" 2197 | 2198 | load-json-file@^2.0.0: 2199 | version "2.0.0" 2200 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2201 | dependencies: 2202 | graceful-fs "^4.1.2" 2203 | parse-json "^2.2.0" 2204 | pify "^2.0.0" 2205 | strip-bom "^3.0.0" 2206 | 2207 | locate-path@^2.0.0: 2208 | version "2.0.0" 2209 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2210 | dependencies: 2211 | p-locate "^2.0.0" 2212 | path-exists "^3.0.0" 2213 | 2214 | lodash.cond@^4.3.0: 2215 | version "4.5.2" 2216 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" 2217 | 2218 | lodash.get@^4.4.2: 2219 | version "4.4.2" 2220 | resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99" 2221 | 2222 | lodash.isempty@^4.2.1: 2223 | version "4.4.0" 2224 | resolved "https://registry.yarnpkg.com/lodash.isempty/-/lodash.isempty-4.4.0.tgz#6f86cbedd8be4ec987be9aaf33c9684db1b31e7e" 2225 | 2226 | lodash.memoize@^4.1.2: 2227 | version "4.1.2" 2228 | resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" 2229 | 2230 | lodash.merge@^4.6.0: 2231 | version "4.6.1" 2232 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.1.tgz#adc25d9cb99b9391c59624f379fbba60d7111d54" 2233 | 2234 | lodash.unescape@4.0.1: 2235 | version "4.0.1" 2236 | resolved "https://registry.yarnpkg.com/lodash.unescape/-/lodash.unescape-4.0.1.tgz#bf2249886ce514cda112fae9218cdc065211fc9c" 2237 | 2238 | lodash@^4.0.0, lodash@^4.17.5, lodash@^4.2.0: 2239 | version "4.17.10" 2240 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7" 2241 | 2242 | lodash@^4.17.4, lodash@^4.3.0: 2243 | version "4.17.4" 2244 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2245 | 2246 | log-driver@^1.2.7: 2247 | version "1.2.7" 2248 | resolved "https://registry.yarnpkg.com/log-driver/-/log-driver-1.2.7.tgz#63b95021f0702fedfa2c9bb0a24e7797d71871d8" 2249 | 2250 | log-symbols@^1.0.2: 2251 | version "1.0.2" 2252 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" 2253 | dependencies: 2254 | chalk "^1.0.0" 2255 | 2256 | log-symbols@^2.2.0: 2257 | version "2.2.0" 2258 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a" 2259 | dependencies: 2260 | chalk "^2.0.1" 2261 | 2262 | log-update@^1.0.2: 2263 | version "1.0.2" 2264 | resolved "https://registry.yarnpkg.com/log-update/-/log-update-1.0.2.tgz#19929f64c4093d2d2e7075a1dad8af59c296b8d1" 2265 | dependencies: 2266 | ansi-escapes "^1.0.0" 2267 | cli-cursor "^1.0.2" 2268 | 2269 | loglevel-colored-level-prefix@^1.0.0: 2270 | version "1.0.0" 2271 | resolved "https://registry.yarnpkg.com/loglevel-colored-level-prefix/-/loglevel-colored-level-prefix-1.0.0.tgz#6a40218fdc7ae15fc76c3d0f3e676c465388603e" 2272 | dependencies: 2273 | chalk "^1.1.3" 2274 | loglevel "^1.4.1" 2275 | 2276 | loglevel@^1.4.1: 2277 | version "1.6.1" 2278 | resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.6.1.tgz#e0fc95133b6ef276cdc8887cdaf24aa6f156f8fa" 2279 | 2280 | lolex@^2.3.2, lolex@^2.7.1: 2281 | version "2.7.1" 2282 | resolved "https://registry.yarnpkg.com/lolex/-/lolex-2.7.1.tgz#e40a8c4d1f14b536aa03e42a537c7adbaf0c20be" 2283 | 2284 | longest@^1.0.1: 2285 | version "1.0.1" 2286 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2287 | 2288 | loose-envify@^1.0.0: 2289 | version "1.3.1" 2290 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2291 | dependencies: 2292 | js-tokens "^3.0.0" 2293 | 2294 | lru-cache@^4.0.1: 2295 | version "4.1.1" 2296 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 2297 | dependencies: 2298 | pseudomap "^1.0.2" 2299 | yallist "^2.1.2" 2300 | 2301 | make-plural@^4.1.1: 2302 | version "4.2.0" 2303 | resolved "https://registry.yarnpkg.com/make-plural/-/make-plural-4.2.0.tgz#03edfc34a2aee630a57e209369ef26ee3ca69590" 2304 | optionalDependencies: 2305 | minimist "^1.2.0" 2306 | 2307 | map-cache@^0.2.2: 2308 | version "0.2.2" 2309 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 2310 | 2311 | map-visit@^1.0.0: 2312 | version "1.0.0" 2313 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 2314 | dependencies: 2315 | object-visit "^1.0.0" 2316 | 2317 | md5-hex@^1.2.0: 2318 | version "1.3.0" 2319 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-1.3.0.tgz#d2c4afe983c4370662179b8cad145219135046c4" 2320 | dependencies: 2321 | md5-o-matic "^0.1.1" 2322 | 2323 | md5-o-matic@^0.1.1: 2324 | version "0.1.1" 2325 | resolved "https://registry.yarnpkg.com/md5-o-matic/-/md5-o-matic-0.1.1.tgz#822bccd65e117c514fab176b25945d54100a03c3" 2326 | 2327 | md5@^2.1.0: 2328 | version "2.2.1" 2329 | resolved "https://registry.yarnpkg.com/md5/-/md5-2.2.1.tgz#53ab38d5fe3c8891ba465329ea23fac0540126f9" 2330 | dependencies: 2331 | charenc "~0.0.1" 2332 | crypt "~0.0.1" 2333 | is-buffer "~1.1.1" 2334 | 2335 | mem@^1.1.0: 2336 | version "1.1.0" 2337 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 2338 | dependencies: 2339 | mimic-fn "^1.0.0" 2340 | 2341 | merge-source-map@^1.1.0: 2342 | version "1.1.0" 2343 | resolved "https://registry.yarnpkg.com/merge-source-map/-/merge-source-map-1.1.0.tgz#2fdde7e6020939f70906a68f2d7ae685e4c8c646" 2344 | dependencies: 2345 | source-map "^0.6.1" 2346 | 2347 | messageformat-parser@^1.1.0: 2348 | version "1.1.0" 2349 | resolved "https://registry.yarnpkg.com/messageformat-parser/-/messageformat-parser-1.1.0.tgz#13ba2250a76bbde8e0fca0dbb3475f95c594a90a" 2350 | 2351 | messageformat@^1.0.2: 2352 | version "1.1.1" 2353 | resolved "https://registry.yarnpkg.com/messageformat/-/messageformat-1.1.1.tgz#ceaa2e6c86929d4807058275a7372b1bd963bdf6" 2354 | dependencies: 2355 | glob "~7.0.6" 2356 | make-plural "^4.1.1" 2357 | messageformat-parser "^1.1.0" 2358 | nopt "~3.0.6" 2359 | reserved-words "^0.1.2" 2360 | 2361 | micromatch@^3.1.10, micromatch@^3.1.8: 2362 | version "3.1.10" 2363 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 2364 | dependencies: 2365 | arr-diff "^4.0.0" 2366 | array-unique "^0.3.2" 2367 | braces "^2.3.1" 2368 | define-property "^2.0.2" 2369 | extend-shallow "^3.0.2" 2370 | extglob "^2.0.4" 2371 | fragment-cache "^0.2.1" 2372 | kind-of "^6.0.2" 2373 | nanomatch "^1.2.9" 2374 | object.pick "^1.3.0" 2375 | regex-not "^1.0.0" 2376 | snapdragon "^0.8.1" 2377 | to-regex "^3.0.2" 2378 | 2379 | mime-db@~1.30.0: 2380 | version "1.30.0" 2381 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 2382 | 2383 | mime-db@~1.35.0: 2384 | version "1.35.0" 2385 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.35.0.tgz#0569d657466491283709663ad379a99b90d9ab47" 2386 | 2387 | mime-types@^2.1.12: 2388 | version "2.1.17" 2389 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 2390 | dependencies: 2391 | mime-db "~1.30.0" 2392 | 2393 | mime-types@~2.1.19: 2394 | version "2.1.19" 2395 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.19.tgz#71e464537a7ef81c15f2db9d97e913fc0ff606f0" 2396 | dependencies: 2397 | mime-db "~1.35.0" 2398 | 2399 | mimic-fn@^1.0.0: 2400 | version "1.1.0" 2401 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 2402 | 2403 | minimatch@3.0.4, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 2404 | version "3.0.4" 2405 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2406 | dependencies: 2407 | brace-expansion "^1.1.7" 2408 | 2409 | minimist@0.0.8: 2410 | version "0.0.8" 2411 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2412 | 2413 | minimist@1.2.0, minimist@^1.1.0, minimist@^1.2.0: 2414 | version "1.2.0" 2415 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2416 | 2417 | minimist@~0.0.1: 2418 | version "0.0.10" 2419 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 2420 | 2421 | mixin-deep@^1.2.0: 2422 | version "1.3.1" 2423 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe" 2424 | dependencies: 2425 | for-in "^1.0.2" 2426 | is-extendable "^1.0.1" 2427 | 2428 | mkdirp@0.5.1, mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.1: 2429 | version "0.5.1" 2430 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2431 | dependencies: 2432 | minimist "0.0.8" 2433 | 2434 | mocha-junit-reporter@^1.18.0: 2435 | version "1.18.0" 2436 | resolved "https://registry.yarnpkg.com/mocha-junit-reporter/-/mocha-junit-reporter-1.18.0.tgz#9209a3fba30025ae3ae5e6bfe7f9c5bc3c2e8ee2" 2437 | dependencies: 2438 | debug "^2.2.0" 2439 | md5 "^2.1.0" 2440 | mkdirp "~0.5.1" 2441 | strip-ansi "^4.0.0" 2442 | xml "^1.0.0" 2443 | 2444 | mocha@^5.2.0: 2445 | version "5.2.0" 2446 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-5.2.0.tgz#6d8ae508f59167f940f2b5b3c4a612ae50c90ae6" 2447 | dependencies: 2448 | browser-stdout "1.3.1" 2449 | commander "2.15.1" 2450 | debug "3.1.0" 2451 | diff "3.5.0" 2452 | escape-string-regexp "1.0.5" 2453 | glob "7.1.2" 2454 | growl "1.10.5" 2455 | he "1.1.1" 2456 | minimatch "3.0.4" 2457 | mkdirp "0.5.1" 2458 | supports-color "5.4.0" 2459 | 2460 | ms@2.0.0: 2461 | version "2.0.0" 2462 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2463 | 2464 | mute-stream@0.0.5: 2465 | version "0.0.5" 2466 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 2467 | 2468 | mute-stream@0.0.7: 2469 | version "0.0.7" 2470 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 2471 | 2472 | nanomatch@^1.2.9: 2473 | version "1.2.13" 2474 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" 2475 | dependencies: 2476 | arr-diff "^4.0.0" 2477 | array-unique "^0.3.2" 2478 | define-property "^2.0.2" 2479 | extend-shallow "^3.0.2" 2480 | fragment-cache "^0.2.1" 2481 | is-windows "^1.0.2" 2482 | kind-of "^6.0.2" 2483 | object.pick "^1.3.0" 2484 | regex-not "^1.0.0" 2485 | snapdragon "^0.8.1" 2486 | to-regex "^3.0.1" 2487 | 2488 | natural-compare@^1.4.0: 2489 | version "1.4.0" 2490 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2491 | 2492 | next-tick@1: 2493 | version "1.0.0" 2494 | resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c" 2495 | 2496 | nise@^1.4.2: 2497 | version "1.4.3" 2498 | resolved "https://registry.yarnpkg.com/nise/-/nise-1.4.3.tgz#d1996e8d15256ceff1a0a1596e0c72bff370e37c" 2499 | dependencies: 2500 | "@sinonjs/formatio" "^2.0.0" 2501 | just-extend "^1.1.27" 2502 | lolex "^2.3.2" 2503 | path-to-regexp "^1.7.0" 2504 | text-encoding "^0.6.4" 2505 | 2506 | nopt@~3.0.6: 2507 | version "3.0.6" 2508 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 2509 | dependencies: 2510 | abbrev "1" 2511 | 2512 | normalize-package-data@^2.3.2: 2513 | version "2.4.0" 2514 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2515 | dependencies: 2516 | hosted-git-info "^2.1.4" 2517 | is-builtin-module "^1.0.0" 2518 | semver "2 || 3 || 4 || 5" 2519 | validate-npm-package-license "^3.0.1" 2520 | 2521 | normalize-path@^1.0.0: 2522 | version "1.0.0" 2523 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-1.0.0.tgz#32d0e472f91ff345701c15a8311018d3b0a90379" 2524 | 2525 | npm-path@^2.0.2: 2526 | version "2.0.4" 2527 | resolved "https://registry.yarnpkg.com/npm-path/-/npm-path-2.0.4.tgz#c641347a5ff9d6a09e4d9bce5580c4f505278e64" 2528 | dependencies: 2529 | which "^1.2.10" 2530 | 2531 | npm-run-path@^2.0.0: 2532 | version "2.0.2" 2533 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2534 | dependencies: 2535 | path-key "^2.0.0" 2536 | 2537 | npm-which@^3.0.1: 2538 | version "3.0.1" 2539 | resolved "https://registry.yarnpkg.com/npm-which/-/npm-which-3.0.1.tgz#9225f26ec3a285c209cae67c3b11a6b4ab7140aa" 2540 | dependencies: 2541 | commander "^2.9.0" 2542 | npm-path "^2.0.2" 2543 | which "^1.2.10" 2544 | 2545 | number-is-nan@^1.0.0: 2546 | version "1.0.1" 2547 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2548 | 2549 | nyc@^12.0.2: 2550 | version "12.0.2" 2551 | resolved "https://registry.yarnpkg.com/nyc/-/nyc-12.0.2.tgz#8a4a4ed690966c11ec587ff87eea0c12c974ba99" 2552 | dependencies: 2553 | archy "^1.0.0" 2554 | arrify "^1.0.1" 2555 | caching-transform "^1.0.0" 2556 | convert-source-map "^1.5.1" 2557 | debug-log "^1.0.1" 2558 | default-require-extensions "^1.0.0" 2559 | find-cache-dir "^0.1.1" 2560 | find-up "^2.1.0" 2561 | foreground-child "^1.5.3" 2562 | glob "^7.0.6" 2563 | istanbul-lib-coverage "^1.2.0" 2564 | istanbul-lib-hook "^1.1.0" 2565 | istanbul-lib-instrument "^2.1.0" 2566 | istanbul-lib-report "^1.1.3" 2567 | istanbul-lib-source-maps "^1.2.5" 2568 | istanbul-reports "^1.4.1" 2569 | md5-hex "^1.2.0" 2570 | merge-source-map "^1.1.0" 2571 | micromatch "^3.1.10" 2572 | mkdirp "^0.5.0" 2573 | resolve-from "^2.0.0" 2574 | rimraf "^2.6.2" 2575 | signal-exit "^3.0.1" 2576 | spawn-wrap "^1.4.2" 2577 | test-exclude "^4.2.0" 2578 | yargs "11.1.0" 2579 | yargs-parser "^8.0.0" 2580 | 2581 | oauth-sign@~0.9.0: 2582 | version "0.9.0" 2583 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" 2584 | 2585 | object-assign@^4.0.1, object-assign@^4.1.0: 2586 | version "4.1.1" 2587 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2588 | 2589 | object-copy@^0.1.0: 2590 | version "0.1.0" 2591 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 2592 | dependencies: 2593 | copy-descriptor "^0.1.0" 2594 | define-property "^0.2.5" 2595 | kind-of "^3.0.3" 2596 | 2597 | object-keys@^1.0.11: 2598 | version "1.0.12" 2599 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.12.tgz#09c53855377575310cca62f55bb334abff7b3ed2" 2600 | 2601 | object-keys@^1.0.8: 2602 | version "1.0.11" 2603 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 2604 | 2605 | object-visit@^1.0.0: 2606 | version "1.0.1" 2607 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 2608 | dependencies: 2609 | isobject "^3.0.0" 2610 | 2611 | object.assign@^4.0.4: 2612 | version "4.1.0" 2613 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" 2614 | dependencies: 2615 | define-properties "^1.1.2" 2616 | function-bind "^1.1.1" 2617 | has-symbols "^1.0.0" 2618 | object-keys "^1.0.11" 2619 | 2620 | object.pick@^1.3.0: 2621 | version "1.3.0" 2622 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 2623 | dependencies: 2624 | isobject "^3.0.1" 2625 | 2626 | once@^1.3.0: 2627 | version "1.4.0" 2628 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2629 | dependencies: 2630 | wrappy "1" 2631 | 2632 | onetime@^1.0.0: 2633 | version "1.1.0" 2634 | resolved "http://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2635 | 2636 | onetime@^2.0.0: 2637 | version "2.0.1" 2638 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2639 | dependencies: 2640 | mimic-fn "^1.0.0" 2641 | 2642 | optimist@^0.6.1: 2643 | version "0.6.1" 2644 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2645 | dependencies: 2646 | minimist "~0.0.1" 2647 | wordwrap "~0.0.2" 2648 | 2649 | optionator@^0.8.2: 2650 | version "0.8.2" 2651 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2652 | dependencies: 2653 | deep-is "~0.1.3" 2654 | fast-levenshtein "~2.0.4" 2655 | levn "~0.3.0" 2656 | prelude-ls "~1.1.2" 2657 | type-check "~0.3.2" 2658 | wordwrap "~1.0.0" 2659 | 2660 | ora@^0.2.3: 2661 | version "0.2.3" 2662 | resolved "https://registry.yarnpkg.com/ora/-/ora-0.2.3.tgz#37527d220adcd53c39b73571d754156d5db657a4" 2663 | dependencies: 2664 | chalk "^1.1.1" 2665 | cli-cursor "^1.0.2" 2666 | cli-spinners "^0.1.2" 2667 | object-assign "^4.0.1" 2668 | 2669 | os-homedir@^1.0.0, os-homedir@^1.0.1: 2670 | version "1.0.2" 2671 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2672 | 2673 | os-locale@^2.0.0: 2674 | version "2.1.0" 2675 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 2676 | dependencies: 2677 | execa "^0.7.0" 2678 | lcid "^1.0.0" 2679 | mem "^1.1.0" 2680 | 2681 | os-tmpdir@~1.0.2: 2682 | version "1.0.2" 2683 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2684 | 2685 | p-finally@^1.0.0: 2686 | version "1.0.0" 2687 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2688 | 2689 | p-limit@^1.1.0: 2690 | version "1.1.0" 2691 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2692 | 2693 | p-locate@^2.0.0: 2694 | version "2.0.0" 2695 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2696 | dependencies: 2697 | p-limit "^1.1.0" 2698 | 2699 | p-map@^1.1.1: 2700 | version "1.2.0" 2701 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.2.0.tgz#e4e94f311eabbc8633a1e79908165fca26241b6b" 2702 | 2703 | parse-json@^2.2.0: 2704 | version "2.2.0" 2705 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2706 | dependencies: 2707 | error-ex "^1.2.0" 2708 | 2709 | parse-json@^4.0.0: 2710 | version "4.0.0" 2711 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" 2712 | dependencies: 2713 | error-ex "^1.3.1" 2714 | json-parse-better-errors "^1.0.1" 2715 | 2716 | pascalcase@^0.1.1: 2717 | version "0.1.1" 2718 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 2719 | 2720 | path-exists@^2.0.0: 2721 | version "2.1.0" 2722 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2723 | dependencies: 2724 | pinkie-promise "^2.0.0" 2725 | 2726 | path-exists@^3.0.0: 2727 | version "3.0.0" 2728 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2729 | 2730 | path-is-absolute@^1.0.0: 2731 | version "1.0.1" 2732 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2733 | 2734 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 2735 | version "1.0.2" 2736 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2737 | 2738 | path-key@^2.0.0: 2739 | version "2.0.1" 2740 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2741 | 2742 | path-parse@^1.0.5: 2743 | version "1.0.5" 2744 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2745 | 2746 | path-to-regexp@^1.7.0: 2747 | version "1.7.0" 2748 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.7.0.tgz#59fde0f435badacba103a84e9d3bc64e96b9937d" 2749 | dependencies: 2750 | isarray "0.0.1" 2751 | 2752 | path-type@^1.0.0: 2753 | version "1.1.0" 2754 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2755 | dependencies: 2756 | graceful-fs "^4.1.2" 2757 | pify "^2.0.0" 2758 | pinkie-promise "^2.0.0" 2759 | 2760 | pathval@^1.0.0: 2761 | version "1.1.0" 2762 | resolved "https://registry.yarnpkg.com/pathval/-/pathval-1.1.0.tgz#b942e6d4bde653005ef6b71361def8727d0645e0" 2763 | 2764 | performance-now@^2.1.0: 2765 | version "2.1.0" 2766 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 2767 | 2768 | pify@^2.0.0: 2769 | version "2.3.0" 2770 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2771 | 2772 | pify@^3.0.0: 2773 | version "3.0.0" 2774 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 2775 | 2776 | pinkie-promise@^2.0.0: 2777 | version "2.0.1" 2778 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2779 | dependencies: 2780 | pinkie "^2.0.0" 2781 | 2782 | pinkie@^2.0.0: 2783 | version "2.0.4" 2784 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2785 | 2786 | pkg-conf@^2.0.0: 2787 | version "2.0.0" 2788 | resolved "https://registry.yarnpkg.com/pkg-conf/-/pkg-conf-2.0.0.tgz#071c87650403bccfb9c627f58751bfe47c067279" 2789 | dependencies: 2790 | find-up "^2.0.0" 2791 | load-json-file "^2.0.0" 2792 | 2793 | pkg-config@^1.1.0: 2794 | version "1.1.1" 2795 | resolved "https://registry.yarnpkg.com/pkg-config/-/pkg-config-1.1.1.tgz#557ef22d73da3c8837107766c52eadabde298fe4" 2796 | dependencies: 2797 | debug-log "^1.0.0" 2798 | find-root "^1.0.0" 2799 | xtend "^4.0.1" 2800 | 2801 | pkg-dir@^1.0.0: 2802 | version "1.0.0" 2803 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 2804 | dependencies: 2805 | find-up "^1.0.0" 2806 | 2807 | pkg-up@^1.0.0: 2808 | version "1.0.0" 2809 | resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-1.0.0.tgz#3e08fb461525c4421624a33b9f7e6d0af5b05a26" 2810 | dependencies: 2811 | find-up "^1.0.0" 2812 | 2813 | please-upgrade-node@^3.0.2: 2814 | version "3.1.1" 2815 | resolved "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.1.1.tgz#ed320051dfcc5024fae696712c8288993595e8ac" 2816 | dependencies: 2817 | semver-compare "^1.0.0" 2818 | 2819 | pluralize@^1.2.1: 2820 | version "1.2.1" 2821 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 2822 | 2823 | pluralize@^7.0.0: 2824 | version "7.0.0" 2825 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" 2826 | 2827 | posix-character-classes@^0.1.0: 2828 | version "0.1.1" 2829 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 2830 | 2831 | prelude-ls@~1.1.2: 2832 | version "1.1.2" 2833 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2834 | 2835 | prettier-eslint@^8.1.1: 2836 | version "8.8.2" 2837 | resolved "https://registry.yarnpkg.com/prettier-eslint/-/prettier-eslint-8.8.2.tgz#fcb29a48ab4524e234680797fe70e9d136ccaf0b" 2838 | dependencies: 2839 | babel-runtime "^6.26.0" 2840 | common-tags "^1.4.0" 2841 | dlv "^1.1.0" 2842 | eslint "^4.0.0" 2843 | indent-string "^3.2.0" 2844 | lodash.merge "^4.6.0" 2845 | loglevel-colored-level-prefix "^1.0.0" 2846 | prettier "^1.7.0" 2847 | pretty-format "^23.0.1" 2848 | require-relative "^0.8.7" 2849 | typescript "^2.5.1" 2850 | typescript-eslint-parser "^16.0.0" 2851 | vue-eslint-parser "^2.0.2" 2852 | 2853 | prettier-standard@^8.0.1: 2854 | version "8.0.1" 2855 | resolved "https://registry.yarnpkg.com/prettier-standard/-/prettier-standard-8.0.1.tgz#3658ddc33d46a3ace950d5454654ae47cd6ca026" 2856 | dependencies: 2857 | "@sheerun/eslint-config-standard" "^10.2.1" 2858 | babel-eslint ">=7.2.3" 2859 | babel-runtime "^6.23.0" 2860 | chalk "^2.3.0" 2861 | core-js "^2.5.3" 2862 | eslint "^4.7.2" 2863 | find-up "^2.1.0" 2864 | get-stdin "^5.0.1" 2865 | glob "^7.1.2" 2866 | ignore "^3.3.3" 2867 | indent-string "^3.1.0" 2868 | lodash.memoize "^4.1.2" 2869 | loglevel-colored-level-prefix "^1.0.0" 2870 | messageformat "^1.0.2" 2871 | minimist "1.2.0" 2872 | prettier "1.9.x" 2873 | prettier-eslint "^8.1.1" 2874 | regenerator-runtime "^0.11.1" 2875 | rxjs "^5.4.0" 2876 | 2877 | prettier@1.9.x: 2878 | version "1.9.2" 2879 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.9.2.tgz#96bc2132f7a32338e6078aeb29727178c6335827" 2880 | 2881 | prettier@^1.7.0: 2882 | version "1.14.2" 2883 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.14.2.tgz#0ac1c6e1a90baa22a62925f41963c841983282f9" 2884 | 2885 | pretty-format@^23.0.1, pretty-format@^23.5.0: 2886 | version "23.5.0" 2887 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-23.5.0.tgz#0f9601ad9da70fe690a269cd3efca732c210687c" 2888 | dependencies: 2889 | ansi-regex "^3.0.0" 2890 | ansi-styles "^3.2.0" 2891 | 2892 | process-nextick-args@~1.0.6: 2893 | version "1.0.7" 2894 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2895 | 2896 | process-nextick-args@~2.0.0: 2897 | version "2.0.0" 2898 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 2899 | 2900 | progress@^1.1.8: 2901 | version "1.1.8" 2902 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 2903 | 2904 | progress@^2.0.0: 2905 | version "2.0.0" 2906 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 2907 | 2908 | pseudomap@^1.0.2: 2909 | version "1.0.2" 2910 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2911 | 2912 | psl@^1.1.24: 2913 | version "1.1.29" 2914 | resolved "https://registry.yarnpkg.com/psl/-/psl-1.1.29.tgz#60f580d360170bb722a797cc704411e6da850c67" 2915 | 2916 | punycode@1.3.2: 2917 | version "1.3.2" 2918 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 2919 | 2920 | punycode@^1.4.1: 2921 | version "1.4.1" 2922 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2923 | 2924 | qs@~6.5.2: 2925 | version "6.5.2" 2926 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" 2927 | 2928 | querystring@0.2.0: 2929 | version "0.2.0" 2930 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 2931 | 2932 | read-pkg-up@^1.0.1: 2933 | version "1.0.1" 2934 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2935 | dependencies: 2936 | find-up "^1.0.0" 2937 | read-pkg "^1.0.0" 2938 | 2939 | read-pkg@^1.0.0: 2940 | version "1.1.0" 2941 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2942 | dependencies: 2943 | load-json-file "^1.0.0" 2944 | normalize-package-data "^2.3.2" 2945 | path-type "^1.0.0" 2946 | 2947 | readable-stream@^2.2.2: 2948 | version "2.3.3" 2949 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 2950 | dependencies: 2951 | core-util-is "~1.0.0" 2952 | inherits "~2.0.3" 2953 | isarray "~1.0.0" 2954 | process-nextick-args "~1.0.6" 2955 | safe-buffer "~5.1.1" 2956 | string_decoder "~1.0.3" 2957 | util-deprecate "~1.0.1" 2958 | 2959 | readable-stream@^2.3.6: 2960 | version "2.3.6" 2961 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 2962 | dependencies: 2963 | core-util-is "~1.0.0" 2964 | inherits "~2.0.3" 2965 | isarray "~1.0.0" 2966 | process-nextick-args "~2.0.0" 2967 | safe-buffer "~5.1.1" 2968 | string_decoder "~1.1.1" 2969 | util-deprecate "~1.0.1" 2970 | 2971 | readline2@^1.0.1: 2972 | version "1.0.1" 2973 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 2974 | dependencies: 2975 | code-point-at "^1.0.0" 2976 | is-fullwidth-code-point "^1.0.0" 2977 | mute-stream "0.0.5" 2978 | 2979 | rechoir@^0.6.2: 2980 | version "0.6.2" 2981 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 2982 | dependencies: 2983 | resolve "^1.1.6" 2984 | 2985 | regenerator-runtime@^0.11.0, regenerator-runtime@^0.11.1: 2986 | version "0.11.1" 2987 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 2988 | 2989 | regex-not@^1.0.0, regex-not@^1.0.2: 2990 | version "1.0.2" 2991 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 2992 | dependencies: 2993 | extend-shallow "^3.0.2" 2994 | safe-regex "^1.1.0" 2995 | 2996 | regexpp@^1.0.1: 2997 | version "1.1.0" 2998 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-1.1.0.tgz#0e3516dd0b7904f413d2d4193dce4618c3a689ab" 2999 | 3000 | repeat-element@^1.1.2: 3001 | version "1.1.2" 3002 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3003 | 3004 | repeat-string@^1.5.2, repeat-string@^1.6.1: 3005 | version "1.6.1" 3006 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3007 | 3008 | repeating@^2.0.0: 3009 | version "2.0.1" 3010 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3011 | dependencies: 3012 | is-finite "^1.0.0" 3013 | 3014 | request@^2.85.0: 3015 | version "2.88.0" 3016 | resolved "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef" 3017 | dependencies: 3018 | aws-sign2 "~0.7.0" 3019 | aws4 "^1.8.0" 3020 | caseless "~0.12.0" 3021 | combined-stream "~1.0.6" 3022 | extend "~3.0.2" 3023 | forever-agent "~0.6.1" 3024 | form-data "~2.3.2" 3025 | har-validator "~5.1.0" 3026 | http-signature "~1.2.0" 3027 | is-typedarray "~1.0.0" 3028 | isstream "~0.1.2" 3029 | json-stringify-safe "~5.0.1" 3030 | mime-types "~2.1.19" 3031 | oauth-sign "~0.9.0" 3032 | performance-now "^2.1.0" 3033 | qs "~6.5.2" 3034 | safe-buffer "^5.1.2" 3035 | tough-cookie "~2.4.3" 3036 | tunnel-agent "^0.6.0" 3037 | uuid "^3.3.2" 3038 | 3039 | require-directory@^2.1.1: 3040 | version "2.1.1" 3041 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3042 | 3043 | require-main-filename@^1.0.1: 3044 | version "1.0.1" 3045 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3046 | 3047 | require-relative@^0.8.7: 3048 | version "0.8.7" 3049 | resolved "https://registry.yarnpkg.com/require-relative/-/require-relative-0.8.7.tgz#7999539fc9e047a37928fa196f8e1563dabd36de" 3050 | 3051 | require-uncached@^1.0.2, require-uncached@^1.0.3: 3052 | version "1.0.3" 3053 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 3054 | dependencies: 3055 | caller-path "^0.1.0" 3056 | resolve-from "^1.0.0" 3057 | 3058 | reserved-words@^0.1.2: 3059 | version "0.1.2" 3060 | resolved "https://registry.yarnpkg.com/reserved-words/-/reserved-words-0.1.2.tgz#00a0940f98cd501aeaaac316411d9adc52b31ab1" 3061 | 3062 | resolve-from@^1.0.0: 3063 | version "1.0.1" 3064 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 3065 | 3066 | resolve-from@^2.0.0: 3067 | version "2.0.0" 3068 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57" 3069 | 3070 | resolve-url@^0.2.1: 3071 | version "0.2.1" 3072 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 3073 | 3074 | resolve@^1.1.6, resolve@^1.1.7: 3075 | version "1.8.1" 3076 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.8.1.tgz#82f1ec19a423ac1fbd080b0bab06ba36e84a7a26" 3077 | dependencies: 3078 | path-parse "^1.0.5" 3079 | 3080 | restore-cursor@^1.0.1: 3081 | version "1.0.1" 3082 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 3083 | dependencies: 3084 | exit-hook "^1.0.0" 3085 | onetime "^1.0.0" 3086 | 3087 | restore-cursor@^2.0.0: 3088 | version "2.0.0" 3089 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 3090 | dependencies: 3091 | onetime "^2.0.0" 3092 | signal-exit "^3.0.2" 3093 | 3094 | ret@~0.1.10: 3095 | version "0.1.15" 3096 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 3097 | 3098 | right-align@^0.1.1: 3099 | version "0.1.3" 3100 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3101 | dependencies: 3102 | align-text "^0.1.1" 3103 | 3104 | rimraf@^2.2.8, rimraf@^2.6.1, rimraf@^2.6.2: 3105 | version "2.6.2" 3106 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 3107 | dependencies: 3108 | glob "^7.0.5" 3109 | 3110 | run-async@^0.1.0: 3111 | version "0.1.0" 3112 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 3113 | dependencies: 3114 | once "^1.3.0" 3115 | 3116 | run-async@^2.2.0: 3117 | version "2.3.0" 3118 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 3119 | dependencies: 3120 | is-promise "^2.1.0" 3121 | 3122 | run-parallel@^1.1.2: 3123 | version "1.1.6" 3124 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.1.6.tgz#29003c9a2163e01e2d2dfc90575f2c6c1d61a039" 3125 | 3126 | rx-lite-aggregates@^4.0.8: 3127 | version "4.0.8" 3128 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 3129 | dependencies: 3130 | rx-lite "*" 3131 | 3132 | rx-lite@*, rx-lite@^4.0.8: 3133 | version "4.0.8" 3134 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 3135 | 3136 | rx-lite@^3.1.2: 3137 | version "3.1.2" 3138 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 3139 | 3140 | rxjs@^5.4.0: 3141 | version "5.5.11" 3142 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.5.11.tgz#f733027ca43e3bec6b994473be4ab98ad43ced87" 3143 | dependencies: 3144 | symbol-observable "1.0.1" 3145 | 3146 | rxjs@^6.1.0: 3147 | version "6.2.2" 3148 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.2.2.tgz#eb75fa3c186ff5289907d06483a77884586e1cf9" 3149 | dependencies: 3150 | tslib "^1.9.0" 3151 | 3152 | safe-buffer@^5.0.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 3153 | version "5.1.1" 3154 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 3155 | 3156 | safe-buffer@^5.1.2: 3157 | version "5.1.2" 3158 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 3159 | 3160 | safe-regex@^1.1.0: 3161 | version "1.1.0" 3162 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 3163 | dependencies: 3164 | ret "~0.1.10" 3165 | 3166 | "safer-buffer@>= 2.1.2 < 3": 3167 | version "2.1.2" 3168 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 3169 | 3170 | samsam@1.3.0: 3171 | version "1.3.0" 3172 | resolved "https://registry.yarnpkg.com/samsam/-/samsam-1.3.0.tgz#8d1d9350e25622da30de3e44ba692b5221ab7c50" 3173 | 3174 | sax@1.2.1: 3175 | version "1.2.1" 3176 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.1.tgz#7b8e656190b228e81a66aea748480d828cd2d37a" 3177 | 3178 | sax@>=0.6.0: 3179 | version "1.2.4" 3180 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 3181 | 3182 | semver-compare@^1.0.0: 3183 | version "1.0.0" 3184 | resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" 3185 | 3186 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 3187 | version "5.4.1" 3188 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 3189 | 3190 | semver@5.3.0: 3191 | version "5.3.0" 3192 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 3193 | 3194 | semver@5.5.0, semver@^5.5.0: 3195 | version "5.5.0" 3196 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 3197 | 3198 | set-blocking@^2.0.0: 3199 | version "2.0.0" 3200 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3201 | 3202 | set-value@^0.4.3: 3203 | version "0.4.3" 3204 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" 3205 | dependencies: 3206 | extend-shallow "^2.0.1" 3207 | is-extendable "^0.1.1" 3208 | is-plain-object "^2.0.1" 3209 | to-object-path "^0.3.0" 3210 | 3211 | set-value@^2.0.0: 3212 | version "2.0.0" 3213 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" 3214 | dependencies: 3215 | extend-shallow "^2.0.1" 3216 | is-extendable "^0.1.1" 3217 | is-plain-object "^2.0.3" 3218 | split-string "^3.0.1" 3219 | 3220 | shebang-command@^1.2.0: 3221 | version "1.2.0" 3222 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3223 | dependencies: 3224 | shebang-regex "^1.0.0" 3225 | 3226 | shebang-regex@^1.0.0: 3227 | version "1.0.0" 3228 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3229 | 3230 | shelljs@^0.7.5: 3231 | version "0.7.8" 3232 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.8.tgz#decbcf874b0d1e5fb72e14b164a9683048e9acb3" 3233 | dependencies: 3234 | glob "^7.0.0" 3235 | interpret "^1.0.0" 3236 | rechoir "^0.6.2" 3237 | 3238 | signal-exit@^3.0.0, signal-exit@^3.0.1, signal-exit@^3.0.2: 3239 | version "3.0.2" 3240 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3241 | 3242 | sinon-chai@^3.2.0: 3243 | version "3.2.0" 3244 | resolved "https://registry.yarnpkg.com/sinon-chai/-/sinon-chai-3.2.0.tgz#ed995e13a8a3cfccec18f218d9b767edc47e0715" 3245 | 3246 | sinon@^6.1.5: 3247 | version "6.1.5" 3248 | resolved "https://registry.yarnpkg.com/sinon/-/sinon-6.1.5.tgz#41451502d43cd5ffb9d051fbf507952400e81d09" 3249 | dependencies: 3250 | "@sinonjs/commons" "^1.0.1" 3251 | "@sinonjs/formatio" "^2.0.0" 3252 | "@sinonjs/samsam" "^2.0.0" 3253 | diff "^3.5.0" 3254 | lodash.get "^4.4.2" 3255 | lolex "^2.7.1" 3256 | nise "^1.4.2" 3257 | supports-color "^5.4.0" 3258 | type-detect "^4.0.8" 3259 | 3260 | slice-ansi@0.0.4: 3261 | version "0.0.4" 3262 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 3263 | 3264 | slice-ansi@1.0.0: 3265 | version "1.0.0" 3266 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" 3267 | dependencies: 3268 | is-fullwidth-code-point "^2.0.0" 3269 | 3270 | slide@^1.1.5: 3271 | version "1.1.6" 3272 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 3273 | 3274 | snapdragon-node@^2.0.1: 3275 | version "2.1.1" 3276 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 3277 | dependencies: 3278 | define-property "^1.0.0" 3279 | isobject "^3.0.0" 3280 | snapdragon-util "^3.0.1" 3281 | 3282 | snapdragon-util@^3.0.1: 3283 | version "3.0.1" 3284 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 3285 | dependencies: 3286 | kind-of "^3.2.0" 3287 | 3288 | snapdragon@^0.8.1: 3289 | version "0.8.2" 3290 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 3291 | dependencies: 3292 | base "^0.11.1" 3293 | debug "^2.2.0" 3294 | define-property "^0.2.5" 3295 | extend-shallow "^2.0.1" 3296 | map-cache "^0.2.2" 3297 | source-map "^0.5.6" 3298 | source-map-resolve "^0.5.0" 3299 | use "^3.1.0" 3300 | 3301 | source-map-resolve@^0.5.0: 3302 | version "0.5.2" 3303 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" 3304 | dependencies: 3305 | atob "^2.1.1" 3306 | decode-uri-component "^0.2.0" 3307 | resolve-url "^0.2.1" 3308 | source-map-url "^0.4.0" 3309 | urix "^0.1.0" 3310 | 3311 | source-map-url@^0.4.0: 3312 | version "0.4.0" 3313 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 3314 | 3315 | source-map@^0.4.4: 3316 | version "0.4.4" 3317 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3318 | dependencies: 3319 | amdefine ">=0.0.4" 3320 | 3321 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 3322 | version "0.5.7" 3323 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3324 | 3325 | source-map@^0.6.1: 3326 | version "0.6.1" 3327 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 3328 | 3329 | spawn-wrap@^1.4.2: 3330 | version "1.4.2" 3331 | resolved "https://registry.yarnpkg.com/spawn-wrap/-/spawn-wrap-1.4.2.tgz#cff58e73a8224617b6561abdc32586ea0c82248c" 3332 | dependencies: 3333 | foreground-child "^1.5.6" 3334 | mkdirp "^0.5.0" 3335 | os-homedir "^1.0.1" 3336 | rimraf "^2.6.2" 3337 | signal-exit "^3.0.2" 3338 | which "^1.3.0" 3339 | 3340 | spdx-correct@~1.0.0: 3341 | version "1.0.2" 3342 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3343 | dependencies: 3344 | spdx-license-ids "^1.0.2" 3345 | 3346 | spdx-expression-parse@~1.0.0: 3347 | version "1.0.4" 3348 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3349 | 3350 | spdx-license-ids@^1.0.2: 3351 | version "1.2.2" 3352 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3353 | 3354 | split-string@^3.0.1, split-string@^3.0.2: 3355 | version "3.1.0" 3356 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 3357 | dependencies: 3358 | extend-shallow "^3.0.0" 3359 | 3360 | sprintf-js@~1.0.2: 3361 | version "1.0.3" 3362 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3363 | 3364 | sshpk@^1.7.0: 3365 | version "1.13.1" 3366 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 3367 | dependencies: 3368 | asn1 "~0.2.3" 3369 | assert-plus "^1.0.0" 3370 | dashdash "^1.12.0" 3371 | getpass "^0.1.1" 3372 | optionalDependencies: 3373 | bcrypt-pbkdf "^1.0.0" 3374 | ecc-jsbn "~0.1.1" 3375 | jsbn "~0.1.0" 3376 | tweetnacl "~0.14.0" 3377 | 3378 | staged-git-files@1.1.1: 3379 | version "1.1.1" 3380 | resolved "https://registry.yarnpkg.com/staged-git-files/-/staged-git-files-1.1.1.tgz#37c2218ef0d6d26178b1310719309a16a59f8f7b" 3381 | 3382 | standard-engine@~7.0.0: 3383 | version "7.0.0" 3384 | resolved "https://registry.yarnpkg.com/standard-engine/-/standard-engine-7.0.0.tgz#ebb77b9c8fc2c8165ffa353bd91ba0dff41af690" 3385 | dependencies: 3386 | deglob "^2.1.0" 3387 | get-stdin "^5.0.1" 3388 | minimist "^1.1.0" 3389 | pkg-conf "^2.0.0" 3390 | 3391 | standard@^10.0.0: 3392 | version "10.0.3" 3393 | resolved "https://registry.yarnpkg.com/standard/-/standard-10.0.3.tgz#7869bcbf422bdeeaab689a1ffb1fea9677dd50ea" 3394 | dependencies: 3395 | eslint "~3.19.0" 3396 | eslint-config-standard "10.2.1" 3397 | eslint-config-standard-jsx "4.0.2" 3398 | eslint-plugin-import "~2.2.0" 3399 | eslint-plugin-node "~4.2.2" 3400 | eslint-plugin-promise "~3.5.0" 3401 | eslint-plugin-react "~6.10.0" 3402 | eslint-plugin-standard "~3.0.1" 3403 | standard-engine "~7.0.0" 3404 | 3405 | static-extend@^0.1.1: 3406 | version "0.1.2" 3407 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 3408 | dependencies: 3409 | define-property "^0.2.5" 3410 | object-copy "^0.1.0" 3411 | 3412 | string-argv@^0.0.2: 3413 | version "0.0.2" 3414 | resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.0.2.tgz#dac30408690c21f3c3630a3ff3a05877bdcbd736" 3415 | 3416 | string-width@^1.0.1: 3417 | version "1.0.2" 3418 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3419 | dependencies: 3420 | code-point-at "^1.0.0" 3421 | is-fullwidth-code-point "^1.0.0" 3422 | strip-ansi "^3.0.0" 3423 | 3424 | string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: 3425 | version "2.1.1" 3426 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3427 | dependencies: 3428 | is-fullwidth-code-point "^2.0.0" 3429 | strip-ansi "^4.0.0" 3430 | 3431 | string_decoder@~1.0.3: 3432 | version "1.0.3" 3433 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 3434 | dependencies: 3435 | safe-buffer "~5.1.0" 3436 | 3437 | string_decoder@~1.1.1: 3438 | version "1.1.1" 3439 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 3440 | dependencies: 3441 | safe-buffer "~5.1.0" 3442 | 3443 | stringify-object@^3.2.2: 3444 | version "3.2.2" 3445 | resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.2.2.tgz#9853052e5a88fb605a44cd27445aa257ad7ffbcd" 3446 | dependencies: 3447 | get-own-enumerable-property-symbols "^2.0.1" 3448 | is-obj "^1.0.1" 3449 | is-regexp "^1.0.0" 3450 | 3451 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3452 | version "3.0.1" 3453 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3454 | dependencies: 3455 | ansi-regex "^2.0.0" 3456 | 3457 | strip-ansi@^4.0.0: 3458 | version "4.0.0" 3459 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3460 | dependencies: 3461 | ansi-regex "^3.0.0" 3462 | 3463 | strip-bom@^2.0.0: 3464 | version "2.0.0" 3465 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3466 | dependencies: 3467 | is-utf8 "^0.2.0" 3468 | 3469 | strip-bom@^3.0.0: 3470 | version "3.0.0" 3471 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3472 | 3473 | strip-eof@^1.0.0: 3474 | version "1.0.0" 3475 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3476 | 3477 | strip-indent@^2.0.0: 3478 | version "2.0.0" 3479 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" 3480 | 3481 | strip-json-comments@~2.0.1: 3482 | version "2.0.1" 3483 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3484 | 3485 | supports-color@5.4.0, supports-color@^5.3.0, supports-color@^5.4.0: 3486 | version "5.4.0" 3487 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.4.0.tgz#1c6b337402c2137605efe19f10fec390f6faab54" 3488 | dependencies: 3489 | has-flag "^3.0.0" 3490 | 3491 | supports-color@^2.0.0: 3492 | version "2.0.0" 3493 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3494 | 3495 | supports-color@^3.1.2: 3496 | version "3.2.3" 3497 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3498 | dependencies: 3499 | has-flag "^1.0.0" 3500 | 3501 | symbol-observable@1.0.1: 3502 | version "1.0.1" 3503 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.1.tgz#8340fc4702c3122df5d22288f88283f513d3fdd4" 3504 | 3505 | symbol-observable@^1.1.0: 3506 | version "1.2.0" 3507 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804" 3508 | 3509 | table@4.0.2: 3510 | version "4.0.2" 3511 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36" 3512 | dependencies: 3513 | ajv "^5.2.3" 3514 | ajv-keywords "^2.1.0" 3515 | chalk "^2.1.0" 3516 | lodash "^4.17.4" 3517 | slice-ansi "1.0.0" 3518 | string-width "^2.1.1" 3519 | 3520 | table@^3.7.8: 3521 | version "3.8.3" 3522 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 3523 | dependencies: 3524 | ajv "^4.7.0" 3525 | ajv-keywords "^1.0.0" 3526 | chalk "^1.1.1" 3527 | lodash "^4.0.0" 3528 | slice-ansi "0.0.4" 3529 | string-width "^2.0.0" 3530 | 3531 | test-exclude@^4.2.0: 3532 | version "4.2.1" 3533 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.2.1.tgz#dfa222f03480bca69207ca728b37d74b45f724fa" 3534 | dependencies: 3535 | arrify "^1.0.1" 3536 | micromatch "^3.1.8" 3537 | object-assign "^4.1.0" 3538 | read-pkg-up "^1.0.1" 3539 | require-main-filename "^1.0.1" 3540 | 3541 | text-encoding@^0.6.4: 3542 | version "0.6.4" 3543 | resolved "https://registry.yarnpkg.com/text-encoding/-/text-encoding-0.6.4.tgz#e399a982257a276dae428bb92845cb71bdc26d19" 3544 | 3545 | text-table@~0.2.0: 3546 | version "0.2.0" 3547 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3548 | 3549 | through@^2.3.6: 3550 | version "2.3.8" 3551 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3552 | 3553 | tmp@^0.0.33: 3554 | version "0.0.33" 3555 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 3556 | dependencies: 3557 | os-tmpdir "~1.0.2" 3558 | 3559 | to-fast-properties@^2.0.0: 3560 | version "2.0.0" 3561 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 3562 | 3563 | to-object-path@^0.3.0: 3564 | version "0.3.0" 3565 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 3566 | dependencies: 3567 | kind-of "^3.0.2" 3568 | 3569 | to-regex-range@^2.1.0: 3570 | version "2.1.1" 3571 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 3572 | dependencies: 3573 | is-number "^3.0.0" 3574 | repeat-string "^1.6.1" 3575 | 3576 | to-regex@^3.0.1, to-regex@^3.0.2: 3577 | version "3.0.2" 3578 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 3579 | dependencies: 3580 | define-property "^2.0.2" 3581 | extend-shallow "^3.0.2" 3582 | regex-not "^1.0.2" 3583 | safe-regex "^1.1.0" 3584 | 3585 | tough-cookie@~2.4.3: 3586 | version "2.4.3" 3587 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781" 3588 | dependencies: 3589 | psl "^1.1.24" 3590 | punycode "^1.4.1" 3591 | 3592 | trim-right@^1.0.1: 3593 | version "1.0.1" 3594 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3595 | 3596 | triple-beam@^1.2.0: 3597 | version "1.3.0" 3598 | resolved "https://registry.yarnpkg.com/triple-beam/-/triple-beam-1.3.0.tgz#a595214c7298db8339eeeee083e4d10bd8cb8dd9" 3599 | 3600 | tslib@^1.9.0: 3601 | version "1.9.3" 3602 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.3.tgz#d7e4dd79245d85428c4d7e4822a79917954ca286" 3603 | 3604 | tunnel-agent@^0.6.0: 3605 | version "0.6.0" 3606 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3607 | dependencies: 3608 | safe-buffer "^5.0.1" 3609 | 3610 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3611 | version "0.14.5" 3612 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3613 | 3614 | type-check@~0.3.2: 3615 | version "0.3.2" 3616 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3617 | dependencies: 3618 | prelude-ls "~1.1.2" 3619 | 3620 | type-detect@4.0.8, type-detect@^4.0.8: 3621 | version "4.0.8" 3622 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" 3623 | 3624 | type-detect@^4.0.0: 3625 | version "4.0.5" 3626 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.5.tgz#d70e5bc81db6de2a381bcaca0c6e0cbdc7635de2" 3627 | 3628 | typedarray@^0.0.6: 3629 | version "0.0.6" 3630 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3631 | 3632 | typescript-eslint-parser@^16.0.0: 3633 | version "16.0.1" 3634 | resolved "https://registry.yarnpkg.com/typescript-eslint-parser/-/typescript-eslint-parser-16.0.1.tgz#b40681c7043b222b9772748b700a000b241c031b" 3635 | dependencies: 3636 | lodash.unescape "4.0.1" 3637 | semver "5.5.0" 3638 | 3639 | typescript@^2.5.1: 3640 | version "2.9.2" 3641 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.9.2.tgz#1cbf61d05d6b96269244eb6a3bce4bd914e0f00c" 3642 | 3643 | uglify-js@^2.6: 3644 | version "2.8.29" 3645 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 3646 | dependencies: 3647 | source-map "~0.5.1" 3648 | yargs "~3.10.0" 3649 | optionalDependencies: 3650 | uglify-to-browserify "~1.0.0" 3651 | 3652 | uglify-to-browserify@~1.0.0: 3653 | version "1.0.2" 3654 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3655 | 3656 | union-value@^1.0.0: 3657 | version "1.0.0" 3658 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" 3659 | dependencies: 3660 | arr-union "^3.1.0" 3661 | get-value "^2.0.6" 3662 | is-extendable "^0.1.1" 3663 | set-value "^0.4.3" 3664 | 3665 | uniq@^1.0.1: 3666 | version "1.0.1" 3667 | resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" 3668 | 3669 | unset-value@^1.0.0: 3670 | version "1.0.0" 3671 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 3672 | dependencies: 3673 | has-value "^0.3.1" 3674 | isobject "^3.0.0" 3675 | 3676 | urix@^0.1.0: 3677 | version "0.1.0" 3678 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 3679 | 3680 | url@0.10.3: 3681 | version "0.10.3" 3682 | resolved "https://registry.yarnpkg.com/url/-/url-0.10.3.tgz#021e4d9c7705f21bbf37d03ceb58767402774c64" 3683 | dependencies: 3684 | punycode "1.3.2" 3685 | querystring "0.2.0" 3686 | 3687 | use@^3.1.0: 3688 | version "3.1.1" 3689 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" 3690 | 3691 | user-home@^2.0.0: 3692 | version "2.0.0" 3693 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 3694 | dependencies: 3695 | os-homedir "^1.0.0" 3696 | 3697 | util-deprecate@~1.0.1: 3698 | version "1.0.2" 3699 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3700 | 3701 | uuid@3.1.0: 3702 | version "3.1.0" 3703 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 3704 | 3705 | uuid@^3.3.2: 3706 | version "3.3.2" 3707 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131" 3708 | 3709 | validate-npm-package-license@^3.0.1: 3710 | version "3.0.1" 3711 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3712 | dependencies: 3713 | spdx-correct "~1.0.0" 3714 | spdx-expression-parse "~1.0.0" 3715 | 3716 | verror@1.10.0: 3717 | version "1.10.0" 3718 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 3719 | dependencies: 3720 | assert-plus "^1.0.0" 3721 | core-util-is "1.0.2" 3722 | extsprintf "^1.2.0" 3723 | 3724 | vue-eslint-parser@^2.0.2: 3725 | version "2.0.3" 3726 | resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-2.0.3.tgz#c268c96c6d94cfe3d938a5f7593959b0ca3360d1" 3727 | dependencies: 3728 | debug "^3.1.0" 3729 | eslint-scope "^3.7.1" 3730 | eslint-visitor-keys "^1.0.0" 3731 | espree "^3.5.2" 3732 | esquery "^1.0.0" 3733 | lodash "^4.17.4" 3734 | 3735 | which-module@^2.0.0: 3736 | version "2.0.0" 3737 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 3738 | 3739 | which@^1.2.10, which@^1.3.0: 3740 | version "1.3.1" 3741 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 3742 | dependencies: 3743 | isexe "^2.0.0" 3744 | 3745 | which@^1.2.9: 3746 | version "1.3.0" 3747 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 3748 | dependencies: 3749 | isexe "^2.0.0" 3750 | 3751 | window-size@0.1.0: 3752 | version "0.1.0" 3753 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3754 | 3755 | winston-transport@^4.2.0: 3756 | version "4.2.0" 3757 | resolved "https://registry.yarnpkg.com/winston-transport/-/winston-transport-4.2.0.tgz#a20be89edf2ea2ca39ba25f3e50344d73e6520e5" 3758 | dependencies: 3759 | readable-stream "^2.3.6" 3760 | triple-beam "^1.2.0" 3761 | 3762 | wordwrap@0.0.2: 3763 | version "0.0.2" 3764 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3765 | 3766 | wordwrap@~0.0.2: 3767 | version "0.0.3" 3768 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3769 | 3770 | wordwrap@~1.0.0: 3771 | version "1.0.0" 3772 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3773 | 3774 | wrap-ansi@^2.0.0: 3775 | version "2.1.0" 3776 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3777 | dependencies: 3778 | string-width "^1.0.1" 3779 | strip-ansi "^3.0.1" 3780 | 3781 | wrappy@1: 3782 | version "1.0.2" 3783 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3784 | 3785 | write-file-atomic@^1.1.4: 3786 | version "1.3.4" 3787 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.4.tgz#f807a4f0b1d9e913ae7a48112e6cc3af1991b45f" 3788 | dependencies: 3789 | graceful-fs "^4.1.11" 3790 | imurmurhash "^0.1.4" 3791 | slide "^1.1.5" 3792 | 3793 | write@^0.2.1: 3794 | version "0.2.1" 3795 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 3796 | dependencies: 3797 | mkdirp "^0.5.1" 3798 | 3799 | xml2js@0.4.19: 3800 | version "0.4.19" 3801 | resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.19.tgz#686c20f213209e94abf0d1bcf1efaa291c7827a7" 3802 | dependencies: 3803 | sax ">=0.6.0" 3804 | xmlbuilder "~9.0.1" 3805 | 3806 | xml@^1.0.0: 3807 | version "1.0.1" 3808 | resolved "https://registry.yarnpkg.com/xml/-/xml-1.0.1.tgz#78ba72020029c5bc87b8a81a3cfcd74b4a2fc1e5" 3809 | 3810 | xmlbuilder@~9.0.1: 3811 | version "9.0.7" 3812 | resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-9.0.7.tgz#132ee63d2ec5565c557e20f4c22df9aca686b10d" 3813 | 3814 | xtend@^4.0.0, xtend@^4.0.1: 3815 | version "4.0.1" 3816 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3817 | 3818 | y18n@^3.2.1: 3819 | version "3.2.1" 3820 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3821 | 3822 | yallist@^2.1.2: 3823 | version "2.1.2" 3824 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3825 | 3826 | yargs-parser@^8.0.0: 3827 | version "8.0.0" 3828 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-8.0.0.tgz#21d476330e5a82279a4b881345bf066102e219c6" 3829 | dependencies: 3830 | camelcase "^4.1.0" 3831 | 3832 | yargs-parser@^9.0.2: 3833 | version "9.0.2" 3834 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-9.0.2.tgz#9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077" 3835 | dependencies: 3836 | camelcase "^4.1.0" 3837 | 3838 | yargs@11.1.0: 3839 | version "11.1.0" 3840 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-11.1.0.tgz#90b869934ed6e871115ea2ff58b03f4724ed2d77" 3841 | dependencies: 3842 | cliui "^4.0.0" 3843 | decamelize "^1.1.1" 3844 | find-up "^2.1.0" 3845 | get-caller-file "^1.0.1" 3846 | os-locale "^2.0.0" 3847 | require-directory "^2.1.1" 3848 | require-main-filename "^1.0.1" 3849 | set-blocking "^2.0.0" 3850 | string-width "^2.0.0" 3851 | which-module "^2.0.0" 3852 | y18n "^3.2.1" 3853 | yargs-parser "^9.0.2" 3854 | 3855 | yargs@~3.10.0: 3856 | version "3.10.0" 3857 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3858 | dependencies: 3859 | camelcase "^1.0.2" 3860 | cliui "^2.1.0" 3861 | decamelize "^1.0.0" 3862 | window-size "0.1.0" 3863 | --------------------------------------------------------------------------------