├── .gitignore ├── .npmignore ├── .editorconfig ├── .travis.yml ├── CHANGELOG.md ├── package.json ├── LICENSE ├── index.js ├── README.md ├── test.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | .editorconfig 4 | .travis.yml 5 | test.js 6 | yarn.lock 7 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | end_of_line = lf 6 | insert_final_newline = true 7 | trim_trailing_whitespace = true 8 | indent_style = space 9 | indent_size = 2 10 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "7.0" 4 | - "6.0" 5 | - "5.0" 6 | - "4.0" 7 | sudo: false 8 | script: 9 | - "npm run travis" 10 | addons: 11 | code_climate: 12 | repo_token: 5bfed542b6b6d5706451d09ec65561c9ea9015d93eda411b9036585115a20132 13 | after_success: 14 | - npm install -g codeclimate-test-reporter 15 | - CODECLIMATE_REPO_TOKEN=5bfed542b6b6d5706451d09ec65561c9ea9015d93eda411b9036585115a20132 codeclimate-test-reporter < coverage/lcov.info 16 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 0.3.0 2 | 3 | * Updated CSSO version to 3.0.0 4 | 5 | # 0.2.0 (13.05.2016) 6 | 7 | * Added comments support and coverage 8 | 9 | # 0.1.0 10 | 11 | * Added logger function support 12 | 13 | # 0.0.6 14 | 15 | * Added usage data support 16 | 17 | # 0.0.5 18 | 19 | * Added functionality of csso object 20 | 21 | # 0.0.4 22 | 23 | * Added CHANGELOG. 24 | 25 | # 0.0.3 26 | 27 | * Added tests. 28 | 29 | # 0.0.2 30 | 31 | * Added README and edited functionality. 32 | 33 | # 0.0.1 34 | 35 | * Initial release. 36 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "csso-loader", 3 | "version": "0.3.1", 4 | "description": "CSSO loader module for webpack", 5 | "keywords": [ 6 | "webpack", 7 | "loader", 8 | "csso", 9 | "css", 10 | "minify" 11 | ], 12 | "scripts": { 13 | "test": "jest", 14 | "travis": "jest --coverage" 15 | }, 16 | "homepage": "https://github.com/sandark7/csso-loader", 17 | "bugs": { 18 | "url": "https://github.com/sandark7/csso-loader/issues" 19 | }, 20 | "repository": { 21 | "type": "git", 22 | "url": "git://github.com/sandark7/csso-loader.git" 23 | }, 24 | "author": { 25 | "name": "Andrew Smirnov", 26 | "email": "sandark7@gmail.com", 27 | "url": "https://github.com/sandark7" 28 | }, 29 | "main": "index.js", 30 | "dependencies": { 31 | "csso": "^3.0.1", 32 | "loader-utils": "^1.1.0" 33 | }, 34 | "devDependencies": { 35 | "jest": "^19.0.2" 36 | }, 37 | "engines": { 38 | "node": ">=4.0.0" 39 | }, 40 | "license": "MIT" 41 | } 42 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 SanDark7 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var path = require('path'); 4 | var csso = require('csso'); 5 | var loaderUtils = require('loader-utils'); 6 | 7 | module.exports = function(source) { 8 | var query = loaderUtils.getOptions(this) || {}; 9 | var cssoOptions = this.options ? this.options.csso : false; 10 | var filename = path.basename(this.resourcePath || ''); 11 | var options = {}; 12 | var result; 13 | 14 | if (this.cacheable) { 15 | this.cacheable(); 16 | } 17 | 18 | if (typeof query.debug === 'boolean') { 19 | options.debug = query.debug; 20 | } 21 | 22 | if (typeof query.restructure === 'boolean') { 23 | options.restructure = query.restructure; 24 | } 25 | 26 | if (typeof query.comments === 'boolean') { 27 | options.comments = query.comments; 28 | } 29 | 30 | if (typeof cssoOptions === 'object') { 31 | if (typeof cssoOptions.debug === 'boolean' || [1, 2, 3].indexOf(cssoOptions.debug) !== -1) { 32 | options.debug = cssoOptions.debug; 33 | } 34 | if (typeof cssoOptions.restructure === 'boolean') { 35 | options.restructure = cssoOptions.restructure; 36 | } 37 | if (typeof cssoOptions.usage === 'object') { 38 | options.usage = cssoOptions.usage; 39 | } 40 | if (typeof cssoOptions.logger === 'function') { 41 | options.logger = cssoOptions.logger; 42 | } 43 | if (typeof cssoOptions.comments === 'boolean' || ['exclamation', 'first-exclamation'].indexOf(cssoOptions.comments) !== -1) { 44 | options.comments = cssoOptions.comments; 45 | } 46 | } 47 | 48 | try { 49 | result = csso.minify(source, options); 50 | } catch (error) { 51 | console.error([' ', 52 | error.name + ' ' + filename + ': ' + error.message, 53 | 'Line: ' + error.parseError.line, 54 | 'Column: ' + error.parseError.column 55 | ].join('\n')); 56 | } 57 | 58 | if (result) { 59 | return result.css; 60 | } 61 | 62 | return source; 63 | }; 64 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # csso-loader 2 | [![NPM version](https://img.shields.io/npm/v/csso-loader.svg)](https://www.npmjs.com/package/csso-loader) 3 | [![Build Status](https://img.shields.io/travis/sandark7/csso-loader.svg)](https://travis-ci.org/sandark7/csso-loader) 4 | [![Dependency Status](https://img.shields.io/gemnasium/sandark7/csso-loader.svg)](https://gemnasium.com/sandark7/csso-loader) 5 | [![NPM downloads](https://img.shields.io/npm/dm/csso-loader.svg)](https://www.npmjs.com/package/csso-loader) 6 | [![Code Climate](https://codeclimate.com/github/sandark7/csso-loader/badges/gpa.svg)](https://codeclimate.com/github/sandark7/csso-loader) 7 | [![Test Coverage](https://codeclimate.com/github/sandark7/csso-loader/badges/coverage.svg)](https://codeclimate.com/github/sandark7/csso-loader/coverage) 8 | 9 | [CSSO](https://www.npmjs.com/package/csso) loader module for [webpack](https://www.npmjs.com/package/webpack). 10 | 11 | ## Usage 12 | 13 | [Documentation: Using loaders](http://webpack.github.io/docs/using-loaders.html) 14 | 15 | ## Installation 16 | 17 | ``` 18 | npm install csso-loader --save-dev 19 | ``` 20 | 21 | ## Examples 22 | 23 | Using [csso-loader](https://www.npmjs.com/package/csso-loader) with [css-loader](https://www.npmjs.com/package/css-loader). 24 | 25 | ``` javascript 26 | module.exports = { 27 | ... 28 | module: { 29 | loaders: [ 30 | { 31 | test: /\.css$/, 32 | loader: 'css-loader!csso-loader', 33 | } 34 | ] 35 | } 36 | }; 37 | ``` 38 | 39 | ## Advanced options 40 | 41 | ### restructure 42 | 43 | Default: `true` 44 | 45 | `csso` performs structural optimization for better compression by default. 46 | Use `-restructure` in case you want to disable it. 47 | 48 | ``` javascript 49 | module.exports = { 50 | ... 51 | module: { 52 | loaders: [ 53 | { 54 | test: /\.css$/, 55 | loader: 'css-loader!csso-loader?-restructure', 56 | } 57 | ] 58 | } 59 | }; 60 | ``` 61 | 62 | Also it can be disabled by `restructure` boolean option in `csso` object of webpack config. 63 | 64 | ``` javascript 65 | module.exports = { 66 | ... 67 | module: { 68 | loaders: [ 69 | { 70 | test: /\.css$/, 71 | loader: 'css-loader!csso-loader', 72 | } 73 | ] 74 | }, 75 | csso: { 76 | restructure: false 77 | } 78 | }; 79 | ``` 80 | 81 | ### debug 82 | 83 | Default: `false` 84 | 85 | `debug` is using to get details about the minification process. 86 | 87 | ``` javascript 88 | module.exports = { 89 | ... 90 | module: { 91 | loaders: [ 92 | { 93 | test: /\.css$/, 94 | loader: 'css-loader!csso-loader?debug', 95 | } 96 | ] 97 | } 98 | }; 99 | ``` 100 | 101 | Also you can set `debug` option in `csso` object of webpack config. 102 | It can be boolean or a positive number from 1 to 3 (greater number for more details). 103 | 104 | ``` javascript 105 | module.exports = { 106 | ... 107 | module: { 108 | loaders: [ 109 | { 110 | test: /\.css$/, 111 | loader: 'css-loader!csso-loader', 112 | } 113 | ] 114 | }, 115 | csso: { 116 | debug: 3 117 | } 118 | }; 119 | ``` 120 | 121 | ### comments 122 | 123 | Default: `exclamation` or `true` 124 | 125 | `csso` leave all exclamation comments by default (i.e. `/*! .. */`). 126 | Use '-comments' to remove all comments. 127 | 128 | ``` javascript 129 | module.exports = { 130 | ... 131 | module: { 132 | loaders: [ 133 | { 134 | test: /\.css$/, 135 | loader: 'css-loader!csso-loader?-comments', 136 | } 137 | ] 138 | } 139 | }; 140 | ``` 141 | 142 | Also you can set `comments` option in `csso` object of webpack config. 143 | It can be boolean or string (use `first-exclamation` to remove all comments except first one with exclamation). 144 | 145 | ``` javascript 146 | module.exports = { 147 | ... 148 | module: { 149 | loaders: [ 150 | { 151 | test: /\.css$/, 152 | loader: 'css-loader!csso-loader', 153 | } 154 | ] 155 | }, 156 | csso: { 157 | comments: 'first-exclamation' 158 | } 159 | }; 160 | ``` 161 | 162 | ### usage 163 | 164 | With `usage` option you can set data about CSS usage. For example, white lists (`tags`, `ids` and `classes`) can be set to filter unused selectors and related CSS rules as well. See [Usage data](https://github.com/css/csso#usage-data) in `csso` documentation for more details. 165 | 166 | ``` javascript 167 | module.exports = { 168 | ... 169 | module: { 170 | loaders: [ 171 | { 172 | test: /\.css$/, 173 | loader: 'css-loader!csso-loader', 174 | } 175 | ] 176 | }, 177 | csso: { 178 | usage: { 179 | tags: ['span', 'div'], 180 | ids: ['id1'], 181 | classes: ['class1', 'class2', 'class3', 'class4'] 182 | scopes: [ 183 | ['class1', 'class2'], 184 | ['class3', 'class4'] 185 | ] 186 | } 187 | } 188 | }; 189 | ``` 190 | 191 | ### logger 192 | 193 | To log how CSS is transforming through compression stages use `logger` option. 194 | First argument is a stage name, and second one is AST of current state CSS or `null`. 195 | 196 | ``` javascript 197 | module.exports = { 198 | ... 199 | module: { 200 | loaders: [ 201 | { 202 | test: /\.css$/, 203 | loader: 'css-loader!csso-loader', 204 | } 205 | ] 206 | }, 207 | csso: { 208 | logger: function(stage, ast) { 209 | console.log(stage, ast); 210 | } 211 | } 212 | }; 213 | ``` 214 | 215 | ## License 216 | 217 | [MIT](http://www.opensource.org/licenses/mit-license.php) © Andrew Smirnov 218 | -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const loader = require('./index.js'); 4 | const invalidInput = 'div { background=white; }'; 5 | const simpleInput = 'div { background: white; }'; 6 | const simpleOutput = 'div{background:#fff}'; 7 | const complexInput = 'div { background: white; } span { background: blue; } ul { background: white; }'; 8 | const complexOutput = 'div{background:#fff}span{background:#00f}ul{background:#fff}'; 9 | const restructuredOutput = 'div,ul{background:#fff}span{background:#00f}'; 10 | const commentsInput = '/*! comment */ div { /*! comment */ background: white; }'; 11 | 12 | let globalOutput = []; 13 | console.error = function(message) { 14 | globalOutput.push(message); 15 | }; 16 | 17 | let testLoader = function(input, output, options) { 18 | options = typeof options !== 'undefined' ? options : {}; 19 | expect( 20 | loader.call(options, input) 21 | ).toEqual(output); 22 | }; 23 | 24 | let testLoaderOutput = function(input, output, options) { 25 | options = typeof options !== 'undefined' ? options : {}; 26 | globalOutput = []; 27 | loader.call(options, input); 28 | expect(globalOutput).toContain(output); 29 | }; 30 | 31 | describe('csso-loader', function() { 32 | it('should minimize css', function() { 33 | testLoader(simpleInput, simpleOutput); 34 | }); 35 | 36 | it('should return restructured css by default', function() { 37 | testLoader(complexInput, restructuredOutput); 38 | }); 39 | 40 | it('should return original css in case of error input', function() { 41 | testLoader(invalidInput, invalidInput); 42 | }); 43 | 44 | it('should throw error to console in case of error input', function() { 45 | testLoaderOutput( 46 | invalidInput, 47 | ' \nCssSyntaxError : Colon is expected\nLine: 1\nColumn: 17' 48 | ); 49 | }); 50 | 51 | it('should return debug information in case of debug parameter', function() { 52 | testLoaderOutput( 53 | simpleInput, 54 | '## parsing done in %d ms\n', { 55 | query: '?debug' 56 | } 57 | ); 58 | }); 59 | 60 | it('should return debug information in case of debug equals true in csso options', function() { 61 | testLoaderOutput( 62 | simpleInput, 63 | '## compress done in %d ms\n', { 64 | options: { 65 | csso: { 66 | debug: true 67 | } 68 | } 69 | } 70 | ); 71 | }); 72 | 73 | it('should return more debug information in case of debug equals 3 in csso options', function() { 74 | testLoaderOutput( 75 | simpleInput, 76 | '[0.000s] clean\n div{background:white}\n', { 77 | options: { 78 | csso: { 79 | debug: 3 80 | } 81 | } 82 | } 83 | ); 84 | }); 85 | 86 | it('should overwrite debug information in csso options over query debug parameter', function() { 87 | globalOutput = []; 88 | loader.call({ 89 | query: '?debug', 90 | options: { 91 | csso: { 92 | debug: false 93 | } 94 | } 95 | }, simpleInput); 96 | expect(globalOutput).toHaveLength(0); 97 | }); 98 | 99 | it('should return non-restructured css in case of -restructure parameter', function() { 100 | testLoader( 101 | complexInput, 102 | complexOutput, { 103 | query: '?-restructure' 104 | } 105 | ); 106 | }); 107 | 108 | it('should return non-restructured css in case of restructure equals false in csso options', function() { 109 | testLoader( 110 | complexInput, 111 | complexOutput, { 112 | options: { 113 | csso: { 114 | restructure: false 115 | } 116 | } 117 | } 118 | ); 119 | }); 120 | 121 | it('should overwrite restructure information in csso options over query restructure parameter', function() { 122 | testLoader( 123 | complexInput, 124 | restructuredOutput, { 125 | query: '?-restructure', 126 | options: { 127 | csso: { 128 | restructure: true 129 | } 130 | } 131 | } 132 | ); 133 | }); 134 | 135 | it('should cut unnecessary tags, ids and classes from css due to usage data in csso options', function() { 136 | testLoader( 137 | 'div { background: white; } span { background: blue; } #id1 { background: white; } #id2 { background: red; } .class1 { background: blue; } .class2 { background: green; }', 138 | '.class1,span{background:#00f}#id1{background:#fff}', { 139 | options: { 140 | csso: { 141 | usage: { 142 | tags: ['span'], 143 | ids: ['id1'], 144 | classes: ['class1'] 145 | } 146 | } 147 | } 148 | } 149 | ); 150 | }); 151 | 152 | it('should return optimized css due to scopes in usage data in csso options', function() { 153 | testLoader( 154 | '.class1 { background: white; } .class2 { font-size: 20px; } .class3 { background: white; } .class4 { font-size: 25px; }', 155 | '.class1,.class3{background:#fff}.class2{font-size:20px}.class4{font-size:25px}', { 156 | options: { 157 | csso: { 158 | usage: { 159 | scopes: [ 160 | ['class1', 'class2'], 161 | ['class3', 'class4'] 162 | ] 163 | } 164 | } 165 | } 166 | } 167 | ); 168 | }); 169 | 170 | it('should return debug information in logger function in csso options', function() { 171 | testLoaderOutput( 172 | simpleInput, 173 | 'initialMergeRuleset', { 174 | options: { 175 | csso: { 176 | logger: function(stage, data) { 177 | console.error(stage, data); 178 | } 179 | } 180 | } 181 | } 182 | ); 183 | }); 184 | 185 | it('should leave exclamation comments in optimized css by default', function() { 186 | testLoader( 187 | '/*! comment */ div { background: white; } /*! comment */ /* comment */', 188 | '/*! comment */\ndiv{background:#fff}\n/*! comment */' 189 | ); 190 | }); 191 | 192 | it('should leave only first exclamation comment in optimized css due to first-exclamation in comments in csso options', function() { 193 | testLoader( 194 | commentsInput, 195 | '/*! comment */\ndiv{background:#fff}', { 196 | options: { 197 | csso: { 198 | comments: 'first-exclamation' 199 | } 200 | } 201 | } 202 | ); 203 | }); 204 | 205 | it('should cut all comments in optimized css due to false in comments in csso options', function() { 206 | testLoader( 207 | commentsInput, 208 | simpleOutput, { 209 | options: { 210 | csso: { 211 | comments: false 212 | } 213 | } 214 | } 215 | ); 216 | }); 217 | 218 | it('should cut all comments in optimized css in case of -comments parameter', function() { 219 | testLoader( 220 | commentsInput, 221 | simpleOutput, { 222 | query: '?-comments' 223 | } 224 | ); 225 | }); 226 | }); 227 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abab@^1.0.3: 6 | version "1.0.3" 7 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.3.tgz#b81de5f7274ec4e756d797cd834f303642724e5d" 8 | 9 | acorn-globals@^3.1.0: 10 | version "3.1.0" 11 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 12 | dependencies: 13 | acorn "^4.0.4" 14 | 15 | acorn@^4.0.4: 16 | version "4.0.11" 17 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.11.tgz#edcda3bd937e7556410d42ed5860f67399c794c0" 18 | 19 | ajv@^4.9.1: 20 | version "4.11.7" 21 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.7.tgz#8655a5d86d0824985cc471a1d913fb6729a0ec48" 22 | dependencies: 23 | co "^4.6.0" 24 | json-stable-stringify "^1.0.1" 25 | 26 | align-text@^0.1.1, align-text@^0.1.3: 27 | version "0.1.4" 28 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 29 | dependencies: 30 | kind-of "^3.0.2" 31 | longest "^1.0.1" 32 | repeat-string "^1.5.2" 33 | 34 | amdefine@>=0.0.4: 35 | version "1.0.1" 36 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 37 | 38 | ansi-escapes@^1.4.0: 39 | version "1.4.0" 40 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 41 | 42 | ansi-regex@^2.0.0: 43 | version "2.1.1" 44 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 45 | 46 | ansi-styles@^2.2.1: 47 | version "2.2.1" 48 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 49 | 50 | ansi-styles@^3.0.0: 51 | version "3.0.0" 52 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.0.0.tgz#5404e93a544c4fec7f048262977bebfe3155e0c1" 53 | dependencies: 54 | color-convert "^1.0.0" 55 | 56 | anymatch@^1.3.0: 57 | version "1.3.0" 58 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 59 | dependencies: 60 | arrify "^1.0.0" 61 | micromatch "^2.1.5" 62 | 63 | append-transform@^0.4.0: 64 | version "0.4.0" 65 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 66 | dependencies: 67 | default-require-extensions "^1.0.0" 68 | 69 | argparse@^1.0.7: 70 | version "1.0.9" 71 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 72 | dependencies: 73 | sprintf-js "~1.0.2" 74 | 75 | arr-diff@^2.0.0: 76 | version "2.0.0" 77 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 78 | dependencies: 79 | arr-flatten "^1.0.1" 80 | 81 | arr-flatten@^1.0.1: 82 | version "1.0.3" 83 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1" 84 | 85 | array-equal@^1.0.0: 86 | version "1.0.0" 87 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 88 | 89 | array-unique@^0.2.1: 90 | version "0.2.1" 91 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 92 | 93 | arrify@^1.0.0, arrify@^1.0.1: 94 | version "1.0.1" 95 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 96 | 97 | asn1@~0.2.3: 98 | version "0.2.3" 99 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 100 | 101 | assert-plus@1.0.0, assert-plus@^1.0.0: 102 | version "1.0.0" 103 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 104 | 105 | assert-plus@^0.2.0: 106 | version "0.2.0" 107 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 108 | 109 | async@^1.4.0: 110 | version "1.5.2" 111 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 112 | 113 | async@^2.1.4: 114 | version "2.3.0" 115 | resolved "https://registry.yarnpkg.com/async/-/async-2.3.0.tgz#1013d1051047dd320fe24e494d5c66ecaf6147d9" 116 | dependencies: 117 | lodash "^4.14.0" 118 | 119 | asynckit@^0.4.0: 120 | version "0.4.0" 121 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 122 | 123 | aws-sign2@~0.6.0: 124 | version "0.6.0" 125 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 126 | 127 | aws4@^1.2.1: 128 | version "1.6.0" 129 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 130 | 131 | babel-code-frame@^6.22.0: 132 | version "6.22.0" 133 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 134 | dependencies: 135 | chalk "^1.1.0" 136 | esutils "^2.0.2" 137 | js-tokens "^3.0.0" 138 | 139 | babel-core@^6.0.0, babel-core@^6.24.1: 140 | version "6.24.1" 141 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.1.tgz#8c428564dce1e1f41fb337ec34f4c3b022b5ad83" 142 | dependencies: 143 | babel-code-frame "^6.22.0" 144 | babel-generator "^6.24.1" 145 | babel-helpers "^6.24.1" 146 | babel-messages "^6.23.0" 147 | babel-register "^6.24.1" 148 | babel-runtime "^6.22.0" 149 | babel-template "^6.24.1" 150 | babel-traverse "^6.24.1" 151 | babel-types "^6.24.1" 152 | babylon "^6.11.0" 153 | convert-source-map "^1.1.0" 154 | debug "^2.1.1" 155 | json5 "^0.5.0" 156 | lodash "^4.2.0" 157 | minimatch "^3.0.2" 158 | path-is-absolute "^1.0.0" 159 | private "^0.1.6" 160 | slash "^1.0.0" 161 | source-map "^0.5.0" 162 | 163 | babel-generator@^6.18.0, babel-generator@^6.24.1: 164 | version "6.24.1" 165 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.1.tgz#e715f486c58ded25649d888944d52aa07c5d9497" 166 | dependencies: 167 | babel-messages "^6.23.0" 168 | babel-runtime "^6.22.0" 169 | babel-types "^6.24.1" 170 | detect-indent "^4.0.0" 171 | jsesc "^1.3.0" 172 | lodash "^4.2.0" 173 | source-map "^0.5.0" 174 | trim-right "^1.0.1" 175 | 176 | babel-helpers@^6.24.1: 177 | version "6.24.1" 178 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 179 | dependencies: 180 | babel-runtime "^6.22.0" 181 | babel-template "^6.24.1" 182 | 183 | babel-jest@^19.0.0: 184 | version "19.0.0" 185 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-19.0.0.tgz#59323ced99a3a84d359da219ca881074ffc6ce3f" 186 | dependencies: 187 | babel-core "^6.0.0" 188 | babel-plugin-istanbul "^4.0.0" 189 | babel-preset-jest "^19.0.0" 190 | 191 | babel-messages@^6.23.0: 192 | version "6.23.0" 193 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 194 | dependencies: 195 | babel-runtime "^6.22.0" 196 | 197 | babel-plugin-istanbul@^4.0.0: 198 | version "4.1.1" 199 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.1.tgz#c12de0fc6fe42adfb16be56f1ad11e4a9782eca9" 200 | dependencies: 201 | find-up "^2.1.0" 202 | istanbul-lib-instrument "^1.6.2" 203 | test-exclude "^4.0.3" 204 | 205 | babel-plugin-jest-hoist@^19.0.0: 206 | version "19.0.0" 207 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-19.0.0.tgz#4ae2a04ea612a6e73651f3fde52c178991304bea" 208 | 209 | babel-preset-jest@^19.0.0: 210 | version "19.0.0" 211 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-19.0.0.tgz#22d67201d02324a195811288eb38294bb3cac396" 212 | dependencies: 213 | babel-plugin-jest-hoist "^19.0.0" 214 | 215 | babel-register@^6.24.1: 216 | version "6.24.1" 217 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 218 | dependencies: 219 | babel-core "^6.24.1" 220 | babel-runtime "^6.22.0" 221 | core-js "^2.4.0" 222 | home-or-tmp "^2.0.0" 223 | lodash "^4.2.0" 224 | mkdirp "^0.5.1" 225 | source-map-support "^0.4.2" 226 | 227 | babel-runtime@^6.22.0: 228 | version "6.23.0" 229 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 230 | dependencies: 231 | core-js "^2.4.0" 232 | regenerator-runtime "^0.10.0" 233 | 234 | babel-template@^6.16.0, babel-template@^6.24.1: 235 | version "6.24.1" 236 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333" 237 | dependencies: 238 | babel-runtime "^6.22.0" 239 | babel-traverse "^6.24.1" 240 | babel-types "^6.24.1" 241 | babylon "^6.11.0" 242 | lodash "^4.2.0" 243 | 244 | babel-traverse@^6.18.0, babel-traverse@^6.24.1: 245 | version "6.24.1" 246 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695" 247 | dependencies: 248 | babel-code-frame "^6.22.0" 249 | babel-messages "^6.23.0" 250 | babel-runtime "^6.22.0" 251 | babel-types "^6.24.1" 252 | babylon "^6.15.0" 253 | debug "^2.2.0" 254 | globals "^9.0.0" 255 | invariant "^2.2.0" 256 | lodash "^4.2.0" 257 | 258 | babel-types@^6.18.0, babel-types@^6.24.1: 259 | version "6.24.1" 260 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975" 261 | dependencies: 262 | babel-runtime "^6.22.0" 263 | esutils "^2.0.2" 264 | lodash "^4.2.0" 265 | to-fast-properties "^1.0.1" 266 | 267 | babylon@^6.11.0, babylon@^6.13.0, babylon@^6.15.0: 268 | version "6.17.0" 269 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.0.tgz#37da948878488b9c4e3c4038893fa3314b3fc932" 270 | 271 | balanced-match@^0.4.1: 272 | version "0.4.2" 273 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 274 | 275 | bcrypt-pbkdf@^1.0.0: 276 | version "1.0.1" 277 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 278 | dependencies: 279 | tweetnacl "^0.14.3" 280 | 281 | big.js@^3.1.3: 282 | version "3.1.3" 283 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.1.3.tgz#4cada2193652eb3ca9ec8e55c9015669c9806978" 284 | 285 | boom@2.x.x: 286 | version "2.10.1" 287 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 288 | dependencies: 289 | hoek "2.x.x" 290 | 291 | brace-expansion@^1.0.0: 292 | version "1.1.7" 293 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.7.tgz#3effc3c50e000531fb720eaff80f0ae8ef23cf59" 294 | dependencies: 295 | balanced-match "^0.4.1" 296 | concat-map "0.0.1" 297 | 298 | braces@^1.8.2: 299 | version "1.8.5" 300 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 301 | dependencies: 302 | expand-range "^1.8.1" 303 | preserve "^0.2.0" 304 | repeat-element "^1.1.2" 305 | 306 | browser-resolve@^1.11.2: 307 | version "1.11.2" 308 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 309 | dependencies: 310 | resolve "1.1.7" 311 | 312 | bser@1.0.2: 313 | version "1.0.2" 314 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" 315 | dependencies: 316 | node-int64 "^0.4.0" 317 | 318 | bser@^2.0.0: 319 | version "2.0.0" 320 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 321 | dependencies: 322 | node-int64 "^0.4.0" 323 | 324 | builtin-modules@^1.0.0: 325 | version "1.1.1" 326 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 327 | 328 | callsites@^2.0.0: 329 | version "2.0.0" 330 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 331 | 332 | camelcase@^1.0.2: 333 | version "1.2.1" 334 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 335 | 336 | camelcase@^3.0.0: 337 | version "3.0.0" 338 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 339 | 340 | caseless@~0.12.0: 341 | version "0.12.0" 342 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 343 | 344 | center-align@^0.1.1: 345 | version "0.1.3" 346 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 347 | dependencies: 348 | align-text "^0.1.3" 349 | lazy-cache "^1.0.3" 350 | 351 | chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 352 | version "1.1.3" 353 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 354 | dependencies: 355 | ansi-styles "^2.2.1" 356 | escape-string-regexp "^1.0.2" 357 | has-ansi "^2.0.0" 358 | strip-ansi "^3.0.0" 359 | supports-color "^2.0.0" 360 | 361 | ci-info@^1.0.0: 362 | version "1.0.0" 363 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 364 | 365 | cliui@^2.1.0: 366 | version "2.1.0" 367 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 368 | dependencies: 369 | center-align "^0.1.1" 370 | right-align "^0.1.1" 371 | wordwrap "0.0.2" 372 | 373 | cliui@^3.2.0: 374 | version "3.2.0" 375 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 376 | dependencies: 377 | string-width "^1.0.1" 378 | strip-ansi "^3.0.1" 379 | wrap-ansi "^2.0.0" 380 | 381 | co@^4.6.0: 382 | version "4.6.0" 383 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 384 | 385 | code-point-at@^1.0.0: 386 | version "1.1.0" 387 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 388 | 389 | color-convert@^1.0.0: 390 | version "1.9.0" 391 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 392 | dependencies: 393 | color-name "^1.1.1" 394 | 395 | color-name@^1.1.1: 396 | version "1.1.2" 397 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.2.tgz#5c8ab72b64bd2215d617ae9559ebb148475cf98d" 398 | 399 | combined-stream@^1.0.5, combined-stream@~1.0.5: 400 | version "1.0.5" 401 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 402 | dependencies: 403 | delayed-stream "~1.0.0" 404 | 405 | concat-map@0.0.1: 406 | version "0.0.1" 407 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 408 | 409 | content-type-parser@^1.0.1: 410 | version "1.0.1" 411 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 412 | 413 | convert-source-map@^1.1.0: 414 | version "1.5.0" 415 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 416 | 417 | core-js@^2.4.0: 418 | version "2.4.1" 419 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 420 | 421 | cryptiles@2.x.x: 422 | version "2.0.5" 423 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 424 | dependencies: 425 | boom "2.x.x" 426 | 427 | css-tree@1.0.0-alpha17: 428 | version "1.0.0-alpha17" 429 | resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha17.tgz#7ab95ab72c533917af8be54313fec81841c5223a" 430 | dependencies: 431 | source-map "^0.5.3" 432 | 433 | csso@^3.0.1: 434 | version "3.0.1" 435 | resolved "https://registry.yarnpkg.com/csso/-/csso-3.0.1.tgz#1469af5ee2ec509addadd8777aa0e45acb6b2f58" 436 | dependencies: 437 | css-tree "1.0.0-alpha17" 438 | 439 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 440 | version "0.3.2" 441 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 442 | 443 | "cssstyle@>= 0.2.37 < 0.3.0": 444 | version "0.2.37" 445 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 446 | dependencies: 447 | cssom "0.3.x" 448 | 449 | dashdash@^1.12.0: 450 | version "1.14.1" 451 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 452 | dependencies: 453 | assert-plus "^1.0.0" 454 | 455 | debug@^2.1.1, debug@^2.2.0: 456 | version "2.6.4" 457 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.4.tgz#7586a9b3c39741c0282ae33445c4e8ac74734fe0" 458 | dependencies: 459 | ms "0.7.3" 460 | 461 | decamelize@^1.0.0, decamelize@^1.1.1: 462 | version "1.2.0" 463 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 464 | 465 | deep-is@~0.1.3: 466 | version "0.1.3" 467 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 468 | 469 | default-require-extensions@^1.0.0: 470 | version "1.0.0" 471 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 472 | dependencies: 473 | strip-bom "^2.0.0" 474 | 475 | delayed-stream@~1.0.0: 476 | version "1.0.0" 477 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 478 | 479 | detect-indent@^4.0.0: 480 | version "4.0.0" 481 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 482 | dependencies: 483 | repeating "^2.0.0" 484 | 485 | diff@^3.0.0: 486 | version "3.2.0" 487 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 488 | 489 | ecc-jsbn@~0.1.1: 490 | version "0.1.1" 491 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 492 | dependencies: 493 | jsbn "~0.1.0" 494 | 495 | emojis-list@^2.0.0: 496 | version "2.1.0" 497 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" 498 | 499 | "errno@>=0.1.1 <0.2.0-0": 500 | version "0.1.4" 501 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 502 | dependencies: 503 | prr "~0.0.0" 504 | 505 | error-ex@^1.2.0: 506 | version "1.3.1" 507 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 508 | dependencies: 509 | is-arrayish "^0.2.1" 510 | 511 | escape-string-regexp@^1.0.2: 512 | version "1.0.5" 513 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 514 | 515 | escodegen@^1.6.1: 516 | version "1.8.1" 517 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 518 | dependencies: 519 | esprima "^2.7.1" 520 | estraverse "^1.9.1" 521 | esutils "^2.0.2" 522 | optionator "^0.8.1" 523 | optionalDependencies: 524 | source-map "~0.2.0" 525 | 526 | esprima@^2.7.1: 527 | version "2.7.3" 528 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 529 | 530 | esprima@^3.1.1: 531 | version "3.1.3" 532 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 533 | 534 | estraverse@^1.9.1: 535 | version "1.9.3" 536 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 537 | 538 | esutils@^2.0.2: 539 | version "2.0.2" 540 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 541 | 542 | exec-sh@^0.2.0: 543 | version "0.2.0" 544 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" 545 | dependencies: 546 | merge "^1.1.3" 547 | 548 | expand-brackets@^0.1.4: 549 | version "0.1.5" 550 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 551 | dependencies: 552 | is-posix-bracket "^0.1.0" 553 | 554 | expand-range@^1.8.1: 555 | version "1.8.2" 556 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 557 | dependencies: 558 | fill-range "^2.1.0" 559 | 560 | extend@~3.0.0: 561 | version "3.0.0" 562 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 563 | 564 | extglob@^0.3.1: 565 | version "0.3.2" 566 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 567 | dependencies: 568 | is-extglob "^1.0.0" 569 | 570 | extsprintf@1.0.2: 571 | version "1.0.2" 572 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 573 | 574 | fast-levenshtein@~2.0.4: 575 | version "2.0.6" 576 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 577 | 578 | fb-watchman@^1.8.0: 579 | version "1.9.2" 580 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383" 581 | dependencies: 582 | bser "1.0.2" 583 | 584 | fb-watchman@^2.0.0: 585 | version "2.0.0" 586 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 587 | dependencies: 588 | bser "^2.0.0" 589 | 590 | filename-regex@^2.0.0: 591 | version "2.0.0" 592 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 593 | 594 | fileset@^2.0.2: 595 | version "2.0.3" 596 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 597 | dependencies: 598 | glob "^7.0.3" 599 | minimatch "^3.0.3" 600 | 601 | fill-range@^2.1.0: 602 | version "2.2.3" 603 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 604 | dependencies: 605 | is-number "^2.1.0" 606 | isobject "^2.0.0" 607 | randomatic "^1.1.3" 608 | repeat-element "^1.1.2" 609 | repeat-string "^1.5.2" 610 | 611 | find-up@^1.0.0: 612 | version "1.1.2" 613 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 614 | dependencies: 615 | path-exists "^2.0.0" 616 | pinkie-promise "^2.0.0" 617 | 618 | find-up@^2.1.0: 619 | version "2.1.0" 620 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 621 | dependencies: 622 | locate-path "^2.0.0" 623 | 624 | for-in@^1.0.1: 625 | version "1.0.2" 626 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 627 | 628 | for-own@^0.1.4: 629 | version "0.1.5" 630 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 631 | dependencies: 632 | for-in "^1.0.1" 633 | 634 | forever-agent@~0.6.1: 635 | version "0.6.1" 636 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 637 | 638 | form-data@~2.1.1: 639 | version "2.1.4" 640 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 641 | dependencies: 642 | asynckit "^0.4.0" 643 | combined-stream "^1.0.5" 644 | mime-types "^2.1.12" 645 | 646 | fs.realpath@^1.0.0: 647 | version "1.0.0" 648 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 649 | 650 | get-caller-file@^1.0.1: 651 | version "1.0.2" 652 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 653 | 654 | getpass@^0.1.1: 655 | version "0.1.6" 656 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 657 | dependencies: 658 | assert-plus "^1.0.0" 659 | 660 | glob-base@^0.3.0: 661 | version "0.3.0" 662 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 663 | dependencies: 664 | glob-parent "^2.0.0" 665 | is-glob "^2.0.0" 666 | 667 | glob-parent@^2.0.0: 668 | version "2.0.0" 669 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 670 | dependencies: 671 | is-glob "^2.0.0" 672 | 673 | glob@^7.0.3, glob@^7.0.5: 674 | version "7.1.1" 675 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 676 | dependencies: 677 | fs.realpath "^1.0.0" 678 | inflight "^1.0.4" 679 | inherits "2" 680 | minimatch "^3.0.2" 681 | once "^1.3.0" 682 | path-is-absolute "^1.0.0" 683 | 684 | globals@^9.0.0: 685 | version "9.17.0" 686 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 687 | 688 | graceful-fs@^4.1.2, graceful-fs@^4.1.6: 689 | version "4.1.11" 690 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 691 | 692 | growly@^1.3.0: 693 | version "1.3.0" 694 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 695 | 696 | handlebars@^4.0.3: 697 | version "4.0.6" 698 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.6.tgz#2ce4484850537f9c97a8026d5399b935c4ed4ed7" 699 | dependencies: 700 | async "^1.4.0" 701 | optimist "^0.6.1" 702 | source-map "^0.4.4" 703 | optionalDependencies: 704 | uglify-js "^2.6" 705 | 706 | har-schema@^1.0.5: 707 | version "1.0.5" 708 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 709 | 710 | har-validator@~4.2.1: 711 | version "4.2.1" 712 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 713 | dependencies: 714 | ajv "^4.9.1" 715 | har-schema "^1.0.5" 716 | 717 | has-ansi@^2.0.0: 718 | version "2.0.0" 719 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 720 | dependencies: 721 | ansi-regex "^2.0.0" 722 | 723 | has-flag@^1.0.0: 724 | version "1.0.0" 725 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 726 | 727 | hawk@~3.1.3: 728 | version "3.1.3" 729 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 730 | dependencies: 731 | boom "2.x.x" 732 | cryptiles "2.x.x" 733 | hoek "2.x.x" 734 | sntp "1.x.x" 735 | 736 | hoek@2.x.x: 737 | version "2.16.3" 738 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 739 | 740 | home-or-tmp@^2.0.0: 741 | version "2.0.0" 742 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 743 | dependencies: 744 | os-homedir "^1.0.0" 745 | os-tmpdir "^1.0.1" 746 | 747 | hosted-git-info@^2.1.4: 748 | version "2.4.2" 749 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.2.tgz#0076b9f46a270506ddbaaea56496897460612a67" 750 | 751 | html-encoding-sniffer@^1.0.1: 752 | version "1.0.1" 753 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 754 | dependencies: 755 | whatwg-encoding "^1.0.1" 756 | 757 | http-signature@~1.1.0: 758 | version "1.1.1" 759 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 760 | dependencies: 761 | assert-plus "^0.2.0" 762 | jsprim "^1.2.2" 763 | sshpk "^1.7.0" 764 | 765 | iconv-lite@0.4.13: 766 | version "0.4.13" 767 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 768 | 769 | inflight@^1.0.4: 770 | version "1.0.6" 771 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 772 | dependencies: 773 | once "^1.3.0" 774 | wrappy "1" 775 | 776 | inherits@2: 777 | version "2.0.3" 778 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 779 | 780 | invariant@^2.2.0: 781 | version "2.2.2" 782 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 783 | dependencies: 784 | loose-envify "^1.0.0" 785 | 786 | invert-kv@^1.0.0: 787 | version "1.0.0" 788 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 789 | 790 | is-arrayish@^0.2.1: 791 | version "0.2.1" 792 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 793 | 794 | is-buffer@^1.0.2: 795 | version "1.1.5" 796 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 797 | 798 | is-builtin-module@^1.0.0: 799 | version "1.0.0" 800 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 801 | dependencies: 802 | builtin-modules "^1.0.0" 803 | 804 | is-ci@^1.0.9: 805 | version "1.0.10" 806 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 807 | dependencies: 808 | ci-info "^1.0.0" 809 | 810 | is-dotfile@^1.0.0: 811 | version "1.0.2" 812 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 813 | 814 | is-equal-shallow@^0.1.3: 815 | version "0.1.3" 816 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 817 | dependencies: 818 | is-primitive "^2.0.0" 819 | 820 | is-extendable@^0.1.1: 821 | version "0.1.1" 822 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 823 | 824 | is-extglob@^1.0.0: 825 | version "1.0.0" 826 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 827 | 828 | is-finite@^1.0.0: 829 | version "1.0.2" 830 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 831 | dependencies: 832 | number-is-nan "^1.0.0" 833 | 834 | is-fullwidth-code-point@^1.0.0: 835 | version "1.0.0" 836 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 837 | dependencies: 838 | number-is-nan "^1.0.0" 839 | 840 | is-glob@^2.0.0, is-glob@^2.0.1: 841 | version "2.0.1" 842 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 843 | dependencies: 844 | is-extglob "^1.0.0" 845 | 846 | is-number@^2.0.2, is-number@^2.1.0: 847 | version "2.1.0" 848 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 849 | dependencies: 850 | kind-of "^3.0.2" 851 | 852 | is-posix-bracket@^0.1.0: 853 | version "0.1.1" 854 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 855 | 856 | is-primitive@^2.0.0: 857 | version "2.0.0" 858 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 859 | 860 | is-typedarray@~1.0.0: 861 | version "1.0.0" 862 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 863 | 864 | is-utf8@^0.2.0: 865 | version "0.2.1" 866 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 867 | 868 | isarray@1.0.0: 869 | version "1.0.0" 870 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 871 | 872 | isexe@^2.0.0: 873 | version "2.0.0" 874 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 875 | 876 | isobject@^2.0.0: 877 | version "2.1.0" 878 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 879 | dependencies: 880 | isarray "1.0.0" 881 | 882 | isstream@~0.1.2: 883 | version "0.1.2" 884 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 885 | 886 | istanbul-api@^1.1.0-alpha.1: 887 | version "1.1.7" 888 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.7.tgz#f6f37f09f8002b130f891c646b70ee4a8e7345ae" 889 | dependencies: 890 | async "^2.1.4" 891 | fileset "^2.0.2" 892 | istanbul-lib-coverage "^1.0.2" 893 | istanbul-lib-hook "^1.0.5" 894 | istanbul-lib-instrument "^1.7.0" 895 | istanbul-lib-report "^1.0.0" 896 | istanbul-lib-source-maps "^1.1.1" 897 | istanbul-reports "^1.0.2" 898 | js-yaml "^3.7.0" 899 | mkdirp "^0.5.1" 900 | once "^1.4.0" 901 | 902 | istanbul-lib-coverage@^1.0.0, istanbul-lib-coverage@^1.0.2: 903 | version "1.0.2" 904 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.0.2.tgz#87a0c015b6910651cb3b184814dfb339337e25e1" 905 | 906 | istanbul-lib-hook@^1.0.5: 907 | version "1.0.5" 908 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.5.tgz#6ca3d16d60c5f4082da39f7c5cd38ea8a772b88e" 909 | dependencies: 910 | append-transform "^0.4.0" 911 | 912 | istanbul-lib-instrument@^1.1.1, istanbul-lib-instrument@^1.6.2, istanbul-lib-instrument@^1.7.0: 913 | version "1.7.0" 914 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.0.tgz#b8e0dc25709bb44e17336ab47b7bb5c97c23f659" 915 | dependencies: 916 | babel-generator "^6.18.0" 917 | babel-template "^6.16.0" 918 | babel-traverse "^6.18.0" 919 | babel-types "^6.18.0" 920 | babylon "^6.13.0" 921 | istanbul-lib-coverage "^1.0.2" 922 | semver "^5.3.0" 923 | 924 | istanbul-lib-report@^1.0.0: 925 | version "1.0.0" 926 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.0.0.tgz#d83dac7f26566b521585569367fe84ccfc7aaecb" 927 | dependencies: 928 | istanbul-lib-coverage "^1.0.2" 929 | mkdirp "^0.5.1" 930 | path-parse "^1.0.5" 931 | supports-color "^3.1.2" 932 | 933 | istanbul-lib-source-maps@^1.1.1: 934 | version "1.1.1" 935 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.1.1.tgz#f8c8c2e8f2160d1d91526d97e5bd63b2079af71c" 936 | dependencies: 937 | istanbul-lib-coverage "^1.0.2" 938 | mkdirp "^0.5.1" 939 | rimraf "^2.4.4" 940 | source-map "^0.5.3" 941 | 942 | istanbul-reports@^1.0.2: 943 | version "1.0.2" 944 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.0.2.tgz#4e8366abe6fa746cc1cd6633f108de12cc6ac6fa" 945 | dependencies: 946 | handlebars "^4.0.3" 947 | 948 | jest-changed-files@^19.0.2: 949 | version "19.0.2" 950 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-19.0.2.tgz#16c54c84c3270be408e06d2e8af3f3e37a885824" 951 | 952 | jest-cli@^19.0.2: 953 | version "19.0.2" 954 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-19.0.2.tgz#cc3620b62acac5f2d93a548cb6ef697d4ec85443" 955 | dependencies: 956 | ansi-escapes "^1.4.0" 957 | callsites "^2.0.0" 958 | chalk "^1.1.1" 959 | graceful-fs "^4.1.6" 960 | is-ci "^1.0.9" 961 | istanbul-api "^1.1.0-alpha.1" 962 | istanbul-lib-coverage "^1.0.0" 963 | istanbul-lib-instrument "^1.1.1" 964 | jest-changed-files "^19.0.2" 965 | jest-config "^19.0.2" 966 | jest-environment-jsdom "^19.0.2" 967 | jest-haste-map "^19.0.0" 968 | jest-jasmine2 "^19.0.2" 969 | jest-message-util "^19.0.0" 970 | jest-regex-util "^19.0.0" 971 | jest-resolve-dependencies "^19.0.0" 972 | jest-runtime "^19.0.2" 973 | jest-snapshot "^19.0.2" 974 | jest-util "^19.0.2" 975 | micromatch "^2.3.11" 976 | node-notifier "^5.0.1" 977 | slash "^1.0.0" 978 | string-length "^1.0.1" 979 | throat "^3.0.0" 980 | which "^1.1.1" 981 | worker-farm "^1.3.1" 982 | yargs "^6.3.0" 983 | 984 | jest-config@^19.0.2: 985 | version "19.0.2" 986 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-19.0.2.tgz#1b9bd2db0ddd16df61c2b10a54009e1768da6411" 987 | dependencies: 988 | chalk "^1.1.1" 989 | jest-environment-jsdom "^19.0.2" 990 | jest-environment-node "^19.0.2" 991 | jest-jasmine2 "^19.0.2" 992 | jest-regex-util "^19.0.0" 993 | jest-resolve "^19.0.2" 994 | jest-validate "^19.0.2" 995 | pretty-format "^19.0.0" 996 | 997 | jest-diff@^19.0.0: 998 | version "19.0.0" 999 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-19.0.0.tgz#d1563cfc56c8b60232988fbc05d4d16ed90f063c" 1000 | dependencies: 1001 | chalk "^1.1.3" 1002 | diff "^3.0.0" 1003 | jest-matcher-utils "^19.0.0" 1004 | pretty-format "^19.0.0" 1005 | 1006 | jest-environment-jsdom@^19.0.2: 1007 | version "19.0.2" 1008 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-19.0.2.tgz#ceda859c4a4b94ab35e4de7dab54b926f293e4a3" 1009 | dependencies: 1010 | jest-mock "^19.0.0" 1011 | jest-util "^19.0.2" 1012 | jsdom "^9.11.0" 1013 | 1014 | jest-environment-node@^19.0.2: 1015 | version "19.0.2" 1016 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-19.0.2.tgz#6e84079db87ed21d0c05e1f9669f207b116fe99b" 1017 | dependencies: 1018 | jest-mock "^19.0.0" 1019 | jest-util "^19.0.2" 1020 | 1021 | jest-file-exists@^19.0.0: 1022 | version "19.0.0" 1023 | resolved "https://registry.yarnpkg.com/jest-file-exists/-/jest-file-exists-19.0.0.tgz#cca2e587a11ec92e24cfeab3f8a94d657f3fceb8" 1024 | 1025 | jest-haste-map@^19.0.0: 1026 | version "19.0.1" 1027 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-19.0.1.tgz#7616222491275050c7af39dbeab0a57c32ef9652" 1028 | dependencies: 1029 | fb-watchman "^2.0.0" 1030 | graceful-fs "^4.1.6" 1031 | micromatch "^2.3.11" 1032 | sane "~1.5.0" 1033 | worker-farm "^1.3.1" 1034 | 1035 | jest-jasmine2@^19.0.2: 1036 | version "19.0.2" 1037 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-19.0.2.tgz#167991ac825981fb1a800af126e83afcca832c73" 1038 | dependencies: 1039 | graceful-fs "^4.1.6" 1040 | jest-matcher-utils "^19.0.0" 1041 | jest-matchers "^19.0.0" 1042 | jest-message-util "^19.0.0" 1043 | jest-snapshot "^19.0.2" 1044 | 1045 | jest-matcher-utils@^19.0.0: 1046 | version "19.0.0" 1047 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-19.0.0.tgz#5ecd9b63565d2b001f61fbf7ec4c7f537964564d" 1048 | dependencies: 1049 | chalk "^1.1.3" 1050 | pretty-format "^19.0.0" 1051 | 1052 | jest-matchers@^19.0.0: 1053 | version "19.0.0" 1054 | resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-19.0.0.tgz#c74ecc6ebfec06f384767ba4d6fa4a42d6755754" 1055 | dependencies: 1056 | jest-diff "^19.0.0" 1057 | jest-matcher-utils "^19.0.0" 1058 | jest-message-util "^19.0.0" 1059 | jest-regex-util "^19.0.0" 1060 | 1061 | jest-message-util@^19.0.0: 1062 | version "19.0.0" 1063 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-19.0.0.tgz#721796b89c0e4d761606f9ba8cb828a3b6246416" 1064 | dependencies: 1065 | chalk "^1.1.1" 1066 | micromatch "^2.3.11" 1067 | 1068 | jest-mock@^19.0.0: 1069 | version "19.0.0" 1070 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-19.0.0.tgz#67038641e9607ab2ce08ec4a8cb83aabbc899d01" 1071 | 1072 | jest-regex-util@^19.0.0: 1073 | version "19.0.0" 1074 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-19.0.0.tgz#b7754587112aede1456510bb1f6afe74ef598691" 1075 | 1076 | jest-resolve-dependencies@^19.0.0: 1077 | version "19.0.0" 1078 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-19.0.0.tgz#a741ad1fa094140e64ecf2642a504f834ece22ee" 1079 | dependencies: 1080 | jest-file-exists "^19.0.0" 1081 | 1082 | jest-resolve@^19.0.2: 1083 | version "19.0.2" 1084 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-19.0.2.tgz#5793575de4f07aec32f7d7ff0c6c181963eefb3c" 1085 | dependencies: 1086 | browser-resolve "^1.11.2" 1087 | jest-haste-map "^19.0.0" 1088 | resolve "^1.2.0" 1089 | 1090 | jest-runtime@^19.0.2: 1091 | version "19.0.2" 1092 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-19.0.2.tgz#d9a43e72de416d27d196fd9c7940d98fe6685407" 1093 | dependencies: 1094 | babel-core "^6.0.0" 1095 | babel-jest "^19.0.0" 1096 | babel-plugin-istanbul "^4.0.0" 1097 | chalk "^1.1.3" 1098 | graceful-fs "^4.1.6" 1099 | jest-config "^19.0.2" 1100 | jest-file-exists "^19.0.0" 1101 | jest-haste-map "^19.0.0" 1102 | jest-regex-util "^19.0.0" 1103 | jest-resolve "^19.0.2" 1104 | jest-util "^19.0.2" 1105 | json-stable-stringify "^1.0.1" 1106 | micromatch "^2.3.11" 1107 | strip-bom "3.0.0" 1108 | yargs "^6.3.0" 1109 | 1110 | jest-snapshot@^19.0.2: 1111 | version "19.0.2" 1112 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-19.0.2.tgz#9c1b216214f7187c38bfd5c70b1efab16b0ff50b" 1113 | dependencies: 1114 | chalk "^1.1.3" 1115 | jest-diff "^19.0.0" 1116 | jest-file-exists "^19.0.0" 1117 | jest-matcher-utils "^19.0.0" 1118 | jest-util "^19.0.2" 1119 | natural-compare "^1.4.0" 1120 | pretty-format "^19.0.0" 1121 | 1122 | jest-util@^19.0.2: 1123 | version "19.0.2" 1124 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-19.0.2.tgz#e0a0232a2ab9e6b2b53668bdb3534c2b5977ed41" 1125 | dependencies: 1126 | chalk "^1.1.1" 1127 | graceful-fs "^4.1.6" 1128 | jest-file-exists "^19.0.0" 1129 | jest-message-util "^19.0.0" 1130 | jest-mock "^19.0.0" 1131 | jest-validate "^19.0.2" 1132 | leven "^2.0.0" 1133 | mkdirp "^0.5.1" 1134 | 1135 | jest-validate@^19.0.2: 1136 | version "19.0.2" 1137 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-19.0.2.tgz#dc534df5f1278d5b63df32b14241d4dbf7244c0c" 1138 | dependencies: 1139 | chalk "^1.1.1" 1140 | jest-matcher-utils "^19.0.0" 1141 | leven "^2.0.0" 1142 | pretty-format "^19.0.0" 1143 | 1144 | jest@^19.0.2: 1145 | version "19.0.2" 1146 | resolved "https://registry.yarnpkg.com/jest/-/jest-19.0.2.tgz#b794faaf8ff461e7388f28beef559a54f20b2c10" 1147 | dependencies: 1148 | jest-cli "^19.0.2" 1149 | 1150 | jodid25519@^1.0.0: 1151 | version "1.0.2" 1152 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 1153 | dependencies: 1154 | jsbn "~0.1.0" 1155 | 1156 | js-tokens@^3.0.0: 1157 | version "3.0.1" 1158 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 1159 | 1160 | js-yaml@^3.7.0: 1161 | version "3.8.3" 1162 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.3.tgz#33a05ec481c850c8875929166fe1beb61c728766" 1163 | dependencies: 1164 | argparse "^1.0.7" 1165 | esprima "^3.1.1" 1166 | 1167 | jsbn@~0.1.0: 1168 | version "0.1.1" 1169 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1170 | 1171 | jsdom@^9.11.0: 1172 | version "9.12.0" 1173 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 1174 | dependencies: 1175 | abab "^1.0.3" 1176 | acorn "^4.0.4" 1177 | acorn-globals "^3.1.0" 1178 | array-equal "^1.0.0" 1179 | content-type-parser "^1.0.1" 1180 | cssom ">= 0.3.2 < 0.4.0" 1181 | cssstyle ">= 0.2.37 < 0.3.0" 1182 | escodegen "^1.6.1" 1183 | html-encoding-sniffer "^1.0.1" 1184 | nwmatcher ">= 1.3.9 < 2.0.0" 1185 | parse5 "^1.5.1" 1186 | request "^2.79.0" 1187 | sax "^1.2.1" 1188 | symbol-tree "^3.2.1" 1189 | tough-cookie "^2.3.2" 1190 | webidl-conversions "^4.0.0" 1191 | whatwg-encoding "^1.0.1" 1192 | whatwg-url "^4.3.0" 1193 | xml-name-validator "^2.0.1" 1194 | 1195 | jsesc@^1.3.0: 1196 | version "1.3.0" 1197 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1198 | 1199 | json-schema@0.2.3: 1200 | version "0.2.3" 1201 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1202 | 1203 | json-stable-stringify@^1.0.1: 1204 | version "1.0.1" 1205 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1206 | dependencies: 1207 | jsonify "~0.0.0" 1208 | 1209 | json-stringify-safe@~5.0.1: 1210 | version "5.0.1" 1211 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1212 | 1213 | json5@^0.5.0: 1214 | version "0.5.1" 1215 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1216 | 1217 | jsonify@~0.0.0: 1218 | version "0.0.0" 1219 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1220 | 1221 | jsprim@^1.2.2: 1222 | version "1.4.0" 1223 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 1224 | dependencies: 1225 | assert-plus "1.0.0" 1226 | extsprintf "1.0.2" 1227 | json-schema "0.2.3" 1228 | verror "1.3.6" 1229 | 1230 | kind-of@^3.0.2: 1231 | version "3.1.0" 1232 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" 1233 | dependencies: 1234 | is-buffer "^1.0.2" 1235 | 1236 | lazy-cache@^1.0.3: 1237 | version "1.0.4" 1238 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1239 | 1240 | lcid@^1.0.0: 1241 | version "1.0.0" 1242 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1243 | dependencies: 1244 | invert-kv "^1.0.0" 1245 | 1246 | leven@^2.0.0: 1247 | version "2.1.0" 1248 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 1249 | 1250 | levn@~0.3.0: 1251 | version "0.3.0" 1252 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1253 | dependencies: 1254 | prelude-ls "~1.1.2" 1255 | type-check "~0.3.2" 1256 | 1257 | load-json-file@^1.0.0: 1258 | version "1.1.0" 1259 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1260 | dependencies: 1261 | graceful-fs "^4.1.2" 1262 | parse-json "^2.2.0" 1263 | pify "^2.0.0" 1264 | pinkie-promise "^2.0.0" 1265 | strip-bom "^2.0.0" 1266 | 1267 | loader-utils@^1.1.0: 1268 | version "1.1.0" 1269 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd" 1270 | dependencies: 1271 | big.js "^3.1.3" 1272 | emojis-list "^2.0.0" 1273 | json5 "^0.5.0" 1274 | 1275 | locate-path@^2.0.0: 1276 | version "2.0.0" 1277 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1278 | dependencies: 1279 | p-locate "^2.0.0" 1280 | path-exists "^3.0.0" 1281 | 1282 | lodash@^4.14.0, lodash@^4.2.0: 1283 | version "4.17.4" 1284 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1285 | 1286 | longest@^1.0.1: 1287 | version "1.0.1" 1288 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1289 | 1290 | loose-envify@^1.0.0: 1291 | version "1.3.1" 1292 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1293 | dependencies: 1294 | js-tokens "^3.0.0" 1295 | 1296 | makeerror@1.0.x: 1297 | version "1.0.11" 1298 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 1299 | dependencies: 1300 | tmpl "1.0.x" 1301 | 1302 | merge@^1.1.3: 1303 | version "1.2.0" 1304 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 1305 | 1306 | micromatch@^2.1.5, micromatch@^2.3.11: 1307 | version "2.3.11" 1308 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1309 | dependencies: 1310 | arr-diff "^2.0.0" 1311 | array-unique "^0.2.1" 1312 | braces "^1.8.2" 1313 | expand-brackets "^0.1.4" 1314 | extglob "^0.3.1" 1315 | filename-regex "^2.0.0" 1316 | is-extglob "^1.0.0" 1317 | is-glob "^2.0.1" 1318 | kind-of "^3.0.2" 1319 | normalize-path "^2.0.1" 1320 | object.omit "^2.0.0" 1321 | parse-glob "^3.0.4" 1322 | regex-cache "^0.4.2" 1323 | 1324 | mime-db@~1.27.0: 1325 | version "1.27.0" 1326 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 1327 | 1328 | mime-types@^2.1.12, mime-types@~2.1.7: 1329 | version "2.1.15" 1330 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 1331 | dependencies: 1332 | mime-db "~1.27.0" 1333 | 1334 | minimatch@^3.0.2, minimatch@^3.0.3: 1335 | version "3.0.3" 1336 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 1337 | dependencies: 1338 | brace-expansion "^1.0.0" 1339 | 1340 | minimist@0.0.8, minimist@~0.0.1: 1341 | version "0.0.8" 1342 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1343 | 1344 | minimist@^1.1.1: 1345 | version "1.2.0" 1346 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1347 | 1348 | mkdirp@^0.5.1: 1349 | version "0.5.1" 1350 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1351 | dependencies: 1352 | minimist "0.0.8" 1353 | 1354 | ms@0.7.3: 1355 | version "0.7.3" 1356 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.3.tgz#708155a5e44e33f5fd0fc53e81d0d40a91be1fff" 1357 | 1358 | natural-compare@^1.4.0: 1359 | version "1.4.0" 1360 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1361 | 1362 | node-int64@^0.4.0: 1363 | version "0.4.0" 1364 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 1365 | 1366 | node-notifier@^5.0.1: 1367 | version "5.1.2" 1368 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 1369 | dependencies: 1370 | growly "^1.3.0" 1371 | semver "^5.3.0" 1372 | shellwords "^0.1.0" 1373 | which "^1.2.12" 1374 | 1375 | normalize-package-data@^2.3.2: 1376 | version "2.3.8" 1377 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" 1378 | dependencies: 1379 | hosted-git-info "^2.1.4" 1380 | is-builtin-module "^1.0.0" 1381 | semver "2 || 3 || 4 || 5" 1382 | validate-npm-package-license "^3.0.1" 1383 | 1384 | normalize-path@^2.0.1: 1385 | version "2.1.1" 1386 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1387 | dependencies: 1388 | remove-trailing-separator "^1.0.1" 1389 | 1390 | number-is-nan@^1.0.0: 1391 | version "1.0.1" 1392 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1393 | 1394 | "nwmatcher@>= 1.3.9 < 2.0.0": 1395 | version "1.3.9" 1396 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.3.9.tgz#8bab486ff7fa3dfd086656bbe8b17116d3692d2a" 1397 | 1398 | oauth-sign@~0.8.1: 1399 | version "0.8.2" 1400 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1401 | 1402 | object-assign@^4.1.0: 1403 | version "4.1.1" 1404 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1405 | 1406 | object.omit@^2.0.0: 1407 | version "2.0.1" 1408 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1409 | dependencies: 1410 | for-own "^0.1.4" 1411 | is-extendable "^0.1.1" 1412 | 1413 | once@^1.3.0, once@^1.4.0: 1414 | version "1.4.0" 1415 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1416 | dependencies: 1417 | wrappy "1" 1418 | 1419 | optimist@^0.6.1: 1420 | version "0.6.1" 1421 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 1422 | dependencies: 1423 | minimist "~0.0.1" 1424 | wordwrap "~0.0.2" 1425 | 1426 | optionator@^0.8.1: 1427 | version "0.8.2" 1428 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 1429 | dependencies: 1430 | deep-is "~0.1.3" 1431 | fast-levenshtein "~2.0.4" 1432 | levn "~0.3.0" 1433 | prelude-ls "~1.1.2" 1434 | type-check "~0.3.2" 1435 | wordwrap "~1.0.0" 1436 | 1437 | os-homedir@^1.0.0: 1438 | version "1.0.2" 1439 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1440 | 1441 | os-locale@^1.4.0: 1442 | version "1.4.0" 1443 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 1444 | dependencies: 1445 | lcid "^1.0.0" 1446 | 1447 | os-tmpdir@^1.0.1: 1448 | version "1.0.2" 1449 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1450 | 1451 | p-limit@^1.1.0: 1452 | version "1.1.0" 1453 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 1454 | 1455 | p-locate@^2.0.0: 1456 | version "2.0.0" 1457 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1458 | dependencies: 1459 | p-limit "^1.1.0" 1460 | 1461 | parse-glob@^3.0.4: 1462 | version "3.0.4" 1463 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1464 | dependencies: 1465 | glob-base "^0.3.0" 1466 | is-dotfile "^1.0.0" 1467 | is-extglob "^1.0.0" 1468 | is-glob "^2.0.0" 1469 | 1470 | parse-json@^2.2.0: 1471 | version "2.2.0" 1472 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1473 | dependencies: 1474 | error-ex "^1.2.0" 1475 | 1476 | parse5@^1.5.1: 1477 | version "1.5.1" 1478 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 1479 | 1480 | path-exists@^2.0.0: 1481 | version "2.1.0" 1482 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1483 | dependencies: 1484 | pinkie-promise "^2.0.0" 1485 | 1486 | path-exists@^3.0.0: 1487 | version "3.0.0" 1488 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1489 | 1490 | path-is-absolute@^1.0.0: 1491 | version "1.0.1" 1492 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1493 | 1494 | path-parse@^1.0.5: 1495 | version "1.0.5" 1496 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 1497 | 1498 | path-type@^1.0.0: 1499 | version "1.1.0" 1500 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 1501 | dependencies: 1502 | graceful-fs "^4.1.2" 1503 | pify "^2.0.0" 1504 | pinkie-promise "^2.0.0" 1505 | 1506 | performance-now@^0.2.0: 1507 | version "0.2.0" 1508 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 1509 | 1510 | pify@^2.0.0: 1511 | version "2.3.0" 1512 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1513 | 1514 | pinkie-promise@^2.0.0: 1515 | version "2.0.1" 1516 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1517 | dependencies: 1518 | pinkie "^2.0.0" 1519 | 1520 | pinkie@^2.0.0: 1521 | version "2.0.4" 1522 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1523 | 1524 | prelude-ls@~1.1.2: 1525 | version "1.1.2" 1526 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 1527 | 1528 | preserve@^0.2.0: 1529 | version "0.2.0" 1530 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1531 | 1532 | pretty-format@^19.0.0: 1533 | version "19.0.0" 1534 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-19.0.0.tgz#56530d32acb98a3fa4851c4e2b9d37b420684c84" 1535 | dependencies: 1536 | ansi-styles "^3.0.0" 1537 | 1538 | private@^0.1.6: 1539 | version "0.1.7" 1540 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 1541 | 1542 | prr@~0.0.0: 1543 | version "0.0.0" 1544 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 1545 | 1546 | punycode@^1.4.1: 1547 | version "1.4.1" 1548 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1549 | 1550 | qs@~6.4.0: 1551 | version "6.4.0" 1552 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 1553 | 1554 | randomatic@^1.1.3: 1555 | version "1.1.6" 1556 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 1557 | dependencies: 1558 | is-number "^2.0.2" 1559 | kind-of "^3.0.2" 1560 | 1561 | read-pkg-up@^1.0.1: 1562 | version "1.0.1" 1563 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 1564 | dependencies: 1565 | find-up "^1.0.0" 1566 | read-pkg "^1.0.0" 1567 | 1568 | read-pkg@^1.0.0: 1569 | version "1.1.0" 1570 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 1571 | dependencies: 1572 | load-json-file "^1.0.0" 1573 | normalize-package-data "^2.3.2" 1574 | path-type "^1.0.0" 1575 | 1576 | regenerator-runtime@^0.10.0: 1577 | version "0.10.3" 1578 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.3.tgz#8c4367a904b51ea62a908ac310bf99ff90a82a3e" 1579 | 1580 | regex-cache@^0.4.2: 1581 | version "0.4.3" 1582 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 1583 | dependencies: 1584 | is-equal-shallow "^0.1.3" 1585 | is-primitive "^2.0.0" 1586 | 1587 | remove-trailing-separator@^1.0.1: 1588 | version "1.0.1" 1589 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" 1590 | 1591 | repeat-element@^1.1.2: 1592 | version "1.1.2" 1593 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1594 | 1595 | repeat-string@^1.5.2: 1596 | version "1.6.1" 1597 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1598 | 1599 | repeating@^2.0.0: 1600 | version "2.0.1" 1601 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1602 | dependencies: 1603 | is-finite "^1.0.0" 1604 | 1605 | request@^2.79.0: 1606 | version "2.81.0" 1607 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 1608 | dependencies: 1609 | aws-sign2 "~0.6.0" 1610 | aws4 "^1.2.1" 1611 | caseless "~0.12.0" 1612 | combined-stream "~1.0.5" 1613 | extend "~3.0.0" 1614 | forever-agent "~0.6.1" 1615 | form-data "~2.1.1" 1616 | har-validator "~4.2.1" 1617 | hawk "~3.1.3" 1618 | http-signature "~1.1.0" 1619 | is-typedarray "~1.0.0" 1620 | isstream "~0.1.2" 1621 | json-stringify-safe "~5.0.1" 1622 | mime-types "~2.1.7" 1623 | oauth-sign "~0.8.1" 1624 | performance-now "^0.2.0" 1625 | qs "~6.4.0" 1626 | safe-buffer "^5.0.1" 1627 | stringstream "~0.0.4" 1628 | tough-cookie "~2.3.0" 1629 | tunnel-agent "^0.6.0" 1630 | uuid "^3.0.0" 1631 | 1632 | require-directory@^2.1.1: 1633 | version "2.1.1" 1634 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 1635 | 1636 | require-main-filename@^1.0.1: 1637 | version "1.0.1" 1638 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 1639 | 1640 | resolve@1.1.7: 1641 | version "1.1.7" 1642 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 1643 | 1644 | resolve@^1.2.0: 1645 | version "1.3.3" 1646 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5" 1647 | dependencies: 1648 | path-parse "^1.0.5" 1649 | 1650 | right-align@^0.1.1: 1651 | version "0.1.3" 1652 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 1653 | dependencies: 1654 | align-text "^0.1.1" 1655 | 1656 | rimraf@^2.4.4: 1657 | version "2.6.1" 1658 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 1659 | dependencies: 1660 | glob "^7.0.5" 1661 | 1662 | safe-buffer@^5.0.1: 1663 | version "5.0.1" 1664 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 1665 | 1666 | sane@~1.5.0: 1667 | version "1.5.0" 1668 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.5.0.tgz#a4adeae764d048621ecb27d5f9ecf513101939f3" 1669 | dependencies: 1670 | anymatch "^1.3.0" 1671 | exec-sh "^0.2.0" 1672 | fb-watchman "^1.8.0" 1673 | minimatch "^3.0.2" 1674 | minimist "^1.1.1" 1675 | walker "~1.0.5" 1676 | watch "~0.10.0" 1677 | 1678 | sax@^1.2.1: 1679 | version "1.2.2" 1680 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.2.tgz#fd8631a23bc7826bef5d871bdb87378c95647828" 1681 | 1682 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 1683 | version "5.3.0" 1684 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 1685 | 1686 | set-blocking@^2.0.0: 1687 | version "2.0.0" 1688 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1689 | 1690 | shellwords@^0.1.0: 1691 | version "0.1.0" 1692 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.0.tgz#66afd47b6a12932d9071cbfd98a52e785cd0ba14" 1693 | 1694 | slash@^1.0.0: 1695 | version "1.0.0" 1696 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 1697 | 1698 | sntp@1.x.x: 1699 | version "1.0.9" 1700 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 1701 | dependencies: 1702 | hoek "2.x.x" 1703 | 1704 | source-map-support@^0.4.2: 1705 | version "0.4.14" 1706 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.14.tgz#9d4463772598b86271b4f523f6c1f4e02a7d6aef" 1707 | dependencies: 1708 | source-map "^0.5.6" 1709 | 1710 | source-map@^0.4.4: 1711 | version "0.4.4" 1712 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 1713 | dependencies: 1714 | amdefine ">=0.0.4" 1715 | 1716 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 1717 | version "0.5.6" 1718 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 1719 | 1720 | source-map@~0.2.0: 1721 | version "0.2.0" 1722 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 1723 | dependencies: 1724 | amdefine ">=0.0.4" 1725 | 1726 | spdx-correct@~1.0.0: 1727 | version "1.0.2" 1728 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 1729 | dependencies: 1730 | spdx-license-ids "^1.0.2" 1731 | 1732 | spdx-expression-parse@~1.0.0: 1733 | version "1.0.4" 1734 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 1735 | 1736 | spdx-license-ids@^1.0.2: 1737 | version "1.2.2" 1738 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 1739 | 1740 | sprintf-js@~1.0.2: 1741 | version "1.0.3" 1742 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 1743 | 1744 | sshpk@^1.7.0: 1745 | version "1.13.0" 1746 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.0.tgz#ff2a3e4fd04497555fed97b39a0fd82fafb3a33c" 1747 | dependencies: 1748 | asn1 "~0.2.3" 1749 | assert-plus "^1.0.0" 1750 | dashdash "^1.12.0" 1751 | getpass "^0.1.1" 1752 | optionalDependencies: 1753 | bcrypt-pbkdf "^1.0.0" 1754 | ecc-jsbn "~0.1.1" 1755 | jodid25519 "^1.0.0" 1756 | jsbn "~0.1.0" 1757 | tweetnacl "~0.14.0" 1758 | 1759 | string-length@^1.0.1: 1760 | version "1.0.1" 1761 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 1762 | dependencies: 1763 | strip-ansi "^3.0.0" 1764 | 1765 | string-width@^1.0.1, string-width@^1.0.2: 1766 | version "1.0.2" 1767 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1768 | dependencies: 1769 | code-point-at "^1.0.0" 1770 | is-fullwidth-code-point "^1.0.0" 1771 | strip-ansi "^3.0.0" 1772 | 1773 | stringstream@~0.0.4: 1774 | version "0.0.5" 1775 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 1776 | 1777 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1778 | version "3.0.1" 1779 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1780 | dependencies: 1781 | ansi-regex "^2.0.0" 1782 | 1783 | strip-bom@3.0.0: 1784 | version "3.0.0" 1785 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 1786 | 1787 | strip-bom@^2.0.0: 1788 | version "2.0.0" 1789 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 1790 | dependencies: 1791 | is-utf8 "^0.2.0" 1792 | 1793 | supports-color@^2.0.0: 1794 | version "2.0.0" 1795 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1796 | 1797 | supports-color@^3.1.2: 1798 | version "3.2.3" 1799 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 1800 | dependencies: 1801 | has-flag "^1.0.0" 1802 | 1803 | symbol-tree@^3.2.1: 1804 | version "3.2.2" 1805 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 1806 | 1807 | test-exclude@^4.0.3: 1808 | version "4.0.3" 1809 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.0.3.tgz#86a13ce3effcc60e6c90403cf31a27a60ac6c4e7" 1810 | dependencies: 1811 | arrify "^1.0.1" 1812 | micromatch "^2.3.11" 1813 | object-assign "^4.1.0" 1814 | read-pkg-up "^1.0.1" 1815 | require-main-filename "^1.0.1" 1816 | 1817 | throat@^3.0.0: 1818 | version "3.0.0" 1819 | resolved "https://registry.yarnpkg.com/throat/-/throat-3.0.0.tgz#e7c64c867cbb3845f10877642f7b60055b8ec0d6" 1820 | 1821 | tmpl@1.0.x: 1822 | version "1.0.4" 1823 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 1824 | 1825 | to-fast-properties@^1.0.1: 1826 | version "1.0.2" 1827 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 1828 | 1829 | tough-cookie@^2.3.2, tough-cookie@~2.3.0: 1830 | version "2.3.2" 1831 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 1832 | dependencies: 1833 | punycode "^1.4.1" 1834 | 1835 | tr46@~0.0.3: 1836 | version "0.0.3" 1837 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 1838 | 1839 | trim-right@^1.0.1: 1840 | version "1.0.1" 1841 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 1842 | 1843 | tunnel-agent@^0.6.0: 1844 | version "0.6.0" 1845 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 1846 | dependencies: 1847 | safe-buffer "^5.0.1" 1848 | 1849 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 1850 | version "0.14.5" 1851 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 1852 | 1853 | type-check@~0.3.2: 1854 | version "0.3.2" 1855 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 1856 | dependencies: 1857 | prelude-ls "~1.1.2" 1858 | 1859 | uglify-js@^2.6: 1860 | version "2.8.22" 1861 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.22.tgz#d54934778a8da14903fa29a326fb24c0ab51a1a0" 1862 | dependencies: 1863 | source-map "~0.5.1" 1864 | yargs "~3.10.0" 1865 | optionalDependencies: 1866 | uglify-to-browserify "~1.0.0" 1867 | 1868 | uglify-to-browserify@~1.0.0: 1869 | version "1.0.2" 1870 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 1871 | 1872 | uuid@^3.0.0: 1873 | version "3.0.1" 1874 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 1875 | 1876 | validate-npm-package-license@^3.0.1: 1877 | version "3.0.1" 1878 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 1879 | dependencies: 1880 | spdx-correct "~1.0.0" 1881 | spdx-expression-parse "~1.0.0" 1882 | 1883 | verror@1.3.6: 1884 | version "1.3.6" 1885 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 1886 | dependencies: 1887 | extsprintf "1.0.2" 1888 | 1889 | walker@~1.0.5: 1890 | version "1.0.7" 1891 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 1892 | dependencies: 1893 | makeerror "1.0.x" 1894 | 1895 | watch@~0.10.0: 1896 | version "0.10.0" 1897 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 1898 | 1899 | webidl-conversions@^3.0.0: 1900 | version "3.0.1" 1901 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 1902 | 1903 | webidl-conversions@^4.0.0: 1904 | version "4.0.1" 1905 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.1.tgz#8015a17ab83e7e1b311638486ace81da6ce206a0" 1906 | 1907 | whatwg-encoding@^1.0.1: 1908 | version "1.0.1" 1909 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 1910 | dependencies: 1911 | iconv-lite "0.4.13" 1912 | 1913 | whatwg-url@^4.3.0: 1914 | version "4.7.0" 1915 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.7.0.tgz#202035ac1955b087cdd20fa8b58ded3ab1cd2af5" 1916 | dependencies: 1917 | tr46 "~0.0.3" 1918 | webidl-conversions "^3.0.0" 1919 | 1920 | which-module@^1.0.0: 1921 | version "1.0.0" 1922 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 1923 | 1924 | which@^1.1.1, which@^1.2.12: 1925 | version "1.2.14" 1926 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 1927 | dependencies: 1928 | isexe "^2.0.0" 1929 | 1930 | window-size@0.1.0: 1931 | version "0.1.0" 1932 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 1933 | 1934 | wordwrap@0.0.2: 1935 | version "0.0.2" 1936 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 1937 | 1938 | wordwrap@~0.0.2: 1939 | version "0.0.3" 1940 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 1941 | 1942 | wordwrap@~1.0.0: 1943 | version "1.0.0" 1944 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 1945 | 1946 | worker-farm@^1.3.1: 1947 | version "1.3.1" 1948 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.3.1.tgz#4333112bb49b17aa050b87895ca6b2cacf40e5ff" 1949 | dependencies: 1950 | errno ">=0.1.1 <0.2.0-0" 1951 | xtend ">=4.0.0 <4.1.0-0" 1952 | 1953 | wrap-ansi@^2.0.0: 1954 | version "2.1.0" 1955 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 1956 | dependencies: 1957 | string-width "^1.0.1" 1958 | strip-ansi "^3.0.1" 1959 | 1960 | wrappy@1: 1961 | version "1.0.2" 1962 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1963 | 1964 | xml-name-validator@^2.0.1: 1965 | version "2.0.1" 1966 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 1967 | 1968 | "xtend@>=4.0.0 <4.1.0-0": 1969 | version "4.0.1" 1970 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 1971 | 1972 | y18n@^3.2.1: 1973 | version "3.2.1" 1974 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 1975 | 1976 | yargs-parser@^4.2.0: 1977 | version "4.2.1" 1978 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" 1979 | dependencies: 1980 | camelcase "^3.0.0" 1981 | 1982 | yargs@^6.3.0: 1983 | version "6.6.0" 1984 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" 1985 | dependencies: 1986 | camelcase "^3.0.0" 1987 | cliui "^3.2.0" 1988 | decamelize "^1.1.1" 1989 | get-caller-file "^1.0.1" 1990 | os-locale "^1.4.0" 1991 | read-pkg-up "^1.0.1" 1992 | require-directory "^2.1.1" 1993 | require-main-filename "^1.0.1" 1994 | set-blocking "^2.0.0" 1995 | string-width "^1.0.2" 1996 | which-module "^1.0.0" 1997 | y18n "^3.2.1" 1998 | yargs-parser "^4.2.0" 1999 | 2000 | yargs@~3.10.0: 2001 | version "3.10.0" 2002 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 2003 | dependencies: 2004 | camelcase "^1.0.2" 2005 | cliui "^2.1.0" 2006 | decamelize "^1.0.0" 2007 | window-size "0.1.0" 2008 | --------------------------------------------------------------------------------