├── .gitignore ├── test ├── fixtures │ ├── npmClean │ │ ├── package.json │ │ └── Gruntfile.js │ ├── npmInstall │ │ ├── package.json │ │ └── Gruntfile.js │ ├── array │ │ └── Gruntfile.js │ ├── coffee │ │ └── Gruntfile.coffee │ ├── simple │ │ └── Gruntfile.js │ ├── customCase │ │ └── gruntFile.js │ ├── noProjectsObject │ │ └── Gruntfile.js │ ├── multiple │ │ ├── multiple-1 │ │ │ └── Gruntfile.js │ │ └── multiple-2 │ │ │ └── Gruntfile.js │ ├── customOptions │ │ └── Gruntfile.js │ ├── gh19 │ │ └── Gruntfile.js │ └── multipleTasks │ │ └── Gruntfile.js └── subgrunt.test.js ├── .editorconfig ├── LICENSE ├── package.json ├── .circleci └── config.yml ├── tasks └── subgrunt.js ├── gruntfile.js ├── readme.md └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | 3 | reports/ 4 | tmp/ 5 | 6 | package-lock.json 7 | -------------------------------------------------------------------------------- /test/fixtures/npmClean/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "devDependencies": { 3 | "async": "0.9.0" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /test/fixtures/npmInstall/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "devDependencies": { 3 | "async": "0.9.0" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | indent_size = 2 6 | end_of_line = lf 7 | charset = utf-8 8 | trim_trailing_whitespace = true 9 | insert_final_newline = true 10 | -------------------------------------------------------------------------------- /test/fixtures/array/Gruntfile.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const fs = require('fs') 4 | 5 | module.exports = function (grunt) { 6 | grunt.registerTask('default', function () { 7 | const done = this.async() 8 | 9 | fs.mkdir('tmp', () => { 10 | fs.writeFile('tmp/output.txt', 'success', () => { 11 | done() 12 | }) 13 | }) 14 | }) 15 | } 16 | -------------------------------------------------------------------------------- /test/fixtures/coffee/Gruntfile.coffee: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | fs = require 'fs' 4 | 5 | module.exports = (grunt) -> 6 | grunt.registerTask('default', () -> 7 | done = this.async() 8 | 9 | fs.mkdir('tmp', () -> 10 | fs.writeFile('tmp/output.txt', 'success', () -> 11 | done() 12 | ) 13 | ) 14 | ) 15 | -------------------------------------------------------------------------------- /test/fixtures/simple/Gruntfile.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const fs = require('fs') 4 | 5 | module.exports = function (grunt) { 6 | grunt.registerTask('build', function () { 7 | const done = this.async() 8 | 9 | fs.mkdir('tmp', () => { 10 | fs.writeFile('tmp/output.txt', 'success', () => { 11 | done() 12 | }) 13 | }) 14 | }) 15 | } 16 | -------------------------------------------------------------------------------- /test/fixtures/customCase/gruntFile.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const fs = require('fs') 4 | 5 | module.exports = function (grunt) { 6 | grunt.registerTask('default', function () { 7 | const done = this.async() 8 | 9 | fs.mkdir('tmp', () => { 10 | fs.writeFile('tmp/output.txt', 'success', () => { 11 | done() 12 | }) 13 | }) 14 | }) 15 | } 16 | -------------------------------------------------------------------------------- /test/fixtures/npmClean/Gruntfile.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const fs = require('fs') 4 | 5 | module.exports = function (grunt) { 6 | grunt.registerTask('default', function () { 7 | const done = this.async() 8 | 9 | fs.mkdir('tmp', () => { 10 | fs.writeFile('tmp/output.txt', 'success', () => { 11 | done() 12 | }) 13 | }) 14 | }) 15 | } 16 | -------------------------------------------------------------------------------- /test/fixtures/npmInstall/Gruntfile.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const fs = require('fs') 4 | 5 | module.exports = function (grunt) { 6 | grunt.registerTask('default', function () { 7 | const done = this.async() 8 | 9 | fs.mkdir('tmp', () => { 10 | fs.writeFile('tmp/output.txt', 'success', () => { 11 | done() 12 | }) 13 | }) 14 | }) 15 | } 16 | -------------------------------------------------------------------------------- /test/fixtures/noProjectsObject/Gruntfile.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const fs = require('fs') 4 | 5 | module.exports = function (grunt) { 6 | grunt.registerTask('default', function () { 7 | const done = this.async() 8 | 9 | fs.mkdir('tmp', () => { 10 | fs.writeFile('tmp/output.txt', 'success', () => { 11 | done() 12 | }) 13 | }) 14 | }) 15 | } 16 | -------------------------------------------------------------------------------- /test/fixtures/multiple/multiple-1/Gruntfile.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const fs = require('fs') 4 | 5 | module.exports = function (grunt) { 6 | grunt.registerTask('default', function () { 7 | const done = this.async() 8 | 9 | fs.mkdir('../tmp', () => { 10 | fs.writeFile('../tmp/output-1.txt', 'success', () => { 11 | done() 12 | }) 13 | }) 14 | }) 15 | } 16 | -------------------------------------------------------------------------------- /test/fixtures/multiple/multiple-2/Gruntfile.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const fs = require('fs') 4 | 5 | module.exports = function (grunt) { 6 | grunt.registerTask('default', function () { 7 | const done = this.async() 8 | 9 | fs.mkdir('../tmp', () => { 10 | fs.writeFile('../tmp/output-2.txt', 'success', () => { 11 | done() 12 | }) 13 | }) 14 | }) 15 | } 16 | -------------------------------------------------------------------------------- /test/fixtures/customOptions/Gruntfile.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const fs = require('fs') 4 | 5 | module.exports = function (grunt) { 6 | const text = grunt.option('text') 7 | 8 | grunt.registerTask('default', function () { 9 | const done = this.async() 10 | 11 | fs.mkdir('tmp', () => { 12 | fs.writeFile('tmp/output.txt', text, () => { 13 | done() 14 | }) 15 | }) 16 | }) 17 | } 18 | -------------------------------------------------------------------------------- /test/fixtures/gh19/Gruntfile.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const fs = require('fs') 4 | 5 | module.exports = function (grunt) { 6 | grunt.registerTask('default', function () { 7 | const done = this.async() 8 | 9 | const aboolean = grunt.option('aboolean') 10 | if (aboolean === true) { 11 | fs.mkdir('tmp', () => { 12 | fs.writeFile('tmp/output.txt', grunt.option.flags(), () => { 13 | done() 14 | }) 15 | }) 16 | } 17 | }) 18 | } 19 | -------------------------------------------------------------------------------- /test/fixtures/multipleTasks/Gruntfile.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const fs = require('fs') 4 | 5 | module.exports = function (grunt) { 6 | grunt.registerTask('one', function () { 7 | const done = this.async() 8 | 9 | fs.mkdir('tmp', () => { 10 | fs.writeFile('tmp/output.txt', 'one', () => { 11 | done() 12 | }) 13 | }) 14 | }) 15 | 16 | grunt.registerTask('two', function () { 17 | const done = this.async() 18 | 19 | fs.writeFile('tmp/output.txt', 'two', () => { 20 | done() 21 | }) 22 | }) 23 | } 24 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Bertrand Marron 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 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "grunt-subgrunt", 3 | "version": "1.3.0", 4 | "description": "Run sub-projects' grunt tasks.", 5 | "repository": { 6 | "type": "git", 7 | "url": "git://github.com/tusbar/grunt-subgrunt.git" 8 | }, 9 | "scripts": { 10 | "test": "grunt test", 11 | "lint": "xo && (cd test/fixtures && xo)" 12 | }, 13 | "keywords": [ 14 | "gruntplugin", 15 | "subgrunt", 16 | "subproject", 17 | "submodule" 18 | ], 19 | "author": { 20 | "name": "Bertrand Marron", 21 | "url": "https://github.com/tusbar" 22 | }, 23 | "license": "MIT", 24 | "bugs": { 25 | "url": "https://github.com/tusbar/grunt-subgrunt/issues" 26 | }, 27 | "dependencies": { 28 | "async": "^3.2.0", 29 | "glob": "^7.0.0" 30 | }, 31 | "peerDependencies": { 32 | "grunt": ">=0.4.0" 33 | }, 34 | "devDependencies": { 35 | "grunt": "^1.0.1", 36 | "grunt-contrib-clean": "^2.0.0", 37 | "grunt-contrib-nodeunit": "^2.0.0", 38 | "xo": "^0.24.0" 39 | }, 40 | "engines": { 41 | "node": ">=6" 42 | }, 43 | "xo": { 44 | "semicolon": false, 45 | "space": 2, 46 | "rules": { 47 | "unicorn/filename-case": "off" 48 | } 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | 3 | defaults: 4 | workspace_root: &workspace_root 5 | ~/grunt-subgrunt 6 | 7 | nodejs_container: &nodejs_container 8 | working_directory: *workspace_root 9 | docker: 10 | - image: circleci/node:8-stretch 11 | 12 | filters: &default_filters 13 | tags: 14 | only: '/v[0-9]+(\.[0-9]+)*/' 15 | 16 | attach_workspace: &attach_workspace 17 | attach_workspace: 18 | at: *workspace_root 19 | 20 | restore_node_modules: &restore_node_modules 21 | restore_cache: 22 | name: Restore node_modules cache 23 | keys: 24 | - v1-grunt-subgrunt-node-{{ checksum "yarn.lock" }} 25 | - v1-grunt-subgrunt-node- 26 | 27 | jobs: 28 | checkout: 29 | <<: *nodejs_container 30 | steps: 31 | - checkout 32 | 33 | - persist_to_workspace: 34 | root: *workspace_root 35 | paths: 36 | - ./ 37 | 38 | install: 39 | <<: *nodejs_container 40 | steps: 41 | - *attach_workspace 42 | - *restore_node_modules 43 | 44 | - restore_cache: 45 | name: Restore yarn cache 46 | keys: 47 | - v1-grunt-subgrunt-yarn-{{ checksum "yarn.lock" }} 48 | - v1-grunt-subgrunt-yarn- 49 | 50 | - run: 51 | name: Install dependencies 52 | command: yarn 53 | 54 | - save_cache: 55 | name: Save yarn cache 56 | key: v1-grunt-subgrunt-yarn-{{ checksum "yarn.lock" }} 57 | paths: 58 | - ~/.cache/yarn/ 59 | 60 | - save_cache: 61 | name: Save node_modules cache 62 | key: v1-grunt-subgrunt-node-{{ checksum "yarn.lock" }} 63 | paths: 64 | - node_modules/ 65 | 66 | lint: 67 | <<: *nodejs_container 68 | steps: 69 | - *attach_workspace 70 | - *restore_node_modules 71 | 72 | - run: 73 | name: Lint JavaScript 74 | command: yarn lint 75 | 76 | test: 77 | <<: *nodejs_container 78 | steps: 79 | - *attach_workspace 80 | - *restore_node_modules 81 | 82 | - run: 83 | name: Run tests 84 | command: yarn test 85 | 86 | - store_test_results: 87 | path: reports/tests/ 88 | 89 | workflows: 90 | version: 2 91 | 92 | push: 93 | jobs: 94 | - checkout: 95 | filters: *default_filters 96 | 97 | - install: 98 | requires: 99 | - checkout 100 | filters: *default_filters 101 | 102 | - lint: 103 | requires: 104 | - install 105 | filters: *default_filters 106 | 107 | - test: 108 | requires: 109 | - install 110 | filters: *default_filters 111 | -------------------------------------------------------------------------------- /tasks/subgrunt.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const async = require('async') 4 | const glob = require('glob') 5 | 6 | module.exports = function (grunt) { 7 | const runNpmInstall = function (path, options, next) { 8 | grunt.util.spawn({ 9 | cmd: options.npmPath, 10 | args: ['install'], 11 | opts: {cwd: path, stdio: 'inherit'} 12 | }, (err, result, code) => { 13 | if (err || code > 0) { 14 | grunt.fail.warn('Failed installing node modules in "' + path + '".') 15 | } else { 16 | grunt.log.ok('Installed node modules in "' + path + '".') 17 | } 18 | 19 | next() 20 | }) 21 | } 22 | 23 | const runNpmClean = function (path, options, next) { 24 | // Requires npm >= 1.3.10! 25 | 26 | grunt.util.spawn({ 27 | cmd: options.npmPath, 28 | args: ['prune', '--production'], 29 | opts: {cwd: path, stdio: 'inherit'} 30 | }, (err, result, code) => { 31 | if (err || code > 0) { 32 | grunt.fail.warn('Failed cleaning development dependencies in "' + path + '".') 33 | } else { 34 | grunt.log.ok('Cleaned development dependencies in "' + path + '".') 35 | } 36 | 37 | next() 38 | }) 39 | } 40 | 41 | const runGruntTasks = function (path, tasks, options, next) { 42 | let args = options.passGruntFlags ? tasks.concat(grunt.option.flags()) : tasks 43 | 44 | // Removes --gruntfile arg # fixes issue #13 45 | for (let i = 0; i < args.length; i++) { 46 | const arg = args[i] 47 | if (arg.indexOf('--gruntfile') > -1) { 48 | args = args.slice(0, i).concat(args.slice(i + 1)) 49 | break 50 | } 51 | } 52 | 53 | grunt.util.spawn({ 54 | grunt: true, 55 | args, 56 | opts: {cwd: path, stdio: 'inherit'} 57 | }, (err, result, code) => { 58 | if (err || code > 0) { 59 | grunt.fail.warn('Failed running "grunt ' + args.join(' ') + '" in "' + path + '".') 60 | } else { 61 | grunt.log.ok('Ran "grunt ' + args.join(' ') + '" in "' + path + '".') 62 | } 63 | 64 | next() 65 | }) 66 | } 67 | 68 | grunt.registerMultiTask('subgrunt', 'Run sub-projects\' grunt tasks.', function () { 69 | const cb = this.async() 70 | const options = this.options({ 71 | npmInstall: true, 72 | npmClean: false, 73 | npmPath: 'npm', 74 | passGruntFlags: true, 75 | limit: Math.max(require('os').cpus().length, 2) 76 | }) 77 | 78 | let projects = this.data.projects || this.data 79 | 80 | if (Array.isArray(projects)) { 81 | const res = {} 82 | projects.forEach(el => { 83 | res[el] = 'default' 84 | }) 85 | projects = res 86 | } 87 | 88 | async.eachLimit(Object.keys(projects), options.limit, (path, next) => { 89 | let tasks = projects[path] 90 | if (!(Array.isArray(tasks))) { 91 | tasks = [tasks] 92 | } 93 | 94 | glob('Gruntfile.{js,coffee}', { 95 | nocase: true, 96 | cwd: path 97 | }, (err, files) => { 98 | if (err || files.length === 0) { 99 | grunt.fail.warn('The "' + path + '" directory is not valid, or does not contain a Gruntfile.') 100 | return next() 101 | } 102 | 103 | if (options.npmInstall) { 104 | runNpmInstall(path, options, () => { 105 | runGruntTasks(path, tasks, options, options.npmClean ? () => { 106 | runNpmClean(path, options, next) 107 | } : next) 108 | }) 109 | } else { 110 | runGruntTasks(path, tasks, options, next) 111 | } 112 | }) 113 | }, cb) 114 | }) 115 | } 116 | -------------------------------------------------------------------------------- /gruntfile.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = grunt => { 4 | grunt.initConfig({ 5 | clean: { 6 | simple: [ 7 | 'test/fixtures/simple/tmp' 8 | ], 9 | array: [ 10 | 'test/fixtures/array/tmp' 11 | ], 12 | multiple: [ 13 | 'test/fixtures/multiple/tmp' 14 | ], 15 | multipleTasks: [ 16 | 'test/fixtures/multipleTasks/tmp' 17 | ], 18 | customOptions: [ 19 | 'test/fixtures/customOptions/tmp' 20 | ], 21 | noProjectsObject: [ 22 | 'test/fixtures/noProjectsObject/tmp' 23 | ], 24 | npmInstall: [ 25 | 'test/fixtures/npmInstall/node_modules', 26 | 'test/fixtures/npmInstall/tmp' 27 | ], 28 | npmClean: [ 29 | 'test/fixtures/npmClean/node_modules', 30 | 'test/fixtures/npmClean/tmp' 31 | ], 32 | customCase: [ 33 | 'test/fixtures/customCase/tmp' 34 | ], 35 | coffee: [ 36 | 'test/fixtures/coffee/tmp' 37 | ], 38 | gh19: [ 39 | 'test/fixtures/gh19/tmp' 40 | ] 41 | }, 42 | 43 | // ## // 44 | 45 | subgrunt: { 46 | simple: { 47 | projects: { 48 | 'test/fixtures/simple': 'build' 49 | } 50 | }, 51 | array: { 52 | projects: [ 53 | 'test/fixtures/array' 54 | ] 55 | }, 56 | multiple: { 57 | projects: [ 58 | 'test/fixtures/multiple/multiple-1', 59 | 'test/fixtures/multiple/multiple-2' 60 | ] 61 | }, 62 | multipleTasks: { 63 | projects: { 64 | 'test/fixtures/multipleTasks': ['one', 'two'] 65 | } 66 | }, 67 | customOptions: { 68 | projects: { 69 | 'test/fixtures/customOptions': ['default', '--text=foo'] 70 | } 71 | }, 72 | noProjectsObject: { 73 | 'test/fixtures/noProjectsObject': 'default' 74 | }, 75 | npmInstall: { 76 | options: { 77 | npmInstall: true 78 | }, 79 | projects: [ 80 | 'test/fixtures/npmInstall' 81 | ] 82 | }, 83 | npmClean: { 84 | options: { 85 | npmInstall: true, 86 | npmClean: true 87 | }, 88 | projects: [ 89 | 'test/fixtures/npmClean' 90 | ] 91 | }, 92 | customCase: { 93 | projects: [ 94 | 'test/fixtures/customCase' 95 | ] 96 | }, 97 | coffee: { 98 | projects: [ 99 | 'test/fixtures/coffee' 100 | ] 101 | }, 102 | gh19: { 103 | projects: [ 104 | 'test/fixtures/gh19' 105 | ] 106 | } 107 | }, 108 | 109 | // ## // 110 | 111 | nodeunit: { 112 | tests: [ 113 | 'test/*.test.js' 114 | ], 115 | options: { 116 | reporter: 'junit', 117 | reporterOptions: { 118 | output: 'reports/tests' 119 | } 120 | } 121 | } 122 | }) 123 | 124 | grunt.loadNpmTasks('grunt-contrib-clean') 125 | grunt.loadNpmTasks('grunt-contrib-nodeunit') 126 | grunt.loadTasks('tasks') 127 | 128 | grunt.registerTask( 129 | 'gh19', 130 | 'gh19 fix by ianwremmel (https://github.com/tusbar/grunt-subgrunt/issues/19)', 131 | () => { 132 | grunt.option('aboolean', true) 133 | grunt.task.run('subgrunt:gh19') 134 | } 135 | ) 136 | 137 | grunt.registerTask('tasks', [ 138 | 'subgrunt:simple', 139 | 'subgrunt:array', 140 | 'subgrunt:multiple', 141 | 'subgrunt:multipleTasks', 142 | 'subgrunt:customOptions', 143 | 'subgrunt:noProjectsObject', 144 | 'subgrunt:npmInstall', 145 | 'subgrunt:npmClean', 146 | 'subgrunt:customCase', 147 | 'subgrunt:coffee', 148 | 149 | 'gh19' 150 | ]) 151 | 152 | grunt.registerTask('test', [ 153 | 'clean', 154 | 'tasks', 155 | 'nodeunit' 156 | ]) 157 | 158 | // Alias default task to test 159 | grunt.registerTask('default', [ 160 | 'test' 161 | ]) 162 | } 163 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # grunt-subgrunt [![CircleCI](https://circleci.com/gh/tusbar/grunt-subgrunt.svg?style=svg)](https://circleci.com/gh/tusbar/grunt-subgrunt) 2 | 3 | [![npm version](https://img.shields.io/npm/v/grunt-subgrunt.svg)](https://www.npmjs.com/package/grunt-subgrunt) 4 | [![Dependencies Status](https://david-dm.org/tusbar/grunt-subgrunt.svg)](https://david-dm.org/tusbar/grunt-subgrunt) 5 | [![Dev Dependencies Status](https://david-dm.org/tusbar/grunt-subgrunt/dev-status.svg)](https://david-dm.org/tusbar/grunt-subgrunt#info=devDependencies) 6 | [![XO code style](https://img.shields.io/badge/code_style-XO-5ed9c7.svg)](https://github.com/sindresorhus/xo) 7 | 8 | > Run sub-projects' grunt tasks. 9 | > This plugin was inspired by https://gist.github.com/cowboy/3819170. 10 | 11 | ## Getting started 12 | 13 | If you haven't used [Grunt](http://gruntjs.com/) before, be sure to check out the [Getting Started](http://gruntjs.com/getting-started) guide, as it explains how to create a [Gruntfile](http://gruntjs.com/sample-gruntfile) as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command: 14 | 15 | ```shell 16 | npm install grunt-subgrunt --save-dev 17 | ``` 18 | 19 | Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript: 20 | 21 | ```js 22 | grunt.loadNpmTasks('grunt-subgrunt'); 23 | ``` 24 | 25 | ## Release notes 26 | 27 | For change logs and release notes, see the [changelog](https://github.com/tusbar/grunt-subgrunt/blob/master/changelog.md) file. 28 | 29 | ## The "subgrunt" task 30 | 31 | ### Overview 32 | In your project's Gruntfile, add a section named `subgrunt` to the data object passed into `grunt.initConfig()`. 33 | 34 | ```js 35 | grunt.initConfig({ 36 | subgrunt: { 37 | options: { 38 | // Task-specific options go here. 39 | }, 40 | your_target: { 41 | options: { 42 | // Target-specific options 43 | }, 44 | projects: { 45 | // Paths to sub-projects' gruntfiles 46 | } 47 | }, 48 | }, 49 | }) 50 | ``` 51 | 52 | ### Options 53 | 54 | #### options.npmInstall 55 | Type: `bool` 56 | Default value: `true` 57 | 58 | Determines wether `npm install` will be ran for the sub-project (thus installing dev dependencies). 59 | 60 | #### options.npmClean 61 | Type: `bool` 62 | Default value: `false` 63 | *Requires npm >= 1.3.10* 64 | 65 | When enabled, runs `npm prune --production` to clean development dependencies. 66 | 67 | #### options.npmPath 68 | Type: `string` 69 | Default value: `'npm'` 70 | 71 | The location of the `npm` executable. Defaults to `'npm'` as it should be available in the `$PATH` environment variable. 72 | 73 | #### options.passGruntFlags 74 | Type: `bool` 75 | Default value: `true` 76 | 77 | When enabled, passes the grunt.options thru to the subgrunt task. 78 | 79 | #### options.limit 80 | Type: `Number` 81 | Default value: Number of CPU cores (`require('os').cpus().length`) with a minimum of 2 82 | 83 | Limit how many sub-grunt projects are launched concurrently. 84 | 85 | 86 | ### Usage examples 87 | 88 | ```js 89 | grunt.initConfig({ 90 | subgrunt: { 91 | target0: { 92 | projects: { 93 | // For each of these projects, the specified grunt task will be executed: 94 | 'node_modules/module1': 'default', 95 | 'node_modules/module2': 'bower:install' 96 | } 97 | }, 98 | target1: { 99 | // Without target-specific options, the projects object is optional: 100 | 'node_modules/module1': 'default', 101 | 'node_modules/module2': 'bower:install' 102 | }, 103 | target2: { 104 | // Use an array to run multiple tasks: 105 | 'node_modules/module1': [ 'clean', 'test' ] 106 | }, 107 | target3: { 108 | // you can use this array to add parameters: 109 | 'node_modules/module1': [ 'clean', '--myParam="foobar"', '--verbose' ] 110 | }, 111 | target4: [ 112 | // Using an array will just execute the 'default' grunt task: 113 | 'node_modules/module3', 114 | 'node_modules/module4' 115 | ], 116 | target5: { 117 | // npm install will not be ran for this target: 118 | options: { 119 | npmInstall: false 120 | }, 121 | projects: { 122 | 'sub-projects/my-awesome-module': 'build:dist' 123 | } 124 | }, 125 | target6: { 126 | // The npm devDependencies will be cleaned out after running the grunt tasks. 127 | options: { 128 | npmClean: true 129 | }, 130 | projects: { 131 | 'node_modules/module1': [ 'preprocess', 'build' ] 132 | } 133 | }, 134 | target7: { 135 | // grunt option flags will not be passed to the subgrunts 136 | options: { 137 | passGruntFlags: false 138 | }, 139 | projects: { 140 | 'baz': [ 'foo', 'bar' ] 141 | } 142 | } 143 | } 144 | }) 145 | ``` 146 | 147 | ## Miscellaneous 148 | 149 | ``` 150 | ╚⊙ ⊙╝ 151 | ╚═(███)═╝ 152 | ╚═(███)═╝ 153 | ╚═(███)═╝ 154 | ╚═(███)═╝ 155 | ╚═(███)═╝ 156 | ╚═(███)═╝ 157 | ``` 158 | -------------------------------------------------------------------------------- /test/subgrunt.test.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const fs = require('fs') 4 | const grunt = require('grunt') 5 | 6 | const read = function (src) { 7 | return grunt.util.normalizelf(grunt.file.read(src)) 8 | } 9 | 10 | exports.subgrunt = { 11 | simple(test) { 12 | test.expect(1) 13 | 14 | const actual = read('test/fixtures/simple/tmp/output.txt') 15 | const expected = 'success' 16 | 17 | test.equal( 18 | expected, 19 | actual, 20 | 'should create a file with "success" in it after running the "simple" task' 21 | ) 22 | 23 | test.done() 24 | }, 25 | 26 | array(test) { 27 | test.expect(1) 28 | 29 | const actual = read('test/fixtures/array/tmp/output.txt') 30 | const expected = 'success' 31 | 32 | test.equal( 33 | expected, 34 | actual, 35 | 'should create a file with "success" in it after running the "array" task' 36 | ) 37 | 38 | test.done() 39 | }, 40 | 41 | multiple(test) { 42 | test.expect(2) 43 | 44 | const actual1 = read('test/fixtures/multiple/tmp/output-1.txt') 45 | const expected1 = 'success' 46 | 47 | test.equal( 48 | expected1, 49 | actual1, 50 | 'should create a file with "success" in it after running the "multiple/multiple-1" task' 51 | ) 52 | 53 | const actual2 = read('test/fixtures/multiple/tmp/output-2.txt') 54 | const expected2 = 'success' 55 | 56 | test.equal( 57 | expected2, 58 | actual2, 59 | 'should create a file with "success" in it after running the "multiple/multiple-2" task' 60 | ) 61 | 62 | test.done() 63 | }, 64 | 65 | multipleTasks(test) { 66 | test.expect(1) 67 | 68 | const actual = read('test/fixtures/multipleTasks/tmp/output.txt') 69 | const expected = 'two' 70 | 71 | test.equal( 72 | expected, 73 | actual, 74 | 'should create a file with "two" in it after running the "multipleTask" tasks' 75 | ) 76 | 77 | test.done() 78 | }, 79 | 80 | customOptions(test) { 81 | test.expect(1) 82 | 83 | const actual = read('test/fixtures/customOptions/tmp/output.txt') 84 | const expected = 'foo' 85 | 86 | test.equal( 87 | expected, 88 | actual, 89 | 'should created a file with "foo" in it after running the "customOptions" task' 90 | ) 91 | 92 | test.done() 93 | }, 94 | 95 | noProjectsObject(test) { 96 | test.expect(1) 97 | 98 | const actual = read('test/fixtures/noProjectsObject/tmp/output.txt') 99 | const expected = 'success' 100 | 101 | test.equal( 102 | expected, 103 | actual, 104 | 'should create a file with "success" in it after running the "noProjectsObject" task' 105 | ) 106 | 107 | test.done() 108 | }, 109 | 110 | npmInstall(test) { 111 | test.expect(2) 112 | 113 | const exists = fs.existsSync('test/fixtures/npmInstall/node_modules/async') 114 | 115 | test.ok( 116 | exists, 117 | 'should install npm dev dependencies and "async" module should exist in "node_modules" directory' 118 | ) 119 | 120 | const actual = read('test/fixtures/npmInstall/tmp/output.txt') 121 | const expected = 'success' 122 | 123 | test.equal( 124 | expected, 125 | actual, 126 | 'should create a file with "success" in it after running the "npmInstall" task' 127 | ) 128 | 129 | test.done() 130 | }, 131 | 132 | npmClean(test) { 133 | test.expect(2) 134 | 135 | const exists = fs.existsSync('test/fixtures/npmClean/node_modules/async') 136 | 137 | test.ok( 138 | !exists, 139 | 'should remove npm dev dependencies and "async" module should be cleaned from "node_modules" directory' 140 | ) 141 | 142 | const actual = read('test/fixtures/npmClean/tmp/output.txt') 143 | const expected = 'success' 144 | 145 | test.equal( 146 | expected, 147 | actual, 148 | 'should create a file with "success" in it after running the "npmClean" task' 149 | ) 150 | 151 | test.done() 152 | }, 153 | 154 | customCase(test) { 155 | test.expect(1) 156 | 157 | const actual = read('test/fixtures/customCase/tmp/output.txt') 158 | const expected = 'success' 159 | 160 | test.equal( 161 | expected, 162 | actual, 163 | 'should create a file with "success" in it after running the "customCase" task' 164 | ) 165 | 166 | test.done() 167 | }, 168 | 169 | coffee(test) { 170 | test.expect(1) 171 | 172 | const actual = read('test/fixtures/coffee/tmp/output.txt') 173 | const expected = 'success' 174 | 175 | test.equal( 176 | expected, 177 | actual, 178 | 'should create a file with "success" in it after running the "coffee" task' 179 | ) 180 | 181 | test.done() 182 | }, 183 | 184 | gh19(test) { 185 | test.expect(1) 186 | 187 | const actual = read('test/fixtures/gh19/tmp/output.txt') 188 | const expected = '--aboolean' 189 | 190 | test.equal( 191 | expected, 192 | actual, 193 | 'should create a file with "--aboolean" in it after running the "gh19" task' 194 | ) 195 | 196 | test.done() 197 | } 198 | } 199 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.0.0": 6 | version "7.0.0" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0.tgz#06e2ab19bdb535385559aabb5ba59729482800f8" 8 | dependencies: 9 | "@babel/highlight" "^7.0.0" 10 | 11 | "@babel/code-frame@^7.8.3": 12 | version "7.8.3" 13 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.8.3.tgz#33e25903d7481181534e12ec0a25f16b6fcf419e" 14 | dependencies: 15 | "@babel/highlight" "^7.8.3" 16 | 17 | "@babel/generator@^7.4.0", "@babel/generator@^7.8.4": 18 | version "7.8.4" 19 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.8.4.tgz#35bbc74486956fe4251829f9f6c48330e8d0985e" 20 | dependencies: 21 | "@babel/types" "^7.8.3" 22 | jsesc "^2.5.1" 23 | lodash "^4.17.13" 24 | source-map "^0.5.0" 25 | 26 | "@babel/helper-function-name@^7.8.3": 27 | version "7.8.3" 28 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.8.3.tgz#eeeb665a01b1f11068e9fb86ad56a1cb1a824cca" 29 | dependencies: 30 | "@babel/helper-get-function-arity" "^7.8.3" 31 | "@babel/template" "^7.8.3" 32 | "@babel/types" "^7.8.3" 33 | 34 | "@babel/helper-get-function-arity@^7.8.3": 35 | version "7.8.3" 36 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.3.tgz#b894b947bd004381ce63ea1db9f08547e920abd5" 37 | dependencies: 38 | "@babel/types" "^7.8.3" 39 | 40 | "@babel/helper-split-export-declaration@^7.8.3": 41 | version "7.8.3" 42 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.3.tgz#31a9f30070f91368a7182cf05f831781065fc7a9" 43 | dependencies: 44 | "@babel/types" "^7.8.3" 45 | 46 | "@babel/highlight@^7.0.0": 47 | version "7.0.0" 48 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0.tgz#f710c38c8d458e6dd9a201afb637fcb781ce99e4" 49 | dependencies: 50 | chalk "^2.0.0" 51 | esutils "^2.0.2" 52 | js-tokens "^4.0.0" 53 | 54 | "@babel/highlight@^7.8.3": 55 | version "7.8.3" 56 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.8.3.tgz#28f173d04223eaaa59bc1d439a3836e6d1265797" 57 | dependencies: 58 | chalk "^2.0.0" 59 | esutils "^2.0.2" 60 | js-tokens "^4.0.0" 61 | 62 | "@babel/parser@^7.4.3", "@babel/parser@^7.8.3", "@babel/parser@^7.8.4": 63 | version "7.8.4" 64 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.8.4.tgz#d1dbe64691d60358a974295fa53da074dd2ce8e8" 65 | 66 | "@babel/template@^7.4.0", "@babel/template@^7.8.3": 67 | version "7.8.3" 68 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.8.3.tgz#e02ad04fe262a657809327f578056ca15fd4d1b8" 69 | dependencies: 70 | "@babel/code-frame" "^7.8.3" 71 | "@babel/parser" "^7.8.3" 72 | "@babel/types" "^7.8.3" 73 | 74 | "@babel/traverse@^7.4.3": 75 | version "7.8.4" 76 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.8.4.tgz#f0845822365f9d5b0e312ed3959d3f827f869e3c" 77 | dependencies: 78 | "@babel/code-frame" "^7.8.3" 79 | "@babel/generator" "^7.8.4" 80 | "@babel/helper-function-name" "^7.8.3" 81 | "@babel/helper-split-export-declaration" "^7.8.3" 82 | "@babel/parser" "^7.8.4" 83 | "@babel/types" "^7.8.3" 84 | debug "^4.1.0" 85 | globals "^11.1.0" 86 | lodash "^4.17.13" 87 | 88 | "@babel/types@^7.4.0", "@babel/types@^7.8.3": 89 | version "7.8.3" 90 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.8.3.tgz#5a383dffa5416db1b73dedffd311ffd0788fb31c" 91 | dependencies: 92 | esutils "^2.0.2" 93 | lodash "^4.17.13" 94 | to-fast-properties "^2.0.0" 95 | 96 | "@mrmlnc/readdir-enhanced@^2.2.1": 97 | version "2.2.1" 98 | resolved "https://registry.yarnpkg.com/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz#524af240d1a360527b730475ecfa1344aa540dde" 99 | dependencies: 100 | call-me-maybe "^1.0.1" 101 | glob-to-regexp "^0.3.0" 102 | 103 | "@nodelib/fs.stat@^1.1.2": 104 | version "1.1.3" 105 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz#2b5a3ab3f918cca48a8c754c08168e3f03eba61b" 106 | 107 | abbrev@1: 108 | version "1.1.1" 109 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 110 | 111 | acorn-jsx@^4.1.1: 112 | version "4.1.1" 113 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-4.1.1.tgz#e8e41e48ea2fe0c896740610ab6a4ffd8add225e" 114 | dependencies: 115 | acorn "^5.0.3" 116 | 117 | acorn-jsx@^5.0.0: 118 | version "5.0.1" 119 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.0.1.tgz#32a064fd925429216a09b141102bfdd185fae40e" 120 | 121 | acorn@^5.0.3, acorn@^5.6.0: 122 | version "5.7.4" 123 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.4.tgz#3e8d8a9947d0599a1796d10225d7432f4a4acf5e" 124 | 125 | acorn@^6.0.2: 126 | version "6.0.5" 127 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.0.5.tgz#81730c0815f3f3b34d8efa95cb7430965f4d887a" 128 | 129 | ajv@^6.5.3: 130 | version "6.5.3" 131 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.5.3.tgz#71a569d189ecf4f4f321224fecb166f071dd90f9" 132 | dependencies: 133 | fast-deep-equal "^2.0.1" 134 | fast-json-stable-stringify "^2.0.0" 135 | json-schema-traverse "^0.4.1" 136 | uri-js "^4.2.2" 137 | 138 | ajv@^6.5.5: 139 | version "6.11.0" 140 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.11.0.tgz#c3607cbc8ae392d8a5a536f25b21f8e5f3f87fe9" 141 | dependencies: 142 | fast-deep-equal "^3.1.1" 143 | fast-json-stable-stringify "^2.0.0" 144 | json-schema-traverse "^0.4.1" 145 | uri-js "^4.2.2" 146 | 147 | ajv@^6.6.1: 148 | version "6.7.0" 149 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.7.0.tgz#e3ce7bb372d6577bb1839f1dfdfcbf5ad2948d96" 150 | dependencies: 151 | fast-deep-equal "^2.0.1" 152 | fast-json-stable-stringify "^2.0.0" 153 | json-schema-traverse "^0.4.1" 154 | uri-js "^4.2.2" 155 | 156 | ansi-align@^2.0.0: 157 | version "2.0.0" 158 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" 159 | dependencies: 160 | string-width "^2.0.0" 161 | 162 | ansi-escapes@^3.0.0, ansi-escapes@^3.1.0: 163 | version "3.1.0" 164 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30" 165 | 166 | ansi-regex@^2.0.0: 167 | version "2.1.1" 168 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 169 | 170 | ansi-regex@^3.0.0: 171 | version "3.0.0" 172 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 173 | 174 | ansi-regex@^4.1.0: 175 | version "4.1.0" 176 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" 177 | 178 | ansi-styles@^3.1.0: 179 | version "3.2.0" 180 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 181 | dependencies: 182 | color-convert "^1.9.0" 183 | 184 | ansi-styles@^3.2.0, ansi-styles@^3.2.1: 185 | version "3.2.1" 186 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 187 | dependencies: 188 | color-convert "^1.9.0" 189 | 190 | append-transform@^1.0.0: 191 | version "1.0.0" 192 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-1.0.0.tgz#046a52ae582a228bd72f58acfbe2967c678759ab" 193 | dependencies: 194 | default-require-extensions "^2.0.0" 195 | 196 | archy@^1.0.0: 197 | version "1.0.0" 198 | resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" 199 | 200 | arg@^4.1.0: 201 | version "4.1.3" 202 | resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" 203 | 204 | argparse@^1.0.7: 205 | version "1.0.10" 206 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 207 | dependencies: 208 | sprintf-js "~1.0.2" 209 | 210 | arr-diff@^4.0.0: 211 | version "4.0.0" 212 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 213 | 214 | arr-flatten@^1.1.0: 215 | version "1.1.0" 216 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 217 | 218 | arr-union@^3.1.0: 219 | version "3.1.0" 220 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 221 | 222 | array-differ@^1.0.0: 223 | version "1.0.0" 224 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" 225 | 226 | array-differ@^2.0.3: 227 | version "2.0.3" 228 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-2.0.3.tgz#0195bb00ccccf271106efee4a4786488b7180712" 229 | 230 | array-find-index@^1.0.1: 231 | version "1.0.2" 232 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 233 | 234 | array-union@^1.0.1, array-union@^1.0.2: 235 | version "1.0.2" 236 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 237 | dependencies: 238 | array-uniq "^1.0.1" 239 | 240 | array-uniq@^1.0.1: 241 | version "1.0.3" 242 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 243 | 244 | array-unique@^0.3.2: 245 | version "0.3.2" 246 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 247 | 248 | arrify@^1.0.0, arrify@^1.0.1: 249 | version "1.0.1" 250 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 251 | 252 | asn1@~0.2.3: 253 | version "0.2.3" 254 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 255 | 256 | assert-plus@1.0.0, assert-plus@^1.0.0: 257 | version "1.0.0" 258 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 259 | 260 | assign-symbols@^1.0.0: 261 | version "1.0.0" 262 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 263 | 264 | astral-regex@^1.0.0: 265 | version "1.0.0" 266 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 267 | 268 | async@^2.6.1: 269 | version "2.6.3" 270 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.3.tgz#d72625e2344a3656e3a3ad4fa749fa83299d82ff" 271 | dependencies: 272 | lodash "^4.17.14" 273 | 274 | async@^3.2.0: 275 | version "3.2.0" 276 | resolved "https://registry.yarnpkg.com/async/-/async-3.2.0.tgz#b3a2685c5ebb641d3de02d161002c60fc9f85720" 277 | 278 | async@~1.5.2: 279 | version "1.5.2" 280 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 281 | 282 | asynckit@^0.4.0: 283 | version "0.4.0" 284 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 285 | 286 | atob@^2.0.0: 287 | version "2.1.0" 288 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.0.tgz#ab2b150e51d7b122b9efc8d7340c06b6c41076bc" 289 | 290 | aws-sign2@~0.7.0: 291 | version "0.7.0" 292 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 293 | 294 | aws4@^1.8.0: 295 | version "1.9.1" 296 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.9.1.tgz#7e33d8f7d449b3f673cd72deb9abdc552dbe528e" 297 | 298 | balanced-match@^1.0.0: 299 | version "1.0.0" 300 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 301 | 302 | base@^0.11.1: 303 | version "0.11.2" 304 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 305 | dependencies: 306 | cache-base "^1.0.1" 307 | class-utils "^0.3.5" 308 | component-emitter "^1.2.1" 309 | define-property "^1.0.0" 310 | isobject "^3.0.1" 311 | mixin-deep "^1.2.0" 312 | pascalcase "^0.1.1" 313 | 314 | bcrypt-pbkdf@^1.0.0: 315 | version "1.0.1" 316 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 317 | dependencies: 318 | tweetnacl "^0.14.3" 319 | 320 | bind-obj-methods@^2.0.0: 321 | version "2.0.0" 322 | resolved "https://registry.yarnpkg.com/bind-obj-methods/-/bind-obj-methods-2.0.0.tgz#0178140dbe7b7bb67dc74892ace59bc0247f06f0" 323 | 324 | boxen@^1.2.1: 325 | version "1.3.0" 326 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b" 327 | dependencies: 328 | ansi-align "^2.0.0" 329 | camelcase "^4.0.0" 330 | chalk "^2.0.1" 331 | cli-boxes "^1.0.0" 332 | string-width "^2.0.0" 333 | term-size "^1.2.0" 334 | widest-line "^2.0.0" 335 | 336 | brace-expansion@^1.1.7: 337 | version "1.1.8" 338 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 339 | dependencies: 340 | balanced-match "^1.0.0" 341 | concat-map "0.0.1" 342 | 343 | braces@^2.3.1: 344 | version "2.3.2" 345 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" 346 | dependencies: 347 | arr-flatten "^1.1.0" 348 | array-unique "^0.3.2" 349 | extend-shallow "^2.0.1" 350 | fill-range "^4.0.0" 351 | isobject "^3.0.1" 352 | repeat-element "^1.1.2" 353 | snapdragon "^0.8.1" 354 | snapdragon-node "^2.0.1" 355 | split-string "^3.0.2" 356 | to-regex "^3.0.1" 357 | 358 | browser-process-hrtime@^1.0.0: 359 | version "1.0.0" 360 | resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626" 361 | 362 | buf-compare@^1.0.0: 363 | version "1.0.1" 364 | resolved "https://registry.yarnpkg.com/buf-compare/-/buf-compare-1.0.1.tgz#fef28da8b8113a0a0db4430b0b6467b69730b34a" 365 | 366 | buffer-from@^1.0.0: 367 | version "1.0.0" 368 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.0.0.tgz#4cb8832d23612589b0406e9e2956c17f06fdf531" 369 | 370 | builtin-modules@^1.0.0: 371 | version "1.1.1" 372 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 373 | 374 | cache-base@^1.0.1: 375 | version "1.0.1" 376 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 377 | dependencies: 378 | collection-visit "^1.0.0" 379 | component-emitter "^1.2.1" 380 | get-value "^2.0.6" 381 | has-value "^1.0.0" 382 | isobject "^3.0.1" 383 | set-value "^2.0.0" 384 | to-object-path "^0.3.0" 385 | union-value "^1.0.0" 386 | unset-value "^1.0.0" 387 | 388 | caching-transform@^3.0.2: 389 | version "3.0.2" 390 | resolved "https://registry.yarnpkg.com/caching-transform/-/caching-transform-3.0.2.tgz#601d46b91eca87687a281e71cef99791b0efca70" 391 | dependencies: 392 | hasha "^3.0.0" 393 | make-dir "^2.0.0" 394 | package-hash "^3.0.0" 395 | write-file-atomic "^2.4.2" 396 | 397 | call-me-maybe@^1.0.1: 398 | version "1.0.1" 399 | resolved "https://registry.yarnpkg.com/call-me-maybe/-/call-me-maybe-1.0.1.tgz#26d208ea89e37b5cbde60250a15f031c16a4d66b" 400 | 401 | callsites@^3.0.0: 402 | version "3.0.0" 403 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.0.0.tgz#fb7eb569b72ad7a45812f93fd9430a3e410b3dd3" 404 | 405 | camelcase-keys@^2.0.0: 406 | version "2.1.0" 407 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 408 | dependencies: 409 | camelcase "^2.0.0" 410 | map-obj "^1.0.0" 411 | 412 | camelcase-keys@^4.0.0: 413 | version "4.2.0" 414 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-4.2.0.tgz#a2aa5fb1af688758259c32c141426d78923b9b77" 415 | dependencies: 416 | camelcase "^4.1.0" 417 | map-obj "^2.0.0" 418 | quick-lru "^1.0.0" 419 | 420 | camelcase@^2.0.0: 421 | version "2.1.1" 422 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 423 | 424 | camelcase@^4.0.0, camelcase@^4.1.0: 425 | version "4.1.0" 426 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 427 | 428 | camelcase@^5.0.0: 429 | version "5.3.1" 430 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 431 | 432 | capture-stack-trace@^1.0.0: 433 | version "1.0.0" 434 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" 435 | 436 | caseless@~0.12.0: 437 | version "0.12.0" 438 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 439 | 440 | chalk@^2.0.0: 441 | version "2.4.0" 442 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.0.tgz#a060a297a6b57e15b61ca63ce84995daa0fe6e52" 443 | dependencies: 444 | ansi-styles "^3.2.1" 445 | escape-string-regexp "^1.0.5" 446 | supports-color "^5.3.0" 447 | 448 | chalk@^2.0.1, chalk@^2.1.0: 449 | version "2.3.0" 450 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba" 451 | dependencies: 452 | ansi-styles "^3.1.0" 453 | escape-string-regexp "^1.0.5" 454 | supports-color "^4.0.0" 455 | 456 | chalk@~2.4.1: 457 | version "2.4.1" 458 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e" 459 | dependencies: 460 | ansi-styles "^3.2.1" 461 | escape-string-regexp "^1.0.5" 462 | supports-color "^5.3.0" 463 | 464 | chardet@^0.7.0: 465 | version "0.7.0" 466 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" 467 | 468 | ci-info@^1.0.0: 469 | version "1.1.3" 470 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.3.tgz#710193264bb05c77b8c90d02f5aaf22216a667b2" 471 | 472 | circular-json@^0.3.1: 473 | version "0.3.3" 474 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" 475 | 476 | class-utils@^0.3.5: 477 | version "0.3.6" 478 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 479 | dependencies: 480 | arr-union "^3.1.0" 481 | define-property "^0.2.5" 482 | isobject "^3.0.0" 483 | static-extend "^0.1.1" 484 | 485 | clean-regexp@^1.0.0: 486 | version "1.0.0" 487 | resolved "https://registry.yarnpkg.com/clean-regexp/-/clean-regexp-1.0.0.tgz#8df7c7aae51fd36874e8f8d05b9180bc11a3fed7" 488 | dependencies: 489 | escape-string-regexp "^1.0.5" 490 | 491 | clean-yaml-object@^0.1.0: 492 | version "0.1.0" 493 | resolved "https://registry.yarnpkg.com/clean-yaml-object/-/clean-yaml-object-0.1.0.tgz#63fb110dc2ce1a84dc21f6d9334876d010ae8b68" 494 | 495 | cli-boxes@^1.0.0: 496 | version "1.0.0" 497 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 498 | 499 | cli-cursor@^2.1.0: 500 | version "2.1.0" 501 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 502 | dependencies: 503 | restore-cursor "^2.0.0" 504 | 505 | cli-table3@^0.5.0: 506 | version "0.5.1" 507 | resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.5.1.tgz#0252372d94dfc40dbd8df06005f48f31f656f202" 508 | dependencies: 509 | object-assign "^4.1.0" 510 | string-width "^2.1.1" 511 | optionalDependencies: 512 | colors "^1.1.2" 513 | 514 | cli-width@^2.0.0: 515 | version "2.2.0" 516 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 517 | 518 | cliui@^4.0.0: 519 | version "4.1.0" 520 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49" 521 | dependencies: 522 | string-width "^2.1.1" 523 | strip-ansi "^4.0.0" 524 | wrap-ansi "^2.0.0" 525 | 526 | cliui@^5.0.0: 527 | version "5.0.0" 528 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5" 529 | dependencies: 530 | string-width "^3.1.0" 531 | strip-ansi "^5.2.0" 532 | wrap-ansi "^5.1.0" 533 | 534 | code-point-at@^1.0.0: 535 | version "1.1.0" 536 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 537 | 538 | coffeescript@~1.10.0: 539 | version "1.10.0" 540 | resolved "https://registry.yarnpkg.com/coffeescript/-/coffeescript-1.10.0.tgz#e7aa8301917ef621b35d8a39f348dcdd1db7e33e" 541 | 542 | collection-visit@^1.0.0: 543 | version "1.0.0" 544 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 545 | dependencies: 546 | map-visit "^1.0.0" 547 | object-visit "^1.0.0" 548 | 549 | color-convert@^1.9.0: 550 | version "1.9.1" 551 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 552 | dependencies: 553 | color-name "^1.1.1" 554 | 555 | color-name@^1.1.1: 556 | version "1.1.3" 557 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 558 | 559 | color-support@^1.1.0: 560 | version "1.1.3" 561 | resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" 562 | 563 | colors@^1.1.2: 564 | version "1.3.3" 565 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.3.3.tgz#39e005d546afe01e01f9c4ca8fa50f686a01205d" 566 | 567 | colors@~1.1.2: 568 | version "1.1.2" 569 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" 570 | 571 | combined-stream@^1.0.6, combined-stream@~1.0.6: 572 | version "1.0.8" 573 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" 574 | dependencies: 575 | delayed-stream "~1.0.0" 576 | 577 | commondir@^1.0.1: 578 | version "1.0.1" 579 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 580 | 581 | component-emitter@^1.2.1: 582 | version "1.2.1" 583 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 584 | 585 | concat-map@0.0.1: 586 | version "0.0.1" 587 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 588 | 589 | configstore@^3.0.0: 590 | version "3.1.1" 591 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.1.tgz#094ee662ab83fad9917678de114faaea8fcdca90" 592 | dependencies: 593 | dot-prop "^4.1.0" 594 | graceful-fs "^4.1.2" 595 | make-dir "^1.0.0" 596 | unique-string "^1.0.0" 597 | write-file-atomic "^2.0.0" 598 | xdg-basedir "^3.0.0" 599 | 600 | contains-path@^0.1.0: 601 | version "0.1.0" 602 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 603 | 604 | convert-source-map@^1.6.0: 605 | version "1.7.0" 606 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442" 607 | dependencies: 608 | safe-buffer "~5.1.1" 609 | 610 | copy-descriptor@^0.1.0: 611 | version "0.1.1" 612 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 613 | 614 | core-assert@^0.2.0: 615 | version "0.2.1" 616 | resolved "https://registry.yarnpkg.com/core-assert/-/core-assert-0.2.1.tgz#f85e2cf9bfed28f773cc8b3fa5c5b69bdc02fe3f" 617 | dependencies: 618 | buf-compare "^1.0.0" 619 | is-error "^2.2.0" 620 | 621 | core-js@^2.0.0: 622 | version "2.5.3" 623 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e" 624 | 625 | core-util-is@1.0.2, core-util-is@~1.0.0: 626 | version "1.0.2" 627 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 628 | 629 | coveralls@^3.0.2: 630 | version "3.0.9" 631 | resolved "https://registry.yarnpkg.com/coveralls/-/coveralls-3.0.9.tgz#8cfc5a5525f84884e2948a0bf0f1c0e90aac0420" 632 | dependencies: 633 | js-yaml "^3.13.1" 634 | lcov-parse "^1.0.0" 635 | log-driver "^1.2.7" 636 | minimist "^1.2.0" 637 | request "^2.88.0" 638 | 639 | cp-file@^6.2.0: 640 | version "6.2.0" 641 | resolved "https://registry.yarnpkg.com/cp-file/-/cp-file-6.2.0.tgz#40d5ea4a1def2a9acdd07ba5c0b0246ef73dc10d" 642 | dependencies: 643 | graceful-fs "^4.1.2" 644 | make-dir "^2.0.0" 645 | nested-error-stacks "^2.0.0" 646 | pify "^4.0.1" 647 | safe-buffer "^5.0.1" 648 | 649 | create-error-class@^3.0.0: 650 | version "3.0.2" 651 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" 652 | dependencies: 653 | capture-stack-trace "^1.0.0" 654 | 655 | cross-spawn@^4: 656 | version "4.0.2" 657 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41" 658 | dependencies: 659 | lru-cache "^4.0.1" 660 | which "^1.2.9" 661 | 662 | cross-spawn@^5.0.1: 663 | version "5.1.0" 664 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 665 | dependencies: 666 | lru-cache "^4.0.1" 667 | shebang-command "^1.2.0" 668 | which "^1.2.9" 669 | 670 | cross-spawn@^6.0.5: 671 | version "6.0.5" 672 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" 673 | dependencies: 674 | nice-try "^1.0.4" 675 | path-key "^2.0.1" 676 | semver "^5.5.0" 677 | shebang-command "^1.2.0" 678 | which "^1.2.9" 679 | 680 | crypto-random-string@^1.0.0: 681 | version "1.0.0" 682 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" 683 | 684 | currently-unhandled@^0.4.1: 685 | version "0.4.1" 686 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 687 | dependencies: 688 | array-find-index "^1.0.1" 689 | 690 | dashdash@^1.12.0: 691 | version "1.14.1" 692 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 693 | dependencies: 694 | assert-plus "^1.0.0" 695 | 696 | dateformat@~1.0.12: 697 | version "1.0.12" 698 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-1.0.12.tgz#9f124b67594c937ff706932e4a642cca8dbbfee9" 699 | dependencies: 700 | get-stdin "^4.0.1" 701 | meow "^3.3.0" 702 | 703 | debug@^2.1.3, debug@^2.2.0, debug@^2.3.3, debug@^2.6.8: 704 | version "2.6.9" 705 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 706 | dependencies: 707 | ms "2.0.0" 708 | 709 | debug@^4.0.1, debug@^4.1.0, debug@^4.1.1: 710 | version "4.1.1" 711 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" 712 | dependencies: 713 | ms "^2.1.1" 714 | 715 | decamelize-keys@^1.0.0: 716 | version "1.1.0" 717 | resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.0.tgz#d171a87933252807eb3cb61dc1c1445d078df2d9" 718 | dependencies: 719 | decamelize "^1.1.0" 720 | map-obj "^1.0.0" 721 | 722 | decamelize@^1.1.0, decamelize@^1.1.1, decamelize@^1.1.2, decamelize@^1.2.0: 723 | version "1.2.0" 724 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 725 | 726 | decode-uri-component@^0.2.0: 727 | version "0.2.0" 728 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 729 | 730 | deep-extend@~0.4.0: 731 | version "0.4.2" 732 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 733 | 734 | deep-is@~0.1.3: 735 | version "0.1.3" 736 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 737 | 738 | deep-strict-equal@^0.2.0: 739 | version "0.2.0" 740 | resolved "https://registry.yarnpkg.com/deep-strict-equal/-/deep-strict-equal-0.2.0.tgz#4a078147a8ab57f6a0d4f5547243cd22f44eb4e4" 741 | dependencies: 742 | core-assert "^0.2.0" 743 | 744 | default-require-extensions@^2.0.0: 745 | version "2.0.0" 746 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-2.0.0.tgz#f5f8fbb18a7d6d50b21f641f649ebb522cfe24f7" 747 | dependencies: 748 | strip-bom "^3.0.0" 749 | 750 | define-property@^0.2.5: 751 | version "0.2.5" 752 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 753 | dependencies: 754 | is-descriptor "^0.1.0" 755 | 756 | define-property@^1.0.0: 757 | version "1.0.0" 758 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 759 | dependencies: 760 | is-descriptor "^1.0.0" 761 | 762 | define-property@^2.0.2: 763 | version "2.0.2" 764 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 765 | dependencies: 766 | is-descriptor "^1.0.2" 767 | isobject "^3.0.1" 768 | 769 | del@^2.0.2: 770 | version "2.2.2" 771 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 772 | dependencies: 773 | globby "^5.0.0" 774 | is-path-cwd "^1.0.0" 775 | is-path-in-cwd "^1.0.0" 776 | object-assign "^4.0.1" 777 | pify "^2.0.0" 778 | pinkie-promise "^2.0.0" 779 | rimraf "^2.2.8" 780 | 781 | delayed-stream@~1.0.0: 782 | version "1.0.0" 783 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 784 | 785 | detect-indent@^5.0.0: 786 | version "5.0.0" 787 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-5.0.0.tgz#3871cc0a6a002e8c3e5b3cf7f336264675f06b9d" 788 | 789 | diff@^1.3.2: 790 | version "1.4.0" 791 | resolved "https://registry.yarnpkg.com/diff/-/diff-1.4.0.tgz#7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf" 792 | 793 | diff@^4.0.1: 794 | version "4.0.2" 795 | resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" 796 | 797 | dir-glob@^2.2.1: 798 | version "2.2.2" 799 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-2.2.2.tgz#fa09f0694153c8918b18ba0deafae94769fc50c4" 800 | dependencies: 801 | path-type "^3.0.0" 802 | 803 | doctrine@1.5.0: 804 | version "1.5.0" 805 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 806 | dependencies: 807 | esutils "^2.0.2" 808 | isarray "^1.0.0" 809 | 810 | doctrine@^2.1.0: 811 | version "2.1.0" 812 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 813 | dependencies: 814 | esutils "^2.0.2" 815 | 816 | domain-browser@^1.2.0: 817 | version "1.2.0" 818 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" 819 | 820 | dot-prop@^4.1.0: 821 | version "4.2.1" 822 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.1.tgz#45884194a71fc2cda71cbb4bceb3a4dd2f433ba4" 823 | dependencies: 824 | is-obj "^1.0.0" 825 | 826 | duplexer3@^0.1.4: 827 | version "0.1.4" 828 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" 829 | 830 | ecc-jsbn@~0.1.1: 831 | version "0.1.1" 832 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 833 | dependencies: 834 | jsbn "~0.1.0" 835 | 836 | ejs@^2.5.2: 837 | version "2.6.1" 838 | resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.6.1.tgz#498ec0d495655abc6f23cd61868d926464071aa0" 839 | 840 | emoji-regex@^7.0.1: 841 | version "7.0.3" 842 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" 843 | 844 | enhance-visitors@^1.0.0: 845 | version "1.0.0" 846 | resolved "https://registry.yarnpkg.com/enhance-visitors/-/enhance-visitors-1.0.0.tgz#aa945d05da465672a1ebd38fee2ed3da8518e95a" 847 | dependencies: 848 | lodash "^4.13.1" 849 | 850 | env-editor@^0.3.1: 851 | version "0.3.1" 852 | resolved "https://registry.yarnpkg.com/env-editor/-/env-editor-0.3.1.tgz#30d0540c2101414f258a94d4c0a524c06c13e3c6" 853 | 854 | error-ex@^1.2.0, error-ex@^1.3.1: 855 | version "1.3.1" 856 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 857 | dependencies: 858 | is-arrayish "^0.2.1" 859 | 860 | es6-error@^4.0.1: 861 | version "4.1.1" 862 | resolved "https://registry.yarnpkg.com/es6-error/-/es6-error-4.1.1.tgz#9e3af407459deed47e9a91f9b885a84eb05c561d" 863 | 864 | escape-string-regexp@^1.0.3, escape-string-regexp@^1.0.5: 865 | version "1.0.5" 866 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 867 | 868 | eslint-ast-utils@^1.0.0: 869 | version "1.1.0" 870 | resolved "https://registry.yarnpkg.com/eslint-ast-utils/-/eslint-ast-utils-1.1.0.tgz#3d58ba557801cfb1c941d68131ee9f8c34bd1586" 871 | dependencies: 872 | lodash.get "^4.4.2" 873 | lodash.zip "^4.2.0" 874 | 875 | eslint-config-prettier@^3.3.0: 876 | version "3.6.0" 877 | resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-3.6.0.tgz#8ca3ffac4bd6eeef623a0651f9d754900e3ec217" 878 | dependencies: 879 | get-stdin "^6.0.0" 880 | 881 | eslint-config-xo@^0.26.0: 882 | version "0.26.0" 883 | resolved "https://registry.yarnpkg.com/eslint-config-xo/-/eslint-config-xo-0.26.0.tgz#19dcfb1e3038dd440f5c5e4b4d11bb3128801b24" 884 | 885 | eslint-formatter-pretty@^2.0.0: 886 | version "2.1.0" 887 | resolved "https://registry.yarnpkg.com/eslint-formatter-pretty/-/eslint-formatter-pretty-2.1.0.tgz#dfd1661dcc9d7ec928604fa3c9919a1b0616a7ec" 888 | dependencies: 889 | ansi-escapes "^3.1.0" 890 | chalk "^2.1.0" 891 | eslint-rule-docs "^1.1.5" 892 | log-symbols "^2.0.0" 893 | plur "^3.0.1" 894 | string-width "^2.0.0" 895 | supports-hyperlinks "^1.0.1" 896 | 897 | eslint-import-resolver-node@^0.3.1: 898 | version "0.3.1" 899 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.1.tgz#4422574cde66a9a7b099938ee4d508a199e0e3cc" 900 | dependencies: 901 | debug "^2.6.8" 902 | resolve "^1.2.0" 903 | 904 | eslint-module-utils@^2.2.0: 905 | version "2.2.0" 906 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.2.0.tgz#b270362cd88b1a48ad308976ce7fa54e98411746" 907 | dependencies: 908 | debug "^2.6.8" 909 | pkg-dir "^1.0.0" 910 | 911 | eslint-plugin-ava@^5.1.0: 912 | version "5.1.0" 913 | resolved "https://registry.yarnpkg.com/eslint-plugin-ava/-/eslint-plugin-ava-5.1.0.tgz#885e6bcd1124c08bb8f3ef721600174e25af40a3" 914 | dependencies: 915 | arrify "^1.0.1" 916 | deep-strict-equal "^0.2.0" 917 | enhance-visitors "^1.0.0" 918 | esm "^3.0.71" 919 | espree "^4.0.0" 920 | espurify "^1.5.0" 921 | import-modules "^1.1.0" 922 | is-plain-object "^2.0.4" 923 | multimatch "^2.1.0" 924 | pkg-up "^2.0.0" 925 | 926 | eslint-plugin-es@^1.3.1: 927 | version "1.3.1" 928 | resolved "https://registry.yarnpkg.com/eslint-plugin-es/-/eslint-plugin-es-1.3.1.tgz#5acb2565db4434803d1d46a9b4cbc94b345bd028" 929 | dependencies: 930 | eslint-utils "^1.3.0" 931 | regexpp "^2.0.0" 932 | 933 | eslint-plugin-eslint-comments@^3.0.1: 934 | version "3.0.1" 935 | resolved "https://registry.yarnpkg.com/eslint-plugin-eslint-comments/-/eslint-plugin-eslint-comments-3.0.1.tgz#baafb713584c0de7ee588710720e580bcc28cfbb" 936 | dependencies: 937 | escape-string-regexp "^1.0.5" 938 | ignore "^3.3.8" 939 | 940 | eslint-plugin-import@^2.14.0: 941 | version "2.14.0" 942 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.14.0.tgz#6b17626d2e3e6ad52cfce8807a845d15e22111a8" 943 | dependencies: 944 | contains-path "^0.1.0" 945 | debug "^2.6.8" 946 | doctrine "1.5.0" 947 | eslint-import-resolver-node "^0.3.1" 948 | eslint-module-utils "^2.2.0" 949 | has "^1.0.1" 950 | lodash "^4.17.4" 951 | minimatch "^3.0.3" 952 | read-pkg-up "^2.0.0" 953 | resolve "^1.6.0" 954 | 955 | eslint-plugin-no-use-extend-native@^0.4.0: 956 | version "0.4.0" 957 | resolved "https://registry.yarnpkg.com/eslint-plugin-no-use-extend-native/-/eslint-plugin-no-use-extend-native-0.4.0.tgz#ececdf248a2336555a554f7b1217a612240c4eaf" 958 | dependencies: 959 | is-get-set-prop "^1.0.0" 960 | is-js-type "^2.0.0" 961 | is-obj-prop "^1.0.0" 962 | is-proto-prop "^2.0.0" 963 | 964 | eslint-plugin-node@^8.0.0: 965 | version "8.0.1" 966 | resolved "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-8.0.1.tgz#55ae3560022863d141fa7a11799532340a685964" 967 | dependencies: 968 | eslint-plugin-es "^1.3.1" 969 | eslint-utils "^1.3.1" 970 | ignore "^5.0.2" 971 | minimatch "^3.0.4" 972 | resolve "^1.8.1" 973 | semver "^5.5.0" 974 | 975 | eslint-plugin-prettier@^3.0.0: 976 | version "3.0.1" 977 | resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-3.0.1.tgz#19d521e3981f69dd6d14f64aec8c6a6ac6eb0b0d" 978 | dependencies: 979 | prettier-linter-helpers "^1.0.0" 980 | 981 | eslint-plugin-promise@^4.0.0: 982 | version "4.0.1" 983 | resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-4.0.1.tgz#2d074b653f35a23d1ba89d8e976a985117d1c6a2" 984 | 985 | eslint-plugin-unicorn@^7.0.0: 986 | version "7.0.0" 987 | resolved "https://registry.yarnpkg.com/eslint-plugin-unicorn/-/eslint-plugin-unicorn-7.0.0.tgz#b03ade717684d620392bf5458a51758e8e77ea47" 988 | dependencies: 989 | clean-regexp "^1.0.0" 990 | eslint-ast-utils "^1.0.0" 991 | import-modules "^1.1.0" 992 | lodash.camelcase "^4.1.1" 993 | lodash.kebabcase "^4.0.1" 994 | lodash.snakecase "^4.0.1" 995 | lodash.upperfirst "^4.2.0" 996 | safe-regex "^2.0.1" 997 | 998 | eslint-rule-docs@^1.1.5: 999 | version "1.1.47" 1000 | resolved "https://registry.yarnpkg.com/eslint-rule-docs/-/eslint-rule-docs-1.1.47.tgz#73744e9391f3c9c9bc1e5e8142b3b3de0ced1cbc" 1001 | 1002 | eslint-scope@^4.0.0: 1003 | version "4.0.0" 1004 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.0.tgz#50bf3071e9338bcdc43331794a0cb533f0136172" 1005 | dependencies: 1006 | esrecurse "^4.1.0" 1007 | estraverse "^4.1.1" 1008 | 1009 | eslint-utils@^1.3.0, eslint-utils@^1.3.1: 1010 | version "1.4.2" 1011 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.2.tgz#166a5180ef6ab7eb462f162fd0e6f2463d7309ab" 1012 | dependencies: 1013 | eslint-visitor-keys "^1.0.0" 1014 | 1015 | eslint-visitor-keys@^1.0.0: 1016 | version "1.1.0" 1017 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz#e2a82cea84ff246ad6fb57f9bde5b46621459ec2" 1018 | 1019 | eslint@^5.12.0: 1020 | version "5.12.1" 1021 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-5.12.1.tgz#5ca9931fb9029d04e7be92b03ce3b58edfac7e3b" 1022 | dependencies: 1023 | "@babel/code-frame" "^7.0.0" 1024 | ajv "^6.5.3" 1025 | chalk "^2.1.0" 1026 | cross-spawn "^6.0.5" 1027 | debug "^4.0.1" 1028 | doctrine "^2.1.0" 1029 | eslint-scope "^4.0.0" 1030 | eslint-utils "^1.3.1" 1031 | eslint-visitor-keys "^1.0.0" 1032 | espree "^5.0.0" 1033 | esquery "^1.0.1" 1034 | esutils "^2.0.2" 1035 | file-entry-cache "^2.0.0" 1036 | functional-red-black-tree "^1.0.1" 1037 | glob "^7.1.2" 1038 | globals "^11.7.0" 1039 | ignore "^4.0.6" 1040 | import-fresh "^3.0.0" 1041 | imurmurhash "^0.1.4" 1042 | inquirer "^6.1.0" 1043 | js-yaml "^3.12.0" 1044 | json-stable-stringify-without-jsonify "^1.0.1" 1045 | levn "^0.3.0" 1046 | lodash "^4.17.5" 1047 | minimatch "^3.0.4" 1048 | mkdirp "^0.5.1" 1049 | natural-compare "^1.4.0" 1050 | optionator "^0.8.2" 1051 | path-is-inside "^1.0.2" 1052 | pluralize "^7.0.0" 1053 | progress "^2.0.0" 1054 | regexpp "^2.0.1" 1055 | semver "^5.5.1" 1056 | strip-ansi "^4.0.0" 1057 | strip-json-comments "^2.0.1" 1058 | table "^5.0.2" 1059 | text-table "^0.2.0" 1060 | 1061 | esm@^3.0.71, esm@^3.2.5: 1062 | version "3.2.25" 1063 | resolved "https://registry.yarnpkg.com/esm/-/esm-3.2.25.tgz#342c18c29d56157688ba5ce31f8431fbb795cc10" 1064 | 1065 | espree@^4.0.0: 1066 | version "4.0.0" 1067 | resolved "https://registry.yarnpkg.com/espree/-/espree-4.0.0.tgz#253998f20a0f82db5d866385799d912a83a36634" 1068 | dependencies: 1069 | acorn "^5.6.0" 1070 | acorn-jsx "^4.1.1" 1071 | 1072 | espree@^5.0.0: 1073 | version "5.0.0" 1074 | resolved "https://registry.yarnpkg.com/espree/-/espree-5.0.0.tgz#fc7f984b62b36a0f543b13fb9cd7b9f4a7f5b65c" 1075 | dependencies: 1076 | acorn "^6.0.2" 1077 | acorn-jsx "^5.0.0" 1078 | eslint-visitor-keys "^1.0.0" 1079 | 1080 | esprima@^4.0.0: 1081 | version "4.0.1" 1082 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 1083 | 1084 | espurify@^1.5.0: 1085 | version "1.7.0" 1086 | resolved "https://registry.yarnpkg.com/espurify/-/espurify-1.7.0.tgz#1c5cf6cbccc32e6f639380bd4f991fab9ba9d226" 1087 | dependencies: 1088 | core-js "^2.0.0" 1089 | 1090 | esquery@^1.0.1: 1091 | version "1.0.1" 1092 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708" 1093 | dependencies: 1094 | estraverse "^4.0.0" 1095 | 1096 | esrecurse@^4.1.0: 1097 | version "4.2.0" 1098 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" 1099 | dependencies: 1100 | estraverse "^4.1.0" 1101 | object-assign "^4.0.1" 1102 | 1103 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1: 1104 | version "4.2.0" 1105 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1106 | 1107 | esutils@^2.0.2: 1108 | version "2.0.2" 1109 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1110 | 1111 | eventemitter2@~0.4.13: 1112 | version "0.4.14" 1113 | resolved "https://registry.yarnpkg.com/eventemitter2/-/eventemitter2-0.4.14.tgz#8f61b75cde012b2e9eb284d4545583b5643b61ab" 1114 | 1115 | events-to-array@^1.0.1: 1116 | version "1.1.2" 1117 | resolved "https://registry.yarnpkg.com/events-to-array/-/events-to-array-1.1.2.tgz#2d41f563e1fe400ed4962fe1a4d5c6a7539df7f6" 1118 | 1119 | execa@^0.7.0: 1120 | version "0.7.0" 1121 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1122 | dependencies: 1123 | cross-spawn "^5.0.1" 1124 | get-stream "^3.0.0" 1125 | is-stream "^1.1.0" 1126 | npm-run-path "^2.0.0" 1127 | p-finally "^1.0.0" 1128 | signal-exit "^3.0.0" 1129 | strip-eof "^1.0.0" 1130 | 1131 | execa@^0.9.0: 1132 | version "0.9.0" 1133 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.9.0.tgz#adb7ce62cf985071f60580deb4a88b9e34712d01" 1134 | dependencies: 1135 | cross-spawn "^5.0.1" 1136 | get-stream "^3.0.0" 1137 | is-stream "^1.1.0" 1138 | npm-run-path "^2.0.0" 1139 | p-finally "^1.0.0" 1140 | signal-exit "^3.0.0" 1141 | strip-eof "^1.0.0" 1142 | 1143 | exit@~0.1.1: 1144 | version "0.1.2" 1145 | resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" 1146 | 1147 | expand-brackets@^2.1.4: 1148 | version "2.1.4" 1149 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 1150 | dependencies: 1151 | debug "^2.3.3" 1152 | define-property "^0.2.5" 1153 | extend-shallow "^2.0.1" 1154 | posix-character-classes "^0.1.0" 1155 | regex-not "^1.0.0" 1156 | snapdragon "^0.8.1" 1157 | to-regex "^3.0.1" 1158 | 1159 | extend-shallow@^2.0.1: 1160 | version "2.0.1" 1161 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 1162 | dependencies: 1163 | is-extendable "^0.1.0" 1164 | 1165 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 1166 | version "3.0.2" 1167 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 1168 | dependencies: 1169 | assign-symbols "^1.0.0" 1170 | is-extendable "^1.0.1" 1171 | 1172 | extend@~3.0.2: 1173 | version "3.0.2" 1174 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 1175 | 1176 | external-editor@^3.0.0: 1177 | version "3.0.3" 1178 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.0.3.tgz#5866db29a97826dbe4bf3afd24070ead9ea43a27" 1179 | dependencies: 1180 | chardet "^0.7.0" 1181 | iconv-lite "^0.4.24" 1182 | tmp "^0.0.33" 1183 | 1184 | extglob@^2.0.4: 1185 | version "2.0.4" 1186 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 1187 | dependencies: 1188 | array-unique "^0.3.2" 1189 | define-property "^1.0.0" 1190 | expand-brackets "^2.1.4" 1191 | extend-shallow "^2.0.1" 1192 | fragment-cache "^0.2.1" 1193 | regex-not "^1.0.0" 1194 | snapdragon "^0.8.1" 1195 | to-regex "^3.0.1" 1196 | 1197 | extsprintf@1.3.0: 1198 | version "1.3.0" 1199 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1200 | 1201 | extsprintf@^1.2.0: 1202 | version "1.4.0" 1203 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 1204 | 1205 | fast-deep-equal@^2.0.1: 1206 | version "2.0.1" 1207 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" 1208 | 1209 | fast-deep-equal@^3.1.1: 1210 | version "3.1.1" 1211 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz#545145077c501491e33b15ec408c294376e94ae4" 1212 | 1213 | fast-diff@^1.1.2: 1214 | version "1.2.0" 1215 | resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03" 1216 | 1217 | fast-glob@^2.2.6: 1218 | version "2.2.6" 1219 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-2.2.6.tgz#a5d5b697ec8deda468d85a74035290a025a95295" 1220 | dependencies: 1221 | "@mrmlnc/readdir-enhanced" "^2.2.1" 1222 | "@nodelib/fs.stat" "^1.1.2" 1223 | glob-parent "^3.1.0" 1224 | is-glob "^4.0.0" 1225 | merge2 "^1.2.3" 1226 | micromatch "^3.1.10" 1227 | 1228 | fast-json-stable-stringify@^2.0.0: 1229 | version "2.0.0" 1230 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1231 | 1232 | fast-levenshtein@~2.0.4: 1233 | version "2.0.6" 1234 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1235 | 1236 | figures@^2.0.0: 1237 | version "2.0.0" 1238 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1239 | dependencies: 1240 | escape-string-regexp "^1.0.5" 1241 | 1242 | file-entry-cache@^2.0.0: 1243 | version "2.0.0" 1244 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1245 | dependencies: 1246 | flat-cache "^1.2.1" 1247 | object-assign "^4.0.1" 1248 | 1249 | fill-range@^4.0.0: 1250 | version "4.0.0" 1251 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 1252 | dependencies: 1253 | extend-shallow "^2.0.1" 1254 | is-number "^3.0.0" 1255 | repeat-string "^1.6.1" 1256 | to-regex-range "^2.1.0" 1257 | 1258 | find-cache-dir@^2.0.0: 1259 | version "2.0.0" 1260 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.0.0.tgz#4c1faed59f45184530fb9d7fa123a4d04a98472d" 1261 | dependencies: 1262 | commondir "^1.0.1" 1263 | make-dir "^1.0.0" 1264 | pkg-dir "^3.0.0" 1265 | 1266 | find-cache-dir@^2.1.0: 1267 | version "2.1.0" 1268 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7" 1269 | dependencies: 1270 | commondir "^1.0.1" 1271 | make-dir "^2.0.0" 1272 | pkg-dir "^3.0.0" 1273 | 1274 | find-up@^1.0.0: 1275 | version "1.1.2" 1276 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1277 | dependencies: 1278 | path-exists "^2.0.0" 1279 | pinkie-promise "^2.0.0" 1280 | 1281 | find-up@^2.0.0, find-up@^2.1.0: 1282 | version "2.1.0" 1283 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1284 | dependencies: 1285 | locate-path "^2.0.0" 1286 | 1287 | find-up@^3.0.0: 1288 | version "3.0.0" 1289 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" 1290 | dependencies: 1291 | locate-path "^3.0.0" 1292 | 1293 | findup-sync@~0.3.0: 1294 | version "0.3.0" 1295 | resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-0.3.0.tgz#37930aa5d816b777c03445e1966cc6790a4c0b16" 1296 | dependencies: 1297 | glob "~5.0.0" 1298 | 1299 | flat-cache@^1.2.1: 1300 | version "1.3.0" 1301 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481" 1302 | dependencies: 1303 | circular-json "^0.3.1" 1304 | del "^2.0.2" 1305 | graceful-fs "^4.1.2" 1306 | write "^0.2.1" 1307 | 1308 | for-in@^1.0.2: 1309 | version "1.0.2" 1310 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1311 | 1312 | foreground-child@^1.3.3, foreground-child@^1.5.6: 1313 | version "1.5.6" 1314 | resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-1.5.6.tgz#4fd71ad2dfde96789b980a5c0a295937cb2f5ce9" 1315 | dependencies: 1316 | cross-spawn "^4" 1317 | signal-exit "^3.0.0" 1318 | 1319 | forever-agent@~0.6.1: 1320 | version "0.6.1" 1321 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1322 | 1323 | form-data@~2.3.2: 1324 | version "2.3.3" 1325 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" 1326 | dependencies: 1327 | asynckit "^0.4.0" 1328 | combined-stream "^1.0.6" 1329 | mime-types "^2.1.12" 1330 | 1331 | fragment-cache@^0.2.1: 1332 | version "0.2.1" 1333 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 1334 | dependencies: 1335 | map-cache "^0.2.2" 1336 | 1337 | fs-exists-cached@^1.0.0: 1338 | version "1.0.0" 1339 | resolved "https://registry.yarnpkg.com/fs-exists-cached/-/fs-exists-cached-1.0.0.tgz#cf25554ca050dc49ae6656b41de42258989dcbce" 1340 | 1341 | fs.realpath@^1.0.0: 1342 | version "1.0.0" 1343 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1344 | 1345 | function-bind@^1.0.2: 1346 | version "1.1.1" 1347 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1348 | 1349 | function-loop@^1.0.1: 1350 | version "1.0.1" 1351 | resolved "https://registry.yarnpkg.com/function-loop/-/function-loop-1.0.1.tgz#8076bb305e8e6a3cceee2920765f330d190f340c" 1352 | 1353 | functional-red-black-tree@^1.0.1: 1354 | version "1.0.1" 1355 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 1356 | 1357 | get-caller-file@^1.0.1: 1358 | version "1.0.2" 1359 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1360 | 1361 | get-caller-file@^2.0.1: 1362 | version "2.0.5" 1363 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 1364 | 1365 | get-set-props@^0.1.0: 1366 | version "0.1.0" 1367 | resolved "https://registry.yarnpkg.com/get-set-props/-/get-set-props-0.1.0.tgz#998475c178445686d0b32246da5df8dbcfbe8ea3" 1368 | 1369 | get-stdin@^4.0.1: 1370 | version "4.0.1" 1371 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 1372 | 1373 | get-stdin@^6.0.0: 1374 | version "6.0.0" 1375 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b" 1376 | 1377 | get-stream@^3.0.0: 1378 | version "3.0.0" 1379 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1380 | 1381 | get-value@^2.0.3, get-value@^2.0.6: 1382 | version "2.0.6" 1383 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 1384 | 1385 | getobject@~0.1.0: 1386 | version "0.1.0" 1387 | resolved "https://registry.yarnpkg.com/getobject/-/getobject-0.1.0.tgz#047a449789fa160d018f5486ed91320b6ec7885c" 1388 | 1389 | getpass@^0.1.1: 1390 | version "0.1.7" 1391 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1392 | dependencies: 1393 | assert-plus "^1.0.0" 1394 | 1395 | glob-parent@^3.1.0: 1396 | version "3.1.0" 1397 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" 1398 | dependencies: 1399 | is-glob "^3.1.0" 1400 | path-dirname "^1.0.0" 1401 | 1402 | glob-to-regexp@^0.3.0: 1403 | version "0.3.0" 1404 | resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab" 1405 | 1406 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.1.2, glob@^7.1.3: 1407 | version "7.1.6" 1408 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 1409 | dependencies: 1410 | fs.realpath "^1.0.0" 1411 | inflight "^1.0.4" 1412 | inherits "2" 1413 | minimatch "^3.0.4" 1414 | once "^1.3.0" 1415 | path-is-absolute "^1.0.0" 1416 | 1417 | glob@~5.0.0: 1418 | version "5.0.15" 1419 | resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" 1420 | dependencies: 1421 | inflight "^1.0.4" 1422 | inherits "2" 1423 | minimatch "2 || 3" 1424 | once "^1.3.0" 1425 | path-is-absolute "^1.0.0" 1426 | 1427 | glob@~7.0.0: 1428 | version "7.0.6" 1429 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.0.6.tgz#211bafaf49e525b8cd93260d14ab136152b3f57a" 1430 | dependencies: 1431 | fs.realpath "^1.0.0" 1432 | inflight "^1.0.4" 1433 | inherits "2" 1434 | minimatch "^3.0.2" 1435 | once "^1.3.0" 1436 | path-is-absolute "^1.0.0" 1437 | 1438 | global-dirs@^0.1.0: 1439 | version "0.1.1" 1440 | resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445" 1441 | dependencies: 1442 | ini "^1.3.4" 1443 | 1444 | globals@^11.1.0: 1445 | version "11.12.0" 1446 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 1447 | 1448 | globals@^11.7.0: 1449 | version "11.7.0" 1450 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.7.0.tgz#a583faa43055b1aca771914bf68258e2fc125673" 1451 | 1452 | globby@^5.0.0: 1453 | version "5.0.0" 1454 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1455 | dependencies: 1456 | array-union "^1.0.1" 1457 | arrify "^1.0.0" 1458 | glob "^7.0.3" 1459 | object-assign "^4.0.1" 1460 | pify "^2.0.0" 1461 | pinkie-promise "^2.0.0" 1462 | 1463 | globby@^9.0.0: 1464 | version "9.0.0" 1465 | resolved "https://registry.yarnpkg.com/globby/-/globby-9.0.0.tgz#3800df736dc711266df39b4ce33fe0d481f94c23" 1466 | dependencies: 1467 | array-union "^1.0.2" 1468 | dir-glob "^2.2.1" 1469 | fast-glob "^2.2.6" 1470 | glob "^7.1.3" 1471 | ignore "^4.0.3" 1472 | pify "^4.0.1" 1473 | slash "^2.0.0" 1474 | 1475 | got@^6.7.1: 1476 | version "6.7.1" 1477 | resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" 1478 | dependencies: 1479 | create-error-class "^3.0.0" 1480 | duplexer3 "^0.1.4" 1481 | get-stream "^3.0.0" 1482 | is-redirect "^1.0.0" 1483 | is-retry-allowed "^1.0.0" 1484 | is-stream "^1.0.0" 1485 | lowercase-keys "^1.0.0" 1486 | safe-buffer "^5.0.1" 1487 | timed-out "^4.0.0" 1488 | unzip-response "^2.0.1" 1489 | url-parse-lax "^1.0.0" 1490 | 1491 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 1492 | version "4.1.11" 1493 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1494 | 1495 | graceful-fs@^4.1.15: 1496 | version "4.2.3" 1497 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423" 1498 | 1499 | grunt-cli@~1.2.0: 1500 | version "1.2.0" 1501 | resolved "https://registry.yarnpkg.com/grunt-cli/-/grunt-cli-1.2.0.tgz#562b119ebb069ddb464ace2845501be97b35b6a8" 1502 | dependencies: 1503 | findup-sync "~0.3.0" 1504 | grunt-known-options "~1.1.0" 1505 | nopt "~3.0.6" 1506 | resolve "~1.1.0" 1507 | 1508 | grunt-contrib-clean@^2.0.0: 1509 | version "2.0.0" 1510 | resolved "https://registry.yarnpkg.com/grunt-contrib-clean/-/grunt-contrib-clean-2.0.0.tgz#3be7ca480da4b740aa5e9d863e2f7e8b24f8a68b" 1511 | dependencies: 1512 | async "^2.6.1" 1513 | rimraf "^2.6.2" 1514 | 1515 | grunt-contrib-nodeunit@^2.0.0: 1516 | version "2.1.0" 1517 | resolved "https://registry.yarnpkg.com/grunt-contrib-nodeunit/-/grunt-contrib-nodeunit-2.1.0.tgz#457c71c87fe148900b3f8bd95d3eb6f07dfb0399" 1518 | dependencies: 1519 | nodeunit-x "^0.13.0" 1520 | 1521 | grunt-known-options@~1.1.0: 1522 | version "1.1.0" 1523 | resolved "https://registry.yarnpkg.com/grunt-known-options/-/grunt-known-options-1.1.0.tgz#a4274eeb32fa765da5a7a3b1712617ce3b144149" 1524 | 1525 | grunt-legacy-log-utils@~2.0.0: 1526 | version "2.0.1" 1527 | resolved "https://registry.yarnpkg.com/grunt-legacy-log-utils/-/grunt-legacy-log-utils-2.0.1.tgz#d2f442c7c0150065d9004b08fd7410d37519194e" 1528 | dependencies: 1529 | chalk "~2.4.1" 1530 | lodash "~4.17.10" 1531 | 1532 | grunt-legacy-log@~2.0.0: 1533 | version "2.0.0" 1534 | resolved "https://registry.yarnpkg.com/grunt-legacy-log/-/grunt-legacy-log-2.0.0.tgz#c8cd2c6c81a4465b9bbf2d874d963fef7a59ffb9" 1535 | dependencies: 1536 | colors "~1.1.2" 1537 | grunt-legacy-log-utils "~2.0.0" 1538 | hooker "~0.2.3" 1539 | lodash "~4.17.5" 1540 | 1541 | grunt-legacy-util@~1.1.1: 1542 | version "1.1.1" 1543 | resolved "https://registry.yarnpkg.com/grunt-legacy-util/-/grunt-legacy-util-1.1.1.tgz#e10624e7c86034e5b870c8a8616743f0a0845e42" 1544 | dependencies: 1545 | async "~1.5.2" 1546 | exit "~0.1.1" 1547 | getobject "~0.1.0" 1548 | hooker "~0.2.3" 1549 | lodash "~4.17.10" 1550 | underscore.string "~3.3.4" 1551 | which "~1.3.0" 1552 | 1553 | grunt@^1.0.1: 1554 | version "1.0.4" 1555 | resolved "https://registry.yarnpkg.com/grunt/-/grunt-1.0.4.tgz#c799883945a53a3d07622e0737c8f70bfe19eb38" 1556 | dependencies: 1557 | coffeescript "~1.10.0" 1558 | dateformat "~1.0.12" 1559 | eventemitter2 "~0.4.13" 1560 | exit "~0.1.1" 1561 | findup-sync "~0.3.0" 1562 | glob "~7.0.0" 1563 | grunt-cli "~1.2.0" 1564 | grunt-known-options "~1.1.0" 1565 | grunt-legacy-log "~2.0.0" 1566 | grunt-legacy-util "~1.1.1" 1567 | iconv-lite "~0.4.13" 1568 | js-yaml "~3.13.0" 1569 | minimatch "~3.0.2" 1570 | mkdirp "~0.5.1" 1571 | nopt "~3.0.6" 1572 | path-is-absolute "~1.0.0" 1573 | rimraf "~2.6.2" 1574 | 1575 | har-schema@^2.0.0: 1576 | version "2.0.0" 1577 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 1578 | 1579 | har-validator@~5.1.3: 1580 | version "5.1.3" 1581 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080" 1582 | dependencies: 1583 | ajv "^6.5.5" 1584 | har-schema "^2.0.0" 1585 | 1586 | has-flag@^2.0.0: 1587 | version "2.0.0" 1588 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1589 | 1590 | has-flag@^3.0.0: 1591 | version "3.0.0" 1592 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1593 | 1594 | has-value@^0.3.1: 1595 | version "0.3.1" 1596 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 1597 | dependencies: 1598 | get-value "^2.0.3" 1599 | has-values "^0.1.4" 1600 | isobject "^2.0.0" 1601 | 1602 | has-value@^1.0.0: 1603 | version "1.0.0" 1604 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 1605 | dependencies: 1606 | get-value "^2.0.6" 1607 | has-values "^1.0.0" 1608 | isobject "^3.0.0" 1609 | 1610 | has-values@^0.1.4: 1611 | version "0.1.4" 1612 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 1613 | 1614 | has-values@^1.0.0: 1615 | version "1.0.0" 1616 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 1617 | dependencies: 1618 | is-number "^3.0.0" 1619 | kind-of "^4.0.0" 1620 | 1621 | has-yarn@^1.0.0: 1622 | version "1.0.0" 1623 | resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-1.0.0.tgz#89e25db604b725c8f5976fff0addc921b828a5a7" 1624 | 1625 | has@^1.0.1: 1626 | version "1.0.1" 1627 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1628 | dependencies: 1629 | function-bind "^1.0.2" 1630 | 1631 | hasha@^3.0.0: 1632 | version "3.0.0" 1633 | resolved "https://registry.yarnpkg.com/hasha/-/hasha-3.0.0.tgz#52a32fab8569d41ca69a61ff1a214f8eb7c8bd39" 1634 | dependencies: 1635 | is-stream "^1.0.1" 1636 | 1637 | hooker@~0.2.3: 1638 | version "0.2.3" 1639 | resolved "https://registry.yarnpkg.com/hooker/-/hooker-0.2.3.tgz#b834f723cc4a242aa65963459df6d984c5d3d959" 1640 | 1641 | hosted-git-info@^2.1.4: 1642 | version "2.5.0" 1643 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 1644 | 1645 | html-escaper@^2.0.0: 1646 | version "2.0.0" 1647 | resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.0.tgz#71e87f931de3fe09e56661ab9a29aadec707b491" 1648 | 1649 | http-signature@~1.2.0: 1650 | version "1.2.0" 1651 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 1652 | dependencies: 1653 | assert-plus "^1.0.0" 1654 | jsprim "^1.2.2" 1655 | sshpk "^1.7.0" 1656 | 1657 | iconv-lite@^0.4.24, iconv-lite@~0.4.13: 1658 | version "0.4.24" 1659 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 1660 | dependencies: 1661 | safer-buffer ">= 2.1.2 < 3" 1662 | 1663 | ignore@^3.3.8: 1664 | version "3.3.10" 1665 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043" 1666 | 1667 | ignore@^4.0.3, ignore@^4.0.6: 1668 | version "4.0.6" 1669 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" 1670 | 1671 | ignore@^5.0.2: 1672 | version "5.0.4" 1673 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.0.4.tgz#33168af4a21e99b00c5d41cbadb6a6cb49903a45" 1674 | 1675 | import-fresh@^3.0.0: 1676 | version "3.0.0" 1677 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.0.0.tgz#a3d897f420cab0e671236897f75bc14b4885c390" 1678 | dependencies: 1679 | parent-module "^1.0.0" 1680 | resolve-from "^4.0.0" 1681 | 1682 | import-lazy@^2.1.0: 1683 | version "2.1.0" 1684 | resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" 1685 | 1686 | import-modules@^1.1.0: 1687 | version "1.1.0" 1688 | resolved "https://registry.yarnpkg.com/import-modules/-/import-modules-1.1.0.tgz#748db79c5cc42bb9701efab424f894e72600e9dc" 1689 | 1690 | imurmurhash@^0.1.4: 1691 | version "0.1.4" 1692 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1693 | 1694 | indent-string@^2.1.0: 1695 | version "2.1.0" 1696 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 1697 | dependencies: 1698 | repeating "^2.0.0" 1699 | 1700 | indent-string@^3.0.0: 1701 | version "3.2.0" 1702 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" 1703 | 1704 | inflight@^1.0.4: 1705 | version "1.0.6" 1706 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1707 | dependencies: 1708 | once "^1.3.0" 1709 | wrappy "1" 1710 | 1711 | inherits@2, inherits@~2.0.3: 1712 | version "2.0.3" 1713 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1714 | 1715 | ini@^1.3.4, ini@~1.3.0: 1716 | version "1.3.7" 1717 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.7.tgz#a09363e1911972ea16d7a8851005d84cf09a9a84" 1718 | 1719 | inquirer@^6.1.0: 1720 | version "6.2.0" 1721 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.2.0.tgz#51adcd776f661369dc1e894859c2560a224abdd8" 1722 | dependencies: 1723 | ansi-escapes "^3.0.0" 1724 | chalk "^2.0.0" 1725 | cli-cursor "^2.1.0" 1726 | cli-width "^2.0.0" 1727 | external-editor "^3.0.0" 1728 | figures "^2.0.0" 1729 | lodash "^4.17.10" 1730 | mute-stream "0.0.7" 1731 | run-async "^2.2.0" 1732 | rxjs "^6.1.0" 1733 | string-width "^2.1.0" 1734 | strip-ansi "^4.0.0" 1735 | through "^2.3.6" 1736 | 1737 | invert-kv@^1.0.0: 1738 | version "1.0.0" 1739 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1740 | 1741 | irregular-plurals@^2.0.0: 1742 | version "2.0.0" 1743 | resolved "https://registry.yarnpkg.com/irregular-plurals/-/irregular-plurals-2.0.0.tgz#39d40f05b00f656d0b7fa471230dd3b714af2872" 1744 | 1745 | is-accessor-descriptor@^0.1.6: 1746 | version "0.1.6" 1747 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 1748 | dependencies: 1749 | kind-of "^3.0.2" 1750 | 1751 | is-accessor-descriptor@^1.0.0: 1752 | version "1.0.0" 1753 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 1754 | dependencies: 1755 | kind-of "^6.0.0" 1756 | 1757 | is-arrayish@^0.2.1: 1758 | version "0.2.1" 1759 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1760 | 1761 | is-buffer@^1.1.5: 1762 | version "1.1.6" 1763 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1764 | 1765 | is-builtin-module@^1.0.0: 1766 | version "1.0.0" 1767 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1768 | dependencies: 1769 | builtin-modules "^1.0.0" 1770 | 1771 | is-ci@^1.0.10: 1772 | version "1.1.0" 1773 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.1.0.tgz#247e4162e7860cebbdaf30b774d6b0ac7dcfe7a5" 1774 | dependencies: 1775 | ci-info "^1.0.0" 1776 | 1777 | is-data-descriptor@^0.1.4: 1778 | version "0.1.4" 1779 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 1780 | dependencies: 1781 | kind-of "^3.0.2" 1782 | 1783 | is-data-descriptor@^1.0.0: 1784 | version "1.0.0" 1785 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 1786 | dependencies: 1787 | kind-of "^6.0.0" 1788 | 1789 | is-descriptor@^0.1.0: 1790 | version "0.1.6" 1791 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 1792 | dependencies: 1793 | is-accessor-descriptor "^0.1.6" 1794 | is-data-descriptor "^0.1.4" 1795 | kind-of "^5.0.0" 1796 | 1797 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 1798 | version "1.0.2" 1799 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 1800 | dependencies: 1801 | is-accessor-descriptor "^1.0.0" 1802 | is-data-descriptor "^1.0.0" 1803 | kind-of "^6.0.2" 1804 | 1805 | is-error@^2.2.0: 1806 | version "2.2.1" 1807 | resolved "https://registry.yarnpkg.com/is-error/-/is-error-2.2.1.tgz#684a96d84076577c98f4cdb40c6d26a5123bf19c" 1808 | 1809 | is-extendable@^0.1.0, is-extendable@^0.1.1: 1810 | version "0.1.1" 1811 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1812 | 1813 | is-extendable@^1.0.1: 1814 | version "1.0.1" 1815 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 1816 | dependencies: 1817 | is-plain-object "^2.0.4" 1818 | 1819 | is-extglob@^2.1.0, is-extglob@^2.1.1: 1820 | version "2.1.1" 1821 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1822 | 1823 | is-finite@^1.0.0: 1824 | version "1.0.2" 1825 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1826 | dependencies: 1827 | number-is-nan "^1.0.0" 1828 | 1829 | is-fullwidth-code-point@^1.0.0: 1830 | version "1.0.0" 1831 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1832 | dependencies: 1833 | number-is-nan "^1.0.0" 1834 | 1835 | is-fullwidth-code-point@^2.0.0: 1836 | version "2.0.0" 1837 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1838 | 1839 | is-get-set-prop@^1.0.0: 1840 | version "1.0.0" 1841 | resolved "https://registry.yarnpkg.com/is-get-set-prop/-/is-get-set-prop-1.0.0.tgz#2731877e4d78a6a69edcce6bb9d68b0779e76312" 1842 | dependencies: 1843 | get-set-props "^0.1.0" 1844 | lowercase-keys "^1.0.0" 1845 | 1846 | is-glob@^3.1.0: 1847 | version "3.1.0" 1848 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 1849 | dependencies: 1850 | is-extglob "^2.1.0" 1851 | 1852 | is-glob@^4.0.0: 1853 | version "4.0.0" 1854 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.0.tgz#9521c76845cc2610a85203ddf080a958c2ffabc0" 1855 | dependencies: 1856 | is-extglob "^2.1.1" 1857 | 1858 | is-installed-globally@^0.1.0: 1859 | version "0.1.0" 1860 | resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.1.0.tgz#0dfd98f5a9111716dd535dda6492f67bf3d25a80" 1861 | dependencies: 1862 | global-dirs "^0.1.0" 1863 | is-path-inside "^1.0.0" 1864 | 1865 | is-js-type@^2.0.0: 1866 | version "2.0.0" 1867 | resolved "https://registry.yarnpkg.com/is-js-type/-/is-js-type-2.0.0.tgz#73617006d659b4eb4729bba747d28782df0f7e22" 1868 | dependencies: 1869 | js-types "^1.0.0" 1870 | 1871 | is-npm@^1.0.0: 1872 | version "1.0.0" 1873 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 1874 | 1875 | is-number@^3.0.0: 1876 | version "3.0.0" 1877 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1878 | dependencies: 1879 | kind-of "^3.0.2" 1880 | 1881 | is-number@^4.0.0: 1882 | version "4.0.0" 1883 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" 1884 | 1885 | is-obj-prop@^1.0.0: 1886 | version "1.0.0" 1887 | resolved "https://registry.yarnpkg.com/is-obj-prop/-/is-obj-prop-1.0.0.tgz#b34de79c450b8d7c73ab2cdf67dc875adb85f80e" 1888 | dependencies: 1889 | lowercase-keys "^1.0.0" 1890 | obj-props "^1.0.0" 1891 | 1892 | is-obj@^1.0.0: 1893 | version "1.0.1" 1894 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 1895 | 1896 | is-odd@^2.0.0: 1897 | version "2.0.0" 1898 | resolved "https://registry.yarnpkg.com/is-odd/-/is-odd-2.0.0.tgz#7646624671fd7ea558ccd9a2795182f2958f1b24" 1899 | dependencies: 1900 | is-number "^4.0.0" 1901 | 1902 | is-path-cwd@^1.0.0: 1903 | version "1.0.0" 1904 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1905 | 1906 | is-path-in-cwd@^1.0.0: 1907 | version "1.0.0" 1908 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1909 | dependencies: 1910 | is-path-inside "^1.0.0" 1911 | 1912 | is-path-inside@^1.0.0: 1913 | version "1.0.1" 1914 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" 1915 | dependencies: 1916 | path-is-inside "^1.0.1" 1917 | 1918 | is-plain-obj@^1.0.0, is-plain-obj@^1.1.0: 1919 | version "1.1.0" 1920 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 1921 | 1922 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: 1923 | version "2.0.4" 1924 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 1925 | dependencies: 1926 | isobject "^3.0.1" 1927 | 1928 | is-promise@^2.1.0: 1929 | version "2.1.0" 1930 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1931 | 1932 | is-proto-prop@^2.0.0: 1933 | version "2.0.0" 1934 | resolved "https://registry.yarnpkg.com/is-proto-prop/-/is-proto-prop-2.0.0.tgz#99ab2863462e44090fd083efd1929058f9d935e1" 1935 | dependencies: 1936 | lowercase-keys "^1.0.0" 1937 | proto-props "^2.0.0" 1938 | 1939 | is-redirect@^1.0.0: 1940 | version "1.0.0" 1941 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 1942 | 1943 | is-retry-allowed@^1.0.0: 1944 | version "1.1.0" 1945 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" 1946 | 1947 | is-stream@^1.0.0, is-stream@^1.0.1, is-stream@^1.1.0: 1948 | version "1.1.0" 1949 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1950 | 1951 | is-typedarray@~1.0.0: 1952 | version "1.0.0" 1953 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1954 | 1955 | is-utf8@^0.2.0: 1956 | version "0.2.1" 1957 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1958 | 1959 | is-windows@^1.0.2: 1960 | version "1.0.2" 1961 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 1962 | 1963 | is-wsl@^1.1.0: 1964 | version "1.1.0" 1965 | resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" 1966 | 1967 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1968 | version "1.0.0" 1969 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1970 | 1971 | isexe@^2.0.0: 1972 | version "2.0.0" 1973 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1974 | 1975 | isobject@^2.0.0: 1976 | version "2.1.0" 1977 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1978 | dependencies: 1979 | isarray "1.0.0" 1980 | 1981 | isobject@^3.0.0, isobject@^3.0.1: 1982 | version "3.0.1" 1983 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 1984 | 1985 | isstream@~0.1.2: 1986 | version "0.1.2" 1987 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1988 | 1989 | istanbul-lib-coverage@^2.0.5: 1990 | version "2.0.5" 1991 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz#675f0ab69503fad4b1d849f736baaca803344f49" 1992 | 1993 | istanbul-lib-hook@^2.0.7: 1994 | version "2.0.7" 1995 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-2.0.7.tgz#c95695f383d4f8f60df1f04252a9550e15b5b133" 1996 | dependencies: 1997 | append-transform "^1.0.0" 1998 | 1999 | istanbul-lib-instrument@^3.3.0: 2000 | version "3.3.0" 2001 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-3.3.0.tgz#a5f63d91f0bbc0c3e479ef4c5de027335ec6d630" 2002 | dependencies: 2003 | "@babel/generator" "^7.4.0" 2004 | "@babel/parser" "^7.4.3" 2005 | "@babel/template" "^7.4.0" 2006 | "@babel/traverse" "^7.4.3" 2007 | "@babel/types" "^7.4.0" 2008 | istanbul-lib-coverage "^2.0.5" 2009 | semver "^6.0.0" 2010 | 2011 | istanbul-lib-report@^2.0.8: 2012 | version "2.0.8" 2013 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-2.0.8.tgz#5a8113cd746d43c4889eba36ab10e7d50c9b4f33" 2014 | dependencies: 2015 | istanbul-lib-coverage "^2.0.5" 2016 | make-dir "^2.1.0" 2017 | supports-color "^6.1.0" 2018 | 2019 | istanbul-lib-source-maps@^3.0.6: 2020 | version "3.0.6" 2021 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.6.tgz#284997c48211752ec486253da97e3879defba8c8" 2022 | dependencies: 2023 | debug "^4.1.1" 2024 | istanbul-lib-coverage "^2.0.5" 2025 | make-dir "^2.1.0" 2026 | rimraf "^2.6.3" 2027 | source-map "^0.6.1" 2028 | 2029 | istanbul-reports@^2.2.4: 2030 | version "2.2.7" 2031 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-2.2.7.tgz#5d939f6237d7b48393cc0959eab40cd4fd056931" 2032 | dependencies: 2033 | html-escaper "^2.0.0" 2034 | 2035 | js-tokens@^4.0.0: 2036 | version "4.0.0" 2037 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 2038 | 2039 | js-types@^1.0.0: 2040 | version "1.0.0" 2041 | resolved "https://registry.yarnpkg.com/js-types/-/js-types-1.0.0.tgz#d242e6494ed572ad3c92809fc8bed7f7687cbf03" 2042 | 2043 | js-yaml@^3.12.0, js-yaml@^3.13.1, js-yaml@^3.2.7, js-yaml@^3.3.1, js-yaml@~3.13.0: 2044 | version "3.13.1" 2045 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" 2046 | dependencies: 2047 | argparse "^1.0.7" 2048 | esprima "^4.0.0" 2049 | 2050 | jsbn@~0.1.0: 2051 | version "0.1.1" 2052 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2053 | 2054 | jsesc@^2.5.1: 2055 | version "2.5.2" 2056 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 2057 | 2058 | json-parse-better-errors@^1.0.1: 2059 | version "1.0.2" 2060 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" 2061 | 2062 | json-schema-traverse@^0.4.1: 2063 | version "0.4.1" 2064 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 2065 | 2066 | json-schema@0.2.3: 2067 | version "0.2.3" 2068 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2069 | 2070 | json-stable-stringify-without-jsonify@^1.0.1: 2071 | version "1.0.1" 2072 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 2073 | 2074 | json-stringify-safe@~5.0.1: 2075 | version "5.0.1" 2076 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2077 | 2078 | jsprim@^1.2.2: 2079 | version "1.4.1" 2080 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 2081 | dependencies: 2082 | assert-plus "1.0.0" 2083 | extsprintf "1.3.0" 2084 | json-schema "0.2.3" 2085 | verror "1.10.0" 2086 | 2087 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 2088 | version "3.2.2" 2089 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2090 | dependencies: 2091 | is-buffer "^1.1.5" 2092 | 2093 | kind-of@^4.0.0: 2094 | version "4.0.0" 2095 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2096 | dependencies: 2097 | is-buffer "^1.1.5" 2098 | 2099 | kind-of@^5.0.0: 2100 | version "5.1.0" 2101 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 2102 | 2103 | kind-of@^6.0.0, kind-of@^6.0.2: 2104 | version "6.0.2" 2105 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 2106 | 2107 | latest-version@^3.0.0: 2108 | version "3.1.0" 2109 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15" 2110 | dependencies: 2111 | package-json "^4.0.0" 2112 | 2113 | lcid@^1.0.0: 2114 | version "1.0.0" 2115 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2116 | dependencies: 2117 | invert-kv "^1.0.0" 2118 | 2119 | lcov-parse@^1.0.0: 2120 | version "1.0.0" 2121 | resolved "https://registry.yarnpkg.com/lcov-parse/-/lcov-parse-1.0.0.tgz#eb0d46b54111ebc561acb4c408ef9363bdc8f7e0" 2122 | 2123 | levn@^0.3.0, levn@~0.3.0: 2124 | version "0.3.0" 2125 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2126 | dependencies: 2127 | prelude-ls "~1.1.2" 2128 | type-check "~0.3.2" 2129 | 2130 | line-column-path@^1.0.0: 2131 | version "1.0.0" 2132 | resolved "https://registry.yarnpkg.com/line-column-path/-/line-column-path-1.0.0.tgz#383b83fca8488faa7a59940ebf28b82058c16c55" 2133 | 2134 | load-json-file@^1.0.0: 2135 | version "1.1.0" 2136 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2137 | dependencies: 2138 | graceful-fs "^4.1.2" 2139 | parse-json "^2.2.0" 2140 | pify "^2.0.0" 2141 | pinkie-promise "^2.0.0" 2142 | strip-bom "^2.0.0" 2143 | 2144 | load-json-file@^2.0.0: 2145 | version "2.0.0" 2146 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2147 | dependencies: 2148 | graceful-fs "^4.1.2" 2149 | parse-json "^2.2.0" 2150 | pify "^2.0.0" 2151 | strip-bom "^3.0.0" 2152 | 2153 | load-json-file@^4.0.0: 2154 | version "4.0.0" 2155 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" 2156 | dependencies: 2157 | graceful-fs "^4.1.2" 2158 | parse-json "^4.0.0" 2159 | pify "^3.0.0" 2160 | strip-bom "^3.0.0" 2161 | 2162 | locate-path@^2.0.0: 2163 | version "2.0.0" 2164 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2165 | dependencies: 2166 | p-locate "^2.0.0" 2167 | path-exists "^3.0.0" 2168 | 2169 | locate-path@^3.0.0: 2170 | version "3.0.0" 2171 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" 2172 | dependencies: 2173 | p-locate "^3.0.0" 2174 | path-exists "^3.0.0" 2175 | 2176 | lodash.camelcase@^4.1.1: 2177 | version "4.3.0" 2178 | resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" 2179 | 2180 | lodash.flattendeep@^4.4.0: 2181 | version "4.4.0" 2182 | resolved "https://registry.yarnpkg.com/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz#fb030917f86a3134e5bc9bec0d69e0013ddfedb2" 2183 | 2184 | lodash.get@^4.4.2: 2185 | version "4.4.2" 2186 | resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99" 2187 | 2188 | lodash.isequal@^4.5.0: 2189 | version "4.5.0" 2190 | resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" 2191 | 2192 | lodash.kebabcase@^4.0.1: 2193 | version "4.1.1" 2194 | resolved "https://registry.yarnpkg.com/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz#8489b1cb0d29ff88195cceca448ff6d6cc295c36" 2195 | 2196 | lodash.mergewith@^4.6.1: 2197 | version "4.6.2" 2198 | resolved "https://registry.yarnpkg.com/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz#617121f89ac55f59047c7aec1ccd6654c6590f55" 2199 | 2200 | lodash.snakecase@^4.0.1: 2201 | version "4.1.1" 2202 | resolved "https://registry.yarnpkg.com/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz#39d714a35357147837aefd64b5dcbb16becd8f8d" 2203 | 2204 | lodash.upperfirst@^4.2.0: 2205 | version "4.3.1" 2206 | resolved "https://registry.yarnpkg.com/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz#1365edf431480481ef0d1c68957a5ed99d49f7ce" 2207 | 2208 | lodash.zip@^4.2.0: 2209 | version "4.2.0" 2210 | resolved "https://registry.yarnpkg.com/lodash.zip/-/lodash.zip-4.2.0.tgz#ec6662e4896408ed4ab6c542a3990b72cc080020" 2211 | 2212 | lodash@^4.13.1, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.4, lodash@^4.17.5, lodash@~4.17.10, lodash@~4.17.5: 2213 | version "4.17.21" 2214 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 2215 | 2216 | log-driver@^1.2.7: 2217 | version "1.2.7" 2218 | resolved "https://registry.yarnpkg.com/log-driver/-/log-driver-1.2.7.tgz#63b95021f0702fedfa2c9bb0a24e7797d71871d8" 2219 | 2220 | log-symbols@^2.0.0: 2221 | version "2.1.0" 2222 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.1.0.tgz#f35fa60e278832b538dc4dddcbb478a45d3e3be6" 2223 | dependencies: 2224 | chalk "^2.0.1" 2225 | 2226 | loud-rejection@^1.0.0: 2227 | version "1.6.0" 2228 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 2229 | dependencies: 2230 | currently-unhandled "^0.4.1" 2231 | signal-exit "^3.0.0" 2232 | 2233 | lowercase-keys@^1.0.0: 2234 | version "1.0.0" 2235 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 2236 | 2237 | lru-cache@^4.0.1: 2238 | version "4.1.1" 2239 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 2240 | dependencies: 2241 | pseudomap "^1.0.2" 2242 | yallist "^2.1.2" 2243 | 2244 | make-dir@^1.0.0: 2245 | version "1.1.0" 2246 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.1.0.tgz#19b4369fe48c116f53c2af95ad102c0e39e85d51" 2247 | dependencies: 2248 | pify "^3.0.0" 2249 | 2250 | make-dir@^2.0.0, make-dir@^2.1.0: 2251 | version "2.1.0" 2252 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" 2253 | dependencies: 2254 | pify "^4.0.1" 2255 | semver "^5.6.0" 2256 | 2257 | make-error@^1.1.1: 2258 | version "1.3.5" 2259 | resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.5.tgz#efe4e81f6db28cadd605c70f29c831b58ef776c8" 2260 | 2261 | map-cache@^0.2.2: 2262 | version "0.2.2" 2263 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 2264 | 2265 | map-obj@^1.0.0, map-obj@^1.0.1: 2266 | version "1.0.1" 2267 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 2268 | 2269 | map-obj@^2.0.0: 2270 | version "2.0.0" 2271 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-2.0.0.tgz#a65cd29087a92598b8791257a523e021222ac1f9" 2272 | 2273 | map-visit@^1.0.0: 2274 | version "1.0.0" 2275 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 2276 | dependencies: 2277 | object-visit "^1.0.0" 2278 | 2279 | mem@^1.1.0: 2280 | version "1.1.0" 2281 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 2282 | dependencies: 2283 | mimic-fn "^1.0.0" 2284 | 2285 | meow@^3.3.0: 2286 | version "3.7.0" 2287 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 2288 | dependencies: 2289 | camelcase-keys "^2.0.0" 2290 | decamelize "^1.1.2" 2291 | loud-rejection "^1.0.0" 2292 | map-obj "^1.0.1" 2293 | minimist "^1.1.3" 2294 | normalize-package-data "^2.3.4" 2295 | object-assign "^4.0.1" 2296 | read-pkg-up "^1.0.1" 2297 | redent "^1.0.0" 2298 | trim-newlines "^1.0.0" 2299 | 2300 | meow@^5.0.0: 2301 | version "5.0.0" 2302 | resolved "https://registry.yarnpkg.com/meow/-/meow-5.0.0.tgz#dfc73d63a9afc714a5e371760eb5c88b91078aa4" 2303 | dependencies: 2304 | camelcase-keys "^4.0.0" 2305 | decamelize-keys "^1.0.0" 2306 | loud-rejection "^1.0.0" 2307 | minimist-options "^3.0.1" 2308 | normalize-package-data "^2.3.4" 2309 | read-pkg-up "^3.0.0" 2310 | redent "^2.0.0" 2311 | trim-newlines "^2.0.0" 2312 | yargs-parser "^10.0.0" 2313 | 2314 | merge-source-map@^1.1.0: 2315 | version "1.1.0" 2316 | resolved "https://registry.yarnpkg.com/merge-source-map/-/merge-source-map-1.1.0.tgz#2fdde7e6020939f70906a68f2d7ae685e4c8c646" 2317 | dependencies: 2318 | source-map "^0.6.1" 2319 | 2320 | merge2@^1.2.3: 2321 | version "1.2.3" 2322 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.2.3.tgz#7ee99dbd69bb6481689253f018488a1b902b0ed5" 2323 | 2324 | micromatch@^3.1.10: 2325 | version "3.1.10" 2326 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 2327 | dependencies: 2328 | arr-diff "^4.0.0" 2329 | array-unique "^0.3.2" 2330 | braces "^2.3.1" 2331 | define-property "^2.0.2" 2332 | extend-shallow "^3.0.2" 2333 | extglob "^2.0.4" 2334 | fragment-cache "^0.2.1" 2335 | kind-of "^6.0.2" 2336 | nanomatch "^1.2.9" 2337 | object.pick "^1.3.0" 2338 | regex-not "^1.0.0" 2339 | snapdragon "^0.8.1" 2340 | to-regex "^3.0.2" 2341 | 2342 | mime-db@1.43.0: 2343 | version "1.43.0" 2344 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.43.0.tgz#0a12e0502650e473d735535050e7c8f4eb4fae58" 2345 | 2346 | mime-db@~1.30.0: 2347 | version "1.30.0" 2348 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 2349 | 2350 | mime-types@^2.1.12: 2351 | version "2.1.17" 2352 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 2353 | dependencies: 2354 | mime-db "~1.30.0" 2355 | 2356 | mime-types@~2.1.19: 2357 | version "2.1.26" 2358 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.26.tgz#9c921fc09b7e149a65dfdc0da4d20997200b0a06" 2359 | dependencies: 2360 | mime-db "1.43.0" 2361 | 2362 | mimic-fn@^1.0.0: 2363 | version "1.2.0" 2364 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 2365 | 2366 | "minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4, minimatch@~3.0.2: 2367 | version "3.0.4" 2368 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2369 | dependencies: 2370 | brace-expansion "^1.1.7" 2371 | 2372 | minimist-options@^3.0.1: 2373 | version "3.0.2" 2374 | resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-3.0.2.tgz#fba4c8191339e13ecf4d61beb03f070103f3d954" 2375 | dependencies: 2376 | arrify "^1.0.1" 2377 | is-plain-obj "^1.1.0" 2378 | 2379 | minimist@0.0.8: 2380 | version "0.0.8" 2381 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2382 | 2383 | minimist@^1.1.3, minimist@^1.2.0: 2384 | version "1.2.0" 2385 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2386 | 2387 | minipass@^2.2.0: 2388 | version "2.3.1" 2389 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.1.tgz#4e872b959131a672837ab3cb554962bc84b1537d" 2390 | dependencies: 2391 | safe-buffer "^5.1.1" 2392 | yallist "^3.0.0" 2393 | 2394 | minipass@^2.3.5: 2395 | version "2.9.0" 2396 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.9.0.tgz#e713762e7d3e32fed803115cf93e04bca9fcc9a6" 2397 | dependencies: 2398 | safe-buffer "^5.1.2" 2399 | yallist "^3.0.0" 2400 | 2401 | mixin-deep@^1.2.0: 2402 | version "1.3.2" 2403 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" 2404 | dependencies: 2405 | for-in "^1.0.2" 2406 | is-extendable "^1.0.1" 2407 | 2408 | mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.1: 2409 | version "0.5.1" 2410 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2411 | dependencies: 2412 | minimist "0.0.8" 2413 | 2414 | ms@2.0.0: 2415 | version "2.0.0" 2416 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2417 | 2418 | ms@^2.1.1: 2419 | version "2.1.1" 2420 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" 2421 | 2422 | multimatch@^2.1.0: 2423 | version "2.1.0" 2424 | resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b" 2425 | dependencies: 2426 | array-differ "^1.0.0" 2427 | array-union "^1.0.1" 2428 | arrify "^1.0.0" 2429 | minimatch "^3.0.0" 2430 | 2431 | multimatch@^3.0.0: 2432 | version "3.0.0" 2433 | resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-3.0.0.tgz#0e2534cc6bc238d9ab67e1b9cd5fcd85a6dbf70b" 2434 | dependencies: 2435 | array-differ "^2.0.3" 2436 | array-union "^1.0.2" 2437 | arrify "^1.0.1" 2438 | minimatch "^3.0.4" 2439 | 2440 | mute-stream@0.0.7: 2441 | version "0.0.7" 2442 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 2443 | 2444 | nanomatch@^1.2.9: 2445 | version "1.2.9" 2446 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.9.tgz#879f7150cb2dab7a471259066c104eee6e0fa7c2" 2447 | dependencies: 2448 | arr-diff "^4.0.0" 2449 | array-unique "^0.3.2" 2450 | define-property "^2.0.2" 2451 | extend-shallow "^3.0.2" 2452 | fragment-cache "^0.2.1" 2453 | is-odd "^2.0.0" 2454 | is-windows "^1.0.2" 2455 | kind-of "^6.0.2" 2456 | object.pick "^1.3.0" 2457 | regex-not "^1.0.0" 2458 | snapdragon "^0.8.1" 2459 | to-regex "^3.0.1" 2460 | 2461 | natural-compare@^1.4.0: 2462 | version "1.4.0" 2463 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2464 | 2465 | nested-error-stacks@^2.0.0: 2466 | version "2.1.0" 2467 | resolved "https://registry.yarnpkg.com/nested-error-stacks/-/nested-error-stacks-2.1.0.tgz#0fbdcf3e13fe4994781280524f8b96b0cdff9c61" 2468 | 2469 | nice-try@^1.0.4: 2470 | version "1.0.4" 2471 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.4.tgz#d93962f6c52f2c1558c0fbda6d512819f1efe1c4" 2472 | 2473 | nodeunit-x@^0.13.0: 2474 | version "0.13.0" 2475 | resolved "https://registry.yarnpkg.com/nodeunit-x/-/nodeunit-x-0.13.0.tgz#b5c68e2ff61c05bf0512f54453ec78c193b2fd2a" 2476 | dependencies: 2477 | ejs "^2.5.2" 2478 | tap "^12.6.2" 2479 | 2480 | nopt@~3.0.6: 2481 | version "3.0.6" 2482 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 2483 | dependencies: 2484 | abbrev "1" 2485 | 2486 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: 2487 | version "2.4.0" 2488 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2489 | dependencies: 2490 | hosted-git-info "^2.1.4" 2491 | is-builtin-module "^1.0.0" 2492 | semver "2 || 3 || 4 || 5" 2493 | validate-npm-package-license "^3.0.1" 2494 | 2495 | npm-run-path@^2.0.0: 2496 | version "2.0.2" 2497 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2498 | dependencies: 2499 | path-key "^2.0.0" 2500 | 2501 | number-is-nan@^1.0.0: 2502 | version "1.0.1" 2503 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2504 | 2505 | nyc@^14.0.0: 2506 | version "14.1.1" 2507 | resolved "https://registry.yarnpkg.com/nyc/-/nyc-14.1.1.tgz#151d64a6a9f9f5908a1b73233931e4a0a3075eeb" 2508 | dependencies: 2509 | archy "^1.0.0" 2510 | caching-transform "^3.0.2" 2511 | convert-source-map "^1.6.0" 2512 | cp-file "^6.2.0" 2513 | find-cache-dir "^2.1.0" 2514 | find-up "^3.0.0" 2515 | foreground-child "^1.5.6" 2516 | glob "^7.1.3" 2517 | istanbul-lib-coverage "^2.0.5" 2518 | istanbul-lib-hook "^2.0.7" 2519 | istanbul-lib-instrument "^3.3.0" 2520 | istanbul-lib-report "^2.0.8" 2521 | istanbul-lib-source-maps "^3.0.6" 2522 | istanbul-reports "^2.2.4" 2523 | js-yaml "^3.13.1" 2524 | make-dir "^2.1.0" 2525 | merge-source-map "^1.1.0" 2526 | resolve-from "^4.0.0" 2527 | rimraf "^2.6.3" 2528 | signal-exit "^3.0.2" 2529 | spawn-wrap "^1.4.2" 2530 | test-exclude "^5.2.3" 2531 | uuid "^3.3.2" 2532 | yargs "^13.2.2" 2533 | yargs-parser "^13.0.0" 2534 | 2535 | oauth-sign@~0.9.0: 2536 | version "0.9.0" 2537 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" 2538 | 2539 | obj-props@^1.0.0: 2540 | version "1.1.0" 2541 | resolved "https://registry.yarnpkg.com/obj-props/-/obj-props-1.1.0.tgz#626313faa442befd4a44e9a02c3cb6bde937b511" 2542 | 2543 | object-assign@^4.0.1, object-assign@^4.1.0: 2544 | version "4.1.1" 2545 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2546 | 2547 | object-copy@^0.1.0: 2548 | version "0.1.0" 2549 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 2550 | dependencies: 2551 | copy-descriptor "^0.1.0" 2552 | define-property "^0.2.5" 2553 | kind-of "^3.0.3" 2554 | 2555 | object-visit@^1.0.0: 2556 | version "1.0.1" 2557 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 2558 | dependencies: 2559 | isobject "^3.0.0" 2560 | 2561 | object.pick@^1.3.0: 2562 | version "1.3.0" 2563 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 2564 | dependencies: 2565 | isobject "^3.0.1" 2566 | 2567 | once@^1.3.0: 2568 | version "1.4.0" 2569 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2570 | dependencies: 2571 | wrappy "1" 2572 | 2573 | onetime@^2.0.0: 2574 | version "2.0.1" 2575 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2576 | dependencies: 2577 | mimic-fn "^1.0.0" 2578 | 2579 | open-editor@^1.2.0: 2580 | version "1.2.0" 2581 | resolved "https://registry.yarnpkg.com/open-editor/-/open-editor-1.2.0.tgz#75ca23f0b74d4b3f55ee0b8a4e0f5c2325eb775f" 2582 | dependencies: 2583 | env-editor "^0.3.1" 2584 | line-column-path "^1.0.0" 2585 | opn "^5.0.0" 2586 | 2587 | opener@^1.5.1: 2588 | version "1.5.1" 2589 | resolved "https://registry.yarnpkg.com/opener/-/opener-1.5.1.tgz#6d2f0e77f1a0af0032aca716c2c1fbb8e7e8abed" 2590 | 2591 | opn@^5.0.0: 2592 | version "5.3.0" 2593 | resolved "https://registry.yarnpkg.com/opn/-/opn-5.3.0.tgz#64871565c863875f052cfdf53d3e3cb5adb53b1c" 2594 | dependencies: 2595 | is-wsl "^1.1.0" 2596 | 2597 | optionator@^0.8.2: 2598 | version "0.8.2" 2599 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2600 | dependencies: 2601 | deep-is "~0.1.3" 2602 | fast-levenshtein "~2.0.4" 2603 | levn "~0.3.0" 2604 | prelude-ls "~1.1.2" 2605 | type-check "~0.3.2" 2606 | wordwrap "~1.0.0" 2607 | 2608 | os-homedir@^1.0.1, os-homedir@^1.0.2: 2609 | version "1.0.2" 2610 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2611 | 2612 | os-locale@^2.0.0: 2613 | version "2.1.0" 2614 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 2615 | dependencies: 2616 | execa "^0.7.0" 2617 | lcid "^1.0.0" 2618 | mem "^1.1.0" 2619 | 2620 | os-tmpdir@~1.0.2: 2621 | version "1.0.2" 2622 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2623 | 2624 | own-or-env@^1.0.1: 2625 | version "1.0.1" 2626 | resolved "https://registry.yarnpkg.com/own-or-env/-/own-or-env-1.0.1.tgz#54ce601d3bf78236c5c65633aa1c8ec03f8007e4" 2627 | dependencies: 2628 | own-or "^1.0.0" 2629 | 2630 | own-or@^1.0.0: 2631 | version "1.0.0" 2632 | resolved "https://registry.yarnpkg.com/own-or/-/own-or-1.0.0.tgz#4e877fbeda9a2ec8000fbc0bcae39645ee8bf8dc" 2633 | 2634 | p-finally@^1.0.0: 2635 | version "1.0.0" 2636 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2637 | 2638 | p-limit@^1.1.0: 2639 | version "1.1.0" 2640 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2641 | 2642 | p-limit@^2.0.0: 2643 | version "2.1.0" 2644 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.1.0.tgz#1d5a0d20fb12707c758a655f6bbc4386b5930d68" 2645 | dependencies: 2646 | p-try "^2.0.0" 2647 | 2648 | p-locate@^2.0.0: 2649 | version "2.0.0" 2650 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2651 | dependencies: 2652 | p-limit "^1.1.0" 2653 | 2654 | p-locate@^3.0.0: 2655 | version "3.0.0" 2656 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" 2657 | dependencies: 2658 | p-limit "^2.0.0" 2659 | 2660 | p-try@^2.0.0: 2661 | version "2.0.0" 2662 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.0.0.tgz#85080bb87c64688fa47996fe8f7dfbe8211760b1" 2663 | 2664 | package-hash@^3.0.0: 2665 | version "3.0.0" 2666 | resolved "https://registry.yarnpkg.com/package-hash/-/package-hash-3.0.0.tgz#50183f2d36c9e3e528ea0a8605dff57ce976f88e" 2667 | dependencies: 2668 | graceful-fs "^4.1.15" 2669 | hasha "^3.0.0" 2670 | lodash.flattendeep "^4.4.0" 2671 | release-zalgo "^1.0.0" 2672 | 2673 | package-json@^4.0.0: 2674 | version "4.0.1" 2675 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed" 2676 | dependencies: 2677 | got "^6.7.1" 2678 | registry-auth-token "^3.0.1" 2679 | registry-url "^3.0.3" 2680 | semver "^5.1.0" 2681 | 2682 | parent-module@^1.0.0: 2683 | version "1.0.0" 2684 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.0.tgz#df250bdc5391f4a085fb589dad761f5ad6b865b5" 2685 | dependencies: 2686 | callsites "^3.0.0" 2687 | 2688 | parse-json@^2.2.0: 2689 | version "2.2.0" 2690 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2691 | dependencies: 2692 | error-ex "^1.2.0" 2693 | 2694 | parse-json@^4.0.0: 2695 | version "4.0.0" 2696 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" 2697 | dependencies: 2698 | error-ex "^1.3.1" 2699 | json-parse-better-errors "^1.0.1" 2700 | 2701 | pascalcase@^0.1.1: 2702 | version "0.1.1" 2703 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 2704 | 2705 | path-dirname@^1.0.0: 2706 | version "1.0.2" 2707 | resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" 2708 | 2709 | path-exists@^2.0.0: 2710 | version "2.1.0" 2711 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2712 | dependencies: 2713 | pinkie-promise "^2.0.0" 2714 | 2715 | path-exists@^3.0.0: 2716 | version "3.0.0" 2717 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2718 | 2719 | path-is-absolute@^1.0.0, path-is-absolute@~1.0.0: 2720 | version "1.0.1" 2721 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2722 | 2723 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 2724 | version "1.0.2" 2725 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2726 | 2727 | path-key@^2.0.0, path-key@^2.0.1: 2728 | version "2.0.1" 2729 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2730 | 2731 | path-parse@^1.0.5: 2732 | version "1.0.5" 2733 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2734 | 2735 | path-type@^1.0.0: 2736 | version "1.1.0" 2737 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2738 | dependencies: 2739 | graceful-fs "^4.1.2" 2740 | pify "^2.0.0" 2741 | pinkie-promise "^2.0.0" 2742 | 2743 | path-type@^2.0.0: 2744 | version "2.0.0" 2745 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 2746 | dependencies: 2747 | pify "^2.0.0" 2748 | 2749 | path-type@^3.0.0: 2750 | version "3.0.0" 2751 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" 2752 | dependencies: 2753 | pify "^3.0.0" 2754 | 2755 | performance-now@^2.1.0: 2756 | version "2.1.0" 2757 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 2758 | 2759 | pify@^2.0.0: 2760 | version "2.3.0" 2761 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2762 | 2763 | pify@^3.0.0: 2764 | version "3.0.0" 2765 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 2766 | 2767 | pify@^4.0.1: 2768 | version "4.0.1" 2769 | resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" 2770 | 2771 | pinkie-promise@^2.0.0: 2772 | version "2.0.1" 2773 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2774 | dependencies: 2775 | pinkie "^2.0.0" 2776 | 2777 | pinkie@^2.0.0: 2778 | version "2.0.4" 2779 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2780 | 2781 | pkg-conf@^2.1.0: 2782 | version "2.1.0" 2783 | resolved "https://registry.yarnpkg.com/pkg-conf/-/pkg-conf-2.1.0.tgz#2126514ca6f2abfebd168596df18ba57867f0058" 2784 | dependencies: 2785 | find-up "^2.0.0" 2786 | load-json-file "^4.0.0" 2787 | 2788 | pkg-dir@^1.0.0: 2789 | version "1.0.0" 2790 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 2791 | dependencies: 2792 | find-up "^1.0.0" 2793 | 2794 | pkg-dir@^3.0.0: 2795 | version "3.0.0" 2796 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3" 2797 | dependencies: 2798 | find-up "^3.0.0" 2799 | 2800 | pkg-up@^2.0.0: 2801 | version "2.0.0" 2802 | resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-2.0.0.tgz#c819ac728059a461cab1c3889a2be3c49a004d7f" 2803 | dependencies: 2804 | find-up "^2.1.0" 2805 | 2806 | plur@^3.0.1: 2807 | version "3.0.1" 2808 | resolved "https://registry.yarnpkg.com/plur/-/plur-3.0.1.tgz#268652d605f816699b42b86248de73c9acd06a7c" 2809 | dependencies: 2810 | irregular-plurals "^2.0.0" 2811 | 2812 | pluralize@^7.0.0: 2813 | version "7.0.0" 2814 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" 2815 | 2816 | posix-character-classes@^0.1.0: 2817 | version "0.1.1" 2818 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 2819 | 2820 | prelude-ls@~1.1.2: 2821 | version "1.1.2" 2822 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2823 | 2824 | prepend-http@^1.0.1: 2825 | version "1.0.4" 2826 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 2827 | 2828 | prettier-linter-helpers@^1.0.0: 2829 | version "1.0.0" 2830 | resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" 2831 | dependencies: 2832 | fast-diff "^1.1.2" 2833 | 2834 | prettier@^1.15.2: 2835 | version "1.16.0" 2836 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.16.0.tgz#104dd25f5ee3d0c9d0a6ce4bb40ced8481d51219" 2837 | 2838 | process-nextick-args@~1.0.6: 2839 | version "1.0.7" 2840 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2841 | 2842 | progress@^2.0.0: 2843 | version "2.0.0" 2844 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 2845 | 2846 | proto-props@^2.0.0: 2847 | version "2.0.0" 2848 | resolved "https://registry.yarnpkg.com/proto-props/-/proto-props-2.0.0.tgz#8ac6e6dec658545815c623a3bc81580deda9a181" 2849 | 2850 | pseudomap@^1.0.2: 2851 | version "1.0.2" 2852 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2853 | 2854 | psl@^1.1.28: 2855 | version "1.7.0" 2856 | resolved "https://registry.yarnpkg.com/psl/-/psl-1.7.0.tgz#f1c4c47a8ef97167dea5d6bbf4816d736e884a3c" 2857 | 2858 | punycode@^1.3.2: 2859 | version "1.4.1" 2860 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2861 | 2862 | punycode@^2.1.0, punycode@^2.1.1: 2863 | version "2.1.1" 2864 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 2865 | 2866 | qs@~6.5.2: 2867 | version "6.5.2" 2868 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" 2869 | 2870 | quick-lru@^1.0.0: 2871 | version "1.1.0" 2872 | resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-1.1.0.tgz#4360b17c61136ad38078397ff11416e186dcfbb8" 2873 | 2874 | rc@^1.0.1, rc@^1.1.6: 2875 | version "1.2.2" 2876 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.2.tgz#d8ce9cb57e8d64d9c7badd9876c7c34cbe3c7077" 2877 | dependencies: 2878 | deep-extend "~0.4.0" 2879 | ini "~1.3.0" 2880 | minimist "^1.2.0" 2881 | strip-json-comments "~2.0.1" 2882 | 2883 | read-pkg-up@^1.0.1: 2884 | version "1.0.1" 2885 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2886 | dependencies: 2887 | find-up "^1.0.0" 2888 | read-pkg "^1.0.0" 2889 | 2890 | read-pkg-up@^2.0.0: 2891 | version "2.0.0" 2892 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 2893 | dependencies: 2894 | find-up "^2.0.0" 2895 | read-pkg "^2.0.0" 2896 | 2897 | read-pkg-up@^3.0.0: 2898 | version "3.0.0" 2899 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07" 2900 | dependencies: 2901 | find-up "^2.0.0" 2902 | read-pkg "^3.0.0" 2903 | 2904 | read-pkg-up@^4.0.0: 2905 | version "4.0.0" 2906 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-4.0.0.tgz#1b221c6088ba7799601c808f91161c66e58f8978" 2907 | dependencies: 2908 | find-up "^3.0.0" 2909 | read-pkg "^3.0.0" 2910 | 2911 | read-pkg@^1.0.0: 2912 | version "1.1.0" 2913 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2914 | dependencies: 2915 | load-json-file "^1.0.0" 2916 | normalize-package-data "^2.3.2" 2917 | path-type "^1.0.0" 2918 | 2919 | read-pkg@^2.0.0: 2920 | version "2.0.0" 2921 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 2922 | dependencies: 2923 | load-json-file "^2.0.0" 2924 | normalize-package-data "^2.3.2" 2925 | path-type "^2.0.0" 2926 | 2927 | read-pkg@^3.0.0: 2928 | version "3.0.0" 2929 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" 2930 | dependencies: 2931 | load-json-file "^4.0.0" 2932 | normalize-package-data "^2.3.2" 2933 | path-type "^3.0.0" 2934 | 2935 | readable-stream@^2, readable-stream@^2.1.5: 2936 | version "2.3.3" 2937 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 2938 | dependencies: 2939 | core-util-is "~1.0.0" 2940 | inherits "~2.0.3" 2941 | isarray "~1.0.0" 2942 | process-nextick-args "~1.0.6" 2943 | safe-buffer "~5.1.1" 2944 | string_decoder "~1.0.3" 2945 | util-deprecate "~1.0.1" 2946 | 2947 | redent@^1.0.0: 2948 | version "1.0.0" 2949 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 2950 | dependencies: 2951 | indent-string "^2.1.0" 2952 | strip-indent "^1.0.1" 2953 | 2954 | redent@^2.0.0: 2955 | version "2.0.0" 2956 | resolved "https://registry.yarnpkg.com/redent/-/redent-2.0.0.tgz#c1b2007b42d57eb1389079b3c8333639d5e1ccaa" 2957 | dependencies: 2958 | indent-string "^3.0.0" 2959 | strip-indent "^2.0.0" 2960 | 2961 | regex-not@^1.0.0, regex-not@^1.0.2: 2962 | version "1.0.2" 2963 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 2964 | dependencies: 2965 | extend-shallow "^3.0.2" 2966 | safe-regex "^1.1.0" 2967 | 2968 | regexp-tree@~0.0.85: 2969 | version "0.0.86" 2970 | resolved "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.0.86.tgz#ea4e26220eebad25313d6f4f19c23535cec86745" 2971 | dependencies: 2972 | cli-table3 "^0.5.0" 2973 | colors "^1.1.2" 2974 | yargs "^10.0.3" 2975 | 2976 | regexpp@^2.0.0: 2977 | version "2.0.0" 2978 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.0.tgz#b2a7534a85ca1b033bcf5ce9ff8e56d4e0755365" 2979 | 2980 | regexpp@^2.0.1: 2981 | version "2.0.1" 2982 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f" 2983 | 2984 | registry-auth-token@^3.0.1: 2985 | version "3.3.1" 2986 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.1.tgz#fb0d3289ee0d9ada2cbb52af5dfe66cb070d3006" 2987 | dependencies: 2988 | rc "^1.1.6" 2989 | safe-buffer "^5.0.1" 2990 | 2991 | registry-url@^3.0.3: 2992 | version "3.1.0" 2993 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 2994 | dependencies: 2995 | rc "^1.0.1" 2996 | 2997 | release-zalgo@^1.0.0: 2998 | version "1.0.0" 2999 | resolved "https://registry.yarnpkg.com/release-zalgo/-/release-zalgo-1.0.0.tgz#09700b7e5074329739330e535c5a90fb67851730" 3000 | dependencies: 3001 | es6-error "^4.0.1" 3002 | 3003 | repeat-element@^1.1.2: 3004 | version "1.1.2" 3005 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3006 | 3007 | repeat-string@^1.6.1: 3008 | version "1.6.1" 3009 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3010 | 3011 | repeating@^2.0.0: 3012 | version "2.0.1" 3013 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3014 | dependencies: 3015 | is-finite "^1.0.0" 3016 | 3017 | request@^2.88.0: 3018 | version "2.88.2" 3019 | resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3" 3020 | dependencies: 3021 | aws-sign2 "~0.7.0" 3022 | aws4 "^1.8.0" 3023 | caseless "~0.12.0" 3024 | combined-stream "~1.0.6" 3025 | extend "~3.0.2" 3026 | forever-agent "~0.6.1" 3027 | form-data "~2.3.2" 3028 | har-validator "~5.1.3" 3029 | http-signature "~1.2.0" 3030 | is-typedarray "~1.0.0" 3031 | isstream "~0.1.2" 3032 | json-stringify-safe "~5.0.1" 3033 | mime-types "~2.1.19" 3034 | oauth-sign "~0.9.0" 3035 | performance-now "^2.1.0" 3036 | qs "~6.5.2" 3037 | safe-buffer "^5.1.2" 3038 | tough-cookie "~2.5.0" 3039 | tunnel-agent "^0.6.0" 3040 | uuid "^3.3.2" 3041 | 3042 | require-directory@^2.1.1: 3043 | version "2.1.1" 3044 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3045 | 3046 | require-main-filename@^1.0.1: 3047 | version "1.0.1" 3048 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3049 | 3050 | require-main-filename@^2.0.0: 3051 | version "2.0.0" 3052 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" 3053 | 3054 | resolve-cwd@^2.0.0: 3055 | version "2.0.0" 3056 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" 3057 | dependencies: 3058 | resolve-from "^3.0.0" 3059 | 3060 | resolve-from@^3.0.0: 3061 | version "3.0.0" 3062 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" 3063 | 3064 | resolve-from@^4.0.0: 3065 | version "4.0.0" 3066 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 3067 | 3068 | resolve-url@^0.2.1: 3069 | version "0.2.1" 3070 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 3071 | 3072 | resolve@^1.2.0: 3073 | version "1.5.0" 3074 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36" 3075 | dependencies: 3076 | path-parse "^1.0.5" 3077 | 3078 | resolve@^1.6.0: 3079 | version "1.7.1" 3080 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.7.1.tgz#aadd656374fd298aee895bc026b8297418677fd3" 3081 | dependencies: 3082 | path-parse "^1.0.5" 3083 | 3084 | resolve@^1.8.1: 3085 | version "1.8.1" 3086 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.8.1.tgz#82f1ec19a423ac1fbd080b0bab06ba36e84a7a26" 3087 | dependencies: 3088 | path-parse "^1.0.5" 3089 | 3090 | resolve@~1.1.0: 3091 | version "1.1.7" 3092 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 3093 | 3094 | restore-cursor@^2.0.0: 3095 | version "2.0.0" 3096 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 3097 | dependencies: 3098 | onetime "^2.0.0" 3099 | signal-exit "^3.0.2" 3100 | 3101 | ret@~0.1.10: 3102 | version "0.1.15" 3103 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 3104 | 3105 | rimraf@^2.2.8, rimraf@^2.6.2, rimraf@~2.6.2: 3106 | version "2.6.2" 3107 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 3108 | dependencies: 3109 | glob "^7.0.5" 3110 | 3111 | rimraf@^2.6.3: 3112 | version "2.7.1" 3113 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" 3114 | dependencies: 3115 | glob "^7.1.3" 3116 | 3117 | run-async@^2.2.0: 3118 | version "2.3.0" 3119 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 3120 | dependencies: 3121 | is-promise "^2.1.0" 3122 | 3123 | rxjs@^6.1.0: 3124 | version "6.3.2" 3125 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.3.2.tgz#6a688b16c4e6e980e62ea805ec30648e1c60907f" 3126 | dependencies: 3127 | tslib "^1.9.0" 3128 | 3129 | safe-buffer@^5.0.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 3130 | version "5.1.1" 3131 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 3132 | 3133 | safe-buffer@^5.1.1: 3134 | version "5.1.2" 3135 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 3136 | 3137 | safe-buffer@^5.1.2: 3138 | version "5.2.0" 3139 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.0.tgz#b74daec49b1148f88c64b68d49b1e815c1f2f519" 3140 | 3141 | safe-regex@^1.1.0: 3142 | version "1.1.0" 3143 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 3144 | dependencies: 3145 | ret "~0.1.10" 3146 | 3147 | safe-regex@^2.0.1: 3148 | version "2.0.1" 3149 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-2.0.1.tgz#676c791d97f31fadb8958d64300f7760606fa0a1" 3150 | dependencies: 3151 | regexp-tree "~0.0.85" 3152 | 3153 | "safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2: 3154 | version "2.1.2" 3155 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 3156 | 3157 | semver-diff@^2.0.0: 3158 | version "2.1.0" 3159 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 3160 | dependencies: 3161 | semver "^5.0.3" 3162 | 3163 | "semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.5.0, semver@^5.5.1: 3164 | version "5.5.1" 3165 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.1.tgz#7dfdd8814bdb7cabc7be0fb1d734cfb66c940477" 3166 | 3167 | semver@^5.6.0: 3168 | version "5.7.1" 3169 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 3170 | 3171 | semver@^6.0.0: 3172 | version "6.3.0" 3173 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 3174 | 3175 | set-blocking@^2.0.0: 3176 | version "2.0.0" 3177 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3178 | 3179 | set-value@^0.4.3: 3180 | version "0.4.3" 3181 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" 3182 | dependencies: 3183 | extend-shallow "^2.0.1" 3184 | is-extendable "^0.1.1" 3185 | is-plain-object "^2.0.1" 3186 | to-object-path "^0.3.0" 3187 | 3188 | set-value@^2.0.0: 3189 | version "2.0.0" 3190 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" 3191 | dependencies: 3192 | extend-shallow "^2.0.1" 3193 | is-extendable "^0.1.1" 3194 | is-plain-object "^2.0.3" 3195 | split-string "^3.0.1" 3196 | 3197 | shebang-command@^1.2.0: 3198 | version "1.2.0" 3199 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3200 | dependencies: 3201 | shebang-regex "^1.0.0" 3202 | 3203 | shebang-regex@^1.0.0: 3204 | version "1.0.0" 3205 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3206 | 3207 | signal-exit@^3.0.0, signal-exit@^3.0.2: 3208 | version "3.0.2" 3209 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3210 | 3211 | slash@^2.0.0: 3212 | version "2.0.0" 3213 | resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44" 3214 | 3215 | slice-ansi@2.0.0: 3216 | version "2.0.0" 3217 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.0.0.tgz#5373bdb8559b45676e8541c66916cdd6251612e7" 3218 | dependencies: 3219 | ansi-styles "^3.2.0" 3220 | astral-regex "^1.0.0" 3221 | is-fullwidth-code-point "^2.0.0" 3222 | 3223 | snapdragon-node@^2.0.1: 3224 | version "2.1.1" 3225 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 3226 | dependencies: 3227 | define-property "^1.0.0" 3228 | isobject "^3.0.0" 3229 | snapdragon-util "^3.0.1" 3230 | 3231 | snapdragon-util@^3.0.1: 3232 | version "3.0.1" 3233 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 3234 | dependencies: 3235 | kind-of "^3.2.0" 3236 | 3237 | snapdragon@^0.8.1: 3238 | version "0.8.2" 3239 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 3240 | dependencies: 3241 | base "^0.11.1" 3242 | debug "^2.2.0" 3243 | define-property "^0.2.5" 3244 | extend-shallow "^2.0.1" 3245 | map-cache "^0.2.2" 3246 | source-map "^0.5.6" 3247 | source-map-resolve "^0.5.0" 3248 | use "^3.1.0" 3249 | 3250 | sort-keys@^2.0.0: 3251 | version "2.0.0" 3252 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-2.0.0.tgz#658535584861ec97d730d6cf41822e1f56684128" 3253 | dependencies: 3254 | is-plain-obj "^1.0.0" 3255 | 3256 | source-map-resolve@^0.5.0: 3257 | version "0.5.1" 3258 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.1.tgz#7ad0f593f2281598e854df80f19aae4b92d7a11a" 3259 | dependencies: 3260 | atob "^2.0.0" 3261 | decode-uri-component "^0.2.0" 3262 | resolve-url "^0.2.1" 3263 | source-map-url "^0.4.0" 3264 | urix "^0.1.0" 3265 | 3266 | source-map-support@^0.5.10: 3267 | version "0.5.16" 3268 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.16.tgz#0ae069e7fe3ba7538c64c98515e35339eac5a042" 3269 | dependencies: 3270 | buffer-from "^1.0.0" 3271 | source-map "^0.6.0" 3272 | 3273 | source-map-support@^0.5.6: 3274 | version "0.5.6" 3275 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.6.tgz#4435cee46b1aab62b8e8610ce60f788091c51c13" 3276 | dependencies: 3277 | buffer-from "^1.0.0" 3278 | source-map "^0.6.0" 3279 | 3280 | source-map-url@^0.4.0: 3281 | version "0.4.0" 3282 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 3283 | 3284 | source-map@^0.5.0, source-map@^0.5.6: 3285 | version "0.5.7" 3286 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3287 | 3288 | source-map@^0.6.0, source-map@^0.6.1: 3289 | version "0.6.1" 3290 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 3291 | 3292 | spawn-wrap@^1.4.2: 3293 | version "1.4.2" 3294 | resolved "https://registry.yarnpkg.com/spawn-wrap/-/spawn-wrap-1.4.2.tgz#cff58e73a8224617b6561abdc32586ea0c82248c" 3295 | dependencies: 3296 | foreground-child "^1.5.6" 3297 | mkdirp "^0.5.0" 3298 | os-homedir "^1.0.1" 3299 | rimraf "^2.6.2" 3300 | signal-exit "^3.0.2" 3301 | which "^1.3.0" 3302 | 3303 | spdx-correct@~1.0.0: 3304 | version "1.0.2" 3305 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3306 | dependencies: 3307 | spdx-license-ids "^1.0.2" 3308 | 3309 | spdx-expression-parse@~1.0.0: 3310 | version "1.0.4" 3311 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3312 | 3313 | spdx-license-ids@^1.0.2: 3314 | version "1.2.2" 3315 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3316 | 3317 | split-string@^3.0.1, split-string@^3.0.2: 3318 | version "3.1.0" 3319 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 3320 | dependencies: 3321 | extend-shallow "^3.0.0" 3322 | 3323 | sprintf-js@^1.0.3: 3324 | version "1.1.1" 3325 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.1.tgz#36be78320afe5801f6cea3ee78b6e5aab940ea0c" 3326 | 3327 | sprintf-js@~1.0.2: 3328 | version "1.0.3" 3329 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3330 | 3331 | sshpk@^1.7.0: 3332 | version "1.15.2" 3333 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.15.2.tgz#c946d6bd9b1a39d0e8635763f5242d6ed6dcb629" 3334 | dependencies: 3335 | asn1 "~0.2.3" 3336 | assert-plus "^1.0.0" 3337 | bcrypt-pbkdf "^1.0.0" 3338 | dashdash "^1.12.0" 3339 | ecc-jsbn "~0.1.1" 3340 | getpass "^0.1.1" 3341 | jsbn "~0.1.0" 3342 | safer-buffer "^2.0.2" 3343 | tweetnacl "~0.14.0" 3344 | 3345 | stack-utils@^1.0.2: 3346 | version "1.0.2" 3347 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.2.tgz#33eba3897788558bebfc2db059dc158ec36cebb8" 3348 | 3349 | static-extend@^0.1.1: 3350 | version "0.1.2" 3351 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 3352 | dependencies: 3353 | define-property "^0.2.5" 3354 | object-copy "^0.1.0" 3355 | 3356 | string-width@^1.0.1: 3357 | version "1.0.2" 3358 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3359 | dependencies: 3360 | code-point-at "^1.0.0" 3361 | is-fullwidth-code-point "^1.0.0" 3362 | strip-ansi "^3.0.0" 3363 | 3364 | string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: 3365 | version "2.1.1" 3366 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3367 | dependencies: 3368 | is-fullwidth-code-point "^2.0.0" 3369 | strip-ansi "^4.0.0" 3370 | 3371 | string-width@^3.0.0, string-width@^3.1.0: 3372 | version "3.1.0" 3373 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" 3374 | dependencies: 3375 | emoji-regex "^7.0.1" 3376 | is-fullwidth-code-point "^2.0.0" 3377 | strip-ansi "^5.1.0" 3378 | 3379 | string_decoder@~1.0.3: 3380 | version "1.0.3" 3381 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 3382 | dependencies: 3383 | safe-buffer "~5.1.0" 3384 | 3385 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3386 | version "3.0.1" 3387 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3388 | dependencies: 3389 | ansi-regex "^2.0.0" 3390 | 3391 | strip-ansi@^4.0.0: 3392 | version "4.0.0" 3393 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3394 | dependencies: 3395 | ansi-regex "^3.0.0" 3396 | 3397 | strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: 3398 | version "5.2.0" 3399 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" 3400 | dependencies: 3401 | ansi-regex "^4.1.0" 3402 | 3403 | strip-bom@^2.0.0: 3404 | version "2.0.0" 3405 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3406 | dependencies: 3407 | is-utf8 "^0.2.0" 3408 | 3409 | strip-bom@^3.0.0: 3410 | version "3.0.0" 3411 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3412 | 3413 | strip-eof@^1.0.0: 3414 | version "1.0.0" 3415 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3416 | 3417 | strip-indent@^1.0.1: 3418 | version "1.0.1" 3419 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 3420 | dependencies: 3421 | get-stdin "^4.0.1" 3422 | 3423 | strip-indent@^2.0.0: 3424 | version "2.0.0" 3425 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" 3426 | 3427 | strip-json-comments@^2.0.1, strip-json-comments@~2.0.1: 3428 | version "2.0.1" 3429 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3430 | 3431 | supports-color@^4.0.0: 3432 | version "4.5.0" 3433 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 3434 | dependencies: 3435 | has-flag "^2.0.0" 3436 | 3437 | supports-color@^5.0.0: 3438 | version "5.5.0" 3439 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 3440 | dependencies: 3441 | has-flag "^3.0.0" 3442 | 3443 | supports-color@^5.3.0: 3444 | version "5.4.0" 3445 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.4.0.tgz#1c6b337402c2137605efe19f10fec390f6faab54" 3446 | dependencies: 3447 | has-flag "^3.0.0" 3448 | 3449 | supports-color@^6.1.0: 3450 | version "6.1.0" 3451 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3" 3452 | dependencies: 3453 | has-flag "^3.0.0" 3454 | 3455 | supports-hyperlinks@^1.0.1: 3456 | version "1.0.1" 3457 | resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-1.0.1.tgz#71daedf36cc1060ac5100c351bb3da48c29c0ef7" 3458 | dependencies: 3459 | has-flag "^2.0.0" 3460 | supports-color "^5.0.0" 3461 | 3462 | table@^5.0.2: 3463 | version "5.2.1" 3464 | resolved "https://registry.yarnpkg.com/table/-/table-5.2.1.tgz#e78463702b1be9f7131c39860bcfb1b81114c2a1" 3465 | dependencies: 3466 | ajv "^6.6.1" 3467 | lodash "^4.17.11" 3468 | slice-ansi "2.0.0" 3469 | string-width "^2.1.1" 3470 | 3471 | tap-mocha-reporter@^3.0.9: 3472 | version "3.0.9" 3473 | resolved "https://registry.yarnpkg.com/tap-mocha-reporter/-/tap-mocha-reporter-3.0.9.tgz#ea41e741149a94c278d106cbcccc37fec2dfeeaa" 3474 | dependencies: 3475 | color-support "^1.1.0" 3476 | debug "^2.1.3" 3477 | diff "^1.3.2" 3478 | escape-string-regexp "^1.0.3" 3479 | glob "^7.0.5" 3480 | js-yaml "^3.3.1" 3481 | tap-parser "^5.1.0" 3482 | unicode-length "^1.0.0" 3483 | optionalDependencies: 3484 | readable-stream "^2.1.5" 3485 | 3486 | tap-parser@^5.1.0: 3487 | version "5.4.0" 3488 | resolved "https://registry.yarnpkg.com/tap-parser/-/tap-parser-5.4.0.tgz#6907e89725d7b7fa6ae41ee2c464c3db43188aec" 3489 | dependencies: 3490 | events-to-array "^1.0.1" 3491 | js-yaml "^3.2.7" 3492 | optionalDependencies: 3493 | readable-stream "^2" 3494 | 3495 | tap-parser@^7.0.0: 3496 | version "7.0.0" 3497 | resolved "https://registry.yarnpkg.com/tap-parser/-/tap-parser-7.0.0.tgz#54db35302fda2c2ccc21954ad3be22b2cba42721" 3498 | dependencies: 3499 | events-to-array "^1.0.1" 3500 | js-yaml "^3.2.7" 3501 | minipass "^2.2.0" 3502 | 3503 | tap@^12.6.2: 3504 | version "12.7.0" 3505 | resolved "https://registry.yarnpkg.com/tap/-/tap-12.7.0.tgz#6e0c40eb7ec1347a9311aa3ce9dee098dc41b566" 3506 | dependencies: 3507 | bind-obj-methods "^2.0.0" 3508 | browser-process-hrtime "^1.0.0" 3509 | capture-stack-trace "^1.0.0" 3510 | clean-yaml-object "^0.1.0" 3511 | color-support "^1.1.0" 3512 | coveralls "^3.0.2" 3513 | domain-browser "^1.2.0" 3514 | esm "^3.2.5" 3515 | foreground-child "^1.3.3" 3516 | fs-exists-cached "^1.0.0" 3517 | function-loop "^1.0.1" 3518 | glob "^7.1.3" 3519 | isexe "^2.0.0" 3520 | js-yaml "^3.13.1" 3521 | minipass "^2.3.5" 3522 | mkdirp "^0.5.1" 3523 | nyc "^14.0.0" 3524 | opener "^1.5.1" 3525 | os-homedir "^1.0.2" 3526 | own-or "^1.0.0" 3527 | own-or-env "^1.0.1" 3528 | rimraf "^2.6.3" 3529 | signal-exit "^3.0.0" 3530 | source-map-support "^0.5.10" 3531 | stack-utils "^1.0.2" 3532 | tap-mocha-reporter "^3.0.9" 3533 | tap-parser "^7.0.0" 3534 | tmatch "^4.0.0" 3535 | trivial-deferred "^1.0.1" 3536 | ts-node "^8.0.2" 3537 | tsame "^2.0.1" 3538 | typescript "^3.3.3" 3539 | write-file-atomic "^2.4.2" 3540 | yapool "^1.0.0" 3541 | 3542 | term-size@^1.2.0: 3543 | version "1.2.0" 3544 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69" 3545 | dependencies: 3546 | execa "^0.7.0" 3547 | 3548 | test-exclude@^5.2.3: 3549 | version "5.2.3" 3550 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-5.2.3.tgz#c3d3e1e311eb7ee405e092dac10aefd09091eac0" 3551 | dependencies: 3552 | glob "^7.1.3" 3553 | minimatch "^3.0.4" 3554 | read-pkg-up "^4.0.0" 3555 | require-main-filename "^2.0.0" 3556 | 3557 | text-table@^0.2.0: 3558 | version "0.2.0" 3559 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3560 | 3561 | the-argv@^1.0.0: 3562 | version "1.0.0" 3563 | resolved "https://registry.yarnpkg.com/the-argv/-/the-argv-1.0.0.tgz#0084705005730dd84db755253c931ae398db9522" 3564 | 3565 | through@^2.3.6: 3566 | version "2.3.8" 3567 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3568 | 3569 | timed-out@^4.0.0: 3570 | version "4.0.1" 3571 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" 3572 | 3573 | tmatch@^4.0.0: 3574 | version "4.0.0" 3575 | resolved "https://registry.yarnpkg.com/tmatch/-/tmatch-4.0.0.tgz#ba178007f30bf6a70f37c643fca5045fb2f8c448" 3576 | 3577 | tmp@^0.0.33: 3578 | version "0.0.33" 3579 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 3580 | dependencies: 3581 | os-tmpdir "~1.0.2" 3582 | 3583 | to-fast-properties@^2.0.0: 3584 | version "2.0.0" 3585 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 3586 | 3587 | to-object-path@^0.3.0: 3588 | version "0.3.0" 3589 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 3590 | dependencies: 3591 | kind-of "^3.0.2" 3592 | 3593 | to-regex-range@^2.1.0: 3594 | version "2.1.1" 3595 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 3596 | dependencies: 3597 | is-number "^3.0.0" 3598 | repeat-string "^1.6.1" 3599 | 3600 | to-regex@^3.0.1, to-regex@^3.0.2: 3601 | version "3.0.2" 3602 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 3603 | dependencies: 3604 | define-property "^2.0.2" 3605 | extend-shallow "^3.0.2" 3606 | regex-not "^1.0.2" 3607 | safe-regex "^1.1.0" 3608 | 3609 | tough-cookie@~2.5.0: 3610 | version "2.5.0" 3611 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" 3612 | dependencies: 3613 | psl "^1.1.28" 3614 | punycode "^2.1.1" 3615 | 3616 | trim-newlines@^1.0.0: 3617 | version "1.0.0" 3618 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 3619 | 3620 | trim-newlines@^2.0.0: 3621 | version "2.0.0" 3622 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-2.0.0.tgz#b403d0b91be50c331dfc4b82eeceb22c3de16d20" 3623 | 3624 | trivial-deferred@^1.0.1: 3625 | version "1.0.1" 3626 | resolved "https://registry.yarnpkg.com/trivial-deferred/-/trivial-deferred-1.0.1.tgz#376d4d29d951d6368a6f7a0ae85c2f4d5e0658f3" 3627 | 3628 | ts-node@^8.0.2: 3629 | version "8.6.2" 3630 | resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-8.6.2.tgz#7419a01391a818fbafa6f826a33c1a13e9464e35" 3631 | dependencies: 3632 | arg "^4.1.0" 3633 | diff "^4.0.1" 3634 | make-error "^1.1.1" 3635 | source-map-support "^0.5.6" 3636 | yn "3.1.1" 3637 | 3638 | tsame@^2.0.1: 3639 | version "2.0.1" 3640 | resolved "https://registry.yarnpkg.com/tsame/-/tsame-2.0.1.tgz#70410ddbefcd29c61e2d68549b3347b0444d613f" 3641 | 3642 | tslib@^1.9.0: 3643 | version "1.9.3" 3644 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.3.tgz#d7e4dd79245d85428c4d7e4822a79917954ca286" 3645 | 3646 | tunnel-agent@^0.6.0: 3647 | version "0.6.0" 3648 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3649 | dependencies: 3650 | safe-buffer "^5.0.1" 3651 | 3652 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3653 | version "0.14.5" 3654 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3655 | 3656 | type-check@~0.3.2: 3657 | version "0.3.2" 3658 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3659 | dependencies: 3660 | prelude-ls "~1.1.2" 3661 | 3662 | typescript@^3.3.3: 3663 | version "3.7.5" 3664 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.7.5.tgz#0692e21f65fd4108b9330238aac11dd2e177a1ae" 3665 | 3666 | underscore.string@~3.3.4: 3667 | version "3.3.5" 3668 | resolved "https://registry.yarnpkg.com/underscore.string/-/underscore.string-3.3.5.tgz#fc2ad255b8bd309e239cbc5816fd23a9b7ea4023" 3669 | dependencies: 3670 | sprintf-js "^1.0.3" 3671 | util-deprecate "^1.0.2" 3672 | 3673 | unicode-length@^1.0.0: 3674 | version "1.0.3" 3675 | resolved "https://registry.yarnpkg.com/unicode-length/-/unicode-length-1.0.3.tgz#5ada7a7fed51841a418a328cf149478ac8358abb" 3676 | dependencies: 3677 | punycode "^1.3.2" 3678 | strip-ansi "^3.0.1" 3679 | 3680 | union-value@^1.0.0: 3681 | version "1.0.0" 3682 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" 3683 | dependencies: 3684 | arr-union "^3.1.0" 3685 | get-value "^2.0.6" 3686 | is-extendable "^0.1.1" 3687 | set-value "^0.4.3" 3688 | 3689 | unique-string@^1.0.0: 3690 | version "1.0.0" 3691 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" 3692 | dependencies: 3693 | crypto-random-string "^1.0.0" 3694 | 3695 | unset-value@^1.0.0: 3696 | version "1.0.0" 3697 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 3698 | dependencies: 3699 | has-value "^0.3.1" 3700 | isobject "^3.0.0" 3701 | 3702 | unzip-response@^2.0.1: 3703 | version "2.0.1" 3704 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" 3705 | 3706 | update-notifier@^2.3.0: 3707 | version "2.5.0" 3708 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.5.0.tgz#d0744593e13f161e406acb1d9408b72cad08aff6" 3709 | dependencies: 3710 | boxen "^1.2.1" 3711 | chalk "^2.0.1" 3712 | configstore "^3.0.0" 3713 | import-lazy "^2.1.0" 3714 | is-ci "^1.0.10" 3715 | is-installed-globally "^0.1.0" 3716 | is-npm "^1.0.0" 3717 | latest-version "^3.0.0" 3718 | semver-diff "^2.0.0" 3719 | xdg-basedir "^3.0.0" 3720 | 3721 | uri-js@^4.2.2: 3722 | version "4.2.2" 3723 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" 3724 | dependencies: 3725 | punycode "^2.1.0" 3726 | 3727 | urix@^0.1.0: 3728 | version "0.1.0" 3729 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 3730 | 3731 | url-parse-lax@^1.0.0: 3732 | version "1.0.0" 3733 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" 3734 | dependencies: 3735 | prepend-http "^1.0.1" 3736 | 3737 | use@^3.1.0: 3738 | version "3.1.0" 3739 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.0.tgz#14716bf03fdfefd03040aef58d8b4b85f3a7c544" 3740 | dependencies: 3741 | kind-of "^6.0.2" 3742 | 3743 | util-deprecate@^1.0.2, util-deprecate@~1.0.1: 3744 | version "1.0.2" 3745 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3746 | 3747 | uuid@^3.3.2: 3748 | version "3.4.0" 3749 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" 3750 | 3751 | validate-npm-package-license@^3.0.1: 3752 | version "3.0.1" 3753 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3754 | dependencies: 3755 | spdx-correct "~1.0.0" 3756 | spdx-expression-parse "~1.0.0" 3757 | 3758 | verror@1.10.0: 3759 | version "1.10.0" 3760 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 3761 | dependencies: 3762 | assert-plus "^1.0.0" 3763 | core-util-is "1.0.2" 3764 | extsprintf "^1.2.0" 3765 | 3766 | which-module@^2.0.0: 3767 | version "2.0.0" 3768 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 3769 | 3770 | which@^1.2.9, which@^1.3.0: 3771 | version "1.3.0" 3772 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 3773 | dependencies: 3774 | isexe "^2.0.0" 3775 | 3776 | which@~1.3.0: 3777 | version "1.3.1" 3778 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 3779 | dependencies: 3780 | isexe "^2.0.0" 3781 | 3782 | widest-line@^2.0.0: 3783 | version "2.0.0" 3784 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-2.0.0.tgz#0142a4e8a243f8882c0233aa0e0281aa76152273" 3785 | dependencies: 3786 | string-width "^2.1.1" 3787 | 3788 | wordwrap@~1.0.0: 3789 | version "1.0.0" 3790 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3791 | 3792 | wrap-ansi@^2.0.0: 3793 | version "2.1.0" 3794 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3795 | dependencies: 3796 | string-width "^1.0.1" 3797 | strip-ansi "^3.0.1" 3798 | 3799 | wrap-ansi@^5.1.0: 3800 | version "5.1.0" 3801 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09" 3802 | dependencies: 3803 | ansi-styles "^3.2.0" 3804 | string-width "^3.0.0" 3805 | strip-ansi "^5.0.0" 3806 | 3807 | wrappy@1: 3808 | version "1.0.2" 3809 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3810 | 3811 | write-file-atomic@^2.0.0: 3812 | version "2.3.0" 3813 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 3814 | dependencies: 3815 | graceful-fs "^4.1.11" 3816 | imurmurhash "^0.1.4" 3817 | signal-exit "^3.0.2" 3818 | 3819 | write-file-atomic@^2.4.2: 3820 | version "2.4.3" 3821 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.3.tgz#1fd2e9ae1df3e75b8d8c367443c692d4ca81f481" 3822 | dependencies: 3823 | graceful-fs "^4.1.11" 3824 | imurmurhash "^0.1.4" 3825 | signal-exit "^3.0.2" 3826 | 3827 | write-json-file@^2.2.0: 3828 | version "2.3.0" 3829 | resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-2.3.0.tgz#2b64c8a33004d54b8698c76d585a77ceb61da32f" 3830 | dependencies: 3831 | detect-indent "^5.0.0" 3832 | graceful-fs "^4.1.2" 3833 | make-dir "^1.0.0" 3834 | pify "^3.0.0" 3835 | sort-keys "^2.0.0" 3836 | write-file-atomic "^2.0.0" 3837 | 3838 | write-pkg@^3.1.0: 3839 | version "3.1.0" 3840 | resolved "https://registry.yarnpkg.com/write-pkg/-/write-pkg-3.1.0.tgz#030a9994cc9993d25b4e75a9f1a1923607291ce9" 3841 | dependencies: 3842 | sort-keys "^2.0.0" 3843 | write-json-file "^2.2.0" 3844 | 3845 | write@^0.2.1: 3846 | version "0.2.1" 3847 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 3848 | dependencies: 3849 | mkdirp "^0.5.1" 3850 | 3851 | xdg-basedir@^3.0.0: 3852 | version "3.0.0" 3853 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" 3854 | 3855 | xo-init@^0.7.0: 3856 | version "0.7.0" 3857 | resolved "https://registry.yarnpkg.com/xo-init/-/xo-init-0.7.0.tgz#634b4789e366b4f87f747ef0cee1a99ce273aa15" 3858 | dependencies: 3859 | arrify "^1.0.0" 3860 | execa "^0.9.0" 3861 | has-yarn "^1.0.0" 3862 | minimist "^1.1.3" 3863 | path-exists "^3.0.0" 3864 | read-pkg-up "^3.0.0" 3865 | the-argv "^1.0.0" 3866 | write-pkg "^3.1.0" 3867 | 3868 | xo@^0.24.0: 3869 | version "0.24.0" 3870 | resolved "https://registry.yarnpkg.com/xo/-/xo-0.24.0.tgz#f931ff453f3440919d51da908591371e8ed714e0" 3871 | dependencies: 3872 | arrify "^1.0.1" 3873 | debug "^4.1.0" 3874 | eslint "^5.12.0" 3875 | eslint-config-prettier "^3.3.0" 3876 | eslint-config-xo "^0.26.0" 3877 | eslint-formatter-pretty "^2.0.0" 3878 | eslint-plugin-ava "^5.1.0" 3879 | eslint-plugin-eslint-comments "^3.0.1" 3880 | eslint-plugin-import "^2.14.0" 3881 | eslint-plugin-no-use-extend-native "^0.4.0" 3882 | eslint-plugin-node "^8.0.0" 3883 | eslint-plugin-prettier "^3.0.0" 3884 | eslint-plugin-promise "^4.0.0" 3885 | eslint-plugin-unicorn "^7.0.0" 3886 | find-cache-dir "^2.0.0" 3887 | get-stdin "^6.0.0" 3888 | globby "^9.0.0" 3889 | has-flag "^3.0.0" 3890 | lodash.isequal "^4.5.0" 3891 | lodash.mergewith "^4.6.1" 3892 | meow "^5.0.0" 3893 | multimatch "^3.0.0" 3894 | open-editor "^1.2.0" 3895 | path-exists "^3.0.0" 3896 | pkg-conf "^2.1.0" 3897 | prettier "^1.15.2" 3898 | resolve-cwd "^2.0.0" 3899 | resolve-from "^4.0.0" 3900 | semver "^5.5.0" 3901 | slash "^2.0.0" 3902 | update-notifier "^2.3.0" 3903 | xo-init "^0.7.0" 3904 | 3905 | y18n@^3.2.1: 3906 | version "3.2.2" 3907 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.2.tgz#85c901bd6470ce71fc4bb723ad209b70f7f28696" 3908 | 3909 | y18n@^4.0.0: 3910 | version "4.0.0" 3911 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" 3912 | 3913 | yallist@^2.1.2: 3914 | version "2.1.2" 3915 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3916 | 3917 | yallist@^3.0.0: 3918 | version "3.0.2" 3919 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.2.tgz#8452b4bb7e83c7c188d8041c1a837c773d6d8bb9" 3920 | 3921 | yapool@^1.0.0: 3922 | version "1.0.0" 3923 | resolved "https://registry.yarnpkg.com/yapool/-/yapool-1.0.0.tgz#f693f29a315b50d9a9da2646a7a6645c96985b6a" 3924 | 3925 | yargs-parser@^10.0.0: 3926 | version "10.0.0" 3927 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-10.0.0.tgz#c737c93de2567657750cb1f2c00be639fd19c994" 3928 | dependencies: 3929 | camelcase "^4.1.0" 3930 | 3931 | yargs-parser@^13.0.0, yargs-parser@^13.1.1: 3932 | version "13.1.1" 3933 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.1.tgz#d26058532aa06d365fe091f6a1fc06b2f7e5eca0" 3934 | dependencies: 3935 | camelcase "^5.0.0" 3936 | decamelize "^1.2.0" 3937 | 3938 | yargs-parser@^8.1.0: 3939 | version "8.1.0" 3940 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-8.1.0.tgz#f1376a33b6629a5d063782944da732631e966950" 3941 | dependencies: 3942 | camelcase "^4.1.0" 3943 | 3944 | yargs@^10.0.3: 3945 | version "10.1.2" 3946 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-10.1.2.tgz#454d074c2b16a51a43e2fb7807e4f9de69ccb5c5" 3947 | dependencies: 3948 | cliui "^4.0.0" 3949 | decamelize "^1.1.1" 3950 | find-up "^2.1.0" 3951 | get-caller-file "^1.0.1" 3952 | os-locale "^2.0.0" 3953 | require-directory "^2.1.1" 3954 | require-main-filename "^1.0.1" 3955 | set-blocking "^2.0.0" 3956 | string-width "^2.0.0" 3957 | which-module "^2.0.0" 3958 | y18n "^3.2.1" 3959 | yargs-parser "^8.1.0" 3960 | 3961 | yargs@^13.2.2: 3962 | version "13.3.0" 3963 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.3.0.tgz#4c657a55e07e5f2cf947f8a366567c04a0dedc83" 3964 | dependencies: 3965 | cliui "^5.0.0" 3966 | find-up "^3.0.0" 3967 | get-caller-file "^2.0.1" 3968 | require-directory "^2.1.1" 3969 | require-main-filename "^2.0.0" 3970 | set-blocking "^2.0.0" 3971 | string-width "^3.0.0" 3972 | which-module "^2.0.0" 3973 | y18n "^4.0.0" 3974 | yargs-parser "^13.1.1" 3975 | 3976 | yn@3.1.1: 3977 | version "3.1.1" 3978 | resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" 3979 | --------------------------------------------------------------------------------