├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── module.js ├── package.json ├── rollup.config.js ├── test ├── fixtures │ ├── bundle.js │ ├── import-a.js │ └── import-b.js └── index.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | 6 | # Runtime data 7 | pids 8 | *.pid 9 | *.seed 10 | *.pid.lock 11 | 12 | # Directory for instrumented libs generated by jscoverage/JSCover 13 | lib-cov 14 | 15 | # Coverage directory used by tools like istanbul 16 | coverage 17 | 18 | # nyc test coverage 19 | .nyc_output 20 | 21 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 22 | .grunt 23 | 24 | # node-waf configuration 25 | .lock-wscript 26 | 27 | # Compiled binary addons (http://nodejs.org/api/addons.html) 28 | build/Release 29 | 30 | # Dependency directories 31 | node_modules 32 | jspm_packages 33 | 34 | # Optional npm cache directory 35 | .npm 36 | 37 | # Optional REPL history 38 | .node_repl_history 39 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 9 4 | - 8 5 | - 6 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 Andrew Carpenter 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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # DEPRECATED 2 | 3 | Due to a number of enhancements only available in plugin hooks this module is of no value over the plugin. There are allot of new goodies avilable in the new plugin repo. 4 | 5 | ## Please use [rollup-plugin-analyzer](https://github.com/doesdev/rollup-plugin-analyzer) 6 | 7 | ### * The prior plugin module is also no longer active, in favor of using Rollup's standardized naming format for plugins. 8 | 9 | #### So again, please use [rollup-plugin-analyzer](https://github.com/doesdev/rollup-plugin-analyzer) rather than anything listed down the page. 10 | 11 | # rollup-analyzer [![NPM version](https://badge.fury.io/js/rollup-analyzer.svg)](https://npmjs.org/package/rollup-analyzer) [![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat)](https://github.com/feross/standard) [![Dependency Status](https://dependencyci.com/github/doesdev/rollup-analyzer/badge)](https://dependencyci.com/github/doesdev/rollup-analyzer) [![Build Status](https://travis-ci.com/doesdev/rollup-analyzer.svg)](https://travis-ci.com/doesdev/rollup-analyzer) 12 | 13 | > Analyze file sizes of rollup bundled imports 14 | 15 | ## rollup-analyzer 16 | 17 | Rollup Analyzer gives you a quick look at what's taking up space in your bundle. 18 | 19 | ### Comes in three scrumptious flavors: 20 | 21 | #### [rollup-analyzer-plugin](https://github.com/doesdev/rollup-analyzer-plugin) 22 | Adding as a plugin to your rollup config or build script will print a well 23 | formatted analysis to the console upon bundling. 24 | 25 | #### [rollup-analyzer-config](https://github.com/doesdev/rollup-analyzer-config) 26 | If using Rollup's CLI to bundle with no additonal config, pass 27 | `-c node:rollup-analyzer-config` to print a well formatted analysis to your console. 28 | 29 | #### [rollup-analyzer](https://github.com/doesdev/rollup-analyzer) 30 | Full analysis module, giving you access to the complete analysis object or well 31 | formatted analysis text for CI and build usage. 32 | 33 | ## Install 34 | 35 | ```sh 36 | $ npm install --save-dev rollup-analyzer 37 | ``` 38 | 39 | ## Usage 40 | 41 | ```js 42 | import { rollup } from 'rollup' 43 | const { formatted } from 'rollup-analyzer' 44 | 45 | rollup({/*...*/}).then((bundle) => { 46 | // print console optimized analysis string 47 | formatted(bundle, {limit: 5}).then(console.log).catch(console.error) 48 | }) 49 | 50 | // Results in ... 51 | /* 52 | ----------------------------- 53 | Rollup File Analysis 54 | ----------------------------- 55 | bundle size: 1.146 MB 56 | ----------------------------- 57 | file: \node_modules\html5-history-api\history.js 58 | size: 38.502 KB 59 | percent: 3.36% 60 | dependents: 1 61 | - \app\modules\page.js 62 | ----------------------------- 63 | file: \node_modules\pikaday\pikaday.js 64 | size: 34.683 KB 65 | percent: 3.03% 66 | dependents: 1 67 | - \app\helpers\transformer.js 68 | ... 69 | */ 70 | ``` 71 | 72 | ## API 73 | 74 | Module exports `analyze`, `formatted`, and `plugin` functions 75 | 76 | ### formatted(bundle, options) 77 | - arguments 78 | - **bundle** *(Rollup Bundle)* 79 | - **options** *(Object - see below for available options)* 80 | - returns 81 | - **analysisText** *(String - well formatted for console printing)* 82 | 83 | ### analyze(bundle, options) 84 | - arguments 85 | - **bundle** *(Rollup Bundle)* 86 | - **options** *(Object - see below for available options)* 87 | - returns 88 | - **analysis** *(Object)* 89 | - **id** *(String)* - path of module / rollup module id 90 | - **size** *(Number)* - size of module in bytes 91 | - **dependents** *(Array)* - list of dependent module ids / paths 92 | - **percent** *(Number)* - percentage of module size relative to entire bundle 93 | 94 | #### options `Object` 95 | - **limit** - *optional* 96 | - type: Number 97 | - default: `null` 98 | - description: Limit number of files to output analysis of, sorted by DESC size 99 | - **filter** - *optional* 100 | - type: Array | String 101 | - default: `null` 102 | - description: Filter to only show imports matching the specified name(s) 103 | - **root** - *optional* 104 | - type: String 105 | - default: `process.cwd()` 106 | - description: Application directory, used to display file paths relatively 107 | 108 | ## License 109 | 110 | MIT © [Andrew Carpenter](https://github.com/doesdev) 111 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, '__esModule', { value: true }); 4 | 5 | const buf = ' '; 6 | const tab = ' '; 7 | const borderX = `${Array(30).join('-')}\n`; 8 | const formatBytes = (bytes) => { 9 | if (bytes === 0) return '0 Byte' 10 | let k = 1000; 11 | let dm = 3; 12 | let sizes = ['Bytes', 'KB', 'MB', 'GB']; 13 | let i = Math.floor(Math.log(bytes) / Math.log(k)); 14 | return parseFloat((bytes / Math.pow(k, i)).toFixed(dm)) + ' ' + sizes[i] 15 | }; 16 | 17 | const analyze = (bundle, opts = {}, format = false) => { 18 | let { root, limit, filter } = opts; 19 | let deps = {}; 20 | let entrySize; 21 | let bundleSize = 0; 22 | let bundleModules = bundle.modules; 23 | 24 | return new Promise((resolve, reject) => { 25 | let modules = bundleModules.map((m, i) => { 26 | let { id, originalLength: origSize, renderedLength, isEntry, code } = m; 27 | id = id.replace(root, ''); 28 | let size = renderedLength; 29 | if (!size && size !== 0) size = code ? Buffer.byteLength(code, 'utf8') : 0; 30 | if (isEntry) entrySize = size; 31 | bundleSize += size; 32 | 33 | if (Array.isArray(filter) && !filter.some((f) => id.match(f))) return null 34 | if (typeof filter === 'string' && !id.match(filter)) return null 35 | 36 | m.dependencies.forEach((d) => { 37 | d = d.replace(root, ''); 38 | deps[d] = deps[d] || []; 39 | deps[d].push(id); 40 | }); 41 | 42 | return {id, size, origSize, isEntry} 43 | }).filter((m) => m); 44 | 45 | if (entrySize) bundleSize = entrySize; 46 | 47 | modules.sort((a, b) => b.size - a.size); 48 | if (limit || limit === 0) modules = modules.slice(0, limit); 49 | modules.forEach((m) => { 50 | m.dependents = deps[m.id] || []; 51 | m.percent = ((m.size / bundleSize) * 100).toFixed(2); 52 | m.reduction = 100 - ((m.size / m.origSize) * 100).toFixed(2); 53 | }); 54 | 55 | if (!format) return resolve(modules) 56 | 57 | let heading = `Rollup File Analysis\n`; 58 | let displaySize = `${borderX}bundle size: ${formatBytes(bundleSize)}\n`; 59 | let formatted = `${borderX}${heading}${displaySize}${borderX}`; 60 | 61 | modules.forEach((m) => { 62 | if (m.isEntry) return 63 | formatted += `file:${buf}${m.id}\n`; 64 | formatted += `size:${buf}${formatBytes(m.size)}\n`; 65 | formatted += `percent:${buf}${m.percent}%\n`; 66 | formatted += `orig. size:${buf}${formatBytes(m.origSize || 'unknown')}\n`; 67 | formatted += `code reduction:${buf}${m.reduction}%\n`; 68 | formatted += `dependents:${buf}${m.dependents.length}\n`; 69 | m.dependents.forEach((d) => { 70 | formatted += `${tab}-${buf}${d.replace(root, '')}\n`; 71 | }); 72 | formatted += `${borderX}`; 73 | }); 74 | 75 | return resolve(formatted) 76 | }) 77 | }; 78 | 79 | const formatted = (bndl, opts) => analyze(bndl, opts, true); 80 | 81 | const plugin = (opts = {}) => { 82 | let cb = opts.writeTo || (opts.stdout ? console.log : console.error); 83 | if (opts.onAnalysis) cb = opts.onAnalysis; 84 | let written; 85 | let modules; 86 | 87 | let runAnalysis = (out, bundle, isWrite) => new Promise((resolve, reject) => { 88 | resolve(); 89 | if (written) return 90 | written = true; 91 | if (out.bundle) bundle = out.bundle; 92 | if (!Array.isArray(bundle.modules)) { 93 | modules.forEach((m) => { 94 | let bm = bundle.modules[m.id]; 95 | bm.id = bm.id || m.id; 96 | bm.isEntry = bm.isEntry || m.isEntry; 97 | bm.dependencies = m.dependencies || []; 98 | }); 99 | modules = Object.keys(bundle.modules).map((k) => bundle.modules[k]); 100 | } else { 101 | modules = bundle.modules; 102 | } 103 | return analyze({modules}, opts, !opts.onAnalysis).then(cb) 104 | }); 105 | return { 106 | name: 'rollup-analyzer-plugin', 107 | transformChunk: (_a, _b, chunk) => new Promise((resolve, reject) => { 108 | resolve(null); 109 | if (!chunk || !chunk.orderedModules) return 110 | modules = chunk.orderedModules.map((m) => { 111 | return { 112 | id: m.id, 113 | isEntry: m.isEntryPoint, 114 | dependencies: m.dependencies.map((d) => d.id) 115 | } 116 | }); 117 | }), 118 | generateBundle: runAnalysis, 119 | ongenerate: runAnalysis 120 | } 121 | }; 122 | 123 | exports.analyze = analyze; 124 | exports.formatted = formatted; 125 | exports.plugin = plugin; 126 | -------------------------------------------------------------------------------- /module.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const buf = ' ' 4 | const tab = ' ' 5 | const borderX = `${Array(30).join('-')}\n` 6 | const formatBytes = (bytes) => { 7 | if (bytes === 0) return '0 Byte' 8 | let k = 1000 9 | let dm = 3 10 | let sizes = ['Bytes', 'KB', 'MB', 'GB'] 11 | let i = Math.floor(Math.log(bytes) / Math.log(k)) 12 | return parseFloat((bytes / Math.pow(k, i)).toFixed(dm)) + ' ' + sizes[i] 13 | } 14 | 15 | export const analyze = (bundle, opts = {}, format = false) => { 16 | let { root, limit, filter } = opts 17 | let deps = {} 18 | let entrySize 19 | let bundleSize = 0 20 | let bundleModules = bundle.modules 21 | 22 | return new Promise((resolve, reject) => { 23 | let modules = bundleModules.map((m, i) => { 24 | let { id, originalLength: origSize, renderedLength, isEntry, code } = m 25 | id = id.replace(root, '') 26 | let size = renderedLength 27 | if (!size && size !== 0) size = code ? Buffer.byteLength(code, 'utf8') : 0 28 | if (isEntry) entrySize = size 29 | bundleSize += size 30 | 31 | if (Array.isArray(filter) && !filter.some((f) => id.match(f))) return null 32 | if (typeof filter === 'string' && !id.match(filter)) return null 33 | 34 | m.dependencies.forEach((d) => { 35 | d = d.replace(root, '') 36 | deps[d] = deps[d] || [] 37 | deps[d].push(id) 38 | }) 39 | 40 | return {id, size, origSize, isEntry} 41 | }).filter((m) => m) 42 | 43 | if (entrySize) bundleSize = entrySize 44 | 45 | modules.sort((a, b) => b.size - a.size) 46 | if (limit || limit === 0) modules = modules.slice(0, limit) 47 | modules.forEach((m) => { 48 | m.dependents = deps[m.id] || [] 49 | m.percent = ((m.size / bundleSize) * 100).toFixed(2) 50 | m.reduction = 100 - ((m.size / m.origSize) * 100).toFixed(2) 51 | }) 52 | 53 | if (!format) return resolve(modules) 54 | 55 | let heading = `Rollup File Analysis\n` 56 | let displaySize = `${borderX}bundle size: ${formatBytes(bundleSize)}\n` 57 | let formatted = `${borderX}${heading}${displaySize}${borderX}` 58 | 59 | modules.forEach((m) => { 60 | if (m.isEntry) return 61 | formatted += `file:${buf}${m.id}\n` 62 | formatted += `size:${buf}${formatBytes(m.size)}\n` 63 | formatted += `percent:${buf}${m.percent}%\n` 64 | formatted += `orig. size:${buf}${formatBytes(m.origSize || 'unknown')}\n` 65 | formatted += `code reduction:${buf}${m.reduction}%\n` 66 | formatted += `dependents:${buf}${m.dependents.length}\n` 67 | m.dependents.forEach((d) => { 68 | formatted += `${tab}-${buf}${d.replace(root, '')}\n` 69 | }) 70 | formatted += `${borderX}` 71 | }) 72 | 73 | return resolve(formatted) 74 | }) 75 | } 76 | 77 | export const formatted = (bndl, opts) => analyze(bndl, opts, true) 78 | 79 | export const plugin = (opts = {}) => { 80 | let cb = opts.writeTo || (opts.stdout ? console.log : console.error) 81 | if (opts.onAnalysis) cb = opts.onAnalysis 82 | let written 83 | let modules 84 | 85 | let runAnalysis = (out, bundle, isWrite) => new Promise((resolve, reject) => { 86 | resolve() 87 | if (written) return 88 | written = true 89 | if (out.bundle) bundle = out.bundle 90 | if (!Array.isArray(bundle.modules)) { 91 | modules.forEach((m) => { 92 | let bm = bundle.modules[m.id] 93 | bm.id = bm.id || m.id 94 | bm.isEntry = bm.isEntry || m.isEntry 95 | bm.dependencies = m.dependencies || [] 96 | }) 97 | modules = Object.keys(bundle.modules).map((k) => bundle.modules[k]) 98 | } else { 99 | modules = bundle.modules 100 | } 101 | return analyze({modules}, opts, !opts.onAnalysis).then(cb) 102 | }) 103 | return { 104 | name: 'rollup-analyzer-plugin', 105 | transformChunk: (_a, _b, chunk) => new Promise((resolve, reject) => { 106 | resolve(null) 107 | if (!chunk || !chunk.orderedModules) return 108 | modules = chunk.orderedModules.map((m) => { 109 | return { 110 | id: m.id, 111 | isEntry: m.isEntryPoint, 112 | dependencies: m.dependencies.map((d) => d.id) 113 | } 114 | }) 115 | }), 116 | generateBundle: runAnalysis, 117 | ongenerate: runAnalysis 118 | } 119 | } 120 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "rollup-analyzer", 3 | "version": "2.0.0-beta.3", 4 | "description": "Analyze file sizes of rollup bundled imports", 5 | "main": "index.js", 6 | "module": "module.js", 7 | "files": [ 8 | "index.js", 9 | "module.js" 10 | ], 11 | "scripts": { 12 | "test": "rollup -c && ava --verbose", 13 | "precommit": "rollup -c && ava && git add index.js" 14 | }, 15 | "repository": { 16 | "type": "git", 17 | "url": "git+https://github.com/doesdev/rollup-analyzer.git" 18 | }, 19 | "keywords": [ 20 | "rollup", 21 | "import", 22 | "bundle", 23 | "file", 24 | "size", 25 | "analysis", 26 | "analyze", 27 | "bloat" 28 | ], 29 | "author": "Andrew Carpenter (https://github.com/doesdev)", 30 | "license": "MIT", 31 | "bugs": { 32 | "url": "https://github.com/doesdev/rollup-analyzer/issues" 33 | }, 34 | "homepage": "https://github.com/doesdev/rollup-analyzer#readme", 35 | "devDependencies": { 36 | "ava": "^0.25.0", 37 | "husky": "^0.14.3", 38 | "rollup": "^0.60.1", 39 | "rollup40": "npm:rollup@0.40.x", 40 | "rollup45": "npm:rollup@0.45.x", 41 | "rollup50": "npm:rollup@0.50.x", 42 | "rollup55": "npm:rollup@0.55.x", 43 | "rollup60": "npm:rollup@0.60.x" 44 | }, 45 | "dependencies": {} 46 | } 47 | -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | // how meta 4 | export default { 5 | input: 'module.js', 6 | output: { 7 | file: 'index.js', 8 | format: 'cjs' 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /test/fixtures/bundle.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | import { aSmallConst } from './import-a' 4 | import { anotherSmallConst } from './import-b' 5 | 6 | console.log(aSmallConst.length, anotherSmallConst.length) 7 | -------------------------------------------------------------------------------- /test/fixtures/import-a.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | export const aSmallConst = '1234' 4 | 5 | export const aLargeConst = ` 6 | The unanimous Declaration of the thirteen united States of America, When in the Course of human events, it becomes necessary for one people to dissolve the political bands which have connected them with another, and to assume among the powers of the earth, the separate and equal station to which the Laws of Nature and of Nature's God entitle them, a decent respect to the opinions of mankind requires that they should declare the causes which impel them to the separation. 7 | 8 | We hold these truths to be self-evident, that all men are created equal, that they are endowed by their Creator with certain unalienable Rights, that among these are Life, Liberty and the pursuit of Happiness.--That to secure these rights, Governments are instituted among Men, deriving their just powers from the consent of the governed, --That whenever any Form of Government becomes destructive of these ends, it is the Right of the People to alter or to abolish it, and to institute new Government, laying its foundation on such principles and organizing its powers in such form, as to them shall seem most likely to effect their Safety and Happiness. Prudence, indeed, will dictate that Governments long established should not be changed for light and transient causes; and accordingly all experience hath shewn, that mankind are more disposed to suffer, while evils are sufferable, than to right themselves by abolishing the forms to which they are accustomed. But when a long train of abuses and usurpations, pursuing invariably the same Object evinces a design to reduce them under absolute Despotism, it is their right, it is their duty, to throw off such Government, and to provide new Guards for their future security.--Such has been the patient sufferance of these Colonies; and such is now the necessity which constrains them to alter their former Systems of Government. The history of the present King of Great Britain is a history of repeated injuries and usurpations, all having in direct object the establishment of an absolute Tyranny over these States. To prove this, let Facts be submitted to a candid world. 9 | 10 | He has refused his Assent to Laws, the most wholesome and necessary for the public good. 11 | 12 | He has forbidden his Governors to pass Laws of immediate and pressing importance, unless suspended in their operation till his Assent should be obtained; and when so suspended, he has utterly neglected to attend to them. 13 | 14 | He has refused to pass other Laws for the accommodation of large districts of people, unless those people would relinquish the right of Representation in the Legislature, a right inestimable to them and formidable to tyrants only. 15 | 16 | He has called together legislative bodies at places unusual, uncomfortable, and distant from the depository of their public Records, for the sole purpose of fatiguing them into compliance with his measures. 17 | 18 | He has dissolved Representative Houses repeatedly, for opposing with manly firmness his invasions on the rights of the people. 19 | 20 | He has refused for a long time, after such dissolutions, to cause others to be elected; whereby the Legislative powers, incapable of Annihilation, have returned to the People at large for their exercise; the State remaining in the mean time exposed to all the dangers of invasion from without, and convulsions within. 21 | 22 | He has endeavoured to prevent the population of these States; for that purpose obstructing the Laws for Naturalization of Foreigners; refusing to pass others to encourage their migrations hither, and raising the conditions of new Appropriations of Lands. 23 | 24 | He has obstructed the Administration of Justice, by refusing his Assent to Laws for establishing Judiciary powers. 25 | 26 | He has made Judges dependent on his Will alone, for the tenure of their offices, and the amount and payment of their salaries. 27 | 28 | He has erected a multitude of New Offices, and sent hither swarms of Officers to harrass our people, and eat out their substance. 29 | 30 | He has kept among us, in times of peace, Standing Armies without the Consent of our legislatures. 31 | 32 | He has affected to render the Military independent of and superior to the Civil power. 33 | 34 | He has combined with others to subject us to a jurisdiction foreign to our constitution, and unacknowledged by our laws; giving his Assent to their Acts of pretended Legislation: 35 | 36 | For Quartering large bodies of armed troops among us: 37 | 38 | For protecting them, by a mock Trial, from punishment for any Murders which they should commit on the Inhabitants of these States: 39 | 40 | For cutting off our Trade with all parts of the world: 41 | 42 | For imposing Taxes on us without our Consent: 43 | 44 | For depriving us in many cases, of the benefits of Trial by Jury: 45 | 46 | For transporting us beyond Seas to be tried for pretended offences 47 | 48 | For abolishing the free System of English Laws in a neighbouring Province, establishing therein an Arbitrary government, and enlarging its Boundaries so as to render it at once an example and fit instrument for introducing the same absolute rule into these Colonies: 49 | 50 | For taking away our Charters, abolishing our most valuable Laws, and altering fundamentally the Forms of our Governments: 51 | 52 | For suspending our own Legislatures, and declaring themselves invested with power to legislate for us in all cases whatsoever. 53 | 54 | He has abdicated Government here, by declaring us out of his Protection and waging War against us. 55 | 56 | He has plundered our seas, ravaged our Coasts, burnt our towns, and destroyed the lives of our people. 57 | 58 | He is at this time transporting large Armies of foreign Mercenaries to compleat the works of death, desolation and tyranny, already begun with circumstances of Cruelty & perfidy scarcely paralleled in the most barbarous ages, and totally unworthy the Head of a civilized nation. 59 | 60 | He has constrained our fellow Citizens taken Captive on the high Seas to bear Arms against their Country, to become the executioners of their friends and Brethren, or to fall themselves by their Hands. 61 | 62 | He has excited domestic insurrections amongst us, and has endeavoured to bring on the inhabitants of our frontiers, the merciless Indian Savages, whose known rule of warfare, is an undistinguished destruction of all ages, sexes and conditions. 63 | 64 | In every stage of these Oppressions We have Petitioned for Redress in the most humble terms: Our repeated Petitions have been answered only by repeated injury. A Prince whose character is thus marked by every act which may define a Tyrant, is unfit to be the ruler of a free people. 65 | 66 | Nor have We been wanting in attentions to our Brittish brethren. We have warned them from time to time of attempts by their legislature to extend an unwarrantable jurisdiction over us. We have reminded them of the circumstances of our emigration and settlement here. We have appealed to their native justice and magnanimity, and we have conjured them by the ties of our common kindred to disavow these usurpations, which, would inevitably interrupt our connections and correspondence. They too have been deaf to the voice of justice and of consanguinity. We must, therefore, acquiesce in the necessity, which denounces our Separation, and hold them, as we hold the rest of mankind, Enemies in War, in Peace Friends. 67 | 68 | We, therefore, the Representatives of the united States of America, in General Congress, Assembled, appealing to the Supreme Judge of the world for the rectitude of our intentions, do, in the Name, and by Authority of the good People of these Colonies, solemnly publish and declare, That these United Colonies are, and of Right ought to be Free and Independent States; that they are Absolved from all Allegiance to the British Crown, and that all political connection between them and the State of Great Britain, is and ought to be totally dissolved; and that as Free and Independent States, they have full Power to levy War, conclude Peace, contract Alliances, establish Commerce, and to do all other Acts and Things which Independent States may of right do. And for the support of this Declaration, with a firm reliance on the protection of divine Providence, we mutually pledge to each other our Lives, our Fortunes and our sacred Honor. 69 | ` 70 | -------------------------------------------------------------------------------- /test/fixtures/import-b.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | export const anotherSmallConst = 'abcd' 4 | -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | // setup 4 | import test from 'ava' 5 | import { analyze, formatted, plugin } from './../index' 6 | import { resolve, join } from 'path' 7 | import { rollup as rollupLatest } from 'rollup' 8 | import { rollup as rollup60 } from 'rollup60' 9 | import { rollup as rollup55 } from 'rollup55' 10 | import { rollup as rollup50 } from 'rollup50' 11 | import { rollup as rollup45 } from 'rollup45' 12 | import { rollup as rollup40 } from 'rollup40' 13 | const fixtures = resolve(__dirname, 'fixtures') 14 | const baseOpts = { 15 | input: join(fixtures, 'bundle.js'), 16 | output: {format: 'cjs'} 17 | } 18 | const oldOpts = { 19 | entry: join(fixtures, 'bundle.js'), 20 | format: 'cjs' 21 | } 22 | const expectHeader = ` 23 | ----------------------------- 24 | Rollup File Analysis 25 | ----------------------------- 26 | `.trim() 27 | const headerLength = expectHeader.length 28 | 29 | // test against many versions of rollup 30 | const rollers = [ 31 | {rollup: rollupLatest, version: 'latest', opts: baseOpts}, 32 | {rollup: rollup60, version: '0.60.x', opts: baseOpts}, 33 | {rollup: rollup55, version: '0.55.x', opts: baseOpts, noTreeshake: true}, 34 | {rollup: rollup50, version: '0.50.x', opts: baseOpts, noTreeshake: true}, 35 | {rollup: rollup45, version: '0.45.x', opts: oldOpts, noTreeshake: true}, 36 | {rollup: rollup40, version: '0.40.x', opts: oldOpts, noTreeshake: true} 37 | ] 38 | 39 | // main 40 | rollers.forEach(({rollup, version, opts, noTreeshake}) => { 41 | test(`${version}: formatted returns expected string`, async (assert) => { 42 | let bundle = await rollup(opts) 43 | let results = await formatted(bundle) 44 | assert.is(results.substr(0, headerLength), expectHeader) 45 | }) 46 | 47 | test(`${version}: analyze returns array`, async (assert) => { 48 | let bundle = await rollup(opts) 49 | let results = await analyze(bundle) 50 | assert.true(Array.isArray(results)) 51 | }) 52 | 53 | test(`${version}: analysis child objects have expected properties`, async (assert) => { 54 | let bundle = await rollup(opts) 55 | let result = (await analyze(bundle))[0] 56 | assert.true('id' in result) 57 | assert.true('size' in result) 58 | assert.true('dependents' in result) 59 | assert.true('percent' in result) 60 | }) 61 | 62 | test(`${version}: limit works`, async (assert) => { 63 | let bundle = await rollup(opts) 64 | assert.is((await analyze(bundle, {limit: 0})).length, 0) 65 | assert.is((await analyze(bundle, {limit: 1})).length, 1) 66 | assert.is((await analyze(bundle, {limit: 0})).length, 0) 67 | }) 68 | 69 | test(`${version}: filter with array works`, async (assert) => { 70 | let bundle = await rollup(opts) 71 | assert.is((await analyze(bundle, {filter: ['jimmy', 'jerry']})).length, 0) 72 | assert.is((await analyze(bundle, {filter: ['import-a', 'jessie']})).length, 1) 73 | }) 74 | 75 | test(`${version}: filter with string works`, async (assert) => { 76 | let bundle = await rollup(opts) 77 | assert.is((await analyze(bundle, {filter: 'jimmy'})).length, 0) 78 | assert.is((await analyze(bundle, {filter: 'import-b'})).length, 1) 79 | }) 80 | 81 | test(`${version}: root works as expected`, async (assert) => { 82 | let bundle = await rollup(opts) 83 | assert.not( 84 | join(__dirname, (await analyze(bundle, {root: 'fakepath'}))[0].id), 85 | resolve(fixtures, 'import-a.js') 86 | ) 87 | assert.is( 88 | join(__dirname, (await analyze(bundle, {root: __dirname}))[0].id), 89 | resolve(fixtures, 'import-a.js') 90 | ) 91 | }) 92 | 93 | test(`${version}: it works with generated bundle as well`, async (assert) => { 94 | let bundle = await rollup(opts) 95 | await bundle.generate({format: 'cjs'}) 96 | let results = await formatted(bundle) 97 | assert.is(typeof results, 'string') 98 | }) 99 | 100 | test(`${version}: plugin writes expected results`, async (assert) => { 101 | let results 102 | let writeTo = (r) => { results = r } 103 | let rollOpts = Object.assign({plugins: [plugin({writeTo})]}, opts) 104 | let bundle = await rollup(rollOpts) 105 | await bundle.generate({format: 'cjs'}) 106 | assert.is(results.substr(0, expectHeader.length), expectHeader) 107 | }) 108 | 109 | if (!noTreeshake) { 110 | test(`${version}: tree shaking is accounted for`, async (assert) => { 111 | let results 112 | let onAnalysis = (r) => { results = r } 113 | let rollOpts = Object.assign({plugins: [plugin({onAnalysis})]}, opts) 114 | let bundle = await rollup(rollOpts) 115 | await bundle.generate({format: 'cjs'}) 116 | let imported = results.find((r) => r.id.indexOf('import-a') !== -1) 117 | assert.is(imported.size, 27) 118 | }) 119 | } 120 | }) 121 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@ava/babel-plugin-throws-helper@^2.0.0": 6 | version "2.0.0" 7 | resolved "https://registry.yarnpkg.com/@ava/babel-plugin-throws-helper/-/babel-plugin-throws-helper-2.0.0.tgz#2fc1fe3c211a71071a4eca7b8f7af5842cd1ae7c" 8 | 9 | "@ava/babel-preset-stage-4@^1.1.0": 10 | version "1.1.0" 11 | resolved "https://registry.yarnpkg.com/@ava/babel-preset-stage-4/-/babel-preset-stage-4-1.1.0.tgz#ae60be881a0babf7d35f52aba770d1f6194f76bd" 12 | dependencies: 13 | babel-plugin-check-es2015-constants "^6.8.0" 14 | babel-plugin-syntax-trailing-function-commas "^6.20.0" 15 | babel-plugin-transform-async-to-generator "^6.16.0" 16 | babel-plugin-transform-es2015-destructuring "^6.19.0" 17 | babel-plugin-transform-es2015-function-name "^6.9.0" 18 | babel-plugin-transform-es2015-modules-commonjs "^6.18.0" 19 | babel-plugin-transform-es2015-parameters "^6.21.0" 20 | babel-plugin-transform-es2015-spread "^6.8.0" 21 | babel-plugin-transform-es2015-sticky-regex "^6.8.0" 22 | babel-plugin-transform-es2015-unicode-regex "^6.11.0" 23 | babel-plugin-transform-exponentiation-operator "^6.8.0" 24 | package-hash "^1.2.0" 25 | 26 | "@ava/babel-preset-transform-test-files@^3.0.0": 27 | version "3.0.0" 28 | resolved "https://registry.yarnpkg.com/@ava/babel-preset-transform-test-files/-/babel-preset-transform-test-files-3.0.0.tgz#cded1196a8d8d9381a509240ab92e91a5ec069f7" 29 | dependencies: 30 | "@ava/babel-plugin-throws-helper" "^2.0.0" 31 | babel-plugin-espower "^2.3.2" 32 | 33 | "@ava/write-file-atomic@^2.2.0": 34 | version "2.2.0" 35 | resolved "https://registry.yarnpkg.com/@ava/write-file-atomic/-/write-file-atomic-2.2.0.tgz#d625046f3495f1f5e372135f473909684b429247" 36 | dependencies: 37 | graceful-fs "^4.1.11" 38 | imurmurhash "^0.1.4" 39 | slide "^1.1.5" 40 | 41 | "@concordance/react@^1.0.0": 42 | version "1.0.0" 43 | resolved "https://registry.yarnpkg.com/@concordance/react/-/react-1.0.0.tgz#fcf3cad020e5121bfd1c61d05bc3516aac25f734" 44 | dependencies: 45 | arrify "^1.0.1" 46 | 47 | "@ladjs/time-require@^0.1.4": 48 | version "0.1.4" 49 | resolved "https://registry.yarnpkg.com/@ladjs/time-require/-/time-require-0.1.4.tgz#5c615d75fd647ddd5de9cf6922649558856b21a1" 50 | dependencies: 51 | chalk "^0.4.0" 52 | date-time "^0.1.1" 53 | pretty-ms "^0.2.1" 54 | text-table "^0.2.0" 55 | 56 | "@types/estree@0.0.39": 57 | version "0.0.39" 58 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f" 59 | 60 | "@types/node@*": 61 | version "10.3.2" 62 | resolved "https://registry.yarnpkg.com/@types/node/-/node-10.3.2.tgz#3840ec6c12556fdda6e0e6d036df853101d732a4" 63 | 64 | abbrev@1: 65 | version "1.1.1" 66 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 67 | 68 | ansi-align@^2.0.0: 69 | version "2.0.0" 70 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" 71 | dependencies: 72 | string-width "^2.0.0" 73 | 74 | ansi-escapes@^3.0.0: 75 | version "3.1.0" 76 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30" 77 | 78 | ansi-regex@^2.0.0: 79 | version "2.1.1" 80 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 81 | 82 | ansi-regex@^3.0.0: 83 | version "3.0.0" 84 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 85 | 86 | ansi-styles@^2.2.1: 87 | version "2.2.1" 88 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 89 | 90 | ansi-styles@^3.1.0, ansi-styles@^3.2.1: 91 | version "3.2.1" 92 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 93 | dependencies: 94 | color-convert "^1.9.0" 95 | 96 | ansi-styles@~1.0.0: 97 | version "1.0.0" 98 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-1.0.0.tgz#cb102df1c56f5123eab8b67cd7b98027a0279178" 99 | 100 | anymatch@^1.3.0: 101 | version "1.3.2" 102 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 103 | dependencies: 104 | micromatch "^2.1.5" 105 | normalize-path "^2.0.0" 106 | 107 | aproba@^1.0.3: 108 | version "1.2.0" 109 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 110 | 111 | are-we-there-yet@~1.1.2: 112 | version "1.1.5" 113 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" 114 | dependencies: 115 | delegates "^1.0.0" 116 | readable-stream "^2.0.6" 117 | 118 | argparse@^1.0.7: 119 | version "1.0.10" 120 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 121 | dependencies: 122 | sprintf-js "~1.0.2" 123 | 124 | arr-diff@^2.0.0: 125 | version "2.0.0" 126 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 127 | dependencies: 128 | arr-flatten "^1.0.1" 129 | 130 | arr-exclude@^1.0.0: 131 | version "1.0.0" 132 | resolved "https://registry.yarnpkg.com/arr-exclude/-/arr-exclude-1.0.0.tgz#dfc7c2e552a270723ccda04cf3128c8cbfe5c631" 133 | 134 | arr-flatten@^1.0.1: 135 | version "1.1.0" 136 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 137 | 138 | array-differ@^1.0.0: 139 | version "1.0.0" 140 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" 141 | 142 | array-find-index@^1.0.1: 143 | version "1.0.2" 144 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 145 | 146 | array-union@^1.0.1: 147 | version "1.0.2" 148 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 149 | dependencies: 150 | array-uniq "^1.0.1" 151 | 152 | array-uniq@^1.0.1, array-uniq@^1.0.2: 153 | version "1.0.3" 154 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 155 | 156 | array-unique@^0.2.1: 157 | version "0.2.1" 158 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 159 | 160 | arrify@^1.0.0, arrify@^1.0.1: 161 | version "1.0.1" 162 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 163 | 164 | async-each@^1.0.0: 165 | version "1.0.1" 166 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 167 | 168 | auto-bind@^1.1.0: 169 | version "1.2.0" 170 | resolved "https://registry.yarnpkg.com/auto-bind/-/auto-bind-1.2.0.tgz#8b7e318aad53d43ba8a8ecaf0066d85d5f798cd6" 171 | 172 | ava-init@^0.2.0: 173 | version "0.2.1" 174 | resolved "https://registry.yarnpkg.com/ava-init/-/ava-init-0.2.1.tgz#75ac4c8553326290d2866e63b62fa7035684bd58" 175 | dependencies: 176 | arr-exclude "^1.0.0" 177 | execa "^0.7.0" 178 | has-yarn "^1.0.0" 179 | read-pkg-up "^2.0.0" 180 | write-pkg "^3.1.0" 181 | 182 | ava@^0.25.0: 183 | version "0.25.0" 184 | resolved "https://registry.yarnpkg.com/ava/-/ava-0.25.0.tgz#8ac87780514f96a6fd42e1306eaa0752ce3a407f" 185 | dependencies: 186 | "@ava/babel-preset-stage-4" "^1.1.0" 187 | "@ava/babel-preset-transform-test-files" "^3.0.0" 188 | "@ava/write-file-atomic" "^2.2.0" 189 | "@concordance/react" "^1.0.0" 190 | "@ladjs/time-require" "^0.1.4" 191 | ansi-escapes "^3.0.0" 192 | ansi-styles "^3.1.0" 193 | arr-flatten "^1.0.1" 194 | array-union "^1.0.1" 195 | array-uniq "^1.0.2" 196 | arrify "^1.0.0" 197 | auto-bind "^1.1.0" 198 | ava-init "^0.2.0" 199 | babel-core "^6.17.0" 200 | babel-generator "^6.26.0" 201 | babel-plugin-syntax-object-rest-spread "^6.13.0" 202 | bluebird "^3.0.0" 203 | caching-transform "^1.0.0" 204 | chalk "^2.0.1" 205 | chokidar "^1.4.2" 206 | clean-stack "^1.1.1" 207 | clean-yaml-object "^0.1.0" 208 | cli-cursor "^2.1.0" 209 | cli-spinners "^1.0.0" 210 | cli-truncate "^1.0.0" 211 | co-with-promise "^4.6.0" 212 | code-excerpt "^2.1.1" 213 | common-path-prefix "^1.0.0" 214 | concordance "^3.0.0" 215 | convert-source-map "^1.5.1" 216 | core-assert "^0.2.0" 217 | currently-unhandled "^0.4.1" 218 | debug "^3.0.1" 219 | dot-prop "^4.1.0" 220 | empower-core "^0.6.1" 221 | equal-length "^1.0.0" 222 | figures "^2.0.0" 223 | find-cache-dir "^1.0.0" 224 | fn-name "^2.0.0" 225 | get-port "^3.0.0" 226 | globby "^6.0.0" 227 | has-flag "^2.0.0" 228 | hullabaloo-config-manager "^1.1.0" 229 | ignore-by-default "^1.0.0" 230 | import-local "^0.1.1" 231 | indent-string "^3.0.0" 232 | is-ci "^1.0.7" 233 | is-generator-fn "^1.0.0" 234 | is-obj "^1.0.0" 235 | is-observable "^1.0.0" 236 | is-promise "^2.1.0" 237 | last-line-stream "^1.0.0" 238 | lodash.clonedeepwith "^4.5.0" 239 | lodash.debounce "^4.0.3" 240 | lodash.difference "^4.3.0" 241 | lodash.flatten "^4.2.0" 242 | loud-rejection "^1.2.0" 243 | make-dir "^1.0.0" 244 | matcher "^1.0.0" 245 | md5-hex "^2.0.0" 246 | meow "^3.7.0" 247 | ms "^2.0.0" 248 | multimatch "^2.1.0" 249 | observable-to-promise "^0.5.0" 250 | option-chain "^1.0.0" 251 | package-hash "^2.0.0" 252 | pkg-conf "^2.0.0" 253 | plur "^2.0.0" 254 | pretty-ms "^3.0.0" 255 | require-precompiled "^0.1.0" 256 | resolve-cwd "^2.0.0" 257 | safe-buffer "^5.1.1" 258 | semver "^5.4.1" 259 | slash "^1.0.0" 260 | source-map-support "^0.5.0" 261 | stack-utils "^1.0.1" 262 | strip-ansi "^4.0.0" 263 | strip-bom-buf "^1.0.0" 264 | supertap "^1.0.0" 265 | supports-color "^5.0.0" 266 | trim-off-newlines "^1.0.1" 267 | unique-temp-dir "^1.0.0" 268 | update-notifier "^2.3.0" 269 | 270 | babel-code-frame@^6.26.0: 271 | version "6.26.0" 272 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 273 | dependencies: 274 | chalk "^1.1.3" 275 | esutils "^2.0.2" 276 | js-tokens "^3.0.2" 277 | 278 | babel-core@^6.17.0, babel-core@^6.26.0: 279 | version "6.26.3" 280 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207" 281 | dependencies: 282 | babel-code-frame "^6.26.0" 283 | babel-generator "^6.26.0" 284 | babel-helpers "^6.24.1" 285 | babel-messages "^6.23.0" 286 | babel-register "^6.26.0" 287 | babel-runtime "^6.26.0" 288 | babel-template "^6.26.0" 289 | babel-traverse "^6.26.0" 290 | babel-types "^6.26.0" 291 | babylon "^6.18.0" 292 | convert-source-map "^1.5.1" 293 | debug "^2.6.9" 294 | json5 "^0.5.1" 295 | lodash "^4.17.4" 296 | minimatch "^3.0.4" 297 | path-is-absolute "^1.0.1" 298 | private "^0.1.8" 299 | slash "^1.0.0" 300 | source-map "^0.5.7" 301 | 302 | babel-generator@^6.1.0, babel-generator@^6.26.0: 303 | version "6.26.1" 304 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" 305 | dependencies: 306 | babel-messages "^6.23.0" 307 | babel-runtime "^6.26.0" 308 | babel-types "^6.26.0" 309 | detect-indent "^4.0.0" 310 | jsesc "^1.3.0" 311 | lodash "^4.17.4" 312 | source-map "^0.5.7" 313 | trim-right "^1.0.1" 314 | 315 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 316 | version "6.24.1" 317 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 318 | dependencies: 319 | babel-helper-explode-assignable-expression "^6.24.1" 320 | babel-runtime "^6.22.0" 321 | babel-types "^6.24.1" 322 | 323 | babel-helper-call-delegate@^6.24.1: 324 | version "6.24.1" 325 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 326 | dependencies: 327 | babel-helper-hoist-variables "^6.24.1" 328 | babel-runtime "^6.22.0" 329 | babel-traverse "^6.24.1" 330 | babel-types "^6.24.1" 331 | 332 | babel-helper-explode-assignable-expression@^6.24.1: 333 | version "6.24.1" 334 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 335 | dependencies: 336 | babel-runtime "^6.22.0" 337 | babel-traverse "^6.24.1" 338 | babel-types "^6.24.1" 339 | 340 | babel-helper-function-name@^6.24.1: 341 | version "6.24.1" 342 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 343 | dependencies: 344 | babel-helper-get-function-arity "^6.24.1" 345 | babel-runtime "^6.22.0" 346 | babel-template "^6.24.1" 347 | babel-traverse "^6.24.1" 348 | babel-types "^6.24.1" 349 | 350 | babel-helper-get-function-arity@^6.24.1: 351 | version "6.24.1" 352 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 353 | dependencies: 354 | babel-runtime "^6.22.0" 355 | babel-types "^6.24.1" 356 | 357 | babel-helper-hoist-variables@^6.24.1: 358 | version "6.24.1" 359 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 360 | dependencies: 361 | babel-runtime "^6.22.0" 362 | babel-types "^6.24.1" 363 | 364 | babel-helper-regex@^6.24.1: 365 | version "6.26.0" 366 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 367 | dependencies: 368 | babel-runtime "^6.26.0" 369 | babel-types "^6.26.0" 370 | lodash "^4.17.4" 371 | 372 | babel-helper-remap-async-to-generator@^6.24.1: 373 | version "6.24.1" 374 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 375 | dependencies: 376 | babel-helper-function-name "^6.24.1" 377 | babel-runtime "^6.22.0" 378 | babel-template "^6.24.1" 379 | babel-traverse "^6.24.1" 380 | babel-types "^6.24.1" 381 | 382 | babel-helpers@^6.24.1: 383 | version "6.24.1" 384 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 385 | dependencies: 386 | babel-runtime "^6.22.0" 387 | babel-template "^6.24.1" 388 | 389 | babel-messages@^6.23.0: 390 | version "6.23.0" 391 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 392 | dependencies: 393 | babel-runtime "^6.22.0" 394 | 395 | babel-plugin-check-es2015-constants@^6.8.0: 396 | version "6.22.0" 397 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 398 | dependencies: 399 | babel-runtime "^6.22.0" 400 | 401 | babel-plugin-espower@^2.3.2: 402 | version "2.4.0" 403 | resolved "https://registry.yarnpkg.com/babel-plugin-espower/-/babel-plugin-espower-2.4.0.tgz#9f92c080e9adfe73f69baed7ab3e24f649009373" 404 | dependencies: 405 | babel-generator "^6.1.0" 406 | babylon "^6.1.0" 407 | call-matcher "^1.0.0" 408 | core-js "^2.0.0" 409 | espower-location-detector "^1.0.0" 410 | espurify "^1.6.0" 411 | estraverse "^4.1.1" 412 | 413 | babel-plugin-syntax-async-functions@^6.8.0: 414 | version "6.13.0" 415 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 416 | 417 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 418 | version "6.13.0" 419 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 420 | 421 | babel-plugin-syntax-object-rest-spread@^6.13.0: 422 | version "6.13.0" 423 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 424 | 425 | babel-plugin-syntax-trailing-function-commas@^6.20.0: 426 | version "6.22.0" 427 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 428 | 429 | babel-plugin-transform-async-to-generator@^6.16.0: 430 | version "6.24.1" 431 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 432 | dependencies: 433 | babel-helper-remap-async-to-generator "^6.24.1" 434 | babel-plugin-syntax-async-functions "^6.8.0" 435 | babel-runtime "^6.22.0" 436 | 437 | babel-plugin-transform-es2015-destructuring@^6.19.0: 438 | version "6.23.0" 439 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 440 | dependencies: 441 | babel-runtime "^6.22.0" 442 | 443 | babel-plugin-transform-es2015-function-name@^6.9.0: 444 | version "6.24.1" 445 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 446 | dependencies: 447 | babel-helper-function-name "^6.24.1" 448 | babel-runtime "^6.22.0" 449 | babel-types "^6.24.1" 450 | 451 | babel-plugin-transform-es2015-modules-commonjs@^6.18.0: 452 | version "6.26.2" 453 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz#58a793863a9e7ca870bdc5a881117ffac27db6f3" 454 | dependencies: 455 | babel-plugin-transform-strict-mode "^6.24.1" 456 | babel-runtime "^6.26.0" 457 | babel-template "^6.26.0" 458 | babel-types "^6.26.0" 459 | 460 | babel-plugin-transform-es2015-parameters@^6.21.0: 461 | version "6.24.1" 462 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 463 | dependencies: 464 | babel-helper-call-delegate "^6.24.1" 465 | babel-helper-get-function-arity "^6.24.1" 466 | babel-runtime "^6.22.0" 467 | babel-template "^6.24.1" 468 | babel-traverse "^6.24.1" 469 | babel-types "^6.24.1" 470 | 471 | babel-plugin-transform-es2015-spread@^6.8.0: 472 | version "6.22.0" 473 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 474 | dependencies: 475 | babel-runtime "^6.22.0" 476 | 477 | babel-plugin-transform-es2015-sticky-regex@^6.8.0: 478 | version "6.24.1" 479 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 480 | dependencies: 481 | babel-helper-regex "^6.24.1" 482 | babel-runtime "^6.22.0" 483 | babel-types "^6.24.1" 484 | 485 | babel-plugin-transform-es2015-unicode-regex@^6.11.0: 486 | version "6.24.1" 487 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 488 | dependencies: 489 | babel-helper-regex "^6.24.1" 490 | babel-runtime "^6.22.0" 491 | regexpu-core "^2.0.0" 492 | 493 | babel-plugin-transform-exponentiation-operator@^6.8.0: 494 | version "6.24.1" 495 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 496 | dependencies: 497 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 498 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 499 | babel-runtime "^6.22.0" 500 | 501 | babel-plugin-transform-strict-mode@^6.24.1: 502 | version "6.24.1" 503 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 504 | dependencies: 505 | babel-runtime "^6.22.0" 506 | babel-types "^6.24.1" 507 | 508 | babel-register@^6.26.0: 509 | version "6.26.0" 510 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 511 | dependencies: 512 | babel-core "^6.26.0" 513 | babel-runtime "^6.26.0" 514 | core-js "^2.5.0" 515 | home-or-tmp "^2.0.0" 516 | lodash "^4.17.4" 517 | mkdirp "^0.5.1" 518 | source-map-support "^0.4.15" 519 | 520 | babel-runtime@^6.22.0, babel-runtime@^6.26.0: 521 | version "6.26.0" 522 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 523 | dependencies: 524 | core-js "^2.4.0" 525 | regenerator-runtime "^0.11.0" 526 | 527 | babel-template@^6.24.1, babel-template@^6.26.0: 528 | version "6.26.0" 529 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 530 | dependencies: 531 | babel-runtime "^6.26.0" 532 | babel-traverse "^6.26.0" 533 | babel-types "^6.26.0" 534 | babylon "^6.18.0" 535 | lodash "^4.17.4" 536 | 537 | babel-traverse@^6.24.1, babel-traverse@^6.26.0: 538 | version "6.26.0" 539 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 540 | dependencies: 541 | babel-code-frame "^6.26.0" 542 | babel-messages "^6.23.0" 543 | babel-runtime "^6.26.0" 544 | babel-types "^6.26.0" 545 | babylon "^6.18.0" 546 | debug "^2.6.8" 547 | globals "^9.18.0" 548 | invariant "^2.2.2" 549 | lodash "^4.17.4" 550 | 551 | babel-types@^6.24.1, babel-types@^6.26.0: 552 | version "6.26.0" 553 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 554 | dependencies: 555 | babel-runtime "^6.26.0" 556 | esutils "^2.0.2" 557 | lodash "^4.17.4" 558 | to-fast-properties "^1.0.3" 559 | 560 | babylon@^6.1.0, babylon@^6.18.0: 561 | version "6.18.0" 562 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 563 | 564 | balanced-match@^1.0.0: 565 | version "1.0.0" 566 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 567 | 568 | binary-extensions@^1.0.0: 569 | version "1.11.0" 570 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 571 | 572 | bluebird@^3.0.0: 573 | version "3.5.1" 574 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.1.tgz#d9551f9de98f1fcda1e683d17ee91a0602ee2eb9" 575 | 576 | boxen@^1.2.1: 577 | version "1.3.0" 578 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b" 579 | dependencies: 580 | ansi-align "^2.0.0" 581 | camelcase "^4.0.0" 582 | chalk "^2.0.1" 583 | cli-boxes "^1.0.0" 584 | string-width "^2.0.0" 585 | term-size "^1.2.0" 586 | widest-line "^2.0.0" 587 | 588 | brace-expansion@^1.1.7: 589 | version "1.1.11" 590 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 591 | dependencies: 592 | balanced-match "^1.0.0" 593 | concat-map "0.0.1" 594 | 595 | braces@^1.8.2: 596 | version "1.8.5" 597 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 598 | dependencies: 599 | expand-range "^1.8.1" 600 | preserve "^0.2.0" 601 | repeat-element "^1.1.2" 602 | 603 | buf-compare@^1.0.0: 604 | version "1.0.1" 605 | resolved "https://registry.yarnpkg.com/buf-compare/-/buf-compare-1.0.1.tgz#fef28da8b8113a0a0db4430b0b6467b69730b34a" 606 | 607 | buffer-from@^1.0.0: 608 | version "1.1.0" 609 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.0.tgz#87fcaa3a298358e0ade6e442cfce840740d1ad04" 610 | 611 | builtin-modules@^1.0.0: 612 | version "1.1.1" 613 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 614 | 615 | caching-transform@^1.0.0: 616 | version "1.0.1" 617 | resolved "https://registry.yarnpkg.com/caching-transform/-/caching-transform-1.0.1.tgz#6dbdb2f20f8d8fbce79f3e94e9d1742dcdf5c0a1" 618 | dependencies: 619 | md5-hex "^1.2.0" 620 | mkdirp "^0.5.1" 621 | write-file-atomic "^1.1.4" 622 | 623 | call-matcher@^1.0.0: 624 | version "1.0.1" 625 | resolved "https://registry.yarnpkg.com/call-matcher/-/call-matcher-1.0.1.tgz#5134d077984f712a54dad3cbf62de28dce416ca8" 626 | dependencies: 627 | core-js "^2.0.0" 628 | deep-equal "^1.0.0" 629 | espurify "^1.6.0" 630 | estraverse "^4.0.0" 631 | 632 | call-signature@0.0.2: 633 | version "0.0.2" 634 | resolved "https://registry.yarnpkg.com/call-signature/-/call-signature-0.0.2.tgz#a84abc825a55ef4cb2b028bd74e205a65b9a4996" 635 | 636 | camelcase-keys@^2.0.0: 637 | version "2.1.0" 638 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 639 | dependencies: 640 | camelcase "^2.0.0" 641 | map-obj "^1.0.0" 642 | 643 | camelcase@^2.0.0: 644 | version "2.1.1" 645 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 646 | 647 | camelcase@^4.0.0: 648 | version "4.1.0" 649 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 650 | 651 | capture-stack-trace@^1.0.0: 652 | version "1.0.0" 653 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" 654 | 655 | chalk@^0.4.0: 656 | version "0.4.0" 657 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-0.4.0.tgz#5199a3ddcd0c1efe23bc08c1b027b06176e0c64f" 658 | dependencies: 659 | ansi-styles "~1.0.0" 660 | has-color "~0.1.0" 661 | strip-ansi "~0.1.0" 662 | 663 | chalk@^1.1.3: 664 | version "1.1.3" 665 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 666 | dependencies: 667 | ansi-styles "^2.2.1" 668 | escape-string-regexp "^1.0.2" 669 | has-ansi "^2.0.0" 670 | strip-ansi "^3.0.0" 671 | supports-color "^2.0.0" 672 | 673 | chalk@^2.0.1: 674 | version "2.4.1" 675 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e" 676 | dependencies: 677 | ansi-styles "^3.2.1" 678 | escape-string-regexp "^1.0.5" 679 | supports-color "^5.3.0" 680 | 681 | chokidar@^1.4.2: 682 | version "1.7.0" 683 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 684 | dependencies: 685 | anymatch "^1.3.0" 686 | async-each "^1.0.0" 687 | glob-parent "^2.0.0" 688 | inherits "^2.0.1" 689 | is-binary-path "^1.0.0" 690 | is-glob "^2.0.0" 691 | path-is-absolute "^1.0.0" 692 | readdirp "^2.0.0" 693 | optionalDependencies: 694 | fsevents "^1.0.0" 695 | 696 | chownr@^1.0.1: 697 | version "1.0.1" 698 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.0.1.tgz#e2a75042a9551908bebd25b8523d5f9769d79181" 699 | 700 | ci-info@^1.0.0: 701 | version "1.1.3" 702 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.3.tgz#710193264bb05c77b8c90d02f5aaf22216a667b2" 703 | 704 | clean-stack@^1.1.1: 705 | version "1.3.0" 706 | resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-1.3.0.tgz#9e821501ae979986c46b1d66d2d432db2fd4ae31" 707 | 708 | clean-yaml-object@^0.1.0: 709 | version "0.1.0" 710 | resolved "https://registry.yarnpkg.com/clean-yaml-object/-/clean-yaml-object-0.1.0.tgz#63fb110dc2ce1a84dc21f6d9334876d010ae8b68" 711 | 712 | cli-boxes@^1.0.0: 713 | version "1.0.0" 714 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 715 | 716 | cli-cursor@^2.1.0: 717 | version "2.1.0" 718 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 719 | dependencies: 720 | restore-cursor "^2.0.0" 721 | 722 | cli-spinners@^1.0.0: 723 | version "1.3.1" 724 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-1.3.1.tgz#002c1990912d0d59580c93bd36c056de99e4259a" 725 | 726 | cli-truncate@^1.0.0: 727 | version "1.1.0" 728 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-1.1.0.tgz#2b2dfd83c53cfd3572b87fc4d430a808afb04086" 729 | dependencies: 730 | slice-ansi "^1.0.0" 731 | string-width "^2.0.0" 732 | 733 | co-with-promise@^4.6.0: 734 | version "4.6.0" 735 | resolved "https://registry.yarnpkg.com/co-with-promise/-/co-with-promise-4.6.0.tgz#413e7db6f5893a60b942cf492c4bec93db415ab7" 736 | dependencies: 737 | pinkie-promise "^1.0.0" 738 | 739 | code-excerpt@^2.1.1: 740 | version "2.1.1" 741 | resolved "https://registry.yarnpkg.com/code-excerpt/-/code-excerpt-2.1.1.tgz#5fe3057bfbb71a5f300f659ef2cc0a47651ba77c" 742 | dependencies: 743 | convert-to-spaces "^1.0.1" 744 | 745 | code-point-at@^1.0.0: 746 | version "1.1.0" 747 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 748 | 749 | color-convert@^1.9.0: 750 | version "1.9.1" 751 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 752 | dependencies: 753 | color-name "^1.1.1" 754 | 755 | color-name@^1.1.1: 756 | version "1.1.3" 757 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 758 | 759 | common-path-prefix@^1.0.0: 760 | version "1.0.0" 761 | resolved "https://registry.yarnpkg.com/common-path-prefix/-/common-path-prefix-1.0.0.tgz#cd52f6f0712e0baab97d6f9732874f22f47752c0" 762 | 763 | commondir@^1.0.1: 764 | version "1.0.1" 765 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 766 | 767 | concat-map@0.0.1: 768 | version "0.0.1" 769 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 770 | 771 | concordance@^3.0.0: 772 | version "3.0.0" 773 | resolved "https://registry.yarnpkg.com/concordance/-/concordance-3.0.0.tgz#b2286af54405fc995fc7345b0b106d8dd073cb29" 774 | dependencies: 775 | date-time "^2.1.0" 776 | esutils "^2.0.2" 777 | fast-diff "^1.1.1" 778 | function-name-support "^0.2.0" 779 | js-string-escape "^1.0.1" 780 | lodash.clonedeep "^4.5.0" 781 | lodash.flattendeep "^4.4.0" 782 | lodash.merge "^4.6.0" 783 | md5-hex "^2.0.0" 784 | semver "^5.3.0" 785 | well-known-symbols "^1.0.0" 786 | 787 | configstore@^3.0.0: 788 | version "3.1.2" 789 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.2.tgz#c6f25defaeef26df12dd33414b001fe81a543f8f" 790 | dependencies: 791 | dot-prop "^4.1.0" 792 | graceful-fs "^4.1.2" 793 | make-dir "^1.0.0" 794 | unique-string "^1.0.0" 795 | write-file-atomic "^2.0.0" 796 | xdg-basedir "^3.0.0" 797 | 798 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 799 | version "1.1.0" 800 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 801 | 802 | convert-source-map@^1.5.1: 803 | version "1.5.1" 804 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 805 | 806 | convert-to-spaces@^1.0.1: 807 | version "1.0.2" 808 | resolved "https://registry.yarnpkg.com/convert-to-spaces/-/convert-to-spaces-1.0.2.tgz#7e3e48bbe6d997b1417ddca2868204b4d3d85715" 809 | 810 | core-assert@^0.2.0: 811 | version "0.2.1" 812 | resolved "https://registry.yarnpkg.com/core-assert/-/core-assert-0.2.1.tgz#f85e2cf9bfed28f773cc8b3fa5c5b69bdc02fe3f" 813 | dependencies: 814 | buf-compare "^1.0.0" 815 | is-error "^2.2.0" 816 | 817 | core-js@^2.0.0, core-js@^2.4.0, core-js@^2.5.0: 818 | version "2.5.7" 819 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.7.tgz#f972608ff0cead68b841a16a932d0b183791814e" 820 | 821 | core-util-is@~1.0.0: 822 | version "1.0.2" 823 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 824 | 825 | create-error-class@^3.0.0: 826 | version "3.0.2" 827 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" 828 | dependencies: 829 | capture-stack-trace "^1.0.0" 830 | 831 | cross-spawn@^5.0.1: 832 | version "5.1.0" 833 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 834 | dependencies: 835 | lru-cache "^4.0.1" 836 | shebang-command "^1.2.0" 837 | which "^1.2.9" 838 | 839 | crypto-random-string@^1.0.0: 840 | version "1.0.0" 841 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" 842 | 843 | currently-unhandled@^0.4.1: 844 | version "0.4.1" 845 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 846 | dependencies: 847 | array-find-index "^1.0.1" 848 | 849 | date-time@^0.1.1: 850 | version "0.1.1" 851 | resolved "https://registry.yarnpkg.com/date-time/-/date-time-0.1.1.tgz#ed2f6d93d9790ce2fd66d5b5ff3edd5bbcbf3b07" 852 | 853 | date-time@^2.1.0: 854 | version "2.1.0" 855 | resolved "https://registry.yarnpkg.com/date-time/-/date-time-2.1.0.tgz#0286d1b4c769633b3ca13e1e62558d2dbdc2eba2" 856 | dependencies: 857 | time-zone "^1.0.0" 858 | 859 | debug@^2.1.2, debug@^2.6.8, debug@^2.6.9: 860 | version "2.6.9" 861 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 862 | dependencies: 863 | ms "2.0.0" 864 | 865 | debug@^3.0.1: 866 | version "3.1.0" 867 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 868 | dependencies: 869 | ms "2.0.0" 870 | 871 | decamelize@^1.1.2: 872 | version "1.2.0" 873 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 874 | 875 | deep-equal@^1.0.0: 876 | version "1.0.1" 877 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" 878 | 879 | deep-extend@^0.6.0: 880 | version "0.6.0" 881 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 882 | 883 | delegates@^1.0.0: 884 | version "1.0.0" 885 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 886 | 887 | detect-indent@^4.0.0: 888 | version "4.0.0" 889 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 890 | dependencies: 891 | repeating "^2.0.0" 892 | 893 | detect-indent@^5.0.0: 894 | version "5.0.0" 895 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-5.0.0.tgz#3871cc0a6a002e8c3e5b3cf7f336264675f06b9d" 896 | 897 | detect-libc@^1.0.2: 898 | version "1.0.3" 899 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 900 | 901 | dot-prop@^4.1.0: 902 | version "4.2.0" 903 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57" 904 | dependencies: 905 | is-obj "^1.0.0" 906 | 907 | duplexer3@^0.1.4: 908 | version "0.1.4" 909 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" 910 | 911 | empower-core@^0.6.1: 912 | version "0.6.2" 913 | resolved "https://registry.yarnpkg.com/empower-core/-/empower-core-0.6.2.tgz#5adef566088e31fba80ba0a36df47d7094169144" 914 | dependencies: 915 | call-signature "0.0.2" 916 | core-js "^2.0.0" 917 | 918 | equal-length@^1.0.0: 919 | version "1.0.1" 920 | resolved "https://registry.yarnpkg.com/equal-length/-/equal-length-1.0.1.tgz#21ca112d48ab24b4e1e7ffc0e5339d31fdfc274c" 921 | 922 | error-ex@^1.2.0, error-ex@^1.3.1: 923 | version "1.3.1" 924 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 925 | dependencies: 926 | is-arrayish "^0.2.1" 927 | 928 | es6-error@^4.0.1, es6-error@^4.0.2: 929 | version "4.1.1" 930 | resolved "https://registry.yarnpkg.com/es6-error/-/es6-error-4.1.1.tgz#9e3af407459deed47e9a91f9b885a84eb05c561d" 931 | 932 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.4, escape-string-regexp@^1.0.5: 933 | version "1.0.5" 934 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 935 | 936 | espower-location-detector@^1.0.0: 937 | version "1.0.0" 938 | resolved "https://registry.yarnpkg.com/espower-location-detector/-/espower-location-detector-1.0.0.tgz#a17b7ecc59d30e179e2bef73fb4137704cb331b5" 939 | dependencies: 940 | is-url "^1.2.1" 941 | path-is-absolute "^1.0.0" 942 | source-map "^0.5.0" 943 | xtend "^4.0.0" 944 | 945 | esprima@^4.0.0: 946 | version "4.0.0" 947 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 948 | 949 | espurify@^1.6.0: 950 | version "1.8.0" 951 | resolved "https://registry.yarnpkg.com/espurify/-/espurify-1.8.0.tgz#270d8046e4e47e923d75bc8a87357c7112ca8485" 952 | dependencies: 953 | core-js "^2.0.0" 954 | 955 | estraverse@^4.0.0, estraverse@^4.1.1: 956 | version "4.2.0" 957 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 958 | 959 | esutils@^2.0.2: 960 | version "2.0.2" 961 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 962 | 963 | execa@^0.7.0: 964 | version "0.7.0" 965 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 966 | dependencies: 967 | cross-spawn "^5.0.1" 968 | get-stream "^3.0.0" 969 | is-stream "^1.1.0" 970 | npm-run-path "^2.0.0" 971 | p-finally "^1.0.0" 972 | signal-exit "^3.0.0" 973 | strip-eof "^1.0.0" 974 | 975 | expand-brackets@^0.1.4: 976 | version "0.1.5" 977 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 978 | dependencies: 979 | is-posix-bracket "^0.1.0" 980 | 981 | expand-range@^1.8.1: 982 | version "1.8.2" 983 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 984 | dependencies: 985 | fill-range "^2.1.0" 986 | 987 | extglob@^0.3.1: 988 | version "0.3.2" 989 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 990 | dependencies: 991 | is-extglob "^1.0.0" 992 | 993 | fast-diff@^1.1.1: 994 | version "1.1.2" 995 | resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.1.2.tgz#4b62c42b8e03de3f848460b639079920695d0154" 996 | 997 | figures@^2.0.0: 998 | version "2.0.0" 999 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1000 | dependencies: 1001 | escape-string-regexp "^1.0.5" 1002 | 1003 | filename-regex@^2.0.0: 1004 | version "2.0.1" 1005 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1006 | 1007 | fill-range@^2.1.0: 1008 | version "2.2.4" 1009 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565" 1010 | dependencies: 1011 | is-number "^2.1.0" 1012 | isobject "^2.0.0" 1013 | randomatic "^3.0.0" 1014 | repeat-element "^1.1.2" 1015 | repeat-string "^1.5.2" 1016 | 1017 | find-cache-dir@^1.0.0: 1018 | version "1.0.0" 1019 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-1.0.0.tgz#9288e3e9e3cc3748717d39eade17cf71fc30ee6f" 1020 | dependencies: 1021 | commondir "^1.0.1" 1022 | make-dir "^1.0.0" 1023 | pkg-dir "^2.0.0" 1024 | 1025 | find-up@^1.0.0: 1026 | version "1.1.2" 1027 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1028 | dependencies: 1029 | path-exists "^2.0.0" 1030 | pinkie-promise "^2.0.0" 1031 | 1032 | find-up@^2.0.0, find-up@^2.1.0: 1033 | version "2.1.0" 1034 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1035 | dependencies: 1036 | locate-path "^2.0.0" 1037 | 1038 | fn-name@^2.0.0: 1039 | version "2.0.1" 1040 | resolved "https://registry.yarnpkg.com/fn-name/-/fn-name-2.0.1.tgz#5214d7537a4d06a4a301c0cc262feb84188002e7" 1041 | 1042 | for-in@^1.0.1: 1043 | version "1.0.2" 1044 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1045 | 1046 | for-own@^0.1.4: 1047 | version "0.1.5" 1048 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1049 | dependencies: 1050 | for-in "^1.0.1" 1051 | 1052 | fs-minipass@^1.2.5: 1053 | version "1.2.5" 1054 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d" 1055 | dependencies: 1056 | minipass "^2.2.1" 1057 | 1058 | fs.realpath@^1.0.0: 1059 | version "1.0.0" 1060 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1061 | 1062 | fsevents@^1.0.0: 1063 | version "1.2.4" 1064 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.4.tgz#f41dcb1af2582af3692da36fc55cbd8e1041c426" 1065 | dependencies: 1066 | nan "^2.9.2" 1067 | node-pre-gyp "^0.10.0" 1068 | 1069 | function-name-support@^0.2.0: 1070 | version "0.2.0" 1071 | resolved "https://registry.yarnpkg.com/function-name-support/-/function-name-support-0.2.0.tgz#55d3bfaa6eafd505a50f9bc81fdf57564a0bb071" 1072 | 1073 | gauge@~2.7.3: 1074 | version "2.7.4" 1075 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1076 | dependencies: 1077 | aproba "^1.0.3" 1078 | console-control-strings "^1.0.0" 1079 | has-unicode "^2.0.0" 1080 | object-assign "^4.1.0" 1081 | signal-exit "^3.0.0" 1082 | string-width "^1.0.1" 1083 | strip-ansi "^3.0.1" 1084 | wide-align "^1.1.0" 1085 | 1086 | get-port@^3.0.0: 1087 | version "3.2.0" 1088 | resolved "https://registry.yarnpkg.com/get-port/-/get-port-3.2.0.tgz#dd7ce7de187c06c8bf353796ac71e099f0980ebc" 1089 | 1090 | get-stdin@^4.0.1: 1091 | version "4.0.1" 1092 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 1093 | 1094 | get-stream@^3.0.0: 1095 | version "3.0.0" 1096 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1097 | 1098 | glob-base@^0.3.0: 1099 | version "0.3.0" 1100 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1101 | dependencies: 1102 | glob-parent "^2.0.0" 1103 | is-glob "^2.0.0" 1104 | 1105 | glob-parent@^2.0.0: 1106 | version "2.0.0" 1107 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1108 | dependencies: 1109 | is-glob "^2.0.0" 1110 | 1111 | glob@^7.0.3, glob@^7.0.5: 1112 | version "7.1.2" 1113 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1114 | dependencies: 1115 | fs.realpath "^1.0.0" 1116 | inflight "^1.0.4" 1117 | inherits "2" 1118 | minimatch "^3.0.4" 1119 | once "^1.3.0" 1120 | path-is-absolute "^1.0.0" 1121 | 1122 | global-dirs@^0.1.0: 1123 | version "0.1.1" 1124 | resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445" 1125 | dependencies: 1126 | ini "^1.3.4" 1127 | 1128 | globals@^9.18.0: 1129 | version "9.18.0" 1130 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1131 | 1132 | globby@^6.0.0: 1133 | version "6.1.0" 1134 | resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" 1135 | dependencies: 1136 | array-union "^1.0.1" 1137 | glob "^7.0.3" 1138 | object-assign "^4.0.1" 1139 | pify "^2.0.0" 1140 | pinkie-promise "^2.0.0" 1141 | 1142 | got@^6.7.1: 1143 | version "6.7.1" 1144 | resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" 1145 | dependencies: 1146 | create-error-class "^3.0.0" 1147 | duplexer3 "^0.1.4" 1148 | get-stream "^3.0.0" 1149 | is-redirect "^1.0.0" 1150 | is-retry-allowed "^1.0.0" 1151 | is-stream "^1.0.0" 1152 | lowercase-keys "^1.0.0" 1153 | safe-buffer "^5.0.1" 1154 | timed-out "^4.0.0" 1155 | unzip-response "^2.0.1" 1156 | url-parse-lax "^1.0.0" 1157 | 1158 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 1159 | version "4.1.11" 1160 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1161 | 1162 | has-ansi@^2.0.0: 1163 | version "2.0.0" 1164 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1165 | dependencies: 1166 | ansi-regex "^2.0.0" 1167 | 1168 | has-color@~0.1.0: 1169 | version "0.1.7" 1170 | resolved "https://registry.yarnpkg.com/has-color/-/has-color-0.1.7.tgz#67144a5260c34fc3cca677d041daf52fe7b78b2f" 1171 | 1172 | has-flag@^2.0.0: 1173 | version "2.0.0" 1174 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1175 | 1176 | has-flag@^3.0.0: 1177 | version "3.0.0" 1178 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1179 | 1180 | has-unicode@^2.0.0: 1181 | version "2.0.1" 1182 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1183 | 1184 | has-yarn@^1.0.0: 1185 | version "1.0.0" 1186 | resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-1.0.0.tgz#89e25db604b725c8f5976fff0addc921b828a5a7" 1187 | 1188 | home-or-tmp@^2.0.0: 1189 | version "2.0.0" 1190 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1191 | dependencies: 1192 | os-homedir "^1.0.0" 1193 | os-tmpdir "^1.0.1" 1194 | 1195 | hosted-git-info@^2.1.4: 1196 | version "2.6.0" 1197 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.6.0.tgz#23235b29ab230c576aab0d4f13fc046b0b038222" 1198 | 1199 | hullabaloo-config-manager@^1.1.0: 1200 | version "1.1.1" 1201 | resolved "https://registry.yarnpkg.com/hullabaloo-config-manager/-/hullabaloo-config-manager-1.1.1.tgz#1d9117813129ad035fd9e8477eaf066911269fe3" 1202 | dependencies: 1203 | dot-prop "^4.1.0" 1204 | es6-error "^4.0.2" 1205 | graceful-fs "^4.1.11" 1206 | indent-string "^3.1.0" 1207 | json5 "^0.5.1" 1208 | lodash.clonedeep "^4.5.0" 1209 | lodash.clonedeepwith "^4.5.0" 1210 | lodash.isequal "^4.5.0" 1211 | lodash.merge "^4.6.0" 1212 | md5-hex "^2.0.0" 1213 | package-hash "^2.0.0" 1214 | pkg-dir "^2.0.0" 1215 | resolve-from "^3.0.0" 1216 | safe-buffer "^5.0.1" 1217 | 1218 | husky@^0.14.3: 1219 | version "0.14.3" 1220 | resolved "https://registry.yarnpkg.com/husky/-/husky-0.14.3.tgz#c69ed74e2d2779769a17ba8399b54ce0b63c12c3" 1221 | dependencies: 1222 | is-ci "^1.0.10" 1223 | normalize-path "^1.0.0" 1224 | strip-indent "^2.0.0" 1225 | 1226 | iconv-lite@^0.4.4: 1227 | version "0.4.23" 1228 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.23.tgz#297871f63be507adcfbfca715d0cd0eed84e9a63" 1229 | dependencies: 1230 | safer-buffer ">= 2.1.2 < 3" 1231 | 1232 | ignore-by-default@^1.0.0: 1233 | version "1.0.1" 1234 | resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" 1235 | 1236 | ignore-walk@^3.0.1: 1237 | version "3.0.1" 1238 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" 1239 | dependencies: 1240 | minimatch "^3.0.4" 1241 | 1242 | import-lazy@^2.1.0: 1243 | version "2.1.0" 1244 | resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" 1245 | 1246 | import-local@^0.1.1: 1247 | version "0.1.1" 1248 | resolved "https://registry.yarnpkg.com/import-local/-/import-local-0.1.1.tgz#b1179572aacdc11c6a91009fb430dbcab5f668a8" 1249 | dependencies: 1250 | pkg-dir "^2.0.0" 1251 | resolve-cwd "^2.0.0" 1252 | 1253 | imurmurhash@^0.1.4: 1254 | version "0.1.4" 1255 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1256 | 1257 | indent-string@^2.1.0: 1258 | version "2.1.0" 1259 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 1260 | dependencies: 1261 | repeating "^2.0.0" 1262 | 1263 | indent-string@^3.0.0, indent-string@^3.1.0, indent-string@^3.2.0: 1264 | version "3.2.0" 1265 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" 1266 | 1267 | inflight@^1.0.4: 1268 | version "1.0.6" 1269 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1270 | dependencies: 1271 | once "^1.3.0" 1272 | wrappy "1" 1273 | 1274 | inherits@2, inherits@^2.0.1, inherits@~2.0.3: 1275 | version "2.0.3" 1276 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1277 | 1278 | ini@^1.3.4, ini@~1.3.0: 1279 | version "1.3.5" 1280 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1281 | 1282 | invariant@^2.2.2: 1283 | version "2.2.4" 1284 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 1285 | dependencies: 1286 | loose-envify "^1.0.0" 1287 | 1288 | irregular-plurals@^1.0.0: 1289 | version "1.4.0" 1290 | resolved "https://registry.yarnpkg.com/irregular-plurals/-/irregular-plurals-1.4.0.tgz#2ca9b033651111855412f16be5d77c62a458a766" 1291 | 1292 | is-arrayish@^0.2.1: 1293 | version "0.2.1" 1294 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1295 | 1296 | is-binary-path@^1.0.0: 1297 | version "1.0.1" 1298 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1299 | dependencies: 1300 | binary-extensions "^1.0.0" 1301 | 1302 | is-buffer@^1.1.5: 1303 | version "1.1.6" 1304 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1305 | 1306 | is-builtin-module@^1.0.0: 1307 | version "1.0.0" 1308 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1309 | dependencies: 1310 | builtin-modules "^1.0.0" 1311 | 1312 | is-ci@^1.0.10, is-ci@^1.0.7: 1313 | version "1.1.0" 1314 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.1.0.tgz#247e4162e7860cebbdaf30b774d6b0ac7dcfe7a5" 1315 | dependencies: 1316 | ci-info "^1.0.0" 1317 | 1318 | is-dotfile@^1.0.0: 1319 | version "1.0.3" 1320 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1321 | 1322 | is-equal-shallow@^0.1.3: 1323 | version "0.1.3" 1324 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1325 | dependencies: 1326 | is-primitive "^2.0.0" 1327 | 1328 | is-error@^2.2.0: 1329 | version "2.2.1" 1330 | resolved "https://registry.yarnpkg.com/is-error/-/is-error-2.2.1.tgz#684a96d84076577c98f4cdb40c6d26a5123bf19c" 1331 | 1332 | is-extendable@^0.1.1: 1333 | version "0.1.1" 1334 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1335 | 1336 | is-extglob@^1.0.0: 1337 | version "1.0.0" 1338 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1339 | 1340 | is-finite@^1.0.0: 1341 | version "1.0.2" 1342 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1343 | dependencies: 1344 | number-is-nan "^1.0.0" 1345 | 1346 | is-fullwidth-code-point@^1.0.0: 1347 | version "1.0.0" 1348 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1349 | dependencies: 1350 | number-is-nan "^1.0.0" 1351 | 1352 | is-fullwidth-code-point@^2.0.0: 1353 | version "2.0.0" 1354 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1355 | 1356 | is-generator-fn@^1.0.0: 1357 | version "1.0.0" 1358 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a" 1359 | 1360 | is-glob@^2.0.0, is-glob@^2.0.1: 1361 | version "2.0.1" 1362 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1363 | dependencies: 1364 | is-extglob "^1.0.0" 1365 | 1366 | is-installed-globally@^0.1.0: 1367 | version "0.1.0" 1368 | resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.1.0.tgz#0dfd98f5a9111716dd535dda6492f67bf3d25a80" 1369 | dependencies: 1370 | global-dirs "^0.1.0" 1371 | is-path-inside "^1.0.0" 1372 | 1373 | is-npm@^1.0.0: 1374 | version "1.0.0" 1375 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 1376 | 1377 | is-number@^2.1.0: 1378 | version "2.1.0" 1379 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1380 | dependencies: 1381 | kind-of "^3.0.2" 1382 | 1383 | is-number@^4.0.0: 1384 | version "4.0.0" 1385 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" 1386 | 1387 | is-obj@^1.0.0: 1388 | version "1.0.1" 1389 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 1390 | 1391 | is-observable@^0.2.0: 1392 | version "0.2.0" 1393 | resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-0.2.0.tgz#b361311d83c6e5d726cabf5e250b0237106f5ae2" 1394 | dependencies: 1395 | symbol-observable "^0.2.2" 1396 | 1397 | is-observable@^1.0.0: 1398 | version "1.1.0" 1399 | resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-1.1.0.tgz#b3e986c8f44de950867cab5403f5a3465005975e" 1400 | dependencies: 1401 | symbol-observable "^1.1.0" 1402 | 1403 | is-path-inside@^1.0.0: 1404 | version "1.0.1" 1405 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" 1406 | dependencies: 1407 | path-is-inside "^1.0.1" 1408 | 1409 | is-plain-obj@^1.0.0: 1410 | version "1.1.0" 1411 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 1412 | 1413 | is-posix-bracket@^0.1.0: 1414 | version "0.1.1" 1415 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1416 | 1417 | is-primitive@^2.0.0: 1418 | version "2.0.0" 1419 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1420 | 1421 | is-promise@^2.1.0: 1422 | version "2.1.0" 1423 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1424 | 1425 | is-redirect@^1.0.0: 1426 | version "1.0.0" 1427 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 1428 | 1429 | is-retry-allowed@^1.0.0: 1430 | version "1.1.0" 1431 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" 1432 | 1433 | is-stream@^1.0.0, is-stream@^1.1.0: 1434 | version "1.1.0" 1435 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1436 | 1437 | is-url@^1.2.1: 1438 | version "1.2.4" 1439 | resolved "https://registry.yarnpkg.com/is-url/-/is-url-1.2.4.tgz#04a4df46d28c4cff3d73d01ff06abeb318a1aa52" 1440 | 1441 | is-utf8@^0.2.0, is-utf8@^0.2.1: 1442 | version "0.2.1" 1443 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1444 | 1445 | isarray@1.0.0, isarray@~1.0.0: 1446 | version "1.0.0" 1447 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1448 | 1449 | isexe@^2.0.0: 1450 | version "2.0.0" 1451 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1452 | 1453 | isobject@^2.0.0: 1454 | version "2.1.0" 1455 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1456 | dependencies: 1457 | isarray "1.0.0" 1458 | 1459 | js-string-escape@^1.0.1: 1460 | version "1.0.1" 1461 | resolved "https://registry.yarnpkg.com/js-string-escape/-/js-string-escape-1.0.1.tgz#e2625badbc0d67c7533e9edc1068c587ae4137ef" 1462 | 1463 | js-tokens@^3.0.0, js-tokens@^3.0.2: 1464 | version "3.0.2" 1465 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1466 | 1467 | js-yaml@^3.10.0: 1468 | version "3.12.0" 1469 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.0.tgz#eaed656ec8344f10f527c6bfa1b6e2244de167d1" 1470 | dependencies: 1471 | argparse "^1.0.7" 1472 | esprima "^4.0.0" 1473 | 1474 | jsesc@^1.3.0: 1475 | version "1.3.0" 1476 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1477 | 1478 | jsesc@~0.5.0: 1479 | version "0.5.0" 1480 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1481 | 1482 | json-parse-better-errors@^1.0.1: 1483 | version "1.0.2" 1484 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" 1485 | 1486 | json5@^0.5.1: 1487 | version "0.5.1" 1488 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1489 | 1490 | kind-of@^3.0.2: 1491 | version "3.2.2" 1492 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1493 | dependencies: 1494 | is-buffer "^1.1.5" 1495 | 1496 | kind-of@^6.0.0: 1497 | version "6.0.2" 1498 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 1499 | 1500 | last-line-stream@^1.0.0: 1501 | version "1.0.0" 1502 | resolved "https://registry.yarnpkg.com/last-line-stream/-/last-line-stream-1.0.0.tgz#d1b64d69f86ff24af2d04883a2ceee14520a5600" 1503 | dependencies: 1504 | through2 "^2.0.0" 1505 | 1506 | latest-version@^3.0.0: 1507 | version "3.1.0" 1508 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15" 1509 | dependencies: 1510 | package-json "^4.0.0" 1511 | 1512 | load-json-file@^1.0.0: 1513 | version "1.1.0" 1514 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1515 | dependencies: 1516 | graceful-fs "^4.1.2" 1517 | parse-json "^2.2.0" 1518 | pify "^2.0.0" 1519 | pinkie-promise "^2.0.0" 1520 | strip-bom "^2.0.0" 1521 | 1522 | load-json-file@^2.0.0: 1523 | version "2.0.0" 1524 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 1525 | dependencies: 1526 | graceful-fs "^4.1.2" 1527 | parse-json "^2.2.0" 1528 | pify "^2.0.0" 1529 | strip-bom "^3.0.0" 1530 | 1531 | load-json-file@^4.0.0: 1532 | version "4.0.0" 1533 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" 1534 | dependencies: 1535 | graceful-fs "^4.1.2" 1536 | parse-json "^4.0.0" 1537 | pify "^3.0.0" 1538 | strip-bom "^3.0.0" 1539 | 1540 | locate-path@^2.0.0: 1541 | version "2.0.0" 1542 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1543 | dependencies: 1544 | p-locate "^2.0.0" 1545 | path-exists "^3.0.0" 1546 | 1547 | lodash.clonedeep@^4.5.0: 1548 | version "4.5.0" 1549 | resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" 1550 | 1551 | lodash.clonedeepwith@^4.5.0: 1552 | version "4.5.0" 1553 | resolved "https://registry.yarnpkg.com/lodash.clonedeepwith/-/lodash.clonedeepwith-4.5.0.tgz#6ee30573a03a1a60d670a62ef33c10cf1afdbdd4" 1554 | 1555 | lodash.debounce@^4.0.3: 1556 | version "4.0.8" 1557 | resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" 1558 | 1559 | lodash.difference@^4.3.0: 1560 | version "4.5.0" 1561 | resolved "https://registry.yarnpkg.com/lodash.difference/-/lodash.difference-4.5.0.tgz#9ccb4e505d486b91651345772885a2df27fd017c" 1562 | 1563 | lodash.flatten@^4.2.0: 1564 | version "4.4.0" 1565 | resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f" 1566 | 1567 | lodash.flattendeep@^4.4.0: 1568 | version "4.4.0" 1569 | resolved "https://registry.yarnpkg.com/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz#fb030917f86a3134e5bc9bec0d69e0013ddfedb2" 1570 | 1571 | lodash.isequal@^4.5.0: 1572 | version "4.5.0" 1573 | resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" 1574 | 1575 | lodash.merge@^4.6.0: 1576 | version "4.6.1" 1577 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.1.tgz#adc25d9cb99b9391c59624f379fbba60d7111d54" 1578 | 1579 | lodash@^4.17.4: 1580 | version "4.17.10" 1581 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7" 1582 | 1583 | loose-envify@^1.0.0: 1584 | version "1.3.1" 1585 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1586 | dependencies: 1587 | js-tokens "^3.0.0" 1588 | 1589 | loud-rejection@^1.0.0, loud-rejection@^1.2.0: 1590 | version "1.6.0" 1591 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 1592 | dependencies: 1593 | currently-unhandled "^0.4.1" 1594 | signal-exit "^3.0.0" 1595 | 1596 | lowercase-keys@^1.0.0: 1597 | version "1.0.1" 1598 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" 1599 | 1600 | lru-cache@^4.0.1: 1601 | version "4.1.3" 1602 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.3.tgz#a1175cf3496dfc8436c156c334b4955992bce69c" 1603 | dependencies: 1604 | pseudomap "^1.0.2" 1605 | yallist "^2.1.2" 1606 | 1607 | make-dir@^1.0.0: 1608 | version "1.3.0" 1609 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c" 1610 | dependencies: 1611 | pify "^3.0.0" 1612 | 1613 | map-obj@^1.0.0, map-obj@^1.0.1: 1614 | version "1.0.1" 1615 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 1616 | 1617 | matcher@^1.0.0: 1618 | version "1.1.1" 1619 | resolved "https://registry.yarnpkg.com/matcher/-/matcher-1.1.1.tgz#51d8301e138f840982b338b116bb0c09af62c1c2" 1620 | dependencies: 1621 | escape-string-regexp "^1.0.4" 1622 | 1623 | math-random@^1.0.1: 1624 | version "1.0.1" 1625 | resolved "https://registry.yarnpkg.com/math-random/-/math-random-1.0.1.tgz#8b3aac588b8a66e4975e3cdea67f7bb329601fac" 1626 | 1627 | md5-hex@^1.2.0, md5-hex@^1.3.0: 1628 | version "1.3.0" 1629 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-1.3.0.tgz#d2c4afe983c4370662179b8cad145219135046c4" 1630 | dependencies: 1631 | md5-o-matic "^0.1.1" 1632 | 1633 | md5-hex@^2.0.0: 1634 | version "2.0.0" 1635 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-2.0.0.tgz#d0588e9f1c74954492ecd24ac0ac6ce997d92e33" 1636 | dependencies: 1637 | md5-o-matic "^0.1.1" 1638 | 1639 | md5-o-matic@^0.1.1: 1640 | version "0.1.1" 1641 | resolved "https://registry.yarnpkg.com/md5-o-matic/-/md5-o-matic-0.1.1.tgz#822bccd65e117c514fab176b25945d54100a03c3" 1642 | 1643 | meow@^3.7.0: 1644 | version "3.7.0" 1645 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 1646 | dependencies: 1647 | camelcase-keys "^2.0.0" 1648 | decamelize "^1.1.2" 1649 | loud-rejection "^1.0.0" 1650 | map-obj "^1.0.1" 1651 | minimist "^1.1.3" 1652 | normalize-package-data "^2.3.4" 1653 | object-assign "^4.0.1" 1654 | read-pkg-up "^1.0.1" 1655 | redent "^1.0.0" 1656 | trim-newlines "^1.0.0" 1657 | 1658 | micromatch@^2.1.5: 1659 | version "2.3.11" 1660 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1661 | dependencies: 1662 | arr-diff "^2.0.0" 1663 | array-unique "^0.2.1" 1664 | braces "^1.8.2" 1665 | expand-brackets "^0.1.4" 1666 | extglob "^0.3.1" 1667 | filename-regex "^2.0.0" 1668 | is-extglob "^1.0.0" 1669 | is-glob "^2.0.1" 1670 | kind-of "^3.0.2" 1671 | normalize-path "^2.0.1" 1672 | object.omit "^2.0.0" 1673 | parse-glob "^3.0.4" 1674 | regex-cache "^0.4.2" 1675 | 1676 | mimic-fn@^1.0.0: 1677 | version "1.2.0" 1678 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 1679 | 1680 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 1681 | version "3.0.4" 1682 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1683 | dependencies: 1684 | brace-expansion "^1.1.7" 1685 | 1686 | minimist@0.0.8: 1687 | version "0.0.8" 1688 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1689 | 1690 | minimist@^1.1.3, minimist@^1.2.0: 1691 | version "1.2.0" 1692 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1693 | 1694 | minipass@^2.2.1, minipass@^2.3.3: 1695 | version "2.3.3" 1696 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.3.tgz#a7dcc8b7b833f5d368759cce544dccb55f50f233" 1697 | dependencies: 1698 | safe-buffer "^5.1.2" 1699 | yallist "^3.0.0" 1700 | 1701 | minizlib@^1.1.0: 1702 | version "1.1.0" 1703 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.1.0.tgz#11e13658ce46bc3a70a267aac58359d1e0c29ceb" 1704 | dependencies: 1705 | minipass "^2.2.1" 1706 | 1707 | mkdirp@^0.5.0, mkdirp@^0.5.1: 1708 | version "0.5.1" 1709 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1710 | dependencies: 1711 | minimist "0.0.8" 1712 | 1713 | ms@2.0.0: 1714 | version "2.0.0" 1715 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1716 | 1717 | ms@^2.0.0: 1718 | version "2.1.1" 1719 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" 1720 | 1721 | multimatch@^2.1.0: 1722 | version "2.1.0" 1723 | resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b" 1724 | dependencies: 1725 | array-differ "^1.0.0" 1726 | array-union "^1.0.1" 1727 | arrify "^1.0.0" 1728 | minimatch "^3.0.0" 1729 | 1730 | nan@^2.9.2: 1731 | version "2.10.0" 1732 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.10.0.tgz#96d0cd610ebd58d4b4de9cc0c6828cda99c7548f" 1733 | 1734 | needle@^2.2.0: 1735 | version "2.2.1" 1736 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.1.tgz#b5e325bd3aae8c2678902fa296f729455d1d3a7d" 1737 | dependencies: 1738 | debug "^2.1.2" 1739 | iconv-lite "^0.4.4" 1740 | sax "^1.2.4" 1741 | 1742 | node-pre-gyp@^0.10.0: 1743 | version "0.10.0" 1744 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.10.0.tgz#6e4ef5bb5c5203c6552448828c852c40111aac46" 1745 | dependencies: 1746 | detect-libc "^1.0.2" 1747 | mkdirp "^0.5.1" 1748 | needle "^2.2.0" 1749 | nopt "^4.0.1" 1750 | npm-packlist "^1.1.6" 1751 | npmlog "^4.0.2" 1752 | rc "^1.1.7" 1753 | rimraf "^2.6.1" 1754 | semver "^5.3.0" 1755 | tar "^4" 1756 | 1757 | nopt@^4.0.1: 1758 | version "4.0.1" 1759 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1760 | dependencies: 1761 | abbrev "1" 1762 | osenv "^0.1.4" 1763 | 1764 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: 1765 | version "2.4.0" 1766 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 1767 | dependencies: 1768 | hosted-git-info "^2.1.4" 1769 | is-builtin-module "^1.0.0" 1770 | semver "2 || 3 || 4 || 5" 1771 | validate-npm-package-license "^3.0.1" 1772 | 1773 | normalize-path@^1.0.0: 1774 | version "1.0.0" 1775 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-1.0.0.tgz#32d0e472f91ff345701c15a8311018d3b0a90379" 1776 | 1777 | normalize-path@^2.0.0, normalize-path@^2.0.1: 1778 | version "2.1.1" 1779 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1780 | dependencies: 1781 | remove-trailing-separator "^1.0.1" 1782 | 1783 | npm-bundled@^1.0.1: 1784 | version "1.0.3" 1785 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.3.tgz#7e71703d973af3370a9591bafe3a63aca0be2308" 1786 | 1787 | npm-packlist@^1.1.6: 1788 | version "1.1.10" 1789 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.1.10.tgz#1039db9e985727e464df066f4cf0ab6ef85c398a" 1790 | dependencies: 1791 | ignore-walk "^3.0.1" 1792 | npm-bundled "^1.0.1" 1793 | 1794 | npm-run-path@^2.0.0: 1795 | version "2.0.2" 1796 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 1797 | dependencies: 1798 | path-key "^2.0.0" 1799 | 1800 | npmlog@^4.0.2: 1801 | version "4.1.2" 1802 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1803 | dependencies: 1804 | are-we-there-yet "~1.1.2" 1805 | console-control-strings "~1.1.0" 1806 | gauge "~2.7.3" 1807 | set-blocking "~2.0.0" 1808 | 1809 | number-is-nan@^1.0.0: 1810 | version "1.0.1" 1811 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1812 | 1813 | object-assign@^4.0.1, object-assign@^4.1.0: 1814 | version "4.1.1" 1815 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1816 | 1817 | object.omit@^2.0.0: 1818 | version "2.0.1" 1819 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1820 | dependencies: 1821 | for-own "^0.1.4" 1822 | is-extendable "^0.1.1" 1823 | 1824 | observable-to-promise@^0.5.0: 1825 | version "0.5.0" 1826 | resolved "https://registry.yarnpkg.com/observable-to-promise/-/observable-to-promise-0.5.0.tgz#c828f0f0dc47e9f86af8a4977c5d55076ce7a91f" 1827 | dependencies: 1828 | is-observable "^0.2.0" 1829 | symbol-observable "^1.0.4" 1830 | 1831 | once@^1.3.0: 1832 | version "1.4.0" 1833 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1834 | dependencies: 1835 | wrappy "1" 1836 | 1837 | onetime@^2.0.0: 1838 | version "2.0.1" 1839 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 1840 | dependencies: 1841 | mimic-fn "^1.0.0" 1842 | 1843 | option-chain@^1.0.0: 1844 | version "1.0.0" 1845 | resolved "https://registry.yarnpkg.com/option-chain/-/option-chain-1.0.0.tgz#938d73bd4e1783f948d34023644ada23669e30f2" 1846 | 1847 | os-homedir@^1.0.0: 1848 | version "1.0.2" 1849 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1850 | 1851 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 1852 | version "1.0.2" 1853 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1854 | 1855 | osenv@^0.1.4: 1856 | version "0.1.5" 1857 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 1858 | dependencies: 1859 | os-homedir "^1.0.0" 1860 | os-tmpdir "^1.0.0" 1861 | 1862 | p-finally@^1.0.0: 1863 | version "1.0.0" 1864 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 1865 | 1866 | p-limit@^1.1.0: 1867 | version "1.3.0" 1868 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" 1869 | dependencies: 1870 | p-try "^1.0.0" 1871 | 1872 | p-locate@^2.0.0: 1873 | version "2.0.0" 1874 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1875 | dependencies: 1876 | p-limit "^1.1.0" 1877 | 1878 | p-try@^1.0.0: 1879 | version "1.0.0" 1880 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 1881 | 1882 | package-hash@^1.2.0: 1883 | version "1.2.0" 1884 | resolved "https://registry.yarnpkg.com/package-hash/-/package-hash-1.2.0.tgz#003e56cd57b736a6ed6114cc2b81542672770e44" 1885 | dependencies: 1886 | md5-hex "^1.3.0" 1887 | 1888 | package-hash@^2.0.0: 1889 | version "2.0.0" 1890 | resolved "https://registry.yarnpkg.com/package-hash/-/package-hash-2.0.0.tgz#78ae326c89e05a4d813b68601977af05c00d2a0d" 1891 | dependencies: 1892 | graceful-fs "^4.1.11" 1893 | lodash.flattendeep "^4.4.0" 1894 | md5-hex "^2.0.0" 1895 | release-zalgo "^1.0.0" 1896 | 1897 | package-json@^4.0.0: 1898 | version "4.0.1" 1899 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed" 1900 | dependencies: 1901 | got "^6.7.1" 1902 | registry-auth-token "^3.0.1" 1903 | registry-url "^3.0.3" 1904 | semver "^5.1.0" 1905 | 1906 | parse-glob@^3.0.4: 1907 | version "3.0.4" 1908 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1909 | dependencies: 1910 | glob-base "^0.3.0" 1911 | is-dotfile "^1.0.0" 1912 | is-extglob "^1.0.0" 1913 | is-glob "^2.0.0" 1914 | 1915 | parse-json@^2.2.0: 1916 | version "2.2.0" 1917 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1918 | dependencies: 1919 | error-ex "^1.2.0" 1920 | 1921 | parse-json@^4.0.0: 1922 | version "4.0.0" 1923 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" 1924 | dependencies: 1925 | error-ex "^1.3.1" 1926 | json-parse-better-errors "^1.0.1" 1927 | 1928 | parse-ms@^0.1.0: 1929 | version "0.1.2" 1930 | resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-0.1.2.tgz#dd3fa25ed6c2efc7bdde12ad9b46c163aa29224e" 1931 | 1932 | parse-ms@^1.0.0: 1933 | version "1.0.1" 1934 | resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-1.0.1.tgz#56346d4749d78f23430ca0c713850aef91aa361d" 1935 | 1936 | path-exists@^2.0.0: 1937 | version "2.1.0" 1938 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1939 | dependencies: 1940 | pinkie-promise "^2.0.0" 1941 | 1942 | path-exists@^3.0.0: 1943 | version "3.0.0" 1944 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1945 | 1946 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 1947 | version "1.0.1" 1948 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1949 | 1950 | path-is-inside@^1.0.1: 1951 | version "1.0.2" 1952 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 1953 | 1954 | path-key@^2.0.0: 1955 | version "2.0.1" 1956 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 1957 | 1958 | path-type@^1.0.0: 1959 | version "1.1.0" 1960 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 1961 | dependencies: 1962 | graceful-fs "^4.1.2" 1963 | pify "^2.0.0" 1964 | pinkie-promise "^2.0.0" 1965 | 1966 | path-type@^2.0.0: 1967 | version "2.0.0" 1968 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 1969 | dependencies: 1970 | pify "^2.0.0" 1971 | 1972 | pify@^2.0.0: 1973 | version "2.3.0" 1974 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1975 | 1976 | pify@^3.0.0: 1977 | version "3.0.0" 1978 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 1979 | 1980 | pinkie-promise@^1.0.0: 1981 | version "1.0.0" 1982 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-1.0.0.tgz#d1da67f5482563bb7cf57f286ae2822ecfbf3670" 1983 | dependencies: 1984 | pinkie "^1.0.0" 1985 | 1986 | pinkie-promise@^2.0.0: 1987 | version "2.0.1" 1988 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1989 | dependencies: 1990 | pinkie "^2.0.0" 1991 | 1992 | pinkie@^1.0.0: 1993 | version "1.0.0" 1994 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-1.0.0.tgz#5a47f28ba1015d0201bda7bf0f358e47bec8c7e4" 1995 | 1996 | pinkie@^2.0.0: 1997 | version "2.0.4" 1998 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1999 | 2000 | pkg-conf@^2.0.0: 2001 | version "2.1.0" 2002 | resolved "https://registry.yarnpkg.com/pkg-conf/-/pkg-conf-2.1.0.tgz#2126514ca6f2abfebd168596df18ba57867f0058" 2003 | dependencies: 2004 | find-up "^2.0.0" 2005 | load-json-file "^4.0.0" 2006 | 2007 | pkg-dir@^2.0.0: 2008 | version "2.0.0" 2009 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" 2010 | dependencies: 2011 | find-up "^2.1.0" 2012 | 2013 | plur@^2.0.0: 2014 | version "2.1.2" 2015 | resolved "https://registry.yarnpkg.com/plur/-/plur-2.1.2.tgz#7482452c1a0f508e3e344eaec312c91c29dc655a" 2016 | dependencies: 2017 | irregular-plurals "^1.0.0" 2018 | 2019 | prepend-http@^1.0.1: 2020 | version "1.0.4" 2021 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 2022 | 2023 | preserve@^0.2.0: 2024 | version "0.2.0" 2025 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2026 | 2027 | pretty-ms@^0.2.1: 2028 | version "0.2.2" 2029 | resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-0.2.2.tgz#da879a682ff33a37011046f13d627f67c73b84f6" 2030 | dependencies: 2031 | parse-ms "^0.1.0" 2032 | 2033 | pretty-ms@^3.0.0: 2034 | version "3.2.0" 2035 | resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-3.2.0.tgz#87a8feaf27fc18414d75441467d411d6e6098a25" 2036 | dependencies: 2037 | parse-ms "^1.0.0" 2038 | 2039 | private@^0.1.8: 2040 | version "0.1.8" 2041 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 2042 | 2043 | process-nextick-args@~2.0.0: 2044 | version "2.0.0" 2045 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 2046 | 2047 | pseudomap@^1.0.2: 2048 | version "1.0.2" 2049 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2050 | 2051 | randomatic@^3.0.0: 2052 | version "3.0.0" 2053 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-3.0.0.tgz#d35490030eb4f7578de292ce6dfb04a91a128923" 2054 | dependencies: 2055 | is-number "^4.0.0" 2056 | kind-of "^6.0.0" 2057 | math-random "^1.0.1" 2058 | 2059 | rc@^1.0.1, rc@^1.1.6, rc@^1.1.7: 2060 | version "1.2.8" 2061 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 2062 | dependencies: 2063 | deep-extend "^0.6.0" 2064 | ini "~1.3.0" 2065 | minimist "^1.2.0" 2066 | strip-json-comments "~2.0.1" 2067 | 2068 | read-pkg-up@^1.0.1: 2069 | version "1.0.1" 2070 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2071 | dependencies: 2072 | find-up "^1.0.0" 2073 | read-pkg "^1.0.0" 2074 | 2075 | read-pkg-up@^2.0.0: 2076 | version "2.0.0" 2077 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 2078 | dependencies: 2079 | find-up "^2.0.0" 2080 | read-pkg "^2.0.0" 2081 | 2082 | read-pkg@^1.0.0: 2083 | version "1.1.0" 2084 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2085 | dependencies: 2086 | load-json-file "^1.0.0" 2087 | normalize-package-data "^2.3.2" 2088 | path-type "^1.0.0" 2089 | 2090 | read-pkg@^2.0.0: 2091 | version "2.0.0" 2092 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 2093 | dependencies: 2094 | load-json-file "^2.0.0" 2095 | normalize-package-data "^2.3.2" 2096 | path-type "^2.0.0" 2097 | 2098 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.5: 2099 | version "2.3.6" 2100 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 2101 | dependencies: 2102 | core-util-is "~1.0.0" 2103 | inherits "~2.0.3" 2104 | isarray "~1.0.0" 2105 | process-nextick-args "~2.0.0" 2106 | safe-buffer "~5.1.1" 2107 | string_decoder "~1.1.1" 2108 | util-deprecate "~1.0.1" 2109 | 2110 | readdirp@^2.0.0: 2111 | version "2.1.0" 2112 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2113 | dependencies: 2114 | graceful-fs "^4.1.2" 2115 | minimatch "^3.0.2" 2116 | readable-stream "^2.0.2" 2117 | set-immediate-shim "^1.0.1" 2118 | 2119 | redent@^1.0.0: 2120 | version "1.0.0" 2121 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 2122 | dependencies: 2123 | indent-string "^2.1.0" 2124 | strip-indent "^1.0.1" 2125 | 2126 | regenerate@^1.2.1: 2127 | version "1.4.0" 2128 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" 2129 | 2130 | regenerator-runtime@^0.11.0: 2131 | version "0.11.1" 2132 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 2133 | 2134 | regex-cache@^0.4.2: 2135 | version "0.4.4" 2136 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2137 | dependencies: 2138 | is-equal-shallow "^0.1.3" 2139 | 2140 | regexpu-core@^2.0.0: 2141 | version "2.0.0" 2142 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2143 | dependencies: 2144 | regenerate "^1.2.1" 2145 | regjsgen "^0.2.0" 2146 | regjsparser "^0.1.4" 2147 | 2148 | registry-auth-token@^3.0.1: 2149 | version "3.3.2" 2150 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.2.tgz#851fd49038eecb586911115af845260eec983f20" 2151 | dependencies: 2152 | rc "^1.1.6" 2153 | safe-buffer "^5.0.1" 2154 | 2155 | registry-url@^3.0.3: 2156 | version "3.1.0" 2157 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 2158 | dependencies: 2159 | rc "^1.0.1" 2160 | 2161 | regjsgen@^0.2.0: 2162 | version "0.2.0" 2163 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2164 | 2165 | regjsparser@^0.1.4: 2166 | version "0.1.5" 2167 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2168 | dependencies: 2169 | jsesc "~0.5.0" 2170 | 2171 | release-zalgo@^1.0.0: 2172 | version "1.0.0" 2173 | resolved "https://registry.yarnpkg.com/release-zalgo/-/release-zalgo-1.0.0.tgz#09700b7e5074329739330e535c5a90fb67851730" 2174 | dependencies: 2175 | es6-error "^4.0.1" 2176 | 2177 | remove-trailing-separator@^1.0.1: 2178 | version "1.1.0" 2179 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2180 | 2181 | repeat-element@^1.1.2: 2182 | version "1.1.2" 2183 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2184 | 2185 | repeat-string@^1.5.2: 2186 | version "1.6.1" 2187 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2188 | 2189 | repeating@^2.0.0: 2190 | version "2.0.1" 2191 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2192 | dependencies: 2193 | is-finite "^1.0.0" 2194 | 2195 | require-precompiled@^0.1.0: 2196 | version "0.1.0" 2197 | resolved "https://registry.yarnpkg.com/require-precompiled/-/require-precompiled-0.1.0.tgz#5a1b52eb70ebed43eb982e974c85ab59571e56fa" 2198 | 2199 | resolve-cwd@^2.0.0: 2200 | version "2.0.0" 2201 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" 2202 | dependencies: 2203 | resolve-from "^3.0.0" 2204 | 2205 | resolve-from@^3.0.0: 2206 | version "3.0.0" 2207 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" 2208 | 2209 | restore-cursor@^2.0.0: 2210 | version "2.0.0" 2211 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 2212 | dependencies: 2213 | onetime "^2.0.0" 2214 | signal-exit "^3.0.2" 2215 | 2216 | rimraf@^2.6.1: 2217 | version "2.6.2" 2218 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2219 | dependencies: 2220 | glob "^7.0.5" 2221 | 2222 | "rollup40@npm:rollup@0.40.x": 2223 | version "0.40.2" 2224 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.40.2.tgz#b59c8377332f828be38983192f3369e502f9e44b" 2225 | dependencies: 2226 | source-map-support "^0.4.0" 2227 | 2228 | "rollup45@npm:rollup@0.45.x": 2229 | version "0.45.2" 2230 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.45.2.tgz#63a284c2b31234656f24e9e9717fabb6a7f0fa43" 2231 | dependencies: 2232 | source-map-support "^0.4.0" 2233 | 2234 | "rollup50@npm:rollup@0.50.x": 2235 | version "0.50.1" 2236 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.50.1.tgz#e4dafcbf8d2bb0d9f5589d0cc6f64d76b8815730" 2237 | 2238 | "rollup55@npm:rollup@0.55.x": 2239 | version "0.55.5" 2240 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.55.5.tgz#2f88c300f7cf24b5ec2dca8a6aba73b04e087e93" 2241 | 2242 | "rollup60@npm:rollup@0.60.x": 2243 | version "0.60.0" 2244 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.60.0.tgz#2c4acaaf3d8a858a81ff740d6253e21eeb58ff21" 2245 | dependencies: 2246 | "@types/estree" "0.0.39" 2247 | "@types/node" "*" 2248 | 2249 | rollup@^0.60.1: 2250 | version "0.60.1" 2251 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.60.1.tgz#07cb66153f1541d5f7e82b8393b405c31647dae9" 2252 | dependencies: 2253 | "@types/estree" "0.0.39" 2254 | "@types/node" "*" 2255 | 2256 | safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2257 | version "5.1.2" 2258 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 2259 | 2260 | "safer-buffer@>= 2.1.2 < 3": 2261 | version "2.1.2" 2262 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 2263 | 2264 | sax@^1.2.4: 2265 | version "1.2.4" 2266 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2267 | 2268 | semver-diff@^2.0.0: 2269 | version "2.1.0" 2270 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 2271 | dependencies: 2272 | semver "^5.0.3" 2273 | 2274 | "semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, semver@^5.4.1: 2275 | version "5.5.0" 2276 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 2277 | 2278 | serialize-error@^2.1.0: 2279 | version "2.1.0" 2280 | resolved "https://registry.yarnpkg.com/serialize-error/-/serialize-error-2.1.0.tgz#50b679d5635cdf84667bdc8e59af4e5b81d5f60a" 2281 | 2282 | set-blocking@~2.0.0: 2283 | version "2.0.0" 2284 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2285 | 2286 | set-immediate-shim@^1.0.1: 2287 | version "1.0.1" 2288 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2289 | 2290 | shebang-command@^1.2.0: 2291 | version "1.2.0" 2292 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2293 | dependencies: 2294 | shebang-regex "^1.0.0" 2295 | 2296 | shebang-regex@^1.0.0: 2297 | version "1.0.0" 2298 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2299 | 2300 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2301 | version "3.0.2" 2302 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2303 | 2304 | slash@^1.0.0: 2305 | version "1.0.0" 2306 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2307 | 2308 | slice-ansi@^1.0.0: 2309 | version "1.0.0" 2310 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" 2311 | dependencies: 2312 | is-fullwidth-code-point "^2.0.0" 2313 | 2314 | slide@^1.1.5: 2315 | version "1.1.6" 2316 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 2317 | 2318 | sort-keys@^2.0.0: 2319 | version "2.0.0" 2320 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-2.0.0.tgz#658535584861ec97d730d6cf41822e1f56684128" 2321 | dependencies: 2322 | is-plain-obj "^1.0.0" 2323 | 2324 | source-map-support@^0.4.0, source-map-support@^0.4.15: 2325 | version "0.4.18" 2326 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 2327 | dependencies: 2328 | source-map "^0.5.6" 2329 | 2330 | source-map-support@^0.5.0: 2331 | version "0.5.6" 2332 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.6.tgz#4435cee46b1aab62b8e8610ce60f788091c51c13" 2333 | dependencies: 2334 | buffer-from "^1.0.0" 2335 | source-map "^0.6.0" 2336 | 2337 | source-map@^0.5.0, source-map@^0.5.6, source-map@^0.5.7: 2338 | version "0.5.7" 2339 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2340 | 2341 | source-map@^0.6.0: 2342 | version "0.6.1" 2343 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2344 | 2345 | spdx-correct@^3.0.0: 2346 | version "3.0.0" 2347 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.0.0.tgz#05a5b4d7153a195bc92c3c425b69f3b2a9524c82" 2348 | dependencies: 2349 | spdx-expression-parse "^3.0.0" 2350 | spdx-license-ids "^3.0.0" 2351 | 2352 | spdx-exceptions@^2.1.0: 2353 | version "2.1.0" 2354 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz#2c7ae61056c714a5b9b9b2b2af7d311ef5c78fe9" 2355 | 2356 | spdx-expression-parse@^3.0.0: 2357 | version "3.0.0" 2358 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" 2359 | dependencies: 2360 | spdx-exceptions "^2.1.0" 2361 | spdx-license-ids "^3.0.0" 2362 | 2363 | spdx-license-ids@^3.0.0: 2364 | version "3.0.0" 2365 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz#7a7cd28470cc6d3a1cfe6d66886f6bc430d3ac87" 2366 | 2367 | sprintf-js@~1.0.2: 2368 | version "1.0.3" 2369 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2370 | 2371 | stack-utils@^1.0.1: 2372 | version "1.0.1" 2373 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.1.tgz#d4f33ab54e8e38778b0ca5cfd3b3afb12db68620" 2374 | 2375 | string-width@^1.0.1: 2376 | version "1.0.2" 2377 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2378 | dependencies: 2379 | code-point-at "^1.0.0" 2380 | is-fullwidth-code-point "^1.0.0" 2381 | strip-ansi "^3.0.0" 2382 | 2383 | "string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.1: 2384 | version "2.1.1" 2385 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2386 | dependencies: 2387 | is-fullwidth-code-point "^2.0.0" 2388 | strip-ansi "^4.0.0" 2389 | 2390 | string_decoder@~1.1.1: 2391 | version "1.1.1" 2392 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 2393 | dependencies: 2394 | safe-buffer "~5.1.0" 2395 | 2396 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2397 | version "3.0.1" 2398 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2399 | dependencies: 2400 | ansi-regex "^2.0.0" 2401 | 2402 | strip-ansi@^4.0.0: 2403 | version "4.0.0" 2404 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2405 | dependencies: 2406 | ansi-regex "^3.0.0" 2407 | 2408 | strip-ansi@~0.1.0: 2409 | version "0.1.1" 2410 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-0.1.1.tgz#39e8a98d044d150660abe4a6808acf70bb7bc991" 2411 | 2412 | strip-bom-buf@^1.0.0: 2413 | version "1.0.0" 2414 | resolved "https://registry.yarnpkg.com/strip-bom-buf/-/strip-bom-buf-1.0.0.tgz#1cb45aaf57530f4caf86c7f75179d2c9a51dd572" 2415 | dependencies: 2416 | is-utf8 "^0.2.1" 2417 | 2418 | strip-bom@^2.0.0: 2419 | version "2.0.0" 2420 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2421 | dependencies: 2422 | is-utf8 "^0.2.0" 2423 | 2424 | strip-bom@^3.0.0: 2425 | version "3.0.0" 2426 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2427 | 2428 | strip-eof@^1.0.0: 2429 | version "1.0.0" 2430 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 2431 | 2432 | strip-indent@^1.0.1: 2433 | version "1.0.1" 2434 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 2435 | dependencies: 2436 | get-stdin "^4.0.1" 2437 | 2438 | strip-indent@^2.0.0: 2439 | version "2.0.0" 2440 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" 2441 | 2442 | strip-json-comments@~2.0.1: 2443 | version "2.0.1" 2444 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2445 | 2446 | supertap@^1.0.0: 2447 | version "1.0.0" 2448 | resolved "https://registry.yarnpkg.com/supertap/-/supertap-1.0.0.tgz#bd9751c7fafd68c68cf8222a29892206a119fa9e" 2449 | dependencies: 2450 | arrify "^1.0.1" 2451 | indent-string "^3.2.0" 2452 | js-yaml "^3.10.0" 2453 | serialize-error "^2.1.0" 2454 | strip-ansi "^4.0.0" 2455 | 2456 | supports-color@^2.0.0: 2457 | version "2.0.0" 2458 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2459 | 2460 | supports-color@^5.0.0, supports-color@^5.3.0: 2461 | version "5.4.0" 2462 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.4.0.tgz#1c6b337402c2137605efe19f10fec390f6faab54" 2463 | dependencies: 2464 | has-flag "^3.0.0" 2465 | 2466 | symbol-observable@^0.2.2: 2467 | version "0.2.4" 2468 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-0.2.4.tgz#95a83db26186d6af7e7a18dbd9760a2f86d08f40" 2469 | 2470 | symbol-observable@^1.0.4, symbol-observable@^1.1.0: 2471 | version "1.2.0" 2472 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804" 2473 | 2474 | tar@^4: 2475 | version "4.4.4" 2476 | resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.4.tgz#ec8409fae9f665a4355cc3b4087d0820232bb8cd" 2477 | dependencies: 2478 | chownr "^1.0.1" 2479 | fs-minipass "^1.2.5" 2480 | minipass "^2.3.3" 2481 | minizlib "^1.1.0" 2482 | mkdirp "^0.5.0" 2483 | safe-buffer "^5.1.2" 2484 | yallist "^3.0.2" 2485 | 2486 | term-size@^1.2.0: 2487 | version "1.2.0" 2488 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69" 2489 | dependencies: 2490 | execa "^0.7.0" 2491 | 2492 | text-table@^0.2.0: 2493 | version "0.2.0" 2494 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 2495 | 2496 | through2@^2.0.0: 2497 | version "2.0.3" 2498 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 2499 | dependencies: 2500 | readable-stream "^2.1.5" 2501 | xtend "~4.0.1" 2502 | 2503 | time-zone@^1.0.0: 2504 | version "1.0.0" 2505 | resolved "https://registry.yarnpkg.com/time-zone/-/time-zone-1.0.0.tgz#99c5bf55958966af6d06d83bdf3800dc82faec5d" 2506 | 2507 | timed-out@^4.0.0: 2508 | version "4.0.1" 2509 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" 2510 | 2511 | to-fast-properties@^1.0.3: 2512 | version "1.0.3" 2513 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2514 | 2515 | trim-newlines@^1.0.0: 2516 | version "1.0.0" 2517 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 2518 | 2519 | trim-off-newlines@^1.0.1: 2520 | version "1.0.1" 2521 | resolved "https://registry.yarnpkg.com/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz#9f9ba9d9efa8764c387698bcbfeb2c848f11adb3" 2522 | 2523 | trim-right@^1.0.1: 2524 | version "1.0.1" 2525 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2526 | 2527 | uid2@0.0.3: 2528 | version "0.0.3" 2529 | resolved "https://registry.yarnpkg.com/uid2/-/uid2-0.0.3.tgz#483126e11774df2f71b8b639dcd799c376162b82" 2530 | 2531 | unique-string@^1.0.0: 2532 | version "1.0.0" 2533 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" 2534 | dependencies: 2535 | crypto-random-string "^1.0.0" 2536 | 2537 | unique-temp-dir@^1.0.0: 2538 | version "1.0.0" 2539 | resolved "https://registry.yarnpkg.com/unique-temp-dir/-/unique-temp-dir-1.0.0.tgz#6dce95b2681ca003eebfb304a415f9cbabcc5385" 2540 | dependencies: 2541 | mkdirp "^0.5.1" 2542 | os-tmpdir "^1.0.1" 2543 | uid2 "0.0.3" 2544 | 2545 | unzip-response@^2.0.1: 2546 | version "2.0.1" 2547 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" 2548 | 2549 | update-notifier@^2.3.0: 2550 | version "2.5.0" 2551 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.5.0.tgz#d0744593e13f161e406acb1d9408b72cad08aff6" 2552 | dependencies: 2553 | boxen "^1.2.1" 2554 | chalk "^2.0.1" 2555 | configstore "^3.0.0" 2556 | import-lazy "^2.1.0" 2557 | is-ci "^1.0.10" 2558 | is-installed-globally "^0.1.0" 2559 | is-npm "^1.0.0" 2560 | latest-version "^3.0.0" 2561 | semver-diff "^2.0.0" 2562 | xdg-basedir "^3.0.0" 2563 | 2564 | url-parse-lax@^1.0.0: 2565 | version "1.0.0" 2566 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" 2567 | dependencies: 2568 | prepend-http "^1.0.1" 2569 | 2570 | util-deprecate@~1.0.1: 2571 | version "1.0.2" 2572 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2573 | 2574 | validate-npm-package-license@^3.0.1: 2575 | version "3.0.3" 2576 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.3.tgz#81643bcbef1bdfecd4623793dc4648948ba98338" 2577 | dependencies: 2578 | spdx-correct "^3.0.0" 2579 | spdx-expression-parse "^3.0.0" 2580 | 2581 | well-known-symbols@^1.0.0: 2582 | version "1.0.0" 2583 | resolved "https://registry.yarnpkg.com/well-known-symbols/-/well-known-symbols-1.0.0.tgz#73c78ae81a7726a8fa598e2880801c8b16225518" 2584 | 2585 | which@^1.2.9: 2586 | version "1.3.1" 2587 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 2588 | dependencies: 2589 | isexe "^2.0.0" 2590 | 2591 | wide-align@^1.1.0: 2592 | version "1.1.3" 2593 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 2594 | dependencies: 2595 | string-width "^1.0.2 || 2" 2596 | 2597 | widest-line@^2.0.0: 2598 | version "2.0.0" 2599 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-2.0.0.tgz#0142a4e8a243f8882c0233aa0e0281aa76152273" 2600 | dependencies: 2601 | string-width "^2.1.1" 2602 | 2603 | wrappy@1: 2604 | version "1.0.2" 2605 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2606 | 2607 | write-file-atomic@^1.1.4: 2608 | version "1.3.4" 2609 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.4.tgz#f807a4f0b1d9e913ae7a48112e6cc3af1991b45f" 2610 | dependencies: 2611 | graceful-fs "^4.1.11" 2612 | imurmurhash "^0.1.4" 2613 | slide "^1.1.5" 2614 | 2615 | write-file-atomic@^2.0.0: 2616 | version "2.3.0" 2617 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 2618 | dependencies: 2619 | graceful-fs "^4.1.11" 2620 | imurmurhash "^0.1.4" 2621 | signal-exit "^3.0.2" 2622 | 2623 | write-json-file@^2.2.0: 2624 | version "2.3.0" 2625 | resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-2.3.0.tgz#2b64c8a33004d54b8698c76d585a77ceb61da32f" 2626 | dependencies: 2627 | detect-indent "^5.0.0" 2628 | graceful-fs "^4.1.2" 2629 | make-dir "^1.0.0" 2630 | pify "^3.0.0" 2631 | sort-keys "^2.0.0" 2632 | write-file-atomic "^2.0.0" 2633 | 2634 | write-pkg@^3.1.0: 2635 | version "3.1.0" 2636 | resolved "https://registry.yarnpkg.com/write-pkg/-/write-pkg-3.1.0.tgz#030a9994cc9993d25b4e75a9f1a1923607291ce9" 2637 | dependencies: 2638 | sort-keys "^2.0.0" 2639 | write-json-file "^2.2.0" 2640 | 2641 | xdg-basedir@^3.0.0: 2642 | version "3.0.0" 2643 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" 2644 | 2645 | xtend@^4.0.0, xtend@~4.0.1: 2646 | version "4.0.1" 2647 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2648 | 2649 | yallist@^2.1.2: 2650 | version "2.1.2" 2651 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 2652 | 2653 | yallist@^3.0.0, yallist@^3.0.2: 2654 | version "3.0.2" 2655 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.2.tgz#8452b4bb7e83c7c188d8041c1a837c773d6d8bb9" 2656 | --------------------------------------------------------------------------------