├── .editorconfig ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── contributing.md ├── lib └── index.js ├── package.json ├── test ├── fixtures │ └── index.html └── index.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- 1 | # This file is for unifying the coding style for different editors and IDEs 2 | # editorconfig.org 3 | 4 | root = true 5 | 6 | [*] 7 | end_of_line = lf 8 | charset = utf-8 9 | insert_final_newline = true 10 | trim_trailing_whitespace = true 11 | indent_style = space 12 | indent_size = 2 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | .nyc_output 4 | coverage 5 | .nyc_output 6 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | test 3 | contributing.md 4 | .editorconfig 5 | .travis.yml 6 | coverage 7 | .nyc_output 8 | yarn.lock 9 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: false 3 | node_js: 4 | - 8 5 | after_script: 6 | - npm run codecov 7 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | License (MIT) 2 | ------------- 3 | 4 | Copyright (c) 2016 Jeff Escalante 5 | 6 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 7 | 8 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 9 | 10 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 11 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Reshape Standard Preset 2 | 3 | [![npm](http://img.shields.io/npm/v/reshape-standard.svg?style=flat-square)](https://badge.fury.io/js/reshape-standard) [![tests](http://img.shields.io/travis/reshape/standard/master.svg?style=flat-square)](https://travis-ci.org/reshape/standard) [![dependencies](http://img.shields.io/david/reshape/standard.svg?style=flat-square)](https://david-dm.org/reshape/standard) 4 | [![coverage](https://img.shields.io/codecov/c/github/reshape/standard.svg?style=flat-square)](https://codecov.io/gh/reshape/standard) 5 | 6 | A standard, opinionated preset for reshape 7 | 8 | > **Note:** This project is in early development, and versioning is a little different. [Read this](http://markup.im/#q4_cRZ1Q) for more details. 9 | 10 | ### Installation 11 | 12 | `npm install reshape-standard -S` 13 | 14 | > **Note:** This project is compatible with node v6+ only 15 | 16 | ### Example 17 | 18 | The standard preset includes plugins that cover all the features needed from a modern template engine. Below is an example of a page utilizing many of the features: 19 | 20 | ``` 21 | 22 | 23 | 24 | Standard Example 25 | 26 | 27 |

Hello world!

28 | 29 | 33 | 34 | 35 | 36 |

local variable: {{ foo }}

37 | 38 | 39 | 40 |

{{ item.name }}

41 |
42 | 43 |

item with no name!

44 |
45 |
46 | 47 |

**Look** at this [markdown](https://daringfireball.net/projects/markdown/)

48 | 49 | 50 | ``` 51 | 52 | Note that it is easily possible to configure any of the options. If you don't like the names of any of the custom tags, you can change them in the options. If you don't like the `{{ }}` delimiters, you can quickly and easily change them, etc. See the options below for more! 53 | 54 | Many also enjoy using a more jade/pug/haml-like whitespace syntax. It's quite easy to add in [sugarml](https://github.com/reshape/sugarml) for this if you want by adding it as a dependency, requiring it, and passing `{ parser: sugarml }` into the options. 55 | 56 | ### Usage 57 | 58 | This is nothing more than a light wrapper around a reshape configuration object. Options are filtered into their appropriate plugins internally. All are optional. 59 | 60 | ```js 61 | const reshape = require('reshape') 62 | const standard = require('reshape-standard') 63 | 64 | reshape(standard(/* options */)) 65 | .process(someHtml) 66 | .then(res => console.log(res.output())) 67 | ``` 68 | 69 | By default, the standard preset includes: 70 | 71 | * [reshape-expressions](https://github.com/reshape/expressions), default settings 72 | * [reshape-layouts](https://github.com/reshape/layouts), default settings 73 | * [reshape-include](https://github.com/reshape/include), default settings 74 | * [reshape-content](https://github.com/reshape/content) with `md` and `mdi` functions that render markdown using [markdown-it](https://github.com/markdown-it/markdown-it) 75 | * [reshape-retext](https://github.com/reshape/retext) with the [smartypants](https://github.com/wooorm/retext-smartypants) plugin 76 | * [reshape-beautify](https://github.com/reshape/beautify), default settings 77 | * [reshape-minify](https://github.com/reshape/minify), toggled with the `minify` option which is false by default. When enabled, it will disable `beautify` 78 | 79 | Based on the way they are ordered there are a couple limitations to keep in mind: 80 | 81 | * You cannot use a layout `block/extend` inside of an `include` 82 | * Any expression delimiters rendered from a `content` or `retext` transform will be output as plaintext, not as an expression 83 | * Output from a `content` transform will be processed by `retext` in that order 84 | 85 | Any of these plugins can be customized by passing options described below. 86 | 87 | ### Options 88 | 89 | | Name | Description | Default | 90 | | ---------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------- | 91 | | **root** | Root path used to resolve layouts and includes | | 92 | | **filename** | Name of the file being compiled, used for error traces and as the include/layout root if not otherwise provided | | 93 | | **delimiters** | Delimiters used for html-escaped expressions | `['{{', '}}']` | 94 | | **unescapeDelimiters** | Delimiters used for unescaped expressions | `['{{{', '}}}']` | 95 | | **markdown** | Options passed in to [markdown-it](https://github.com/markdown-it/markdown-it) constructor | `{ typographer: true, linkify: true }` | 96 | | **markdownPlugins** | Plugins to be loaded by [markdown-it](https://github.com/markdown-it/markdown-it) parser. See below for more details. | | 97 | | **content** | Options passed to the [reshape-content](https://github.com/reshape/content) plugin | `{ md: renderMarkdown, mdi: renderMarkdownInline }` | 98 | | **parser** | custom html parser if desired | | 99 | | **retext** | Plugins to be passed to the [reshape-retext](https://github.com/reshape/retext) plugin | `[smartypants]` ([ref](https://github.com/wooorm/retext-smartypants)) | 100 | | **locals** | Added directly to the output object, used when compiling a reshape template to html | `{}` | 101 | | **alias** | Alias option to be passed to the [include plugin](https://github.com/reshape/include#options) | | 102 | | **parserRules** | Parser rules to be passed to the [include plugin](https://github.com/reshape/include#options) | | 103 | | **minify** | Minifies the html output by removing excess spaces and line breaks, comments, and by minifying inline CSS, JS, SVG and JSON. Accepts a boolean or an object of options passed to [reshape-minify](https://github.com/reshape/minify) | `false` | 104 | | **appendPlugins** | Adds a single plugin or array of plugins after all the defaults | | 105 | | **prependPlugins** | Adds a single plugin or array of plugins before all the defaults | | 106 | | **template** | Set this to `true` if you are trying to output a client-side template function. | false | 107 | | **locals** | Optionally set your locals as soon as expressions are evaluated. | | 108 | | **multi** | Pass through feature specific to [reshape-loader](https://github.com/reshape/loader#producing-multiple-outputs-from-a-single-files) | | 109 | 110 | ### Markdown Rendering Functions 111 | 112 | There are two markdown rendering shortcut functions provided with this preset: `md` and `mdi`. The `md` function will run a full markdown render including wrapping with a paragraph tag, rendering headlines, etc. For example: 113 | 114 | ``` 115 |
116 | # The title 117 | 118 | Here's some text, wow. 119 | 120 | A second paragraph! 121 |
122 | ``` 123 | 124 | This would work as expected, rendering title and paragraph tags: 125 | 126 | ``` 127 |
128 |

The title

129 |

Here's some text, wow.

130 |

A second paragraph!

131 |
132 | ``` 133 | 134 | The `mdi` shortcut is specifically for rendering _inline_ markdown, not including any type of title tags or paragraph wrapping. So for example: 135 | 136 | ``` 137 |

Hello, I am #1 and this is [my link](#).

138 | ``` 139 | 140 | Would render without additional paragraph wrappings or unexpected title renders: 141 | 142 | ``` 143 |

Hello, I am #1 and this is my link. 144 | ``` 145 | 146 | ### Markdown Plugins 147 | 148 | You can pass an array of [markdown-it plugins](https://www.npmjs.com/browse/keyword/markdown-it-plugin) via the `markdownPlugins` option with or without their own options. 149 | 150 | ```js 151 | const reshape = require('reshape') 152 | const standard = require('reshape-standard') 153 | const emoji = require('markdown-it-emoji') 154 | const anchor = require('markdown-it-anchor') 155 | const toc = require('markdown-it-table-of-contents') 156 | 157 | reshape( 158 | standard((markdownPlugins: [emoji, anchor, [toc, { containerClass: 'toc' }]])) 159 | ) 160 | .process(someHtml) 161 | .then(res => console.log(res.output())) 162 | ``` 163 | 164 | ### License & Contributing 165 | 166 | * Details on the license [can be found here](LICENSE.md) 167 | * Details on running tests and contributing [can be found here](contributing.md) 168 | -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- 1 | # Contributing to reshape-standard 2 | 3 | Hello there! First of all, thanks for being interested in reshape-standard and helping out. We all think you are awesome, and by contributing to open source projects, you are making the world a better place. That being said, there are a few ways to make the process of contributing code to reshape-standard smoother, detailed below: 4 | 5 | ### Filing Issues 6 | 7 | If you are opening an issue about a bug, make sure that you include clear steps for how we can reproduce the problem. _If we can't reproduce it, we can't fix it_. If you are suggesting a feature, make sure your explanation is clear and detailed. 8 | 9 | ### Getting Set Up 10 | 11 | - Clone the project down 12 | - Make sure [nodejs](http://nodejs.org) has been installed and is above version `6.x` 13 | - Run `npm install` 14 | - Put in work 15 | 16 | ### Testing 17 | 18 | This project is constantly evolving, and to ensure that things are secure and working for everyone, we need to have tests. If you are adding a new feature, please make sure to add a test for it. The test suite for this project uses [ava](https://github.com/sindresorhus/ava). 19 | 20 | To run the test suite just use `npm test` or install ava globally and use the `ava` command to run the tests. 21 | 22 | ### Code Style 23 | 24 | This project uses ES6, interpreted directly by node.js. To keep a consistent coding style in the project, we are using [standard js](http://standardjs.com/). In order for tests to pass, all code must pass standard js linting. This project also uses an [editorconfig](http://editorconfig.org/). It will make life much easier if you have the [editorconfig plugin](http://editorconfig.org/#download) for your text editor. For any inline documentation in the code, we're using [JSDoc](http://usejsdoc.org/). 25 | 26 | ### Commit Cleanliness 27 | 28 | It's ok if you start out with a bunch of experimentation and your commit log isn't totally clean, but before any pull requests are accepted, we like to have a nice clean commit log. That means [well-written and clear commit messages](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html) and commits that each do something significant, rather than being typo or bug fixes. 29 | 30 | If you submit a pull request that doesn't have a clean commit log, we will ask you to clean it up before we accept. This means being familiar with rebasing - if you are not, [this guide](https://help.github.com/articles/interactive-rebase) by github should help you to get started. And if you are still confused, feel free to ask! 31 | -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- 1 | const smartypants = require('retext-smartypants') 2 | let MarkdownIt = require('markdown-it') 3 | let expressions = require('reshape-expressions') 4 | let content = require('reshape-content') 5 | let include = require('reshape-include') 6 | let layouts = require('reshape-layouts') 7 | let retext = require('reshape-retext') 8 | let beautify = require('reshape-beautify') 9 | let minify = require('reshape-minify') 10 | let evalCode = require('reshape-eval-code') 11 | 12 | /** 13 | * Primary export, formats options and returns an object with intelligent 14 | * defaults. 15 | * @param {Object} [options={}] - options object 16 | * @param {Array} options.delimiters - passed to expressions plugin 17 | * @param {Array} options.unescapeDelimiters - passed to expressions plugin 18 | * @param {String} options.root - passed to layouts & include plugins 19 | * @param {Object} options.alias - passed to include plugin 20 | * @param {Object} options.parserRules - passed to include plugin 21 | * @param {Object|Function} [options.retext=smartypants] - passed to retext 22 | * plugin 23 | * @param {Object} [options.content={}] - passed to content plugin 24 | * @param {Object} options.markdown - passed to markdown-it constructor 25 | * @param {Object} options.locals - if passed, renders as html string 26 | * @param {Boolean|Object} options.minify - enable minify plugin if true or 27 | * fine tune it if an object of options is passed. Beautify otherwise. 28 | * @param {String} options.filename - copied directly to output 29 | * @param {Function} [options.parser=sugarml] - undefined if false 30 | * @param {Array|String} options.appendPlugins - appended to plugins array 31 | * @param {Array|String} options.prependPlugins - prepended to plugins array 32 | * @return {Object} valid reshape options object 33 | */ 34 | module.exports = function reshapeStandard (options = {}) { 35 | // add options for expressions, layouts, and includes if present 36 | const expressionsOpt = selectKeys(options, ['delimiters', 'unescapeDelimiters']) 37 | const layoutsOpt = selectKeys(options, ['root']) 38 | const includeOpt = selectKeys(options, ['root', 'alias', 'parserRules']) 39 | 40 | // Always return an object for locals 41 | if (typeof options.locals === 'undefined') options.locals = {} 42 | 43 | // If the user has not overridden the default markdown function, initialize 44 | // markdown-it and add the default 45 | let contentOpt = options.content || {} 46 | if (!contentOpt.md) { 47 | const markdownOpt = { typographer: true, linkify: true } 48 | const md = new MarkdownIt(Object.assign({}, markdownOpt, options.markdown)) 49 | // if the user has provided markdown-it plugins, load them into the parser instance 50 | ;(options.markdownPlugins || []).forEach((plugin) => { 51 | Array.isArray(plugin) ? md.use(...plugin) : md.use(plugin) 52 | }) 53 | contentOpt.md = md.render.bind(md) 54 | contentOpt.mdi = md.renderInline.bind(md) 55 | } 56 | 57 | // add all the default plugins with their options 58 | const plugins = [ 59 | layouts(layoutsOpt), 60 | include(includeOpt), 61 | expressions(expressionsOpt), 62 | // eval code here if it's a static view so that locals can be 63 | // processed by content, retext, minifier, etc 64 | (options.template ? x => x : evalCode(options.locals)), 65 | content(contentOpt), 66 | retext(options.retext || smartypants) 67 | ] 68 | 69 | // append and prepend plugins if needed 70 | if (options.appendPlugins) { 71 | plugins.push(...Array.prototype.concat(options.appendPlugins)) 72 | } 73 | 74 | if (options.prependPlugins) { 75 | plugins.unshift(...Array.prototype.concat(options.prependPlugins)) 76 | } 77 | 78 | // append the minify or beautify formatting plugin (always last) 79 | if (options.minify) { 80 | plugins.push(minify(typeof options.minify === 'object' ? options.minify : {})) 81 | } else { 82 | plugins.push(beautify()) 83 | } 84 | 85 | return { 86 | parser: options.parser, 87 | locals: options.locals, 88 | filename: options.filename, 89 | multi: options.multi, 90 | plugins 91 | } 92 | } 93 | 94 | /** 95 | * Given an options object and an array of key names, return an object filtered 96 | * to contain only the keys in the optNames array, if they exist on the options 97 | * object. 98 | * @param {Object} opts - full options object 99 | * @param {Array} optNames - keys to filter 100 | * @return {Object} object filtered for the specific keys 101 | */ 102 | function selectKeys (opts, optNames) { 103 | return optNames.reduce((m, opt) => { 104 | if (typeof opts[opt] !== 'undefined') { m[opt] = opts[opt] }; return m 105 | }, {}) 106 | } 107 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "reshape-standard", 3 | "description": "a standard plugin pack for reshape", 4 | "version": "3.3.0", 5 | "author": "Jeff Escalante", 6 | "ava": { 7 | "verbose": "true" 8 | }, 9 | "bugs": "https://github.com/reshape/standard/issues", 10 | "dependencies": { 11 | "markdown-it": "^8.4.0", 12 | "reshape-beautify": "^0.1.2", 13 | "reshape-content": "^0.3.0", 14 | "reshape-eval-code": "^0.3.4", 15 | "reshape-expressions": "^0.1.5", 16 | "reshape-include": "^1.0.0", 17 | "reshape-layouts": "^1.0.0", 18 | "reshape-minify": "^1.1.0", 19 | "reshape-retext": "^1.0.1", 20 | "retext-smartypants": "^3.0.1" 21 | }, 22 | "devDependencies": { 23 | "ava": "^0.24.0", 24 | "codecov": "^3.0.0", 25 | "nyc": "^11.4.1", 26 | "reshape": "^0.4.2", 27 | "rewire": "^3.0.0", 28 | "snazzy": "^7.0.0", 29 | "standard": "^10.0.3", 30 | "sugarml": "^0.7.0" 31 | }, 32 | "engines": { 33 | "node": ">= 6.0.0" 34 | }, 35 | "homepage": "https://github.com/reshape/standard", 36 | "keywords": [ 37 | "html", 38 | "reshape", 39 | "reshape-plugin", 40 | "standard" 41 | ], 42 | "license": "MIT", 43 | "main": "lib", 44 | "repository": "reshape/standard", 45 | "scripts": { 46 | "codecov": "nyc report -r lcovonly && codecov", 47 | "coverage": "nyc ava && nyc report --reporter=html && open ./coverage/index.html", 48 | "lint": "standard | snazzy", 49 | "test": "nyc ava" 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /test/fixtures/index.html: -------------------------------------------------------------------------------- 1 |

{{ "wow **amazing**" }}

2 | -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- 1 | const test = require('ava') 2 | const rewire = require('rewire') 3 | const standardRewired = rewire('..') 4 | const standard = require('..') 5 | const path = require('path') 6 | const fixtures = path.join(__dirname, 'fixtures') 7 | const reshape = require('reshape') 8 | const fs = require('fs') 9 | 10 | test('content options passed correctly', (t) => { 11 | const undo = standardRewired.__set__('content', (opts) => { 12 | t.truthy(opts.md === 'test') 13 | }) 14 | standardRewired({ content: { md: 'test' } }) 15 | undo() 16 | }) 17 | 18 | test('include options passed correctly', (t) => { 19 | const undo = standardRewired.__set__('include', (opts) => { 20 | t.truthy(opts.root === 'test') 21 | t.truthy(opts.alias === 'test') 22 | t.truthy(opts.parserRules === 'test') 23 | }) 24 | standardRewired({ root: 'test', alias: 'test', parserRules: 'test' }) 25 | undo() 26 | }) 27 | 28 | test('layouts options passed correctly', (t) => { 29 | const undo = standardRewired.__set__('layouts', (opts) => { 30 | t.truthy(opts.root === 'test') 31 | }) 32 | standardRewired({ root: 'test' }) 33 | undo() 34 | }) 35 | 36 | test('expressions options passed correctly', (t) => { 37 | const undo = standardRewired.__set__('expressions', (opts) => { 38 | t.truthy(opts.delimiters === 'test') 39 | t.truthy(opts.unescapeDelimiters === 'test') 40 | }) 41 | standardRewired({ delimiters: 'test', unescapeDelimiters: 'test' }) 42 | undo() 43 | }) 44 | 45 | test('retext options passed correctly', (t) => { 46 | const undo = standardRewired.__set__('retext', (opts) => { 47 | t.truthy(opts.length === 3) 48 | }) 49 | standardRewired({ retext: [1, 2, 3] }) 50 | undo() 51 | }) 52 | 53 | test('filename passed correctly', (t) => { 54 | const out = standard({ filename: 'test' }) 55 | t.truthy(out.filename === 'test') 56 | }) 57 | 58 | test('multi option passed correctly', (t) => { 59 | const out = standard({ multi: 'test' }) 60 | t.truthy(out.multi === 'test') 61 | }) 62 | 63 | test('defaults come out right', (t) => { 64 | const out = standard() 65 | t.truthy(Object.keys(out.locals).length === 0) 66 | t.truthy(out.filename === undefined) 67 | t.truthy(out.plugins.length === 7) 68 | }) 69 | 70 | test('content defaults', (t) => { 71 | const undo = standardRewired.__set__('content', (opts) => { 72 | t.truthy(typeof opts.md === 'function') 73 | t.truthy(typeof opts.mdi === 'function') 74 | }) 75 | standardRewired() 76 | undo() 77 | }) 78 | 79 | test('parserRules defaults', (t) => { 80 | const undo = standardRewired.__set__('include', (opts) => { 81 | t.truthy(opts.parserRules[0].test.exec) 82 | }) 83 | standardRewired({ parserRules: [{ test: /wow/ }] }) 84 | undo() 85 | }) 86 | 87 | test('retext default', (t) => { 88 | const undo = standardRewired.__set__('retext', (opts) => { 89 | t.truthy(typeof opts === 'function') 90 | }) 91 | standardRewired() 92 | undo() 93 | }) 94 | 95 | test('alternate parser', (t) => { 96 | const out = standard({ parser: 'test' }) 97 | t.truthy(out.parser === 'test') 98 | }) 99 | 100 | test('passed locals', (t) => { 101 | const out = standard({ locals: 'test' }) 102 | t.truthy(out.locals === 'test') 103 | }) 104 | 105 | test('minify option as a boolean', (t) => { 106 | const out = standard({ minify: true }) 107 | t.truthy(out.plugins[out.plugins.length - 1].name === 'minifyPlugin') 108 | }) 109 | 110 | test('minify option as an object', (t) => { 111 | const out = standard({ minify: { minifySvg: false, foo: 'bar' } }) 112 | t.truthy(out.plugins[out.plugins.length - 1].name === 'minifyPlugin') 113 | }) 114 | 115 | test('locals option', (t) => { 116 | const undo = standardRewired.__set__('evalCode', (opts) => { 117 | t.truthy(opts === true) 118 | }) 119 | standardRewired({ locals: true }) 120 | undo() 121 | }) 122 | 123 | test('template option', (t) => { 124 | const out = standard() 125 | t.truthy(out.plugins[3].name === 'evalCodePlugin') 126 | const out2 = standard({ template: true }) 127 | t.falsy(out2.plugins[3].name === 'evalCodePlugin') 128 | }) 129 | 130 | test('appendPlugins option', (t) => { 131 | const out = standard({ appendPlugins: ['test'] }) 132 | const out2 = standard({ appendPlugins: 'test' }) 133 | t.truthy(out.plugins[out.plugins.length - 2] === 'test') 134 | t.truthy(out2.plugins[out.plugins.length - 2] === 'test') 135 | }) 136 | 137 | test('prependPlugins option', (t) => { 138 | const out = standard({ prependPlugins: ['test'] }) 139 | const out2 = standard({ prependPlugins: 'test' }) 140 | t.truthy(out.plugins[0] === 'test') 141 | t.truthy(out2.plugins[0] === 'test') 142 | }) 143 | 144 | test('markdownPlugins option', (t) => { 145 | const plugins = [1, 2, 3] 146 | let count = 0 147 | function MarkdownIt () {} 148 | MarkdownIt.prototype.use = (plugin) => { 149 | t.truthy(plugins[count] === plugin) 150 | count++ 151 | } 152 | MarkdownIt.prototype.render = () => {} 153 | MarkdownIt.prototype.renderInline = () => {} 154 | const undo = standardRewired.__set__('MarkdownIt', MarkdownIt) 155 | standardRewired({ markdownPlugins: plugins }) 156 | undo() 157 | }) 158 | 159 | test('markdownPlugins option with options', (t) => { 160 | const plugins = [[1, 'options']] 161 | function MarkdownIt () {} 162 | MarkdownIt.prototype.use = (plugin, options) => { 163 | t.truthy(plugins[0][0] === plugin) 164 | t.truthy(plugins[0][1] === options) 165 | } 166 | MarkdownIt.prototype.render = () => {} 167 | MarkdownIt.prototype.renderInline = () => {} 168 | const undo = standardRewired.__set__('MarkdownIt', MarkdownIt) 169 | standardRewired({ markdownPlugins: plugins }) 170 | undo() 171 | }) 172 | 173 | test('template option turns off evalCode', (t) => { 174 | const out = standard({ template: true }) 175 | const out2 = standard() 176 | t.is(out.plugins[3].name, '') 177 | t.is(out2.plugins[3].name, 'evalCodePlugin') 178 | 179 | const markup = fs.readFileSync(path.join(fixtures, 'index.html'), 'utf8') 180 | return reshape(out) 181 | .process(markup) 182 | .then((res) => { 183 | t.is(res.output().trim(), '

__runtime.escape(“wow amazing”)

') 184 | }) 185 | }) 186 | 187 | test('integration', (t) => { 188 | const markup = fs.readFileSync(path.join(fixtures, 'index.html'), 'utf8') 189 | return reshape(standard()) 190 | .process(markup) 191 | .then((res) => { 192 | t.is(res.output().trim(), '

wow amazing

') 193 | }) 194 | }) 195 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@ava/babel-plugin-throws-helper@^2.0.0": 6 | version "2.0.0" 7 | resolved "https://registry.yarnpkg.com/@ava/babel-plugin-throws-helper/-/babel-plugin-throws-helper-2.0.0.tgz#2fc1fe3c211a71071a4eca7b8f7af5842cd1ae7c" 8 | 9 | "@ava/babel-preset-stage-4@^1.1.0": 10 | version "1.1.0" 11 | resolved "https://registry.yarnpkg.com/@ava/babel-preset-stage-4/-/babel-preset-stage-4-1.1.0.tgz#ae60be881a0babf7d35f52aba770d1f6194f76bd" 12 | dependencies: 13 | babel-plugin-check-es2015-constants "^6.8.0" 14 | babel-plugin-syntax-trailing-function-commas "^6.20.0" 15 | babel-plugin-transform-async-to-generator "^6.16.0" 16 | babel-plugin-transform-es2015-destructuring "^6.19.0" 17 | babel-plugin-transform-es2015-function-name "^6.9.0" 18 | babel-plugin-transform-es2015-modules-commonjs "^6.18.0" 19 | babel-plugin-transform-es2015-parameters "^6.21.0" 20 | babel-plugin-transform-es2015-spread "^6.8.0" 21 | babel-plugin-transform-es2015-sticky-regex "^6.8.0" 22 | babel-plugin-transform-es2015-unicode-regex "^6.11.0" 23 | babel-plugin-transform-exponentiation-operator "^6.8.0" 24 | package-hash "^1.2.0" 25 | 26 | "@ava/babel-preset-transform-test-files@^3.0.0": 27 | version "3.0.0" 28 | resolved "https://registry.yarnpkg.com/@ava/babel-preset-transform-test-files/-/babel-preset-transform-test-files-3.0.0.tgz#cded1196a8d8d9381a509240ab92e91a5ec069f7" 29 | dependencies: 30 | "@ava/babel-plugin-throws-helper" "^2.0.0" 31 | babel-plugin-espower "^2.3.2" 32 | 33 | "@ava/write-file-atomic@^2.2.0": 34 | version "2.2.0" 35 | resolved "https://registry.yarnpkg.com/@ava/write-file-atomic/-/write-file-atomic-2.2.0.tgz#d625046f3495f1f5e372135f473909684b429247" 36 | dependencies: 37 | graceful-fs "^4.1.11" 38 | imurmurhash "^0.1.4" 39 | slide "^1.1.5" 40 | 41 | "@concordance/react@^1.0.0": 42 | version "1.0.0" 43 | resolved "https://registry.yarnpkg.com/@concordance/react/-/react-1.0.0.tgz#fcf3cad020e5121bfd1c61d05bc3516aac25f734" 44 | dependencies: 45 | arrify "^1.0.1" 46 | 47 | abbrev@1: 48 | version "1.1.0" 49 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 50 | 51 | acorn-globals@^3.0.0: 52 | version "3.1.0" 53 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 54 | dependencies: 55 | acorn "^4.0.4" 56 | 57 | acorn-jsx@^3.0.0: 58 | version "3.0.1" 59 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 60 | dependencies: 61 | acorn "^3.0.4" 62 | 63 | acorn@^3.0.4, acorn@^3.1.0: 64 | version "3.3.0" 65 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 66 | 67 | acorn@^4.0.4: 68 | version "4.0.11" 69 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.11.tgz#edcda3bd937e7556410d42ed5860f67399c794c0" 70 | 71 | acorn@^5.0.1: 72 | version "5.0.3" 73 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.0.3.tgz#c460df08491463f028ccb82eab3730bf01087b3d" 74 | 75 | ajv-keywords@^1.0.0: 76 | version "1.5.1" 77 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 78 | 79 | ajv@^4.7.0, ajv@^4.9.1: 80 | version "4.11.5" 81 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.5.tgz#b6ee74657b993a01dce44b7944d56f485828d5bd" 82 | dependencies: 83 | co "^4.6.0" 84 | json-stable-stringify "^1.0.1" 85 | 86 | align-text@^0.1.1, align-text@^0.1.3: 87 | version "0.1.4" 88 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 89 | dependencies: 90 | kind-of "^3.0.2" 91 | longest "^1.0.1" 92 | repeat-string "^1.5.2" 93 | 94 | alphanum-sort@^1.0.1, alphanum-sort@^1.0.2: 95 | version "1.0.2" 96 | resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3" 97 | 98 | amdefine@>=0.0.4: 99 | version "1.0.1" 100 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 101 | 102 | ansi-align@^2.0.0: 103 | version "2.0.0" 104 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" 105 | dependencies: 106 | string-width "^2.0.0" 107 | 108 | ansi-escapes@^1.1.0: 109 | version "1.4.0" 110 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 111 | 112 | ansi-escapes@^3.0.0: 113 | version "3.0.0" 114 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92" 115 | 116 | ansi-regex@^2.0.0: 117 | version "2.1.1" 118 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 119 | 120 | ansi-regex@^3.0.0: 121 | version "3.0.0" 122 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 123 | 124 | ansi-styles@^2.2.1: 125 | version "2.2.1" 126 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 127 | 128 | ansi-styles@^3.1.0: 129 | version "3.1.0" 130 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.1.0.tgz#09c202d5c917ec23188caa5c9cb9179cd9547750" 131 | dependencies: 132 | color-convert "^1.0.0" 133 | 134 | ansi-styles@~1.0.0: 135 | version "1.0.0" 136 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-1.0.0.tgz#cb102df1c56f5123eab8b67cd7b98027a0279178" 137 | 138 | anymatch@^1.3.0: 139 | version "1.3.0" 140 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 141 | dependencies: 142 | arrify "^1.0.0" 143 | micromatch "^2.1.5" 144 | 145 | append-transform@^0.4.0: 146 | version "0.4.0" 147 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 148 | dependencies: 149 | default-require-extensions "^1.0.0" 150 | 151 | aproba@^1.0.3: 152 | version "1.1.1" 153 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab" 154 | 155 | archy@^1.0.0: 156 | version "1.0.0" 157 | resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" 158 | 159 | are-we-there-yet@~1.1.2: 160 | version "1.1.2" 161 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 162 | dependencies: 163 | delegates "^1.0.0" 164 | readable-stream "^2.0.0 || ^1.1.13" 165 | 166 | argparse@^1.0.7: 167 | version "1.0.9" 168 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 169 | dependencies: 170 | sprintf-js "~1.0.2" 171 | 172 | argv@0.0.2: 173 | version "0.0.2" 174 | resolved "https://registry.yarnpkg.com/argv/-/argv-0.0.2.tgz#ecbd16f8949b157183711b1bda334f37840185ab" 175 | 176 | arr-diff@^2.0.0: 177 | version "2.0.0" 178 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 179 | dependencies: 180 | arr-flatten "^1.0.1" 181 | 182 | arr-exclude@^1.0.0: 183 | version "1.0.0" 184 | resolved "https://registry.yarnpkg.com/arr-exclude/-/arr-exclude-1.0.0.tgz#dfc7c2e552a270723ccda04cf3128c8cbfe5c631" 185 | 186 | arr-flatten@^1.0.1: 187 | version "1.0.1" 188 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 189 | 190 | array-differ@^1.0.0: 191 | version "1.0.0" 192 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" 193 | 194 | array-find-index@^1.0.1: 195 | version "1.0.2" 196 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 197 | 198 | array-iterate@^1.0.0: 199 | version "1.1.0" 200 | resolved "https://registry.yarnpkg.com/array-iterate/-/array-iterate-1.1.0.tgz#4f13148ffffa5f2756b50460e5eac8eed31a14e6" 201 | dependencies: 202 | has "^1.0.1" 203 | 204 | array-union@^1.0.1: 205 | version "1.0.2" 206 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 207 | dependencies: 208 | array-uniq "^1.0.1" 209 | 210 | array-uniq@^1.0.1, array-uniq@^1.0.2: 211 | version "1.0.3" 212 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 213 | 214 | array-unique@^0.2.1: 215 | version "0.2.1" 216 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 217 | 218 | array.prototype.find@^2.0.1: 219 | version "2.0.4" 220 | resolved "https://registry.yarnpkg.com/array.prototype.find/-/array.prototype.find-2.0.4.tgz#556a5c5362c08648323ddaeb9de9d14bc1864c90" 221 | dependencies: 222 | define-properties "^1.1.2" 223 | es-abstract "^1.7.0" 224 | 225 | arrify@^1.0.0, arrify@^1.0.1: 226 | version "1.0.1" 227 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 228 | 229 | asn1@~0.2.3: 230 | version "0.2.3" 231 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 232 | 233 | assert-plus@1.0.0, assert-plus@^1.0.0: 234 | version "1.0.0" 235 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 236 | 237 | assert-plus@^0.2.0: 238 | version "0.2.0" 239 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 240 | 241 | async-each@^1.0.0: 242 | version "1.0.1" 243 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 244 | 245 | async@^1.4.0: 246 | version "1.5.2" 247 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 248 | 249 | asynckit@^0.4.0: 250 | version "0.4.0" 251 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 252 | 253 | auto-bind@^1.1.0: 254 | version "1.1.0" 255 | resolved "https://registry.yarnpkg.com/auto-bind/-/auto-bind-1.1.0.tgz#93b864dc7ee01a326281775d5c75ca0a751e5961" 256 | 257 | autoprefixer@^6.3.1: 258 | version "6.7.7" 259 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-6.7.7.tgz#1dbd1c835658e35ce3f9984099db00585c782014" 260 | dependencies: 261 | browserslist "^1.7.6" 262 | caniuse-db "^1.0.30000634" 263 | normalize-range "^0.1.2" 264 | num2fraction "^1.2.2" 265 | postcss "^5.2.16" 266 | postcss-value-parser "^3.2.3" 267 | 268 | ava-init@^0.2.0: 269 | version "0.2.0" 270 | resolved "https://registry.yarnpkg.com/ava-init/-/ava-init-0.2.0.tgz#9304c8b4c357d66e3dfdae1fbff47b1199d5c55d" 271 | dependencies: 272 | arr-exclude "^1.0.0" 273 | execa "^0.5.0" 274 | has-yarn "^1.0.0" 275 | read-pkg-up "^2.0.0" 276 | write-pkg "^2.0.0" 277 | 278 | ava@^0.24.0: 279 | version "0.24.0" 280 | resolved "https://registry.yarnpkg.com/ava/-/ava-0.24.0.tgz#dd0ab33a0b3ad2ac582f55e9a61caf8bcf7a9af1" 281 | dependencies: 282 | "@ava/babel-preset-stage-4" "^1.1.0" 283 | "@ava/babel-preset-transform-test-files" "^3.0.0" 284 | "@ava/write-file-atomic" "^2.2.0" 285 | "@concordance/react" "^1.0.0" 286 | ansi-escapes "^3.0.0" 287 | ansi-styles "^3.1.0" 288 | arr-flatten "^1.0.1" 289 | array-union "^1.0.1" 290 | array-uniq "^1.0.2" 291 | arrify "^1.0.0" 292 | auto-bind "^1.1.0" 293 | ava-init "^0.2.0" 294 | babel-core "^6.17.0" 295 | babel-generator "^6.26.0" 296 | babel-plugin-syntax-object-rest-spread "^6.13.0" 297 | bluebird "^3.0.0" 298 | caching-transform "^1.0.0" 299 | chalk "^2.0.1" 300 | chokidar "^1.4.2" 301 | clean-stack "^1.1.1" 302 | clean-yaml-object "^0.1.0" 303 | cli-cursor "^2.1.0" 304 | cli-spinners "^1.0.0" 305 | cli-truncate "^1.0.0" 306 | co-with-promise "^4.6.0" 307 | code-excerpt "^2.1.0" 308 | common-path-prefix "^1.0.0" 309 | concordance "^3.0.0" 310 | convert-source-map "^1.2.0" 311 | core-assert "^0.2.0" 312 | currently-unhandled "^0.4.1" 313 | debug "^3.0.1" 314 | dot-prop "^4.1.0" 315 | empower-core "^0.6.1" 316 | equal-length "^1.0.0" 317 | figures "^2.0.0" 318 | find-cache-dir "^1.0.0" 319 | fn-name "^2.0.0" 320 | get-port "^3.0.0" 321 | globby "^6.0.0" 322 | has-flag "^2.0.0" 323 | hullabaloo-config-manager "^1.1.0" 324 | ignore-by-default "^1.0.0" 325 | import-local "^0.1.1" 326 | indent-string "^3.0.0" 327 | is-ci "^1.0.7" 328 | is-generator-fn "^1.0.0" 329 | is-obj "^1.0.0" 330 | is-observable "^1.0.0" 331 | is-promise "^2.1.0" 332 | js-yaml "^3.8.2" 333 | last-line-stream "^1.0.0" 334 | lodash.clonedeepwith "^4.5.0" 335 | lodash.debounce "^4.0.3" 336 | lodash.difference "^4.3.0" 337 | lodash.flatten "^4.2.0" 338 | loud-rejection "^1.2.0" 339 | make-dir "^1.0.0" 340 | matcher "^1.0.0" 341 | md5-hex "^2.0.0" 342 | meow "^3.7.0" 343 | ms "^2.0.0" 344 | multimatch "^2.1.0" 345 | observable-to-promise "^0.5.0" 346 | option-chain "^1.0.0" 347 | package-hash "^2.0.0" 348 | pkg-conf "^2.0.0" 349 | plur "^2.0.0" 350 | pretty-ms "^3.0.0" 351 | require-precompiled "^0.1.0" 352 | resolve-cwd "^2.0.0" 353 | safe-buffer "^5.1.1" 354 | semver "^5.4.1" 355 | slash "^1.0.0" 356 | source-map-support "^0.5.0" 357 | stack-utils "^1.0.1" 358 | strip-ansi "^4.0.0" 359 | strip-bom-buf "^1.0.0" 360 | supports-color "^5.0.0" 361 | time-require "^0.1.2" 362 | trim-off-newlines "^1.0.1" 363 | unique-temp-dir "^1.0.0" 364 | update-notifier "^2.3.0" 365 | 366 | aws-sign2@~0.6.0: 367 | version "0.6.0" 368 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 369 | 370 | aws4@^1.2.1: 371 | version "1.6.0" 372 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 373 | 374 | babel-code-frame@^6.16.0, babel-code-frame@^6.22.0: 375 | version "6.22.0" 376 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 377 | dependencies: 378 | chalk "^1.1.0" 379 | esutils "^2.0.2" 380 | js-tokens "^3.0.0" 381 | 382 | babel-code-frame@^6.26.0: 383 | version "6.26.0" 384 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 385 | dependencies: 386 | chalk "^1.1.3" 387 | esutils "^2.0.2" 388 | js-tokens "^3.0.2" 389 | 390 | babel-core@^6.17.0, babel-core@^6.24.0: 391 | version "6.24.0" 392 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.0.tgz#8f36a0a77f5c155aed6f920b844d23ba56742a02" 393 | dependencies: 394 | babel-code-frame "^6.22.0" 395 | babel-generator "^6.24.0" 396 | babel-helpers "^6.23.0" 397 | babel-messages "^6.23.0" 398 | babel-register "^6.24.0" 399 | babel-runtime "^6.22.0" 400 | babel-template "^6.23.0" 401 | babel-traverse "^6.23.1" 402 | babel-types "^6.23.0" 403 | babylon "^6.11.0" 404 | convert-source-map "^1.1.0" 405 | debug "^2.1.1" 406 | json5 "^0.5.0" 407 | lodash "^4.2.0" 408 | minimatch "^3.0.2" 409 | path-is-absolute "^1.0.0" 410 | private "^0.1.6" 411 | slash "^1.0.0" 412 | source-map "^0.5.0" 413 | 414 | babel-core@^6.26.0: 415 | version "6.26.0" 416 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 417 | dependencies: 418 | babel-code-frame "^6.26.0" 419 | babel-generator "^6.26.0" 420 | babel-helpers "^6.24.1" 421 | babel-messages "^6.23.0" 422 | babel-register "^6.26.0" 423 | babel-runtime "^6.26.0" 424 | babel-template "^6.26.0" 425 | babel-traverse "^6.26.0" 426 | babel-types "^6.26.0" 427 | babylon "^6.18.0" 428 | convert-source-map "^1.5.0" 429 | debug "^2.6.8" 430 | json5 "^0.5.1" 431 | lodash "^4.17.4" 432 | minimatch "^3.0.4" 433 | path-is-absolute "^1.0.1" 434 | private "^0.1.7" 435 | slash "^1.0.0" 436 | source-map "^0.5.6" 437 | 438 | babel-generator@^6.1.0, babel-generator@^6.18.0, babel-generator@^6.24.0: 439 | version "6.24.0" 440 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.0.tgz#eba270a8cc4ce6e09a61be43465d7c62c1f87c56" 441 | dependencies: 442 | babel-messages "^6.23.0" 443 | babel-runtime "^6.22.0" 444 | babel-types "^6.23.0" 445 | detect-indent "^4.0.0" 446 | jsesc "^1.3.0" 447 | lodash "^4.2.0" 448 | source-map "^0.5.0" 449 | trim-right "^1.0.1" 450 | 451 | babel-generator@^6.26.0: 452 | version "6.26.0" 453 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 454 | dependencies: 455 | babel-messages "^6.23.0" 456 | babel-runtime "^6.26.0" 457 | babel-types "^6.26.0" 458 | detect-indent "^4.0.0" 459 | jsesc "^1.3.0" 460 | lodash "^4.17.4" 461 | source-map "^0.5.6" 462 | trim-right "^1.0.1" 463 | 464 | babel-helper-builder-binary-assignment-operator-visitor@^6.22.0: 465 | version "6.22.0" 466 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.22.0.tgz#29df56be144d81bdeac08262bfa41d2c5e91cdcd" 467 | dependencies: 468 | babel-helper-explode-assignable-expression "^6.22.0" 469 | babel-runtime "^6.22.0" 470 | babel-types "^6.22.0" 471 | 472 | babel-helper-call-delegate@^6.22.0: 473 | version "6.22.0" 474 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.22.0.tgz#119921b56120f17e9dae3f74b4f5cc7bcc1b37ef" 475 | dependencies: 476 | babel-helper-hoist-variables "^6.22.0" 477 | babel-runtime "^6.22.0" 478 | babel-traverse "^6.22.0" 479 | babel-types "^6.22.0" 480 | 481 | babel-helper-explode-assignable-expression@^6.22.0: 482 | version "6.22.0" 483 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.22.0.tgz#c97bf76eed3e0bae4048121f2b9dae1a4e7d0478" 484 | dependencies: 485 | babel-runtime "^6.22.0" 486 | babel-traverse "^6.22.0" 487 | babel-types "^6.22.0" 488 | 489 | babel-helper-function-name@^6.22.0: 490 | version "6.23.0" 491 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.23.0.tgz#25742d67175c8903dbe4b6cb9d9e1fcb8dcf23a6" 492 | dependencies: 493 | babel-helper-get-function-arity "^6.22.0" 494 | babel-runtime "^6.22.0" 495 | babel-template "^6.23.0" 496 | babel-traverse "^6.23.0" 497 | babel-types "^6.23.0" 498 | 499 | babel-helper-get-function-arity@^6.22.0: 500 | version "6.22.0" 501 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.22.0.tgz#0beb464ad69dc7347410ac6ade9f03a50634f5ce" 502 | dependencies: 503 | babel-runtime "^6.22.0" 504 | babel-types "^6.22.0" 505 | 506 | babel-helper-hoist-variables@^6.22.0: 507 | version "6.22.0" 508 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.22.0.tgz#3eacbf731d80705845dd2e9718f600cfb9b4ba72" 509 | dependencies: 510 | babel-runtime "^6.22.0" 511 | babel-types "^6.22.0" 512 | 513 | babel-helper-regex@^6.22.0: 514 | version "6.22.0" 515 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.22.0.tgz#79f532be1647b1f0ee3474b5f5c3da58001d247d" 516 | dependencies: 517 | babel-runtime "^6.22.0" 518 | babel-types "^6.22.0" 519 | lodash "^4.2.0" 520 | 521 | babel-helper-remap-async-to-generator@^6.22.0: 522 | version "6.22.0" 523 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.22.0.tgz#2186ae73278ed03b8b15ced089609da981053383" 524 | dependencies: 525 | babel-helper-function-name "^6.22.0" 526 | babel-runtime "^6.22.0" 527 | babel-template "^6.22.0" 528 | babel-traverse "^6.22.0" 529 | babel-types "^6.22.0" 530 | 531 | babel-helpers@^6.23.0: 532 | version "6.23.0" 533 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.23.0.tgz#4f8f2e092d0b6a8808a4bde79c27f1e2ecf0d992" 534 | dependencies: 535 | babel-runtime "^6.22.0" 536 | babel-template "^6.23.0" 537 | 538 | babel-helpers@^6.24.1: 539 | version "6.24.1" 540 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 541 | dependencies: 542 | babel-runtime "^6.22.0" 543 | babel-template "^6.24.1" 544 | 545 | babel-messages@^6.23.0: 546 | version "6.23.0" 547 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 548 | dependencies: 549 | babel-runtime "^6.22.0" 550 | 551 | babel-plugin-check-es2015-constants@^6.8.0: 552 | version "6.22.0" 553 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 554 | dependencies: 555 | babel-runtime "^6.22.0" 556 | 557 | babel-plugin-espower@^2.3.2: 558 | version "2.3.2" 559 | resolved "https://registry.yarnpkg.com/babel-plugin-espower/-/babel-plugin-espower-2.3.2.tgz#5516b8fcdb26c9f0e1d8160749f6e4c65e71271e" 560 | dependencies: 561 | babel-generator "^6.1.0" 562 | babylon "^6.1.0" 563 | call-matcher "^1.0.0" 564 | core-js "^2.0.0" 565 | espower-location-detector "^1.0.0" 566 | espurify "^1.6.0" 567 | estraverse "^4.1.1" 568 | 569 | babel-plugin-syntax-async-functions@^6.8.0: 570 | version "6.13.0" 571 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 572 | 573 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 574 | version "6.13.0" 575 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 576 | 577 | babel-plugin-syntax-object-rest-spread@^6.13.0: 578 | version "6.13.0" 579 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 580 | 581 | babel-plugin-syntax-trailing-function-commas@^6.20.0: 582 | version "6.22.0" 583 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 584 | 585 | babel-plugin-transform-async-to-generator@^6.16.0: 586 | version "6.22.0" 587 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.22.0.tgz#194b6938ec195ad36efc4c33a971acf00d8cd35e" 588 | dependencies: 589 | babel-helper-remap-async-to-generator "^6.22.0" 590 | babel-plugin-syntax-async-functions "^6.8.0" 591 | babel-runtime "^6.22.0" 592 | 593 | babel-plugin-transform-es2015-block-scoping@^6.26.0: 594 | version "6.26.0" 595 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 596 | dependencies: 597 | babel-runtime "^6.26.0" 598 | babel-template "^6.26.0" 599 | babel-traverse "^6.26.0" 600 | babel-types "^6.26.0" 601 | lodash "^4.17.4" 602 | 603 | babel-plugin-transform-es2015-destructuring@^6.19.0: 604 | version "6.23.0" 605 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 606 | dependencies: 607 | babel-runtime "^6.22.0" 608 | 609 | babel-plugin-transform-es2015-function-name@^6.9.0: 610 | version "6.22.0" 611 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.22.0.tgz#f5fcc8b09093f9a23c76ac3d9e392c3ec4b77104" 612 | dependencies: 613 | babel-helper-function-name "^6.22.0" 614 | babel-runtime "^6.22.0" 615 | babel-types "^6.22.0" 616 | 617 | babel-plugin-transform-es2015-modules-commonjs@^6.18.0: 618 | version "6.24.0" 619 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.0.tgz#e921aefb72c2cc26cb03d107626156413222134f" 620 | dependencies: 621 | babel-plugin-transform-strict-mode "^6.22.0" 622 | babel-runtime "^6.22.0" 623 | babel-template "^6.23.0" 624 | babel-types "^6.23.0" 625 | 626 | babel-plugin-transform-es2015-parameters@^6.21.0: 627 | version "6.23.0" 628 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.23.0.tgz#3a2aabb70c8af945d5ce386f1a4250625a83ae3b" 629 | dependencies: 630 | babel-helper-call-delegate "^6.22.0" 631 | babel-helper-get-function-arity "^6.22.0" 632 | babel-runtime "^6.22.0" 633 | babel-template "^6.23.0" 634 | babel-traverse "^6.23.0" 635 | babel-types "^6.23.0" 636 | 637 | babel-plugin-transform-es2015-spread@^6.8.0: 638 | version "6.22.0" 639 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 640 | dependencies: 641 | babel-runtime "^6.22.0" 642 | 643 | babel-plugin-transform-es2015-sticky-regex@^6.8.0: 644 | version "6.22.0" 645 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.22.0.tgz#ab316829e866ee3f4b9eb96939757d19a5bc4593" 646 | dependencies: 647 | babel-helper-regex "^6.22.0" 648 | babel-runtime "^6.22.0" 649 | babel-types "^6.22.0" 650 | 651 | babel-plugin-transform-es2015-unicode-regex@^6.11.0: 652 | version "6.22.0" 653 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.22.0.tgz#8d9cc27e7ee1decfe65454fb986452a04a613d20" 654 | dependencies: 655 | babel-helper-regex "^6.22.0" 656 | babel-runtime "^6.22.0" 657 | regexpu-core "^2.0.0" 658 | 659 | babel-plugin-transform-exponentiation-operator@^6.8.0: 660 | version "6.22.0" 661 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.22.0.tgz#d57c8335281918e54ef053118ce6eb108468084d" 662 | dependencies: 663 | babel-helper-builder-binary-assignment-operator-visitor "^6.22.0" 664 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 665 | babel-runtime "^6.22.0" 666 | 667 | babel-plugin-transform-strict-mode@^6.22.0: 668 | version "6.22.0" 669 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.22.0.tgz#e008df01340fdc87e959da65991b7e05970c8c7c" 670 | dependencies: 671 | babel-runtime "^6.22.0" 672 | babel-types "^6.22.0" 673 | 674 | babel-register@^6.24.0: 675 | version "6.24.0" 676 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.0.tgz#5e89f8463ba9970356d02eb07dabe3308b080cfd" 677 | dependencies: 678 | babel-core "^6.24.0" 679 | babel-runtime "^6.22.0" 680 | core-js "^2.4.0" 681 | home-or-tmp "^2.0.0" 682 | lodash "^4.2.0" 683 | mkdirp "^0.5.1" 684 | source-map-support "^0.4.2" 685 | 686 | babel-register@^6.26.0: 687 | version "6.26.0" 688 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 689 | dependencies: 690 | babel-core "^6.26.0" 691 | babel-runtime "^6.26.0" 692 | core-js "^2.5.0" 693 | home-or-tmp "^2.0.0" 694 | lodash "^4.17.4" 695 | mkdirp "^0.5.1" 696 | source-map-support "^0.4.15" 697 | 698 | babel-runtime@^6.22.0: 699 | version "6.23.0" 700 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 701 | dependencies: 702 | core-js "^2.4.0" 703 | regenerator-runtime "^0.10.0" 704 | 705 | babel-runtime@^6.26.0: 706 | version "6.26.0" 707 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 708 | dependencies: 709 | core-js "^2.4.0" 710 | regenerator-runtime "^0.11.0" 711 | 712 | babel-template@^6.16.0, babel-template@^6.22.0, babel-template@^6.23.0: 713 | version "6.23.0" 714 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.23.0.tgz#04d4f270adbb3aa704a8143ae26faa529238e638" 715 | dependencies: 716 | babel-runtime "^6.22.0" 717 | babel-traverse "^6.23.0" 718 | babel-types "^6.23.0" 719 | babylon "^6.11.0" 720 | lodash "^4.2.0" 721 | 722 | babel-template@^6.24.1, babel-template@^6.26.0: 723 | version "6.26.0" 724 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 725 | dependencies: 726 | babel-runtime "^6.26.0" 727 | babel-traverse "^6.26.0" 728 | babel-types "^6.26.0" 729 | babylon "^6.18.0" 730 | lodash "^4.17.4" 731 | 732 | babel-traverse@^6.18.0, babel-traverse@^6.22.0, babel-traverse@^6.23.0, babel-traverse@^6.23.1: 733 | version "6.23.1" 734 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.23.1.tgz#d3cb59010ecd06a97d81310065f966b699e14f48" 735 | dependencies: 736 | babel-code-frame "^6.22.0" 737 | babel-messages "^6.23.0" 738 | babel-runtime "^6.22.0" 739 | babel-types "^6.23.0" 740 | babylon "^6.15.0" 741 | debug "^2.2.0" 742 | globals "^9.0.0" 743 | invariant "^2.2.0" 744 | lodash "^4.2.0" 745 | 746 | babel-traverse@^6.26.0: 747 | version "6.26.0" 748 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 749 | dependencies: 750 | babel-code-frame "^6.26.0" 751 | babel-messages "^6.23.0" 752 | babel-runtime "^6.26.0" 753 | babel-types "^6.26.0" 754 | babylon "^6.18.0" 755 | debug "^2.6.8" 756 | globals "^9.18.0" 757 | invariant "^2.2.2" 758 | lodash "^4.17.4" 759 | 760 | babel-types@^6.18.0, babel-types@^6.22.0, babel-types@^6.23.0: 761 | version "6.23.0" 762 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.23.0.tgz#bb17179d7538bad38cd0c9e115d340f77e7e9acf" 763 | dependencies: 764 | babel-runtime "^6.22.0" 765 | esutils "^2.0.2" 766 | lodash "^4.2.0" 767 | to-fast-properties "^1.0.1" 768 | 769 | babel-types@^6.26.0: 770 | version "6.26.0" 771 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 772 | dependencies: 773 | babel-runtime "^6.26.0" 774 | esutils "^2.0.2" 775 | lodash "^4.17.4" 776 | to-fast-properties "^1.0.3" 777 | 778 | babylon@^6.1.0, babylon@^6.11.0, babylon@^6.15.0: 779 | version "6.17.4" 780 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.4.tgz#3e8b7402b88d22c3423e137a1577883b15ff869a" 781 | 782 | babylon@^6.18.0: 783 | version "6.18.0" 784 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 785 | 786 | bail@^1.0.0: 787 | version "1.0.1" 788 | resolved "https://registry.yarnpkg.com/bail/-/bail-1.0.1.tgz#912579de8b391aadf3c5fdf4cd2a0fc225df3bc2" 789 | 790 | balanced-match@^0.4.1, balanced-match@^0.4.2: 791 | version "0.4.2" 792 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 793 | 794 | balanced-match@^1.0.0: 795 | version "1.0.0" 796 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 797 | 798 | bcrypt-pbkdf@^1.0.0: 799 | version "1.0.1" 800 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 801 | dependencies: 802 | tweetnacl "^0.14.3" 803 | 804 | binary-extensions@^1.0.0: 805 | version "1.8.0" 806 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 807 | 808 | block-stream@*: 809 | version "0.0.9" 810 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 811 | dependencies: 812 | inherits "~2.0.0" 813 | 814 | bluebird@^3.0.0: 815 | version "3.5.0" 816 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.0.tgz#791420d7f551eea2897453a8a77653f96606d67c" 817 | 818 | boom@2.x.x: 819 | version "2.10.1" 820 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 821 | dependencies: 822 | hoek "2.x.x" 823 | 824 | boxen@^1.2.1: 825 | version "1.3.0" 826 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b" 827 | dependencies: 828 | ansi-align "^2.0.0" 829 | camelcase "^4.0.0" 830 | chalk "^2.0.1" 831 | cli-boxes "^1.0.0" 832 | string-width "^2.0.0" 833 | term-size "^1.2.0" 834 | widest-line "^2.0.0" 835 | 836 | brace-expansion@^1.0.0: 837 | version "1.1.6" 838 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 839 | dependencies: 840 | balanced-match "^0.4.1" 841 | concat-map "0.0.1" 842 | 843 | brace-expansion@^1.1.7: 844 | version "1.1.8" 845 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 846 | dependencies: 847 | balanced-match "^1.0.0" 848 | concat-map "0.0.1" 849 | 850 | braces@^1.8.2: 851 | version "1.8.5" 852 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 853 | dependencies: 854 | expand-range "^1.8.1" 855 | preserve "^0.2.0" 856 | repeat-element "^1.1.2" 857 | 858 | browserslist@^1.0.1, browserslist@^1.5.2, browserslist@^1.7.6: 859 | version "1.7.7" 860 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-1.7.7.tgz#0bd76704258be829b2398bb50e4b62d1a166b0b9" 861 | dependencies: 862 | caniuse-db "^1.0.30000639" 863 | electron-to-chromium "^1.2.7" 864 | 865 | buf-compare@^1.0.0: 866 | version "1.0.1" 867 | resolved "https://registry.yarnpkg.com/buf-compare/-/buf-compare-1.0.1.tgz#fef28da8b8113a0a0db4430b0b6467b69730b34a" 868 | 869 | buffer-shims@^1.0.0: 870 | version "1.0.0" 871 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 872 | 873 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 874 | version "1.1.1" 875 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 876 | 877 | caching-transform@^1.0.0: 878 | version "1.0.1" 879 | resolved "https://registry.yarnpkg.com/caching-transform/-/caching-transform-1.0.1.tgz#6dbdb2f20f8d8fbce79f3e94e9d1742dcdf5c0a1" 880 | dependencies: 881 | md5-hex "^1.2.0" 882 | mkdirp "^0.5.1" 883 | write-file-atomic "^1.1.4" 884 | 885 | call-matcher@^1.0.0: 886 | version "1.0.1" 887 | resolved "https://registry.yarnpkg.com/call-matcher/-/call-matcher-1.0.1.tgz#5134d077984f712a54dad3cbf62de28dce416ca8" 888 | dependencies: 889 | core-js "^2.0.0" 890 | deep-equal "^1.0.0" 891 | espurify "^1.6.0" 892 | estraverse "^4.0.0" 893 | 894 | call-signature@0.0.2: 895 | version "0.0.2" 896 | resolved "https://registry.yarnpkg.com/call-signature/-/call-signature-0.0.2.tgz#a84abc825a55ef4cb2b028bd74e205a65b9a4996" 897 | 898 | caller-path@^0.1.0: 899 | version "0.1.0" 900 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 901 | dependencies: 902 | callsites "^0.2.0" 903 | 904 | callsites@^0.2.0: 905 | version "0.2.0" 906 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 907 | 908 | camelcase-keys@^2.0.0: 909 | version "2.1.0" 910 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 911 | dependencies: 912 | camelcase "^2.0.0" 913 | map-obj "^1.0.0" 914 | 915 | camelcase@^1.0.2: 916 | version "1.2.1" 917 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 918 | 919 | camelcase@^2.0.0: 920 | version "2.1.1" 921 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 922 | 923 | camelcase@^4.0.0, camelcase@^4.1.0: 924 | version "4.1.0" 925 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 926 | 927 | caniuse-api@^1.5.2: 928 | version "1.5.3" 929 | resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-1.5.3.tgz#5018e674b51c393e4d50614275dc017e27c4a2a2" 930 | dependencies: 931 | browserslist "^1.0.1" 932 | caniuse-db "^1.0.30000346" 933 | lodash.memoize "^4.1.0" 934 | lodash.uniq "^4.3.0" 935 | 936 | caniuse-db@^1.0.30000346, caniuse-db@^1.0.30000634, caniuse-db@^1.0.30000639: 937 | version "1.0.30000649" 938 | resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000649.tgz#1ee1754a6df235450c8b7cd15e0ebf507221a86a" 939 | 940 | capture-stack-trace@^1.0.0: 941 | version "1.0.0" 942 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" 943 | 944 | caseless@~0.12.0: 945 | version "0.12.0" 946 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 947 | 948 | center-align@^0.1.1: 949 | version "0.1.3" 950 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 951 | dependencies: 952 | align-text "^0.1.3" 953 | lazy-cache "^1.0.3" 954 | 955 | chalk@^0.4.0: 956 | version "0.4.0" 957 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-0.4.0.tgz#5199a3ddcd0c1efe23bc08c1b027b06176e0c64f" 958 | dependencies: 959 | ansi-styles "~1.0.0" 960 | has-color "~0.1.0" 961 | strip-ansi "~0.1.0" 962 | 963 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 964 | version "1.1.3" 965 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 966 | dependencies: 967 | ansi-styles "^2.2.1" 968 | escape-string-regexp "^1.0.2" 969 | has-ansi "^2.0.0" 970 | strip-ansi "^3.0.0" 971 | supports-color "^2.0.0" 972 | 973 | chalk@^2.0.1: 974 | version "2.0.1" 975 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.0.1.tgz#dbec49436d2ae15f536114e76d14656cdbc0f44d" 976 | dependencies: 977 | ansi-styles "^3.1.0" 978 | escape-string-regexp "^1.0.5" 979 | supports-color "^4.0.0" 980 | 981 | chokidar@^1.4.2: 982 | version "1.6.1" 983 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 984 | dependencies: 985 | anymatch "^1.3.0" 986 | async-each "^1.0.0" 987 | glob-parent "^2.0.0" 988 | inherits "^2.0.1" 989 | is-binary-path "^1.0.0" 990 | is-glob "^2.0.0" 991 | path-is-absolute "^1.0.0" 992 | readdirp "^2.0.0" 993 | optionalDependencies: 994 | fsevents "^1.0.0" 995 | 996 | ci-info@^1.0.0: 997 | version "1.0.0" 998 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 999 | 1000 | circular-json@^0.3.1: 1001 | version "0.3.1" 1002 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 1003 | 1004 | clap@^1.0.9: 1005 | version "1.1.3" 1006 | resolved "https://registry.yarnpkg.com/clap/-/clap-1.1.3.tgz#b3bd36e93dd4cbfb395a3c26896352445265c05b" 1007 | dependencies: 1008 | chalk "^1.1.3" 1009 | 1010 | clean-stack@^1.1.1: 1011 | version "1.1.1" 1012 | resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-1.1.1.tgz#a1b3711122df162df7c7cb9b3c0470f28cb58adb" 1013 | 1014 | clean-yaml-object@^0.1.0: 1015 | version "0.1.0" 1016 | resolved "https://registry.yarnpkg.com/clean-yaml-object/-/clean-yaml-object-0.1.0.tgz#63fb110dc2ce1a84dc21f6d9334876d010ae8b68" 1017 | 1018 | cli-boxes@^1.0.0: 1019 | version "1.0.0" 1020 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 1021 | 1022 | cli-cursor@^1.0.1: 1023 | version "1.0.2" 1024 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 1025 | dependencies: 1026 | restore-cursor "^1.0.1" 1027 | 1028 | cli-cursor@^2.1.0: 1029 | version "2.1.0" 1030 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 1031 | dependencies: 1032 | restore-cursor "^2.0.0" 1033 | 1034 | cli-spinners@^1.0.0: 1035 | version "1.0.0" 1036 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-1.0.0.tgz#ef987ed3d48391ac3dab9180b406a742180d6e6a" 1037 | 1038 | cli-truncate@^1.0.0: 1039 | version "1.0.0" 1040 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-1.0.0.tgz#21eb91f47b3f6560f004db77a769b4668d9c5518" 1041 | dependencies: 1042 | slice-ansi "0.0.4" 1043 | string-width "^2.0.0" 1044 | 1045 | cli-width@^2.0.0: 1046 | version "2.1.0" 1047 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 1048 | 1049 | cliui@^2.1.0: 1050 | version "2.1.0" 1051 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 1052 | dependencies: 1053 | center-align "^0.1.1" 1054 | right-align "^0.1.1" 1055 | wordwrap "0.0.2" 1056 | 1057 | cliui@^4.0.0: 1058 | version "4.0.0" 1059 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.0.0.tgz#743d4650e05f36d1ed2575b59638d87322bfbbcc" 1060 | dependencies: 1061 | string-width "^2.1.1" 1062 | strip-ansi "^4.0.0" 1063 | wrap-ansi "^2.0.0" 1064 | 1065 | clone@^1.0.2: 1066 | version "1.0.2" 1067 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" 1068 | 1069 | co-with-promise@^4.6.0: 1070 | version "4.6.0" 1071 | resolved "https://registry.yarnpkg.com/co-with-promise/-/co-with-promise-4.6.0.tgz#413e7db6f5893a60b942cf492c4bec93db415ab7" 1072 | dependencies: 1073 | pinkie-promise "^1.0.0" 1074 | 1075 | co@^4.6.0: 1076 | version "4.6.0" 1077 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1078 | 1079 | coa@~1.0.1: 1080 | version "1.0.1" 1081 | resolved "https://registry.yarnpkg.com/coa/-/coa-1.0.1.tgz#7f959346cfc8719e3f7233cd6852854a7c67d8a3" 1082 | dependencies: 1083 | q "^1.1.2" 1084 | 1085 | code-excerpt@^2.1.0: 1086 | version "2.1.0" 1087 | resolved "https://registry.yarnpkg.com/code-excerpt/-/code-excerpt-2.1.0.tgz#5dcc081e88f4a7e3b554e9e35d7ef232d47f8147" 1088 | dependencies: 1089 | convert-to-spaces "^1.0.1" 1090 | 1091 | code-frame@^5.0.0: 1092 | version "5.0.0" 1093 | resolved "https://registry.yarnpkg.com/code-frame/-/code-frame-5.0.0.tgz#40030707ec46e1d99d5e52dc9f357fcad90d993d" 1094 | dependencies: 1095 | left-pad "^1.1.3" 1096 | 1097 | code-point-at@^1.0.0: 1098 | version "1.1.0" 1099 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1100 | 1101 | codecov@^3.0.0: 1102 | version "3.0.0" 1103 | resolved "https://registry.yarnpkg.com/codecov/-/codecov-3.0.0.tgz#c273b8c4f12945723e8dc9d25803d89343e5f28e" 1104 | dependencies: 1105 | argv "0.0.2" 1106 | request "2.81.0" 1107 | urlgrey "0.4.4" 1108 | 1109 | color-convert@^1.0.0, color-convert@^1.3.0: 1110 | version "1.9.0" 1111 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 1112 | dependencies: 1113 | color-name "^1.1.1" 1114 | 1115 | color-name@^1.0.0, color-name@^1.1.1: 1116 | version "1.1.2" 1117 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.2.tgz#5c8ab72b64bd2215d617ae9559ebb148475cf98d" 1118 | 1119 | color-string@^0.3.0: 1120 | version "0.3.0" 1121 | resolved "https://registry.yarnpkg.com/color-string/-/color-string-0.3.0.tgz#27d46fb67025c5c2fa25993bfbf579e47841b991" 1122 | dependencies: 1123 | color-name "^1.0.0" 1124 | 1125 | color@^0.11.0: 1126 | version "0.11.4" 1127 | resolved "https://registry.yarnpkg.com/color/-/color-0.11.4.tgz#6d7b5c74fb65e841cd48792ad1ed5e07b904d764" 1128 | dependencies: 1129 | clone "^1.0.2" 1130 | color-convert "^1.3.0" 1131 | color-string "^0.3.0" 1132 | 1133 | colormin@^1.0.5: 1134 | version "1.1.2" 1135 | resolved "https://registry.yarnpkg.com/colormin/-/colormin-1.1.2.tgz#ea2f7420a72b96881a38aae59ec124a6f7298133" 1136 | dependencies: 1137 | color "^0.11.0" 1138 | css-color-names "0.0.4" 1139 | has "^1.0.1" 1140 | 1141 | colors@~1.1.2: 1142 | version "1.1.2" 1143 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" 1144 | 1145 | combined-stream@^1.0.5, combined-stream@~1.0.5: 1146 | version "1.0.5" 1147 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 1148 | dependencies: 1149 | delayed-stream "~1.0.0" 1150 | 1151 | commander@~2.11.0: 1152 | version "2.11.0" 1153 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" 1154 | 1155 | common-path-prefix@^1.0.0: 1156 | version "1.0.0" 1157 | resolved "https://registry.yarnpkg.com/common-path-prefix/-/common-path-prefix-1.0.0.tgz#cd52f6f0712e0baab97d6f9732874f22f47752c0" 1158 | 1159 | commondir@^1.0.1: 1160 | version "1.0.1" 1161 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 1162 | 1163 | concat-map@0.0.1: 1164 | version "0.0.1" 1165 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1166 | 1167 | concat-stream@^1.5.0, concat-stream@^1.5.2: 1168 | version "1.6.0" 1169 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 1170 | dependencies: 1171 | inherits "^2.0.3" 1172 | readable-stream "^2.2.2" 1173 | typedarray "^0.0.6" 1174 | 1175 | concordance@^3.0.0: 1176 | version "3.0.0" 1177 | resolved "https://registry.yarnpkg.com/concordance/-/concordance-3.0.0.tgz#b2286af54405fc995fc7345b0b106d8dd073cb29" 1178 | dependencies: 1179 | date-time "^2.1.0" 1180 | esutils "^2.0.2" 1181 | fast-diff "^1.1.1" 1182 | function-name-support "^0.2.0" 1183 | js-string-escape "^1.0.1" 1184 | lodash.clonedeep "^4.5.0" 1185 | lodash.flattendeep "^4.4.0" 1186 | lodash.merge "^4.6.0" 1187 | md5-hex "^2.0.0" 1188 | semver "^5.3.0" 1189 | well-known-symbols "^1.0.0" 1190 | 1191 | configstore@^3.0.0: 1192 | version "3.0.0" 1193 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.0.0.tgz#e1b8669c1803ccc50b545e92f8e6e79aa80e0196" 1194 | dependencies: 1195 | dot-prop "^4.1.0" 1196 | graceful-fs "^4.1.2" 1197 | mkdirp "^0.5.0" 1198 | unique-string "^1.0.0" 1199 | write-file-atomic "^1.1.2" 1200 | xdg-basedir "^3.0.0" 1201 | 1202 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1203 | version "1.1.0" 1204 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1205 | 1206 | contains-path@^0.1.0: 1207 | version "0.1.0" 1208 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 1209 | 1210 | convert-source-map@^1.1.0, convert-source-map@^1.2.0, convert-source-map@^1.3.0: 1211 | version "1.5.0" 1212 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 1213 | 1214 | convert-source-map@^1.5.0: 1215 | version "1.5.1" 1216 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 1217 | 1218 | convert-to-spaces@^1.0.1: 1219 | version "1.0.2" 1220 | resolved "https://registry.yarnpkg.com/convert-to-spaces/-/convert-to-spaces-1.0.2.tgz#7e3e48bbe6d997b1417ddca2868204b4d3d85715" 1221 | 1222 | core-assert@^0.2.0: 1223 | version "0.2.1" 1224 | resolved "https://registry.yarnpkg.com/core-assert/-/core-assert-0.2.1.tgz#f85e2cf9bfed28f773cc8b3fa5c5b69bdc02fe3f" 1225 | dependencies: 1226 | buf-compare "^1.0.0" 1227 | is-error "^2.2.0" 1228 | 1229 | core-js@^2.0.0, core-js@^2.4.0: 1230 | version "2.4.1" 1231 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 1232 | 1233 | core-js@^2.5.0: 1234 | version "2.5.3" 1235 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e" 1236 | 1237 | core-util-is@~1.0.0: 1238 | version "1.0.2" 1239 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1240 | 1241 | create-error-class@^3.0.0: 1242 | version "3.0.2" 1243 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" 1244 | dependencies: 1245 | capture-stack-trace "^1.0.0" 1246 | 1247 | cross-spawn@^4, cross-spawn@^4.0.0: 1248 | version "4.0.2" 1249 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41" 1250 | dependencies: 1251 | lru-cache "^4.0.1" 1252 | which "^1.2.9" 1253 | 1254 | cross-spawn@^5.0.1: 1255 | version "5.1.0" 1256 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 1257 | dependencies: 1258 | lru-cache "^4.0.1" 1259 | shebang-command "^1.2.0" 1260 | which "^1.2.9" 1261 | 1262 | cryptiles@2.x.x: 1263 | version "2.0.5" 1264 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1265 | dependencies: 1266 | boom "2.x.x" 1267 | 1268 | crypto-random-string@^1.0.0: 1269 | version "1.0.0" 1270 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" 1271 | 1272 | css-color-names@0.0.4: 1273 | version "0.0.4" 1274 | resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0" 1275 | 1276 | cssnano@^3.7.4: 1277 | version "3.10.0" 1278 | resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-3.10.0.tgz#4f38f6cea2b9b17fa01490f23f1dc68ea65c1c38" 1279 | dependencies: 1280 | autoprefixer "^6.3.1" 1281 | decamelize "^1.1.2" 1282 | defined "^1.0.0" 1283 | has "^1.0.1" 1284 | object-assign "^4.0.1" 1285 | postcss "^5.0.14" 1286 | postcss-calc "^5.2.0" 1287 | postcss-colormin "^2.1.8" 1288 | postcss-convert-values "^2.3.4" 1289 | postcss-discard-comments "^2.0.4" 1290 | postcss-discard-duplicates "^2.0.1" 1291 | postcss-discard-empty "^2.0.1" 1292 | postcss-discard-overridden "^0.1.1" 1293 | postcss-discard-unused "^2.2.1" 1294 | postcss-filter-plugins "^2.0.0" 1295 | postcss-merge-idents "^2.1.5" 1296 | postcss-merge-longhand "^2.0.1" 1297 | postcss-merge-rules "^2.0.3" 1298 | postcss-minify-font-values "^1.0.2" 1299 | postcss-minify-gradients "^1.0.1" 1300 | postcss-minify-params "^1.0.4" 1301 | postcss-minify-selectors "^2.0.4" 1302 | postcss-normalize-charset "^1.1.0" 1303 | postcss-normalize-url "^3.0.7" 1304 | postcss-ordered-values "^2.1.0" 1305 | postcss-reduce-idents "^2.2.2" 1306 | postcss-reduce-initial "^1.0.0" 1307 | postcss-reduce-transforms "^1.0.3" 1308 | postcss-svgo "^2.1.1" 1309 | postcss-unique-selectors "^2.0.2" 1310 | postcss-value-parser "^3.2.3" 1311 | postcss-zindex "^2.0.1" 1312 | 1313 | csso@~2.3.1: 1314 | version "2.3.2" 1315 | resolved "https://registry.yarnpkg.com/csso/-/csso-2.3.2.tgz#ddd52c587033f49e94b71fc55569f252e8ff5f85" 1316 | dependencies: 1317 | clap "^1.0.9" 1318 | source-map "^0.5.3" 1319 | 1320 | currently-unhandled@^0.4.1: 1321 | version "0.4.1" 1322 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 1323 | dependencies: 1324 | array-find-index "^1.0.1" 1325 | 1326 | d@1: 1327 | version "1.0.0" 1328 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 1329 | dependencies: 1330 | es5-ext "^0.10.9" 1331 | 1332 | dashdash@^1.12.0: 1333 | version "1.14.1" 1334 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1335 | dependencies: 1336 | assert-plus "^1.0.0" 1337 | 1338 | date-time@^0.1.1: 1339 | version "0.1.1" 1340 | resolved "https://registry.yarnpkg.com/date-time/-/date-time-0.1.1.tgz#ed2f6d93d9790ce2fd66d5b5ff3edd5bbcbf3b07" 1341 | 1342 | date-time@^2.1.0: 1343 | version "2.1.0" 1344 | resolved "https://registry.yarnpkg.com/date-time/-/date-time-2.1.0.tgz#0286d1b4c769633b3ca13e1e62558d2dbdc2eba2" 1345 | dependencies: 1346 | time-zone "^1.0.0" 1347 | 1348 | debug-log@^1.0.0, debug-log@^1.0.1: 1349 | version "1.0.1" 1350 | resolved "https://registry.yarnpkg.com/debug-log/-/debug-log-1.0.1.tgz#2307632d4c04382b8df8a32f70b895046d52745f" 1351 | 1352 | debug@2.2.0: 1353 | version "2.2.0" 1354 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 1355 | dependencies: 1356 | ms "0.7.1" 1357 | 1358 | debug@^2.1.1, debug@^2.2.0: 1359 | version "2.6.3" 1360 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.3.tgz#0f7eb8c30965ec08c72accfa0130c8b79984141d" 1361 | dependencies: 1362 | ms "0.7.2" 1363 | 1364 | debug@^2.6.8: 1365 | version "2.6.9" 1366 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1367 | dependencies: 1368 | ms "2.0.0" 1369 | 1370 | debug@^3.0.1, debug@^3.1.0: 1371 | version "3.1.0" 1372 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 1373 | dependencies: 1374 | ms "2.0.0" 1375 | 1376 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: 1377 | version "1.2.0" 1378 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1379 | 1380 | deep-equal@^1.0.0: 1381 | version "1.0.1" 1382 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" 1383 | 1384 | deep-extend@~0.4.0: 1385 | version "0.4.1" 1386 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 1387 | 1388 | deep-is@~0.1.3: 1389 | version "0.1.3" 1390 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1391 | 1392 | default-require-extensions@^1.0.0: 1393 | version "1.0.0" 1394 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 1395 | dependencies: 1396 | strip-bom "^2.0.0" 1397 | 1398 | define-properties@^1.1.2: 1399 | version "1.1.2" 1400 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 1401 | dependencies: 1402 | foreach "^2.0.5" 1403 | object-keys "^1.0.8" 1404 | 1405 | defined@^1.0.0: 1406 | version "1.0.0" 1407 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 1408 | 1409 | deglob@^2.1.0: 1410 | version "2.1.0" 1411 | resolved "https://registry.yarnpkg.com/deglob/-/deglob-2.1.0.tgz#4d44abe16ef32c779b4972bd141a80325029a14a" 1412 | dependencies: 1413 | find-root "^1.0.0" 1414 | glob "^7.0.5" 1415 | ignore "^3.0.9" 1416 | pkg-config "^1.1.0" 1417 | run-parallel "^1.1.2" 1418 | uniq "^1.0.1" 1419 | 1420 | del@^2.0.2: 1421 | version "2.2.2" 1422 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1423 | dependencies: 1424 | globby "^5.0.0" 1425 | is-path-cwd "^1.0.0" 1426 | is-path-in-cwd "^1.0.0" 1427 | object-assign "^4.0.1" 1428 | pify "^2.0.0" 1429 | pinkie-promise "^2.0.0" 1430 | rimraf "^2.2.8" 1431 | 1432 | delayed-stream@~1.0.0: 1433 | version "1.0.0" 1434 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1435 | 1436 | delegates@^1.0.0: 1437 | version "1.0.0" 1438 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1439 | 1440 | detect-indent@^4.0.0: 1441 | version "4.0.0" 1442 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1443 | dependencies: 1444 | repeating "^2.0.0" 1445 | 1446 | doctrine@1.5.0, doctrine@^1.2.2: 1447 | version "1.5.0" 1448 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 1449 | dependencies: 1450 | esutils "^2.0.2" 1451 | isarray "^1.0.0" 1452 | 1453 | doctrine@^2.0.0: 1454 | version "2.0.0" 1455 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" 1456 | dependencies: 1457 | esutils "^2.0.2" 1458 | isarray "^1.0.0" 1459 | 1460 | dot-prop@^4.1.0: 1461 | version "4.1.1" 1462 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.1.1.tgz#a8493f0b7b5eeec82525b5c7587fa7de7ca859c1" 1463 | dependencies: 1464 | is-obj "^1.0.0" 1465 | 1466 | duplexer3@^0.1.4: 1467 | version "0.1.4" 1468 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" 1469 | 1470 | ecc-jsbn@~0.1.1: 1471 | version "0.1.1" 1472 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1473 | dependencies: 1474 | jsbn "~0.1.0" 1475 | 1476 | electron-to-chromium@^1.2.7: 1477 | version "1.3.2" 1478 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.2.tgz#b8ce5c93b308db0e92f6d0435c46ddec8f6363ab" 1479 | 1480 | empower-core@^0.6.1: 1481 | version "0.6.1" 1482 | resolved "https://registry.yarnpkg.com/empower-core/-/empower-core-0.6.1.tgz#6c187f502fcef7554d57933396aac655483772b1" 1483 | dependencies: 1484 | call-signature "0.0.2" 1485 | core-js "^2.0.0" 1486 | 1487 | entities@~1.1.1: 1488 | version "1.1.1" 1489 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0" 1490 | 1491 | equal-length@^1.0.0: 1492 | version "1.0.1" 1493 | resolved "https://registry.yarnpkg.com/equal-length/-/equal-length-1.0.1.tgz#21ca112d48ab24b4e1e7ffc0e5339d31fdfc274c" 1494 | 1495 | error-ex@^1.2.0: 1496 | version "1.3.1" 1497 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1498 | dependencies: 1499 | is-arrayish "^0.2.1" 1500 | 1501 | es-abstract@^1.7.0: 1502 | version "1.7.0" 1503 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.7.0.tgz#dfade774e01bfcd97f96180298c449c8623fb94c" 1504 | dependencies: 1505 | es-to-primitive "^1.1.1" 1506 | function-bind "^1.1.0" 1507 | is-callable "^1.1.3" 1508 | is-regex "^1.0.3" 1509 | 1510 | es-to-primitive@^1.1.1: 1511 | version "1.1.1" 1512 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 1513 | dependencies: 1514 | is-callable "^1.1.1" 1515 | is-date-object "^1.0.1" 1516 | is-symbol "^1.0.1" 1517 | 1518 | es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14: 1519 | version "0.10.15" 1520 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.15.tgz#c330a5934c1ee21284a7c081a86e5fd937c91ea6" 1521 | dependencies: 1522 | es6-iterator "2" 1523 | es6-symbol "~3.1" 1524 | 1525 | es6-error@^4.0.1, es6-error@^4.0.2: 1526 | version "4.0.2" 1527 | resolved "https://registry.yarnpkg.com/es6-error/-/es6-error-4.0.2.tgz#eec5c726eacef51b7f6b73c20db6e1b13b069c98" 1528 | 1529 | es6-iterator@2, es6-iterator@^2.0.1, es6-iterator@~2.0.1: 1530 | version "2.0.1" 1531 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512" 1532 | dependencies: 1533 | d "1" 1534 | es5-ext "^0.10.14" 1535 | es6-symbol "^3.1" 1536 | 1537 | es6-map@^0.1.3: 1538 | version "0.1.5" 1539 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" 1540 | dependencies: 1541 | d "1" 1542 | es5-ext "~0.10.14" 1543 | es6-iterator "~2.0.1" 1544 | es6-set "~0.1.5" 1545 | es6-symbol "~3.1.1" 1546 | event-emitter "~0.3.5" 1547 | 1548 | es6-set@~0.1.5: 1549 | version "0.1.5" 1550 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" 1551 | dependencies: 1552 | d "1" 1553 | es5-ext "~0.10.14" 1554 | es6-iterator "~2.0.1" 1555 | es6-symbol "3.1.1" 1556 | event-emitter "~0.3.5" 1557 | 1558 | es6-symbol@3.1.1, es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1, es6-symbol@~3.1.1: 1559 | version "3.1.1" 1560 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 1561 | dependencies: 1562 | d "1" 1563 | es5-ext "~0.10.14" 1564 | 1565 | es6-weak-map@^2.0.1: 1566 | version "2.0.2" 1567 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 1568 | dependencies: 1569 | d "1" 1570 | es5-ext "^0.10.14" 1571 | es6-iterator "^2.0.1" 1572 | es6-symbol "^3.1.1" 1573 | 1574 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.4, escape-string-regexp@^1.0.5: 1575 | version "1.0.5" 1576 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1577 | 1578 | escope@^3.6.0: 1579 | version "3.6.0" 1580 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 1581 | dependencies: 1582 | es6-map "^0.1.3" 1583 | es6-weak-map "^2.0.1" 1584 | esrecurse "^4.1.0" 1585 | estraverse "^4.1.1" 1586 | 1587 | eslint-config-standard-jsx@4.0.2: 1588 | version "4.0.2" 1589 | resolved "https://registry.yarnpkg.com/eslint-config-standard-jsx/-/eslint-config-standard-jsx-4.0.2.tgz#009e53c4ddb1e9ee70b4650ffe63a7f39f8836e1" 1590 | 1591 | eslint-config-standard@10.2.1: 1592 | version "10.2.1" 1593 | resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-10.2.1.tgz#c061e4d066f379dc17cd562c64e819b4dd454591" 1594 | 1595 | eslint-import-resolver-node@^0.2.0: 1596 | version "0.2.3" 1597 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.2.3.tgz#5add8106e8c928db2cba232bcd9efa846e3da16c" 1598 | dependencies: 1599 | debug "^2.2.0" 1600 | object-assign "^4.0.1" 1601 | resolve "^1.1.6" 1602 | 1603 | eslint-module-utils@^2.0.0: 1604 | version "2.0.0" 1605 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.0.0.tgz#a6f8c21d901358759cdc35dbac1982ae1ee58bce" 1606 | dependencies: 1607 | debug "2.2.0" 1608 | pkg-dir "^1.0.0" 1609 | 1610 | eslint-plugin-import@~2.2.0: 1611 | version "2.2.0" 1612 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.2.0.tgz#72ba306fad305d67c4816348a4699a4229ac8b4e" 1613 | dependencies: 1614 | builtin-modules "^1.1.1" 1615 | contains-path "^0.1.0" 1616 | debug "^2.2.0" 1617 | doctrine "1.5.0" 1618 | eslint-import-resolver-node "^0.2.0" 1619 | eslint-module-utils "^2.0.0" 1620 | has "^1.0.1" 1621 | lodash.cond "^4.3.0" 1622 | minimatch "^3.0.3" 1623 | pkg-up "^1.0.0" 1624 | 1625 | eslint-plugin-node@~4.2.2: 1626 | version "4.2.2" 1627 | resolved "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-4.2.2.tgz#82959ca9aed79fcbd28bb1b188d05cac04fb3363" 1628 | dependencies: 1629 | ignore "^3.0.11" 1630 | minimatch "^3.0.2" 1631 | object-assign "^4.0.1" 1632 | resolve "^1.1.7" 1633 | semver "5.3.0" 1634 | 1635 | eslint-plugin-promise@~3.5.0: 1636 | version "3.5.0" 1637 | resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-3.5.0.tgz#78fbb6ffe047201627569e85a6c5373af2a68fca" 1638 | 1639 | eslint-plugin-react@~6.10.0: 1640 | version "6.10.3" 1641 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-6.10.3.tgz#c5435beb06774e12c7db2f6abaddcbf900cd3f78" 1642 | dependencies: 1643 | array.prototype.find "^2.0.1" 1644 | doctrine "^1.2.2" 1645 | has "^1.0.1" 1646 | jsx-ast-utils "^1.3.4" 1647 | object.assign "^4.0.4" 1648 | 1649 | eslint-plugin-standard@~3.0.1: 1650 | version "3.0.1" 1651 | resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-3.0.1.tgz#34d0c915b45edc6f010393c7eef3823b08565cf2" 1652 | 1653 | eslint@~3.19.0: 1654 | version "3.19.0" 1655 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.19.0.tgz#c8fc6201c7f40dd08941b87c085767386a679acc" 1656 | dependencies: 1657 | babel-code-frame "^6.16.0" 1658 | chalk "^1.1.3" 1659 | concat-stream "^1.5.2" 1660 | debug "^2.1.1" 1661 | doctrine "^2.0.0" 1662 | escope "^3.6.0" 1663 | espree "^3.4.0" 1664 | esquery "^1.0.0" 1665 | estraverse "^4.2.0" 1666 | esutils "^2.0.2" 1667 | file-entry-cache "^2.0.0" 1668 | glob "^7.0.3" 1669 | globals "^9.14.0" 1670 | ignore "^3.2.0" 1671 | imurmurhash "^0.1.4" 1672 | inquirer "^0.12.0" 1673 | is-my-json-valid "^2.10.0" 1674 | is-resolvable "^1.0.0" 1675 | js-yaml "^3.5.1" 1676 | json-stable-stringify "^1.0.0" 1677 | levn "^0.3.0" 1678 | lodash "^4.0.0" 1679 | mkdirp "^0.5.0" 1680 | natural-compare "^1.4.0" 1681 | optionator "^0.8.2" 1682 | path-is-inside "^1.0.1" 1683 | pluralize "^1.2.1" 1684 | progress "^1.1.8" 1685 | require-uncached "^1.0.2" 1686 | shelljs "^0.7.5" 1687 | strip-bom "^3.0.0" 1688 | strip-json-comments "~2.0.1" 1689 | table "^3.7.8" 1690 | text-table "~0.2.0" 1691 | user-home "^2.0.0" 1692 | 1693 | espower-location-detector@^1.0.0: 1694 | version "1.0.0" 1695 | resolved "https://registry.yarnpkg.com/espower-location-detector/-/espower-location-detector-1.0.0.tgz#a17b7ecc59d30e179e2bef73fb4137704cb331b5" 1696 | dependencies: 1697 | is-url "^1.2.1" 1698 | path-is-absolute "^1.0.0" 1699 | source-map "^0.5.0" 1700 | xtend "^4.0.0" 1701 | 1702 | espree@^3.4.0: 1703 | version "3.4.1" 1704 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.1.tgz#28a83ab4aaed71ed8fe0f5efe61b76a05c13c4d2" 1705 | dependencies: 1706 | acorn "^5.0.1" 1707 | acorn-jsx "^3.0.0" 1708 | 1709 | esprima@^2.6.0: 1710 | version "2.7.3" 1711 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1712 | 1713 | esprima@^3.1.1: 1714 | version "3.1.3" 1715 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1716 | 1717 | espurify@^1.6.0: 1718 | version "1.7.0" 1719 | resolved "https://registry.yarnpkg.com/espurify/-/espurify-1.7.0.tgz#1c5cf6cbccc32e6f639380bd4f991fab9ba9d226" 1720 | dependencies: 1721 | core-js "^2.0.0" 1722 | 1723 | esquery@^1.0.0: 1724 | version "1.0.0" 1725 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 1726 | dependencies: 1727 | estraverse "^4.0.0" 1728 | 1729 | esrecurse@^4.1.0: 1730 | version "4.1.0" 1731 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 1732 | dependencies: 1733 | estraverse "~4.1.0" 1734 | object-assign "^4.0.1" 1735 | 1736 | estraverse@^4.0.0, estraverse@^4.1.1, estraverse@^4.2.0: 1737 | version "4.2.0" 1738 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1739 | 1740 | estraverse@~4.1.0: 1741 | version "4.1.1" 1742 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 1743 | 1744 | esutils@^2.0.2: 1745 | version "2.0.2" 1746 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1747 | 1748 | event-emitter@~0.3.5: 1749 | version "0.3.5" 1750 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 1751 | dependencies: 1752 | d "1" 1753 | es5-ext "~0.10.14" 1754 | 1755 | execa@^0.5.0: 1756 | version "0.5.1" 1757 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.5.1.tgz#de3fb85cb8d6e91c85bcbceb164581785cb57b36" 1758 | dependencies: 1759 | cross-spawn "^4.0.0" 1760 | get-stream "^2.2.0" 1761 | is-stream "^1.1.0" 1762 | npm-run-path "^2.0.0" 1763 | p-finally "^1.0.0" 1764 | signal-exit "^3.0.0" 1765 | strip-eof "^1.0.0" 1766 | 1767 | execa@^0.7.0: 1768 | version "0.7.0" 1769 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1770 | dependencies: 1771 | cross-spawn "^5.0.1" 1772 | get-stream "^3.0.0" 1773 | is-stream "^1.1.0" 1774 | npm-run-path "^2.0.0" 1775 | p-finally "^1.0.0" 1776 | signal-exit "^3.0.0" 1777 | strip-eof "^1.0.0" 1778 | 1779 | exit-hook@^1.0.0: 1780 | version "1.1.1" 1781 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1782 | 1783 | expand-brackets@^0.1.4: 1784 | version "0.1.5" 1785 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1786 | dependencies: 1787 | is-posix-bracket "^0.1.0" 1788 | 1789 | expand-range@^1.8.1: 1790 | version "1.8.2" 1791 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1792 | dependencies: 1793 | fill-range "^2.1.0" 1794 | 1795 | extend@^3.0.0, extend@~3.0.0: 1796 | version "3.0.0" 1797 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 1798 | 1799 | extglob@^0.3.1: 1800 | version "0.3.2" 1801 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1802 | dependencies: 1803 | is-extglob "^1.0.0" 1804 | 1805 | extsprintf@1.0.2: 1806 | version "1.0.2" 1807 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1808 | 1809 | fast-diff@^1.1.1: 1810 | version "1.1.1" 1811 | resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.1.1.tgz#0aea0e4e605b6a2189f0e936d4b7fbaf1b7cfd9b" 1812 | 1813 | fast-levenshtein@~2.0.4: 1814 | version "2.0.6" 1815 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1816 | 1817 | figures@^1.3.5: 1818 | version "1.7.0" 1819 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1820 | dependencies: 1821 | escape-string-regexp "^1.0.5" 1822 | object-assign "^4.1.0" 1823 | 1824 | figures@^2.0.0: 1825 | version "2.0.0" 1826 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1827 | dependencies: 1828 | escape-string-regexp "^1.0.5" 1829 | 1830 | file-entry-cache@^2.0.0: 1831 | version "2.0.0" 1832 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1833 | dependencies: 1834 | flat-cache "^1.2.1" 1835 | object-assign "^4.0.1" 1836 | 1837 | filename-regex@^2.0.0: 1838 | version "2.0.0" 1839 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 1840 | 1841 | fill-range@^2.1.0: 1842 | version "2.2.3" 1843 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1844 | dependencies: 1845 | is-number "^2.1.0" 1846 | isobject "^2.0.0" 1847 | randomatic "^1.1.3" 1848 | repeat-element "^1.1.2" 1849 | repeat-string "^1.5.2" 1850 | 1851 | find-cache-dir@^0.1.1: 1852 | version "0.1.1" 1853 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" 1854 | dependencies: 1855 | commondir "^1.0.1" 1856 | mkdirp "^0.5.1" 1857 | pkg-dir "^1.0.0" 1858 | 1859 | find-cache-dir@^1.0.0: 1860 | version "1.0.0" 1861 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-1.0.0.tgz#9288e3e9e3cc3748717d39eade17cf71fc30ee6f" 1862 | dependencies: 1863 | commondir "^1.0.1" 1864 | make-dir "^1.0.0" 1865 | pkg-dir "^2.0.0" 1866 | 1867 | find-root@^1.0.0: 1868 | version "1.0.0" 1869 | resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.0.0.tgz#962ff211aab25c6520feeeb8d6287f8f6e95807a" 1870 | 1871 | find-up@^1.0.0: 1872 | version "1.1.2" 1873 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1874 | dependencies: 1875 | path-exists "^2.0.0" 1876 | pinkie-promise "^2.0.0" 1877 | 1878 | find-up@^2.0.0, find-up@^2.1.0: 1879 | version "2.1.0" 1880 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1881 | dependencies: 1882 | locate-path "^2.0.0" 1883 | 1884 | flat-cache@^1.2.1: 1885 | version "1.2.2" 1886 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 1887 | dependencies: 1888 | circular-json "^0.3.1" 1889 | del "^2.0.2" 1890 | graceful-fs "^4.1.2" 1891 | write "^0.2.1" 1892 | 1893 | flatten@^1.0.2: 1894 | version "1.0.2" 1895 | resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.2.tgz#dae46a9d78fbe25292258cc1e780a41d95c03782" 1896 | 1897 | fn-name@^2.0.0: 1898 | version "2.0.1" 1899 | resolved "https://registry.yarnpkg.com/fn-name/-/fn-name-2.0.1.tgz#5214d7537a4d06a4a301c0cc262feb84188002e7" 1900 | 1901 | for-in@^1.0.1: 1902 | version "1.0.2" 1903 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1904 | 1905 | for-own@^0.1.4: 1906 | version "0.1.5" 1907 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1908 | dependencies: 1909 | for-in "^1.0.1" 1910 | 1911 | foreach@^2.0.5: 1912 | version "2.0.5" 1913 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1914 | 1915 | foreground-child@^1.5.3, foreground-child@^1.5.6: 1916 | version "1.5.6" 1917 | resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-1.5.6.tgz#4fd71ad2dfde96789b980a5c0a295937cb2f5ce9" 1918 | dependencies: 1919 | cross-spawn "^4" 1920 | signal-exit "^3.0.0" 1921 | 1922 | forever-agent@~0.6.1: 1923 | version "0.6.1" 1924 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1925 | 1926 | form-data@~2.1.1: 1927 | version "2.1.2" 1928 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 1929 | dependencies: 1930 | asynckit "^0.4.0" 1931 | combined-stream "^1.0.5" 1932 | mime-types "^2.1.12" 1933 | 1934 | fs.realpath@^1.0.0: 1935 | version "1.0.0" 1936 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1937 | 1938 | fsevents@^1.0.0: 1939 | version "1.1.1" 1940 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff" 1941 | dependencies: 1942 | nan "^2.3.0" 1943 | node-pre-gyp "^0.6.29" 1944 | 1945 | fstream-ignore@^1.0.5: 1946 | version "1.0.5" 1947 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1948 | dependencies: 1949 | fstream "^1.0.0" 1950 | inherits "2" 1951 | minimatch "^3.0.0" 1952 | 1953 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1954 | version "1.0.11" 1955 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1956 | dependencies: 1957 | graceful-fs "^4.1.2" 1958 | inherits "~2.0.0" 1959 | mkdirp ">=0.5 0" 1960 | rimraf "2" 1961 | 1962 | function-bind@^1.0.2, function-bind@^1.1.0: 1963 | version "1.1.0" 1964 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 1965 | 1966 | function-name-support@^0.2.0: 1967 | version "0.2.0" 1968 | resolved "https://registry.yarnpkg.com/function-name-support/-/function-name-support-0.2.0.tgz#55d3bfaa6eafd505a50f9bc81fdf57564a0bb071" 1969 | 1970 | gauge@~2.7.1: 1971 | version "2.7.3" 1972 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.3.tgz#1c23855f962f17b3ad3d0dc7443f304542edfe09" 1973 | dependencies: 1974 | aproba "^1.0.3" 1975 | console-control-strings "^1.0.0" 1976 | has-unicode "^2.0.0" 1977 | object-assign "^4.1.0" 1978 | signal-exit "^3.0.0" 1979 | string-width "^1.0.1" 1980 | strip-ansi "^3.0.1" 1981 | wide-align "^1.1.0" 1982 | 1983 | generate-function@^2.0.0: 1984 | version "2.0.0" 1985 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1986 | 1987 | generate-object-property@^1.1.0: 1988 | version "1.2.0" 1989 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1990 | dependencies: 1991 | is-property "^1.0.0" 1992 | 1993 | get-caller-file@^1.0.1: 1994 | version "1.0.2" 1995 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1996 | 1997 | get-port@^3.0.0: 1998 | version "3.1.0" 1999 | resolved "https://registry.yarnpkg.com/get-port/-/get-port-3.1.0.tgz#ef01b18a84ca6486970ff99e54446141a73ffd3e" 2000 | 2001 | get-stdin@^4.0.1: 2002 | version "4.0.1" 2003 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 2004 | 2005 | get-stdin@^5.0.1: 2006 | version "5.0.1" 2007 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" 2008 | 2009 | get-stream@^2.2.0: 2010 | version "2.3.1" 2011 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-2.3.1.tgz#5f38f93f346009666ee0150a054167f91bdd95de" 2012 | dependencies: 2013 | object-assign "^4.0.1" 2014 | pinkie-promise "^2.0.0" 2015 | 2016 | get-stream@^3.0.0: 2017 | version "3.0.0" 2018 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 2019 | 2020 | getpass@^0.1.1: 2021 | version "0.1.6" 2022 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 2023 | dependencies: 2024 | assert-plus "^1.0.0" 2025 | 2026 | glob-base@^0.3.0: 2027 | version "0.3.0" 2028 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 2029 | dependencies: 2030 | glob-parent "^2.0.0" 2031 | is-glob "^2.0.0" 2032 | 2033 | glob-parent@^2.0.0: 2034 | version "2.0.0" 2035 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 2036 | dependencies: 2037 | is-glob "^2.0.0" 2038 | 2039 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.0.6: 2040 | version "7.1.1" 2041 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 2042 | dependencies: 2043 | fs.realpath "^1.0.0" 2044 | inflight "^1.0.4" 2045 | inherits "2" 2046 | minimatch "^3.0.2" 2047 | once "^1.3.0" 2048 | path-is-absolute "^1.0.0" 2049 | 2050 | global-dirs@^0.1.0: 2051 | version "0.1.1" 2052 | resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445" 2053 | dependencies: 2054 | ini "^1.3.4" 2055 | 2056 | globals@^9.0.0, globals@^9.14.0: 2057 | version "9.17.0" 2058 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 2059 | 2060 | globals@^9.18.0: 2061 | version "9.18.0" 2062 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 2063 | 2064 | globby@^5.0.0: 2065 | version "5.0.0" 2066 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 2067 | dependencies: 2068 | array-union "^1.0.1" 2069 | arrify "^1.0.0" 2070 | glob "^7.0.3" 2071 | object-assign "^4.0.1" 2072 | pify "^2.0.0" 2073 | pinkie-promise "^2.0.0" 2074 | 2075 | globby@^6.0.0: 2076 | version "6.1.0" 2077 | resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" 2078 | dependencies: 2079 | array-union "^1.0.1" 2080 | glob "^7.0.3" 2081 | object-assign "^4.0.1" 2082 | pify "^2.0.0" 2083 | pinkie-promise "^2.0.0" 2084 | 2085 | got@^6.7.1: 2086 | version "6.7.1" 2087 | resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" 2088 | dependencies: 2089 | create-error-class "^3.0.0" 2090 | duplexer3 "^0.1.4" 2091 | get-stream "^3.0.0" 2092 | is-redirect "^1.0.0" 2093 | is-retry-allowed "^1.0.0" 2094 | is-stream "^1.0.0" 2095 | lowercase-keys "^1.0.0" 2096 | safe-buffer "^5.0.1" 2097 | timed-out "^4.0.0" 2098 | unzip-response "^2.0.1" 2099 | url-parse-lax "^1.0.0" 2100 | 2101 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 2102 | version "4.1.11" 2103 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 2104 | 2105 | handlebars@^4.0.3: 2106 | version "4.0.6" 2107 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.6.tgz#2ce4484850537f9c97a8026d5399b935c4ed4ed7" 2108 | dependencies: 2109 | async "^1.4.0" 2110 | optimist "^0.6.1" 2111 | source-map "^0.4.4" 2112 | optionalDependencies: 2113 | uglify-js "^2.6" 2114 | 2115 | har-schema@^1.0.5: 2116 | version "1.0.5" 2117 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 2118 | 2119 | har-validator@~4.2.1: 2120 | version "4.2.1" 2121 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 2122 | dependencies: 2123 | ajv "^4.9.1" 2124 | har-schema "^1.0.5" 2125 | 2126 | has-ansi@^2.0.0: 2127 | version "2.0.0" 2128 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 2129 | dependencies: 2130 | ansi-regex "^2.0.0" 2131 | 2132 | has-color@~0.1.0: 2133 | version "0.1.7" 2134 | resolved "https://registry.yarnpkg.com/has-color/-/has-color-0.1.7.tgz#67144a5260c34fc3cca677d041daf52fe7b78b2f" 2135 | 2136 | has-flag@^1.0.0: 2137 | version "1.0.0" 2138 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 2139 | 2140 | has-flag@^2.0.0: 2141 | version "2.0.0" 2142 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 2143 | 2144 | has-unicode@^2.0.0: 2145 | version "2.0.1" 2146 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 2147 | 2148 | has-yarn@^1.0.0: 2149 | version "1.0.0" 2150 | resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-1.0.0.tgz#89e25db604b725c8f5976fff0addc921b828a5a7" 2151 | 2152 | has@^1.0.1: 2153 | version "1.0.1" 2154 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 2155 | dependencies: 2156 | function-bind "^1.0.2" 2157 | 2158 | hawk@~3.1.3: 2159 | version "3.1.3" 2160 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 2161 | dependencies: 2162 | boom "2.x.x" 2163 | cryptiles "2.x.x" 2164 | hoek "2.x.x" 2165 | sntp "1.x.x" 2166 | 2167 | hoek@2.x.x: 2168 | version "2.16.3" 2169 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 2170 | 2171 | hoek@5.x.x: 2172 | version "5.0.2" 2173 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-5.0.2.tgz#d2f2c95d36fe7189cf8aa8c237abc1950eca1378" 2174 | 2175 | home-or-tmp@^2.0.0: 2176 | version "2.0.0" 2177 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 2178 | dependencies: 2179 | os-homedir "^1.0.0" 2180 | os-tmpdir "^1.0.1" 2181 | 2182 | hosted-git-info@^2.1.4: 2183 | version "2.4.1" 2184 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.1.tgz#4b0445e41c004a8bd1337773a4ff790ca40318c8" 2185 | 2186 | html-comment-regex@^1.1.0: 2187 | version "1.1.1" 2188 | resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.1.tgz#668b93776eaae55ebde8f3ad464b307a4963625e" 2189 | 2190 | http-signature@~1.1.0: 2191 | version "1.1.1" 2192 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 2193 | dependencies: 2194 | assert-plus "^0.2.0" 2195 | jsprim "^1.2.2" 2196 | sshpk "^1.7.0" 2197 | 2198 | hullabaloo-config-manager@^1.1.0: 2199 | version "1.1.1" 2200 | resolved "https://registry.yarnpkg.com/hullabaloo-config-manager/-/hullabaloo-config-manager-1.1.1.tgz#1d9117813129ad035fd9e8477eaf066911269fe3" 2201 | dependencies: 2202 | dot-prop "^4.1.0" 2203 | es6-error "^4.0.2" 2204 | graceful-fs "^4.1.11" 2205 | indent-string "^3.1.0" 2206 | json5 "^0.5.1" 2207 | lodash.clonedeep "^4.5.0" 2208 | lodash.clonedeepwith "^4.5.0" 2209 | lodash.isequal "^4.5.0" 2210 | lodash.merge "^4.6.0" 2211 | md5-hex "^2.0.0" 2212 | package-hash "^2.0.0" 2213 | pkg-dir "^2.0.0" 2214 | resolve-from "^3.0.0" 2215 | safe-buffer "^5.0.1" 2216 | 2217 | ignore-by-default@^1.0.0: 2218 | version "1.0.1" 2219 | resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" 2220 | 2221 | ignore@^3.0.11, ignore@^3.0.9, ignore@^3.2.0: 2222 | version "3.2.6" 2223 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.2.6.tgz#26e8da0644be0bb4cb39516f6c79f0e0f4ffe48c" 2224 | 2225 | import-lazy@^2.1.0: 2226 | version "2.1.0" 2227 | resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" 2228 | 2229 | import-local@^0.1.1: 2230 | version "0.1.1" 2231 | resolved "https://registry.yarnpkg.com/import-local/-/import-local-0.1.1.tgz#b1179572aacdc11c6a91009fb430dbcab5f668a8" 2232 | dependencies: 2233 | pkg-dir "^2.0.0" 2234 | resolve-cwd "^2.0.0" 2235 | 2236 | imurmurhash@^0.1.4: 2237 | version "0.1.4" 2238 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 2239 | 2240 | indent-string@^2.1.0: 2241 | version "2.1.0" 2242 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 2243 | dependencies: 2244 | repeating "^2.0.0" 2245 | 2246 | indent-string@^3.0.0, indent-string@^3.1.0: 2247 | version "3.1.0" 2248 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.1.0.tgz#08ff4334603388399b329e6b9538dc7a3cf5de7d" 2249 | 2250 | indexes-of@^1.0.1: 2251 | version "1.0.1" 2252 | resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" 2253 | 2254 | indx@^0.2.3: 2255 | version "0.2.3" 2256 | resolved "https://registry.yarnpkg.com/indx/-/indx-0.2.3.tgz#15dcf56ee9cf65c0234c513c27fbd580e70fbc50" 2257 | 2258 | inflight@^1.0.4: 2259 | version "1.0.6" 2260 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 2261 | dependencies: 2262 | once "^1.3.0" 2263 | wrappy "1" 2264 | 2265 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1: 2266 | version "2.0.3" 2267 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 2268 | 2269 | ini@^1.3.4: 2270 | version "1.3.5" 2271 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 2272 | 2273 | ini@~1.3.0: 2274 | version "1.3.4" 2275 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 2276 | 2277 | inquirer@^0.12.0: 2278 | version "0.12.0" 2279 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 2280 | dependencies: 2281 | ansi-escapes "^1.1.0" 2282 | ansi-regex "^2.0.0" 2283 | chalk "^1.0.0" 2284 | cli-cursor "^1.0.1" 2285 | cli-width "^2.0.0" 2286 | figures "^1.3.5" 2287 | lodash "^4.3.0" 2288 | readline2 "^1.0.1" 2289 | run-async "^0.1.0" 2290 | rx-lite "^3.1.2" 2291 | string-width "^1.0.1" 2292 | strip-ansi "^3.0.0" 2293 | through "^2.3.6" 2294 | 2295 | interpret@^1.0.0: 2296 | version "1.0.2" 2297 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.2.tgz#f4f623f0bb7122f15f5717c8e254b8161b5c5b2d" 2298 | 2299 | invariant@^2.2.0, invariant@^2.2.2: 2300 | version "2.2.2" 2301 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 2302 | dependencies: 2303 | loose-envify "^1.0.0" 2304 | 2305 | invert-kv@^1.0.0: 2306 | version "1.0.0" 2307 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 2308 | 2309 | irregular-plurals@^1.0.0: 2310 | version "1.2.0" 2311 | resolved "https://registry.yarnpkg.com/irregular-plurals/-/irregular-plurals-1.2.0.tgz#38f299834ba8c00c30be9c554e137269752ff3ac" 2312 | 2313 | is-absolute-url@^2.0.0: 2314 | version "2.1.0" 2315 | resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6" 2316 | 2317 | is-arrayish@^0.2.1: 2318 | version "0.2.1" 2319 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 2320 | 2321 | is-binary-path@^1.0.0: 2322 | version "1.0.1" 2323 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 2324 | dependencies: 2325 | binary-extensions "^1.0.0" 2326 | 2327 | is-buffer@^1.0.2, is-buffer@^1.1.4: 2328 | version "1.1.5" 2329 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 2330 | 2331 | is-builtin-module@^1.0.0: 2332 | version "1.0.0" 2333 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 2334 | dependencies: 2335 | builtin-modules "^1.0.0" 2336 | 2337 | is-callable@^1.1.1, is-callable@^1.1.3: 2338 | version "1.1.3" 2339 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 2340 | 2341 | is-ci@^1.0.7: 2342 | version "1.0.10" 2343 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 2344 | dependencies: 2345 | ci-info "^1.0.0" 2346 | 2347 | is-date-object@^1.0.1: 2348 | version "1.0.1" 2349 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 2350 | 2351 | is-dotfile@^1.0.0: 2352 | version "1.0.2" 2353 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 2354 | 2355 | is-equal-shallow@^0.1.3: 2356 | version "0.1.3" 2357 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 2358 | dependencies: 2359 | is-primitive "^2.0.0" 2360 | 2361 | is-error@^2.2.0: 2362 | version "2.2.1" 2363 | resolved "https://registry.yarnpkg.com/is-error/-/is-error-2.2.1.tgz#684a96d84076577c98f4cdb40c6d26a5123bf19c" 2364 | 2365 | is-extendable@^0.1.1: 2366 | version "0.1.1" 2367 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 2368 | 2369 | is-extglob@^1.0.0: 2370 | version "1.0.0" 2371 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 2372 | 2373 | is-finite@^1.0.0: 2374 | version "1.0.2" 2375 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 2376 | dependencies: 2377 | number-is-nan "^1.0.0" 2378 | 2379 | is-fullwidth-code-point@^1.0.0: 2380 | version "1.0.0" 2381 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 2382 | dependencies: 2383 | number-is-nan "^1.0.0" 2384 | 2385 | is-fullwidth-code-point@^2.0.0: 2386 | version "2.0.0" 2387 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 2388 | 2389 | is-generator-fn@^1.0.0: 2390 | version "1.0.0" 2391 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a" 2392 | 2393 | is-glob@^2.0.0, is-glob@^2.0.1: 2394 | version "2.0.1" 2395 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 2396 | dependencies: 2397 | is-extglob "^1.0.0" 2398 | 2399 | is-installed-globally@^0.1.0: 2400 | version "0.1.0" 2401 | resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.1.0.tgz#0dfd98f5a9111716dd535dda6492f67bf3d25a80" 2402 | dependencies: 2403 | global-dirs "^0.1.0" 2404 | is-path-inside "^1.0.0" 2405 | 2406 | is-my-json-valid@^2.10.0: 2407 | version "2.16.0" 2408 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693" 2409 | dependencies: 2410 | generate-function "^2.0.0" 2411 | generate-object-property "^1.1.0" 2412 | jsonpointer "^4.0.0" 2413 | xtend "^4.0.0" 2414 | 2415 | is-npm@^1.0.0: 2416 | version "1.0.0" 2417 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 2418 | 2419 | is-number@^2.0.2, is-number@^2.1.0: 2420 | version "2.1.0" 2421 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 2422 | dependencies: 2423 | kind-of "^3.0.2" 2424 | 2425 | is-obj@^1.0.0: 2426 | version "1.0.1" 2427 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 2428 | 2429 | is-observable@^0.2.0: 2430 | version "0.2.0" 2431 | resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-0.2.0.tgz#b361311d83c6e5d726cabf5e250b0237106f5ae2" 2432 | dependencies: 2433 | symbol-observable "^0.2.2" 2434 | 2435 | is-observable@^1.0.0: 2436 | version "1.1.0" 2437 | resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-1.1.0.tgz#b3e986c8f44de950867cab5403f5a3465005975e" 2438 | dependencies: 2439 | symbol-observable "^1.1.0" 2440 | 2441 | is-path-cwd@^1.0.0: 2442 | version "1.0.0" 2443 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 2444 | 2445 | is-path-in-cwd@^1.0.0: 2446 | version "1.0.0" 2447 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 2448 | dependencies: 2449 | is-path-inside "^1.0.0" 2450 | 2451 | is-path-inside@^1.0.0: 2452 | version "1.0.0" 2453 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 2454 | dependencies: 2455 | path-is-inside "^1.0.1" 2456 | 2457 | is-plain-obj@^1.0.0, is-plain-obj@^1.1.0: 2458 | version "1.1.0" 2459 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 2460 | 2461 | is-posix-bracket@^0.1.0: 2462 | version "0.1.1" 2463 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2464 | 2465 | is-primitive@^2.0.0: 2466 | version "2.0.0" 2467 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2468 | 2469 | is-promise@^2.1.0: 2470 | version "2.1.0" 2471 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 2472 | 2473 | is-property@^1.0.0: 2474 | version "1.0.2" 2475 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 2476 | 2477 | is-redirect@^1.0.0: 2478 | version "1.0.0" 2479 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 2480 | 2481 | is-regex@^1.0.3: 2482 | version "1.0.4" 2483 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 2484 | dependencies: 2485 | has "^1.0.1" 2486 | 2487 | is-resolvable@^1.0.0: 2488 | version "1.0.0" 2489 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 2490 | dependencies: 2491 | tryit "^1.0.1" 2492 | 2493 | is-retry-allowed@^1.0.0: 2494 | version "1.1.0" 2495 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" 2496 | 2497 | is-stream@^1.0.0, is-stream@^1.1.0: 2498 | version "1.1.0" 2499 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2500 | 2501 | is-svg@^2.0.0: 2502 | version "2.1.0" 2503 | resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-2.1.0.tgz#cf61090da0d9efbcab8722deba6f032208dbb0e9" 2504 | dependencies: 2505 | html-comment-regex "^1.1.0" 2506 | 2507 | is-symbol@^1.0.1: 2508 | version "1.0.1" 2509 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 2510 | 2511 | is-typedarray@~1.0.0: 2512 | version "1.0.0" 2513 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2514 | 2515 | is-url@^1.2.1: 2516 | version "1.2.2" 2517 | resolved "https://registry.yarnpkg.com/is-url/-/is-url-1.2.2.tgz#498905a593bf47cc2d9e7f738372bbf7696c7f26" 2518 | 2519 | is-utf8@^0.2.0, is-utf8@^0.2.1: 2520 | version "0.2.1" 2521 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 2522 | 2523 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2524 | version "1.0.0" 2525 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2526 | 2527 | isemail@3.x.x: 2528 | version "3.1.0" 2529 | resolved "https://registry.yarnpkg.com/isemail/-/isemail-3.1.0.tgz#d15156d67529d48241bc0e644df28281e21dd458" 2530 | dependencies: 2531 | punycode "2.x.x" 2532 | 2533 | isexe@^2.0.0: 2534 | version "2.0.0" 2535 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2536 | 2537 | isobject@^2.0.0: 2538 | version "2.1.0" 2539 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2540 | dependencies: 2541 | isarray "1.0.0" 2542 | 2543 | isstream@~0.1.2: 2544 | version "0.1.2" 2545 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2546 | 2547 | istanbul-lib-coverage@^1.1.1: 2548 | version "1.1.1" 2549 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" 2550 | 2551 | istanbul-lib-hook@^1.1.0: 2552 | version "1.1.0" 2553 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.1.0.tgz#8538d970372cb3716d53e55523dd54b557a8d89b" 2554 | dependencies: 2555 | append-transform "^0.4.0" 2556 | 2557 | istanbul-lib-instrument@^1.9.1: 2558 | version "1.9.1" 2559 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.9.1.tgz#250b30b3531e5d3251299fdd64b0b2c9db6b558e" 2560 | dependencies: 2561 | babel-generator "^6.18.0" 2562 | babel-template "^6.16.0" 2563 | babel-traverse "^6.18.0" 2564 | babel-types "^6.18.0" 2565 | babylon "^6.18.0" 2566 | istanbul-lib-coverage "^1.1.1" 2567 | semver "^5.3.0" 2568 | 2569 | istanbul-lib-report@^1.1.2: 2570 | version "1.1.2" 2571 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.2.tgz#922be27c13b9511b979bd1587359f69798c1d425" 2572 | dependencies: 2573 | istanbul-lib-coverage "^1.1.1" 2574 | mkdirp "^0.5.1" 2575 | path-parse "^1.0.5" 2576 | supports-color "^3.1.2" 2577 | 2578 | istanbul-lib-source-maps@^1.2.2: 2579 | version "1.2.2" 2580 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.2.tgz#750578602435f28a0c04ee6d7d9e0f2960e62c1c" 2581 | dependencies: 2582 | debug "^3.1.0" 2583 | istanbul-lib-coverage "^1.1.1" 2584 | mkdirp "^0.5.1" 2585 | rimraf "^2.6.1" 2586 | source-map "^0.5.3" 2587 | 2588 | istanbul-reports@^1.1.3: 2589 | version "1.1.3" 2590 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.3.tgz#3b9e1e8defb6d18b1d425da8e8b32c5a163f2d10" 2591 | dependencies: 2592 | handlebars "^4.0.3" 2593 | 2594 | jodid25519@^1.0.0: 2595 | version "1.0.2" 2596 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 2597 | dependencies: 2598 | jsbn "~0.1.0" 2599 | 2600 | joi@^13.1.1: 2601 | version "13.1.1" 2602 | resolved "https://registry.yarnpkg.com/joi/-/joi-13.1.1.tgz#1f306a5c3ded496da46629915d09e1ae3825185c" 2603 | dependencies: 2604 | hoek "5.x.x" 2605 | isemail "3.x.x" 2606 | topo "3.x.x" 2607 | 2608 | js-base64@^2.1.9: 2609 | version "2.1.9" 2610 | resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.1.9.tgz#f0e80ae039a4bd654b5f281fc93f04a914a7fcce" 2611 | 2612 | js-string-escape@^1.0.1: 2613 | version "1.0.1" 2614 | resolved "https://registry.yarnpkg.com/js-string-escape/-/js-string-escape-1.0.1.tgz#e2625badbc0d67c7533e9edc1068c587ae4137ef" 2615 | 2616 | js-tokens@^3.0.0: 2617 | version "3.0.1" 2618 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 2619 | 2620 | js-tokens@^3.0.2: 2621 | version "3.0.2" 2622 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 2623 | 2624 | js-yaml@^3.5.1, js-yaml@^3.8.2: 2625 | version "3.8.3" 2626 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.3.tgz#33a05ec481c850c8875929166fe1beb61c728766" 2627 | dependencies: 2628 | argparse "^1.0.7" 2629 | esprima "^3.1.1" 2630 | 2631 | js-yaml@~3.7.0: 2632 | version "3.7.0" 2633 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80" 2634 | dependencies: 2635 | argparse "^1.0.7" 2636 | esprima "^2.6.0" 2637 | 2638 | jsbn@~0.1.0: 2639 | version "0.1.1" 2640 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2641 | 2642 | jsesc@^1.3.0: 2643 | version "1.3.0" 2644 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2645 | 2646 | jsesc@~0.5.0: 2647 | version "0.5.0" 2648 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2649 | 2650 | json-schema@0.2.3: 2651 | version "0.2.3" 2652 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2653 | 2654 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 2655 | version "1.0.1" 2656 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2657 | dependencies: 2658 | jsonify "~0.0.0" 2659 | 2660 | json-stringify-safe@~5.0.1: 2661 | version "5.0.1" 2662 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2663 | 2664 | json5@^0.5.0, json5@^0.5.1: 2665 | version "0.5.1" 2666 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2667 | 2668 | jsonify@~0.0.0: 2669 | version "0.0.0" 2670 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2671 | 2672 | jsonpointer@^4.0.0: 2673 | version "4.0.1" 2674 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 2675 | 2676 | jsprim@^1.2.2: 2677 | version "1.4.0" 2678 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 2679 | dependencies: 2680 | assert-plus "1.0.0" 2681 | extsprintf "1.0.2" 2682 | json-schema "0.2.3" 2683 | verror "1.3.6" 2684 | 2685 | jsx-ast-utils@^1.3.4: 2686 | version "1.4.0" 2687 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-1.4.0.tgz#5afe38868f56bc8cc7aeaef0100ba8c75bd12591" 2688 | dependencies: 2689 | object-assign "^4.1.0" 2690 | 2691 | kind-of@^3.0.2: 2692 | version "3.1.0" 2693 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" 2694 | dependencies: 2695 | is-buffer "^1.0.2" 2696 | 2697 | last-line-stream@^1.0.0: 2698 | version "1.0.0" 2699 | resolved "https://registry.yarnpkg.com/last-line-stream/-/last-line-stream-1.0.0.tgz#d1b64d69f86ff24af2d04883a2ceee14520a5600" 2700 | dependencies: 2701 | through2 "^2.0.0" 2702 | 2703 | latest-version@^3.0.0: 2704 | version "3.1.0" 2705 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15" 2706 | dependencies: 2707 | package-json "^4.0.0" 2708 | 2709 | lazy-cache@^1.0.3: 2710 | version "1.0.4" 2711 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2712 | 2713 | lcid@^1.0.0: 2714 | version "1.0.0" 2715 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2716 | dependencies: 2717 | invert-kv "^1.0.0" 2718 | 2719 | left-pad@^1.1.3: 2720 | version "1.1.3" 2721 | resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.1.3.tgz#612f61c033f3a9e08e939f1caebeea41b6f3199a" 2722 | 2723 | levn@^0.3.0, levn@~0.3.0: 2724 | version "0.3.0" 2725 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2726 | dependencies: 2727 | prelude-ls "~1.1.2" 2728 | type-check "~0.3.2" 2729 | 2730 | linkify-it@^2.0.0: 2731 | version "2.0.3" 2732 | resolved "https://registry.yarnpkg.com/linkify-it/-/linkify-it-2.0.3.tgz#d94a4648f9b1c179d64fa97291268bdb6ce9434f" 2733 | dependencies: 2734 | uc.micro "^1.0.1" 2735 | 2736 | load-json-file@^1.0.0: 2737 | version "1.1.0" 2738 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2739 | dependencies: 2740 | graceful-fs "^4.1.2" 2741 | parse-json "^2.2.0" 2742 | pify "^2.0.0" 2743 | pinkie-promise "^2.0.0" 2744 | strip-bom "^2.0.0" 2745 | 2746 | load-json-file@^2.0.0: 2747 | version "2.0.0" 2748 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2749 | dependencies: 2750 | graceful-fs "^4.1.2" 2751 | parse-json "^2.2.0" 2752 | pify "^2.0.0" 2753 | strip-bom "^3.0.0" 2754 | 2755 | locate-path@^2.0.0: 2756 | version "2.0.0" 2757 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2758 | dependencies: 2759 | p-locate "^2.0.0" 2760 | path-exists "^3.0.0" 2761 | 2762 | lodash.clonedeep@^4.5.0: 2763 | version "4.5.0" 2764 | resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" 2765 | 2766 | lodash.clonedeepwith@^4.5.0: 2767 | version "4.5.0" 2768 | resolved "https://registry.yarnpkg.com/lodash.clonedeepwith/-/lodash.clonedeepwith-4.5.0.tgz#6ee30573a03a1a60d670a62ef33c10cf1afdbdd4" 2769 | 2770 | lodash.cond@^4.3.0: 2771 | version "4.5.2" 2772 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" 2773 | 2774 | lodash.debounce@^4.0.3: 2775 | version "4.0.8" 2776 | resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" 2777 | 2778 | lodash.difference@^4.3.0: 2779 | version "4.5.0" 2780 | resolved "https://registry.yarnpkg.com/lodash.difference/-/lodash.difference-4.5.0.tgz#9ccb4e505d486b91651345772885a2df27fd017c" 2781 | 2782 | lodash.flatten@^4.2.0: 2783 | version "4.4.0" 2784 | resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f" 2785 | 2786 | lodash.flattendeep@^4.4.0: 2787 | version "4.4.0" 2788 | resolved "https://registry.yarnpkg.com/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz#fb030917f86a3134e5bc9bec0d69e0013ddfedb2" 2789 | 2790 | lodash.isequal@^4.5.0: 2791 | version "4.5.0" 2792 | resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" 2793 | 2794 | lodash.memoize@^4.1.0: 2795 | version "4.1.2" 2796 | resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" 2797 | 2798 | lodash.merge@^4.4.0, lodash.merge@^4.6.0: 2799 | version "4.6.0" 2800 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.0.tgz#69884ba144ac33fe699737a6086deffadd0f89c5" 2801 | 2802 | lodash.uniq@^4.3.0: 2803 | version "4.5.0" 2804 | resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" 2805 | 2806 | lodash@^4.0.0, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.3.0: 2807 | version "4.17.4" 2808 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2809 | 2810 | longest@^1.0.1: 2811 | version "1.0.1" 2812 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2813 | 2814 | loose-envify@^1.0.0: 2815 | version "1.3.1" 2816 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2817 | dependencies: 2818 | js-tokens "^3.0.0" 2819 | 2820 | loud-rejection@^1.0.0, loud-rejection@^1.2.0: 2821 | version "1.6.0" 2822 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 2823 | dependencies: 2824 | currently-unhandled "^0.4.1" 2825 | signal-exit "^3.0.0" 2826 | 2827 | lowercase-keys@^1.0.0: 2828 | version "1.0.0" 2829 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 2830 | 2831 | lru-cache@^4.0.1: 2832 | version "4.0.2" 2833 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.2.tgz#1d17679c069cda5d040991a09dbc2c0db377e55e" 2834 | dependencies: 2835 | pseudomap "^1.0.1" 2836 | yallist "^2.0.0" 2837 | 2838 | macaddress@^0.2.8: 2839 | version "0.2.8" 2840 | resolved "https://registry.yarnpkg.com/macaddress/-/macaddress-0.2.8.tgz#5904dc537c39ec6dbefeae902327135fa8511f12" 2841 | 2842 | make-dir@^1.0.0: 2843 | version "1.0.0" 2844 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.0.0.tgz#97a011751e91dd87cfadef58832ebb04936de978" 2845 | dependencies: 2846 | pify "^2.3.0" 2847 | 2848 | map-obj@^1.0.0, map-obj@^1.0.1: 2849 | version "1.0.1" 2850 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 2851 | 2852 | markdown-it@^8.4.0: 2853 | version "8.4.0" 2854 | resolved "https://registry.yarnpkg.com/markdown-it/-/markdown-it-8.4.0.tgz#e2400881bf171f7018ed1bd9da441dac8af6306d" 2855 | dependencies: 2856 | argparse "^1.0.7" 2857 | entities "~1.1.1" 2858 | linkify-it "^2.0.0" 2859 | mdurl "^1.0.1" 2860 | uc.micro "^1.0.3" 2861 | 2862 | matcher@^1.0.0: 2863 | version "1.0.0" 2864 | resolved "https://registry.yarnpkg.com/matcher/-/matcher-1.0.0.tgz#aaf0c4816eb69b92094674175625f3466b0e3e19" 2865 | dependencies: 2866 | escape-string-regexp "^1.0.4" 2867 | 2868 | math-expression-evaluator@^1.2.14: 2869 | version "1.2.16" 2870 | resolved "https://registry.yarnpkg.com/math-expression-evaluator/-/math-expression-evaluator-1.2.16.tgz#b357fa1ca9faefb8e48d10c14ef2bcb2d9f0a7c9" 2871 | 2872 | md5-hex@^1.2.0, md5-hex@^1.3.0: 2873 | version "1.3.0" 2874 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-1.3.0.tgz#d2c4afe983c4370662179b8cad145219135046c4" 2875 | dependencies: 2876 | md5-o-matic "^0.1.1" 2877 | 2878 | md5-hex@^2.0.0: 2879 | version "2.0.0" 2880 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-2.0.0.tgz#d0588e9f1c74954492ecd24ac0ac6ce997d92e33" 2881 | dependencies: 2882 | md5-o-matic "^0.1.1" 2883 | 2884 | md5-o-matic@^0.1.1: 2885 | version "0.1.1" 2886 | resolved "https://registry.yarnpkg.com/md5-o-matic/-/md5-o-matic-0.1.1.tgz#822bccd65e117c514fab176b25945d54100a03c3" 2887 | 2888 | mdurl@^1.0.1: 2889 | version "1.0.1" 2890 | resolved "https://registry.yarnpkg.com/mdurl/-/mdurl-1.0.1.tgz#fe85b2ec75a59037f2adfec100fd6c601761152e" 2891 | 2892 | mem@^1.1.0: 2893 | version "1.1.0" 2894 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 2895 | dependencies: 2896 | mimic-fn "^1.0.0" 2897 | 2898 | meow@^3.7.0: 2899 | version "3.7.0" 2900 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 2901 | dependencies: 2902 | camelcase-keys "^2.0.0" 2903 | decamelize "^1.1.2" 2904 | loud-rejection "^1.0.0" 2905 | map-obj "^1.0.1" 2906 | minimist "^1.1.3" 2907 | normalize-package-data "^2.3.4" 2908 | object-assign "^4.0.1" 2909 | read-pkg-up "^1.0.1" 2910 | redent "^1.0.0" 2911 | trim-newlines "^1.0.0" 2912 | 2913 | merge-source-map@^1.0.2: 2914 | version "1.0.3" 2915 | resolved "https://registry.yarnpkg.com/merge-source-map/-/merge-source-map-1.0.3.tgz#da1415f2722a5119db07b14c4f973410863a2abf" 2916 | dependencies: 2917 | source-map "^0.5.3" 2918 | 2919 | micromatch@^2.1.5, micromatch@^2.3.11: 2920 | version "2.3.11" 2921 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2922 | dependencies: 2923 | arr-diff "^2.0.0" 2924 | array-unique "^0.2.1" 2925 | braces "^1.8.2" 2926 | expand-brackets "^0.1.4" 2927 | extglob "^0.3.1" 2928 | filename-regex "^2.0.0" 2929 | is-extglob "^1.0.0" 2930 | is-glob "^2.0.1" 2931 | kind-of "^3.0.2" 2932 | normalize-path "^2.0.1" 2933 | object.omit "^2.0.0" 2934 | parse-glob "^3.0.4" 2935 | regex-cache "^0.4.2" 2936 | 2937 | mime-db@~1.27.0: 2938 | version "1.27.0" 2939 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 2940 | 2941 | mime-types@^2.1.12, mime-types@~2.1.7: 2942 | version "2.1.15" 2943 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 2944 | dependencies: 2945 | mime-db "~1.27.0" 2946 | 2947 | mimic-fn@^1.0.0: 2948 | version "1.1.0" 2949 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 2950 | 2951 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3: 2952 | version "3.0.3" 2953 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 2954 | dependencies: 2955 | brace-expansion "^1.0.0" 2956 | 2957 | minimatch@^3.0.4: 2958 | version "3.0.4" 2959 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2960 | dependencies: 2961 | brace-expansion "^1.1.7" 2962 | 2963 | minimist@0.0.8, minimist@~0.0.1: 2964 | version "0.0.8" 2965 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2966 | 2967 | minimist@^1.1.0, minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0: 2968 | version "1.2.0" 2969 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2970 | 2971 | "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.1: 2972 | version "0.5.1" 2973 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2974 | dependencies: 2975 | minimist "0.0.8" 2976 | 2977 | ms@0.7.1: 2978 | version "0.7.1" 2979 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 2980 | 2981 | ms@0.7.2: 2982 | version "0.7.2" 2983 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 2984 | 2985 | ms@2.0.0, ms@^2.0.0: 2986 | version "2.0.0" 2987 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2988 | 2989 | multimatch@^2.1.0: 2990 | version "2.1.0" 2991 | resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b" 2992 | dependencies: 2993 | array-differ "^1.0.0" 2994 | array-union "^1.0.1" 2995 | arrify "^1.0.0" 2996 | minimatch "^3.0.0" 2997 | 2998 | mute-stream@0.0.5: 2999 | version "0.0.5" 3000 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 3001 | 3002 | nan@^2.3.0: 3003 | version "2.5.1" 3004 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.5.1.tgz#d5b01691253326a97a2bbee9e61c55d8d60351e2" 3005 | 3006 | natural-compare@^1.4.0: 3007 | version "1.4.0" 3008 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 3009 | 3010 | nlcst-to-string@^2.0.0: 3011 | version "2.0.0" 3012 | resolved "https://registry.yarnpkg.com/nlcst-to-string/-/nlcst-to-string-2.0.0.tgz#fc9606b8c32d17caa827074f6ea44f83e3c7bd71" 3013 | 3014 | node-pre-gyp@^0.6.29: 3015 | version "0.6.34" 3016 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.34.tgz#94ad1c798a11d7fc67381b50d47f8cc18d9799f7" 3017 | dependencies: 3018 | mkdirp "^0.5.1" 3019 | nopt "^4.0.1" 3020 | npmlog "^4.0.2" 3021 | rc "^1.1.7" 3022 | request "^2.81.0" 3023 | rimraf "^2.6.1" 3024 | semver "^5.3.0" 3025 | tar "^2.2.1" 3026 | tar-pack "^3.4.0" 3027 | 3028 | nopt@^4.0.1: 3029 | version "4.0.1" 3030 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 3031 | dependencies: 3032 | abbrev "1" 3033 | osenv "^0.1.4" 3034 | 3035 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: 3036 | version "2.3.6" 3037 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.6.tgz#498fa420c96401f787402ba21e600def9f981fff" 3038 | dependencies: 3039 | hosted-git-info "^2.1.4" 3040 | is-builtin-module "^1.0.0" 3041 | semver "2 || 3 || 4 || 5" 3042 | validate-npm-package-license "^3.0.1" 3043 | 3044 | normalize-path@^2.0.1: 3045 | version "2.1.1" 3046 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 3047 | dependencies: 3048 | remove-trailing-separator "^1.0.1" 3049 | 3050 | normalize-range@^0.1.2: 3051 | version "0.1.2" 3052 | resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" 3053 | 3054 | normalize-url@^1.4.0: 3055 | version "1.9.1" 3056 | resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-1.9.1.tgz#2cc0d66b31ea23036458436e3620d85954c66c3c" 3057 | dependencies: 3058 | object-assign "^4.0.1" 3059 | prepend-http "^1.0.0" 3060 | query-string "^4.1.0" 3061 | sort-keys "^1.0.0" 3062 | 3063 | npm-run-path@^2.0.0: 3064 | version "2.0.2" 3065 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 3066 | dependencies: 3067 | path-key "^2.0.0" 3068 | 3069 | npmlog@^4.0.2: 3070 | version "4.0.2" 3071 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f" 3072 | dependencies: 3073 | are-we-there-yet "~1.1.2" 3074 | console-control-strings "~1.1.0" 3075 | gauge "~2.7.1" 3076 | set-blocking "~2.0.0" 3077 | 3078 | num2fraction@^1.2.2: 3079 | version "1.2.2" 3080 | resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" 3081 | 3082 | number-is-nan@^1.0.0: 3083 | version "1.0.1" 3084 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 3085 | 3086 | nyc@^11.4.1: 3087 | version "11.4.1" 3088 | resolved "https://registry.yarnpkg.com/nyc/-/nyc-11.4.1.tgz#13fdf7e7ef22d027c61d174758f6978a68f4f5e5" 3089 | dependencies: 3090 | archy "^1.0.0" 3091 | arrify "^1.0.1" 3092 | caching-transform "^1.0.0" 3093 | convert-source-map "^1.3.0" 3094 | debug-log "^1.0.1" 3095 | default-require-extensions "^1.0.0" 3096 | find-cache-dir "^0.1.1" 3097 | find-up "^2.1.0" 3098 | foreground-child "^1.5.3" 3099 | glob "^7.0.6" 3100 | istanbul-lib-coverage "^1.1.1" 3101 | istanbul-lib-hook "^1.1.0" 3102 | istanbul-lib-instrument "^1.9.1" 3103 | istanbul-lib-report "^1.1.2" 3104 | istanbul-lib-source-maps "^1.2.2" 3105 | istanbul-reports "^1.1.3" 3106 | md5-hex "^1.2.0" 3107 | merge-source-map "^1.0.2" 3108 | micromatch "^2.3.11" 3109 | mkdirp "^0.5.0" 3110 | resolve-from "^2.0.0" 3111 | rimraf "^2.5.4" 3112 | signal-exit "^3.0.1" 3113 | spawn-wrap "^1.4.2" 3114 | test-exclude "^4.1.1" 3115 | yargs "^10.0.3" 3116 | yargs-parser "^8.0.0" 3117 | 3118 | oauth-sign@~0.8.1: 3119 | version "0.8.2" 3120 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 3121 | 3122 | object-assign@^4.0.1, object-assign@^4.1.0: 3123 | version "4.1.1" 3124 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 3125 | 3126 | object-keys@^1.0.10, object-keys@^1.0.8: 3127 | version "1.0.11" 3128 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 3129 | 3130 | object.assign@^4.0.4: 3131 | version "4.0.4" 3132 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.0.4.tgz#b1c9cc044ef1b9fe63606fc141abbb32e14730cc" 3133 | dependencies: 3134 | define-properties "^1.1.2" 3135 | function-bind "^1.1.0" 3136 | object-keys "^1.0.10" 3137 | 3138 | object.omit@^2.0.0: 3139 | version "2.0.1" 3140 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 3141 | dependencies: 3142 | for-own "^0.1.4" 3143 | is-extendable "^0.1.1" 3144 | 3145 | objectfn@^2.0.0: 3146 | version "2.0.0" 3147 | resolved "https://registry.yarnpkg.com/objectfn/-/objectfn-2.0.0.tgz#3fbc9d2c43690bf2b418ba5e3486e3cbb5b99e95" 3148 | 3149 | observable-to-promise@^0.5.0: 3150 | version "0.5.0" 3151 | resolved "https://registry.yarnpkg.com/observable-to-promise/-/observable-to-promise-0.5.0.tgz#c828f0f0dc47e9f86af8a4977c5d55076ce7a91f" 3152 | dependencies: 3153 | is-observable "^0.2.0" 3154 | symbol-observable "^1.0.4" 3155 | 3156 | once@^1.3.0, once@^1.3.3: 3157 | version "1.4.0" 3158 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 3159 | dependencies: 3160 | wrappy "1" 3161 | 3162 | onetime@^1.0.0: 3163 | version "1.1.0" 3164 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 3165 | 3166 | onetime@^2.0.0: 3167 | version "2.0.1" 3168 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 3169 | dependencies: 3170 | mimic-fn "^1.0.0" 3171 | 3172 | optimist@^0.6.1: 3173 | version "0.6.1" 3174 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 3175 | dependencies: 3176 | minimist "~0.0.1" 3177 | wordwrap "~0.0.2" 3178 | 3179 | option-chain@^1.0.0: 3180 | version "1.0.0" 3181 | resolved "https://registry.yarnpkg.com/option-chain/-/option-chain-1.0.0.tgz#938d73bd4e1783f948d34023644ada23669e30f2" 3182 | 3183 | optionator@^0.8.2: 3184 | version "0.8.2" 3185 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 3186 | dependencies: 3187 | deep-is "~0.1.3" 3188 | fast-levenshtein "~2.0.4" 3189 | levn "~0.3.0" 3190 | prelude-ls "~1.1.2" 3191 | type-check "~0.3.2" 3192 | wordwrap "~1.0.0" 3193 | 3194 | os-homedir@^1.0.0, os-homedir@^1.0.1: 3195 | version "1.0.2" 3196 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 3197 | 3198 | os-locale@^2.0.0: 3199 | version "2.0.0" 3200 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.0.0.tgz#15918ded510522b81ee7ae5a309d54f639fc39a4" 3201 | dependencies: 3202 | execa "^0.5.0" 3203 | lcid "^1.0.0" 3204 | mem "^1.1.0" 3205 | 3206 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 3207 | version "1.0.2" 3208 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 3209 | 3210 | osenv@^0.1.4: 3211 | version "0.1.4" 3212 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 3213 | dependencies: 3214 | os-homedir "^1.0.0" 3215 | os-tmpdir "^1.0.0" 3216 | 3217 | p-finally@^1.0.0: 3218 | version "1.0.0" 3219 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 3220 | 3221 | p-limit@^1.1.0: 3222 | version "1.1.0" 3223 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 3224 | 3225 | p-locate@^2.0.0: 3226 | version "2.0.0" 3227 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 3228 | dependencies: 3229 | p-limit "^1.1.0" 3230 | 3231 | package-hash@^1.2.0: 3232 | version "1.2.0" 3233 | resolved "https://registry.yarnpkg.com/package-hash/-/package-hash-1.2.0.tgz#003e56cd57b736a6ed6114cc2b81542672770e44" 3234 | dependencies: 3235 | md5-hex "^1.3.0" 3236 | 3237 | package-hash@^2.0.0: 3238 | version "2.0.0" 3239 | resolved "https://registry.yarnpkg.com/package-hash/-/package-hash-2.0.0.tgz#78ae326c89e05a4d813b68601977af05c00d2a0d" 3240 | dependencies: 3241 | graceful-fs "^4.1.11" 3242 | lodash.flattendeep "^4.4.0" 3243 | md5-hex "^2.0.0" 3244 | release-zalgo "^1.0.0" 3245 | 3246 | package-json@^4.0.0: 3247 | version "4.0.0" 3248 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.0.tgz#f3c9dc8738f5b59304d54d2cfb3f91d08fdd7998" 3249 | dependencies: 3250 | got "^6.7.1" 3251 | registry-auth-token "^3.0.1" 3252 | registry-url "^3.0.3" 3253 | semver "^5.1.0" 3254 | 3255 | parse-glob@^3.0.4: 3256 | version "3.0.4" 3257 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 3258 | dependencies: 3259 | glob-base "^0.3.0" 3260 | is-dotfile "^1.0.0" 3261 | is-extglob "^1.0.0" 3262 | is-glob "^2.0.0" 3263 | 3264 | parse-json@^2.2.0: 3265 | version "2.2.0" 3266 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 3267 | dependencies: 3268 | error-ex "^1.2.0" 3269 | 3270 | parse-latin@^4.0.0: 3271 | version "4.0.2" 3272 | resolved "https://registry.yarnpkg.com/parse-latin/-/parse-latin-4.0.2.tgz#e22f99fc1f7c0486b3b904bdf10f13b72a06f08c" 3273 | dependencies: 3274 | nlcst-to-string "^2.0.0" 3275 | unist-util-modify-children "^1.0.0" 3276 | unist-util-visit-children "^1.0.0" 3277 | 3278 | parse-ms@^0.1.0: 3279 | version "0.1.2" 3280 | resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-0.1.2.tgz#dd3fa25ed6c2efc7bdde12ad9b46c163aa29224e" 3281 | 3282 | parse-ms@^1.0.0: 3283 | version "1.0.1" 3284 | resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-1.0.1.tgz#56346d4749d78f23430ca0c713850aef91aa361d" 3285 | 3286 | parse5@^2.1.5: 3287 | version "2.2.3" 3288 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-2.2.3.tgz#0c4fc41c1000c5e6b93d48b03f8083837834e9f6" 3289 | 3290 | path-exists@^2.0.0: 3291 | version "2.1.0" 3292 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 3293 | dependencies: 3294 | pinkie-promise "^2.0.0" 3295 | 3296 | path-exists@^3.0.0: 3297 | version "3.0.0" 3298 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 3299 | 3300 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 3301 | version "1.0.1" 3302 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 3303 | 3304 | path-is-inside@^1.0.1: 3305 | version "1.0.2" 3306 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 3307 | 3308 | path-key@^2.0.0: 3309 | version "2.0.1" 3310 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 3311 | 3312 | path-parse@^1.0.5: 3313 | version "1.0.5" 3314 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 3315 | 3316 | path-type@^1.0.0: 3317 | version "1.1.0" 3318 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 3319 | dependencies: 3320 | graceful-fs "^4.1.2" 3321 | pify "^2.0.0" 3322 | pinkie-promise "^2.0.0" 3323 | 3324 | path-type@^2.0.0: 3325 | version "2.0.0" 3326 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 3327 | dependencies: 3328 | pify "^2.0.0" 3329 | 3330 | performance-now@^0.2.0: 3331 | version "0.2.0" 3332 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 3333 | 3334 | pify@^2.0.0, pify@^2.3.0: 3335 | version "2.3.0" 3336 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 3337 | 3338 | pinkie-promise@^1.0.0: 3339 | version "1.0.0" 3340 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-1.0.0.tgz#d1da67f5482563bb7cf57f286ae2822ecfbf3670" 3341 | dependencies: 3342 | pinkie "^1.0.0" 3343 | 3344 | pinkie-promise@^2.0.0: 3345 | version "2.0.1" 3346 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 3347 | dependencies: 3348 | pinkie "^2.0.0" 3349 | 3350 | pinkie@^1.0.0: 3351 | version "1.0.0" 3352 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-1.0.0.tgz#5a47f28ba1015d0201bda7bf0f358e47bec8c7e4" 3353 | 3354 | pinkie@^2.0.0: 3355 | version "2.0.4" 3356 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 3357 | 3358 | pkg-conf@^2.0.0: 3359 | version "2.0.0" 3360 | resolved "https://registry.yarnpkg.com/pkg-conf/-/pkg-conf-2.0.0.tgz#071c87650403bccfb9c627f58751bfe47c067279" 3361 | dependencies: 3362 | find-up "^2.0.0" 3363 | load-json-file "^2.0.0" 3364 | 3365 | pkg-config@^1.1.0: 3366 | version "1.1.1" 3367 | resolved "https://registry.yarnpkg.com/pkg-config/-/pkg-config-1.1.1.tgz#557ef22d73da3c8837107766c52eadabde298fe4" 3368 | dependencies: 3369 | debug-log "^1.0.0" 3370 | find-root "^1.0.0" 3371 | xtend "^4.0.1" 3372 | 3373 | pkg-dir@^1.0.0: 3374 | version "1.0.0" 3375 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 3376 | dependencies: 3377 | find-up "^1.0.0" 3378 | 3379 | pkg-dir@^2.0.0: 3380 | version "2.0.0" 3381 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" 3382 | dependencies: 3383 | find-up "^2.1.0" 3384 | 3385 | pkg-up@^1.0.0: 3386 | version "1.0.0" 3387 | resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-1.0.0.tgz#3e08fb461525c4421624a33b9f7e6d0af5b05a26" 3388 | dependencies: 3389 | find-up "^1.0.0" 3390 | 3391 | plur@^2.0.0, plur@^2.1.2: 3392 | version "2.1.2" 3393 | resolved "https://registry.yarnpkg.com/plur/-/plur-2.1.2.tgz#7482452c1a0f508e3e344eaec312c91c29dc655a" 3394 | dependencies: 3395 | irregular-plurals "^1.0.0" 3396 | 3397 | pluralize@^1.2.1: 3398 | version "1.2.1" 3399 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 3400 | 3401 | postcss-calc@^5.2.0: 3402 | version "5.3.1" 3403 | resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-5.3.1.tgz#77bae7ca928ad85716e2fda42f261bf7c1d65b5e" 3404 | dependencies: 3405 | postcss "^5.0.2" 3406 | postcss-message-helpers "^2.0.0" 3407 | reduce-css-calc "^1.2.6" 3408 | 3409 | postcss-colormin@^2.1.8: 3410 | version "2.2.2" 3411 | resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-2.2.2.tgz#6631417d5f0e909a3d7ec26b24c8a8d1e4f96e4b" 3412 | dependencies: 3413 | colormin "^1.0.5" 3414 | postcss "^5.0.13" 3415 | postcss-value-parser "^3.2.3" 3416 | 3417 | postcss-convert-values@^2.3.4: 3418 | version "2.6.1" 3419 | resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz#bbd8593c5c1fd2e3d1c322bb925dcae8dae4d62d" 3420 | dependencies: 3421 | postcss "^5.0.11" 3422 | postcss-value-parser "^3.1.2" 3423 | 3424 | postcss-discard-comments@^2.0.4: 3425 | version "2.0.4" 3426 | resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz#befe89fafd5b3dace5ccce51b76b81514be00e3d" 3427 | dependencies: 3428 | postcss "^5.0.14" 3429 | 3430 | postcss-discard-duplicates@^2.0.1: 3431 | version "2.1.0" 3432 | resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-2.1.0.tgz#b9abf27b88ac188158a5eb12abcae20263b91932" 3433 | dependencies: 3434 | postcss "^5.0.4" 3435 | 3436 | postcss-discard-empty@^2.0.1: 3437 | version "2.1.0" 3438 | resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz#d2b4bd9d5ced5ebd8dcade7640c7d7cd7f4f92b5" 3439 | dependencies: 3440 | postcss "^5.0.14" 3441 | 3442 | postcss-discard-overridden@^0.1.1: 3443 | version "0.1.1" 3444 | resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz#8b1eaf554f686fb288cd874c55667b0aa3668d58" 3445 | dependencies: 3446 | postcss "^5.0.16" 3447 | 3448 | postcss-discard-unused@^2.2.1: 3449 | version "2.2.3" 3450 | resolved "https://registry.yarnpkg.com/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz#bce30b2cc591ffc634322b5fb3464b6d934f4433" 3451 | dependencies: 3452 | postcss "^5.0.14" 3453 | uniqs "^2.0.0" 3454 | 3455 | postcss-filter-plugins@^2.0.0: 3456 | version "2.0.2" 3457 | resolved "https://registry.yarnpkg.com/postcss-filter-plugins/-/postcss-filter-plugins-2.0.2.tgz#6d85862534d735ac420e4a85806e1f5d4286d84c" 3458 | dependencies: 3459 | postcss "^5.0.4" 3460 | uniqid "^4.0.0" 3461 | 3462 | postcss-merge-idents@^2.1.5: 3463 | version "2.1.7" 3464 | resolved "https://registry.yarnpkg.com/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz#4c5530313c08e1d5b3bbf3d2bbc747e278eea270" 3465 | dependencies: 3466 | has "^1.0.1" 3467 | postcss "^5.0.10" 3468 | postcss-value-parser "^3.1.1" 3469 | 3470 | postcss-merge-longhand@^2.0.1: 3471 | version "2.0.2" 3472 | resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz#23d90cd127b0a77994915332739034a1a4f3d658" 3473 | dependencies: 3474 | postcss "^5.0.4" 3475 | 3476 | postcss-merge-rules@^2.0.3: 3477 | version "2.1.2" 3478 | resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-2.1.2.tgz#d1df5dfaa7b1acc3be553f0e9e10e87c61b5f721" 3479 | dependencies: 3480 | browserslist "^1.5.2" 3481 | caniuse-api "^1.5.2" 3482 | postcss "^5.0.4" 3483 | postcss-selector-parser "^2.2.2" 3484 | vendors "^1.0.0" 3485 | 3486 | postcss-message-helpers@^2.0.0: 3487 | version "2.0.0" 3488 | resolved "https://registry.yarnpkg.com/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz#a4f2f4fab6e4fe002f0aed000478cdf52f9ba60e" 3489 | 3490 | postcss-minify-font-values@^1.0.2: 3491 | version "1.0.5" 3492 | resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz#4b58edb56641eba7c8474ab3526cafd7bbdecb69" 3493 | dependencies: 3494 | object-assign "^4.0.1" 3495 | postcss "^5.0.4" 3496 | postcss-value-parser "^3.0.2" 3497 | 3498 | postcss-minify-gradients@^1.0.1: 3499 | version "1.0.5" 3500 | resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz#5dbda11373703f83cfb4a3ea3881d8d75ff5e6e1" 3501 | dependencies: 3502 | postcss "^5.0.12" 3503 | postcss-value-parser "^3.3.0" 3504 | 3505 | postcss-minify-params@^1.0.4: 3506 | version "1.2.2" 3507 | resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz#ad2ce071373b943b3d930a3fa59a358c28d6f1f3" 3508 | dependencies: 3509 | alphanum-sort "^1.0.1" 3510 | postcss "^5.0.2" 3511 | postcss-value-parser "^3.0.2" 3512 | uniqs "^2.0.0" 3513 | 3514 | postcss-minify-selectors@^2.0.4: 3515 | version "2.1.1" 3516 | resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz#b2c6a98c0072cf91b932d1a496508114311735bf" 3517 | dependencies: 3518 | alphanum-sort "^1.0.2" 3519 | has "^1.0.1" 3520 | postcss "^5.0.14" 3521 | postcss-selector-parser "^2.0.0" 3522 | 3523 | postcss-normalize-charset@^1.1.0: 3524 | version "1.1.1" 3525 | resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz#ef9ee71212d7fe759c78ed162f61ed62b5cb93f1" 3526 | dependencies: 3527 | postcss "^5.0.5" 3528 | 3529 | postcss-normalize-url@^3.0.7: 3530 | version "3.0.8" 3531 | resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz#108f74b3f2fcdaf891a2ffa3ea4592279fc78222" 3532 | dependencies: 3533 | is-absolute-url "^2.0.0" 3534 | normalize-url "^1.4.0" 3535 | postcss "^5.0.14" 3536 | postcss-value-parser "^3.2.3" 3537 | 3538 | postcss-ordered-values@^2.1.0: 3539 | version "2.2.3" 3540 | resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz#eec6c2a67b6c412a8db2042e77fe8da43f95c11d" 3541 | dependencies: 3542 | postcss "^5.0.4" 3543 | postcss-value-parser "^3.0.1" 3544 | 3545 | postcss-reduce-idents@^2.2.2: 3546 | version "2.4.0" 3547 | resolved "https://registry.yarnpkg.com/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz#c2c6d20cc958284f6abfbe63f7609bf409059ad3" 3548 | dependencies: 3549 | postcss "^5.0.4" 3550 | postcss-value-parser "^3.0.2" 3551 | 3552 | postcss-reduce-initial@^1.0.0: 3553 | version "1.0.1" 3554 | resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz#68f80695f045d08263a879ad240df8dd64f644ea" 3555 | dependencies: 3556 | postcss "^5.0.4" 3557 | 3558 | postcss-reduce-transforms@^1.0.3: 3559 | version "1.0.4" 3560 | resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz#ff76f4d8212437b31c298a42d2e1444025771ae1" 3561 | dependencies: 3562 | has "^1.0.1" 3563 | postcss "^5.0.8" 3564 | postcss-value-parser "^3.0.1" 3565 | 3566 | postcss-selector-parser@^2.0.0, postcss-selector-parser@^2.2.2: 3567 | version "2.2.3" 3568 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz#f9437788606c3c9acee16ffe8d8b16297f27bb90" 3569 | dependencies: 3570 | flatten "^1.0.2" 3571 | indexes-of "^1.0.1" 3572 | uniq "^1.0.1" 3573 | 3574 | postcss-svgo@^2.1.1: 3575 | version "2.1.6" 3576 | resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-2.1.6.tgz#b6df18aa613b666e133f08adb5219c2684ac108d" 3577 | dependencies: 3578 | is-svg "^2.0.0" 3579 | postcss "^5.0.14" 3580 | postcss-value-parser "^3.2.3" 3581 | svgo "^0.7.0" 3582 | 3583 | postcss-unique-selectors@^2.0.2: 3584 | version "2.0.2" 3585 | resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz#981d57d29ddcb33e7b1dfe1fd43b8649f933ca1d" 3586 | dependencies: 3587 | alphanum-sort "^1.0.1" 3588 | postcss "^5.0.4" 3589 | uniqs "^2.0.0" 3590 | 3591 | postcss-value-parser@^3.0.1, postcss-value-parser@^3.0.2, postcss-value-parser@^3.1.1, postcss-value-parser@^3.1.2, postcss-value-parser@^3.2.3, postcss-value-parser@^3.3.0: 3592 | version "3.3.0" 3593 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15" 3594 | 3595 | postcss-zindex@^2.0.1: 3596 | version "2.2.0" 3597 | resolved "https://registry.yarnpkg.com/postcss-zindex/-/postcss-zindex-2.2.0.tgz#d2109ddc055b91af67fc4cb3b025946639d2af22" 3598 | dependencies: 3599 | has "^1.0.1" 3600 | postcss "^5.0.4" 3601 | uniqs "^2.0.0" 3602 | 3603 | postcss@^5.0.10, postcss@^5.0.11, postcss@^5.0.12, postcss@^5.0.13, postcss@^5.0.14, postcss@^5.0.16, postcss@^5.0.2, postcss@^5.0.4, postcss@^5.0.5, postcss@^5.0.8, postcss@^5.2.16: 3604 | version "5.2.16" 3605 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.2.16.tgz#732b3100000f9ff8379a48a53839ed097376ad57" 3606 | dependencies: 3607 | chalk "^1.1.3" 3608 | js-base64 "^2.1.9" 3609 | source-map "^0.5.6" 3610 | supports-color "^3.2.3" 3611 | 3612 | prelude-ls@~1.1.2: 3613 | version "1.1.2" 3614 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 3615 | 3616 | prepend-http@^1.0.0, prepend-http@^1.0.1: 3617 | version "1.0.4" 3618 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 3619 | 3620 | preserve@^0.2.0: 3621 | version "0.2.0" 3622 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 3623 | 3624 | pretty-ms@^0.2.1: 3625 | version "0.2.2" 3626 | resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-0.2.2.tgz#da879a682ff33a37011046f13d627f67c73b84f6" 3627 | dependencies: 3628 | parse-ms "^0.1.0" 3629 | 3630 | pretty-ms@^3.0.0: 3631 | version "3.1.0" 3632 | resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-3.1.0.tgz#e9cac9c76bf6ee52fe942dd9c6c4213153b12881" 3633 | dependencies: 3634 | parse-ms "^1.0.0" 3635 | plur "^2.1.2" 3636 | 3637 | private@^0.1.6: 3638 | version "0.1.7" 3639 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 3640 | 3641 | private@^0.1.7: 3642 | version "0.1.8" 3643 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 3644 | 3645 | process-nextick-args@~1.0.6: 3646 | version "1.0.7" 3647 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 3648 | 3649 | progress@^1.1.8: 3650 | version "1.1.8" 3651 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 3652 | 3653 | pseudomap@^1.0.1: 3654 | version "1.0.2" 3655 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 3656 | 3657 | punycode@2.x.x: 3658 | version "2.1.0" 3659 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.0.tgz#5f863edc89b96db09074bad7947bf09056ca4e7d" 3660 | 3661 | punycode@^1.4.1: 3662 | version "1.4.1" 3663 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 3664 | 3665 | q@^1.1.2: 3666 | version "1.5.0" 3667 | resolved "https://registry.yarnpkg.com/q/-/q-1.5.0.tgz#dd01bac9d06d30e6f219aecb8253ee9ebdc308f1" 3668 | 3669 | qs@~6.4.0: 3670 | version "6.4.0" 3671 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 3672 | 3673 | query-string@^4.1.0: 3674 | version "4.3.2" 3675 | resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.3.2.tgz#ec0fd765f58a50031a3968c2431386f8947a5cdd" 3676 | dependencies: 3677 | object-assign "^4.1.0" 3678 | strict-uri-encode "^1.0.0" 3679 | 3680 | randomatic@^1.1.3: 3681 | version "1.1.6" 3682 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 3683 | dependencies: 3684 | is-number "^2.0.2" 3685 | kind-of "^3.0.2" 3686 | 3687 | rc@^1.0.1, rc@^1.1.6, rc@^1.1.7: 3688 | version "1.2.1" 3689 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 3690 | dependencies: 3691 | deep-extend "~0.4.0" 3692 | ini "~1.3.0" 3693 | minimist "^1.2.0" 3694 | strip-json-comments "~2.0.1" 3695 | 3696 | read-pkg-up@^1.0.1: 3697 | version "1.0.1" 3698 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 3699 | dependencies: 3700 | find-up "^1.0.0" 3701 | read-pkg "^1.0.0" 3702 | 3703 | read-pkg-up@^2.0.0: 3704 | version "2.0.0" 3705 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 3706 | dependencies: 3707 | find-up "^2.0.0" 3708 | read-pkg "^2.0.0" 3709 | 3710 | read-pkg@^1.0.0: 3711 | version "1.1.0" 3712 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 3713 | dependencies: 3714 | load-json-file "^1.0.0" 3715 | normalize-package-data "^2.3.2" 3716 | path-type "^1.0.0" 3717 | 3718 | read-pkg@^2.0.0: 3719 | version "2.0.0" 3720 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 3721 | dependencies: 3722 | load-json-file "^2.0.0" 3723 | normalize-package-data "^2.3.2" 3724 | path-type "^2.0.0" 3725 | 3726 | "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.1.5, readable-stream@^2.2.2: 3727 | version "2.2.6" 3728 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.6.tgz#8b43aed76e71483938d12a8d46c6cf1a00b1f816" 3729 | dependencies: 3730 | buffer-shims "^1.0.0" 3731 | core-util-is "~1.0.0" 3732 | inherits "~2.0.1" 3733 | isarray "~1.0.0" 3734 | process-nextick-args "~1.0.6" 3735 | string_decoder "~0.10.x" 3736 | util-deprecate "~1.0.1" 3737 | 3738 | readdirp@^2.0.0: 3739 | version "2.1.0" 3740 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 3741 | dependencies: 3742 | graceful-fs "^4.1.2" 3743 | minimatch "^3.0.2" 3744 | readable-stream "^2.0.2" 3745 | set-immediate-shim "^1.0.1" 3746 | 3747 | readline2@^1.0.1: 3748 | version "1.0.1" 3749 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 3750 | dependencies: 3751 | code-point-at "^1.0.0" 3752 | is-fullwidth-code-point "^1.0.0" 3753 | mute-stream "0.0.5" 3754 | 3755 | rechoir@^0.6.2: 3756 | version "0.6.2" 3757 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 3758 | dependencies: 3759 | resolve "^1.1.6" 3760 | 3761 | redent@^1.0.0: 3762 | version "1.0.0" 3763 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 3764 | dependencies: 3765 | indent-string "^2.1.0" 3766 | strip-indent "^1.0.1" 3767 | 3768 | reduce-css-calc@^1.2.6: 3769 | version "1.3.0" 3770 | resolved "https://registry.yarnpkg.com/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz#747c914e049614a4c9cfbba629871ad1d2927716" 3771 | dependencies: 3772 | balanced-match "^0.4.2" 3773 | math-expression-evaluator "^1.2.14" 3774 | reduce-function-call "^1.0.1" 3775 | 3776 | reduce-function-call@^1.0.1: 3777 | version "1.0.2" 3778 | resolved "https://registry.yarnpkg.com/reduce-function-call/-/reduce-function-call-1.0.2.tgz#5a200bf92e0e37751752fe45b0ab330fd4b6be99" 3779 | dependencies: 3780 | balanced-match "^0.4.2" 3781 | 3782 | regenerate@^1.2.1: 3783 | version "1.3.2" 3784 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 3785 | 3786 | regenerator-runtime@^0.10.0: 3787 | version "0.10.3" 3788 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.3.tgz#8c4367a904b51ea62a908ac310bf99ff90a82a3e" 3789 | 3790 | regenerator-runtime@^0.11.0: 3791 | version "0.11.1" 3792 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 3793 | 3794 | regex-cache@^0.4.2: 3795 | version "0.4.3" 3796 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 3797 | dependencies: 3798 | is-equal-shallow "^0.1.3" 3799 | is-primitive "^2.0.0" 3800 | 3801 | regexpu-core@^2.0.0: 3802 | version "2.0.0" 3803 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 3804 | dependencies: 3805 | regenerate "^1.2.1" 3806 | regjsgen "^0.2.0" 3807 | regjsparser "^0.1.4" 3808 | 3809 | registry-auth-token@^3.0.1: 3810 | version "3.1.0" 3811 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.1.0.tgz#997c08256e0c7999837b90e944db39d8a790276b" 3812 | dependencies: 3813 | rc "^1.1.6" 3814 | 3815 | registry-url@^3.0.3: 3816 | version "3.1.0" 3817 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 3818 | dependencies: 3819 | rc "^1.0.1" 3820 | 3821 | regjsgen@^0.2.0: 3822 | version "0.2.0" 3823 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 3824 | 3825 | regjsparser@^0.1.4: 3826 | version "0.1.5" 3827 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 3828 | dependencies: 3829 | jsesc "~0.5.0" 3830 | 3831 | release-zalgo@^1.0.0: 3832 | version "1.0.0" 3833 | resolved "https://registry.yarnpkg.com/release-zalgo/-/release-zalgo-1.0.0.tgz#09700b7e5074329739330e535c5a90fb67851730" 3834 | dependencies: 3835 | es6-error "^4.0.1" 3836 | 3837 | remove-trailing-separator@^1.0.1: 3838 | version "1.0.1" 3839 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" 3840 | 3841 | repeat-element@^1.1.2: 3842 | version "1.1.2" 3843 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3844 | 3845 | repeat-string@^1.5.2: 3846 | version "1.6.1" 3847 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3848 | 3849 | repeating@^2.0.0: 3850 | version "2.0.1" 3851 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3852 | dependencies: 3853 | is-finite "^1.0.0" 3854 | 3855 | replace-ext@1.0.0: 3856 | version "1.0.0" 3857 | resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb" 3858 | 3859 | request@2.81.0, request@^2.81.0: 3860 | version "2.81.0" 3861 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 3862 | dependencies: 3863 | aws-sign2 "~0.6.0" 3864 | aws4 "^1.2.1" 3865 | caseless "~0.12.0" 3866 | combined-stream "~1.0.5" 3867 | extend "~3.0.0" 3868 | forever-agent "~0.6.1" 3869 | form-data "~2.1.1" 3870 | har-validator "~4.2.1" 3871 | hawk "~3.1.3" 3872 | http-signature "~1.1.0" 3873 | is-typedarray "~1.0.0" 3874 | isstream "~0.1.2" 3875 | json-stringify-safe "~5.0.1" 3876 | mime-types "~2.1.7" 3877 | oauth-sign "~0.8.1" 3878 | performance-now "^0.2.0" 3879 | qs "~6.4.0" 3880 | safe-buffer "^5.0.1" 3881 | stringstream "~0.0.4" 3882 | tough-cookie "~2.3.0" 3883 | tunnel-agent "^0.6.0" 3884 | uuid "^3.0.0" 3885 | 3886 | require-directory@^2.1.1: 3887 | version "2.1.1" 3888 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3889 | 3890 | require-main-filename@^1.0.1: 3891 | version "1.0.1" 3892 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3893 | 3894 | require-precompiled@^0.1.0: 3895 | version "0.1.0" 3896 | resolved "https://registry.yarnpkg.com/require-precompiled/-/require-precompiled-0.1.0.tgz#5a1b52eb70ebed43eb982e974c85ab59571e56fa" 3897 | 3898 | require-uncached@^1.0.2: 3899 | version "1.0.3" 3900 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 3901 | dependencies: 3902 | caller-path "^0.1.0" 3903 | resolve-from "^1.0.0" 3904 | 3905 | reshape-beautify@^0.1.2: 3906 | version "0.1.2" 3907 | resolved "https://registry.yarnpkg.com/reshape-beautify/-/reshape-beautify-0.1.2.tgz#a18bec6892e15a26c74b0ee5b36208da2dcfcc5d" 3908 | 3909 | reshape-code-gen@^0.2.1: 3910 | version "0.2.1" 3911 | resolved "https://registry.yarnpkg.com/reshape-code-gen/-/reshape-code-gen-0.2.1.tgz#e1cd981b0573138661d34b54244d38f09ab33d14" 3912 | dependencies: 3913 | objectfn "^2.0.0" 3914 | with "^5.1.1" 3915 | 3916 | reshape-code-gen@^1.0.0: 3917 | version "1.0.0" 3918 | resolved "https://registry.yarnpkg.com/reshape-code-gen/-/reshape-code-gen-1.0.0.tgz#c7d23cb133eacc9e5c1e6a83b3fe57c200e18eb0" 3919 | dependencies: 3920 | objectfn "^2.0.0" 3921 | with "^5.1.1" 3922 | 3923 | reshape-content@^0.3.0: 3924 | version "0.3.0" 3925 | resolved "https://registry.yarnpkg.com/reshape-content/-/reshape-content-0.3.0.tgz#4479e486f46e9840b34192e8ca613bda78cc8ff5" 3926 | dependencies: 3927 | reshape-parser "^0.2.1" 3928 | reshape-plugin-util "^0.2.1" 3929 | when "^3.7.8" 3930 | 3931 | reshape-eval-code@^0.3.4: 3932 | version "0.3.4" 3933 | resolved "https://registry.yarnpkg.com/reshape-eval-code/-/reshape-eval-code-0.3.4.tgz#159335800fca1642ce4b6bebdba2053fbdfa0f24" 3934 | dependencies: 3935 | reshape-code-gen "^0.2.1" 3936 | reshape-parser "^0.2.1" 3937 | reshape-plugin-util "^0.2.1" 3938 | 3939 | reshape-expressions@^0.1.4, reshape-expressions@^0.1.5: 3940 | version "0.1.5" 3941 | resolved "https://registry.yarnpkg.com/reshape-expressions/-/reshape-expressions-0.1.5.tgz#28c12bf35de40263362499cead0b044321e4a78c" 3942 | 3943 | reshape-include@^1.0.0: 3944 | version "1.0.0" 3945 | resolved "https://registry.yarnpkg.com/reshape-include/-/reshape-include-1.0.0.tgz#2f75e57e016447c633f48cbb0e2a5ca114275d10" 3946 | dependencies: 3947 | reshape-plugin-util "^0.2.0" 3948 | 3949 | reshape-layouts@^1.0.0: 3950 | version "1.0.0" 3951 | resolved "https://registry.yarnpkg.com/reshape-layouts/-/reshape-layouts-1.0.0.tgz#d6eff8a35a54ea9380a829e32525c9c4b9fb2a59" 3952 | 3953 | reshape-minify@^1.1.0: 3954 | version "1.1.0" 3955 | resolved "https://registry.yarnpkg.com/reshape-minify/-/reshape-minify-1.1.0.tgz#40bc402b99f3d38359135ce2ef955f071abd8f7e" 3956 | dependencies: 3957 | cssnano "^3.7.4" 3958 | indx "^0.2.3" 3959 | reshape-expressions "^0.1.4" 3960 | reshape-parser "^0.2.1" 3961 | reshape-plugin-util "^0.2.1" 3962 | svgo "^0.7.0" 3963 | uglify-js "^3.0.26" 3964 | 3965 | reshape-parser@^0.2.1: 3966 | version "0.2.1" 3967 | resolved "https://registry.yarnpkg.com/reshape-parser/-/reshape-parser-0.2.1.tgz#3d713188c0ae05b899e3528774aacc2aef147368" 3968 | dependencies: 3969 | parse5 "^2.1.5" 3970 | 3971 | reshape-plugin-util@^0.2.0, reshape-plugin-util@^0.2.1: 3972 | version "0.2.1" 3973 | resolved "https://registry.yarnpkg.com/reshape-plugin-util/-/reshape-plugin-util-0.2.1.tgz#29358959d58c9eebca25c35efe0cc627817cf092" 3974 | dependencies: 3975 | when "^3.7.7" 3976 | 3977 | reshape-retext@^1.0.1: 3978 | version "1.0.1" 3979 | resolved "https://registry.yarnpkg.com/reshape-retext/-/reshape-retext-1.0.1.tgz#015f7ca4162d4ae69359c26e122737c46262a793" 3980 | dependencies: 3981 | reshape-plugin-util "^0.2.0" 3982 | retext "^5.0.0" 3983 | when "^3.7.8" 3984 | 3985 | reshape@^0.4.2: 3986 | version "0.4.2" 3987 | resolved "https://registry.yarnpkg.com/reshape/-/reshape-0.4.2.tgz#4626d6b1aeb4e6a81af5b535e1c37d1db8025947" 3988 | dependencies: 3989 | code-frame "^5.0.0" 3990 | joi "^13.1.1" 3991 | lodash.merge "^4.4.0" 3992 | reshape-code-gen "^1.0.0" 3993 | reshape-parser "^0.2.1" 3994 | when "^3.7.8" 3995 | 3996 | resolve-cwd@^2.0.0: 3997 | version "2.0.0" 3998 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" 3999 | dependencies: 4000 | resolve-from "^3.0.0" 4001 | 4002 | resolve-from@^1.0.0: 4003 | version "1.0.1" 4004 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 4005 | 4006 | resolve-from@^2.0.0: 4007 | version "2.0.0" 4008 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57" 4009 | 4010 | resolve-from@^3.0.0: 4011 | version "3.0.0" 4012 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" 4013 | 4014 | resolve@^1.1.6, resolve@^1.1.7: 4015 | version "1.3.2" 4016 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.2.tgz#1f0442c9e0cbb8136e87b9305f932f46c7f28235" 4017 | dependencies: 4018 | path-parse "^1.0.5" 4019 | 4020 | restore-cursor@^1.0.1: 4021 | version "1.0.1" 4022 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 4023 | dependencies: 4024 | exit-hook "^1.0.0" 4025 | onetime "^1.0.0" 4026 | 4027 | restore-cursor@^2.0.0: 4028 | version "2.0.0" 4029 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 4030 | dependencies: 4031 | onetime "^2.0.0" 4032 | signal-exit "^3.0.2" 4033 | 4034 | retext-latin@^2.0.0: 4035 | version "2.0.0" 4036 | resolved "https://registry.yarnpkg.com/retext-latin/-/retext-latin-2.0.0.tgz#b11bd6cae9113fa6293022a4527cd707221ac4b6" 4037 | dependencies: 4038 | parse-latin "^4.0.0" 4039 | unherit "^1.0.4" 4040 | 4041 | retext-smartypants@^3.0.1: 4042 | version "3.0.1" 4043 | resolved "https://registry.yarnpkg.com/retext-smartypants/-/retext-smartypants-3.0.1.tgz#53d718fde7178a9bc09f120159b0d76cc537fb6c" 4044 | dependencies: 4045 | nlcst-to-string "^2.0.0" 4046 | unist-util-visit "^1.0.0" 4047 | 4048 | retext-stringify@^2.0.0: 4049 | version "2.0.0" 4050 | resolved "https://registry.yarnpkg.com/retext-stringify/-/retext-stringify-2.0.0.tgz#00238facc5491f5bcdc589703a4658db2e54415b" 4051 | dependencies: 4052 | nlcst-to-string "^2.0.0" 4053 | 4054 | retext@^5.0.0: 4055 | version "5.0.0" 4056 | resolved "https://registry.yarnpkg.com/retext/-/retext-5.0.0.tgz#5d9018c4a677d6103c142362d76f50eb1d398bf6" 4057 | dependencies: 4058 | retext-latin "^2.0.0" 4059 | retext-stringify "^2.0.0" 4060 | unified "^6.0.0" 4061 | 4062 | rewire@^3.0.0: 4063 | version "3.0.2" 4064 | resolved "https://registry.yarnpkg.com/rewire/-/rewire-3.0.2.tgz#25e5413c4f1676eb3247d1884198b3a265408bbd" 4065 | dependencies: 4066 | babel-core "^6.26.0" 4067 | babel-plugin-transform-es2015-block-scoping "^6.26.0" 4068 | 4069 | right-align@^0.1.1: 4070 | version "0.1.3" 4071 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 4072 | dependencies: 4073 | align-text "^0.1.1" 4074 | 4075 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.5.4, rimraf@^2.6.1: 4076 | version "2.6.1" 4077 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 4078 | dependencies: 4079 | glob "^7.0.5" 4080 | 4081 | rimraf@^2.6.2: 4082 | version "2.6.2" 4083 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 4084 | dependencies: 4085 | glob "^7.0.5" 4086 | 4087 | run-async@^0.1.0: 4088 | version "0.1.0" 4089 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 4090 | dependencies: 4091 | once "^1.3.0" 4092 | 4093 | run-parallel@^1.1.2: 4094 | version "1.1.6" 4095 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.1.6.tgz#29003c9a2163e01e2d2dfc90575f2c6c1d61a039" 4096 | 4097 | rx-lite@^3.1.2: 4098 | version "3.1.2" 4099 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 4100 | 4101 | safe-buffer@^5.0.1: 4102 | version "5.0.1" 4103 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 4104 | 4105 | safe-buffer@^5.1.1: 4106 | version "5.1.1" 4107 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 4108 | 4109 | sax@~1.2.1: 4110 | version "1.2.2" 4111 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.2.tgz#fd8631a23bc7826bef5d871bdb87378c95647828" 4112 | 4113 | semver-diff@^2.0.0: 4114 | version "2.1.0" 4115 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 4116 | dependencies: 4117 | semver "^5.0.3" 4118 | 4119 | "semver@2 || 3 || 4 || 5", semver@5.3.0, semver@^5.0.3, semver@^5.1.0, semver@^5.3.0: 4120 | version "5.3.0" 4121 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 4122 | 4123 | semver@^5.4.1: 4124 | version "5.5.0" 4125 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 4126 | 4127 | set-blocking@^2.0.0, set-blocking@~2.0.0: 4128 | version "2.0.0" 4129 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 4130 | 4131 | set-immediate-shim@^1.0.1: 4132 | version "1.0.1" 4133 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 4134 | 4135 | shebang-command@^1.2.0: 4136 | version "1.2.0" 4137 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 4138 | dependencies: 4139 | shebang-regex "^1.0.0" 4140 | 4141 | shebang-regex@^1.0.0: 4142 | version "1.0.0" 4143 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 4144 | 4145 | shelljs@^0.7.5: 4146 | version "0.7.7" 4147 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.7.tgz#b2f5c77ef97148f4b4f6e22682e10bba8667cff1" 4148 | dependencies: 4149 | glob "^7.0.0" 4150 | interpret "^1.0.0" 4151 | rechoir "^0.6.2" 4152 | 4153 | signal-exit@^3.0.0, signal-exit@^3.0.1, signal-exit@^3.0.2: 4154 | version "3.0.2" 4155 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 4156 | 4157 | slash@^1.0.0: 4158 | version "1.0.0" 4159 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 4160 | 4161 | slice-ansi@0.0.4: 4162 | version "0.0.4" 4163 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 4164 | 4165 | slide@^1.1.5: 4166 | version "1.1.6" 4167 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 4168 | 4169 | snazzy@^7.0.0: 4170 | version "7.0.0" 4171 | resolved "https://registry.yarnpkg.com/snazzy/-/snazzy-7.0.0.tgz#95edaccc4a8d6f80f4ac5cc7b520e8f8f9ac2325" 4172 | dependencies: 4173 | chalk "^1.1.0" 4174 | inherits "^2.0.1" 4175 | minimist "^1.1.1" 4176 | readable-stream "^2.0.6" 4177 | standard-json "^1.0.0" 4178 | text-table "^0.2.0" 4179 | 4180 | sntp@1.x.x: 4181 | version "1.0.9" 4182 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 4183 | dependencies: 4184 | hoek "2.x.x" 4185 | 4186 | sort-keys@^1.0.0, sort-keys@^1.1.1, sort-keys@^1.1.2: 4187 | version "1.1.2" 4188 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" 4189 | dependencies: 4190 | is-plain-obj "^1.0.0" 4191 | 4192 | source-map-support@^0.4.15: 4193 | version "0.4.18" 4194 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 4195 | dependencies: 4196 | source-map "^0.5.6" 4197 | 4198 | source-map-support@^0.4.2: 4199 | version "0.4.14" 4200 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.14.tgz#9d4463772598b86271b4f523f6c1f4e02a7d6aef" 4201 | dependencies: 4202 | source-map "^0.5.6" 4203 | 4204 | source-map-support@^0.5.0: 4205 | version "0.5.2" 4206 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.2.tgz#1a6297fd5b2e762b39688c7fc91233b60984f0a5" 4207 | dependencies: 4208 | source-map "^0.6.0" 4209 | 4210 | source-map@^0.4.4: 4211 | version "0.4.4" 4212 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 4213 | dependencies: 4214 | amdefine ">=0.0.4" 4215 | 4216 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 4217 | version "0.5.6" 4218 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 4219 | 4220 | source-map@^0.6.0: 4221 | version "0.6.1" 4222 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 4223 | 4224 | spawn-wrap@^1.4.2: 4225 | version "1.4.2" 4226 | resolved "https://registry.yarnpkg.com/spawn-wrap/-/spawn-wrap-1.4.2.tgz#cff58e73a8224617b6561abdc32586ea0c82248c" 4227 | dependencies: 4228 | foreground-child "^1.5.6" 4229 | mkdirp "^0.5.0" 4230 | os-homedir "^1.0.1" 4231 | rimraf "^2.6.2" 4232 | signal-exit "^3.0.2" 4233 | which "^1.3.0" 4234 | 4235 | spdx-correct@~1.0.0: 4236 | version "1.0.2" 4237 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 4238 | dependencies: 4239 | spdx-license-ids "^1.0.2" 4240 | 4241 | spdx-expression-parse@~1.0.0: 4242 | version "1.0.4" 4243 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 4244 | 4245 | spdx-license-ids@^1.0.2: 4246 | version "1.2.2" 4247 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 4248 | 4249 | sprintf-js@~1.0.2: 4250 | version "1.0.3" 4251 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 4252 | 4253 | sshpk@^1.7.0: 4254 | version "1.11.0" 4255 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.11.0.tgz#2d8d5ebb4a6fab28ffba37fa62a90f4a3ea59d77" 4256 | dependencies: 4257 | asn1 "~0.2.3" 4258 | assert-plus "^1.0.0" 4259 | dashdash "^1.12.0" 4260 | getpass "^0.1.1" 4261 | optionalDependencies: 4262 | bcrypt-pbkdf "^1.0.0" 4263 | ecc-jsbn "~0.1.1" 4264 | jodid25519 "^1.0.0" 4265 | jsbn "~0.1.0" 4266 | tweetnacl "~0.14.0" 4267 | 4268 | stack-utils@^1.0.1: 4269 | version "1.0.1" 4270 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.1.tgz#d4f33ab54e8e38778b0ca5cfd3b3afb12db68620" 4271 | 4272 | standard-engine@~7.0.0: 4273 | version "7.0.0" 4274 | resolved "https://registry.yarnpkg.com/standard-engine/-/standard-engine-7.0.0.tgz#ebb77b9c8fc2c8165ffa353bd91ba0dff41af690" 4275 | dependencies: 4276 | deglob "^2.1.0" 4277 | get-stdin "^5.0.1" 4278 | minimist "^1.1.0" 4279 | pkg-conf "^2.0.0" 4280 | 4281 | standard-json@^1.0.0: 4282 | version "1.0.2" 4283 | resolved "https://registry.yarnpkg.com/standard-json/-/standard-json-1.0.2.tgz#82dea4a14c78cd9e35d38cde4b88ac6b62596a23" 4284 | dependencies: 4285 | concat-stream "^1.5.0" 4286 | 4287 | standard@^10.0.3: 4288 | version "10.0.3" 4289 | resolved "https://registry.yarnpkg.com/standard/-/standard-10.0.3.tgz#7869bcbf422bdeeaab689a1ffb1fea9677dd50ea" 4290 | dependencies: 4291 | eslint "~3.19.0" 4292 | eslint-config-standard "10.2.1" 4293 | eslint-config-standard-jsx "4.0.2" 4294 | eslint-plugin-import "~2.2.0" 4295 | eslint-plugin-node "~4.2.2" 4296 | eslint-plugin-promise "~3.5.0" 4297 | eslint-plugin-react "~6.10.0" 4298 | eslint-plugin-standard "~3.0.1" 4299 | standard-engine "~7.0.0" 4300 | 4301 | strict-uri-encode@^1.0.0: 4302 | version "1.1.0" 4303 | resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" 4304 | 4305 | string-width@^1.0.1: 4306 | version "1.0.2" 4307 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 4308 | dependencies: 4309 | code-point-at "^1.0.0" 4310 | is-fullwidth-code-point "^1.0.0" 4311 | strip-ansi "^3.0.0" 4312 | 4313 | string-width@^2.0.0: 4314 | version "2.0.0" 4315 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 4316 | dependencies: 4317 | is-fullwidth-code-point "^2.0.0" 4318 | strip-ansi "^3.0.0" 4319 | 4320 | string-width@^2.1.1: 4321 | version "2.1.1" 4322 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 4323 | dependencies: 4324 | is-fullwidth-code-point "^2.0.0" 4325 | strip-ansi "^4.0.0" 4326 | 4327 | string_decoder@~0.10.x: 4328 | version "0.10.31" 4329 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 4330 | 4331 | stringstream@~0.0.4: 4332 | version "0.0.5" 4333 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 4334 | 4335 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 4336 | version "3.0.1" 4337 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 4338 | dependencies: 4339 | ansi-regex "^2.0.0" 4340 | 4341 | strip-ansi@^4.0.0: 4342 | version "4.0.0" 4343 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 4344 | dependencies: 4345 | ansi-regex "^3.0.0" 4346 | 4347 | strip-ansi@~0.1.0: 4348 | version "0.1.1" 4349 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-0.1.1.tgz#39e8a98d044d150660abe4a6808acf70bb7bc991" 4350 | 4351 | strip-bom-buf@^1.0.0: 4352 | version "1.0.0" 4353 | resolved "https://registry.yarnpkg.com/strip-bom-buf/-/strip-bom-buf-1.0.0.tgz#1cb45aaf57530f4caf86c7f75179d2c9a51dd572" 4354 | dependencies: 4355 | is-utf8 "^0.2.1" 4356 | 4357 | strip-bom@^2.0.0: 4358 | version "2.0.0" 4359 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 4360 | dependencies: 4361 | is-utf8 "^0.2.0" 4362 | 4363 | strip-bom@^3.0.0: 4364 | version "3.0.0" 4365 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 4366 | 4367 | strip-eof@^1.0.0: 4368 | version "1.0.0" 4369 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 4370 | 4371 | strip-indent@^1.0.1: 4372 | version "1.0.1" 4373 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 4374 | dependencies: 4375 | get-stdin "^4.0.1" 4376 | 4377 | strip-json-comments@~2.0.1: 4378 | version "2.0.1" 4379 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 4380 | 4381 | sugarml@^0.6.0: 4382 | version "0.6.0" 4383 | resolved "https://registry.yarnpkg.com/sugarml/-/sugarml-0.6.0.tgz#9276d5e23e9cd8026b7db7df9ca49e6b29e00fb6" 4384 | dependencies: 4385 | code-frame "^5.0.0" 4386 | 4387 | supports-color@^2.0.0: 4388 | version "2.0.0" 4389 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 4390 | 4391 | supports-color@^3.1.2, supports-color@^3.2.3: 4392 | version "3.2.3" 4393 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 4394 | dependencies: 4395 | has-flag "^1.0.0" 4396 | 4397 | supports-color@^4.0.0: 4398 | version "4.2.0" 4399 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.2.0.tgz#ad986dc7eb2315d009b4d77c8169c2231a684037" 4400 | dependencies: 4401 | has-flag "^2.0.0" 4402 | 4403 | supports-color@^5.0.0: 4404 | version "5.1.0" 4405 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.1.0.tgz#058a021d1b619f7ddf3980d712ea3590ce7de3d5" 4406 | dependencies: 4407 | has-flag "^2.0.0" 4408 | 4409 | svgo@^0.7.0: 4410 | version "0.7.2" 4411 | resolved "https://registry.yarnpkg.com/svgo/-/svgo-0.7.2.tgz#9f5772413952135c6fefbf40afe6a4faa88b4bb5" 4412 | dependencies: 4413 | coa "~1.0.1" 4414 | colors "~1.1.2" 4415 | csso "~2.3.1" 4416 | js-yaml "~3.7.0" 4417 | mkdirp "~0.5.1" 4418 | sax "~1.2.1" 4419 | whet.extend "~0.9.9" 4420 | 4421 | symbol-observable@^0.2.2: 4422 | version "0.2.4" 4423 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-0.2.4.tgz#95a83db26186d6af7e7a18dbd9760a2f86d08f40" 4424 | 4425 | symbol-observable@^1.0.4: 4426 | version "1.0.4" 4427 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d" 4428 | 4429 | symbol-observable@^1.1.0: 4430 | version "1.1.0" 4431 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.1.0.tgz#5c68fd8d54115d9dfb72a84720549222e8db9b32" 4432 | 4433 | table@^3.7.8: 4434 | version "3.8.3" 4435 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 4436 | dependencies: 4437 | ajv "^4.7.0" 4438 | ajv-keywords "^1.0.0" 4439 | chalk "^1.1.1" 4440 | lodash "^4.0.0" 4441 | slice-ansi "0.0.4" 4442 | string-width "^2.0.0" 4443 | 4444 | tar-pack@^3.4.0: 4445 | version "3.4.0" 4446 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 4447 | dependencies: 4448 | debug "^2.2.0" 4449 | fstream "^1.0.10" 4450 | fstream-ignore "^1.0.5" 4451 | once "^1.3.3" 4452 | readable-stream "^2.1.4" 4453 | rimraf "^2.5.1" 4454 | tar "^2.2.1" 4455 | uid-number "^0.0.6" 4456 | 4457 | tar@^2.2.1: 4458 | version "2.2.1" 4459 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 4460 | dependencies: 4461 | block-stream "*" 4462 | fstream "^1.0.2" 4463 | inherits "2" 4464 | 4465 | term-size@^1.2.0: 4466 | version "1.2.0" 4467 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69" 4468 | dependencies: 4469 | execa "^0.7.0" 4470 | 4471 | test-exclude@^4.1.1: 4472 | version "4.1.1" 4473 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26" 4474 | dependencies: 4475 | arrify "^1.0.1" 4476 | micromatch "^2.3.11" 4477 | object-assign "^4.1.0" 4478 | read-pkg-up "^1.0.1" 4479 | require-main-filename "^1.0.1" 4480 | 4481 | text-table@^0.2.0, text-table@~0.2.0: 4482 | version "0.2.0" 4483 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 4484 | 4485 | through2@^2.0.0: 4486 | version "2.0.3" 4487 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 4488 | dependencies: 4489 | readable-stream "^2.1.5" 4490 | xtend "~4.0.1" 4491 | 4492 | through@^2.3.6: 4493 | version "2.3.8" 4494 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 4495 | 4496 | time-require@^0.1.2: 4497 | version "0.1.2" 4498 | resolved "https://registry.yarnpkg.com/time-require/-/time-require-0.1.2.tgz#f9e12cb370fc2605e11404582ba54ef5ca2b2d98" 4499 | dependencies: 4500 | chalk "^0.4.0" 4501 | date-time "^0.1.1" 4502 | pretty-ms "^0.2.1" 4503 | text-table "^0.2.0" 4504 | 4505 | time-zone@^1.0.0: 4506 | version "1.0.0" 4507 | resolved "https://registry.yarnpkg.com/time-zone/-/time-zone-1.0.0.tgz#99c5bf55958966af6d06d83bdf3800dc82faec5d" 4508 | 4509 | timed-out@^4.0.0: 4510 | version "4.0.1" 4511 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" 4512 | 4513 | to-fast-properties@^1.0.1: 4514 | version "1.0.2" 4515 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 4516 | 4517 | to-fast-properties@^1.0.3: 4518 | version "1.0.3" 4519 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 4520 | 4521 | topo@3.x.x: 4522 | version "3.0.0" 4523 | resolved "https://registry.yarnpkg.com/topo/-/topo-3.0.0.tgz#37e48c330efeac784538e0acd3e62ca5e231fe7a" 4524 | dependencies: 4525 | hoek "5.x.x" 4526 | 4527 | tough-cookie@~2.3.0: 4528 | version "2.3.2" 4529 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 4530 | dependencies: 4531 | punycode "^1.4.1" 4532 | 4533 | trim-newlines@^1.0.0: 4534 | version "1.0.0" 4535 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 4536 | 4537 | trim-off-newlines@^1.0.1: 4538 | version "1.0.1" 4539 | resolved "https://registry.yarnpkg.com/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz#9f9ba9d9efa8764c387698bcbfeb2c848f11adb3" 4540 | 4541 | trim-right@^1.0.1: 4542 | version "1.0.1" 4543 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 4544 | 4545 | trough@^1.0.0: 4546 | version "1.0.0" 4547 | resolved "https://registry.yarnpkg.com/trough/-/trough-1.0.0.tgz#6bdedfe7f2aa49a6f3c432257687555957f342fd" 4548 | 4549 | tryit@^1.0.1: 4550 | version "1.0.3" 4551 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 4552 | 4553 | tunnel-agent@^0.6.0: 4554 | version "0.6.0" 4555 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 4556 | dependencies: 4557 | safe-buffer "^5.0.1" 4558 | 4559 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 4560 | version "0.14.5" 4561 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 4562 | 4563 | type-check@~0.3.2: 4564 | version "0.3.2" 4565 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 4566 | dependencies: 4567 | prelude-ls "~1.1.2" 4568 | 4569 | typedarray@^0.0.6: 4570 | version "0.0.6" 4571 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 4572 | 4573 | uc.micro@^1.0.1, uc.micro@^1.0.3: 4574 | version "1.0.3" 4575 | resolved "https://registry.yarnpkg.com/uc.micro/-/uc.micro-1.0.3.tgz#7ed50d5e0f9a9fb0a573379259f2a77458d50192" 4576 | 4577 | uglify-js@^2.6: 4578 | version "2.8.21" 4579 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.21.tgz#1733f669ae6f82fc90c7b25ec0f5c783ee375314" 4580 | dependencies: 4581 | source-map "~0.5.1" 4582 | yargs "~3.10.0" 4583 | optionalDependencies: 4584 | uglify-to-browserify "~1.0.0" 4585 | 4586 | uglify-js@^3.0.26: 4587 | version "3.0.26" 4588 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.0.26.tgz#ba279ca597b13fe6c62c2d87dd5188e57a7a3233" 4589 | dependencies: 4590 | commander "~2.11.0" 4591 | source-map "~0.5.1" 4592 | 4593 | uglify-to-browserify@~1.0.0: 4594 | version "1.0.2" 4595 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 4596 | 4597 | uid-number@^0.0.6: 4598 | version "0.0.6" 4599 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 4600 | 4601 | uid2@0.0.3: 4602 | version "0.0.3" 4603 | resolved "https://registry.yarnpkg.com/uid2/-/uid2-0.0.3.tgz#483126e11774df2f71b8b639dcd799c376162b82" 4604 | 4605 | unherit@^1.0.4: 4606 | version "1.1.0" 4607 | resolved "https://registry.yarnpkg.com/unherit/-/unherit-1.1.0.tgz#6b9aaedfbf73df1756ad9e316dd981885840cd7d" 4608 | dependencies: 4609 | inherits "^2.0.1" 4610 | xtend "^4.0.1" 4611 | 4612 | unified@^6.0.0: 4613 | version "6.1.5" 4614 | resolved "https://registry.yarnpkg.com/unified/-/unified-6.1.5.tgz#716937872621a63135e62ced2f3ac6a063c6fb87" 4615 | dependencies: 4616 | bail "^1.0.0" 4617 | extend "^3.0.0" 4618 | is-plain-obj "^1.1.0" 4619 | trough "^1.0.0" 4620 | vfile "^2.0.0" 4621 | x-is-function "^1.0.4" 4622 | x-is-string "^0.1.0" 4623 | 4624 | uniq@^1.0.1: 4625 | version "1.0.1" 4626 | resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" 4627 | 4628 | uniqid@^4.0.0: 4629 | version "4.1.1" 4630 | resolved "https://registry.yarnpkg.com/uniqid/-/uniqid-4.1.1.tgz#89220ddf6b751ae52b5f72484863528596bb84c1" 4631 | dependencies: 4632 | macaddress "^0.2.8" 4633 | 4634 | uniqs@^2.0.0: 4635 | version "2.0.0" 4636 | resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02" 4637 | 4638 | unique-string@^1.0.0: 4639 | version "1.0.0" 4640 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" 4641 | dependencies: 4642 | crypto-random-string "^1.0.0" 4643 | 4644 | unique-temp-dir@^1.0.0: 4645 | version "1.0.0" 4646 | resolved "https://registry.yarnpkg.com/unique-temp-dir/-/unique-temp-dir-1.0.0.tgz#6dce95b2681ca003eebfb304a415f9cbabcc5385" 4647 | dependencies: 4648 | mkdirp "^0.5.1" 4649 | os-tmpdir "^1.0.1" 4650 | uid2 "0.0.3" 4651 | 4652 | unist-util-modify-children@^1.0.0: 4653 | version "1.1.0" 4654 | resolved "https://registry.yarnpkg.com/unist-util-modify-children/-/unist-util-modify-children-1.1.0.tgz#559203ae85d7a76283277be1abfbaf595a177ead" 4655 | dependencies: 4656 | array-iterate "^1.0.0" 4657 | 4658 | unist-util-stringify-position@^1.0.0: 4659 | version "1.1.1" 4660 | resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-1.1.1.tgz#3ccbdc53679eed6ecf3777dd7f5e3229c1b6aa3c" 4661 | 4662 | unist-util-visit-children@^1.0.0: 4663 | version "1.1.0" 4664 | resolved "https://registry.yarnpkg.com/unist-util-visit-children/-/unist-util-visit-children-1.1.0.tgz#bf1cd7be3c0a4efd03d84a22dd0ee7db005a3f6b" 4665 | 4666 | unist-util-visit@^1.0.0: 4667 | version "1.1.1" 4668 | resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-1.1.1.tgz#e917a3b137658b335cb4420c7da2e74d928e4e94" 4669 | 4670 | unzip-response@^2.0.1: 4671 | version "2.0.1" 4672 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" 4673 | 4674 | update-notifier@^2.3.0: 4675 | version "2.3.0" 4676 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.3.0.tgz#4e8827a6bb915140ab093559d7014e3ebb837451" 4677 | dependencies: 4678 | boxen "^1.2.1" 4679 | chalk "^2.0.1" 4680 | configstore "^3.0.0" 4681 | import-lazy "^2.1.0" 4682 | is-installed-globally "^0.1.0" 4683 | is-npm "^1.0.0" 4684 | latest-version "^3.0.0" 4685 | semver-diff "^2.0.0" 4686 | xdg-basedir "^3.0.0" 4687 | 4688 | url-parse-lax@^1.0.0: 4689 | version "1.0.0" 4690 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" 4691 | dependencies: 4692 | prepend-http "^1.0.1" 4693 | 4694 | urlgrey@0.4.4: 4695 | version "0.4.4" 4696 | resolved "https://registry.yarnpkg.com/urlgrey/-/urlgrey-0.4.4.tgz#892fe95960805e85519f1cd4389f2cb4cbb7652f" 4697 | 4698 | user-home@^2.0.0: 4699 | version "2.0.0" 4700 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 4701 | dependencies: 4702 | os-homedir "^1.0.0" 4703 | 4704 | util-deprecate@~1.0.1: 4705 | version "1.0.2" 4706 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 4707 | 4708 | uuid@^3.0.0: 4709 | version "3.0.1" 4710 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 4711 | 4712 | validate-npm-package-license@^3.0.1: 4713 | version "3.0.1" 4714 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 4715 | dependencies: 4716 | spdx-correct "~1.0.0" 4717 | spdx-expression-parse "~1.0.0" 4718 | 4719 | vendors@^1.0.0: 4720 | version "1.0.1" 4721 | resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.1.tgz#37ad73c8ee417fb3d580e785312307d274847f22" 4722 | 4723 | verror@1.3.6: 4724 | version "1.3.6" 4725 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 4726 | dependencies: 4727 | extsprintf "1.0.2" 4728 | 4729 | vfile@^2.0.0: 4730 | version "2.2.0" 4731 | resolved "https://registry.yarnpkg.com/vfile/-/vfile-2.2.0.tgz#ce47a4fb335922b233e535db0f7d8121d8fced4e" 4732 | dependencies: 4733 | is-buffer "^1.1.4" 4734 | replace-ext "1.0.0" 4735 | unist-util-stringify-position "^1.0.0" 4736 | 4737 | well-known-symbols@^1.0.0: 4738 | version "1.0.0" 4739 | resolved "https://registry.yarnpkg.com/well-known-symbols/-/well-known-symbols-1.0.0.tgz#73c78ae81a7726a8fa598e2880801c8b16225518" 4740 | 4741 | when@^3.7.7, when@^3.7.8: 4742 | version "3.7.8" 4743 | resolved "https://registry.yarnpkg.com/when/-/when-3.7.8.tgz#c7130b6a7ea04693e842cdc9e7a1f2aa39a39f82" 4744 | 4745 | whet.extend@~0.9.9: 4746 | version "0.9.9" 4747 | resolved "https://registry.yarnpkg.com/whet.extend/-/whet.extend-0.9.9.tgz#f877d5bf648c97e5aa542fadc16d6a259b9c11a1" 4748 | 4749 | which-module@^2.0.0: 4750 | version "2.0.0" 4751 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 4752 | 4753 | which@^1.2.9: 4754 | version "1.2.14" 4755 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 4756 | dependencies: 4757 | isexe "^2.0.0" 4758 | 4759 | which@^1.3.0: 4760 | version "1.3.0" 4761 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 4762 | dependencies: 4763 | isexe "^2.0.0" 4764 | 4765 | wide-align@^1.1.0: 4766 | version "1.1.0" 4767 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 4768 | dependencies: 4769 | string-width "^1.0.1" 4770 | 4771 | widest-line@^2.0.0: 4772 | version "2.0.0" 4773 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-2.0.0.tgz#0142a4e8a243f8882c0233aa0e0281aa76152273" 4774 | dependencies: 4775 | string-width "^2.1.1" 4776 | 4777 | window-size@0.1.0: 4778 | version "0.1.0" 4779 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 4780 | 4781 | with@^5.1.1: 4782 | version "5.1.1" 4783 | resolved "https://registry.yarnpkg.com/with/-/with-5.1.1.tgz#fa4daa92daf32c4ea94ed453c81f04686b575dfe" 4784 | dependencies: 4785 | acorn "^3.1.0" 4786 | acorn-globals "^3.0.0" 4787 | 4788 | wordwrap@0.0.2, wordwrap@~0.0.2: 4789 | version "0.0.2" 4790 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 4791 | 4792 | wordwrap@~1.0.0: 4793 | version "1.0.0" 4794 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 4795 | 4796 | wrap-ansi@^2.0.0: 4797 | version "2.1.0" 4798 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 4799 | dependencies: 4800 | string-width "^1.0.1" 4801 | strip-ansi "^3.0.1" 4802 | 4803 | wrappy@1: 4804 | version "1.0.2" 4805 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 4806 | 4807 | write-file-atomic@^1.1.2, write-file-atomic@^1.1.4: 4808 | version "1.3.1" 4809 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.1.tgz#7d45ba32316328dd1ec7d90f60ebc0d845bb759a" 4810 | dependencies: 4811 | graceful-fs "^4.1.11" 4812 | imurmurhash "^0.1.4" 4813 | slide "^1.1.5" 4814 | 4815 | write-json-file@^2.0.0: 4816 | version "2.0.0" 4817 | resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-2.0.0.tgz#0eaec981fcf9288dbc2806cbd26e06ab9bdca4ed" 4818 | dependencies: 4819 | graceful-fs "^4.1.2" 4820 | mkdirp "^0.5.1" 4821 | pify "^2.0.0" 4822 | sort-keys "^1.1.1" 4823 | write-file-atomic "^1.1.2" 4824 | 4825 | write-pkg@^2.0.0: 4826 | version "2.1.0" 4827 | resolved "https://registry.yarnpkg.com/write-pkg/-/write-pkg-2.1.0.tgz#353aa44c39c48c21440f5c08ce6abd46141c9c08" 4828 | dependencies: 4829 | sort-keys "^1.1.2" 4830 | write-json-file "^2.0.0" 4831 | 4832 | write@^0.2.1: 4833 | version "0.2.1" 4834 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 4835 | dependencies: 4836 | mkdirp "^0.5.1" 4837 | 4838 | x-is-function@^1.0.4: 4839 | version "1.0.4" 4840 | resolved "https://registry.yarnpkg.com/x-is-function/-/x-is-function-1.0.4.tgz#5d294dc3d268cbdd062580e0c5df77a391d1fa1e" 4841 | 4842 | x-is-string@^0.1.0: 4843 | version "0.1.0" 4844 | resolved "https://registry.yarnpkg.com/x-is-string/-/x-is-string-0.1.0.tgz#474b50865af3a49a9c4657f05acd145458f77d82" 4845 | 4846 | xdg-basedir@^3.0.0: 4847 | version "3.0.0" 4848 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" 4849 | 4850 | xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.1: 4851 | version "4.0.1" 4852 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 4853 | 4854 | y18n@^3.2.1: 4855 | version "3.2.1" 4856 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 4857 | 4858 | yallist@^2.0.0: 4859 | version "2.1.2" 4860 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 4861 | 4862 | yargs-parser@^8.0.0, yargs-parser@^8.1.0: 4863 | version "8.1.0" 4864 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-8.1.0.tgz#f1376a33b6629a5d063782944da732631e966950" 4865 | dependencies: 4866 | camelcase "^4.1.0" 4867 | 4868 | yargs@^10.0.3: 4869 | version "10.1.1" 4870 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-10.1.1.tgz#5fe1ea306985a099b33492001fa19a1e61efe285" 4871 | dependencies: 4872 | cliui "^4.0.0" 4873 | decamelize "^1.1.1" 4874 | find-up "^2.1.0" 4875 | get-caller-file "^1.0.1" 4876 | os-locale "^2.0.0" 4877 | require-directory "^2.1.1" 4878 | require-main-filename "^1.0.1" 4879 | set-blocking "^2.0.0" 4880 | string-width "^2.0.0" 4881 | which-module "^2.0.0" 4882 | y18n "^3.2.1" 4883 | yargs-parser "^8.1.0" 4884 | 4885 | yargs@~3.10.0: 4886 | version "3.10.0" 4887 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 4888 | dependencies: 4889 | camelcase "^1.0.2" 4890 | cliui "^2.1.0" 4891 | decamelize "^1.0.0" 4892 | window-size "0.1.0" 4893 | --------------------------------------------------------------------------------