├── .babelrc ├── .editorconfig ├── .eslintrc ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── src └── index.js ├── test └── index.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | "es2015", "stage-0" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | indent_size = 2 6 | charset = utf-8 7 | trim_trailing_whitespace = true 8 | insert_final_newline = true 9 | 10 | [*.md] 11 | trim_trailing_whitespace = false 12 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "parser": "babel-eslint", 3 | "extends": [ 4 | "standard" 5 | ], 6 | "env": { 7 | "node": true, 8 | "es6": true 9 | }, 10 | "rules": { 11 | "semi": [2, "never"] 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | logs 3 | *.log 4 | node_modules 5 | dist 6 | tmp 7 | coverage 8 | npm-debug.log 9 | .nyc_output 10 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - v6 4 | - v5 5 | after_script: 6 | - 'npm run coveralls' 7 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | # Changelog 4 | 5 | - [v1.0.0](#v100) 6 | 7 | 8 | 9 | ### v1.0.0 10 | 11 | * redux-form-submit initial commit. 12 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | This software is released under the MIT license: 2 | 3 | Copyright (c) 2016 Diego Haz hazdiego@gmail.com 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of 6 | this software and associated documentation files (the "Software"), to deal in 7 | the Software without restriction, including without limitation the rights to 8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 9 | the Software, and to permit persons to whom the Software is furnished to do so, 10 | subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.)) 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # redux-form-submit 2 | 3 | [![NPM version][npm-image]][npm-url] 4 | [![Build Status][travis-image]][travis-url] 5 | [![Coveralls Status][coveralls-image]][coveralls-url] 6 | [![Dependency Status][depstat-image]][depstat-url] 7 | 8 | Adds an async submit action creator to [redux-form](https://github.com/erikras/redux-form) v6. 9 | 10 | ## The Problem 11 | 12 | [redux-form](https://github.com/erikras/redux-form), before [v6.2.0](https://github.com/erikras/redux-form/releases/tag/v6.2.0), doesn't provide a way to submit a form by dispatching an action. This module works like a plugin that exports a `submit` action creator to do that with a few [limitations](#limitations). 13 | 14 | If you are using `redux-form@6.2.0` or higher, you probably don't need this, you can just use the built in `submit` action creator. But, there're cases when that isn't enough. An [example](https://github.com/diegohaz/arc/blob/179458033e737eb833521cfbdddbedc4da2f0466/src/containers/SamplePage.js) is when you want to enable form submission on the server. 15 | 16 | ## Install 17 | 18 | ```sh 19 | npm install --save redux-form-submit 20 | ``` 21 | 22 | ## Usage 23 | 24 | First, as this is asynchronous, you need to apply the [redux-thunk](https://github.com/gaearon/redux-thunk) middleware to the store. Then, for every form you want to submit with redux-form-submit you need to expose the config object passed to redux-form. For example: 25 | 26 | **MyForm.js** 27 | ```js 28 | import React from 'react' 29 | import { reduxForm, Field } from 'redux-form' 30 | 31 | const MyForm = () => ( 32 |
33 | 34 | 35 | 36 | ) 37 | 38 | const onSubmit = (values) => { 39 | if (values.input1 !== 'right value') { 40 | throw { input1: 'Please, provide a right value' } 41 | } 42 | } 43 | 44 | // Exports the redux-form config 45 | export const config = { 46 | form: 'myForm', 47 | onSubmit 48 | } 49 | 50 | export default reduxForm(config)(MyForm) 51 | ``` 52 | 53 | **elsewhere.js** 54 | ```js 55 | import submit from "redux-form-submit" 56 | import { config } from './MyForm' 57 | 58 | dispatch(submit(config)) 59 | // or send initial values 60 | dispatch(submit(config, { input1: 'wrong value' })) 61 | ``` 62 | 63 | ## Limitations 64 | 65 | As this has nothing to do with the form component, it: 66 | - can't call custom submit methods other than `onSubmit`; 67 | - can't pass `props` to `onSubmit`, `asyncValidate` etc. 68 | 69 | ## License 70 | 71 | MIT © [Diego Haz](http://github.com/diegohaz) 72 | 73 | [npm-url]: https://npmjs.org/package/redux-form-submit 74 | [npm-image]: https://img.shields.io/npm/v/redux-form-submit.svg?style=flat-square 75 | 76 | [travis-url]: https://travis-ci.org/diegohaz/redux-form-submit 77 | [travis-image]: https://img.shields.io/travis/diegohaz/redux-form-submit/master.svg?style=flat-square 78 | 79 | [coveralls-url]: https://coveralls.io/r/diegohaz/redux-form-submit 80 | [coveralls-image]: https://img.shields.io/coveralls/diegohaz/redux-form-submit.svg?style=flat-square 81 | 82 | [depstat-url]: https://david-dm.org/diegohaz/redux-form-submit 83 | [depstat-image]: https://david-dm.org/diegohaz/redux-form-submit.svg?style=flat-square 84 | 85 | [download-badge]: http://img.shields.io/npm/dm/redux-form-submit.svg?style=flat-square 86 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "redux-form-submit", 3 | "version": "0.1.3", 4 | "description": "Adds a submit action creator to redux-form", 5 | "main": "dist/index.js", 6 | "files": [ 7 | "bin/", 8 | "dist/" 9 | ], 10 | "scripts": { 11 | "clean": "rimraf dist", 12 | "lint": "eslint src test", 13 | "check": "npm run lint -s && dependency-check package.json --entry src", 14 | "watch": "watch 'npm run build' src test", 15 | "test": "NODE_ENV=test babel-node test/index.js | tspec", 16 | "prebuild": "npm run check -s && npm run clean -s", 17 | "build": "babel --optional runtime src -d dist", 18 | "postbuild": "npm run test -s", 19 | "coverage": "nyc --reporter=lcov --reporter=text npm run test", 20 | "coveralls": "npm run coverage -s && coveralls < coverage/lcov.info", 21 | "postcoveralls": "rimraf ./coverage", 22 | "prepublish": "npm run build -s", 23 | "deploy": "git pull --rebase origin master && git push origin master", 24 | "patch": "npm version patch && npm publish", 25 | "minor": "npm version minor && npm publish", 26 | "major": "npm version major && npm publish", 27 | "postpublish": "git push origin master --follow-tags", 28 | "toc": "doctoc --github --title \"# Changelog\" CHANGELOG.md" 29 | }, 30 | "repository": { 31 | "type": "git", 32 | "url": "git+https://github.com/diegohaz/redux-form-submit.git" 33 | }, 34 | "keywords": [ 35 | "react", 36 | "redux", 37 | "redux-form", 38 | "action", 39 | "submit" 40 | ], 41 | "author": "Diego Haz ", 42 | "license": "MIT", 43 | "bugs": { 44 | "url": "https://github.com/diegohaz/redux-form-submit/issues" 45 | }, 46 | "homepage": "https://github.com/diegohaz/redux-form-submit#readme", 47 | "peerDependencies": { 48 | "redux-form": "^6.0.0" 49 | }, 50 | "devDependencies": { 51 | "babel-cli": "^6.16.0", 52 | "babel-core": "^6.17.0", 53 | "babel-eslint": "^7.0.0", 54 | "babel-preset-es2015": "^6.16.0", 55 | "babel-preset-stage-0": "^6.16.0", 56 | "coveralls": "^2.11.4", 57 | "dependency-check": "^2.5.1", 58 | "doctoc": "^1.2.0", 59 | "eslint": "^3.7.1", 60 | "eslint-config-standard": "^6.2.0", 61 | "eslint-plugin-promise": "^3.4.0", 62 | "eslint-plugin-standard": "^2.0.1", 63 | "nyc": "^11.0.0", 64 | "react": "^15.3.2", 65 | "react-redux": "^5.0.2", 66 | "redux": "^3.6.0", 67 | "redux-form": "^6.0.5", 68 | "redux-thunk": "^2.1.0", 69 | "rimraf": "^2.4.2", 70 | "tap-spec": "^4.1.1", 71 | "tape": "^4.2.2", 72 | "watch": "^1.0.1" 73 | } 74 | } 75 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import { 2 | initialize, 3 | isValid, 4 | touch, 5 | getFormValues, 6 | setSubmitFailed, 7 | startSubmit, 8 | stopSubmit, 9 | setSubmitSucceeded, 10 | startAsyncValidation, 11 | stopAsyncValidation 12 | } from 'redux-form' 13 | import { updateSyncErrors, registerField } from 'redux-form/lib/actions' 14 | import handleSubmit from 'redux-form/lib/handleSubmit' 15 | import asyncValidation from 'redux-form/lib/asyncValidation' 16 | 17 | const submit = (config, values) => (dispatch, getState) => { 18 | const { form, validate, onSubmit, asyncValidate } = config 19 | let { fields } = config 20 | const formState = getState().form[form] 21 | values = values || getFormValues(form)(getState()) || {} 22 | 23 | if (!formState) { 24 | dispatch(initialize(form, values)) 25 | fields.forEach((field) => { 26 | dispatch(registerField(form, field, 'Field')) 27 | }) 28 | values = getFormValues(form)(getState()) 29 | } else if (formState.registeredFields) { 30 | fields = formState.registeredFields.map((field) => field.name) 31 | } else { 32 | throw new Error('You must set fields on redux-form config') 33 | } 34 | 35 | if (typeof validate === 'function') { 36 | dispatch(updateSyncErrors(form, validate(values))) 37 | } 38 | 39 | const props = { 40 | ...config, 41 | dispatch, 42 | startSubmit: () => dispatch(startSubmit(form)), 43 | stopSubmit: (...args) => dispatch(stopSubmit(form, ...args)), 44 | setSubmitFailed: (...args) => dispatch(setSubmitFailed(form, ...args)), 45 | setSubmitSucceeded: () => dispatch(setSubmitSucceeded(form)), 46 | syncErrors: getState().form[form].syncErrors, 47 | touch: (...args) => dispatch(touch(form, ...args)), 48 | values 49 | } 50 | 51 | return Promise.resolve().then(() => handleSubmit( 52 | onSubmit, 53 | props, 54 | isValid(form, (state) => state.form)(getState()), 55 | asyncValidate && asyncValidation.bind( 56 | null, 57 | () => asyncValidate(values, dispatch, props), 58 | () => dispatch(startAsyncValidation(form)), 59 | (...args) => dispatch(stopAsyncValidation(form, ...args)) 60 | ), 61 | fields 62 | )) 63 | } 64 | 65 | export default submit 66 | -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- 1 | import test from 'tape' 2 | import thunk from 'redux-thunk' 3 | import { combineReducers, applyMiddleware, createStore } from 'redux' 4 | import { SubmissionError, reducer } from 'redux-form' 5 | import submit from '../src' 6 | 7 | const validate = (values) => { 8 | const errors = {} 9 | if (values.input1 === 'wrong') { 10 | errors.input1 = 'wrong' 11 | } 12 | return errors 13 | } 14 | 15 | const asyncValidate = (values) => { 16 | if (values.input2 === 'wrong') { 17 | return Promise.reject({ input2: 'wrong' }) 18 | } 19 | return Promise.resolve() 20 | } 21 | 22 | const onSubmit = (values) => { 23 | if (values.input1 !== 'right') { 24 | return Promise.reject(new SubmissionError({ input1: 'not right' })) 25 | } 26 | return Promise.resolve() 27 | } 28 | 29 | const reduxFormConfig = { 30 | form: 'testForm', 31 | fields: ['input1', 'input2'], 32 | validate, 33 | asyncValidate, 34 | onSubmit 35 | } 36 | 37 | const mockStore = () => createStore(combineReducers({ form: reducer }), applyMiddleware(thunk)) 38 | 39 | const prepareStore = (values, config = reduxFormConfig) => { 40 | const { dispatch, getState } = mockStore() 41 | return { 42 | getState, 43 | submit: () => dispatch(submit(config, values)), 44 | getFormState: () => getState().form.testForm 45 | } 46 | } 47 | 48 | test('initial state', (t) => { 49 | const { getFormState, submit } = prepareStore() 50 | submit().then(() => { 51 | const formState = getFormState() 52 | t.ok(formState, 'should have form state') 53 | t.ok(formState.registeredFields, 'should have registeredFields') 54 | t.equal(formState.registeredFields.length, 2, 'registeredFields should have length of 2') 55 | submit().then((submitErrors) => { 56 | t.pass('should submit an already initialized form') 57 | t.end() 58 | }) 59 | }) 60 | }) 61 | 62 | test('values', (t) => { 63 | const { getFormState, submit } = prepareStore({ input1: 'right' }) 64 | submit().then(() => { 65 | const formState = getFormState() 66 | t.ok(formState.values, 'should have values') 67 | t.equal(formState.values.input1, 'right', 'should set right value') 68 | t.end() 69 | }) 70 | }) 71 | 72 | test('syncErrors', (t) => { 73 | const { getFormState, submit } = prepareStore({ input1: 'wrong' }) 74 | submit().then((syncErrors) => { 75 | const formState = getFormState() 76 | t.same(syncErrors, { input1: 'wrong' }, 'should result error') 77 | t.ok(formState.syncErrors, 'should have syncErrors') 78 | t.equal(formState.syncErrors.input1, 'wrong', 'should have input1 syncError') 79 | t.end() 80 | }) 81 | }) 82 | 83 | test('asyncErrors', (t) => { 84 | const { getFormState, submit } = prepareStore({ input2: 'wrong' }) 85 | submit().catch((asyncErrors) => { 86 | const formState = getFormState() 87 | t.same(asyncErrors, { input2: 'wrong' }, 'should result error') 88 | t.ok(formState.asyncErrors, 'should have asyncErrors') 89 | t.equal(formState.asyncErrors.input2, 'wrong', 'should have input2 syncError') 90 | t.end() 91 | }) 92 | }) 93 | 94 | test('without validate', (t) => { 95 | const { getFormState, submit } = prepareStore( 96 | { input1: 'wrong' }, 97 | { ...reduxFormConfig, validate: undefined } 98 | ) 99 | submit().then((submitErrors) => { 100 | const formState = getFormState() 101 | t.same(submitErrors, { input1: 'not right' }, 'should result error') 102 | t.ok(formState.submitErrors, 'should have submitErrors') 103 | t.equal(formState.submitErrors.input1, 'not right', 'should have input1 submitError') 104 | t.end() 105 | }) 106 | }) 107 | 108 | test('without asyncValidate', (t) => { 109 | const { getFormState, submit } = prepareStore( 110 | { input2: 'wrong' }, 111 | { ...reduxFormConfig, asyncValidate: undefined } 112 | ) 113 | submit().then((submitErrors) => { 114 | const formState = getFormState() 115 | t.same(submitErrors, { input1: 'not right' }, 'should result error') 116 | t.ok(formState.submitErrors, 'should have submitErrors') 117 | t.equal(formState.submitErrors.input1, 'not right', 'should have input1 submitError') 118 | t.end() 119 | }) 120 | }) 121 | 122 | test('already initialized', (t) => { 123 | const { getState, submit } = prepareStore(undefined, { 124 | ...reduxFormConfig, 125 | fields: undefined 126 | }) 127 | getState().form = { 128 | testForm: { 129 | initial: {}, 130 | registeredFields: [ 131 | { name: 'input1', type: 'Field' }, 132 | { name: 'input2', type: 'Field' } 133 | ] 134 | } 135 | } 136 | submit().then((submitErrors) => { 137 | t.same(submitErrors, { input1: 'not right' }, 'should result error') 138 | t.end() 139 | }) 140 | }) 141 | 142 | test('already initialized without registeredFields', (t) => { 143 | const { getState, submit } = prepareStore(undefined, { 144 | ...reduxFormConfig, 145 | fields: undefined 146 | }) 147 | getState().form = { 148 | testForm: { 149 | initial: {} 150 | } 151 | } 152 | t.throws(submit, Error, 'should throw') 153 | t.end() 154 | }) 155 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1: 6 | version "1.0.9" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" 8 | 9 | acorn-jsx@^3.0.0: 10 | version "3.0.1" 11 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 12 | dependencies: 13 | acorn "^3.0.4" 14 | 15 | acorn@^3.0.4, acorn@^3.1.0: 16 | version "3.3.0" 17 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 18 | 19 | acorn@^4.0.1: 20 | version "4.0.3" 21 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.3.tgz#1a3e850b428e73ba6b09d1cc527f5aaad4d03ef1" 22 | 23 | ajv-keywords@^1.0.0: 24 | version "1.2.0" 25 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.2.0.tgz#676c4f087bfe1e8b12dca6fda2f3c74f417b099c" 26 | 27 | ajv@^4.7.0: 28 | version "4.10.0" 29 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.10.0.tgz#7ae6169180eb199192a8b9a19fd0f47fc9ac8764" 30 | dependencies: 31 | co "^4.6.0" 32 | json-stable-stringify "^1.0.1" 33 | 34 | align-text@^0.1.1, align-text@^0.1.3: 35 | version "0.1.4" 36 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 37 | dependencies: 38 | kind-of "^3.0.2" 39 | longest "^1.0.1" 40 | repeat-string "^1.5.2" 41 | 42 | amdefine@>=0.0.4: 43 | version "1.0.1" 44 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 45 | 46 | anchor-markdown-header@^0.5.5: 47 | version "0.5.6" 48 | resolved "https://registry.yarnpkg.com/anchor-markdown-header/-/anchor-markdown-header-0.5.6.tgz#587c9d3c0c182e01a49d1f6d5a2877cf3e887872" 49 | 50 | ansi-escapes@^1.0.0, ansi-escapes@^1.1.0: 51 | version "1.4.0" 52 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 53 | 54 | ansi-regex@^2.0.0: 55 | version "2.0.0" 56 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.0.0.tgz#c5061b6e0ef8a81775e50f5d66151bf6bf371107" 57 | 58 | ansi-styles@^2.2.1: 59 | version "2.2.1" 60 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 61 | 62 | anymatch@^1.3.0: 63 | version "1.3.0" 64 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 65 | dependencies: 66 | arrify "^1.0.0" 67 | micromatch "^2.1.5" 68 | 69 | append-transform@^0.3.0: 70 | version "0.3.0" 71 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.3.0.tgz#d6933ce4a85f09445d9ccc4cc119051b7381a813" 72 | 73 | aproba@^1.0.3: 74 | version "1.0.4" 75 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.0.4.tgz#2713680775e7614c8ba186c065d4e2e52d1072c0" 76 | 77 | archy@^1.0.0: 78 | version "1.0.0" 79 | resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" 80 | 81 | are-we-there-yet@~1.1.2: 82 | version "1.1.2" 83 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 84 | dependencies: 85 | delegates "^1.0.0" 86 | readable-stream "^2.0.0 || ^1.1.13" 87 | 88 | argparse@^1.0.7: 89 | version "1.0.9" 90 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 91 | dependencies: 92 | sprintf-js "~1.0.2" 93 | 94 | arr-diff@^2.0.0: 95 | version "2.0.0" 96 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 97 | dependencies: 98 | arr-flatten "^1.0.1" 99 | 100 | arr-flatten@^1.0.1: 101 | version "1.0.1" 102 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 103 | 104 | array-findindex-polyfill@^0.1.0: 105 | version "0.1.0" 106 | resolved "https://registry.yarnpkg.com/array-findindex-polyfill/-/array-findindex-polyfill-0.1.0.tgz#c362665bec7645f22d7a3c3aac9793f71c3622ef" 107 | 108 | array-union@^1.0.1: 109 | version "1.0.2" 110 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 111 | dependencies: 112 | array-uniq "^1.0.1" 113 | 114 | array-uniq@^1.0.1: 115 | version "1.0.3" 116 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 117 | 118 | array-unique@^0.2.1: 119 | version "0.2.1" 120 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 121 | 122 | arrify@^1.0.0, arrify@^1.0.1: 123 | version "1.0.1" 124 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 125 | 126 | asap@~2.0.3: 127 | version "2.0.5" 128 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.5.tgz#522765b50c3510490e52d7dcfe085ef9ba96958f" 129 | 130 | asn1@~0.2.3: 131 | version "0.2.3" 132 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 133 | 134 | assert-plus@^0.2.0: 135 | version "0.2.0" 136 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 137 | 138 | assert-plus@^1.0.0: 139 | version "1.0.0" 140 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 141 | 142 | async-each@^1.0.0: 143 | version "1.0.1" 144 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 145 | 146 | async@^1.0.0, async@^1.4.0, async@^1.4.2: 147 | version "1.5.2" 148 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 149 | 150 | async@~0.2.6: 151 | version "0.2.10" 152 | resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1" 153 | 154 | asynckit@^0.4.0: 155 | version "0.4.0" 156 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 157 | 158 | attach-ware@^2.0.0: 159 | version "2.0.1" 160 | resolved "https://registry.yarnpkg.com/attach-ware/-/attach-ware-2.0.1.tgz#01d67a0972c750ea427cbd030d4c0399ff15125d" 161 | dependencies: 162 | unherit "^1.0.0" 163 | 164 | aws-sign2@~0.6.0: 165 | version "0.6.0" 166 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 167 | 168 | aws4@^1.2.1: 169 | version "1.5.0" 170 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.5.0.tgz#0a29ffb79c31c9e712eeb087e8e7a64b4a56d755" 171 | 172 | babel-cli@^6.16.0: 173 | version "6.18.0" 174 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.18.0.tgz#92117f341add9dead90f6fa7d0a97c0cc08ec186" 175 | dependencies: 176 | babel-core "^6.18.0" 177 | babel-polyfill "^6.16.0" 178 | babel-register "^6.18.0" 179 | babel-runtime "^6.9.0" 180 | commander "^2.8.1" 181 | convert-source-map "^1.1.0" 182 | fs-readdir-recursive "^1.0.0" 183 | glob "^5.0.5" 184 | lodash "^4.2.0" 185 | output-file-sync "^1.1.0" 186 | path-is-absolute "^1.0.0" 187 | slash "^1.0.0" 188 | source-map "^0.5.0" 189 | v8flags "^2.0.10" 190 | optionalDependencies: 191 | chokidar "^1.0.0" 192 | 193 | babel-code-frame@^6.16.0, babel-code-frame@^6.20.0: 194 | version "6.20.0" 195 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.20.0.tgz#b968f839090f9a8bc6d41938fb96cb84f7387b26" 196 | dependencies: 197 | chalk "^1.1.0" 198 | esutils "^2.0.2" 199 | js-tokens "^2.0.0" 200 | 201 | babel-core@^6.17.0, babel-core@^6.18.0: 202 | version "6.20.0" 203 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.20.0.tgz#ab0d7176d9dea434e66badadaf92237865eab1ec" 204 | dependencies: 205 | babel-code-frame "^6.20.0" 206 | babel-generator "^6.20.0" 207 | babel-helpers "^6.16.0" 208 | babel-messages "^6.8.0" 209 | babel-register "^6.18.0" 210 | babel-runtime "^6.20.0" 211 | babel-template "^6.16.0" 212 | babel-traverse "^6.20.0" 213 | babel-types "^6.20.0" 214 | babylon "^6.11.0" 215 | convert-source-map "^1.1.0" 216 | debug "^2.1.1" 217 | json5 "^0.5.0" 218 | lodash "^4.2.0" 219 | minimatch "^3.0.2" 220 | path-is-absolute "^1.0.0" 221 | private "^0.1.6" 222 | slash "^1.0.0" 223 | source-map "^0.5.0" 224 | 225 | babel-eslint@^7.0.0: 226 | version "7.1.1" 227 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.1.1.tgz#8a6a884f085aa7060af69cfc77341c2f99370fb2" 228 | dependencies: 229 | babel-code-frame "^6.16.0" 230 | babel-traverse "^6.15.0" 231 | babel-types "^6.15.0" 232 | babylon "^6.13.0" 233 | lodash.pickby "^4.6.0" 234 | 235 | babel-generator@^6.18.0, babel-generator@^6.20.0: 236 | version "6.20.0" 237 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.20.0.tgz#fee63614e0449390103b3097f3f6a118016c6766" 238 | dependencies: 239 | babel-messages "^6.8.0" 240 | babel-runtime "^6.20.0" 241 | babel-types "^6.20.0" 242 | detect-indent "^4.0.0" 243 | jsesc "^1.3.0" 244 | lodash "^4.2.0" 245 | source-map "^0.5.0" 246 | 247 | babel-helper-bindify-decorators@^6.18.0: 248 | version "6.18.0" 249 | resolved "https://registry.yarnpkg.com/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.18.0.tgz#fc00c573676a6e702fffa00019580892ec8780a5" 250 | dependencies: 251 | babel-runtime "^6.0.0" 252 | babel-traverse "^6.18.0" 253 | babel-types "^6.18.0" 254 | 255 | babel-helper-builder-binary-assignment-operator-visitor@^6.8.0: 256 | version "6.18.0" 257 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.18.0.tgz#8ae814989f7a53682152e3401a04fabd0bb333a6" 258 | dependencies: 259 | babel-helper-explode-assignable-expression "^6.18.0" 260 | babel-runtime "^6.0.0" 261 | babel-types "^6.18.0" 262 | 263 | babel-helper-call-delegate@^6.18.0: 264 | version "6.18.0" 265 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.18.0.tgz#05b14aafa430884b034097ef29e9f067ea4133bd" 266 | dependencies: 267 | babel-helper-hoist-variables "^6.18.0" 268 | babel-runtime "^6.0.0" 269 | babel-traverse "^6.18.0" 270 | babel-types "^6.18.0" 271 | 272 | babel-helper-define-map@^6.18.0, babel-helper-define-map@^6.8.0: 273 | version "6.18.0" 274 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.18.0.tgz#8d6c85dc7fbb4c19be3de40474d18e97c3676ec2" 275 | dependencies: 276 | babel-helper-function-name "^6.18.0" 277 | babel-runtime "^6.9.0" 278 | babel-types "^6.18.0" 279 | lodash "^4.2.0" 280 | 281 | babel-helper-explode-assignable-expression@^6.18.0: 282 | version "6.18.0" 283 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.18.0.tgz#14b8e8c2d03ad735d4b20f1840b24cd1f65239fe" 284 | dependencies: 285 | babel-runtime "^6.0.0" 286 | babel-traverse "^6.18.0" 287 | babel-types "^6.18.0" 288 | 289 | babel-helper-explode-class@^6.8.0: 290 | version "6.18.0" 291 | resolved "https://registry.yarnpkg.com/babel-helper-explode-class/-/babel-helper-explode-class-6.18.0.tgz#c44f76f4fa23b9c5d607cbac5d4115e7a76f62cb" 292 | dependencies: 293 | babel-helper-bindify-decorators "^6.18.0" 294 | babel-runtime "^6.0.0" 295 | babel-traverse "^6.18.0" 296 | babel-types "^6.18.0" 297 | 298 | babel-helper-function-name@^6.18.0, babel-helper-function-name@^6.8.0: 299 | version "6.18.0" 300 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.18.0.tgz#68ec71aeba1f3e28b2a6f0730190b754a9bf30e6" 301 | dependencies: 302 | babel-helper-get-function-arity "^6.18.0" 303 | babel-runtime "^6.0.0" 304 | babel-template "^6.8.0" 305 | babel-traverse "^6.18.0" 306 | babel-types "^6.18.0" 307 | 308 | babel-helper-get-function-arity@^6.18.0: 309 | version "6.18.0" 310 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.18.0.tgz#a5b19695fd3f9cdfc328398b47dafcd7094f9f24" 311 | dependencies: 312 | babel-runtime "^6.0.0" 313 | babel-types "^6.18.0" 314 | 315 | babel-helper-hoist-variables@^6.18.0: 316 | version "6.18.0" 317 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.18.0.tgz#a835b5ab8b46d6de9babefae4d98ea41e866b82a" 318 | dependencies: 319 | babel-runtime "^6.0.0" 320 | babel-types "^6.18.0" 321 | 322 | babel-helper-optimise-call-expression@^6.18.0: 323 | version "6.18.0" 324 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.18.0.tgz#9261d0299ee1a4f08a6dd28b7b7c777348fd8f0f" 325 | dependencies: 326 | babel-runtime "^6.0.0" 327 | babel-types "^6.18.0" 328 | 329 | babel-helper-regex@^6.8.0: 330 | version "6.18.0" 331 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.18.0.tgz#ae0ebfd77de86cb2f1af258e2cc20b5fe893ecc6" 332 | dependencies: 333 | babel-runtime "^6.9.0" 334 | babel-types "^6.18.0" 335 | lodash "^4.2.0" 336 | 337 | babel-helper-remap-async-to-generator@^6.16.0, babel-helper-remap-async-to-generator@^6.16.2: 338 | version "6.20.3" 339 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.20.3.tgz#9dd3b396f13e35ef63e538098500adc24c63c4e7" 340 | dependencies: 341 | babel-helper-function-name "^6.18.0" 342 | babel-runtime "^6.20.0" 343 | babel-template "^6.16.0" 344 | babel-traverse "^6.20.0" 345 | babel-types "^6.20.0" 346 | 347 | babel-helper-replace-supers@^6.18.0, babel-helper-replace-supers@^6.8.0: 348 | version "6.18.0" 349 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.18.0.tgz#28ec69877be4144dbd64f4cc3a337e89f29a924e" 350 | dependencies: 351 | babel-helper-optimise-call-expression "^6.18.0" 352 | babel-messages "^6.8.0" 353 | babel-runtime "^6.0.0" 354 | babel-template "^6.16.0" 355 | babel-traverse "^6.18.0" 356 | babel-types "^6.18.0" 357 | 358 | babel-helpers@^6.16.0: 359 | version "6.16.0" 360 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.16.0.tgz#1095ec10d99279460553e67eb3eee9973d3867e3" 361 | dependencies: 362 | babel-runtime "^6.0.0" 363 | babel-template "^6.16.0" 364 | 365 | babel-messages@^6.8.0: 366 | version "6.8.0" 367 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.8.0.tgz#bf504736ca967e6d65ef0adb5a2a5f947c8e0eb9" 368 | dependencies: 369 | babel-runtime "^6.0.0" 370 | 371 | babel-plugin-check-es2015-constants@^6.3.13: 372 | version "6.8.0" 373 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.8.0.tgz#dbf024c32ed37bfda8dee1e76da02386a8d26fe7" 374 | dependencies: 375 | babel-runtime "^6.0.0" 376 | 377 | babel-plugin-syntax-async-functions@^6.8.0: 378 | version "6.13.0" 379 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 380 | 381 | babel-plugin-syntax-async-generators@^6.5.0: 382 | version "6.13.0" 383 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a" 384 | 385 | babel-plugin-syntax-class-constructor-call@^6.18.0: 386 | version "6.18.0" 387 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-constructor-call/-/babel-plugin-syntax-class-constructor-call-6.18.0.tgz#9cb9d39fe43c8600bec8146456ddcbd4e1a76416" 388 | 389 | babel-plugin-syntax-class-properties@^6.8.0: 390 | version "6.13.0" 391 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 392 | 393 | babel-plugin-syntax-decorators@^6.13.0: 394 | version "6.13.0" 395 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b" 396 | 397 | babel-plugin-syntax-do-expressions@^6.8.0: 398 | version "6.13.0" 399 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-do-expressions/-/babel-plugin-syntax-do-expressions-6.13.0.tgz#5747756139aa26d390d09410b03744ba07e4796d" 400 | 401 | babel-plugin-syntax-dynamic-import@^6.18.0: 402 | version "6.18.0" 403 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da" 404 | 405 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 406 | version "6.13.0" 407 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 408 | 409 | babel-plugin-syntax-export-extensions@^6.8.0: 410 | version "6.13.0" 411 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-export-extensions/-/babel-plugin-syntax-export-extensions-6.13.0.tgz#70a1484f0f9089a4e84ad44bac353c95b9b12721" 412 | 413 | babel-plugin-syntax-function-bind@^6.8.0: 414 | version "6.13.0" 415 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-function-bind/-/babel-plugin-syntax-function-bind-6.13.0.tgz#48c495f177bdf31a981e732f55adc0bdd2601f46" 416 | 417 | babel-plugin-syntax-object-rest-spread@^6.8.0: 418 | version "6.13.0" 419 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 420 | 421 | babel-plugin-syntax-trailing-function-commas@^6.3.13: 422 | version "6.20.0" 423 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.20.0.tgz#442835e19179f45b87e92d477d70b9f1f18b5c4f" 424 | 425 | babel-plugin-transform-async-generator-functions@^6.17.0: 426 | version "6.17.0" 427 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.17.0.tgz#d0b5a2b2f0940f2b245fa20a00519ed7bc6cae54" 428 | dependencies: 429 | babel-helper-remap-async-to-generator "^6.16.2" 430 | babel-plugin-syntax-async-generators "^6.5.0" 431 | babel-runtime "^6.0.0" 432 | 433 | babel-plugin-transform-async-to-generator@^6.16.0: 434 | version "6.16.0" 435 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.16.0.tgz#19ec36cb1486b59f9f468adfa42ce13908ca2999" 436 | dependencies: 437 | babel-helper-remap-async-to-generator "^6.16.0" 438 | babel-plugin-syntax-async-functions "^6.8.0" 439 | babel-runtime "^6.0.0" 440 | 441 | babel-plugin-transform-class-constructor-call@^6.3.13: 442 | version "6.18.0" 443 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-constructor-call/-/babel-plugin-transform-class-constructor-call-6.18.0.tgz#80855e38a1ab47b8c6c647f8ea1bcd2c00ca3aae" 444 | dependencies: 445 | babel-plugin-syntax-class-constructor-call "^6.18.0" 446 | babel-runtime "^6.0.0" 447 | babel-template "^6.8.0" 448 | 449 | babel-plugin-transform-class-properties@^6.18.0: 450 | version "6.19.0" 451 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.19.0.tgz#1274b349abaadc835164e2004f4a2444a2788d5f" 452 | dependencies: 453 | babel-helper-function-name "^6.18.0" 454 | babel-plugin-syntax-class-properties "^6.8.0" 455 | babel-runtime "^6.9.1" 456 | babel-template "^6.15.0" 457 | 458 | babel-plugin-transform-decorators@^6.13.0: 459 | version "6.13.0" 460 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.13.0.tgz#82d65c1470ae83e2d13eebecb0a1c2476d62da9d" 461 | dependencies: 462 | babel-helper-define-map "^6.8.0" 463 | babel-helper-explode-class "^6.8.0" 464 | babel-plugin-syntax-decorators "^6.13.0" 465 | babel-runtime "^6.0.0" 466 | babel-template "^6.8.0" 467 | babel-types "^6.13.0" 468 | 469 | babel-plugin-transform-do-expressions@^6.3.13: 470 | version "6.8.0" 471 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-do-expressions/-/babel-plugin-transform-do-expressions-6.8.0.tgz#fda692af339835cc255bb7544efb8f7c1306c273" 472 | dependencies: 473 | babel-plugin-syntax-do-expressions "^6.8.0" 474 | babel-runtime "^6.0.0" 475 | 476 | babel-plugin-transform-es2015-arrow-functions@^6.3.13: 477 | version "6.8.0" 478 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.8.0.tgz#5b63afc3181bdc9a8c4d481b5a4f3f7d7fef3d9d" 479 | dependencies: 480 | babel-runtime "^6.0.0" 481 | 482 | babel-plugin-transform-es2015-block-scoped-functions@^6.3.13: 483 | version "6.8.0" 484 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.8.0.tgz#ed95d629c4b5a71ae29682b998f70d9833eb366d" 485 | dependencies: 486 | babel-runtime "^6.0.0" 487 | 488 | babel-plugin-transform-es2015-block-scoping@^6.18.0: 489 | version "6.20.0" 490 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.20.0.tgz#5d8f3e83b1a1ae1064e64a9e5bb83108d8e73be3" 491 | dependencies: 492 | babel-runtime "^6.20.0" 493 | babel-template "^6.15.0" 494 | babel-traverse "^6.20.0" 495 | babel-types "^6.20.0" 496 | lodash "^4.2.0" 497 | 498 | babel-plugin-transform-es2015-classes@^6.18.0: 499 | version "6.18.0" 500 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.18.0.tgz#ffe7a17321bf83e494dcda0ae3fc72df48ffd1d9" 501 | dependencies: 502 | babel-helper-define-map "^6.18.0" 503 | babel-helper-function-name "^6.18.0" 504 | babel-helper-optimise-call-expression "^6.18.0" 505 | babel-helper-replace-supers "^6.18.0" 506 | babel-messages "^6.8.0" 507 | babel-runtime "^6.9.0" 508 | babel-template "^6.14.0" 509 | babel-traverse "^6.18.0" 510 | babel-types "^6.18.0" 511 | 512 | babel-plugin-transform-es2015-computed-properties@^6.3.13: 513 | version "6.8.0" 514 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.8.0.tgz#f51010fd61b3bd7b6b60a5fdfd307bb7a5279870" 515 | dependencies: 516 | babel-helper-define-map "^6.8.0" 517 | babel-runtime "^6.0.0" 518 | babel-template "^6.8.0" 519 | 520 | babel-plugin-transform-es2015-destructuring@^6.18.0: 521 | version "6.19.0" 522 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.19.0.tgz#ff1d911c4b3f4cab621bd66702a869acd1900533" 523 | dependencies: 524 | babel-runtime "^6.9.0" 525 | 526 | babel-plugin-transform-es2015-duplicate-keys@^6.6.0: 527 | version "6.8.0" 528 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.8.0.tgz#fd8f7f7171fc108cc1c70c3164b9f15a81c25f7d" 529 | dependencies: 530 | babel-runtime "^6.0.0" 531 | babel-types "^6.8.0" 532 | 533 | babel-plugin-transform-es2015-for-of@^6.18.0: 534 | version "6.18.0" 535 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.18.0.tgz#4c517504db64bf8cfc119a6b8f177211f2028a70" 536 | dependencies: 537 | babel-runtime "^6.0.0" 538 | 539 | babel-plugin-transform-es2015-function-name@^6.9.0: 540 | version "6.9.0" 541 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.9.0.tgz#8c135b17dbd064e5bba56ec511baaee2fca82719" 542 | dependencies: 543 | babel-helper-function-name "^6.8.0" 544 | babel-runtime "^6.9.0" 545 | babel-types "^6.9.0" 546 | 547 | babel-plugin-transform-es2015-literals@^6.3.13: 548 | version "6.8.0" 549 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.8.0.tgz#50aa2e5c7958fc2ab25d74ec117e0cc98f046468" 550 | dependencies: 551 | babel-runtime "^6.0.0" 552 | 553 | babel-plugin-transform-es2015-modules-amd@^6.18.0: 554 | version "6.18.0" 555 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.18.0.tgz#49a054cbb762bdf9ae2d8a807076cfade6141e40" 556 | dependencies: 557 | babel-plugin-transform-es2015-modules-commonjs "^6.18.0" 558 | babel-runtime "^6.0.0" 559 | babel-template "^6.8.0" 560 | 561 | babel-plugin-transform-es2015-modules-commonjs@^6.18.0: 562 | version "6.18.0" 563 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.18.0.tgz#c15ae5bb11b32a0abdcc98a5837baa4ee8d67bcc" 564 | dependencies: 565 | babel-plugin-transform-strict-mode "^6.18.0" 566 | babel-runtime "^6.0.0" 567 | babel-template "^6.16.0" 568 | babel-types "^6.18.0" 569 | 570 | babel-plugin-transform-es2015-modules-systemjs@^6.18.0: 571 | version "6.19.0" 572 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.19.0.tgz#50438136eba74527efa00a5b0fefaf1dc4071da6" 573 | dependencies: 574 | babel-helper-hoist-variables "^6.18.0" 575 | babel-runtime "^6.11.6" 576 | babel-template "^6.14.0" 577 | 578 | babel-plugin-transform-es2015-modules-umd@^6.18.0: 579 | version "6.18.0" 580 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.18.0.tgz#23351770ece5c1f8e83ed67cb1d7992884491e50" 581 | dependencies: 582 | babel-plugin-transform-es2015-modules-amd "^6.18.0" 583 | babel-runtime "^6.0.0" 584 | babel-template "^6.8.0" 585 | 586 | babel-plugin-transform-es2015-object-super@^6.3.13: 587 | version "6.8.0" 588 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.8.0.tgz#1b858740a5a4400887c23dcff6f4d56eea4a24c5" 589 | dependencies: 590 | babel-helper-replace-supers "^6.8.0" 591 | babel-runtime "^6.0.0" 592 | 593 | babel-plugin-transform-es2015-parameters@^6.18.0: 594 | version "6.18.0" 595 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.18.0.tgz#9b2cfe238c549f1635ba27fc1daa858be70608b1" 596 | dependencies: 597 | babel-helper-call-delegate "^6.18.0" 598 | babel-helper-get-function-arity "^6.18.0" 599 | babel-runtime "^6.9.0" 600 | babel-template "^6.16.0" 601 | babel-traverse "^6.18.0" 602 | babel-types "^6.18.0" 603 | 604 | babel-plugin-transform-es2015-shorthand-properties@^6.18.0: 605 | version "6.18.0" 606 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.18.0.tgz#e2ede3b7df47bf980151926534d1dd0cbea58f43" 607 | dependencies: 608 | babel-runtime "^6.0.0" 609 | babel-types "^6.18.0" 610 | 611 | babel-plugin-transform-es2015-spread@^6.3.13: 612 | version "6.8.0" 613 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.8.0.tgz#0217f737e3b821fa5a669f187c6ed59205f05e9c" 614 | dependencies: 615 | babel-runtime "^6.0.0" 616 | 617 | babel-plugin-transform-es2015-sticky-regex@^6.3.13: 618 | version "6.8.0" 619 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.8.0.tgz#e73d300a440a35d5c64f5c2a344dc236e3df47be" 620 | dependencies: 621 | babel-helper-regex "^6.8.0" 622 | babel-runtime "^6.0.0" 623 | babel-types "^6.8.0" 624 | 625 | babel-plugin-transform-es2015-template-literals@^6.6.0: 626 | version "6.8.0" 627 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.8.0.tgz#86eb876d0a2c635da4ec048b4f7de9dfc897e66b" 628 | dependencies: 629 | babel-runtime "^6.0.0" 630 | 631 | babel-plugin-transform-es2015-typeof-symbol@^6.18.0: 632 | version "6.18.0" 633 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.18.0.tgz#0b14c48629c90ff47a0650077f6aa699bee35798" 634 | dependencies: 635 | babel-runtime "^6.0.0" 636 | 637 | babel-plugin-transform-es2015-unicode-regex@^6.3.13: 638 | version "6.11.0" 639 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.11.0.tgz#6298ceabaad88d50a3f4f392d8de997260f6ef2c" 640 | dependencies: 641 | babel-helper-regex "^6.8.0" 642 | babel-runtime "^6.0.0" 643 | regexpu-core "^2.0.0" 644 | 645 | babel-plugin-transform-exponentiation-operator@^6.3.13: 646 | version "6.8.0" 647 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.8.0.tgz#db25742e9339eade676ca9acec46f955599a68a4" 648 | dependencies: 649 | babel-helper-builder-binary-assignment-operator-visitor "^6.8.0" 650 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 651 | babel-runtime "^6.0.0" 652 | 653 | babel-plugin-transform-export-extensions@^6.3.13: 654 | version "6.8.0" 655 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-export-extensions/-/babel-plugin-transform-export-extensions-6.8.0.tgz#fa80ff655b636549431bfd38f6b817bd82e47f5b" 656 | dependencies: 657 | babel-plugin-syntax-export-extensions "^6.8.0" 658 | babel-runtime "^6.0.0" 659 | 660 | babel-plugin-transform-function-bind@^6.3.13: 661 | version "6.8.0" 662 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-function-bind/-/babel-plugin-transform-function-bind-6.8.0.tgz#e7f334ce69f50d28fe850a822eaaab9fa4f4d821" 663 | dependencies: 664 | babel-plugin-syntax-function-bind "^6.8.0" 665 | babel-runtime "^6.0.0" 666 | 667 | babel-plugin-transform-object-rest-spread@^6.16.0: 668 | version "6.20.2" 669 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.20.2.tgz#e816c55bba77b14c16365d87e2ae48c8fd18fc2e" 670 | dependencies: 671 | babel-plugin-syntax-object-rest-spread "^6.8.0" 672 | babel-runtime "^6.20.0" 673 | 674 | babel-plugin-transform-regenerator@^6.16.0: 675 | version "6.20.0" 676 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.20.0.tgz#a546cd2aa1c9889929d5c427a31303847847ab75" 677 | dependencies: 678 | regenerator-transform "0.9.8" 679 | 680 | babel-plugin-transform-strict-mode@^6.18.0: 681 | version "6.18.0" 682 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.18.0.tgz#df7cf2991fe046f44163dcd110d5ca43bc652b9d" 683 | dependencies: 684 | babel-runtime "^6.0.0" 685 | babel-types "^6.18.0" 686 | 687 | babel-polyfill@^6.16.0: 688 | version "6.20.0" 689 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.20.0.tgz#de4a371006139e20990aac0be367d398331204e7" 690 | dependencies: 691 | babel-runtime "^6.20.0" 692 | core-js "^2.4.0" 693 | regenerator-runtime "^0.10.0" 694 | 695 | babel-preset-es2015@^6.16.0: 696 | version "6.18.0" 697 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.18.0.tgz#b8c70df84ec948c43dcf2bf770e988eb7da88312" 698 | dependencies: 699 | babel-plugin-check-es2015-constants "^6.3.13" 700 | babel-plugin-transform-es2015-arrow-functions "^6.3.13" 701 | babel-plugin-transform-es2015-block-scoped-functions "^6.3.13" 702 | babel-plugin-transform-es2015-block-scoping "^6.18.0" 703 | babel-plugin-transform-es2015-classes "^6.18.0" 704 | babel-plugin-transform-es2015-computed-properties "^6.3.13" 705 | babel-plugin-transform-es2015-destructuring "^6.18.0" 706 | babel-plugin-transform-es2015-duplicate-keys "^6.6.0" 707 | babel-plugin-transform-es2015-for-of "^6.18.0" 708 | babel-plugin-transform-es2015-function-name "^6.9.0" 709 | babel-plugin-transform-es2015-literals "^6.3.13" 710 | babel-plugin-transform-es2015-modules-amd "^6.18.0" 711 | babel-plugin-transform-es2015-modules-commonjs "^6.18.0" 712 | babel-plugin-transform-es2015-modules-systemjs "^6.18.0" 713 | babel-plugin-transform-es2015-modules-umd "^6.18.0" 714 | babel-plugin-transform-es2015-object-super "^6.3.13" 715 | babel-plugin-transform-es2015-parameters "^6.18.0" 716 | babel-plugin-transform-es2015-shorthand-properties "^6.18.0" 717 | babel-plugin-transform-es2015-spread "^6.3.13" 718 | babel-plugin-transform-es2015-sticky-regex "^6.3.13" 719 | babel-plugin-transform-es2015-template-literals "^6.6.0" 720 | babel-plugin-transform-es2015-typeof-symbol "^6.18.0" 721 | babel-plugin-transform-es2015-unicode-regex "^6.3.13" 722 | babel-plugin-transform-regenerator "^6.16.0" 723 | 724 | babel-preset-stage-0@^6.16.0: 725 | version "6.16.0" 726 | resolved "https://registry.yarnpkg.com/babel-preset-stage-0/-/babel-preset-stage-0-6.16.0.tgz#f5a263c420532fd57491f1a7315b3036e428f823" 727 | dependencies: 728 | babel-plugin-transform-do-expressions "^6.3.13" 729 | babel-plugin-transform-function-bind "^6.3.13" 730 | babel-preset-stage-1 "^6.16.0" 731 | 732 | babel-preset-stage-1@^6.16.0: 733 | version "6.16.0" 734 | resolved "https://registry.yarnpkg.com/babel-preset-stage-1/-/babel-preset-stage-1-6.16.0.tgz#9d31fbbdae7b17c549fd3ac93e3cf6902695e479" 735 | dependencies: 736 | babel-plugin-transform-class-constructor-call "^6.3.13" 737 | babel-plugin-transform-export-extensions "^6.3.13" 738 | babel-preset-stage-2 "^6.16.0" 739 | 740 | babel-preset-stage-2@^6.16.0: 741 | version "6.18.0" 742 | resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.18.0.tgz#9eb7bf9a8e91c68260d5ba7500493caaada4b5b5" 743 | dependencies: 744 | babel-plugin-syntax-dynamic-import "^6.18.0" 745 | babel-plugin-transform-class-properties "^6.18.0" 746 | babel-plugin-transform-decorators "^6.13.0" 747 | babel-preset-stage-3 "^6.17.0" 748 | 749 | babel-preset-stage-3@^6.17.0: 750 | version "6.17.0" 751 | resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.17.0.tgz#b6638e46db6e91e3f889013d8ce143917c685e39" 752 | dependencies: 753 | babel-plugin-syntax-trailing-function-commas "^6.3.13" 754 | babel-plugin-transform-async-generator-functions "^6.17.0" 755 | babel-plugin-transform-async-to-generator "^6.16.0" 756 | babel-plugin-transform-exponentiation-operator "^6.3.13" 757 | babel-plugin-transform-object-rest-spread "^6.16.0" 758 | 759 | babel-register@^6.18.0: 760 | version "6.18.0" 761 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.18.0.tgz#892e2e03865078dd90ad2c715111ec4449b32a68" 762 | dependencies: 763 | babel-core "^6.18.0" 764 | babel-runtime "^6.11.6" 765 | core-js "^2.4.0" 766 | home-or-tmp "^2.0.0" 767 | lodash "^4.2.0" 768 | mkdirp "^0.5.1" 769 | source-map-support "^0.4.2" 770 | 771 | babel-runtime@^6.0.0, babel-runtime@^6.11.6, babel-runtime@^6.18.0, babel-runtime@^6.20.0, babel-runtime@^6.9.0, babel-runtime@^6.9.1: 772 | version "6.20.0" 773 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.20.0.tgz#87300bdcf4cd770f09bf0048c64204e17806d16f" 774 | dependencies: 775 | core-js "^2.4.0" 776 | regenerator-runtime "^0.10.0" 777 | 778 | babel-template@^6.14.0, babel-template@^6.15.0, babel-template@^6.16.0, babel-template@^6.8.0: 779 | version "6.16.0" 780 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.16.0.tgz#e149dd1a9f03a35f817ddbc4d0481988e7ebc8ca" 781 | dependencies: 782 | babel-runtime "^6.9.0" 783 | babel-traverse "^6.16.0" 784 | babel-types "^6.16.0" 785 | babylon "^6.11.0" 786 | lodash "^4.2.0" 787 | 788 | babel-traverse@^6.15.0, babel-traverse@^6.16.0, babel-traverse@^6.18.0, babel-traverse@^6.20.0: 789 | version "6.20.0" 790 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.20.0.tgz#5378d1a743e3d856e6a52289994100bbdfd9872a" 791 | dependencies: 792 | babel-code-frame "^6.20.0" 793 | babel-messages "^6.8.0" 794 | babel-runtime "^6.20.0" 795 | babel-types "^6.20.0" 796 | babylon "^6.11.0" 797 | debug "^2.2.0" 798 | globals "^9.0.0" 799 | invariant "^2.2.0" 800 | lodash "^4.2.0" 801 | 802 | babel-types@^6.13.0, babel-types@^6.15.0, babel-types@^6.16.0, babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.20.0, babel-types@^6.8.0, babel-types@^6.9.0: 803 | version "6.20.0" 804 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.20.0.tgz#3869ecb98459533b37df809886b3f7f3b08d2baa" 805 | dependencies: 806 | babel-runtime "^6.20.0" 807 | esutils "^2.0.2" 808 | lodash "^4.2.0" 809 | to-fast-properties "^1.0.1" 810 | 811 | babylon@^6.11.0, babylon@^6.13.0: 812 | version "6.14.1" 813 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.14.1.tgz#956275fab72753ad9b3435d7afe58f8bf0a29815" 814 | 815 | bail@^1.0.0: 816 | version "1.0.1" 817 | resolved "https://registry.yarnpkg.com/bail/-/bail-1.0.1.tgz#912579de8b391aadf3c5fdf4cd2a0fc225df3bc2" 818 | 819 | balanced-match@^0.4.1: 820 | version "0.4.2" 821 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 822 | 823 | bcrypt-pbkdf@^1.0.0: 824 | version "1.0.0" 825 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.0.tgz#3ca76b85241c7170bf7d9703e7b9aa74630040d4" 826 | dependencies: 827 | tweetnacl "^0.14.3" 828 | 829 | binary-extensions@^1.0.0: 830 | version "1.8.0" 831 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 832 | 833 | bl@~1.1.2: 834 | version "1.1.2" 835 | resolved "https://registry.yarnpkg.com/bl/-/bl-1.1.2.tgz#fdca871a99713aa00d19e3bbba41c44787a65398" 836 | dependencies: 837 | readable-stream "~2.0.5" 838 | 839 | block-stream@*: 840 | version "0.0.9" 841 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 842 | dependencies: 843 | inherits "~2.0.0" 844 | 845 | boom@2.x.x: 846 | version "2.10.1" 847 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 848 | dependencies: 849 | hoek "2.x.x" 850 | 851 | boundary@^1.0.1: 852 | version "1.0.1" 853 | resolved "https://registry.yarnpkg.com/boundary/-/boundary-1.0.1.tgz#4d67dc2602c0cc16dd9bce7ebf87e948290f5812" 854 | 855 | brace-expansion@^1.0.0: 856 | version "1.1.6" 857 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 858 | dependencies: 859 | balanced-match "^0.4.1" 860 | concat-map "0.0.1" 861 | 862 | braces@^1.8.2: 863 | version "1.8.5" 864 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 865 | dependencies: 866 | expand-range "^1.8.1" 867 | preserve "^0.2.0" 868 | repeat-element "^1.1.2" 869 | 870 | buffer-shims@^1.0.0: 871 | version "1.0.0" 872 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 873 | 874 | builtin-modules@^1.0.0: 875 | version "1.1.1" 876 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 877 | 878 | builtins@^1.0.0: 879 | version "1.0.3" 880 | resolved "https://registry.yarnpkg.com/builtins/-/builtins-1.0.3.tgz#cb94faeb61c8696451db36534e1422f94f0aee88" 881 | 882 | caching-transform@^1.0.0: 883 | version "1.0.1" 884 | resolved "https://registry.yarnpkg.com/caching-transform/-/caching-transform-1.0.1.tgz#6dbdb2f20f8d8fbce79f3e94e9d1742dcdf5c0a1" 885 | dependencies: 886 | md5-hex "^1.2.0" 887 | mkdirp "^0.5.1" 888 | write-file-atomic "^1.1.4" 889 | 890 | caller-path@^0.1.0: 891 | version "0.1.0" 892 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 893 | dependencies: 894 | callsites "^0.2.0" 895 | 896 | callsites@^0.2.0: 897 | version "0.2.0" 898 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 899 | 900 | camelcase@^1.0.2: 901 | version "1.2.1" 902 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 903 | 904 | camelcase@^2.0.0: 905 | version "2.1.1" 906 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 907 | 908 | camelcase@^3.0.0: 909 | version "3.0.0" 910 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 911 | 912 | caseless@~0.11.0: 913 | version "0.11.0" 914 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 915 | 916 | ccount@^1.0.0: 917 | version "1.0.1" 918 | resolved "https://registry.yarnpkg.com/ccount/-/ccount-1.0.1.tgz#665687945168c218ec77ff61a4155ae00227a96c" 919 | 920 | center-align@^0.1.1: 921 | version "0.1.3" 922 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 923 | dependencies: 924 | align-text "^0.1.3" 925 | lazy-cache "^1.0.3" 926 | 927 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 928 | version "1.1.3" 929 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 930 | dependencies: 931 | ansi-styles "^2.2.1" 932 | escape-string-regexp "^1.0.2" 933 | has-ansi "^2.0.0" 934 | strip-ansi "^3.0.0" 935 | supports-color "^2.0.0" 936 | 937 | character-entities-html4@^1.0.0: 938 | version "1.1.0" 939 | resolved "https://registry.yarnpkg.com/character-entities-html4/-/character-entities-html4-1.1.0.tgz#1ab08551d3ce1fa1df08d00fb9ca1defb147a06c" 940 | 941 | character-entities-legacy@^1.0.0: 942 | version "1.1.0" 943 | resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-1.1.0.tgz#b18aad98f6b7bcc646c1e4c81f9f1956376a561a" 944 | 945 | character-entities@^1.0.0: 946 | version "1.2.0" 947 | resolved "https://registry.yarnpkg.com/character-entities/-/character-entities-1.2.0.tgz#a683e2cf75dbe8b171963531364e58e18a1b155f" 948 | 949 | character-reference-invalid@^1.0.0: 950 | version "1.1.0" 951 | resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-1.1.0.tgz#dec9ad1dfb9f8d06b4fcdaa2adc3c4fd97af1e68" 952 | 953 | chokidar@^1.0.0, chokidar@^1.0.5: 954 | version "1.6.1" 955 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 956 | dependencies: 957 | anymatch "^1.3.0" 958 | async-each "^1.0.0" 959 | glob-parent "^2.0.0" 960 | inherits "^2.0.1" 961 | is-binary-path "^1.0.0" 962 | is-glob "^2.0.0" 963 | path-is-absolute "^1.0.0" 964 | readdirp "^2.0.0" 965 | optionalDependencies: 966 | fsevents "^1.0.0" 967 | 968 | circular-json@^0.3.0: 969 | version "0.3.1" 970 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 971 | 972 | cli-cursor@^1.0.1, cli-cursor@^1.0.2: 973 | version "1.0.2" 974 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 975 | dependencies: 976 | restore-cursor "^1.0.1" 977 | 978 | cli-width@^2.0.0: 979 | version "2.1.0" 980 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 981 | 982 | cliui@^2.1.0: 983 | version "2.1.0" 984 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 985 | dependencies: 986 | center-align "^0.1.1" 987 | right-align "^0.1.1" 988 | wordwrap "0.0.2" 989 | 990 | cliui@^3.2.0: 991 | version "3.2.0" 992 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 993 | dependencies: 994 | string-width "^1.0.1" 995 | strip-ansi "^3.0.1" 996 | wrap-ansi "^2.0.0" 997 | 998 | co@3.1.0: 999 | version "3.1.0" 1000 | resolved "https://registry.yarnpkg.com/co/-/co-3.1.0.tgz#4ea54ea5a08938153185e15210c68d9092bc1b78" 1001 | 1002 | co@^4.6.0: 1003 | version "4.6.0" 1004 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1005 | 1006 | code-point-at@^1.0.0: 1007 | version "1.1.0" 1008 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1009 | 1010 | collapse-white-space@^1.0.0: 1011 | version "1.0.2" 1012 | resolved "https://registry.yarnpkg.com/collapse-white-space/-/collapse-white-space-1.0.2.tgz#9c463fb9c6d190d2dcae21a356a01bcae9eeef6d" 1013 | 1014 | combined-stream@^1.0.5, combined-stream@~1.0.5: 1015 | version "1.0.5" 1016 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 1017 | dependencies: 1018 | delayed-stream "~1.0.0" 1019 | 1020 | commander@^2.0.0, commander@^2.8.1, commander@^2.9.0: 1021 | version "2.9.0" 1022 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 1023 | dependencies: 1024 | graceful-readlink ">= 1.0.0" 1025 | 1026 | commondir@^1.0.1: 1027 | version "1.0.1" 1028 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 1029 | 1030 | concat-map@0.0.1: 1031 | version "0.0.1" 1032 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1033 | 1034 | concat-stream@^1.0.0, concat-stream@^1.4.6: 1035 | version "1.5.2" 1036 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.5.2.tgz#708978624d856af41a5a741defdd261da752c266" 1037 | dependencies: 1038 | inherits "~2.0.1" 1039 | readable-stream "~2.0.0" 1040 | typedarray "~0.0.5" 1041 | 1042 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1043 | version "1.1.0" 1044 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1045 | 1046 | convert-source-map@^1.1.0, convert-source-map@^1.3.0: 1047 | version "1.3.0" 1048 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.3.0.tgz#e9f3e9c6e2728efc2676696a70eb382f73106a67" 1049 | 1050 | core-js@^1.0.0: 1051 | version "1.2.7" 1052 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 1053 | 1054 | core-js@^2.4.0: 1055 | version "2.4.1" 1056 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 1057 | 1058 | core-util-is@~1.0.0: 1059 | version "1.0.2" 1060 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1061 | 1062 | coveralls@^2.11.4: 1063 | version "2.11.15" 1064 | resolved "https://registry.yarnpkg.com/coveralls/-/coveralls-2.11.15.tgz#37d3474369d66c14f33fa73a9d25cee6e099fca0" 1065 | dependencies: 1066 | js-yaml "3.6.1" 1067 | lcov-parse "0.0.10" 1068 | log-driver "1.2.5" 1069 | minimist "1.2.0" 1070 | request "2.75.0" 1071 | 1072 | cross-spawn@^4: 1073 | version "4.0.2" 1074 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41" 1075 | dependencies: 1076 | lru-cache "^4.0.1" 1077 | which "^1.2.9" 1078 | 1079 | cryptiles@2.x.x: 1080 | version "2.0.5" 1081 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1082 | dependencies: 1083 | boom "2.x.x" 1084 | 1085 | d@^0.1.1, d@~0.1.1: 1086 | version "0.1.1" 1087 | resolved "https://registry.yarnpkg.com/d/-/d-0.1.1.tgz#da184c535d18d8ee7ba2aa229b914009fae11309" 1088 | dependencies: 1089 | es5-ext "~0.10.2" 1090 | 1091 | dashdash@^1.12.0: 1092 | version "1.14.1" 1093 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1094 | dependencies: 1095 | assert-plus "^1.0.0" 1096 | 1097 | debug@^2.0.0, debug@^2.1.1, debug@^2.1.3, debug@^2.2.0: 1098 | version "2.4.4" 1099 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.4.4.tgz#c04d17a654e9202464803f096153f70a6f31f4be" 1100 | dependencies: 1101 | ms "0.7.2" 1102 | 1103 | debug@~2.2.0: 1104 | version "2.2.0" 1105 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 1106 | dependencies: 1107 | ms "0.7.1" 1108 | 1109 | decamelize@^1.0.0, decamelize@^1.1.1: 1110 | version "1.2.0" 1111 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1112 | 1113 | deep-equal@^1.0.1, deep-equal@~1.0.1: 1114 | version "1.0.1" 1115 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" 1116 | 1117 | deep-extend@~0.4.0: 1118 | version "0.4.1" 1119 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 1120 | 1121 | deep-is@~0.1.3: 1122 | version "0.1.3" 1123 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1124 | 1125 | default-require-extensions@^1.0.0: 1126 | version "1.0.0" 1127 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 1128 | dependencies: 1129 | strip-bom "^2.0.0" 1130 | 1131 | define-properties@^1.1.2: 1132 | version "1.1.2" 1133 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 1134 | dependencies: 1135 | foreach "^2.0.5" 1136 | object-keys "^1.0.8" 1137 | 1138 | defined@^1.0.0, defined@~1.0.0: 1139 | version "1.0.0" 1140 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 1141 | 1142 | del@^2.0.2: 1143 | version "2.2.2" 1144 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1145 | dependencies: 1146 | globby "^5.0.0" 1147 | is-path-cwd "^1.0.0" 1148 | is-path-in-cwd "^1.0.0" 1149 | object-assign "^4.0.1" 1150 | pify "^2.0.0" 1151 | pinkie-promise "^2.0.0" 1152 | rimraf "^2.2.8" 1153 | 1154 | delayed-stream@~1.0.0: 1155 | version "1.0.0" 1156 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1157 | 1158 | delegates@^1.0.0: 1159 | version "1.0.0" 1160 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1161 | 1162 | dependency-check@^2.5.1: 1163 | version "2.6.0" 1164 | resolved "https://registry.yarnpkg.com/dependency-check/-/dependency-check-2.6.0.tgz#0832e068ff17f5e8e43b47a38f9d076a6ef84a74" 1165 | dependencies: 1166 | async "^1.0.0" 1167 | builtins "^1.0.0" 1168 | debug "^2.2.0" 1169 | detective "^4.0.0" 1170 | is-relative "^0.2.1" 1171 | minimist "^1.2.0" 1172 | read-package-json "^2.0.4" 1173 | resolve "^1.1.7" 1174 | 1175 | detect-indent@^4.0.0: 1176 | version "4.0.0" 1177 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1178 | dependencies: 1179 | repeating "^2.0.0" 1180 | 1181 | detective@^4.0.0: 1182 | version "4.3.2" 1183 | resolved "https://registry.yarnpkg.com/detective/-/detective-4.3.2.tgz#77697e2e7947ac3fe7c8e26a6d6f115235afa91c" 1184 | dependencies: 1185 | acorn "^3.1.0" 1186 | defined "^1.0.0" 1187 | 1188 | doctoc@^1.2.0: 1189 | version "1.2.0" 1190 | resolved "https://registry.yarnpkg.com/doctoc/-/doctoc-1.2.0.tgz#840feac50d1aff51f52233b69f388c939b299c23" 1191 | dependencies: 1192 | anchor-markdown-header "^0.5.5" 1193 | htmlparser2 "~3.7.1" 1194 | markdown-to-ast "~3.2.3" 1195 | minimist "~1.1.0" 1196 | underscore ">=1.3.3" 1197 | update-section "^0.3.0" 1198 | 1199 | doctrine@^1.2.2: 1200 | version "1.5.0" 1201 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 1202 | dependencies: 1203 | esutils "^2.0.2" 1204 | isarray "^1.0.0" 1205 | 1206 | dom-serializer@0: 1207 | version "0.1.0" 1208 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82" 1209 | dependencies: 1210 | domelementtype "~1.1.1" 1211 | entities "~1.1.1" 1212 | 1213 | domelementtype@1: 1214 | version "1.3.0" 1215 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.0.tgz#b17aed82e8ab59e52dd9c19b1756e0fc187204c2" 1216 | 1217 | domelementtype@~1.1.1: 1218 | version "1.1.3" 1219 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.1.3.tgz#bd28773e2642881aec51544924299c5cd822185b" 1220 | 1221 | domhandler@2.2: 1222 | version "2.2.1" 1223 | resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.2.1.tgz#59df9dcd227e808b365ae73e1f6684ac3d946fc2" 1224 | dependencies: 1225 | domelementtype "1" 1226 | 1227 | domutils@1.5: 1228 | version "1.5.1" 1229 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" 1230 | dependencies: 1231 | dom-serializer "0" 1232 | domelementtype "1" 1233 | 1234 | duplexer@^0.1.1: 1235 | version "0.1.1" 1236 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" 1237 | 1238 | ecc-jsbn@~0.1.1: 1239 | version "0.1.1" 1240 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1241 | dependencies: 1242 | jsbn "~0.1.0" 1243 | 1244 | elegant-spinner@^1.0.0: 1245 | version "1.0.1" 1246 | resolved "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e" 1247 | 1248 | encoding@^0.1.11: 1249 | version "0.1.12" 1250 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 1251 | dependencies: 1252 | iconv-lite "~0.4.13" 1253 | 1254 | entities@1.0: 1255 | version "1.0.0" 1256 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.0.0.tgz#b2987aa3821347fcde642b24fdfc9e4fb712bf26" 1257 | 1258 | entities@~1.1.1: 1259 | version "1.1.1" 1260 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0" 1261 | 1262 | error-ex@^1.2.0: 1263 | version "1.3.0" 1264 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.0.tgz#e67b43f3e82c96ea3a584ffee0b9fc3325d802d9" 1265 | dependencies: 1266 | is-arrayish "^0.2.1" 1267 | 1268 | es-abstract@^1.5.0: 1269 | version "1.6.1" 1270 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.6.1.tgz#bb8a2064120abcf928a086ea3d9043114285ec99" 1271 | dependencies: 1272 | es-to-primitive "^1.1.1" 1273 | function-bind "^1.1.0" 1274 | is-callable "^1.1.3" 1275 | is-regex "^1.0.3" 1276 | 1277 | es-to-primitive@^1.1.1: 1278 | version "1.1.1" 1279 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 1280 | dependencies: 1281 | is-callable "^1.1.1" 1282 | is-date-object "^1.0.1" 1283 | is-symbol "^1.0.1" 1284 | 1285 | es5-ext@^0.10.7, es5-ext@^0.10.8, es5-ext@~0.10.11, es5-ext@~0.10.2, es5-ext@~0.10.7: 1286 | version "0.10.12" 1287 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.12.tgz#aa84641d4db76b62abba5e45fd805ecbab140047" 1288 | dependencies: 1289 | es6-iterator "2" 1290 | es6-symbol "~3.1" 1291 | 1292 | es6-error@^4.0.0: 1293 | version "4.0.0" 1294 | resolved "https://registry.yarnpkg.com/es6-error/-/es6-error-4.0.0.tgz#f094c7041f662599bb12720da059d6b9c7ff0f40" 1295 | 1296 | es6-iterator@2: 1297 | version "2.0.0" 1298 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.0.tgz#bd968567d61635e33c0b80727613c9cb4b096bac" 1299 | dependencies: 1300 | d "^0.1.1" 1301 | es5-ext "^0.10.7" 1302 | es6-symbol "3" 1303 | 1304 | es6-map@^0.1.3: 1305 | version "0.1.4" 1306 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.4.tgz#a34b147be224773a4d7da8072794cefa3632b897" 1307 | dependencies: 1308 | d "~0.1.1" 1309 | es5-ext "~0.10.11" 1310 | es6-iterator "2" 1311 | es6-set "~0.1.3" 1312 | es6-symbol "~3.1.0" 1313 | event-emitter "~0.3.4" 1314 | 1315 | es6-set@~0.1.3: 1316 | version "0.1.4" 1317 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.4.tgz#9516b6761c2964b92ff479456233a247dc707ce8" 1318 | dependencies: 1319 | d "~0.1.1" 1320 | es5-ext "~0.10.11" 1321 | es6-iterator "2" 1322 | es6-symbol "3" 1323 | event-emitter "~0.3.4" 1324 | 1325 | es6-symbol@3, es6-symbol@~3.1, es6-symbol@~3.1.0: 1326 | version "3.1.0" 1327 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.0.tgz#94481c655e7a7cad82eba832d97d5433496d7ffa" 1328 | dependencies: 1329 | d "~0.1.1" 1330 | es5-ext "~0.10.11" 1331 | 1332 | es6-weak-map@^2.0.1: 1333 | version "2.0.1" 1334 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.1.tgz#0d2bbd8827eb5fb4ba8f97fbfea50d43db21ea81" 1335 | dependencies: 1336 | d "^0.1.1" 1337 | es5-ext "^0.10.8" 1338 | es6-iterator "2" 1339 | es6-symbol "3" 1340 | 1341 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1342 | version "1.0.5" 1343 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1344 | 1345 | escope@^3.6.0: 1346 | version "3.6.0" 1347 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 1348 | dependencies: 1349 | es6-map "^0.1.3" 1350 | es6-weak-map "^2.0.1" 1351 | esrecurse "^4.1.0" 1352 | estraverse "^4.1.1" 1353 | 1354 | eslint-config-standard@^6.2.0: 1355 | version "6.2.1" 1356 | resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-6.2.1.tgz#d3a68aafc7191639e7ee441e7348739026354292" 1357 | 1358 | eslint-plugin-promise@^2.0.1: 1359 | version "2.0.1" 1360 | resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-2.0.1.tgz#a9759cefa5e38ab11bb2ef65a04ef042309aa0a4" 1361 | 1362 | eslint-plugin-standard@^2.0.1: 1363 | version "2.0.1" 1364 | resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-2.0.1.tgz#3589699ff9c917f2c25f76a916687f641c369ff3" 1365 | 1366 | eslint@^3.7.1: 1367 | version "3.12.2" 1368 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.12.2.tgz#6be5a9aa29658252abd7f91e9132bab1f26f3c34" 1369 | dependencies: 1370 | babel-code-frame "^6.16.0" 1371 | chalk "^1.1.3" 1372 | concat-stream "^1.4.6" 1373 | debug "^2.1.1" 1374 | doctrine "^1.2.2" 1375 | escope "^3.6.0" 1376 | espree "^3.3.1" 1377 | estraverse "^4.2.0" 1378 | esutils "^2.0.2" 1379 | file-entry-cache "^2.0.0" 1380 | glob "^7.0.3" 1381 | globals "^9.14.0" 1382 | ignore "^3.2.0" 1383 | imurmurhash "^0.1.4" 1384 | inquirer "^0.12.0" 1385 | is-my-json-valid "^2.10.0" 1386 | is-resolvable "^1.0.0" 1387 | js-yaml "^3.5.1" 1388 | json-stable-stringify "^1.0.0" 1389 | levn "^0.3.0" 1390 | lodash "^4.0.0" 1391 | mkdirp "^0.5.0" 1392 | natural-compare "^1.4.0" 1393 | optionator "^0.8.2" 1394 | path-is-inside "^1.0.1" 1395 | pluralize "^1.2.1" 1396 | progress "^1.1.8" 1397 | require-uncached "^1.0.2" 1398 | shelljs "^0.7.5" 1399 | strip-bom "^3.0.0" 1400 | strip-json-comments "~1.0.1" 1401 | table "^3.7.8" 1402 | text-table "~0.2.0" 1403 | user-home "^2.0.0" 1404 | 1405 | espree@^3.3.1: 1406 | version "3.3.2" 1407 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.3.2.tgz#dbf3fadeb4ecb4d4778303e50103b3d36c88b89c" 1408 | dependencies: 1409 | acorn "^4.0.1" 1410 | acorn-jsx "^3.0.0" 1411 | 1412 | esprima@^2.6.0: 1413 | version "2.7.3" 1414 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1415 | 1416 | esrecurse@^4.1.0: 1417 | version "4.1.0" 1418 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 1419 | dependencies: 1420 | estraverse "~4.1.0" 1421 | object-assign "^4.0.1" 1422 | 1423 | estraverse@^4.1.1, estraverse@^4.2.0: 1424 | version "4.2.0" 1425 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1426 | 1427 | estraverse@~4.1.0: 1428 | version "4.1.1" 1429 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 1430 | 1431 | esutils@^2.0.2: 1432 | version "2.0.2" 1433 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1434 | 1435 | event-emitter@~0.3.4: 1436 | version "0.3.4" 1437 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.4.tgz#8d63ddfb4cfe1fae3b32ca265c4c720222080bb5" 1438 | dependencies: 1439 | d "~0.1.1" 1440 | es5-ext "~0.10.7" 1441 | 1442 | exec-sh@^0.2.0: 1443 | version "0.2.0" 1444 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" 1445 | dependencies: 1446 | merge "^1.1.3" 1447 | 1448 | exit-hook@^1.0.0: 1449 | version "1.1.1" 1450 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1451 | 1452 | expand-brackets@^0.1.4: 1453 | version "0.1.5" 1454 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1455 | dependencies: 1456 | is-posix-bracket "^0.1.0" 1457 | 1458 | expand-range@^1.8.1: 1459 | version "1.8.2" 1460 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1461 | dependencies: 1462 | fill-range "^2.1.0" 1463 | 1464 | extend@^3.0.0, extend@~3.0.0: 1465 | version "3.0.0" 1466 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 1467 | 1468 | extglob@^0.3.1: 1469 | version "0.3.2" 1470 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1471 | dependencies: 1472 | is-extglob "^1.0.0" 1473 | 1474 | extsprintf@1.0.2: 1475 | version "1.0.2" 1476 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1477 | 1478 | fast-levenshtein@~2.0.4: 1479 | version "2.0.5" 1480 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.5.tgz#bd33145744519ab1c36c3ee9f31f08e9079b67f2" 1481 | 1482 | fbjs@^0.8.4: 1483 | version "0.8.6" 1484 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.6.tgz#7eb67d6986b2d5007a9b6e92e0e7cb6f75cad290" 1485 | dependencies: 1486 | core-js "^1.0.0" 1487 | isomorphic-fetch "^2.1.1" 1488 | loose-envify "^1.0.0" 1489 | object-assign "^4.1.0" 1490 | promise "^7.1.1" 1491 | ua-parser-js "^0.7.9" 1492 | 1493 | figures@^1.3.5, figures@^1.4.0: 1494 | version "1.7.0" 1495 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1496 | dependencies: 1497 | escape-string-regexp "^1.0.5" 1498 | object-assign "^4.1.0" 1499 | 1500 | file-entry-cache@^2.0.0: 1501 | version "2.0.0" 1502 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1503 | dependencies: 1504 | flat-cache "^1.2.1" 1505 | object-assign "^4.0.1" 1506 | 1507 | filename-regex@^2.0.0: 1508 | version "2.0.0" 1509 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 1510 | 1511 | fill-range@^2.1.0: 1512 | version "2.2.3" 1513 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1514 | dependencies: 1515 | is-number "^2.1.0" 1516 | isobject "^2.0.0" 1517 | randomatic "^1.1.3" 1518 | repeat-element "^1.1.2" 1519 | repeat-string "^1.5.2" 1520 | 1521 | find-cache-dir@^0.1.1: 1522 | version "0.1.1" 1523 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" 1524 | dependencies: 1525 | commondir "^1.0.1" 1526 | mkdirp "^0.5.1" 1527 | pkg-dir "^1.0.0" 1528 | 1529 | find-up@^1.0.0, find-up@^1.1.2: 1530 | version "1.1.2" 1531 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1532 | dependencies: 1533 | path-exists "^2.0.0" 1534 | pinkie-promise "^2.0.0" 1535 | 1536 | flat-cache@^1.2.1: 1537 | version "1.2.1" 1538 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.1.tgz#6c837d6225a7de5659323740b36d5361f71691ff" 1539 | dependencies: 1540 | circular-json "^0.3.0" 1541 | del "^2.0.2" 1542 | graceful-fs "^4.1.2" 1543 | write "^0.2.1" 1544 | 1545 | for-each@~0.3.2: 1546 | version "0.3.2" 1547 | resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.2.tgz#2c40450b9348e97f281322593ba96704b9abd4d4" 1548 | dependencies: 1549 | is-function "~1.0.0" 1550 | 1551 | for-in@^0.1.5: 1552 | version "0.1.6" 1553 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.6.tgz#c9f96e89bfad18a545af5ec3ed352a1d9e5b4dc8" 1554 | 1555 | for-own@^0.1.4: 1556 | version "0.1.4" 1557 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.4.tgz#0149b41a39088c7515f51ebe1c1386d45f935072" 1558 | dependencies: 1559 | for-in "^0.1.5" 1560 | 1561 | foreach@^2.0.5: 1562 | version "2.0.5" 1563 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1564 | 1565 | foreground-child@^1.3.3, foreground-child@^1.5.3: 1566 | version "1.5.3" 1567 | resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-1.5.3.tgz#94dd6aba671389867de8e57e99f1c2ecfb15c01a" 1568 | dependencies: 1569 | cross-spawn "^4" 1570 | signal-exit "^3.0.0" 1571 | 1572 | forever-agent@~0.6.1: 1573 | version "0.6.1" 1574 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1575 | 1576 | form-data@~2.0.0: 1577 | version "2.0.0" 1578 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.0.0.tgz#6f0aebadcc5da16c13e1ecc11137d85f9b883b25" 1579 | dependencies: 1580 | asynckit "^0.4.0" 1581 | combined-stream "^1.0.5" 1582 | mime-types "^2.1.11" 1583 | 1584 | form-data@~2.1.1: 1585 | version "2.1.2" 1586 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 1587 | dependencies: 1588 | asynckit "^0.4.0" 1589 | combined-stream "^1.0.5" 1590 | mime-types "^2.1.12" 1591 | 1592 | fs-readdir-recursive@^1.0.0: 1593 | version "1.0.0" 1594 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1595 | 1596 | fs.realpath@^1.0.0: 1597 | version "1.0.0" 1598 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1599 | 1600 | fsevents@^1.0.0: 1601 | version "1.0.15" 1602 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.0.15.tgz#fa63f590f3c2ad91275e4972a6cea545fb0aae44" 1603 | dependencies: 1604 | nan "^2.3.0" 1605 | node-pre-gyp "^0.6.29" 1606 | 1607 | fstream-ignore@~1.0.5: 1608 | version "1.0.5" 1609 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1610 | dependencies: 1611 | fstream "^1.0.0" 1612 | inherits "2" 1613 | minimatch "^3.0.0" 1614 | 1615 | fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.10: 1616 | version "1.0.10" 1617 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.10.tgz#604e8a92fe26ffd9f6fae30399d4984e1ab22822" 1618 | dependencies: 1619 | graceful-fs "^4.1.2" 1620 | inherits "~2.0.0" 1621 | mkdirp ">=0.5 0" 1622 | rimraf "2" 1623 | 1624 | function-bind@^1.0.2, function-bind@^1.1.0, function-bind@~1.1.0: 1625 | version "1.1.0" 1626 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 1627 | 1628 | gauge@~2.7.1: 1629 | version "2.7.2" 1630 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.2.tgz#15cecc31b02d05345a5d6b0e171cdb3ad2307774" 1631 | dependencies: 1632 | aproba "^1.0.3" 1633 | console-control-strings "^1.0.0" 1634 | has-unicode "^2.0.0" 1635 | object-assign "^4.1.0" 1636 | signal-exit "^3.0.0" 1637 | string-width "^1.0.1" 1638 | strip-ansi "^3.0.1" 1639 | supports-color "^0.2.0" 1640 | wide-align "^1.1.0" 1641 | 1642 | generate-function@^2.0.0: 1643 | version "2.0.0" 1644 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1645 | 1646 | generate-object-property@^1.1.0: 1647 | version "1.2.0" 1648 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1649 | dependencies: 1650 | is-property "^1.0.0" 1651 | 1652 | get-caller-file@^1.0.1: 1653 | version "1.0.2" 1654 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1655 | 1656 | getpass@^0.1.1: 1657 | version "0.1.6" 1658 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 1659 | dependencies: 1660 | assert-plus "^1.0.0" 1661 | 1662 | glob-base@^0.3.0: 1663 | version "0.3.0" 1664 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1665 | dependencies: 1666 | glob-parent "^2.0.0" 1667 | is-glob "^2.0.0" 1668 | 1669 | glob-parent@^2.0.0: 1670 | version "2.0.0" 1671 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1672 | dependencies: 1673 | is-glob "^2.0.0" 1674 | 1675 | glob@^5.0.5: 1676 | version "5.0.15" 1677 | resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" 1678 | dependencies: 1679 | inflight "^1.0.4" 1680 | inherits "2" 1681 | minimatch "2 || 3" 1682 | once "^1.3.0" 1683 | path-is-absolute "^1.0.0" 1684 | 1685 | glob@^6.0.0, glob@^6.0.1: 1686 | version "6.0.4" 1687 | resolved "https://registry.yarnpkg.com/glob/-/glob-6.0.4.tgz#0f08860f6a155127b2fadd4f9ce24b1aab6e4d22" 1688 | dependencies: 1689 | inflight "^1.0.4" 1690 | inherits "2" 1691 | minimatch "2 || 3" 1692 | once "^1.3.0" 1693 | path-is-absolute "^1.0.0" 1694 | 1695 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.0.6, glob@~7.1.1: 1696 | version "7.1.1" 1697 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1698 | dependencies: 1699 | fs.realpath "^1.0.0" 1700 | inflight "^1.0.4" 1701 | inherits "2" 1702 | minimatch "^3.0.2" 1703 | once "^1.3.0" 1704 | path-is-absolute "^1.0.0" 1705 | 1706 | globals@^9.0.0, globals@^9.14.0: 1707 | version "9.14.0" 1708 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.14.0.tgz#8859936af0038741263053b39d0e76ca241e4034" 1709 | 1710 | globby@^4.0.0: 1711 | version "4.1.0" 1712 | resolved "https://registry.yarnpkg.com/globby/-/globby-4.1.0.tgz#080f54549ec1b82a6c60e631fc82e1211dbe95f8" 1713 | dependencies: 1714 | array-union "^1.0.1" 1715 | arrify "^1.0.0" 1716 | glob "^6.0.1" 1717 | object-assign "^4.0.1" 1718 | pify "^2.0.0" 1719 | pinkie-promise "^2.0.0" 1720 | 1721 | globby@^5.0.0: 1722 | version "5.0.0" 1723 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1724 | dependencies: 1725 | array-union "^1.0.1" 1726 | arrify "^1.0.0" 1727 | glob "^7.0.3" 1728 | object-assign "^4.0.1" 1729 | pify "^2.0.0" 1730 | pinkie-promise "^2.0.0" 1731 | 1732 | graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1733 | version "4.1.11" 1734 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1735 | 1736 | "graceful-readlink@>= 1.0.0": 1737 | version "1.0.1" 1738 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1739 | 1740 | handlebars@^4.0.3: 1741 | version "4.0.6" 1742 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.6.tgz#2ce4484850537f9c97a8026d5399b935c4ed4ed7" 1743 | dependencies: 1744 | async "^1.4.0" 1745 | optimist "^0.6.1" 1746 | source-map "^0.4.4" 1747 | optionalDependencies: 1748 | uglify-js "^2.6" 1749 | 1750 | har-validator@~2.0.6: 1751 | version "2.0.6" 1752 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 1753 | dependencies: 1754 | chalk "^1.1.1" 1755 | commander "^2.9.0" 1756 | is-my-json-valid "^2.12.4" 1757 | pinkie-promise "^2.0.0" 1758 | 1759 | has-ansi@^2.0.0: 1760 | version "2.0.0" 1761 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1762 | dependencies: 1763 | ansi-regex "^2.0.0" 1764 | 1765 | has-flag@^1.0.0: 1766 | version "1.0.0" 1767 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1768 | 1769 | has-unicode@^2.0.0: 1770 | version "2.0.1" 1771 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1772 | 1773 | has@^1.0.1, has@~1.0.1: 1774 | version "1.0.1" 1775 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1776 | dependencies: 1777 | function-bind "^1.0.2" 1778 | 1779 | hawk@~3.1.3: 1780 | version "3.1.3" 1781 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1782 | dependencies: 1783 | boom "2.x.x" 1784 | cryptiles "2.x.x" 1785 | hoek "2.x.x" 1786 | sntp "1.x.x" 1787 | 1788 | hoek@2.x.x: 1789 | version "2.16.3" 1790 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1791 | 1792 | hoist-non-react-statics@^1.0.3, hoist-non-react-statics@^1.0.5: 1793 | version "1.2.0" 1794 | resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-1.2.0.tgz#aa448cf0986d55cc40773b17174b7dd066cb7cfb" 1795 | 1796 | home-or-tmp@^2.0.0: 1797 | version "2.0.0" 1798 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1799 | dependencies: 1800 | os-homedir "^1.0.0" 1801 | os-tmpdir "^1.0.1" 1802 | 1803 | hosted-git-info@^2.1.4: 1804 | version "2.1.5" 1805 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.1.5.tgz#0ba81d90da2e25ab34a332e6ec77936e1598118b" 1806 | 1807 | htmlparser2@~3.7.1: 1808 | version "3.7.3" 1809 | resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.7.3.tgz#6a64c77637c08c6f30ec2a8157a53333be7cb05e" 1810 | dependencies: 1811 | domelementtype "1" 1812 | domhandler "2.2" 1813 | domutils "1.5" 1814 | entities "1.0" 1815 | readable-stream "1.1" 1816 | 1817 | http-signature@~1.1.0: 1818 | version "1.1.1" 1819 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1820 | dependencies: 1821 | assert-plus "^0.2.0" 1822 | jsprim "^1.2.2" 1823 | sshpk "^1.7.0" 1824 | 1825 | iconv-lite@~0.4.13: 1826 | version "0.4.15" 1827 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.15.tgz#fe265a218ac6a57cfe854927e9d04c19825eddeb" 1828 | 1829 | ignore@^3.2.0: 1830 | version "3.2.0" 1831 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.2.0.tgz#8d88f03c3002a0ac52114db25d2c673b0bf1e435" 1832 | 1833 | imurmurhash@^0.1.4: 1834 | version "0.1.4" 1835 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1836 | 1837 | inflight@^1.0.4: 1838 | version "1.0.6" 1839 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1840 | dependencies: 1841 | once "^1.3.0" 1842 | wrappy "1" 1843 | 1844 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 1845 | version "2.0.3" 1846 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1847 | 1848 | ini@~1.3.0: 1849 | version "1.3.4" 1850 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1851 | 1852 | inquirer@^0.12.0: 1853 | version "0.12.0" 1854 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 1855 | dependencies: 1856 | ansi-escapes "^1.1.0" 1857 | ansi-regex "^2.0.0" 1858 | chalk "^1.0.0" 1859 | cli-cursor "^1.0.1" 1860 | cli-width "^2.0.0" 1861 | figures "^1.3.5" 1862 | lodash "^4.3.0" 1863 | readline2 "^1.0.1" 1864 | run-async "^0.1.0" 1865 | rx-lite "^3.1.2" 1866 | string-width "^1.0.1" 1867 | strip-ansi "^3.0.0" 1868 | through "^2.3.6" 1869 | 1870 | interpret@^1.0.0: 1871 | version "1.0.1" 1872 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.1.tgz#d579fb7f693b858004947af39fa0db49f795602c" 1873 | 1874 | invariant@^2.0.0, invariant@^2.2.0, invariant@^2.2.1: 1875 | version "2.2.2" 1876 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1877 | dependencies: 1878 | loose-envify "^1.0.0" 1879 | 1880 | invert-kv@^1.0.0: 1881 | version "1.0.0" 1882 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1883 | 1884 | irregular-plurals@^1.0.0: 1885 | version "1.2.0" 1886 | resolved "https://registry.yarnpkg.com/irregular-plurals/-/irregular-plurals-1.2.0.tgz#38f299834ba8c00c30be9c554e137269752ff3ac" 1887 | 1888 | is-alphabetical@^1.0.0: 1889 | version "1.0.0" 1890 | resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-1.0.0.tgz#e2544c13058255f2144cb757066cd3342a1c8c46" 1891 | 1892 | is-alphanumerical@^1.0.0: 1893 | version "1.0.0" 1894 | resolved "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-1.0.0.tgz#e06492e719c1bf15dec239e4f1af5f67b4d6e7bf" 1895 | dependencies: 1896 | is-alphabetical "^1.0.0" 1897 | is-decimal "^1.0.0" 1898 | 1899 | is-arrayish@^0.2.1: 1900 | version "0.2.1" 1901 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1902 | 1903 | is-binary-path@^1.0.0: 1904 | version "1.0.1" 1905 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1906 | dependencies: 1907 | binary-extensions "^1.0.0" 1908 | 1909 | is-buffer@^1.0.2: 1910 | version "1.1.4" 1911 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b" 1912 | 1913 | is-builtin-module@^1.0.0: 1914 | version "1.0.0" 1915 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1916 | dependencies: 1917 | builtin-modules "^1.0.0" 1918 | 1919 | is-callable@^1.1.1, is-callable@^1.1.3: 1920 | version "1.1.3" 1921 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 1922 | 1923 | is-date-object@^1.0.1: 1924 | version "1.0.1" 1925 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1926 | 1927 | is-decimal@^1.0.0: 1928 | version "1.0.0" 1929 | resolved "https://registry.yarnpkg.com/is-decimal/-/is-decimal-1.0.0.tgz#940579b6ea63c628080a69e62bda88c8470b4fe0" 1930 | 1931 | is-dotfile@^1.0.0: 1932 | version "1.0.2" 1933 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1934 | 1935 | is-equal-shallow@^0.1.3: 1936 | version "0.1.3" 1937 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1938 | dependencies: 1939 | is-primitive "^2.0.0" 1940 | 1941 | is-extendable@^0.1.1: 1942 | version "0.1.1" 1943 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1944 | 1945 | is-extglob@^1.0.0: 1946 | version "1.0.0" 1947 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1948 | 1949 | is-finite@^1.0.0, is-finite@^1.0.1: 1950 | version "1.0.2" 1951 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1952 | dependencies: 1953 | number-is-nan "^1.0.0" 1954 | 1955 | is-fullwidth-code-point@^1.0.0: 1956 | version "1.0.0" 1957 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1958 | dependencies: 1959 | number-is-nan "^1.0.0" 1960 | 1961 | is-fullwidth-code-point@^2.0.0: 1962 | version "2.0.0" 1963 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1964 | 1965 | is-function@~1.0.0: 1966 | version "1.0.1" 1967 | resolved "https://registry.yarnpkg.com/is-function/-/is-function-1.0.1.tgz#12cfb98b65b57dd3d193a3121f5f6e2f437602b5" 1968 | 1969 | is-glob@^2.0.0, is-glob@^2.0.1: 1970 | version "2.0.1" 1971 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1972 | dependencies: 1973 | is-extglob "^1.0.0" 1974 | 1975 | is-hexadecimal@^1.0.0: 1976 | version "1.0.0" 1977 | resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-1.0.0.tgz#5c459771d2af9a2e3952781fd54fcb1bcfe4113c" 1978 | 1979 | is-my-json-valid@^2.10.0, is-my-json-valid@^2.12.4: 1980 | version "2.15.0" 1981 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b" 1982 | dependencies: 1983 | generate-function "^2.0.0" 1984 | generate-object-property "^1.1.0" 1985 | jsonpointer "^4.0.0" 1986 | xtend "^4.0.0" 1987 | 1988 | is-number@^2.0.2, is-number@^2.1.0: 1989 | version "2.1.0" 1990 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1991 | dependencies: 1992 | kind-of "^3.0.2" 1993 | 1994 | is-path-cwd@^1.0.0: 1995 | version "1.0.0" 1996 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1997 | 1998 | is-path-in-cwd@^1.0.0: 1999 | version "1.0.0" 2000 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 2001 | dependencies: 2002 | is-path-inside "^1.0.0" 2003 | 2004 | is-path-inside@^1.0.0: 2005 | version "1.0.0" 2006 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 2007 | dependencies: 2008 | path-is-inside "^1.0.1" 2009 | 2010 | is-posix-bracket@^0.1.0: 2011 | version "0.1.1" 2012 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2013 | 2014 | is-primitive@^2.0.0: 2015 | version "2.0.0" 2016 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2017 | 2018 | is-promise@^2.1.0: 2019 | version "2.1.0" 2020 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 2021 | 2022 | is-property@^1.0.0: 2023 | version "1.0.2" 2024 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 2025 | 2026 | is-regex@^1.0.3: 2027 | version "1.0.3" 2028 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.3.tgz#0d55182bddf9f2fde278220aec3a75642c908637" 2029 | 2030 | is-relative@^0.2.1: 2031 | version "0.2.1" 2032 | resolved "https://registry.yarnpkg.com/is-relative/-/is-relative-0.2.1.tgz#d27f4c7d516d175fb610db84bbeef23c3bc97aa5" 2033 | dependencies: 2034 | is-unc-path "^0.1.1" 2035 | 2036 | is-resolvable@^1.0.0: 2037 | version "1.0.0" 2038 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 2039 | dependencies: 2040 | tryit "^1.0.1" 2041 | 2042 | is-stream@^1.0.1: 2043 | version "1.1.0" 2044 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2045 | 2046 | is-symbol@^1.0.1: 2047 | version "1.0.1" 2048 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 2049 | 2050 | is-typedarray@~1.0.0: 2051 | version "1.0.0" 2052 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2053 | 2054 | is-unc-path@^0.1.1: 2055 | version "0.1.2" 2056 | resolved "https://registry.yarnpkg.com/is-unc-path/-/is-unc-path-0.1.2.tgz#6ab053a72573c10250ff416a3814c35178af39b9" 2057 | dependencies: 2058 | unc-path-regex "^0.1.0" 2059 | 2060 | is-utf8@^0.2.0: 2061 | version "0.2.1" 2062 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 2063 | 2064 | isarray@0.0.1: 2065 | version "0.0.1" 2066 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 2067 | 2068 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2069 | version "1.0.0" 2070 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2071 | 2072 | isexe@^1.1.1: 2073 | version "1.1.2" 2074 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-1.1.2.tgz#36f3e22e60750920f5e7241a476a8c6a42275ad0" 2075 | 2076 | isobject@^2.0.0: 2077 | version "2.1.0" 2078 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2079 | dependencies: 2080 | isarray "1.0.0" 2081 | 2082 | isomorphic-fetch@^2.1.1: 2083 | version "2.2.1" 2084 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" 2085 | dependencies: 2086 | node-fetch "^1.0.1" 2087 | whatwg-fetch ">=0.10.0" 2088 | 2089 | isstream@~0.1.2: 2090 | version "0.1.2" 2091 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2092 | 2093 | istanbul-lib-coverage@^1.0.0, istanbul-lib-coverage@^1.0.0-alpha, istanbul-lib-coverage@^1.0.0-alpha.0: 2094 | version "1.0.0" 2095 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.0.0.tgz#c3f9b6d226da12424064cce87fce0fb57fdfa7a2" 2096 | 2097 | istanbul-lib-hook@^1.0.0-alpha.4: 2098 | version "1.0.0-alpha.4" 2099 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.0-alpha.4.tgz#8c5bb9f6fbd8526e0ae6cf639af28266906b938f" 2100 | dependencies: 2101 | append-transform "^0.3.0" 2102 | 2103 | istanbul-lib-instrument@^1.2.0: 2104 | version "1.3.0" 2105 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.3.0.tgz#19f0a973397454989b98330333063a5b56df0e58" 2106 | dependencies: 2107 | babel-generator "^6.18.0" 2108 | babel-template "^6.16.0" 2109 | babel-traverse "^6.18.0" 2110 | babel-types "^6.18.0" 2111 | babylon "^6.13.0" 2112 | istanbul-lib-coverage "^1.0.0" 2113 | semver "^5.3.0" 2114 | 2115 | istanbul-lib-report@^1.0.0-alpha.3: 2116 | version "1.0.0-alpha.3" 2117 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.0.0-alpha.3.tgz#32d5f6ec7f33ca3a602209e278b2e6ff143498af" 2118 | dependencies: 2119 | async "^1.4.2" 2120 | istanbul-lib-coverage "^1.0.0-alpha" 2121 | mkdirp "^0.5.1" 2122 | path-parse "^1.0.5" 2123 | rimraf "^2.4.3" 2124 | supports-color "^3.1.2" 2125 | 2126 | istanbul-lib-source-maps@^1.0.2: 2127 | version "1.1.0" 2128 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.1.0.tgz#9d429218f35b823560ea300a96ff0c3bbdab785f" 2129 | dependencies: 2130 | istanbul-lib-coverage "^1.0.0-alpha.0" 2131 | mkdirp "^0.5.1" 2132 | rimraf "^2.4.4" 2133 | source-map "^0.5.3" 2134 | 2135 | istanbul-reports@^1.0.0: 2136 | version "1.0.0" 2137 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.0.0.tgz#24b4eb2b1d29d50f103b369bd422f6e640aa0777" 2138 | dependencies: 2139 | handlebars "^4.0.3" 2140 | 2141 | jju@^1.1.0: 2142 | version "1.3.0" 2143 | resolved "https://registry.yarnpkg.com/jju/-/jju-1.3.0.tgz#dadd9ef01924bc728b03f2f7979bdbd62f7a2aaa" 2144 | 2145 | jodid25519@^1.0.0: 2146 | version "1.0.2" 2147 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 2148 | dependencies: 2149 | jsbn "~0.1.0" 2150 | 2151 | js-tokens@^2.0.0: 2152 | version "2.0.0" 2153 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-2.0.0.tgz#79903f5563ee778cc1162e6dcf1a0027c97f9cb5" 2154 | 2155 | js-yaml@3.6.1: 2156 | version "3.6.1" 2157 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.6.1.tgz#6e5fe67d8b205ce4d22fad05b7781e8dadcc4b30" 2158 | dependencies: 2159 | argparse "^1.0.7" 2160 | esprima "^2.6.0" 2161 | 2162 | js-yaml@^3.5.1: 2163 | version "3.7.0" 2164 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80" 2165 | dependencies: 2166 | argparse "^1.0.7" 2167 | esprima "^2.6.0" 2168 | 2169 | jsbn@~0.1.0: 2170 | version "0.1.0" 2171 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.0.tgz#650987da0dd74f4ebf5a11377a2aa2d273e97dfd" 2172 | 2173 | jsesc@^1.3.0: 2174 | version "1.3.0" 2175 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2176 | 2177 | jsesc@~0.5.0: 2178 | version "0.5.0" 2179 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2180 | 2181 | json-parse-helpfulerror@^1.0.2: 2182 | version "1.0.3" 2183 | resolved "https://registry.yarnpkg.com/json-parse-helpfulerror/-/json-parse-helpfulerror-1.0.3.tgz#13f14ce02eed4e981297b64eb9e3b932e2dd13dc" 2184 | dependencies: 2185 | jju "^1.1.0" 2186 | 2187 | json-schema@0.2.3: 2188 | version "0.2.3" 2189 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2190 | 2191 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 2192 | version "1.0.1" 2193 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2194 | dependencies: 2195 | jsonify "~0.0.0" 2196 | 2197 | json-stringify-safe@~5.0.1: 2198 | version "5.0.1" 2199 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2200 | 2201 | json5@^0.5.0: 2202 | version "0.5.1" 2203 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2204 | 2205 | jsonify@~0.0.0: 2206 | version "0.0.0" 2207 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2208 | 2209 | jsonpointer@^4.0.0: 2210 | version "4.0.0" 2211 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.0.tgz#6661e161d2fc445f19f98430231343722e1fcbd5" 2212 | 2213 | jsprim@^1.2.2: 2214 | version "1.3.1" 2215 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252" 2216 | dependencies: 2217 | extsprintf "1.0.2" 2218 | json-schema "0.2.3" 2219 | verror "1.3.6" 2220 | 2221 | kind-of@^3.0.2: 2222 | version "3.1.0" 2223 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" 2224 | dependencies: 2225 | is-buffer "^1.0.2" 2226 | 2227 | lazy-cache@^1.0.3: 2228 | version "1.0.4" 2229 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2230 | 2231 | lcid@^1.0.0: 2232 | version "1.0.0" 2233 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2234 | dependencies: 2235 | invert-kv "^1.0.0" 2236 | 2237 | lcov-parse@0.0.10: 2238 | version "0.0.10" 2239 | resolved "https://registry.yarnpkg.com/lcov-parse/-/lcov-parse-0.0.10.tgz#1b0b8ff9ac9c7889250582b70b71315d9da6d9a3" 2240 | 2241 | levn@^0.3.0, levn@~0.3.0: 2242 | version "0.3.0" 2243 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2244 | dependencies: 2245 | prelude-ls "~1.1.2" 2246 | type-check "~0.3.2" 2247 | 2248 | load-json-file@^1.0.0: 2249 | version "1.1.0" 2250 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2251 | dependencies: 2252 | graceful-fs "^4.1.2" 2253 | parse-json "^2.2.0" 2254 | pify "^2.0.0" 2255 | pinkie-promise "^2.0.0" 2256 | strip-bom "^2.0.0" 2257 | 2258 | lodash-es@^4.16.6, lodash-es@^4.2.1: 2259 | version "4.17.2" 2260 | resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.2.tgz#59011b585166e613eb9dd5fc256b2cd1a30f3712" 2261 | 2262 | lodash._getnative@^3.0.0: 2263 | version "3.9.1" 2264 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 2265 | 2266 | lodash.isarguments@^3.0.0: 2267 | version "3.1.0" 2268 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 2269 | 2270 | lodash.isarray@^3.0.0: 2271 | version "3.0.4" 2272 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 2273 | 2274 | lodash.keys@^3.1.2: 2275 | version "3.1.2" 2276 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 2277 | dependencies: 2278 | lodash._getnative "^3.0.0" 2279 | lodash.isarguments "^3.0.0" 2280 | lodash.isarray "^3.0.0" 2281 | 2282 | lodash.pickby@^4.6.0: 2283 | version "4.6.0" 2284 | resolved "https://registry.yarnpkg.com/lodash.pickby/-/lodash.pickby-4.6.0.tgz#7dea21d8c18d7703a27c704c15d3b84a67e33aff" 2285 | 2286 | lodash@^3.6.0: 2287 | version "3.10.1" 2288 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6" 2289 | 2290 | lodash@^4.0.0, lodash@^4.16.6, lodash@^4.2.0, lodash@^4.2.1, lodash@^4.3.0: 2291 | version "4.17.2" 2292 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.2.tgz#34a3055babe04ce42467b607d700072c7ff6bf42" 2293 | 2294 | log-driver@1.2.5: 2295 | version "1.2.5" 2296 | resolved "https://registry.yarnpkg.com/log-driver/-/log-driver-1.2.5.tgz#7ae4ec257302fd790d557cb10c97100d857b0056" 2297 | 2298 | log-symbols@^1.0.2: 2299 | version "1.0.2" 2300 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" 2301 | dependencies: 2302 | chalk "^1.0.0" 2303 | 2304 | log-update@^1.0.1: 2305 | version "1.0.2" 2306 | resolved "https://registry.yarnpkg.com/log-update/-/log-update-1.0.2.tgz#19929f64c4093d2d2e7075a1dad8af59c296b8d1" 2307 | dependencies: 2308 | ansi-escapes "^1.0.0" 2309 | cli-cursor "^1.0.2" 2310 | 2311 | longest-streak@^1.0.0: 2312 | version "1.0.0" 2313 | resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-1.0.0.tgz#d06597c4d4c31b52ccb1f5d8f8fe7148eafd6965" 2314 | 2315 | longest@^1.0.1: 2316 | version "1.0.1" 2317 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2318 | 2319 | loose-envify@^1.0.0, loose-envify@^1.1.0: 2320 | version "1.3.0" 2321 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.0.tgz#6b26248c42f6d4fa4b0d8542f78edfcde35642a8" 2322 | dependencies: 2323 | js-tokens "^2.0.0" 2324 | 2325 | lru-cache@^4.0.1: 2326 | version "4.0.2" 2327 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.2.tgz#1d17679c069cda5d040991a09dbc2c0db377e55e" 2328 | dependencies: 2329 | pseudomap "^1.0.1" 2330 | yallist "^2.0.0" 2331 | 2332 | markdown-table@^0.4.0: 2333 | version "0.4.0" 2334 | resolved "https://registry.yarnpkg.com/markdown-table/-/markdown-table-0.4.0.tgz#890c2c1b3bfe83fb00e4129b8e4cfe645270f9d1" 2335 | 2336 | markdown-to-ast@~3.2.3: 2337 | version "3.2.3" 2338 | resolved "https://registry.yarnpkg.com/markdown-to-ast/-/markdown-to-ast-3.2.3.tgz#b4034e181e637233286f9fef19a472b76b72911b" 2339 | dependencies: 2340 | debug "^2.1.3" 2341 | remark "^4.1.1" 2342 | structured-source "^3.0.2" 2343 | traverse "^0.6.6" 2344 | 2345 | md5-hex@^1.2.0: 2346 | version "1.3.0" 2347 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-1.3.0.tgz#d2c4afe983c4370662179b8cad145219135046c4" 2348 | dependencies: 2349 | md5-o-matic "^0.1.1" 2350 | 2351 | md5-o-matic@^0.1.1: 2352 | version "0.1.1" 2353 | resolved "https://registry.yarnpkg.com/md5-o-matic/-/md5-o-matic-0.1.1.tgz#822bccd65e117c514fab176b25945d54100a03c3" 2354 | 2355 | merge@^1.1.3: 2356 | version "1.2.0" 2357 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 2358 | 2359 | micromatch@^2.1.5, micromatch@^2.3.11: 2360 | version "2.3.11" 2361 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2362 | dependencies: 2363 | arr-diff "^2.0.0" 2364 | array-unique "^0.2.1" 2365 | braces "^1.8.2" 2366 | expand-brackets "^0.1.4" 2367 | extglob "^0.3.1" 2368 | filename-regex "^2.0.0" 2369 | is-extglob "^1.0.0" 2370 | is-glob "^2.0.1" 2371 | kind-of "^3.0.2" 2372 | normalize-path "^2.0.1" 2373 | object.omit "^2.0.0" 2374 | parse-glob "^3.0.4" 2375 | regex-cache "^0.4.2" 2376 | 2377 | mime-db@~1.25.0: 2378 | version "1.25.0" 2379 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.25.0.tgz#c18dbd7c73a5dbf6f44a024dc0d165a1e7b1c392" 2380 | 2381 | mime-types@^2.1.11, mime-types@^2.1.12, mime-types@~2.1.7: 2382 | version "2.1.13" 2383 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.13.tgz#e07aaa9c6c6b9a7ca3012c69003ad25a39e92a88" 2384 | dependencies: 2385 | mime-db "~1.25.0" 2386 | 2387 | "minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2: 2388 | version "3.0.3" 2389 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 2390 | dependencies: 2391 | brace-expansion "^1.0.0" 2392 | 2393 | minimist@0.0.8, minimist@~0.0.1: 2394 | version "0.0.8" 2395 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2396 | 2397 | minimist@1.2.0, minimist@^1.2.0, minimist@~1.2.0: 2398 | version "1.2.0" 2399 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2400 | 2401 | minimist@~1.1.0: 2402 | version "1.1.3" 2403 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.1.3.tgz#3bedfd91a92d39016fcfaa1c681e8faa1a1efda8" 2404 | 2405 | "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.1: 2406 | version "0.5.1" 2407 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2408 | dependencies: 2409 | minimist "0.0.8" 2410 | 2411 | ms@0.7.1: 2412 | version "0.7.1" 2413 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 2414 | 2415 | ms@0.7.2: 2416 | version "0.7.2" 2417 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 2418 | 2419 | mute-stream@0.0.5: 2420 | version "0.0.5" 2421 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 2422 | 2423 | nan@^2.3.0: 2424 | version "2.4.0" 2425 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.4.0.tgz#fb3c59d45fe4effe215f0b890f8adf6eb32d2232" 2426 | 2427 | natural-compare@^1.4.0: 2428 | version "1.4.0" 2429 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2430 | 2431 | node-fetch@^1.0.1: 2432 | version "1.6.3" 2433 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.6.3.tgz#dc234edd6489982d58e8f0db4f695029abcd8c04" 2434 | dependencies: 2435 | encoding "^0.1.11" 2436 | is-stream "^1.0.1" 2437 | 2438 | node-pre-gyp@^0.6.29: 2439 | version "0.6.32" 2440 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.32.tgz#fc452b376e7319b3d255f5f34853ef6fd8fe1fd5" 2441 | dependencies: 2442 | mkdirp "~0.5.1" 2443 | nopt "~3.0.6" 2444 | npmlog "^4.0.1" 2445 | rc "~1.1.6" 2446 | request "^2.79.0" 2447 | rimraf "~2.5.4" 2448 | semver "~5.3.0" 2449 | tar "~2.2.1" 2450 | tar-pack "~3.3.0" 2451 | 2452 | node-uuid@~1.4.7: 2453 | version "1.4.7" 2454 | resolved "https://registry.yarnpkg.com/node-uuid/-/node-uuid-1.4.7.tgz#6da5a17668c4b3dd59623bda11cf7fa4c1f60a6f" 2455 | 2456 | nopt@~3.0.6: 2457 | version "3.0.6" 2458 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 2459 | dependencies: 2460 | abbrev "1" 2461 | 2462 | normalize-package-data@^2.0.0, normalize-package-data@^2.3.2: 2463 | version "2.3.5" 2464 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.5.tgz#8d924f142960e1777e7ffe170543631cc7cb02df" 2465 | dependencies: 2466 | hosted-git-info "^2.1.4" 2467 | is-builtin-module "^1.0.0" 2468 | semver "2 || 3 || 4 || 5" 2469 | validate-npm-package-license "^3.0.1" 2470 | 2471 | normalize-path@^2.0.1: 2472 | version "2.0.1" 2473 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" 2474 | 2475 | npm-prefix@^1.0.1: 2476 | version "1.2.0" 2477 | resolved "https://registry.yarnpkg.com/npm-prefix/-/npm-prefix-1.2.0.tgz#e619455f7074ba54cc66d6d0d37dd9f1be6bcbc0" 2478 | dependencies: 2479 | rc "^1.1.0" 2480 | shellsubstitute "^1.1.0" 2481 | untildify "^2.1.0" 2482 | 2483 | npmlog@^4.0.1: 2484 | version "4.0.2" 2485 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f" 2486 | dependencies: 2487 | are-we-there-yet "~1.1.2" 2488 | console-control-strings "~1.1.0" 2489 | gauge "~2.7.1" 2490 | set-blocking "~2.0.0" 2491 | 2492 | number-is-nan@^1.0.0: 2493 | version "1.0.1" 2494 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2495 | 2496 | nyc@^8.3.0: 2497 | version "8.4.0" 2498 | resolved "https://registry.yarnpkg.com/nyc/-/nyc-8.4.0.tgz#660371c807caef0427fb9b0948f74180624ea6e4" 2499 | dependencies: 2500 | archy "^1.0.0" 2501 | arrify "^1.0.1" 2502 | caching-transform "^1.0.0" 2503 | convert-source-map "^1.3.0" 2504 | default-require-extensions "^1.0.0" 2505 | find-cache-dir "^0.1.1" 2506 | find-up "^1.1.2" 2507 | foreground-child "^1.5.3" 2508 | glob "^7.0.6" 2509 | istanbul-lib-coverage "^1.0.0" 2510 | istanbul-lib-hook "^1.0.0-alpha.4" 2511 | istanbul-lib-instrument "^1.2.0" 2512 | istanbul-lib-report "^1.0.0-alpha.3" 2513 | istanbul-lib-source-maps "^1.0.2" 2514 | istanbul-reports "^1.0.0" 2515 | md5-hex "^1.2.0" 2516 | micromatch "^2.3.11" 2517 | mkdirp "^0.5.0" 2518 | resolve-from "^2.0.0" 2519 | rimraf "^2.5.4" 2520 | signal-exit "^3.0.1" 2521 | spawn-wrap "^1.2.4" 2522 | test-exclude "^2.1.3" 2523 | yargs "^6.0.0" 2524 | yargs-parser "^4.0.2" 2525 | 2526 | oauth-sign@~0.8.1: 2527 | version "0.8.2" 2528 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2529 | 2530 | object-assign@^4.0.1, object-assign@^4.1.0: 2531 | version "4.1.0" 2532 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0" 2533 | 2534 | object-inspect@~1.2.1: 2535 | version "1.2.1" 2536 | resolved "http://registry.npmjs.org/object-inspect/-/object-inspect-1.2.1.tgz#3b62226eb8f6d441751c7d8f22a20ff80ac9dc3f" 2537 | 2538 | object-keys@^1.0.8: 2539 | version "1.0.11" 2540 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 2541 | 2542 | object.omit@^2.0.0: 2543 | version "2.0.1" 2544 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2545 | dependencies: 2546 | for-own "^0.1.4" 2547 | is-extendable "^0.1.1" 2548 | 2549 | once@^1.3.0: 2550 | version "1.4.0" 2551 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2552 | dependencies: 2553 | wrappy "1" 2554 | 2555 | once@~1.3.3: 2556 | version "1.3.3" 2557 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 2558 | dependencies: 2559 | wrappy "1" 2560 | 2561 | onetime@^1.0.0: 2562 | version "1.1.0" 2563 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2564 | 2565 | optimist@^0.6.1: 2566 | version "0.6.1" 2567 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2568 | dependencies: 2569 | minimist "~0.0.1" 2570 | wordwrap "~0.0.2" 2571 | 2572 | optionator@^0.8.2: 2573 | version "0.8.2" 2574 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2575 | dependencies: 2576 | deep-is "~0.1.3" 2577 | fast-levenshtein "~2.0.4" 2578 | levn "~0.3.0" 2579 | prelude-ls "~1.1.2" 2580 | type-check "~0.3.2" 2581 | wordwrap "~1.0.0" 2582 | 2583 | os-homedir@^1.0.0, os-homedir@^1.0.1: 2584 | version "1.0.2" 2585 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2586 | 2587 | os-locale@^1.4.0: 2588 | version "1.4.0" 2589 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2590 | dependencies: 2591 | lcid "^1.0.0" 2592 | 2593 | os-tmpdir@^1.0.1: 2594 | version "1.0.2" 2595 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2596 | 2597 | output-file-sync@^1.1.0: 2598 | version "1.1.2" 2599 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2600 | dependencies: 2601 | graceful-fs "^4.1.4" 2602 | mkdirp "^0.5.1" 2603 | object-assign "^4.1.0" 2604 | 2605 | parse-entities@^1.0.0: 2606 | version "1.1.0" 2607 | resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-1.1.0.tgz#4bc58f35fdc8e65dded35a12f2e40223ca24a3f7" 2608 | dependencies: 2609 | character-entities "^1.0.0" 2610 | character-entities-legacy "^1.0.0" 2611 | character-reference-invalid "^1.0.0" 2612 | has "^1.0.1" 2613 | is-alphanumerical "^1.0.0" 2614 | is-decimal "^1.0.0" 2615 | is-hexadecimal "^1.0.0" 2616 | 2617 | parse-glob@^3.0.4: 2618 | version "3.0.4" 2619 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2620 | dependencies: 2621 | glob-base "^0.3.0" 2622 | is-dotfile "^1.0.0" 2623 | is-extglob "^1.0.0" 2624 | is-glob "^2.0.0" 2625 | 2626 | parse-json@^2.2.0: 2627 | version "2.2.0" 2628 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2629 | dependencies: 2630 | error-ex "^1.2.0" 2631 | 2632 | parse-ms@^1.0.0: 2633 | version "1.0.1" 2634 | resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-1.0.1.tgz#56346d4749d78f23430ca0c713850aef91aa361d" 2635 | 2636 | path-exists@^2.0.0: 2637 | version "2.1.0" 2638 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2639 | dependencies: 2640 | pinkie-promise "^2.0.0" 2641 | 2642 | path-is-absolute@^1.0.0: 2643 | version "1.0.1" 2644 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2645 | 2646 | path-is-inside@^1.0.1: 2647 | version "1.0.2" 2648 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2649 | 2650 | path-parse@^1.0.5: 2651 | version "1.0.5" 2652 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2653 | 2654 | path-type@^1.0.0: 2655 | version "1.1.0" 2656 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2657 | dependencies: 2658 | graceful-fs "^4.1.2" 2659 | pify "^2.0.0" 2660 | pinkie-promise "^2.0.0" 2661 | 2662 | pify@^2.0.0: 2663 | version "2.3.0" 2664 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2665 | 2666 | pinkie-promise@^2.0.0: 2667 | version "2.0.1" 2668 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2669 | dependencies: 2670 | pinkie "^2.0.0" 2671 | 2672 | pinkie@^2.0.0: 2673 | version "2.0.4" 2674 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2675 | 2676 | pkg-dir@^1.0.0: 2677 | version "1.0.0" 2678 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 2679 | dependencies: 2680 | find-up "^1.0.0" 2681 | 2682 | plur@^1.0.0: 2683 | version "1.0.0" 2684 | resolved "https://registry.yarnpkg.com/plur/-/plur-1.0.0.tgz#db85c6814f5e5e5a3b49efc28d604fec62975156" 2685 | 2686 | plur@^2.0.0: 2687 | version "2.1.2" 2688 | resolved "https://registry.yarnpkg.com/plur/-/plur-2.1.2.tgz#7482452c1a0f508e3e344eaec312c91c29dc655a" 2689 | dependencies: 2690 | irregular-plurals "^1.0.0" 2691 | 2692 | pluralize@^1.2.1: 2693 | version "1.2.1" 2694 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 2695 | 2696 | prelude-ls@~1.1.2: 2697 | version "1.1.2" 2698 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2699 | 2700 | preserve@^0.2.0: 2701 | version "0.2.0" 2702 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2703 | 2704 | pretty-ms@^2.1.0: 2705 | version "2.1.0" 2706 | resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-2.1.0.tgz#4257c256df3fb0b451d6affaab021884126981dc" 2707 | dependencies: 2708 | is-finite "^1.0.1" 2709 | parse-ms "^1.0.0" 2710 | plur "^1.0.0" 2711 | 2712 | private@^0.1.6: 2713 | version "0.1.6" 2714 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.6.tgz#55c6a976d0f9bafb9924851350fe47b9b5fbb7c1" 2715 | 2716 | process-nextick-args@~1.0.6: 2717 | version "1.0.7" 2718 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2719 | 2720 | progress@^1.1.8: 2721 | version "1.1.8" 2722 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 2723 | 2724 | promise@^7.1.1: 2725 | version "7.1.1" 2726 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.1.1.tgz#489654c692616b8aa55b0724fa809bb7db49c5bf" 2727 | dependencies: 2728 | asap "~2.0.3" 2729 | 2730 | pseudomap@^1.0.1: 2731 | version "1.0.2" 2732 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2733 | 2734 | punycode@^1.4.1: 2735 | version "1.4.1" 2736 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2737 | 2738 | qs@~6.2.0: 2739 | version "6.2.1" 2740 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.2.1.tgz#ce03c5ff0935bc1d9d69a9f14cbd18e568d67625" 2741 | 2742 | qs@~6.3.0: 2743 | version "6.3.0" 2744 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.0.tgz#f403b264f23bc01228c74131b407f18d5ea5d442" 2745 | 2746 | randomatic@^1.1.3: 2747 | version "1.1.6" 2748 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 2749 | dependencies: 2750 | is-number "^2.0.2" 2751 | kind-of "^3.0.2" 2752 | 2753 | rc@^1.1.0, rc@~1.1.6: 2754 | version "1.1.6" 2755 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.6.tgz#43651b76b6ae53b5c802f1151fa3fc3b059969c9" 2756 | dependencies: 2757 | deep-extend "~0.4.0" 2758 | ini "~1.3.0" 2759 | minimist "^1.2.0" 2760 | strip-json-comments "~1.0.4" 2761 | 2762 | re-emitter@^1.0.0: 2763 | version "1.1.3" 2764 | resolved "https://registry.yarnpkg.com/re-emitter/-/re-emitter-1.1.3.tgz#fa9e319ffdeeeb35b27296ef0f3d374dac2f52a7" 2765 | 2766 | react-redux@^4.4.5: 2767 | version "4.4.6" 2768 | resolved "https://registry.yarnpkg.com/react-redux/-/react-redux-4.4.6.tgz#4b9d32985307a11096a2dd61561980044fcc6209" 2769 | dependencies: 2770 | hoist-non-react-statics "^1.0.3" 2771 | invariant "^2.0.0" 2772 | lodash "^4.2.0" 2773 | loose-envify "^1.1.0" 2774 | 2775 | react@^15.3.2: 2776 | version "15.4.1" 2777 | resolved "https://registry.yarnpkg.com/react/-/react-15.4.1.tgz#498e918602677a3983cd0fd206dfe700389a0dd6" 2778 | dependencies: 2779 | fbjs "^0.8.4" 2780 | loose-envify "^1.1.0" 2781 | object-assign "^4.1.0" 2782 | 2783 | read-package-json@^2.0.4: 2784 | version "2.0.4" 2785 | resolved "https://registry.yarnpkg.com/read-package-json/-/read-package-json-2.0.4.tgz#61ed1b2256ea438d8008895090be84b8e799c853" 2786 | dependencies: 2787 | glob "^6.0.0" 2788 | json-parse-helpfulerror "^1.0.2" 2789 | normalize-package-data "^2.0.0" 2790 | optionalDependencies: 2791 | graceful-fs "^4.1.2" 2792 | 2793 | read-pkg-up@^1.0.1: 2794 | version "1.0.1" 2795 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2796 | dependencies: 2797 | find-up "^1.0.0" 2798 | read-pkg "^1.0.0" 2799 | 2800 | read-pkg@^1.0.0: 2801 | version "1.1.0" 2802 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2803 | dependencies: 2804 | load-json-file "^1.0.0" 2805 | normalize-package-data "^2.3.2" 2806 | path-type "^1.0.0" 2807 | 2808 | readable-stream@1.1: 2809 | version "1.1.13" 2810 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.13.tgz#f6eef764f514c89e2b9e23146a75ba106756d23e" 2811 | dependencies: 2812 | core-util-is "~1.0.0" 2813 | inherits "~2.0.1" 2814 | isarray "0.0.1" 2815 | string_decoder "~0.10.x" 2816 | 2817 | readable-stream@^2.0.0, "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.1.5: 2818 | version "2.2.2" 2819 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.2.tgz#a9e6fec3c7dda85f8bb1b3ba7028604556fc825e" 2820 | dependencies: 2821 | buffer-shims "^1.0.0" 2822 | core-util-is "~1.0.0" 2823 | inherits "~2.0.1" 2824 | isarray "~1.0.0" 2825 | process-nextick-args "~1.0.6" 2826 | string_decoder "~0.10.x" 2827 | util-deprecate "~1.0.1" 2828 | 2829 | readable-stream@^2.0.2, readable-stream@~2.0.0, readable-stream@~2.0.5: 2830 | version "2.0.6" 2831 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" 2832 | dependencies: 2833 | core-util-is "~1.0.0" 2834 | inherits "~2.0.1" 2835 | isarray "~1.0.0" 2836 | process-nextick-args "~1.0.6" 2837 | string_decoder "~0.10.x" 2838 | util-deprecate "~1.0.1" 2839 | 2840 | readable-stream@~2.1.4: 2841 | version "2.1.5" 2842 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" 2843 | dependencies: 2844 | buffer-shims "^1.0.0" 2845 | core-util-is "~1.0.0" 2846 | inherits "~2.0.1" 2847 | isarray "~1.0.0" 2848 | process-nextick-args "~1.0.6" 2849 | string_decoder "~0.10.x" 2850 | util-deprecate "~1.0.1" 2851 | 2852 | readdirp@^2.0.0: 2853 | version "2.1.0" 2854 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2855 | dependencies: 2856 | graceful-fs "^4.1.2" 2857 | minimatch "^3.0.2" 2858 | readable-stream "^2.0.2" 2859 | set-immediate-shim "^1.0.1" 2860 | 2861 | readline2@^1.0.1: 2862 | version "1.0.1" 2863 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 2864 | dependencies: 2865 | code-point-at "^1.0.0" 2866 | is-fullwidth-code-point "^1.0.0" 2867 | mute-stream "0.0.5" 2868 | 2869 | rechoir@^0.6.2: 2870 | version "0.6.2" 2871 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 2872 | dependencies: 2873 | resolve "^1.1.6" 2874 | 2875 | redux-form@^6.0.5: 2876 | version "6.3.2" 2877 | resolved "https://registry.yarnpkg.com/redux-form/-/redux-form-6.3.2.tgz#8a839412633e7ad155b1accf885736c16fcbe5a1" 2878 | dependencies: 2879 | array-findindex-polyfill "^0.1.0" 2880 | deep-equal "^1.0.1" 2881 | es6-error "^4.0.0" 2882 | hoist-non-react-statics "^1.0.5" 2883 | invariant "^2.2.1" 2884 | is-promise "^2.1.0" 2885 | lodash "^4.16.6" 2886 | lodash-es "^4.16.6" 2887 | shallowequal "^0.2.2" 2888 | 2889 | redux-thunk@^2.1.0: 2890 | version "2.1.0" 2891 | resolved "https://registry.yarnpkg.com/redux-thunk/-/redux-thunk-2.1.0.tgz#c724bfee75dbe352da2e3ba9bc14302badd89a98" 2892 | 2893 | redux@^3.6.0: 2894 | version "3.6.0" 2895 | resolved "https://registry.yarnpkg.com/redux/-/redux-3.6.0.tgz#887c2b3d0b9bd86eca2be70571c27654c19e188d" 2896 | dependencies: 2897 | lodash "^4.2.1" 2898 | lodash-es "^4.2.1" 2899 | loose-envify "^1.1.0" 2900 | symbol-observable "^1.0.2" 2901 | 2902 | regenerate@^1.2.1: 2903 | version "1.3.2" 2904 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 2905 | 2906 | regenerator-runtime@^0.10.0: 2907 | version "0.10.1" 2908 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.1.tgz#257f41961ce44558b18f7814af48c17559f9faeb" 2909 | 2910 | regenerator-transform@0.9.8: 2911 | version "0.9.8" 2912 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.8.tgz#0f88bb2bc03932ddb7b6b7312e68078f01026d6c" 2913 | dependencies: 2914 | babel-runtime "^6.18.0" 2915 | babel-types "^6.19.0" 2916 | private "^0.1.6" 2917 | 2918 | regex-cache@^0.4.2: 2919 | version "0.4.3" 2920 | resolved "http://registry.npmjs.org/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2921 | dependencies: 2922 | is-equal-shallow "^0.1.3" 2923 | is-primitive "^2.0.0" 2924 | 2925 | regexpu-core@^2.0.0: 2926 | version "2.0.0" 2927 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2928 | dependencies: 2929 | regenerate "^1.2.1" 2930 | regjsgen "^0.2.0" 2931 | regjsparser "^0.1.4" 2932 | 2933 | regjsgen@^0.2.0: 2934 | version "0.2.0" 2935 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2936 | 2937 | regjsparser@^0.1.4: 2938 | version "0.1.5" 2939 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2940 | dependencies: 2941 | jsesc "~0.5.0" 2942 | 2943 | remark@^4.1.1: 2944 | version "4.2.2" 2945 | resolved "https://registry.yarnpkg.com/remark/-/remark-4.2.2.tgz#42dc5d0b3a6a2d5443e7cbdbb2a3202854be698f" 2946 | dependencies: 2947 | camelcase "^2.0.0" 2948 | ccount "^1.0.0" 2949 | chalk "^1.0.0" 2950 | chokidar "^1.0.5" 2951 | collapse-white-space "^1.0.0" 2952 | commander "^2.0.0" 2953 | concat-stream "^1.0.0" 2954 | debug "^2.0.0" 2955 | elegant-spinner "^1.0.0" 2956 | extend "^3.0.0" 2957 | glob "^7.0.0" 2958 | globby "^4.0.0" 2959 | log-update "^1.0.1" 2960 | longest-streak "^1.0.0" 2961 | markdown-table "^0.4.0" 2962 | minimatch "^3.0.0" 2963 | npm-prefix "^1.0.1" 2964 | parse-entities "^1.0.0" 2965 | repeat-string "^1.5.0" 2966 | stringify-entities "^1.0.0" 2967 | to-vfile "^1.0.0" 2968 | trim "^0.0.1" 2969 | trim-trailing-lines "^1.0.0" 2970 | unified "^3.0.0" 2971 | unist-util-remove-position "^1.0.0" 2972 | user-home "^2.0.0" 2973 | vfile "^1.1.0" 2974 | vfile-find-down "^1.0.0" 2975 | vfile-find-up "^1.0.0" 2976 | vfile-location "^2.0.0" 2977 | vfile-reporter "^1.5.0" 2978 | ware "^1.3.0" 2979 | 2980 | repeat-element@^1.1.2: 2981 | version "1.1.2" 2982 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2983 | 2984 | repeat-string@^1.5.0, repeat-string@^1.5.2: 2985 | version "1.6.1" 2986 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2987 | 2988 | repeating@^2.0.0: 2989 | version "2.0.1" 2990 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2991 | dependencies: 2992 | is-finite "^1.0.0" 2993 | 2994 | request@2.75.0: 2995 | version "2.75.0" 2996 | resolved "https://registry.yarnpkg.com/request/-/request-2.75.0.tgz#d2b8268a286da13eaa5d01adf5d18cc90f657d93" 2997 | dependencies: 2998 | aws-sign2 "~0.6.0" 2999 | aws4 "^1.2.1" 3000 | bl "~1.1.2" 3001 | caseless "~0.11.0" 3002 | combined-stream "~1.0.5" 3003 | extend "~3.0.0" 3004 | forever-agent "~0.6.1" 3005 | form-data "~2.0.0" 3006 | har-validator "~2.0.6" 3007 | hawk "~3.1.3" 3008 | http-signature "~1.1.0" 3009 | is-typedarray "~1.0.0" 3010 | isstream "~0.1.2" 3011 | json-stringify-safe "~5.0.1" 3012 | mime-types "~2.1.7" 3013 | node-uuid "~1.4.7" 3014 | oauth-sign "~0.8.1" 3015 | qs "~6.2.0" 3016 | stringstream "~0.0.4" 3017 | tough-cookie "~2.3.0" 3018 | tunnel-agent "~0.4.1" 3019 | 3020 | request@^2.79.0: 3021 | version "2.79.0" 3022 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" 3023 | dependencies: 3024 | aws-sign2 "~0.6.0" 3025 | aws4 "^1.2.1" 3026 | caseless "~0.11.0" 3027 | combined-stream "~1.0.5" 3028 | extend "~3.0.0" 3029 | forever-agent "~0.6.1" 3030 | form-data "~2.1.1" 3031 | har-validator "~2.0.6" 3032 | hawk "~3.1.3" 3033 | http-signature "~1.1.0" 3034 | is-typedarray "~1.0.0" 3035 | isstream "~0.1.2" 3036 | json-stringify-safe "~5.0.1" 3037 | mime-types "~2.1.7" 3038 | oauth-sign "~0.8.1" 3039 | qs "~6.3.0" 3040 | stringstream "~0.0.4" 3041 | tough-cookie "~2.3.0" 3042 | tunnel-agent "~0.4.1" 3043 | uuid "^3.0.0" 3044 | 3045 | require-directory@^2.1.1: 3046 | version "2.1.1" 3047 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3048 | 3049 | require-main-filename@^1.0.1: 3050 | version "1.0.1" 3051 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3052 | 3053 | require-uncached@^1.0.2: 3054 | version "1.0.3" 3055 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 3056 | dependencies: 3057 | caller-path "^0.1.0" 3058 | resolve-from "^1.0.0" 3059 | 3060 | resolve-from@^1.0.0: 3061 | version "1.0.1" 3062 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 3063 | 3064 | resolve-from@^2.0.0: 3065 | version "2.0.0" 3066 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57" 3067 | 3068 | resolve@^1.1.6, resolve@^1.1.7: 3069 | version "1.2.0" 3070 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.2.0.tgz#9589c3f2f6149d1417a40becc1663db6ec6bc26c" 3071 | 3072 | resolve@~1.1.7: 3073 | version "1.1.7" 3074 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 3075 | 3076 | restore-cursor@^1.0.1: 3077 | version "1.0.1" 3078 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 3079 | dependencies: 3080 | exit-hook "^1.0.0" 3081 | onetime "^1.0.0" 3082 | 3083 | resumer@~0.0.0: 3084 | version "0.0.0" 3085 | resolved "https://registry.yarnpkg.com/resumer/-/resumer-0.0.0.tgz#f1e8f461e4064ba39e82af3cdc2a8c893d076759" 3086 | dependencies: 3087 | through "~2.3.4" 3088 | 3089 | right-align@^0.1.1: 3090 | version "0.1.3" 3091 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3092 | dependencies: 3093 | align-text "^0.1.1" 3094 | 3095 | rimraf@2, rimraf@^2.2.8, rimraf@^2.3.3, rimraf@^2.4.2, rimraf@^2.4.3, rimraf@^2.4.4, rimraf@^2.5.4, rimraf@~2.5.1, rimraf@~2.5.4: 3096 | version "2.5.4" 3097 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" 3098 | dependencies: 3099 | glob "^7.0.5" 3100 | 3101 | run-async@^0.1.0: 3102 | version "0.1.0" 3103 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 3104 | dependencies: 3105 | once "^1.3.0" 3106 | 3107 | rx-lite@^3.1.2: 3108 | version "3.1.2" 3109 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 3110 | 3111 | "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@~5.3.0: 3112 | version "5.3.0" 3113 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 3114 | 3115 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3116 | version "2.0.0" 3117 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3118 | 3119 | set-immediate-shim@^1.0.1: 3120 | version "1.0.1" 3121 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3122 | 3123 | shallowequal@^0.2.2: 3124 | version "0.2.2" 3125 | resolved "https://registry.yarnpkg.com/shallowequal/-/shallowequal-0.2.2.tgz#1e32fd5bcab6ad688a4812cb0cc04efc75c7014e" 3126 | dependencies: 3127 | lodash.keys "^3.1.2" 3128 | 3129 | shelljs@^0.7.5: 3130 | version "0.7.5" 3131 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.5.tgz#2eef7a50a21e1ccf37da00df767ec69e30ad0675" 3132 | dependencies: 3133 | glob "^7.0.0" 3134 | interpret "^1.0.0" 3135 | rechoir "^0.6.2" 3136 | 3137 | shellsubstitute@^1.1.0: 3138 | version "1.2.0" 3139 | resolved "https://registry.yarnpkg.com/shellsubstitute/-/shellsubstitute-1.2.0.tgz#e4f702a50c518b0f6fe98451890d705af29b6b70" 3140 | 3141 | signal-exit@^2.0.0: 3142 | version "2.1.2" 3143 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-2.1.2.tgz#375879b1f92ebc3b334480d038dc546a6d558564" 3144 | 3145 | signal-exit@^3.0.0, signal-exit@^3.0.1: 3146 | version "3.0.2" 3147 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3148 | 3149 | slash@^1.0.0: 3150 | version "1.0.0" 3151 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3152 | 3153 | slice-ansi@0.0.4: 3154 | version "0.0.4" 3155 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 3156 | 3157 | slide@^1.1.5: 3158 | version "1.1.6" 3159 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 3160 | 3161 | sntp@1.x.x: 3162 | version "1.0.9" 3163 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3164 | dependencies: 3165 | hoek "2.x.x" 3166 | 3167 | source-map-support@^0.4.2: 3168 | version "0.4.6" 3169 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.6.tgz#32552aa64b458392a85eab3b0b5ee61527167aeb" 3170 | dependencies: 3171 | source-map "^0.5.3" 3172 | 3173 | source-map@^0.4.4: 3174 | version "0.4.4" 3175 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3176 | dependencies: 3177 | amdefine ">=0.0.4" 3178 | 3179 | source-map@^0.5.0, source-map@^0.5.3, source-map@~0.5.1: 3180 | version "0.5.6" 3181 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 3182 | 3183 | spawn-wrap@^1.2.4: 3184 | version "1.2.4" 3185 | resolved "https://registry.yarnpkg.com/spawn-wrap/-/spawn-wrap-1.2.4.tgz#920eb211a769c093eebfbd5b0e7a5d2e68ab2e40" 3186 | dependencies: 3187 | foreground-child "^1.3.3" 3188 | mkdirp "^0.5.0" 3189 | os-homedir "^1.0.1" 3190 | rimraf "^2.3.3" 3191 | signal-exit "^2.0.0" 3192 | which "^1.2.4" 3193 | 3194 | spdx-correct@~1.0.0: 3195 | version "1.0.2" 3196 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3197 | dependencies: 3198 | spdx-license-ids "^1.0.2" 3199 | 3200 | spdx-expression-parse@~1.0.0: 3201 | version "1.0.4" 3202 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3203 | 3204 | spdx-license-ids@^1.0.2: 3205 | version "1.2.2" 3206 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3207 | 3208 | split@^1.0.0: 3209 | version "1.0.0" 3210 | resolved "https://registry.yarnpkg.com/split/-/split-1.0.0.tgz#c4395ce683abcd254bc28fe1dabb6e5c27dcffae" 3211 | dependencies: 3212 | through "2" 3213 | 3214 | sprintf-js@~1.0.2: 3215 | version "1.0.3" 3216 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3217 | 3218 | sshpk@^1.7.0: 3219 | version "1.10.1" 3220 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.10.1.tgz#30e1a5d329244974a1af61511339d595af6638b0" 3221 | dependencies: 3222 | asn1 "~0.2.3" 3223 | assert-plus "^1.0.0" 3224 | dashdash "^1.12.0" 3225 | getpass "^0.1.1" 3226 | optionalDependencies: 3227 | bcrypt-pbkdf "^1.0.0" 3228 | ecc-jsbn "~0.1.1" 3229 | jodid25519 "^1.0.0" 3230 | jsbn "~0.1.0" 3231 | tweetnacl "~0.14.0" 3232 | 3233 | string-width@^1.0.0, string-width@^1.0.1, string-width@^1.0.2: 3234 | version "1.0.2" 3235 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3236 | dependencies: 3237 | code-point-at "^1.0.0" 3238 | is-fullwidth-code-point "^1.0.0" 3239 | strip-ansi "^3.0.0" 3240 | 3241 | string-width@^2.0.0: 3242 | version "2.0.0" 3243 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 3244 | dependencies: 3245 | is-fullwidth-code-point "^2.0.0" 3246 | strip-ansi "^3.0.0" 3247 | 3248 | string.prototype.trim@~1.1.2: 3249 | version "1.1.2" 3250 | resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.1.2.tgz#d04de2c89e137f4d7d206f086b5ed2fae6be8cea" 3251 | dependencies: 3252 | define-properties "^1.1.2" 3253 | es-abstract "^1.5.0" 3254 | function-bind "^1.0.2" 3255 | 3256 | string_decoder@~0.10.x: 3257 | version "0.10.31" 3258 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 3259 | 3260 | stringify-entities@^1.0.0: 3261 | version "1.3.0" 3262 | resolved "https://registry.yarnpkg.com/stringify-entities/-/stringify-entities-1.3.0.tgz#2244a516c4f1e8e01b73dad01023016776abd917" 3263 | dependencies: 3264 | character-entities-html4 "^1.0.0" 3265 | character-entities-legacy "^1.0.0" 3266 | has "^1.0.1" 3267 | is-alphanumerical "^1.0.0" 3268 | is-hexadecimal "^1.0.0" 3269 | 3270 | stringstream@~0.0.4: 3271 | version "0.0.5" 3272 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3273 | 3274 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3275 | version "3.0.1" 3276 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3277 | dependencies: 3278 | ansi-regex "^2.0.0" 3279 | 3280 | strip-bom@^2.0.0: 3281 | version "2.0.0" 3282 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3283 | dependencies: 3284 | is-utf8 "^0.2.0" 3285 | 3286 | strip-bom@^3.0.0: 3287 | version "3.0.0" 3288 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3289 | 3290 | strip-json-comments@~1.0.1, strip-json-comments@~1.0.4: 3291 | version "1.0.4" 3292 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" 3293 | 3294 | structured-source@^3.0.2: 3295 | version "3.0.2" 3296 | resolved "https://registry.yarnpkg.com/structured-source/-/structured-source-3.0.2.tgz#dd802425e0f53dc4a6e7aca3752901a1ccda7af5" 3297 | dependencies: 3298 | boundary "^1.0.1" 3299 | 3300 | supports-color@^0.2.0: 3301 | version "0.2.0" 3302 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-0.2.0.tgz#d92de2694eb3f67323973d7ae3d8b55b4c22190a" 3303 | 3304 | supports-color@^2.0.0: 3305 | version "2.0.0" 3306 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3307 | 3308 | supports-color@^3.1.2: 3309 | version "3.1.2" 3310 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" 3311 | dependencies: 3312 | has-flag "^1.0.0" 3313 | 3314 | symbol-observable@^1.0.2: 3315 | version "1.0.4" 3316 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d" 3317 | 3318 | table@^3.7.8: 3319 | version "3.8.3" 3320 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 3321 | dependencies: 3322 | ajv "^4.7.0" 3323 | ajv-keywords "^1.0.0" 3324 | chalk "^1.1.1" 3325 | lodash "^4.0.0" 3326 | slice-ansi "0.0.4" 3327 | string-width "^2.0.0" 3328 | 3329 | tap-out@^1.4.1: 3330 | version "1.4.2" 3331 | resolved "https://registry.yarnpkg.com/tap-out/-/tap-out-1.4.2.tgz#c907ec1bf9405111d088263e92f5608b88cbb37a" 3332 | dependencies: 3333 | re-emitter "^1.0.0" 3334 | readable-stream "^2.0.0" 3335 | split "^1.0.0" 3336 | trim "0.0.1" 3337 | 3338 | tap-spec@^4.1.1: 3339 | version "4.1.1" 3340 | resolved "https://registry.yarnpkg.com/tap-spec/-/tap-spec-4.1.1.tgz#e2e9f26f5208232b1f562288c97624d58a88f05a" 3341 | dependencies: 3342 | chalk "^1.0.0" 3343 | duplexer "^0.1.1" 3344 | figures "^1.4.0" 3345 | lodash "^3.6.0" 3346 | pretty-ms "^2.1.0" 3347 | repeat-string "^1.5.2" 3348 | tap-out "^1.4.1" 3349 | through2 "^2.0.0" 3350 | 3351 | tape@^4.2.2: 3352 | version "4.6.3" 3353 | resolved "https://registry.yarnpkg.com/tape/-/tape-4.6.3.tgz#637e77581e9ab2ce17577e9bd4ce4f575806d8b6" 3354 | dependencies: 3355 | deep-equal "~1.0.1" 3356 | defined "~1.0.0" 3357 | for-each "~0.3.2" 3358 | function-bind "~1.1.0" 3359 | glob "~7.1.1" 3360 | has "~1.0.1" 3361 | inherits "~2.0.3" 3362 | minimist "~1.2.0" 3363 | object-inspect "~1.2.1" 3364 | resolve "~1.1.7" 3365 | resumer "~0.0.0" 3366 | string.prototype.trim "~1.1.2" 3367 | through "~2.3.8" 3368 | 3369 | tar-pack@~3.3.0: 3370 | version "3.3.0" 3371 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.3.0.tgz#30931816418f55afc4d21775afdd6720cee45dae" 3372 | dependencies: 3373 | debug "~2.2.0" 3374 | fstream "~1.0.10" 3375 | fstream-ignore "~1.0.5" 3376 | once "~1.3.3" 3377 | readable-stream "~2.1.4" 3378 | rimraf "~2.5.1" 3379 | tar "~2.2.1" 3380 | uid-number "~0.0.6" 3381 | 3382 | tar@~2.2.1: 3383 | version "2.2.1" 3384 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3385 | dependencies: 3386 | block-stream "*" 3387 | fstream "^1.0.2" 3388 | inherits "2" 3389 | 3390 | test-exclude@^2.1.3: 3391 | version "2.1.3" 3392 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-2.1.3.tgz#a8d8968e1da83266f9864f2852c55e220f06434a" 3393 | dependencies: 3394 | arrify "^1.0.1" 3395 | micromatch "^2.3.11" 3396 | object-assign "^4.1.0" 3397 | read-pkg-up "^1.0.1" 3398 | require-main-filename "^1.0.1" 3399 | 3400 | text-table@^0.2.0, text-table@~0.2.0: 3401 | version "0.2.0" 3402 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3403 | 3404 | through2@^2.0.0: 3405 | version "2.0.3" 3406 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 3407 | dependencies: 3408 | readable-stream "^2.1.5" 3409 | xtend "~4.0.1" 3410 | 3411 | through@2, through@^2.3.6, through@~2.3.4, through@~2.3.8: 3412 | version "2.3.8" 3413 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3414 | 3415 | to-fast-properties@^1.0.1: 3416 | version "1.0.2" 3417 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 3418 | 3419 | to-vfile@^1.0.0: 3420 | version "1.0.0" 3421 | resolved "https://registry.yarnpkg.com/to-vfile/-/to-vfile-1.0.0.tgz#88defecd43adb2ef598625f0e3d59f7f342941ba" 3422 | dependencies: 3423 | vfile "^1.0.0" 3424 | 3425 | tough-cookie@~2.3.0: 3426 | version "2.3.2" 3427 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3428 | dependencies: 3429 | punycode "^1.4.1" 3430 | 3431 | traverse@^0.6.6: 3432 | version "0.6.6" 3433 | resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.6.tgz#cbdf560fd7b9af632502fed40f918c157ea97137" 3434 | 3435 | trim-trailing-lines@^1.0.0: 3436 | version "1.1.0" 3437 | resolved "https://registry.yarnpkg.com/trim-trailing-lines/-/trim-trailing-lines-1.1.0.tgz#7aefbb7808df9d669f6da2e438cac8c46ada7684" 3438 | 3439 | trim@0.0.1, trim@^0.0.1: 3440 | version "0.0.1" 3441 | resolved "https://registry.yarnpkg.com/trim/-/trim-0.0.1.tgz#5858547f6b290757ee95cccc666fb50084c460dd" 3442 | 3443 | tryit@^1.0.1: 3444 | version "1.0.3" 3445 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 3446 | 3447 | tunnel-agent@~0.4.1: 3448 | version "0.4.3" 3449 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 3450 | 3451 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3452 | version "0.14.5" 3453 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3454 | 3455 | type-check@~0.3.2: 3456 | version "0.3.2" 3457 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3458 | dependencies: 3459 | prelude-ls "~1.1.2" 3460 | 3461 | typedarray@~0.0.5: 3462 | version "0.0.6" 3463 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3464 | 3465 | ua-parser-js@^0.7.9: 3466 | version "0.7.12" 3467 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.12.tgz#04c81a99bdd5dc52263ea29d24c6bf8d4818a4bb" 3468 | 3469 | uglify-js@^2.6: 3470 | version "2.7.5" 3471 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.7.5.tgz#4612c0c7baaee2ba7c487de4904ae122079f2ca8" 3472 | dependencies: 3473 | async "~0.2.6" 3474 | source-map "~0.5.1" 3475 | uglify-to-browserify "~1.0.0" 3476 | yargs "~3.10.0" 3477 | 3478 | uglify-to-browserify@~1.0.0: 3479 | version "1.0.2" 3480 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3481 | 3482 | uid-number@~0.0.6: 3483 | version "0.0.6" 3484 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3485 | 3486 | unc-path-regex@^0.1.0: 3487 | version "0.1.2" 3488 | resolved "http://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa" 3489 | 3490 | underscore@>=1.3.3: 3491 | version "1.8.3" 3492 | resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.8.3.tgz#4f3fb53b106e6097fcf9cb4109f2a5e9bdfa5022" 3493 | 3494 | unherit@^1.0.0, unherit@^1.0.4: 3495 | version "1.1.0" 3496 | resolved "https://registry.yarnpkg.com/unherit/-/unherit-1.1.0.tgz#6b9aaedfbf73df1756ad9e316dd981885840cd7d" 3497 | dependencies: 3498 | inherits "^2.0.1" 3499 | xtend "^4.0.1" 3500 | 3501 | unified@^3.0.0: 3502 | version "3.0.0" 3503 | resolved "https://registry.yarnpkg.com/unified/-/unified-3.0.0.tgz#85ce4169b09ee9f084d07f4d0a1fbe3939518712" 3504 | dependencies: 3505 | attach-ware "^2.0.0" 3506 | bail "^1.0.0" 3507 | extend "^3.0.0" 3508 | unherit "^1.0.4" 3509 | vfile "^1.0.0" 3510 | ware "^1.3.0" 3511 | 3512 | unist-util-remove-position@^1.0.0: 3513 | version "1.1.0" 3514 | resolved "https://registry.yarnpkg.com/unist-util-remove-position/-/unist-util-remove-position-1.1.0.tgz#2444fedc344bc5f540dab6353e013b6d78101dc2" 3515 | dependencies: 3516 | unist-util-visit "^1.1.0" 3517 | 3518 | unist-util-visit@^1.1.0: 3519 | version "1.1.1" 3520 | resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-1.1.1.tgz#e917a3b137658b335cb4420c7da2e74d928e4e94" 3521 | 3522 | untildify@^2.1.0: 3523 | version "2.1.0" 3524 | resolved "https://registry.yarnpkg.com/untildify/-/untildify-2.1.0.tgz#17eb2807987f76952e9c0485fc311d06a826a2e0" 3525 | dependencies: 3526 | os-homedir "^1.0.0" 3527 | 3528 | update-section@^0.3.0: 3529 | version "0.3.3" 3530 | resolved "https://registry.yarnpkg.com/update-section/-/update-section-0.3.3.tgz#458f17820d37820dc60e20b86d94391b00123158" 3531 | 3532 | user-home@^1.1.1: 3533 | version "1.1.1" 3534 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 3535 | 3536 | user-home@^2.0.0: 3537 | version "2.0.0" 3538 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 3539 | dependencies: 3540 | os-homedir "^1.0.0" 3541 | 3542 | util-deprecate@~1.0.1: 3543 | version "1.0.2" 3544 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3545 | 3546 | uuid@^3.0.0: 3547 | version "3.0.1" 3548 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 3549 | 3550 | v8flags@^2.0.10: 3551 | version "2.0.11" 3552 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.0.11.tgz#bca8f30f0d6d60612cc2c00641e6962d42ae6881" 3553 | dependencies: 3554 | user-home "^1.1.1" 3555 | 3556 | validate-npm-package-license@^3.0.1: 3557 | version "3.0.1" 3558 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3559 | dependencies: 3560 | spdx-correct "~1.0.0" 3561 | spdx-expression-parse "~1.0.0" 3562 | 3563 | verror@1.3.6: 3564 | version "1.3.6" 3565 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 3566 | dependencies: 3567 | extsprintf "1.0.2" 3568 | 3569 | vfile-find-down@^1.0.0: 3570 | version "1.0.0" 3571 | resolved "https://registry.yarnpkg.com/vfile-find-down/-/vfile-find-down-1.0.0.tgz#84a4d66d03513f6140a84e0776ef0848d4f0ad95" 3572 | dependencies: 3573 | to-vfile "^1.0.0" 3574 | 3575 | vfile-find-up@^1.0.0: 3576 | version "1.0.0" 3577 | resolved "https://registry.yarnpkg.com/vfile-find-up/-/vfile-find-up-1.0.0.tgz#5604da6fe453b34350637984eb5fe4909e280390" 3578 | dependencies: 3579 | to-vfile "^1.0.0" 3580 | 3581 | vfile-location@^2.0.0: 3582 | version "2.0.1" 3583 | resolved "https://registry.yarnpkg.com/vfile-location/-/vfile-location-2.0.1.tgz#0bf8816f732b0f8bd902a56fda4c62c8e935dc52" 3584 | 3585 | vfile-reporter@^1.5.0: 3586 | version "1.5.0" 3587 | resolved "https://registry.yarnpkg.com/vfile-reporter/-/vfile-reporter-1.5.0.tgz#21a7009bfe55e24df8ff432aa5bf6f6efa74e418" 3588 | dependencies: 3589 | chalk "^1.1.0" 3590 | log-symbols "^1.0.2" 3591 | plur "^2.0.0" 3592 | repeat-string "^1.5.0" 3593 | string-width "^1.0.0" 3594 | text-table "^0.2.0" 3595 | vfile-sort "^1.0.0" 3596 | 3597 | vfile-sort@^1.0.0: 3598 | version "1.0.0" 3599 | resolved "https://registry.yarnpkg.com/vfile-sort/-/vfile-sort-1.0.0.tgz#17ee491ba43e8951bb22913fcff32a7dc4d234d4" 3600 | 3601 | vfile@^1.0.0, vfile@^1.1.0: 3602 | version "1.4.0" 3603 | resolved "https://registry.yarnpkg.com/vfile/-/vfile-1.4.0.tgz#c0fd6fa484f8debdb771f68c31ed75d88da97fe7" 3604 | 3605 | ware@^1.3.0: 3606 | version "1.3.0" 3607 | resolved "https://registry.yarnpkg.com/ware/-/ware-1.3.0.tgz#d1b14f39d2e2cb4ab8c4098f756fe4b164e473d4" 3608 | dependencies: 3609 | wrap-fn "^0.1.0" 3610 | 3611 | watch@^1.0.1: 3612 | version "1.0.1" 3613 | resolved "https://registry.yarnpkg.com/watch/-/watch-1.0.1.tgz#37b7fc4b7bccafa9f6398dca56a2a45455db4aa2" 3614 | dependencies: 3615 | exec-sh "^0.2.0" 3616 | minimist "^1.2.0" 3617 | 3618 | whatwg-fetch@>=0.10.0: 3619 | version "2.0.1" 3620 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.1.tgz#078b9461bbe91cea73cbce8bb122a05f9e92b772" 3621 | 3622 | which-module@^1.0.0: 3623 | version "1.0.0" 3624 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 3625 | 3626 | which@^1.2.4, which@^1.2.9: 3627 | version "1.2.12" 3628 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.12.tgz#de67b5e450269f194909ef23ece4ebe416fa1192" 3629 | dependencies: 3630 | isexe "^1.1.1" 3631 | 3632 | wide-align@^1.1.0: 3633 | version "1.1.0" 3634 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 3635 | dependencies: 3636 | string-width "^1.0.1" 3637 | 3638 | window-size@0.1.0: 3639 | version "0.1.0" 3640 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3641 | 3642 | window-size@^0.2.0: 3643 | version "0.2.0" 3644 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.2.0.tgz#b4315bb4214a3d7058ebeee892e13fa24d98b075" 3645 | 3646 | wordwrap@0.0.2: 3647 | version "0.0.2" 3648 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3649 | 3650 | wordwrap@~0.0.2: 3651 | version "0.0.3" 3652 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3653 | 3654 | wordwrap@~1.0.0: 3655 | version "1.0.0" 3656 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3657 | 3658 | wrap-ansi@^2.0.0: 3659 | version "2.1.0" 3660 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3661 | dependencies: 3662 | string-width "^1.0.1" 3663 | strip-ansi "^3.0.1" 3664 | 3665 | wrap-fn@^0.1.0: 3666 | version "0.1.5" 3667 | resolved "https://registry.yarnpkg.com/wrap-fn/-/wrap-fn-0.1.5.tgz#f21b6e41016ff4a7e31720dbc63a09016bdf9845" 3668 | dependencies: 3669 | co "3.1.0" 3670 | 3671 | wrappy@1: 3672 | version "1.0.2" 3673 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3674 | 3675 | write-file-atomic@^1.1.4: 3676 | version "1.2.0" 3677 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.2.0.tgz#14c66d4e4cb3ca0565c28cf3b7a6f3e4d5938fab" 3678 | dependencies: 3679 | graceful-fs "^4.1.2" 3680 | imurmurhash "^0.1.4" 3681 | slide "^1.1.5" 3682 | 3683 | write@^0.2.1: 3684 | version "0.2.1" 3685 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 3686 | dependencies: 3687 | mkdirp "^0.5.1" 3688 | 3689 | xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.1: 3690 | version "4.0.1" 3691 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3692 | 3693 | y18n@^3.2.1: 3694 | version "3.2.1" 3695 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3696 | 3697 | yallist@^2.0.0: 3698 | version "2.0.0" 3699 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.0.0.tgz#306c543835f09ee1a4cb23b7bce9ab341c91cdd4" 3700 | 3701 | yargs-parser@^4.0.2, yargs-parser@^4.2.0: 3702 | version "4.2.0" 3703 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.0.tgz#6ced869cd05a3dca6a1eaee38b68aeed4b0b4101" 3704 | dependencies: 3705 | camelcase "^3.0.0" 3706 | 3707 | yargs@^6.0.0: 3708 | version "6.5.0" 3709 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.5.0.tgz#a902e23a1f0fe912b2a03f6131b7ed740c9718ff" 3710 | dependencies: 3711 | camelcase "^3.0.0" 3712 | cliui "^3.2.0" 3713 | decamelize "^1.1.1" 3714 | get-caller-file "^1.0.1" 3715 | os-locale "^1.4.0" 3716 | read-pkg-up "^1.0.1" 3717 | require-directory "^2.1.1" 3718 | require-main-filename "^1.0.1" 3719 | set-blocking "^2.0.0" 3720 | string-width "^1.0.2" 3721 | which-module "^1.0.0" 3722 | window-size "^0.2.0" 3723 | y18n "^3.2.1" 3724 | yargs-parser "^4.2.0" 3725 | 3726 | yargs@~3.10.0: 3727 | version "3.10.0" 3728 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3729 | dependencies: 3730 | camelcase "^1.0.2" 3731 | cliui "^2.1.0" 3732 | decamelize "^1.0.0" 3733 | window-size "0.1.0" 3734 | --------------------------------------------------------------------------------