Omar Abid

How complex is modern web development

Modern web development is notorious for being complicated and a source of heated discussions around the web. Because of the endless new libraries and inter-mingled dependencies, making a simple web application has never been this complicated.

To illustrate, a new create-react-app with TypeScript, sass, and bootstrap consumes around 536M of dependencies. That's a half gigabyte to run a boilerplate web page: It's beyond insanity! Is this complexity self-inflicted, or an outcome of a complex surface?

To find out, I set to create the development and build environments from scratch.

The Requirements

First, let's set my requirements for the development environment and the final build.

  • Optimize for production: Typically, the production build will generate 3 files: index.html, javascript.js and style.css and a resources directory for files like images or fonts. Since I'm building SPAs, I don't expect to have other web pages.

  • One step: A single step (command) to make a final build of the web app. The same for kick-starting the development environment.

  • TypeScript/Sass: These are personal preferences. TypeScript is recommended for large applications and Sass is nice to have.

  • Live Reload: Changes automatically detected, and should trigger a re-build and refresh the browser.

  • React, Bootstrap, Vuejs or Not: Should be able to add React, Bootstrap, Vuejs or any other libraries. But should also be able to create the app without any dependencies; so no assumptions of frameworks.

  • Minimal: Only include what we use; no more.

The available solutions

There is an excess of options, any choice is going to be driven by personal preferences. I try to reason below what I picked.

  • gulp: gulp is a build tool that pipelines resources and transforms them. I like the idea of pipelining as it gives the flexibility to integrate with any program.

  • webpack: webpack is primarily a module bundler that could be used as a build tool. I find gulp superior as a build tool, and webpack superior as a bundler/transpiler. So I mixed both.

  • npm: yarn is the hot new thing for package management, but npm did catch up.

  • browser-sync: Browsersync is quite advanced and is very configurable. It also plays nicely with gulp.

If this seems complicated, you don't know the half of it. There are many other plugins to use with gulp and webpack; and TypeScript is quite a challenge to get it to compile on reasonable performance.

The diagram below is actually a simplification of the whole workflow.

workflow.png

So how did we do?

The final boilerplate can be found in this Github repository: front-root. It's still an experimental boilerplate, so use with caution.

There is a total of 5020 dependencies, 2590 of which are unique (non deduplicated). The total size of the node_modules directory is 287M. So I guess we did a bit better than the react-create-app...

Here is the full list of the dependencies tree.

front-root@1.0.0 ~/front-root
├─┬ @types/jest@26.0.15
│ ├─┬ jest-diff@26.6.0
│ │ ├─┬ chalk@4.1.0
│ │ │ ├─┬ ansi-styles@4.3.0
│ │ │ │ └─┬ color-convert@2.0.1
│ │ │ │   └── color-name@1.1.4
│ │ │ └─┬ supports-color@7.2.0
│ │ │   └── has-flag@4.0.0
│ │ ├── diff-sequences@26.5.0
│ │ ├── jest-get-type@26.3.0
│ │ └── pretty-format@26.6.0 deduped
│ └─┬ pretty-format@26.6.0
│   ├─┬ @jest/types@26.6.0
│   │ ├── @types/istanbul-lib-coverage@2.0.3
│   │ ├─┬ @types/istanbul-reports@3.0.0
│   │ │ └─┬ @types/istanbul-lib-report@3.0.0
│   │ │   └── @types/istanbul-lib-coverage@2.0.3 deduped
│   │ ├── @types/node@13.5.0 deduped
│   │ ├─┬ @types/yargs@15.0.7
│   │ │ └── @types/yargs-parser@15.0.0
│   │ └─┬ chalk@4.1.0
│   │   ├── ansi-styles@4.3.0 deduped
│   │   └─┬ supports-color@7.2.0
│   │     └── has-flag@4.0.0
│   ├── ansi-regex@5.0.0
│   ├─┬ ansi-styles@4.3.0
│   │ └─┬ color-convert@2.0.1
│   │   └── color-name@1.1.4
│   └── react-is@16.13.0
├─┬ @types/react@16.9.53
│ ├── @types/prop-types@15.7.3
│ └── csstype@3.0.3
├─┬ @types/react-dom@16.9.8
│ └── @types/react@16.9.53 deduped
├─┬ assemble@0.24.3
│ ├─┬ assemble-core@0.31.0
│ │ ├─┬ assemble-fs@1.0.1
│ │ │ ├─┬ assemble-handle@0.1.4
│ │ │ │ └── through2@2.0.5 deduped
│ │ │ ├── extend-shallow@2.0.1 deduped
│ │ │ ├── file-is-binary@1.0.0 deduped
│ │ │ ├── fs-exists-sync@0.1.0 deduped
│ │ │ ├── is-valid-app@0.3.0 deduped
│ │ │ ├── lazy-cache@2.0.2 deduped
│ │ │ ├─┬ stream-combiner@0.2.2
│ │ │ │ ├── duplexer@0.1.1
│ │ │ │ └── through@2.3.8 deduped
│ │ │ ├── through2@2.0.5 deduped
│ │ │ └─┬ vinyl-fs@2.4.4
│ │ │   ├── duplexify@3.7.1 deduped
│ │ │   ├─┬ glob-stream@5.3.5
│ │ │   │ ├── extend@3.0.2 deduped
│ │ │   │ ├─┬ glob@5.0.15
│ │ │   │ │ ├── inflight@1.0.6 deduped
│ │ │   │ │ ├── inherits@2.0.4 deduped
│ │ │   │ │ ├── minimatch@3.0.4 deduped
│ │ │   │ │ ├── once@1.4.0 deduped
│ │ │   │ │ └── path-is-absolute@1.0.1 deduped
│ │ │   │ ├── glob-parent@3.1.0 deduped
│ │ │   │ ├── micromatch@2.3.11 deduped
│ │ │   │ ├─┬ ordered-read-streams@0.3.0
│ │ │   │ │ ├── is-stream@1.1.0 deduped
│ │ │   │ │ └── readable-stream@2.3.7 deduped
│ │ │   │ ├─┬ through2@0.6.5
│ │ │   │ │ ├─┬ readable-stream@1.0.34
│ │ │   │ │ │ ├── core-util-is@1.0.2 deduped
│ │ │   │ │ │ ├── inherits@2.0.4 deduped
│ │ │   │ │ │ ├── isarray@0.0.1
│ │ │   │ │ │ └── string_decoder@0.10.31
│ │ │   │ │ └── xtend@4.0.2 deduped
│ │ │   │ ├─┬ to-absolute-glob@0.1.1
│ │ │   │ │ └── extend-shallow@2.0.1 deduped
│ │ │   │ └── unique-stream@2.3.1 deduped
│ │ │   ├── graceful-fs@4.2.3 deduped
│ │ │   ├─┬ gulp-sourcemaps@1.6.0
│ │ │   │ ├── convert-source-map@1.7.0 deduped
│ │ │   │ ├── graceful-fs@4.2.3 deduped
│ │ │   │ ├── strip-bom@2.0.0 deduped
│ │ │   │ ├── through2@2.0.5 deduped
│ │ │   │ └── vinyl@1.2.0 deduped
│ │ │   ├── is-valid-glob@0.3.0 deduped
│ │ │   ├── lazystream@1.0.0 deduped
│ │ │   ├── lodash.isequal@4.5.0
│ │ │   ├─┬ merge-stream@1.0.1
│ │ │   │ └── readable-stream@2.3.7 deduped
│ │ │   ├── mkdirp@0.5.1 deduped
│ │ │   ├── object-assign@4.1.1 deduped
│ │ │   ├── readable-stream@2.3.7 deduped
│ │ │   ├── strip-bom@2.0.0 deduped
│ │ │   ├─┬ strip-bom-stream@1.0.0
│ │ │   │ ├── first-chunk-stream@1.0.0
│ │ │   │ └── strip-bom@2.0.0 deduped
│ │ │   ├── through2@2.0.5 deduped
│ │ │   ├─┬ through2-filter@2.0.0
│ │ │   │ ├── through2@2.0.5 deduped
│ │ │   │ └── xtend@4.0.2 deduped
│ │ │   ├── vali-date@1.0.0
│ │ │   └─┬ vinyl@1.2.0
│ │ │     ├── clone@1.0.4 deduped
│ │ │     ├── clone-stats@0.0.1 deduped
│ │ │     └── replace-ext@0.0.1 deduped
│ │ ├─┬ assemble-render-file@1.0.3
│ │ │ ├── async-array-reduce@0.2.1
│ │ │ ├── debug@2.6.9 deduped
│ │ │ ├── file-is-binary@1.0.0 deduped
│ │ │ ├── is-valid-app@0.3.0 deduped
│ │ │ ├── lazy-cache@2.0.2 deduped
│ │ │ ├── mixin-deep@1.3.2 deduped
│ │ │ ├── plugin-error@0.1.2 deduped
│ │ │ └── through2@2.0.5 deduped
│ │ ├─┬ assemble-streams@1.0.1
│ │ │ ├── assemble-handle@0.1.4 deduped
│ │ │ ├── define-property@0.2.5 deduped
│ │ │ ├─┬ is-valid-app@0.2.1
│ │ │ │ ├── debug@2.6.9 deduped
│ │ │ │ ├── is-registered@0.1.5 deduped
│ │ │ │ ├─┬ is-valid-instance@0.2.0
│ │ │ │ │ ├─┬ isobject@2.1.0
│ │ │ │ │ │ └── isarray@1.0.0 deduped
│ │ │ │ │ └── pascalcase@0.1.1 deduped
│ │ │ │ └── lazy-cache@2.0.2 deduped
│ │ │ ├─┬ kind-of@3.2.2
│ │ │ │ └── is-buffer@1.1.6 deduped
│ │ │ ├── lazy-cache@2.0.2 deduped
│ │ │ ├─┬ match-file@0.2.2
│ │ │ │ ├── is-glob@3.1.0 deduped
│ │ │ │ ├── isobject@3.0.1 deduped
│ │ │ │ └── micromatch@2.3.11 deduped
│ │ │ ├─┬ src-stream@0.1.1
│ │ │ │ ├── duplexify@3.7.1 deduped
│ │ │ │ ├─┬ merge-stream@0.1.8
│ │ │ │ │ └─┬ through2@0.6.5
│ │ │ │ │   ├─┬ readable-stream@1.0.34
│ │ │ │ │   │ ├── core-util-is@1.0.2 deduped
│ │ │ │ │   │ ├── inherits@2.0.4 deduped
│ │ │ │ │   │ ├── isarray@0.0.1
│ │ │ │ │   │ └── string_decoder@0.10.31
│ │ │ │ │   └── xtend@4.0.2 deduped
│ │ │ │ └── through2@2.0.5 deduped
│ │ │ └── through2@2.0.5 deduped
│ │ ├─┬ base-task@0.7.1
│ │ │ ├─┬ composer@0.14.2
│ │ │ │ ├── array-unique@0.3.2
│ │ │ │ ├── bach@1.2.0 deduped
│ │ │ │ ├── co@4.6.0
│ │ │ │ ├── component-emitter@1.3.0 deduped
│ │ │ │ ├─┬ define-property@1.0.0
│ │ │ │ │ └─┬ is-descriptor@1.0.2
│ │ │ │ │   ├─┬ is-accessor-descriptor@1.0.0
│ │ │ │ │   │ └── kind-of@6.0.3 deduped
│ │ │ │ │   ├─┬ is-data-descriptor@1.0.0
│ │ │ │ │   │ └── kind-of@6.0.3 deduped
│ │ │ │ │   └── kind-of@6.0.3
│ │ │ │ ├── extend-shallow@2.0.1 deduped
│ │ │ │ ├── is-generator@1.0.3
│ │ │ │ ├── is-glob@3.1.0 deduped
│ │ │ │ ├── isobject@3.0.1 deduped
│ │ │ │ ├── lazy-cache@2.0.2 deduped
│ │ │ │ ├── micromatch@2.3.11 deduped
│ │ │ │ ├── nanoseconds@0.1.0
│ │ │ │ └── pretty-time@0.2.0 deduped
│ │ │ └── is-valid-app@0.3.0 deduped
│ │ ├─┬ define-property@0.2.5
│ │ │ └─┬ is-descriptor@0.1.6
│ │ │   ├─┬ is-accessor-descriptor@0.1.6
│ │ │   │ └─┬ kind-of@3.2.2
│ │ │   │   └── is-buffer@1.1.6 deduped
│ │ │   ├─┬ is-data-descriptor@0.1.4
│ │ │   │ └─┬ kind-of@3.2.2
│ │ │   │   └── is-buffer@1.1.6 deduped
│ │ │   └── kind-of@5.1.0 deduped
│ │ ├── lazy-cache@2.0.2 deduped
│ │ └─┬ templates@1.2.9
│ │   ├─┬ array-sort@0.1.4
│ │   │ ├── default-compare@1.0.0 deduped
│ │   │ ├── get-value@2.0.6 deduped
│ │   │ └── kind-of@5.1.0 deduped
│ │   ├── async-each@1.0.3
│ │   ├─┬ base@0.11.2
│ │   │ ├── cache-base@1.0.1 deduped
│ │   │ ├─┬ class-utils@0.3.6
│ │   │ │ ├── arr-union@3.1.0
│ │   │ │ ├── define-property@0.2.5 deduped
│ │   │ │ ├── isobject@3.0.1 deduped
│ │   │ │ └─┬ static-extend@0.1.2
│ │   │ │   ├── define-property@0.2.5 deduped
│ │   │ │   └─┬ object-copy@0.1.0
│ │   │ │     ├── copy-descriptor@0.1.1
│ │   │ │     ├── define-property@0.2.5 deduped
│ │   │ │     └─┬ kind-of@3.2.2
│ │   │ │       └── is-buffer@1.1.6 deduped
│ │   │ ├── component-emitter@1.3.0 deduped
│ │   │ ├─┬ define-property@1.0.0
│ │   │ │ └─┬ is-descriptor@1.0.2
│ │   │ │   ├─┬ is-accessor-descriptor@1.0.0
│ │   │ │   │ └── kind-of@6.0.3 deduped
│ │   │ │   ├─┬ is-data-descriptor@1.0.0
│ │   │ │   │ └── kind-of@6.0.3 deduped
│ │   │ │   └── kind-of@6.0.3
│ │   │ ├── isobject@3.0.1 deduped
│ │   │ ├── mixin-deep@1.3.2 deduped
│ │   │ └── pascalcase@0.1.1 deduped
│ │   ├─┬ base-data@0.6.2
│ │   │ ├── arr-flatten@1.1.0 deduped
│ │   │ ├── cache-base@1.0.1 deduped
│ │   │ ├── extend-shallow@2.0.1 deduped
│ │   │ ├── get-value@2.0.6 deduped
│ │   │ ├── has-glob@1.0.0 deduped
│ │   │ ├─┬ has-value@1.0.0
│ │   │ │ ├── get-value@2.0.6 deduped
│ │   │ │ ├─┬ has-values@1.0.0
│ │   │ │ │ ├─┬ is-number@3.0.0
│ │   │ │ │ │ └─┬ kind-of@3.2.2
│ │   │ │ │ │   └── is-buffer@1.1.6 deduped
│ │   │ │ │ └─┬ kind-of@4.0.0
│ │   │ │ │   └── is-buffer@1.1.6 deduped
│ │   │ │ └── isobject@3.0.1 deduped
│ │   │ ├── is-registered@0.1.5 deduped
│ │   │ ├── is-valid-app@0.3.0 deduped
│ │   │ ├── kind-of@5.1.0 deduped
│ │   │ ├── lazy-cache@2.0.2 deduped
│ │   │ ├─┬ merge-value@1.0.0
│ │   │ │ ├── get-value@2.0.6 deduped
│ │   │ │ ├─┬ is-extendable@1.0.1
│ │   │ │ │ └── is-plain-object@2.0.4 deduped
│ │   │ │ ├── mixin-deep@1.3.2 deduped
│ │   │ │ └─┬ set-value@2.0.1
│ │   │ │   ├── extend-shallow@2.0.1 deduped
│ │   │ │   ├── is-extendable@0.1.1
│ │   │ │   ├── is-plain-object@2.0.4 deduped
│ │   │ │   └── split-string@3.1.0 deduped
│ │   │ ├── mixin-deep@1.3.2 deduped
│ │   │ ├── read-file@0.2.0
│ │   │ ├─┬ resolve-glob@1.0.0
│ │   │ │ ├── extend-shallow@2.0.1 deduped
│ │   │ │ ├── is-valid-glob@1.0.0
│ │   │ │ ├─┬ matched@1.0.2
│ │   │ │ │ ├── arr-union@3.1.0
│ │   │ │ │ ├── async-array-reduce@0.2.1 deduped
│ │   │ │ │ ├─┬ glob@7.1.6
│ │   │ │ │ │ ├── fs.realpath@1.0.0 deduped
│ │   │ │ │ │ ├── inflight@1.0.6 deduped
│ │   │ │ │ │ ├── inherits@2.0.4 deduped
│ │   │ │ │ │ ├── minimatch@3.0.4 deduped
│ │   │ │ │ │ ├── once@1.4.0 deduped
│ │   │ │ │ │ └── path-is-absolute@1.0.1 deduped
│ │   │ │ │ ├── has-glob@1.0.0 deduped
│ │   │ │ │ ├── is-valid-glob@1.0.0
│ │   │ │ │ └── resolve-dir@1.0.1 deduped
│ │   │ │ ├─┬ relative@3.0.2
│ │   │ │ │ └─┬ isobject@2.1.0
│ │   │ │ │   └── isarray@1.0.0 deduped
│ │   │ │ └── resolve-dir@1.0.1 deduped
│ │   │ ├─┬ set-value@2.0.1
│ │   │ │ ├── extend-shallow@2.0.1 deduped
│ │   │ │ ├── is-extendable@0.1.1 deduped
│ │   │ │ ├── is-plain-object@2.0.4 deduped
│ │   │ │ └── split-string@3.1.0 deduped
│ │   │ └── union-value@1.0.1 deduped
│ │   ├─┬ base-engines@0.2.1
│ │   │ ├── debug@2.6.9 deduped
│ │   │ ├── define-property@0.2.5 deduped
│ │   │ ├─┬ engine-cache@0.19.4
│ │   │ │ ├─┬ async-helpers@0.3.17
│ │   │ │ │ ├── co@4.6.0 deduped
│ │   │ │ │ └── kind-of@6.0.3
│ │   │ │ ├── extend-shallow@2.0.1 deduped
│ │   │ │ ├─┬ helper-cache@0.7.2
│ │   │ │ │ ├── extend-shallow@2.0.1 deduped
│ │   │ │ │ ├── lazy-cache@0.2.7
│ │   │ │ │ └─┬ lodash.bind@3.1.0
│ │   │ │ │   ├─┬ lodash._createwrapper@3.2.0
│ │   │ │ │   │ └── lodash._root@3.0.1 deduped
│ │   │ │ │   ├── lodash._replaceholders@3.0.0
│ │   │ │ │   └── lodash.restparam@3.6.1 deduped
│ │   │ │ ├── isobject@3.0.1 deduped
│ │   │ │ ├── lazy-cache@2.0.2 deduped
│ │   │ │ └── mixin-deep@1.3.2 deduped
│ │   │ ├─┬ is-valid-app@0.1.2
│ │   │ │ ├── debug@2.6.9 deduped
│ │   │ │ ├── is-registered@0.1.5 deduped
│ │   │ │ ├─┬ is-valid-instance@0.1.0
│ │   │ │ │ ├─┬ isobject@2.1.0
│ │   │ │ │ │ └── isarray@1.0.0 deduped
│ │   │ │ │ └── pascalcase@0.1.1 deduped
│ │   │ │ └── lazy-cache@2.0.2 deduped
│ │   │ └── lazy-cache@2.0.2 deduped
│ │   ├─┬ base-helpers@0.2.0
│ │   │ ├── debug@2.6.9 deduped
│ │   │ ├── define-property@0.2.5 deduped
│ │   │ ├─┬ is-valid-app@0.2.1
│ │   │ │ ├── debug@2.6.9 deduped
│ │   │ │ ├── is-registered@0.1.5 deduped
│ │   │ │ ├─┬ is-valid-instance@0.2.0
│ │   │ │ │ ├─┬ isobject@2.1.0
│ │   │ │ │ │ └── isarray@1.0.0 deduped
│ │   │ │ │ └── pascalcase@0.1.1 deduped
│ │   │ │ └── lazy-cache@2.0.2 deduped
│ │   │ ├── isobject@3.0.1 deduped
│ │   │ ├── lazy-cache@2.0.2 deduped
│ │   │ └─┬ load-helpers@0.3.1
│ │   │   ├── component-emitter@1.3.0 deduped
│ │   │   ├── extend-shallow@2.0.1 deduped
│ │   │   ├── is-valid-glob@0.3.0 deduped
│ │   │   ├── lazy-cache@2.0.2 deduped
│ │   │   ├─┬ matched@0.4.4
│ │   │   │ ├── arr-union@3.1.0
│ │   │   │ ├── async-array-reduce@0.2.1 deduped
│ │   │   │ ├── extend-shallow@2.0.1 deduped
│ │   │   │ ├── fs-exists-sync@0.1.0 deduped
│ │   │   │ ├─┬ glob@7.1.6
│ │   │   │ │ ├── fs.realpath@1.0.0 deduped
│ │   │   │ │ ├── inflight@1.0.6 deduped
│ │   │   │ │ ├── inherits@2.0.4 deduped
│ │   │   │ │ ├── minimatch@3.0.4 deduped
│ │   │   │ │ ├── once@1.4.0 deduped
│ │   │   │ │ └── path-is-absolute@1.0.1 deduped
│ │   │   │ ├─┬ has-glob@0.1.1
│ │   │   │ │ └─┬ is-glob@2.0.1
│ │   │   │ │   └── is-extglob@1.0.0
│ │   │   │ ├── is-valid-glob@0.3.0 deduped
│ │   │   │ ├── lazy-cache@2.0.2 deduped
│ │   │   │ └── resolve-dir@0.1.1 deduped
│ │   │   └─┬ resolve-dir@0.1.1
│ │   │     ├─┬ expand-tilde@1.2.2
│ │   │     │ └── os-homedir@1.0.2 deduped
│ │   │     └── global-modules@0.2.3 deduped
│ │   ├── base-option@0.8.4 deduped
│ │   ├─┬ base-plugins@0.4.13
│ │   │ ├── define-property@0.2.5 deduped
│ │   │ ├── is-registered@0.1.5 deduped
│ │   │ └─┬ isobject@2.1.0
│ │   │   └── isarray@1.0.0 deduped
│ │   ├─┬ base-routes@0.2.2
│ │   │ ├── debug@2.6.9 deduped
│ │   │ ├─┬ en-route@0.7.5
│ │   │ │ ├── arr-flatten@1.1.0 deduped
│ │   │ │ ├── debug@2.6.9 deduped
│ │   │ │ ├── extend-shallow@2.0.1 deduped
│ │   │ │ ├─┬ kind-of@3.2.2
│ │   │ │ │ └── is-buffer@1.1.6 deduped
│ │   │ │ ├── lazy-cache@1.0.4
│ │   │ │ └─┬ path-to-regexp@1.8.0
│ │   │ │   └── isarray@0.0.1
│ │   │ ├─┬ is-valid-app@0.2.1
│ │   │ │ ├── debug@2.6.9 deduped
│ │   │ │ ├── is-registered@0.1.5 deduped
│ │   │ │ ├─┬ is-valid-instance@0.2.0
│ │   │ │ │ ├─┬ isobject@2.1.0
│ │   │ │ │ │ └── isarray@1.0.0 deduped
│ │   │ │ │ └── pascalcase@0.1.1 deduped
│ │   │ │ └── lazy-cache@2.0.2 deduped
│ │   │ ├── lazy-cache@2.0.2 deduped
│ │   │ └── template-error@0.1.2 deduped
│ │   ├── debug@2.6.9 deduped
│ │   ├─┬ deep-bind@0.3.0
│ │   │ └── mixin-deep@1.3.2 deduped
│ │   ├── define-property@0.2.5 deduped
│ │   ├─┬ engine-base@0.1.3
│ │   │ ├── component-emitter@1.3.0 deduped
│ │   │ ├─┬ delimiter-regex@2.0.0
│ │   │ │ ├─┬ extend-shallow@1.1.4
│ │   │ │ │ └── kind-of@1.1.0
│ │   │ │ └─┬ isobject@2.1.0
│ │   │ │   └── isarray@1.0.0 deduped
│ │   │ ├── engine@0.1.12 deduped
│ │   │ ├── engine-utils@0.1.1 deduped
│ │   │ ├── lazy-cache@2.0.2 deduped
│ │   │ ├── mixin-deep@1.3.2 deduped
│ │   │ ├── object.omit@2.0.1 deduped
│ │   │ └── object.pick@1.3.0 deduped
│ │   ├── export-files@2.1.1 deduped
│ │   ├── extend-shallow@2.0.1 deduped
│ │   ├─┬ falsey@0.3.2
│ │   │ └── kind-of@5.1.0 deduped
│ │   ├── get-value@2.0.6 deduped
│ │   ├─┬ get-view@0.1.3
│ │   │ ├── isobject@3.0.1 deduped
│ │   │ └── match-file@0.2.2 deduped
│ │   ├─┬ group-array@0.3.4
│ │   │ ├── arr-flatten@1.1.0 deduped
│ │   │ ├── for-own@0.1.5 deduped
│ │   │ ├── get-value@2.0.6 deduped
│ │   │ ├─┬ kind-of@3.2.2
│ │   │ │ └── is-buffer@1.1.6 deduped
│ │   │ ├─┬ split-string@1.0.1
│ │   │ │ └── extend-shallow@2.0.1 deduped
│ │   │ └── union-value@1.0.1 deduped
│ │   ├─┬ has-glob@1.0.0
│ │   │ └── is-glob@3.1.0 deduped
│ │   ├─┬ has-value@0.3.1
│ │   │ ├── get-value@2.0.6 deduped
│ │   │ ├── has-values@0.1.4
│ │   │ └─┬ isobject@2.1.0
│ │   │   └── isarray@1.0.0 deduped
│ │   ├── inflection@1.12.0
│ │   ├─┬ is-valid-app@0.2.1
│ │   │ ├── debug@2.6.9 deduped
│ │   │ ├── is-registered@0.1.5 deduped
│ │   │ ├─┬ is-valid-instance@0.2.0
│ │   │ │ ├─┬ isobject@2.1.0
│ │   │ │ │ └── isarray@1.0.0 deduped
│ │   │ │ └── pascalcase@0.1.1 deduped
│ │   │ └── lazy-cache@2.0.2 deduped
│ │   ├─┬ layouts@0.12.1
│ │   │ ├─┬ delimiter-regex@1.3.1
│ │   │ │ └─┬ extend-shallow@1.1.4
│ │   │ │   └── kind-of@1.1.0
│ │   │ ├── falsey@0.3.2 deduped
│ │   │ ├── get-view@0.1.3 deduped
│ │   │ └── lazy-cache@2.0.2 deduped
│ │   ├── lazy-cache@2.0.2 deduped
│ │   ├── match-file@0.2.2 deduped
│ │   ├── mixin-deep@1.3.2 deduped
│ │   ├── paginationator@0.1.4
│ │   ├── pascalcase@0.1.1
│ │   ├── set-value@0.4.3 deduped
│ │   ├─┬ template-error@0.1.2
│ │   │ ├── engine@0.1.12 deduped
│ │   │ ├─┬ kind-of@2.0.1
│ │   │ │ └── is-buffer@1.1.6 deduped
│ │   │ ├── lazy-cache@0.2.7
│ │   │ └─┬ rethrow@0.2.3
│ │   │   ├── ansi-bgred@0.1.1 deduped
│ │   │   ├── ansi-red@0.1.1 deduped
│ │   │   ├── ansi-yellow@0.1.1 deduped
│ │   │   ├─┬ extend-shallow@1.1.4
│ │   │   │ └── kind-of@1.1.0
│ │   │   ├── lazy-cache@0.2.7
│ │   │   └─┬ right-align@0.1.3
│ │   │     └─┬ align-text@0.1.4
│ │   │       ├─┬ kind-of@3.2.2
│ │   │       │ └── is-buffer@1.1.6 deduped
│ │   │       ├── longest@1.0.1 deduped
│ │   │       └── repeat-string@1.6.1 deduped
│ │   ├─┬ vinyl-item@1.0.0
│ │   │ ├── base@0.11.2 deduped
│ │   │ ├── base-option@0.8.4 deduped
│ │   │ ├── base-plugins@0.4.13 deduped
│ │   │ ├── clone@2.1.2
│ │   │ ├── clone-stats@1.0.0
│ │   │ ├── define-property@0.2.5 deduped
│ │   │ ├── extend-shallow@2.0.1 deduped
│ │   │ ├── isobject@3.0.1 deduped
│ │   │ ├── lazy-cache@2.0.2 deduped
│ │   │ └─┬ vinyl@2.2.0
│ │   │   ├── clone@2.1.2 deduped
│ │   │   ├── clone-buffer@1.0.0 deduped
│ │   │   ├── clone-stats@1.0.0 deduped
│ │   │   ├── cloneable-readable@1.1.3 deduped
│ │   │   ├── remove-trailing-separator@1.1.0 deduped
│ │   │   └── replace-ext@1.0.0
│ │   └─┬ vinyl-view@2.0.1
│ │     ├── arr-union@3.1.0
│ │     ├── define-property@0.2.5 deduped
│ │     ├── engine-base@0.1.3 deduped
│ │     ├── extend-shallow@2.0.1 deduped
│ │     ├── isobject@3.0.1 deduped
│ │     ├── lazy-cache@2.0.2 deduped
│ │     └── vinyl-item@1.0.0 deduped
│ ├─┬ assemble-loader@1.0.5
│ │ ├─┬ extend-shallow@2.0.1
│ │ │ └── is-extendable@0.1.1
│ │ ├─┬ file-contents@1.0.1
│ │ │ ├── define-property@0.2.5 deduped
│ │ │ ├── extend-shallow@2.0.1 deduped
│ │ │ ├── is-buffer@1.1.6
│ │ │ ├─┬ kind-of@3.2.2
│ │ │ │ └── is-buffer@1.1.6 deduped
│ │ │ ├── lazy-cache@2.0.2 deduped
│ │ │ ├─┬ strip-bom-buffer@0.1.1
│ │ │ │ ├── is-buffer@1.1.6 deduped
│ │ │ │ └── is-utf8@0.2.1 deduped
│ │ │ ├── strip-bom-string@0.1.2
│ │ │ └── through2@2.0.5 deduped
│ │ ├─┬ is-registered@0.1.5
│ │ │ ├── define-property@0.2.5 deduped
│ │ │ └─┬ isobject@2.1.0
│ │ │   └── isarray@1.0.0 deduped
│ │ ├── is-valid-glob@0.3.0
│ │ ├─┬ is-valid-instance@0.2.0
│ │ │ ├─┬ isobject@2.1.0
│ │ │ │ └── isarray@1.0.0 deduped
│ │ │ └── pascalcase@0.1.1 deduped
│ │ ├── isobject@3.0.1
│ │ ├── lazy-cache@2.0.2 deduped
│ │ └─┬ load-templates@1.0.2
│ │   ├── extend-shallow@2.0.1 deduped
│ │   ├── file-contents@1.0.1 deduped
│ │   ├─┬ glob-parent@3.1.0
│ │   │ ├── is-glob@3.1.0 deduped
│ │   │ └── path-dirname@1.0.2
│ │   ├─┬ is-glob@3.1.0
│ │   │ └── is-extglob@2.1.1 deduped
│ │   ├─┬ kind-of@3.2.2
│ │   │ └── is-buffer@1.1.6 deduped
│ │   ├── lazy-cache@2.0.2 deduped
│ │   ├─┬ matched@0.4.4
│ │   │ ├── arr-union@3.1.0
│ │   │ ├── async-array-reduce@0.2.1 deduped
│ │   │ ├── extend-shallow@2.0.1 deduped
│ │   │ ├── fs-exists-sync@0.1.0 deduped
│ │   │ ├─┬ glob@7.1.6
│ │   │ │ ├── fs.realpath@1.0.0 deduped
│ │   │ │ ├── inflight@1.0.6 deduped
│ │   │ │ ├── inherits@2.0.4 deduped
│ │   │ │ ├── minimatch@3.0.4 deduped
│ │   │ │ ├── once@1.4.0 deduped
│ │   │ │ └── path-is-absolute@1.0.1 deduped
│ │   │ ├─┬ has-glob@0.1.1
│ │   │ │ └─┬ is-glob@2.0.1
│ │   │ │   └── is-extglob@1.0.0
│ │   │ ├── is-valid-glob@0.3.0 deduped
│ │   │ ├── lazy-cache@2.0.2 deduped
│ │   │ └─┬ resolve-dir@0.1.1
│ │   │   ├─┬ expand-tilde@1.2.2
│ │   │   │ └── os-homedir@1.0.2 deduped
│ │   │   └── global-modules@0.2.3 deduped
│ │   └─┬ vinyl@2.2.0
│ │     ├── clone@2.1.2
│ │     ├── clone-buffer@1.0.0 deduped
│ │     ├── clone-stats@1.0.0
│ │     ├── cloneable-readable@1.1.3 deduped
│ │     ├── remove-trailing-separator@1.1.0 deduped
│ │     └── replace-ext@1.0.0
│ ├─┬ base-argv@0.5.0
│ │ ├─┬ arr-diff@3.0.0
│ │ │ └── arr-flatten@1.1.0 deduped
│ │ ├── arr-union@3.1.0
│ │ ├─┬ debug@2.6.9
│ │ │ └── ms@2.0.0 deduped
│ │ ├── define-property@0.2.5 deduped
│ │ ├─┬ expand-args@0.4.3
│ │ │ ├─┬ expand-object@0.4.2
│ │ │ │ ├── get-stdin@5.0.1
│ │ │ │ ├── is-number@2.1.0 deduped
│ │ │ │ ├── minimist@1.2.0 deduped
│ │ │ │ └─┬ set-value@0.3.3
│ │ │ │   ├── extend-shallow@2.0.1 deduped
│ │ │ │   ├─┬ isobject@2.1.0
│ │ │ │   │ └── isarray@1.0.0 deduped
│ │ │ │   └─┬ to-object-path@0.2.0
│ │ │ │     ├── arr-flatten@1.1.0 deduped
│ │ │ │     └── is-arguments@1.0.4 deduped
│ │ │ ├─┬ kind-of@3.2.2
│ │ │ │ └── is-buffer@1.1.6 deduped
│ │ │ ├── lazy-cache@2.0.2 deduped
│ │ │ ├── minimist@1.2.0 deduped
│ │ │ ├── mixin-deep@1.3.2 deduped
│ │ │ ├─┬ omit-empty@0.4.1
│ │ │ │ ├── has-values@0.1.4
│ │ │ │ ├─┬ kind-of@3.2.2
│ │ │ │ │ └── is-buffer@1.1.6 deduped
│ │ │ │ └─┬ reduce-object@0.1.3
│ │ │ │   └── for-own@0.1.5 deduped
│ │ │ └─┬ set-value@0.3.3
│ │ │   ├── extend-shallow@2.0.1 deduped
│ │ │   ├─┬ isobject@2.1.0
│ │ │   │ └── isarray@1.0.0 deduped
│ │ │   └─┬ to-object-path@0.2.0
│ │ │     ├── arr-flatten@1.1.0 deduped
│ │ │     └── is-arguments@1.0.4
│ │ ├── extend-shallow@2.0.1 deduped
│ │ ├── is-registered@0.1.5 deduped
│ │ ├─┬ is-valid-instance@0.1.0
│ │ │ ├─┬ isobject@2.1.0
│ │ │ │ └── isarray@1.0.0 deduped
│ │ │ └── pascalcase@0.1.1 deduped
│ │ └── lazy-cache@2.0.2 deduped
│ ├─┬ base-cli-process@0.1.19
│ │ ├── arr-union@3.1.0
│ │ ├─┬ arrayify-compact@0.2.0
│ │ │ └── arr-flatten@1.1.0 deduped
│ │ ├─┬ base-cli@0.5.0
│ │ │ ├─┬ base-argv@0.4.5
│ │ │ │ ├── arr-diff@2.0.0 deduped
│ │ │ │ ├── arr-union@3.1.0
│ │ │ │ ├── debug@2.6.9 deduped
│ │ │ │ ├── define-property@0.2.5 deduped
│ │ │ │ ├── expand-args@0.4.3 deduped
│ │ │ │ ├── extend-shallow@2.0.1 deduped
│ │ │ │ └── lazy-cache@1.0.4
│ │ │ └── base-config@0.5.2 deduped
│ │ ├─┬ base-cli-schema@0.1.19
│ │ │ ├── arr-flatten@1.1.0 deduped
│ │ │ ├── array-unique@0.2.1
│ │ │ ├── debug@2.6.9 deduped
│ │ │ ├── define-property@0.2.5 deduped
│ │ │ ├── export-files@2.1.1 deduped
│ │ │ ├── extend-shallow@2.0.1 deduped
│ │ │ ├── falsey@0.3.2 deduped
│ │ │ ├── fs-exists-sync@0.1.0 deduped
│ │ │ ├─┬ has-glob@0.1.1
│ │ │ │ └─┬ is-glob@2.0.1
│ │ │ │   └── is-extglob@1.0.0
│ │ │ ├── has-value@0.3.1 deduped
│ │ │ ├─┬ kind-of@3.2.2
│ │ │ │ └── is-buffer@1.1.6 deduped
│ │ │ ├── lazy-cache@2.0.2 deduped
│ │ │ ├─┬ map-schema@0.2.4
│ │ │ │ ├── arr-union@3.1.0
│ │ │ │ ├─┬ collection-visit@0.2.3
│ │ │ │ │ ├── lazy-cache@2.0.2 deduped
│ │ │ │ │ ├─┬ map-visit@0.1.5
│ │ │ │ │ │ ├── lazy-cache@2.0.2 deduped
│ │ │ │ │ │ └── object-visit@0.3.4 deduped
│ │ │ │ │ └─┬ object-visit@0.3.4
│ │ │ │ │   └─┬ isobject@2.1.0
│ │ │ │ │     └── isarray@1.0.0 deduped
│ │ │ │ ├── component-emitter@1.3.0 deduped
│ │ │ │ ├── debug@2.6.9 deduped
│ │ │ │ ├── define-property@0.2.5 deduped
│ │ │ │ ├── extend-shallow@2.0.1 deduped
│ │ │ │ ├── get-value@2.0.6 deduped
│ │ │ │ ├── is-primitive@2.0.0 deduped
│ │ │ │ ├─┬ kind-of@3.2.2
│ │ │ │ │ └── is-buffer@1.1.6 deduped
│ │ │ │ ├── lazy-cache@2.0.2 deduped
│ │ │ │ ├── log-utils@0.2.1 deduped
│ │ │ │ ├── longest@1.0.1
│ │ │ │ ├── mixin-deep@1.3.2 deduped
│ │ │ │ ├── object.omit@2.0.1 deduped
│ │ │ │ ├── object.pick@1.3.0 deduped
│ │ │ │ ├── omit-empty@0.4.1 deduped
│ │ │ │ ├── pad-right@0.2.2 deduped
│ │ │ │ ├── set-value@0.4.3 deduped
│ │ │ │ ├─┬ sort-object-arrays@0.1.1
│ │ │ │ │ └─┬ kind-of@3.2.2
│ │ │ │ │   └── is-buffer@1.1.6 deduped
│ │ │ │ └─┬ union-value@0.2.4
│ │ │ │   ├── arr-union@3.1.0 deduped
│ │ │ │   ├── get-value@2.0.6 deduped
│ │ │ │   ├── is-extendable@0.1.1 deduped
│ │ │ │   └── set-value@0.4.3 deduped
│ │ │ ├── merge-deep@3.0.2 deduped
│ │ │ ├── mixin-deep@1.3.2 deduped
│ │ │ ├─┬ resolve@1.15.0
│ │ │ │ └── path-parse@1.0.6
│ │ │ └─┬ tableize-object@0.1.0
│ │ │   └─┬ isobject@2.1.0
│ │ │     └── isarray@1.0.0 deduped
│ │ ├─┬ base-config-process@0.1.9
│ │ │ ├── base-config@0.5.2 deduped
│ │ │ ├─┬ base-config-schema@0.1.24
│ │ │ │ ├── arr-flatten@1.1.0 deduped
│ │ │ │ ├── array-unique@0.3.2
│ │ │ │ ├── base-pkg@0.2.5 deduped
│ │ │ │ ├── camel-case@3.0.0 deduped
│ │ │ │ ├── debug@2.6.9 deduped
│ │ │ │ ├─┬ define-property@1.0.0
│ │ │ │ │ └─┬ is-descriptor@1.0.2
│ │ │ │ │   ├─┬ is-accessor-descriptor@1.0.0
│ │ │ │ │   │ └── kind-of@6.0.3
│ │ │ │ │   ├─┬ is-data-descriptor@1.0.0
│ │ │ │ │   │ └── kind-of@6.0.3
│ │ │ │ │   └── kind-of@6.0.3
│ │ │ │ ├── export-files@2.1.1 deduped
│ │ │ │ ├── extend-shallow@2.0.1 deduped
│ │ │ │ ├── has-glob@1.0.0 deduped
│ │ │ │ ├── has-value@0.3.1 deduped
│ │ │ │ ├── inflection@1.12.0 deduped
│ │ │ │ ├─┬ kind-of@3.2.2
│ │ │ │ │ └── is-buffer@1.1.6 deduped
│ │ │ │ ├── lazy-cache@2.0.2 deduped
│ │ │ │ ├── load-templates@1.0.2 deduped
│ │ │ │ ├── map-schema@0.2.4 deduped
│ │ │ │ ├─┬ matched@0.4.4
│ │ │ │ │ ├── arr-union@3.1.0
│ │ │ │ │ ├── async-array-reduce@0.2.1 deduped
│ │ │ │ │ ├── extend-shallow@2.0.1 deduped
│ │ │ │ │ ├── fs-exists-sync@0.1.0 deduped
│ │ │ │ │ ├─┬ glob@7.1.6
│ │ │ │ │ │ ├── fs.realpath@1.0.0 deduped
│ │ │ │ │ │ ├── inflight@1.0.6 deduped
│ │ │ │ │ │ ├── inherits@2.0.4 deduped
│ │ │ │ │ │ ├── minimatch@3.0.4 deduped
│ │ │ │ │ │ ├── once@1.4.0 deduped
│ │ │ │ │ │ └── path-is-absolute@1.0.1 deduped
│ │ │ │ │ ├─┬ has-glob@0.1.1
│ │ │ │ │ │ └─┬ is-glob@2.0.1
│ │ │ │ │ │   └── is-extglob@1.0.0
│ │ │ │ │ ├── is-valid-glob@0.3.0 deduped
│ │ │ │ │ ├── lazy-cache@2.0.2 deduped
│ │ │ │ │ └─┬ resolve-dir@0.1.1
│ │ │ │ │   ├─┬ expand-tilde@1.2.2
│ │ │ │ │   │ └── os-homedir@1.0.2 deduped
│ │ │ │ │   └── global-modules@0.2.3 deduped
│ │ │ │ ├── mixin-deep@1.3.2 deduped
│ │ │ │ └── resolve@1.15.0 deduped
│ │ │ ├── base-cwd@0.3.4 deduped
│ │ │ ├── base-option@0.8.4 deduped
│ │ │ ├── debug@2.6.9 deduped
│ │ │ ├── export-files@2.1.1 deduped
│ │ │ ├─┬ is-valid-app@0.2.1
│ │ │ │ ├── debug@2.6.9 deduped
│ │ │ │ ├── is-registered@0.1.5 deduped
│ │ │ │ ├─┬ is-valid-instance@0.2.0
│ │ │ │ │ ├─┬ isobject@2.1.0
│ │ │ │ │ │ └── isarray@1.0.0 deduped
│ │ │ │ │ └── pascalcase@0.1.1 deduped
│ │ │ │ └── lazy-cache@2.0.2 deduped
│ │ │ ├── lazy-cache@2.0.2 deduped
│ │ │ ├── micromatch@2.3.11 deduped
│ │ │ └── mixin-deep@1.3.2 deduped
│ │ ├─┬ base-cwd@0.3.4
│ │ │ ├─┬ empty-dir@0.2.1
│ │ │ │ └── fs-exists-sync@0.1.0 deduped
│ │ │ ├─┬ find-pkg@0.1.2
│ │ │ │ └─┬ find-file-up@0.1.3
│ │ │ │   ├── fs-exists-sync@0.1.0 deduped
│ │ │ │   └─┬ resolve-dir@0.1.1
│ │ │ │     ├─┬ expand-tilde@1.2.2
│ │ │ │     │ └── os-homedir@1.0.2 deduped
│ │ │ │     └── global-modules@0.2.3 deduped
│ │ │ └─┬ is-valid-app@0.2.1
│ │ │   ├── debug@2.6.9 deduped
│ │ │   ├── is-registered@0.1.5 deduped
│ │ │   ├─┬ is-valid-instance@0.2.0
│ │ │   │ ├─┬ isobject@2.1.0
│ │ │   │ │ └── isarray@1.0.0 deduped
│ │ │   │ └── pascalcase@0.1.1 deduped
│ │ │   └── lazy-cache@2.0.2 deduped
│ │ ├─┬ base-option@0.8.4
│ │ │ ├── define-property@0.2.5 deduped
│ │ │ ├── get-value@2.0.6 deduped
│ │ │ ├─┬ is-valid-app@0.2.1
│ │ │ │ ├── debug@2.6.9 deduped
│ │ │ │ ├── is-registered@0.1.5 deduped
│ │ │ │ ├─┬ is-valid-instance@0.2.0
│ │ │ │ │ ├── isobject@2.1.0 deduped
│ │ │ │ │ └── pascalcase@0.1.1 deduped
│ │ │ │ └── lazy-cache@2.0.2 deduped
│ │ │ ├─┬ isobject@2.1.0
│ │ │ │ └── isarray@1.0.0 deduped
│ │ │ ├── lazy-cache@2.0.2 deduped
│ │ │ ├── mixin-deep@1.3.2 deduped
│ │ │ ├─┬ option-cache@3.5.0
│ │ │ │ ├── arr-flatten@1.1.0 deduped
│ │ │ │ ├─┬ collection-visit@1.0.0
│ │ │ │ │ ├─┬ map-visit@1.0.0
│ │ │ │ │ │ └── object-visit@1.0.1 deduped
│ │ │ │ │ └─┬ object-visit@1.0.1
│ │ │ │ │   └── isobject@3.0.1 deduped
│ │ │ │ ├── component-emitter@1.3.0 deduped
│ │ │ │ ├── get-value@2.0.6 deduped
│ │ │ │ ├── has-value@0.3.1 deduped
│ │ │ │ ├─┬ kind-of@3.2.2
│ │ │ │ │ └── is-buffer@1.1.6 deduped
│ │ │ │ ├── lazy-cache@2.0.2 deduped
│ │ │ │ ├── set-value@0.4.3 deduped
│ │ │ │ └── to-object-path@0.3.0 deduped
│ │ │ └─┬ set-value@0.3.3
│ │ │   ├── extend-shallow@2.0.1 deduped
│ │ │   ├── isobject@2.1.0 deduped
│ │ │   └─┬ to-object-path@0.2.0
│ │ │     ├── arr-flatten@1.1.0 deduped
│ │ │     └── is-arguments@1.0.4 deduped
│ │ ├─┬ base-pkg@0.2.5
│ │ │ ├─┬ cache-base@1.0.1
│ │ │ │ ├── collection-visit@1.0.0 deduped
│ │ │ │ ├── component-emitter@1.3.0 deduped
│ │ │ │ ├── get-value@2.0.6 deduped
│ │ │ │ ├─┬ has-value@1.0.0
│ │ │ │ │ ├── get-value@2.0.6 deduped
│ │ │ │ │ ├── has-values@1.0.0 deduped
│ │ │ │ │ └── isobject@3.0.1 deduped
│ │ │ │ ├── isobject@3.0.1 deduped
│ │ │ │ ├─┬ set-value@2.0.1
│ │ │ │ │ ├── extend-shallow@2.0.1 deduped
│ │ │ │ │ ├── is-extendable@0.1.1 deduped
│ │ │ │ │ ├── is-plain-object@2.0.4 deduped
│ │ │ │ │ └── split-string@3.1.0 deduped
│ │ │ │ ├── to-object-path@0.3.0 deduped
│ │ │ │ ├── union-value@1.0.1 deduped
│ │ │ │ └─┬ unset-value@1.0.0
│ │ │ │   ├── has-value@0.3.1 deduped
│ │ │ │   └── isobject@3.0.1 deduped
│ │ │ ├── debug@2.6.9 deduped
│ │ │ ├─┬ define-property@1.0.0
│ │ │ │ └─┬ is-descriptor@1.0.2
│ │ │ │   ├─┬ is-accessor-descriptor@1.0.0
│ │ │ │   │ └── kind-of@6.0.3 deduped
│ │ │ │   ├─┬ is-data-descriptor@1.0.0
│ │ │ │   │ └── kind-of@6.0.3 deduped
│ │ │ │   └── kind-of@6.0.3
│ │ │ ├─┬ expand-pkg@0.1.9
│ │ │ │ ├── component-emitter@1.3.0 deduped
│ │ │ │ ├── debug@2.6.9 deduped
│ │ │ │ ├─┬ defaults-deep@0.2.4
│ │ │ │ │ ├── for-own@0.1.5 deduped
│ │ │ │ │ ├── is-extendable@0.1.1 deduped
│ │ │ │ │ └── lazy-cache@0.2.7
│ │ │ │ ├── export-files@2.1.1 deduped
│ │ │ │ ├── get-value@2.0.6 deduped
│ │ │ │ ├─┬ kind-of@3.2.2
│ │ │ │ │ └── is-buffer@1.1.6 deduped
│ │ │ │ ├── lazy-cache@2.0.2 deduped
│ │ │ │ ├─┬ load-pkg@3.0.1
│ │ │ │ │ └── find-pkg@0.1.2 deduped
│ │ │ │ ├── mixin-deep@1.3.2 deduped
│ │ │ │ ├─┬ normalize-pkg@0.3.20
│ │ │ │ │ ├── arr-union@3.1.0
│ │ │ │ │ ├── array-unique@0.3.2
│ │ │ │ │ ├── component-emitter@1.3.0 deduped
│ │ │ │ │ ├── export-files@2.1.1 deduped
│ │ │ │ │ ├── extend-shallow@2.0.1 deduped
│ │ │ │ │ ├── fs-exists-sync@0.1.0 deduped
│ │ │ │ │ ├── get-value@2.0.6 deduped
│ │ │ │ │ ├─┬ kind-of@3.2.2
│ │ │ │ │ │ └── is-buffer@1.1.6 deduped
│ │ │ │ │ ├── lazy-cache@2.0.2 deduped
│ │ │ │ │ ├── map-schema@0.2.4 deduped
│ │ │ │ │ ├── minimist@1.2.0 deduped
│ │ │ │ │ ├── mixin-deep@1.3.2 deduped
│ │ │ │ │ ├── omit-empty@0.4.1 deduped
│ │ │ │ │ ├── parse-git-config@1.1.1 deduped
│ │ │ │ │ ├── repo-utils@0.3.7 deduped
│ │ │ │ │ ├── semver@5.7.1 deduped
│ │ │ │ │ ├── stringify-author@0.1.3
│ │ │ │ │ └── write-json@0.2.2 deduped
│ │ │ │ ├── omit-empty@0.4.1 deduped
│ │ │ │ ├── parse-author@1.0.0
│ │ │ │ ├─┬ parse-git-config@1.1.1
│ │ │ │ │ ├── extend-shallow@2.0.1 deduped
│ │ │ │ │ ├── fs-exists-sync@0.1.0 deduped
│ │ │ │ │ ├─┬ git-config-path@1.0.1
│ │ │ │ │ │ ├── extend-shallow@2.0.1 deduped
│ │ │ │ │ │ ├── fs-exists-sync@0.1.0 deduped
│ │ │ │ │ │ └── homedir-polyfill@1.0.3 deduped
│ │ │ │ │ └── ini@1.3.5 deduped
│ │ │ │ └─┬ repo-utils@0.3.7
│ │ │ │   ├── extend-shallow@2.0.1 deduped
│ │ │ │   ├── get-value@2.0.6 deduped
│ │ │ │   ├── git-config-path@1.0.1 deduped
│ │ │ │   ├─┬ is-absolute@0.2.6
│ │ │ │   │ ├─┬ is-relative@0.2.1
│ │ │ │   │ │ └─┬ is-unc-path@0.1.2
│ │ │ │   │ │   └── unc-path-regex@0.1.2 deduped
│ │ │ │   │ └── is-windows@0.2.0
│ │ │ │   ├─┬ kind-of@3.2.2
│ │ │ │   │ └── is-buffer@1.1.6 deduped
│ │ │ │   ├── lazy-cache@2.0.2 deduped
│ │ │ │   ├── mixin-deep@1.3.2 deduped
│ │ │ │   ├── omit-empty@0.4.1 deduped
│ │ │ │   ├── parse-author@1.0.0 deduped
│ │ │ │   ├── parse-git-config@1.1.1 deduped
│ │ │ │   ├── parse-github-url@0.3.2
│ │ │ │   └── project-name@0.2.6 deduped
│ │ │ ├── extend-shallow@2.0.1 deduped
│ │ │ ├── is-valid-app@0.3.0 deduped
│ │ │ ├── log-utils@0.2.1 deduped
│ │ │ └─┬ pkg-store@0.2.2
│ │ │   ├─┬ cache-base@0.8.5
│ │ │   │ ├─┬ collection-visit@0.2.3
│ │ │   │ │ ├─┬ lazy-cache@2.0.2
│ │ │   │ │ │ └── set-getter@0.1.0 deduped
│ │ │   │ │ ├─┬ map-visit@0.1.5
│ │ │   │ │ │ ├─┬ lazy-cache@2.0.2
│ │ │   │ │ │ │ └── set-getter@0.1.0 deduped
│ │ │   │ │ │ └── object-visit@0.3.4 deduped
│ │ │   │ │ └─┬ object-visit@0.3.4
│ │ │   │ │   └─┬ isobject@2.1.0
│ │ │   │ │     └── isarray@1.0.0 deduped
│ │ │   │ ├── component-emitter@1.3.0 deduped
│ │ │   │ ├── get-value@2.0.6 deduped
│ │ │   │ ├── has-value@0.3.1 deduped
│ │ │   │ ├── isobject@3.0.1 deduped
│ │ │   │ ├─┬ lazy-cache@2.0.2
│ │ │   │ │ └── set-getter@0.1.0 deduped
│ │ │   │ ├── set-value@0.4.3 deduped
│ │ │   │ ├── to-object-path@0.3.0 deduped
│ │ │   │ ├── union-value@0.2.4 deduped
│ │ │   │ └─┬ unset-value@0.1.2
│ │ │   │   ├── has-value@0.3.1 deduped
│ │ │   │   └── isobject@3.0.1 deduped
│ │ │   ├─┬ kind-of@3.2.2
│ │ │   │ └── is-buffer@1.1.6 deduped
│ │ │   ├── lazy-cache@1.0.4
│ │ │   ├─┬ union-value@0.2.4
│ │ │   │ ├── arr-union@3.1.0
│ │ │   │ ├── get-value@2.0.6 deduped
│ │ │   │ ├── is-extendable@0.1.1 deduped
│ │ │   │ └── set-value@0.4.3 deduped
│ │ │   └─┬ write-json@0.2.2
│ │ │     └─┬ write@0.2.1
│ │ │       └── mkdirp@0.5.1 deduped
│ │ ├── debug@2.6.9 deduped
│ │ ├── export-files@2.1.1 deduped
│ │ ├── fs-exists-sync@0.1.0
│ │ ├─┬ is-valid-app@0.2.1
│ │ │ ├── debug@2.6.9 deduped
│ │ │ ├── is-registered@0.1.5 deduped
│ │ │ ├─┬ is-valid-instance@0.2.0
│ │ │ │ ├─┬ isobject@2.1.0
│ │ │ │ │ └── isarray@1.0.0 deduped
│ │ │ │ └── pascalcase@0.1.1 deduped
│ │ │ └── lazy-cache@2.0.2 deduped
│ │ ├─┬ kind-of@3.2.2
│ │ │ └── is-buffer@1.1.6 deduped
│ │ ├── lazy-cache@2.0.2 deduped
│ │ ├── log-utils@0.2.1 deduped
│ │ ├─┬ merge-deep@3.0.2
│ │ │ ├── arr-union@3.1.0
│ │ │ ├── clone-deep@0.2.4 deduped
│ │ │ └─┬ kind-of@3.2.2
│ │ │   └── is-buffer@1.1.6 deduped
│ │ ├─┬ mixin-deep@1.3.2
│ │ │ ├── for-in@1.0.2
│ │ │ └─┬ is-extendable@1.0.1
│ │ │   └── is-plain-object@2.0.4 deduped
│ │ ├─┬ object.pick@1.3.0
│ │ │ └── isobject@3.0.1 deduped
│ │ ├─┬ pad-right@0.2.2
│ │ │ └── repeat-string@1.6.1
│ │ └─┬ union-value@1.0.1
│ │   ├── arr-union@3.1.0
│ │   ├── get-value@2.0.6 deduped
│ │   ├── is-extendable@0.1.1 deduped
│ │   └─┬ set-value@2.0.1
│ │     ├── extend-shallow@2.0.1 deduped
│ │     ├── is-extendable@0.1.1 deduped
│ │     ├── is-plain-object@2.0.4 deduped
│ │     └── split-string@3.1.0 deduped
│ ├─┬ base-config@0.5.2
│ │ ├─┬ isobject@2.1.0
│ │ │ └── isarray@1.0.0
│ │ ├── lazy-cache@1.0.4
│ │ ├─┬ map-config@0.5.0
│ │ │ ├── array-unique@0.2.1 deduped
│ │ │ └── async@1.5.2 deduped
│ │ └─┬ resolve-dir@0.1.1
│ │   ├─┬ expand-tilde@1.2.2
│ │   │ └── os-homedir@1.0.2 deduped
│ │   └── global-modules@0.2.3 deduped
│ ├─┬ base-questions@0.9.1
│ │ ├─┬ base-store@0.4.4
│ │ │ ├─┬ data-store@0.16.1
│ │ │ │ ├─┬ cache-base@0.8.5
│ │ │ │ │ ├─┬ collection-visit@0.2.3
│ │ │ │ │ │ ├── lazy-cache@2.0.2 deduped
│ │ │ │ │ │ ├─┬ map-visit@0.1.5
│ │ │ │ │ │ │ ├── lazy-cache@2.0.2 deduped
│ │ │ │ │ │ │ └── object-visit@0.3.4 deduped
│ │ │ │ │ │ └─┬ object-visit@0.3.4
│ │ │ │ │ │   └─┬ isobject@2.1.0
│ │ │ │ │ │     └── isarray@1.0.0 deduped
│ │ │ │ │ ├── component-emitter@1.3.0 deduped
│ │ │ │ │ ├── get-value@2.0.6 deduped
│ │ │ │ │ ├── has-value@0.3.1 deduped
│ │ │ │ │ ├── isobject@3.0.1 deduped
│ │ │ │ │ ├── lazy-cache@2.0.2 deduped
│ │ │ │ │ ├── set-value@0.4.3 deduped
│ │ │ │ │ ├── to-object-path@0.3.0 deduped
│ │ │ │ │ ├── union-value@0.2.4 deduped
│ │ │ │ │ └─┬ unset-value@0.1.2
│ │ │ │ │   ├── has-value@0.3.1 deduped
│ │ │ │ │   └── isobject@3.0.1 deduped
│ │ │ │ ├── clone-deep@0.2.4 deduped
│ │ │ │ ├── debug@2.6.9 deduped
│ │ │ │ ├── define-property@0.2.5 deduped
│ │ │ │ ├── extend-shallow@2.0.1 deduped
│ │ │ │ ├── graceful-fs@4.2.3 deduped
│ │ │ │ ├── has-own-deep@0.1.4
│ │ │ │ ├── lazy-cache@2.0.2 deduped
│ │ │ │ ├── mkdirp@0.5.1 deduped
│ │ │ │ ├── project-name@0.2.6 deduped
│ │ │ │ ├─┬ resolve-dir@0.1.1
│ │ │ │ │ ├─┬ expand-tilde@1.2.2
│ │ │ │ │ │ └── os-homedir@1.0.2 deduped
│ │ │ │ │ └── global-modules@0.2.3 deduped
│ │ │ │ ├── rimraf@2.7.1 deduped
│ │ │ │ └─┬ union-value@0.2.4
│ │ │ │   ├── arr-union@3.1.0
│ │ │ │   ├── get-value@2.0.6 deduped
│ │ │ │   ├── is-extendable@0.1.1 deduped
│ │ │ │   └── set-value@0.4.3 deduped
│ │ │ ├── debug@2.6.9 deduped
│ │ │ ├── extend-shallow@2.0.1 deduped
│ │ │ ├── is-registered@0.1.5 deduped
│ │ │ ├─┬ is-valid-instance@0.1.0
│ │ │ │ ├─┬ isobject@2.1.0
│ │ │ │ │ └── isarray@1.0.0 deduped
│ │ │ │ └── pascalcase@0.1.1 deduped
│ │ │ ├── lazy-cache@2.0.2 deduped
│ │ │ └─┬ project-name@0.2.6
│ │ │   ├── find-pkg@0.1.2 deduped
│ │ │   ├─┬ git-repo-name@0.6.0
│ │ │   │ ├─┬ cwd@0.9.1
│ │ │   │ │ └── find-pkg@0.1.2 deduped
│ │ │   │ ├── file-name@0.1.0
│ │ │   │ ├── lazy-cache@1.0.4
│ │ │   │ └─┬ remote-origin-url@0.5.3
│ │ │   │   └── parse-git-config@1.1.1 deduped
│ │ │   └── minimist@1.2.0 deduped
│ │ ├─┬ clone-deep@0.2.4
│ │ │ ├─┬ for-own@0.1.5
│ │ │ │ └── for-in@1.0.2 deduped
│ │ │ ├─┬ is-plain-object@2.0.4
│ │ │ │ └── isobject@3.0.1 deduped
│ │ │ ├─┬ kind-of@3.2.2
│ │ │ │ └── is-buffer@1.1.6 deduped
│ │ │ ├── lazy-cache@1.0.4
│ │ │ └─┬ shallow-clone@0.1.2
│ │ │   ├── is-extendable@0.1.1 deduped
│ │ │   ├─┬ kind-of@2.0.1
│ │ │   │ └── is-buffer@1.1.6 deduped
│ │ │   ├── lazy-cache@0.2.7
│ │ │   └─┬ mixin-object@2.0.1
│ │ │     ├── for-in@0.1.8
│ │ │     └── is-extendable@0.1.1 deduped
│ │ ├── debug@2.6.9 deduped
│ │ ├── define-property@0.2.5 deduped
│ │ ├── extend-shallow@2.0.1 deduped
│ │ ├── get-value@2.0.6
│ │ ├─┬ is-valid-app@0.2.1
│ │ │ ├── debug@2.6.9 deduped
│ │ │ ├── is-registered@0.1.5 deduped
│ │ │ ├─┬ is-valid-instance@0.2.0
│ │ │ │ ├── isobject@2.1.0 deduped
│ │ │ │ └── pascalcase@0.1.1 deduped
│ │ │ └── lazy-cache@2.0.2 deduped
│ │ ├─┬ isobject@2.1.0
│ │ │ └── isarray@1.0.0 deduped
│ │ ├── lazy-cache@2.0.2 deduped
│ │ ├── mixin-deep@1.3.2 deduped
│ │ ├─┬ question-store@0.13.1
│ │ │ ├─┬ common-config@0.1.1
│ │ │ │ ├─┬ composer@0.13.0
│ │ │ │ │ ├── array-unique@0.2.1 deduped
│ │ │ │ │ ├─┬ bach@0.5.0
│ │ │ │ │ │ ├── async-done@1.3.2 deduped
│ │ │ │ │ │ ├─┬ async-settle@0.2.1
│ │ │ │ │ │ │ └─┬ async-done@0.4.0
│ │ │ │ │ │ │   ├─┬ end-of-stream@0.1.5
│ │ │ │ │ │ │   │ └─┬ once@1.3.3
│ │ │ │ │ │ │   │   └── wrappy@1.0.2 deduped
│ │ │ │ │ │ │   ├── next-tick@0.2.2
│ │ │ │ │ │ │   ├── once@1.4.0 deduped
│ │ │ │ │ │ │   └── stream-exhaust@1.0.2 deduped
│ │ │ │ │ │ ├── lodash.filter@4.6.0
│ │ │ │ │ │ ├── lodash.flatten@4.4.0
│ │ │ │ │ │ ├── lodash.foreach@4.5.0
│ │ │ │ │ │ ├── lodash.initial@4.1.1
│ │ │ │ │ │ ├── lodash.last@3.0.0
│ │ │ │ │ │ ├── lodash.map@4.6.0
│ │ │ │ │ │ └─┬ now-and-later@0.0.6
│ │ │ │ │ │   └── once@1.4.0 deduped
│ │ │ │ │ ├── co@4.6.0 deduped
│ │ │ │ │ ├── component-emitter@1.3.0 deduped
│ │ │ │ │ ├── define-property@0.2.5 deduped
│ │ │ │ │ ├── extend-shallow@2.0.1 deduped
│ │ │ │ │ ├── is-generator@1.0.3 deduped
│ │ │ │ │ ├─┬ is-glob@2.0.1
│ │ │ │ │ │ └── is-extglob@1.0.0
│ │ │ │ │ ├─┬ isobject@2.1.0
│ │ │ │ │ │ └── isarray@1.0.0 deduped
│ │ │ │ │ ├── lazy-cache@2.0.2 deduped
│ │ │ │ │ ├── micromatch@2.3.11 deduped
│ │ │ │ │ └── nanoseconds@0.1.0 deduped
│ │ │ │ ├── data-store@0.16.1 deduped
│ │ │ │ ├── get-value@2.0.6 deduped
│ │ │ │ ├── lazy-cache@2.0.2 deduped
│ │ │ │ ├── log-utils@0.2.1 deduped
│ │ │ │ ├── object.pick@1.3.0 deduped
│ │ │ │ ├── omit-empty@0.4.1 deduped
│ │ │ │ ├─┬ question-cache@0.4.0
│ │ │ │ │ ├── arr-flatten@1.1.0 deduped
│ │ │ │ │ ├── arr-union@3.1.0
│ │ │ │ │ ├── async@1.5.2 deduped
│ │ │ │ │ ├── debug@2.6.9 deduped
│ │ │ │ │ ├── define-property@0.2.5 deduped
│ │ │ │ │ ├── get-value@2.0.6 deduped
│ │ │ │ │ ├── has-value@0.3.1 deduped
│ │ │ │ │ ├── inquirer2@0.1.1 deduped
│ │ │ │ │ ├── is-answer@0.1.1 deduped
│ │ │ │ │ ├── isobject@2.1.0 deduped
│ │ │ │ │ ├── lazy-cache@1.0.4
│ │ │ │ │ ├── mixin-deep@1.3.2 deduped
│ │ │ │ │ ├─┬ omit-empty@0.3.6
│ │ │ │ │ │ ├── has-values@0.1.4
│ │ │ │ │ │ ├── is-date-object@1.0.2
│ │ │ │ │ │ ├── isobject@2.1.0 deduped
│ │ │ │ │ │ └── reduce-object@0.1.3 deduped
│ │ │ │ │ ├── option-cache@3.5.0 deduped
│ │ │ │ │ ├── os-homedir@1.0.2 deduped
│ │ │ │ │ ├── project-name@0.2.6 deduped
│ │ │ │ │ ├─┬ set-value@0.3.3
│ │ │ │ │ │ ├── extend-shallow@2.0.1 deduped
│ │ │ │ │ │ ├── isobject@2.1.0 deduped
│ │ │ │ │ │ └─┬ to-object-path@0.2.0
│ │ │ │ │ │   ├── arr-flatten@1.1.0 deduped
│ │ │ │ │ │   └── is-arguments@1.0.4 deduped
│ │ │ │ │ ├── to-choices@0.2.0 deduped
│ │ │ │ │ └─┬ use@1.1.2
│ │ │ │ │   ├── define-property@0.2.5 deduped
│ │ │ │ │   └─┬ isobject@2.1.0
│ │ │ │ │     └── isarray@1.0.0 deduped
│ │ │ │ ├─┬ set-value@3.0.1
│ │ │ │ │ └── is-plain-object@2.0.4 deduped
│ │ │ │ ├── strip-color@0.1.0
│ │ │ │ ├── tableize-object@0.1.0 deduped
│ │ │ │ ├── text-table@0.2.0
│ │ │ │ └─┬ yargs-parser@2.4.1
│ │ │ │   ├── camelcase@3.0.0 deduped
│ │ │ │   └── lodash.assign@4.2.0
│ │ │ ├── data-store@0.16.1 deduped
│ │ │ ├── debug@2.6.9 deduped
│ │ │ ├─┬ is-answer@0.1.1
│ │ │ │ ├── has-values@0.1.4
│ │ │ │ ├── is-primitive@2.0.0 deduped
│ │ │ │ └── omit-empty@0.4.1 deduped
│ │ │ ├── lazy-cache@2.0.2 deduped
│ │ │ ├── project-name@0.2.6 deduped
│ │ │ └─┬ question-cache@0.7.0
│ │ │   ├── arr-flatten@1.1.0 deduped
│ │ │   ├── arr-union@3.1.0
│ │ │   ├── async-each-series@1.1.0
│ │ │   ├── clone-deep@0.2.4 deduped
│ │ │   ├── debug@2.6.9 deduped
│ │ │   ├── define-property@0.2.5 deduped
│ │ │   ├── extend-shallow@2.0.1 deduped
│ │ │   ├── get-value@2.0.6 deduped
│ │ │   ├── has-value@0.3.1 deduped
│ │ │   ├─┬ inquirer2@0.1.1
│ │ │   │ ├── ansi-escapes@1.4.0
│ │ │   │ ├── ansi-regex@2.1.1 deduped
│ │ │   │ ├── arr-flatten@1.1.0 deduped
│ │ │   │ ├─┬ arr-pluck@0.1.0
│ │ │   │ │ └── arr-map@2.0.2 deduped
│ │ │   │ ├── array-unique@0.2.1 deduped
│ │ │   │ ├── chalk@1.1.3 deduped
│ │ │   │ ├─┬ cli-cursor@1.0.2
│ │ │   │ │ └─┬ restore-cursor@1.0.1
│ │ │   │ │   ├── exit-hook@1.1.1
│ │ │   │ │   └── onetime@1.1.0
│ │ │   │ ├── cli-width@1.1.1
│ │ │   │ ├── extend-shallow@2.0.1 deduped
│ │ │   │ ├─┬ figures@1.7.0
│ │ │   │ │ ├── escape-string-regexp@1.0.5 deduped
│ │ │   │ │ └── object-assign@4.1.1 deduped
│ │ │   │ ├── is-number@2.1.0 deduped
│ │ │   │ ├── is-plain-object@2.0.4 deduped
│ │ │   │ ├── lazy-cache@1.0.4
│ │ │   │ ├─┬ lodash.where@3.1.0
│ │ │   │ │ ├── lodash._arrayfilter@3.0.0
│ │ │   │ │ ├─┬ lodash._basecallback@3.3.1
│ │ │   │ │ │ ├─┬ lodash._baseisequal@3.0.7
│ │ │   │ │ │ │ ├── lodash.isarray@3.0.4 deduped
│ │ │   │ │ │ │ ├── lodash.istypedarray@3.0.6
│ │ │   │ │ │ │ └── lodash.keys@3.1.2 deduped
│ │ │   │ │ │ ├── lodash._bindcallback@3.0.1
│ │ │   │ │ │ ├── lodash.isarray@3.0.4 deduped
│ │ │   │ │ │ └─┬ lodash.pairs@3.0.1
│ │ │   │ │ │   └── lodash.keys@3.1.2 deduped
│ │ │   │ │ ├─┬ lodash._basefilter@3.0.0
│ │ │   │ │ │ └─┬ lodash._baseeach@3.0.4
│ │ │   │ │ │   └── lodash.keys@3.1.2 deduped
│ │ │   │ │ ├─┬ lodash._basematches@3.2.0
│ │ │   │ │ │ ├─┬ lodash._baseismatch@3.1.3
│ │ │   │ │ │ │ └── lodash._baseisequal@3.0.7 deduped
│ │ │   │ │ │ └── lodash.pairs@3.0.1 deduped
│ │ │   │ │ └── lodash.isarray@3.0.4 deduped
│ │ │   │ ├─┬ readline2@1.0.1
│ │ │   │ │ ├── code-point-at@1.1.0 deduped
│ │ │   │ │ ├── is-fullwidth-code-point@1.0.0 deduped
│ │ │   │ │ └── mute-stream@0.0.5
│ │ │   │ ├─┬ run-async@0.1.0
│ │ │   │ │ └── once@1.4.0 deduped
│ │ │   │ ├── rx-lite@4.0.8
│ │ │   │ ├── strip-color@0.1.0 deduped
│ │ │   │ └── through2@2.0.5 deduped
│ │ │   ├── is-answer@0.1.1 deduped
│ │ │   ├─┬ isobject@2.1.0
│ │ │   │ └── isarray@1.0.0 deduped
│ │ │   ├── lazy-cache@2.0.2 deduped
│ │ │   ├── log-utils@0.2.1 deduped
│ │ │   ├── mixin-deep@1.3.2 deduped
│ │ │   ├── omit-empty@0.4.1 deduped
│ │ │   ├── option-cache@3.5.0 deduped
│ │ │   ├── project-name@0.2.6 deduped
│ │ │   ├─┬ set-value@0.3.3
│ │ │   │ ├── extend-shallow@2.0.1 deduped
│ │ │   │ ├── isobject@2.1.0 deduped
│ │ │   │ └─┬ to-object-path@0.2.0
│ │ │   │   ├── arr-flatten@1.1.0 deduped
│ │ │   │   └── is-arguments@1.0.4 deduped
│ │ │   ├─┬ to-choices@0.2.0
│ │ │   │ ├── ansi-gray@0.1.1 deduped
│ │ │   │ └── mixin-deep@1.3.2 deduped
│ │ │   └─┬ use@2.0.2
│ │ │     ├── define-property@0.2.5 deduped
│ │ │     ├── isobject@3.0.1
│ │ │     └── lazy-cache@2.0.2 deduped
│ │ └─┬ set-value@0.4.3
│ │   ├── extend-shallow@2.0.1 deduped
│ │   ├── is-extendable@0.1.1 deduped
│ │   ├── is-plain-object@2.0.4 deduped
│ │   └─┬ to-object-path@0.3.0
│ │     └─┬ kind-of@3.2.2
│ │       └── is-buffer@1.1.6 deduped
│ ├─┬ base-runtimes@0.2.0
│ │ ├── extend-shallow@2.0.1 deduped
│ │ ├─┬ is-valid-app@0.2.1
│ │ │ ├── debug@2.6.9 deduped
│ │ │ ├── is-registered@0.1.5 deduped
│ │ │ ├─┬ is-valid-instance@0.2.0
│ │ │ │ ├─┬ isobject@2.1.0
│ │ │ │ │ └── isarray@1.0.0 deduped
│ │ │ │ └── pascalcase@0.1.1 deduped
│ │ │ └── lazy-cache@2.0.2 deduped
│ │ ├── lazy-cache@2.0.2 deduped
│ │ ├─┬ log-utils@0.1.5
│ │ │ ├─┬ ansi-colors@0.1.0
│ │ │ │ ├── ansi-bgblack@0.1.1 deduped
│ │ │ │ ├── ansi-bgblue@0.1.1 deduped
│ │ │ │ ├── ansi-bgcyan@0.1.1 deduped
│ │ │ │ ├── ansi-bggreen@0.1.1 deduped
│ │ │ │ ├── ansi-bgmagenta@0.1.1 deduped
│ │ │ │ ├── ansi-bgred@0.1.1 deduped
│ │ │ │ ├── ansi-bgwhite@0.1.1 deduped
│ │ │ │ ├── ansi-bgyellow@0.1.1 deduped
│ │ │ │ ├── ansi-black@0.1.1 deduped
│ │ │ │ ├── ansi-blue@0.1.1 deduped
│ │ │ │ ├── ansi-bold@0.1.1 deduped
│ │ │ │ ├── ansi-cyan@0.1.1 deduped
│ │ │ │ ├── ansi-dim@0.1.1 deduped
│ │ │ │ ├── ansi-gray@0.1.1 deduped
│ │ │ │ ├── ansi-green@0.1.1 deduped
│ │ │ │ ├── ansi-grey@0.1.1 deduped
│ │ │ │ ├── ansi-hidden@0.1.1 deduped
│ │ │ │ ├── ansi-inverse@0.1.1 deduped
│ │ │ │ ├── ansi-italic@0.1.1 deduped
│ │ │ │ ├── ansi-magenta@0.1.1 deduped
│ │ │ │ ├── ansi-red@0.1.1 deduped
│ │ │ │ ├── ansi-reset@0.1.1 deduped
│ │ │ │ ├── ansi-strikethrough@0.1.1 deduped
│ │ │ │ ├── ansi-underline@0.1.1 deduped
│ │ │ │ ├── ansi-white@0.1.1 deduped
│ │ │ │ ├── ansi-yellow@0.1.1 deduped
│ │ │ │ └── lazy-cache@0.2.7
│ │ │ ├── error-symbol@0.1.0 deduped
│ │ │ ├── info-symbol@0.1.0 deduped
│ │ │ ├── log-ok@0.1.1 deduped
│ │ │ ├── success-symbol@0.1.0 deduped
│ │ │ ├── time-stamp@1.1.0 deduped
│ │ │ └── warning-symbol@0.1.0 deduped
│ │ ├─┬ micromatch@2.3.11
│ │ │ ├─┬ arr-diff@2.0.0
│ │ │ │ └── arr-flatten@1.1.0 deduped
│ │ │ ├── array-unique@0.2.1 deduped
│ │ │ ├─┬ braces@1.8.5
│ │ │ │ ├─┬ expand-range@1.8.2
│ │ │ │ │ └─┬ fill-range@2.2.4
│ │ │ │ │   ├── is-number@2.1.0 deduped
│ │ │ │ │   ├─┬ isobject@2.1.0
│ │ │ │ │   │ └── isarray@1.0.0 deduped
│ │ │ │ │   ├─┬ randomatic@3.1.1
│ │ │ │ │   │ ├── is-number@4.0.0
│ │ │ │ │   │ ├── kind-of@6.0.3
│ │ │ │ │   │ └── math-random@1.0.4
│ │ │ │ │   ├── repeat-element@1.1.3 deduped
│ │ │ │ │   └── repeat-string@1.6.1 deduped
│ │ │ │ ├── preserve@0.2.0
│ │ │ │ └── repeat-element@1.1.3 deduped
│ │ │ ├─┬ expand-brackets@0.1.5
│ │ │ │ └── is-posix-bracket@0.1.1
│ │ │ ├─┬ extglob@0.3.2
│ │ │ │ └── is-extglob@1.0.0
│ │ │ ├── filename-regex@2.0.1
│ │ │ ├── is-extglob@1.0.0
│ │ │ ├─┬ is-glob@2.0.1
│ │ │ │ └── is-extglob@1.0.0 deduped
│ │ │ ├─┬ kind-of@3.2.2
│ │ │ │ └── is-buffer@1.1.6 deduped
│ │ │ ├── normalize-path@2.1.1 deduped
│ │ │ ├─┬ object.omit@2.0.1
│ │ │ │ ├── for-own@0.1.5 deduped
│ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ ├─┬ parse-glob@3.0.4
│ │ │ │ ├─┬ glob-base@0.3.0
│ │ │ │ │ ├─┬ glob-parent@2.0.0
│ │ │ │ │ │ └── is-glob@2.0.1 deduped
│ │ │ │ │ └─┬ is-glob@2.0.1
│ │ │ │ │   └── is-extglob@1.0.0
│ │ │ │ ├── is-dotfile@1.0.3
│ │ │ │ ├── is-extglob@1.0.0
│ │ │ │ └─┬ is-glob@2.0.1
│ │ │ │   └── is-extglob@1.0.0 deduped
│ │ │ └─┬ regex-cache@0.4.4
│ │ │   └─┬ is-equal-shallow@0.1.3
│ │ │     └── is-primitive@2.0.0 deduped
│ │ └─┬ time-diff@0.3.1
│ │   ├── extend-shallow@2.0.1 deduped
│ │   ├─┬ is-number@2.1.0
│ │   │ └─┬ kind-of@3.2.2
│ │   │   └── is-buffer@1.1.6 deduped
│ │   ├─┬ log-utils@0.1.5
│ │   │ ├─┬ ansi-colors@0.1.0
│ │   │ │ ├── ansi-bgblack@0.1.1 deduped
│ │   │ │ ├── ansi-bgblue@0.1.1 deduped
│ │   │ │ ├── ansi-bgcyan@0.1.1 deduped
│ │   │ │ ├── ansi-bggreen@0.1.1 deduped
│ │   │ │ ├── ansi-bgmagenta@0.1.1 deduped
│ │   │ │ ├── ansi-bgred@0.1.1 deduped
│ │   │ │ ├── ansi-bgwhite@0.1.1 deduped
│ │   │ │ ├── ansi-bgyellow@0.1.1 deduped
│ │   │ │ ├── ansi-black@0.1.1 deduped
│ │   │ │ ├── ansi-blue@0.1.1 deduped
│ │   │ │ ├── ansi-bold@0.1.1 deduped
│ │   │ │ ├── ansi-cyan@0.1.1 deduped
│ │   │ │ ├── ansi-dim@0.1.1 deduped
│ │   │ │ ├── ansi-gray@0.1.1 deduped
│ │   │ │ ├── ansi-green@0.1.1 deduped
│ │   │ │ ├── ansi-grey@0.1.1 deduped
│ │   │ │ ├── ansi-hidden@0.1.1 deduped
│ │   │ │ ├── ansi-inverse@0.1.1 deduped
│ │   │ │ ├── ansi-italic@0.1.1 deduped
│ │   │ │ ├── ansi-magenta@0.1.1 deduped
│ │   │ │ ├── ansi-red@0.1.1 deduped
│ │   │ │ ├── ansi-reset@0.1.1 deduped
│ │   │ │ ├── ansi-strikethrough@0.1.1 deduped
│ │   │ │ ├── ansi-underline@0.1.1 deduped
│ │   │ │ ├── ansi-white@0.1.1 deduped
│ │   │ │ ├── ansi-yellow@0.1.1 deduped
│ │   │ │ └── lazy-cache@0.2.7
│ │   │ ├── error-symbol@0.1.0 deduped
│ │   │ ├── info-symbol@0.1.0 deduped
│ │   │ ├── log-ok@0.1.1 deduped
│ │   │ ├── success-symbol@0.1.0 deduped
│ │   │ ├── time-stamp@1.1.0 deduped
│ │   │ └── warning-symbol@0.1.0 deduped
│ │   └─┬ pretty-time@0.2.0
│ │     ├── is-number@2.1.0 deduped
│ │     └── nanoseconds@0.1.0 deduped
│ ├─┬ cross-spawn@5.1.0
│ │ ├─┬ lru-cache@4.1.5
│ │ │ ├── pseudomap@1.0.2
│ │ │ └── yallist@2.1.2
│ │ ├─┬ shebang-command@1.2.0
│ │ │ └── shebang-regex@1.0.0
│ │ └─┬ which@1.3.1
│ │   └── isexe@2.0.0
│ ├─┬ engine-handlebars@0.8.2
│ │ ├── engine-utils@0.1.1
│ │ ├── extend-shallow@2.0.1 deduped
│ │ └─┬ handlebars@4.7.2
│ │   ├── neo-async@2.6.1 deduped
│ │   ├─┬ optimist@0.6.1
│ │   │ ├── minimist@0.0.10
│ │   │ └── wordwrap@0.0.3
│ │   ├── source-map@0.6.1 deduped
│ │   └─┬ uglify-js@3.7.6
│ │     ├── commander@2.20.3 deduped
│ │     └── source-map@0.6.1 deduped
│ ├─┬ expand-front-matter@1.0.0
│ │ ├─┬ expand@0.4.3
│ │ │ ├─┬ engine@0.1.12
│ │ │ │ ├─┬ assign-deep@0.4.8
│ │ │ │ │ ├── assign-symbols@0.1.1
│ │ │ │ │ ├── is-primitive@2.0.0 deduped
│ │ │ │ │ └── kind-of@5.1.0 deduped
│ │ │ │ ├─┬ collection-visit@0.2.3
│ │ │ │ │ ├─┬ lazy-cache@2.0.2
│ │ │ │ │ │ └── set-getter@0.1.0 deduped
│ │ │ │ │ ├─┬ map-visit@0.1.5
│ │ │ │ │ │ ├─┬ lazy-cache@2.0.2
│ │ │ │ │ │ │ └── set-getter@0.1.0 deduped
│ │ │ │ │ │ └── object-visit@0.3.4 deduped
│ │ │ │ │ └─┬ object-visit@0.3.4
│ │ │ │ │   └─┬ isobject@2.1.0
│ │ │ │ │     └── isarray@1.0.0 deduped
│ │ │ │ ├─┬ get-value@1.3.1
│ │ │ │ │ ├── arr-flatten@1.1.0 deduped
│ │ │ │ │ ├── is-extendable@0.1.1 deduped
│ │ │ │ │ ├── lazy-cache@0.2.7 deduped
│ │ │ │ │ └── noncharacters@1.1.0
│ │ │ │ ├─┬ kind-of@2.0.1
│ │ │ │ │ └── is-buffer@1.1.6 deduped
│ │ │ │ ├── lazy-cache@0.2.7
│ │ │ │ ├── object.omit@2.0.1 deduped
│ │ │ │ └─┬ set-value@0.2.0
│ │ │ │   ├── isobject@1.0.2
│ │ │ │   └── noncharacters@1.1.0 deduped
│ │ │ ├── get-value@2.0.6 deduped
│ │ │ ├── is-primitive@2.0.0
│ │ │ ├─┬ kind-of@3.2.2
│ │ │ │ └── is-buffer@1.1.6 deduped
│ │ │ ├── lazy-cache@2.0.2 deduped
│ │ │ └─┬ regex-flags@0.1.0
│ │ │   └─┬ kind-of@2.0.1
│ │ │     └── is-buffer@1.1.6 deduped
│ │ ├── extend-shallow@2.0.1 deduped
│ │ ├─┬ is-valid-app@0.2.1
│ │ │ ├── debug@2.6.9 deduped
│ │ │ ├── is-registered@0.1.5 deduped
│ │ │ ├─┬ is-valid-instance@0.2.0
│ │ │ │ ├─┬ isobject@2.1.0
│ │ │ │ │ └── isarray@1.0.0 deduped
│ │ │ │ └── pascalcase@0.1.1 deduped
│ │ │ └── lazy-cache@2.0.2 deduped
│ │ ├── isobject@3.0.1 deduped
│ │ └── mixin-deep@1.3.2 deduped
│ ├─┬ export-files@2.1.1
│ │ └── lazy-cache@1.0.4
│ ├─┬ global-modules@0.2.3
│ │ ├─┬ global-prefix@0.1.5
│ │ │ ├─┬ homedir-polyfill@1.0.3
│ │ │ │ └── parse-passwd@1.0.0
│ │ │ ├── ini@1.3.5
│ │ │ ├── is-windows@0.2.0 deduped
│ │ │ └── which@1.3.1 deduped
│ │ └── is-windows@0.2.0
│ ├─┬ is-valid-app@0.3.0
│ │ ├── debug@2.6.9 deduped
│ │ ├── is-registered@0.1.5 deduped
│ │ ├─┬ is-valid-instance@0.3.0
│ │ │ ├── isobject@3.0.1 deduped
│ │ │ └── pascalcase@0.1.1 deduped
│ │ └── lazy-cache@2.0.2 deduped
│ ├─┬ lazy-cache@2.0.2
│ │ └─┬ set-getter@0.1.0
│ │   └── to-object-path@0.3.0 deduped
│ ├─┬ log-utils@0.2.1
│ │ ├─┬ ansi-colors@0.2.0
│ │ │ ├─┬ ansi-bgblack@0.1.1
│ │ │ │ └── ansi-wrap@0.1.0 deduped
│ │ │ ├─┬ ansi-bgblue@0.1.1
│ │ │ │ └── ansi-wrap@0.1.0 deduped
│ │ │ ├─┬ ansi-bgcyan@0.1.1
│ │ │ │ └── ansi-wrap@0.1.0 deduped
│ │ │ ├─┬ ansi-bggreen@0.1.1
│ │ │ │ └── ansi-wrap@0.1.0 deduped
│ │ │ ├─┬ ansi-bgmagenta@0.1.1
│ │ │ │ └── ansi-wrap@0.1.0 deduped
│ │ │ ├─┬ ansi-bgred@0.1.1
│ │ │ │ └── ansi-wrap@0.1.0 deduped
│ │ │ ├─┬ ansi-bgwhite@0.1.1
│ │ │ │ └── ansi-wrap@0.1.0 deduped
│ │ │ ├─┬ ansi-bgyellow@0.1.1
│ │ │ │ └── ansi-wrap@0.1.0 deduped
│ │ │ ├─┬ ansi-black@0.1.1
│ │ │ │ └── ansi-wrap@0.1.0 deduped
│ │ │ ├─┬ ansi-blue@0.1.1
│ │ │ │ └── ansi-wrap@0.1.0 deduped
│ │ │ ├─┬ ansi-bold@0.1.1
│ │ │ │ └── ansi-wrap@0.1.0 deduped
│ │ │ ├── ansi-cyan@0.1.1 deduped
│ │ │ ├─┬ ansi-dim@0.1.1
│ │ │ │ └── ansi-wrap@0.1.0 deduped
│ │ │ ├── ansi-gray@0.1.1 deduped
│ │ │ ├─┬ ansi-green@0.1.1
│ │ │ │ └── ansi-wrap@0.1.0 deduped
│ │ │ ├─┬ ansi-grey@0.1.1
│ │ │ │ └── ansi-wrap@0.1.0 deduped
│ │ │ ├─┬ ansi-hidden@0.1.1
│ │ │ │ └── ansi-wrap@0.1.0 deduped
│ │ │ ├─┬ ansi-inverse@0.1.1
│ │ │ │ └── ansi-wrap@0.1.0 deduped
│ │ │ ├─┬ ansi-italic@0.1.1
│ │ │ │ └── ansi-wrap@0.1.0 deduped
│ │ │ ├─┬ ansi-magenta@0.1.1
│ │ │ │ └── ansi-wrap@0.1.0 deduped
│ │ │ ├── ansi-red@0.1.1 deduped
│ │ │ ├─┬ ansi-reset@0.1.1
│ │ │ │ └── ansi-wrap@0.1.0 deduped
│ │ │ ├─┬ ansi-strikethrough@0.1.1
│ │ │ │ └── ansi-wrap@0.1.0 deduped
│ │ │ ├─┬ ansi-underline@0.1.1
│ │ │ │ └── ansi-wrap@0.1.0 deduped
│ │ │ ├─┬ ansi-white@0.1.1
│ │ │ │ └── ansi-wrap@0.1.0 deduped
│ │ │ ├─┬ ansi-yellow@0.1.1
│ │ │ │ └── ansi-wrap@0.1.0 deduped
│ │ │ └── lazy-cache@2.0.2 deduped
│ │ ├── error-symbol@0.1.0
│ │ ├── info-symbol@0.1.0
│ │ ├─┬ log-ok@0.1.1
│ │ │ ├── ansi-green@0.1.1 deduped
│ │ │ └── success-symbol@0.1.0 deduped
│ │ ├── success-symbol@0.1.0
│ │ ├── time-stamp@1.1.0
│ │ └── warning-symbol@0.1.0
│ ├── minimist@1.2.0
│ ├─┬ parser-front-matter@1.6.4
│ │ ├── extend-shallow@2.0.1 deduped
│ │ ├─┬ file-is-binary@1.0.0
│ │ │ ├─┬ is-binary-buffer@1.0.0
│ │ │ │ └── is-buffer@1.1.6 deduped
│ │ │ └── isobject@3.0.1 deduped
│ │ ├─┬ gray-matter@3.1.1
│ │ │ ├── extend-shallow@2.0.1 deduped
│ │ │ ├─┬ js-yaml@3.13.1
│ │ │ │ ├─┬ argparse@1.0.10
│ │ │ │ │ └── sprintf-js@1.0.3
│ │ │ │ └── esprima@4.0.1
│ │ │ ├── kind-of@5.1.0
│ │ │ └── strip-bom-string@1.0.0
│ │ ├── isobject@3.0.1 deduped
│ │ ├── lazy-cache@2.0.2 deduped
│ │ ├── mixin-deep@1.3.2 deduped
│ │ └─┬ trim-leading-lines@0.1.1
│ │   └── is-whitespace@0.3.0
│ └─┬ resolve-dir@1.0.1
│   ├─┬ expand-tilde@2.0.2
│   │ └── homedir-polyfill@1.0.3 deduped
│   └─┬ global-modules@1.0.0
│     ├─┬ global-prefix@1.0.2
│     │ ├── expand-tilde@2.0.2 deduped
│     │ ├── homedir-polyfill@1.0.3 deduped
│     │ ├── ini@1.3.5 deduped
│     │ ├── is-windows@1.0.2 deduped
│     │ └── which@1.3.1 deduped
│     ├── is-windows@1.0.2
│     └── resolve-dir@1.0.1 deduped
├── bootstrap@4.5.3
├─┬ browser-sync@2.26.13
│ ├─┬ browser-sync-client@2.26.13
│ │ ├── etag@1.8.1 deduped
│ │ ├── fresh@0.5.2 deduped
│ │ ├── mitt@1.2.0
│ │ └─┬ rxjs@5.5.12
│ │   └── symbol-observable@1.0.1
│ ├─┬ browser-sync-ui@2.26.13
│ │ ├── async-each-series@0.1.1
│ │ ├── connect-history-api-fallback@1.6.0 deduped
│ │ ├── immutable@3.8.2 deduped
│ │ ├── server-destroy@1.0.1 deduped
│ │ ├─┬ socket.io-client@2.3.1
│ │ │ ├── backo2@1.0.2
│ │ │ ├── component-bind@1.0.0
│ │ │ ├── component-emitter@1.3.0
│ │ │ ├─┬ debug@3.1.0
│ │ │ │ └── ms@2.0.0 deduped
│ │ │ ├─┬ engine.io-client@3.4.4
│ │ │ │ ├── component-emitter@1.3.0 deduped
│ │ │ │ ├── component-inherit@0.0.3
│ │ │ │ ├─┬ debug@3.1.0
│ │ │ │ │ └── ms@2.0.0 deduped
│ │ │ │ ├─┬ engine.io-parser@2.2.1
│ │ │ │ │ ├── after@0.8.2 deduped
│ │ │ │ │ ├── arraybuffer.slice@0.0.7 deduped
│ │ │ │ │ ├── base64-arraybuffer@0.1.4
│ │ │ │ │ ├── blob@0.0.5 deduped
│ │ │ │ │ └── has-binary2@1.0.3 deduped
│ │ │ │ ├── has-cors@1.1.0 deduped
│ │ │ │ ├── indexof@0.0.1 deduped
│ │ │ │ ├── parseqs@0.0.6 deduped
│ │ │ │ ├── parseuri@0.0.6 deduped
│ │ │ │ ├─┬ ws@6.1.4
│ │ │ │ │ └── async-limiter@1.0.1 deduped
│ │ │ │ ├── xmlhttprequest-ssl@1.5.5
│ │ │ │ └── yeast@0.1.2
│ │ │ ├── has-binary2@1.0.3 deduped
│ │ │ ├── indexof@0.0.1
│ │ │ ├── parseqs@0.0.6
│ │ │ ├── parseuri@0.0.6
│ │ │ ├─┬ socket.io-parser@3.3.1
│ │ │ │ ├── component-emitter@1.3.0 deduped
│ │ │ │ ├─┬ debug@3.1.0
│ │ │ │ │ └── ms@2.0.0 deduped
│ │ │ │ └── isarray@2.0.1
│ │ │ └── to-array@0.1.4
│ │ └─┬ stream-throttle@0.1.3
│ │   ├── commander@2.20.3 deduped
│ │   └── limiter@1.1.5
│ ├── bs-recipes@1.3.4
│ ├── bs-snippet-injector@2.0.1
│ ├─┬ chokidar@3.4.3
│ │ ├─┬ anymatch@3.1.1
│ │ │ ├── normalize-path@3.0.0 deduped
│ │ │ └── picomatch@2.2.1 deduped
│ │ ├─┬ braces@3.0.2
│ │ │ └─┬ fill-range@7.0.1
│ │ │   └─┬ to-regex-range@5.0.1
│ │ │     └── is-number@7.0.0
│ │ ├── UNMET OPTIONAL DEPENDENCY fsevents@2.1.3
│ │ ├─┬ glob-parent@5.1.1
│ │ │ └── is-glob@4.0.1 deduped
│ │ ├─┬ is-binary-path@2.1.0
│ │ │ └── binary-extensions@2.1.0
│ │ ├─┬ is-glob@4.0.1
│ │ │ └── is-extglob@2.1.1 deduped
│ │ ├── normalize-path@3.0.0
│ │ └─┬ readdirp@3.5.0
│ │   └── picomatch@2.2.1 deduped
│ ├─┬ connect@3.6.6
│ │ ├── debug@2.6.9 deduped
│ │ ├─┬ finalhandler@1.1.0
│ │ │ ├── debug@2.6.9 deduped
│ │ │ ├── encodeurl@1.0.2 deduped
│ │ │ ├── escape-html@1.0.3 deduped
│ │ │ ├── on-finished@2.3.0 deduped
│ │ │ ├── parseurl@1.3.3 deduped
│ │ │ ├── statuses@1.3.1
│ │ │ └── unpipe@1.0.0 deduped
│ │ ├── parseurl@1.3.3
│ │ └── utils-merge@1.0.1
│ ├── connect-history-api-fallback@1.6.0
│ ├── dev-ip@1.0.1
│ ├─┬ easy-extender@2.3.4
│ │ └── lodash@4.17.20 deduped
│ ├─┬ eazy-logger@3.1.0
│ │ └─┬ tfunk@4.0.0
│ │   ├── chalk@1.1.3 deduped
│ │   └── dlv@1.1.3
│ ├── etag@1.8.1
│ ├── fresh@0.5.2
│ ├─┬ fs-extra@3.0.1
│ │ ├── graceful-fs@4.2.3 deduped
│ │ ├─┬ jsonfile@3.0.1
│ │ │ └── graceful-fs@4.2.3 deduped
│ │ └── universalify@0.1.2
│ ├─┬ http-proxy@1.18.1
│ │ ├── eventemitter3@4.0.7
│ │ ├── follow-redirects@1.13.0
│ │ └── requires-port@1.0.0
│ ├── immutable@3.8.2
│ ├─┬ localtunnel@2.0.0
│ │ ├─┬ axios@0.19.0
│ │ │ ├─┬ follow-redirects@1.5.10
│ │ │ │ └─┬ debug@3.1.0
│ │ │ │   └── ms@2.0.0 deduped
│ │ │ └── is-buffer@2.0.4
│ │ ├─┬ debug@4.1.1
│ │ │ └── ms@2.1.2
│ │ ├── openurl@1.1.1
│ │ └─┬ yargs@13.3.0
│ │   ├─┬ cliui@5.0.0
│ │   │ ├── string-width@3.1.0 deduped
│ │   │ ├─┬ strip-ansi@5.2.0
│ │   │ │ └── ansi-regex@4.1.0
│ │   │ └─┬ wrap-ansi@5.1.0
│ │   │   ├─┬ ansi-styles@3.2.1
│ │   │   │ └── color-convert@1.9.3 deduped
│ │   │   ├── string-width@3.1.0 deduped
│ │   │   └── strip-ansi@5.2.0 deduped
│ │   ├─┬ find-up@3.0.0
│ │   │ └── locate-path@3.0.0 deduped
│ │   ├── get-caller-file@2.0.5
│ │   ├── require-directory@2.1.1 deduped
│ │   ├── require-main-filename@2.0.0
│ │   ├── set-blocking@2.0.0 deduped
│ │   ├─┬ string-width@3.1.0
│ │   │ ├── emoji-regex@7.0.3 deduped
│ │   │ ├── is-fullwidth-code-point@2.0.0
│ │   │ └── strip-ansi@5.2.0 deduped
│ │   ├── which-module@2.0.0
│ │   ├── y18n@4.0.0
│ │   └─┬ yargs-parser@13.1.2
│ │     ├── camelcase@5.3.1
│ │     └── decamelize@1.2.0 deduped
│ ├─┬ micromatch@4.0.2
│ │ ├── braces@3.0.2 deduped
│ │ └── picomatch@2.2.1
│ ├─┬ opn@5.3.0
│ │ └── is-wsl@1.1.0
│ ├─┬ portscanner@2.1.1
│ │ ├── async@1.5.2
│ │ └─┬ is-number-like@1.0.8
│ │   └── lodash.isfinite@3.3.2
│ ├── qs@6.2.3
│ ├─┬ raw-body@2.4.1
│ │ ├── bytes@3.1.0
│ │ ├─┬ http-errors@1.7.3
│ │ │ ├── depd@1.1.2 deduped
│ │ │ ├── inherits@2.0.4 deduped
│ │ │ ├── setprototypeof@1.1.1
│ │ │ ├── statuses@1.5.0
│ │ │ └── toidentifier@1.0.0
│ │ ├─┬ iconv-lite@0.4.24
│ │ │ └── safer-buffer@2.1.2 deduped
│ │ └── unpipe@1.0.0
│ ├─┬ resp-modifier@6.0.2
│ │ ├── debug@2.6.9 deduped
│ │ └── minimatch@3.0.4 deduped
│ ├── rx@4.1.0
│ ├─┬ send@0.16.2
│ │ ├── debug@2.6.9 deduped
│ │ ├── depd@1.1.2
│ │ ├── destroy@1.0.4
│ │ ├── encodeurl@1.0.2
│ │ ├── escape-html@1.0.3
│ │ ├── etag@1.8.1 deduped
│ │ ├── fresh@0.5.2 deduped
│ │ ├─┬ http-errors@1.6.3
│ │ │ ├── depd@1.1.2 deduped
│ │ │ ├── inherits@2.0.3
│ │ │ ├── setprototypeof@1.1.0
│ │ │ └── statuses@1.4.0 deduped
│ │ ├── mime@1.4.1
│ │ ├── ms@2.0.0
│ │ ├─┬ on-finished@2.3.0
│ │ │ └── ee-first@1.1.1
│ │ ├── range-parser@1.2.1
│ │ └── statuses@1.4.0
│ ├─┬ serve-index@1.9.1
│ │ ├─┬ accepts@1.3.7
│ │ │ ├── mime-types@2.1.27 deduped
│ │ │ └── negotiator@0.6.2
│ │ ├── batch@0.6.1
│ │ ├── debug@2.6.9 deduped
│ │ ├── escape-html@1.0.3 deduped
│ │ ├─┬ http-errors@1.6.3
│ │ │ ├── depd@1.1.2 deduped
│ │ │ ├── inherits@2.0.3
│ │ │ ├── setprototypeof@1.1.0
│ │ │ └── statuses@1.5.0
│ │ ├─┬ mime-types@2.1.27
│ │ │ └── mime-db@1.44.0
│ │ └── parseurl@1.3.3 deduped
│ ├─┬ serve-static@1.13.2
│ │ ├── encodeurl@1.0.2 deduped
│ │ ├── escape-html@1.0.3 deduped
│ │ ├── parseurl@1.3.3 deduped
│ │ └── send@0.16.2 deduped
│ ├── server-destroy@1.0.1
│ ├─┬ socket.io@2.1.1
│ │ ├─┬ debug@3.1.0
│ │ │ └── ms@2.0.0 deduped
│ │ ├─┬ engine.io@3.2.1
│ │ │ ├── accepts@1.3.7 deduped
│ │ │ ├── base64id@1.0.0
│ │ │ ├── cookie@0.3.1
│ │ │ ├─┬ debug@3.1.0
│ │ │ │ └── ms@2.0.0 deduped
│ │ │ ├─┬ engine.io-parser@2.1.3
│ │ │ │ ├── after@0.8.2
│ │ │ │ ├── arraybuffer.slice@0.0.7
│ │ │ │ ├── base64-arraybuffer@0.1.5
│ │ │ │ ├── blob@0.0.5
│ │ │ │ └── has-binary2@1.0.3 deduped
│ │ │ └─┬ ws@3.3.3
│ │ │   ├── async-limiter@1.0.1
│ │ │   ├── safe-buffer@5.1.2 deduped
│ │ │   └── ultron@1.1.1
│ │ ├─┬ has-binary2@1.0.3
│ │ │ └── isarray@2.0.1
│ │ ├── socket.io-adapter@1.1.2
│ │ ├─┬ socket.io-client@2.1.1
│ │ │ ├── backo2@1.0.2 deduped
│ │ │ ├── base64-arraybuffer@0.1.5
│ │ │ ├── component-bind@1.0.0 deduped
│ │ │ ├── component-emitter@1.2.1
│ │ │ ├── debug@3.1.0 deduped
│ │ │ ├─┬ engine.io-client@3.2.1
│ │ │ │ ├── component-emitter@1.2.1 deduped
│ │ │ │ ├── component-inherit@0.0.3 deduped
│ │ │ │ ├── debug@3.1.0 deduped
│ │ │ │ ├─┬ engine.io-parser@2.1.3
│ │ │ │ │ ├── after@0.8.2 deduped
│ │ │ │ │ ├── arraybuffer.slice@0.0.7 deduped
│ │ │ │ │ ├── base64-arraybuffer@0.1.5 deduped
│ │ │ │ │ ├── blob@0.0.5 deduped
│ │ │ │ │ └── has-binary2@1.0.3 deduped
│ │ │ │ ├── has-cors@1.1.0 deduped
│ │ │ │ ├── indexof@0.0.1 deduped
│ │ │ │ ├── parseqs@0.0.5 deduped
│ │ │ │ ├── parseuri@0.0.5 deduped
│ │ │ │ ├─┬ ws@3.3.3
│ │ │ │ │ ├── async-limiter@1.0.1 deduped
│ │ │ │ │ ├── safe-buffer@5.1.2 deduped
│ │ │ │ │ └── ultron@1.1.1 deduped
│ │ │ │ ├── xmlhttprequest-ssl@1.5.5 deduped
│ │ │ │ └── yeast@0.1.2 deduped
│ │ │ ├── has-binary2@1.0.3 deduped
│ │ │ ├── has-cors@1.1.0
│ │ │ ├── indexof@0.0.1 deduped
│ │ │ ├── object-component@0.0.3
│ │ │ ├─┬ parseqs@0.0.5
│ │ │ │ └─┬ better-assert@1.0.2
│ │ │ │   └── callsite@1.0.0
│ │ │ ├─┬ parseuri@0.0.5
│ │ │ │ └── better-assert@1.0.2 deduped
│ │ │ ├── socket.io-parser@3.2.0 deduped
│ │ │ └── to-array@0.1.4 deduped
│ │ └─┬ socket.io-parser@3.2.0
│ │   ├── component-emitter@1.2.1 deduped
│ │   ├── debug@3.1.0 deduped
│ │   └── isarray@2.0.1
│ ├── ua-parser-js@0.7.22
│ └─┬ yargs@15.4.1
│   ├─┬ cliui@6.0.0
│   │ ├── string-width@4.2.0 deduped
│   │ ├─┬ strip-ansi@6.0.0
│   │ │ └── ansi-regex@5.0.0
│   │ └─┬ wrap-ansi@6.2.0
│   │   ├─┬ ansi-styles@4.3.0
│   │   │ └─┬ color-convert@2.0.1
│   │   │   └── color-name@1.1.4
│   │   ├── string-width@4.2.0 deduped
│   │   └── strip-ansi@6.0.0 deduped
│   ├── decamelize@1.2.0
│   ├─┬ find-up@4.1.0
│   │ ├─┬ locate-path@5.0.0
│   │ │ └─┬ p-locate@4.1.0
│   │ │   └── p-limit@2.3.0 deduped
│   │ └── path-exists@4.0.0
│   ├── get-caller-file@2.0.5
│   ├── require-directory@2.1.1 deduped
│   ├── require-main-filename@2.0.0
│   ├── set-blocking@2.0.0 deduped
│   ├─┬ string-width@4.2.0
│   │ ├── emoji-regex@8.0.0
│   │ ├── is-fullwidth-code-point@3.0.0
│   │ └── strip-ansi@6.0.0 deduped
│   ├── which-module@2.0.0
│   ├── y18n@4.0.0
│   └─┬ yargs-parser@18.1.3
│     ├── camelcase@5.3.1
│     └── decamelize@1.2.0 deduped
├─┬ css-loader@3.6.0
│ ├── camelcase@5.3.1
│ ├── cssesc@3.0.0
│ ├─┬ icss-utils@4.1.1
│ │ └── postcss@7.0.35 deduped
│ ├─┬ loader-utils@1.4.0
│ │ ├── big.js@5.2.2
│ │ ├── emojis-list@3.0.0
│ │ └─┬ json5@1.0.1
│ │   └── minimist@1.2.0 deduped
│ ├── normalize-path@3.0.0
│ ├─┬ postcss@7.0.35
│ │ ├─┬ chalk@2.4.2
│ │ │ ├─┬ ansi-styles@3.2.1
│ │ │ │ └── color-convert@1.9.3 deduped
│ │ │ ├── escape-string-regexp@1.0.5 deduped
│ │ │ └─┬ supports-color@5.5.0
│ │ │   └── has-flag@3.0.0 deduped
│ │ ├── source-map@0.6.1 deduped
│ │ └─┬ supports-color@6.1.0
│ │   └── has-flag@3.0.0 deduped
│ ├─┬ postcss-modules-extract-imports@2.0.0
│ │ └── postcss@7.0.35 deduped
│ ├─┬ postcss-modules-local-by-default@3.0.3
│ │ ├── icss-utils@4.1.1 deduped
│ │ ├── postcss@7.0.35 deduped
│ │ ├─┬ postcss-selector-parser@6.0.4
│ │ │ ├── cssesc@3.0.0 deduped
│ │ │ ├── indexes-of@1.0.1
│ │ │ ├── uniq@1.0.1
│ │ │ └── util-deprecate@1.0.2
│ │ └── postcss-value-parser@4.1.0 deduped
│ ├─┬ postcss-modules-scope@2.2.0
│ │ ├── postcss@7.0.35 deduped
│ │ └── postcss-selector-parser@6.0.4 deduped
│ ├─┬ postcss-modules-values@3.0.0
│ │ ├── icss-utils@4.1.1 deduped
│ │ └── postcss@7.0.35 deduped
│ ├── postcss-value-parser@4.1.0
│ ├─┬ schema-utils@2.7.1
│ │ ├── @types/json-schema@7.0.6
│ │ ├── ajv@6.12.6 deduped
│ │ └── ajv-keywords@3.5.2 deduped
│ └── semver@6.3.0
├─┬ del@5.1.0
│ ├─┬ globby@10.0.2
│ │ ├─┬ @types/glob@7.1.1
│ │ │ ├── @types/events@3.0.0
│ │ │ ├── @types/minimatch@3.0.3
│ │ │ └── @types/node@13.5.0 deduped
│ │ ├── array-union@2.1.0
│ │ ├─┬ dir-glob@3.0.1
│ │ │ └── path-type@4.0.0
│ │ ├─┬ fast-glob@3.1.1
│ │ │ ├── @nodelib/fs.stat@2.0.3
│ │ │ ├─┬ @nodelib/fs.walk@1.2.4
│ │ │ │ ├─┬ @nodelib/fs.scandir@2.1.3
│ │ │ │ │ ├── @nodelib/fs.stat@2.0.3 deduped
│ │ │ │ │ └── run-parallel@1.1.9
│ │ │ │ └─┬ fastq@1.6.0
│ │ │ │   └── reusify@1.0.4
│ │ │ ├─┬ glob-parent@5.1.0
│ │ │ │ └─┬ is-glob@4.0.1
│ │ │ │   └── is-extglob@2.1.1 deduped
│ │ │ ├── merge2@1.3.0 deduped
│ │ │ └─┬ micromatch@4.0.2
│ │ │   ├─┬ braces@3.0.2
│ │ │   │ └─┬ fill-range@7.0.1
│ │ │   │   └─┬ to-regex-range@5.0.1
│ │ │   │     └── is-number@7.0.0
│ │ │   └── picomatch@2.2.1 deduped
│ │ ├─┬ glob@7.1.6
│ │ │ ├── fs.realpath@1.0.0 deduped
│ │ │ ├── inflight@1.0.6 deduped
│ │ │ ├── inherits@2.0.4 deduped
│ │ │ ├── minimatch@3.0.4 deduped
│ │ │ ├── once@1.4.0 deduped
│ │ │ └── path-is-absolute@1.0.1 deduped
│ │ ├── ignore@5.1.4
│ │ ├── merge2@1.3.0
│ │ └── slash@3.0.0 deduped
│ ├── graceful-fs@4.2.3
│ ├─┬ is-glob@4.0.1
│ │ └── is-extglob@2.1.1
│ ├── is-path-cwd@2.2.0
│ ├── is-path-inside@3.0.2
│ ├─┬ p-map@3.0.0
│ │ └─┬ aggregate-error@3.0.1
│ │   ├── clean-stack@2.2.0
│ │   └── indent-string@4.0.0
│ ├─┬ rimraf@3.0.0
│ │ └─┬ glob@7.1.6
│ │   ├── fs.realpath@1.0.0 deduped
│ │   ├── inflight@1.0.6 deduped
│ │   ├── inherits@2.0.4 deduped
│ │   ├── minimatch@3.0.4 deduped
│ │   ├── once@1.4.0 deduped
│ │   └── path-is-absolute@1.0.1 deduped
│ └── slash@3.0.0
├─┬ fork-ts-checker-webpack-plugin@4.1.6
│ ├─┬ @babel/code-frame@7.10.4
│ │ └─┬ @babel/highlight@7.10.4
│ │   ├── @babel/helper-validator-identifier@7.10.4
│ │   ├─┬ chalk@2.4.2
│ │   │ ├─┬ ansi-styles@3.2.1
│ │   │ │ └── color-convert@1.9.3 deduped
│ │   │ ├── escape-string-regexp@1.0.5 deduped
│ │   │ └─┬ supports-color@5.5.0
│ │   │   └── has-flag@3.0.0 deduped
│ │   └── js-tokens@4.0.0 deduped
│ ├─┬ chalk@2.4.2
│ │ ├─┬ ansi-styles@3.2.1
│ │ │ └─┬ color-convert@1.9.3
│ │ │   └── color-name@1.1.3
│ │ ├── escape-string-regexp@1.0.5
│ │ └─┬ supports-color@5.5.0
│ │   └── has-flag@3.0.0 deduped
│ ├─┬ micromatch@3.1.10
│ │ ├── arr-diff@4.0.0
│ │ ├── array-unique@0.3.2
│ │ ├─┬ braces@2.3.2
│ │ │ ├── arr-flatten@1.1.0 deduped
│ │ │ ├── array-unique@0.3.2 deduped
│ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ ├─┬ fill-range@4.0.0
│ │ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ ├─┬ is-number@3.0.0
│ │ │ │ │ └─┬ kind-of@3.2.2
│ │ │ │ │   └── is-buffer@1.1.6 deduped
│ │ │ │ ├── repeat-string@1.6.1 deduped
│ │ │ │ └─┬ to-regex-range@2.1.1
│ │ │ │   ├─┬ is-number@3.0.0
│ │ │ │   │ └─┬ kind-of@3.2.2
│ │ │ │   │   └── is-buffer@1.1.6 deduped
│ │ │ │   └── repeat-string@1.6.1 deduped
│ │ │ ├── isobject@3.0.1 deduped
│ │ │ ├── repeat-element@1.1.3
│ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ ├─┬ snapdragon-node@2.1.1
│ │ │ │ ├─┬ define-property@1.0.0
│ │ │ │ │ └─┬ is-descriptor@1.0.2
│ │ │ │ │   ├─┬ is-accessor-descriptor@1.0.0
│ │ │ │ │   │ └── kind-of@6.0.3 deduped
│ │ │ │ │   ├─┬ is-data-descriptor@1.0.0
│ │ │ │ │   │ └── kind-of@6.0.3 deduped
│ │ │ │ │   └── kind-of@6.0.3
│ │ │ │ ├── isobject@3.0.1 deduped
│ │ │ │ └─┬ snapdragon-util@3.0.1
│ │ │ │   └─┬ kind-of@3.2.2
│ │ │ │     └── is-buffer@1.1.6 deduped
│ │ │ ├─┬ split-string@3.1.0
│ │ │ │ └─┬ extend-shallow@3.0.2
│ │ │ │   ├── assign-symbols@1.0.0 deduped
│ │ │ │   └─┬ is-extendable@1.0.1
│ │ │ │     └── is-plain-object@2.0.4 deduped
│ │ │ └── to-regex@3.0.2 deduped
│ │ ├─┬ define-property@2.0.2
│ │ │ ├─┬ is-descriptor@1.0.2
│ │ │ │ ├─┬ is-accessor-descriptor@1.0.0
│ │ │ │ │ └── kind-of@6.0.3 deduped
│ │ │ │ ├─┬ is-data-descriptor@1.0.0
│ │ │ │ │ └── kind-of@6.0.3 deduped
│ │ │ │ └── kind-of@6.0.3 deduped
│ │ │ └── isobject@3.0.1 deduped
│ │ ├─┬ extend-shallow@3.0.2
│ │ │ ├── assign-symbols@1.0.0
│ │ │ └─┬ is-extendable@1.0.1
│ │ │   └── is-plain-object@2.0.4 deduped
│ │ ├─┬ extglob@2.0.4
│ │ │ ├── array-unique@0.3.2 deduped
│ │ │ ├─┬ define-property@1.0.0
│ │ │ │ └── is-descriptor@1.0.2 deduped
│ │ │ ├─┬ expand-brackets@2.1.4
│ │ │ │ ├── debug@2.6.9 deduped
│ │ │ │ ├─┬ define-property@0.2.5
│ │ │ │ │ └─┬ is-descriptor@0.1.6
│ │ │ │ │   ├─┬ is-accessor-descriptor@0.1.6
│ │ │ │ │   │ └─┬ kind-of@3.2.2
│ │ │ │ │   │   └── is-buffer@1.1.6 deduped
│ │ │ │ │   ├─┬ is-data-descriptor@0.1.4
│ │ │ │ │   │ └─┬ kind-of@3.2.2
│ │ │ │ │   │   └── is-buffer@1.1.6 deduped
│ │ │ │ │   └── kind-of@5.1.0
│ │ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ ├── posix-character-classes@0.1.1
│ │ │ │ ├── regex-not@1.0.2 deduped
│ │ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ │ └── to-regex@3.0.2 deduped
│ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ ├── fragment-cache@0.2.1 deduped
│ │ │ ├── regex-not@1.0.2 deduped
│ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ └── to-regex@3.0.2 deduped
│ │ ├─┬ fragment-cache@0.2.1
│ │ │ └── map-cache@0.2.2
│ │ ├── kind-of@6.0.3
│ │ ├─┬ nanomatch@1.2.13
│ │ │ ├── arr-diff@4.0.0
│ │ │ ├── array-unique@0.3.2
│ │ │ ├─┬ define-property@2.0.2
│ │ │ │ ├─┬ is-descriptor@1.0.2
│ │ │ │ │ ├─┬ is-accessor-descriptor@1.0.0
│ │ │ │ │ │ └── kind-of@6.0.3 deduped
│ │ │ │ │ ├─┬ is-data-descriptor@1.0.0
│ │ │ │ │ │ └── kind-of@6.0.3 deduped
│ │ │ │ │ └── kind-of@6.0.3 deduped
│ │ │ │ └── isobject@3.0.1 deduped
│ │ │ ├─┬ extend-shallow@3.0.2
│ │ │ │ ├── assign-symbols@1.0.0 deduped
│ │ │ │ └─┬ is-extendable@1.0.1
│ │ │ │   └── is-plain-object@2.0.4 deduped
│ │ │ ├── fragment-cache@0.2.1 deduped
│ │ │ ├── is-windows@1.0.2 deduped
│ │ │ ├── kind-of@6.0.3
│ │ │ ├── object.pick@1.3.0 deduped
│ │ │ ├── regex-not@1.0.2 deduped
│ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ └── to-regex@3.0.2 deduped
│ │ ├── object.pick@1.3.0 deduped
│ │ ├─┬ regex-not@1.0.2
│ │ │ ├─┬ extend-shallow@3.0.2
│ │ │ │ ├── assign-symbols@1.0.0 deduped
│ │ │ │ └─┬ is-extendable@1.0.1
│ │ │ │   └── is-plain-object@2.0.4 deduped
│ │ │ └─┬ safe-regex@1.1.0
│ │ │   └── ret@0.1.15
│ │ ├─┬ snapdragon@0.8.2
│ │ │ ├── base@0.11.2 deduped
│ │ │ ├── debug@2.6.9 deduped
│ │ │ ├── define-property@0.2.5 deduped
│ │ │ ├── extend-shallow@2.0.1 deduped
│ │ │ ├── map-cache@0.2.2 deduped
│ │ │ ├── source-map@0.5.7
│ │ │ ├── source-map-resolve@0.5.3 deduped
│ │ │ └── use@3.1.1
│ │ └─┬ to-regex@3.0.2
│ │   ├─┬ define-property@2.0.2
│ │   │ ├─┬ is-descriptor@1.0.2
│ │   │ │ ├─┬ is-accessor-descriptor@1.0.0
│ │   │ │ │ └── kind-of@6.0.3 deduped
│ │   │ │ ├─┬ is-data-descriptor@1.0.0
│ │   │ │ │ └── kind-of@6.0.3 deduped
│ │   │ │ └── kind-of@6.0.3
│ │   │ └── isobject@3.0.1 deduped
│ │   ├─┬ extend-shallow@3.0.2
│ │   │ ├── assign-symbols@1.0.0 deduped
│ │   │ └─┬ is-extendable@1.0.1
│ │   │   └── is-plain-object@2.0.4 deduped
│ │   ├── regex-not@1.0.2 deduped
│ │   └── safe-regex@1.1.0 deduped
│ ├─┬ minimatch@3.0.4
│ │ └─┬ brace-expansion@1.1.11
│ │   ├── balanced-match@1.0.0
│ │   └── concat-map@0.0.1
│ ├── semver@5.7.1
│ ├── tapable@1.1.3
│ └─┬ worker-rpc@0.1.1
│   └── microevent.ts@0.1.1
├─┬ gulp@4.0.2
│ ├─┬ glob-watcher@5.0.3
│ │ ├─┬ anymatch@2.0.0
│ │ │ ├─┬ micromatch@3.1.10
│ │ │ │ ├── arr-diff@4.0.0
│ │ │ │ ├── array-unique@0.3.2
│ │ │ │ ├─┬ braces@2.3.2
│ │ │ │ │ ├── arr-flatten@1.1.0 deduped
│ │ │ │ │ ├── array-unique@0.3.2 deduped
│ │ │ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ │ ├─┬ fill-range@4.0.0
│ │ │ │ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ │ │ ├─┬ is-number@3.0.0
│ │ │ │ │ │ │ └─┬ kind-of@3.2.2
│ │ │ │ │ │ │   └── is-buffer@1.1.6 deduped
│ │ │ │ │ │ ├── repeat-string@1.6.1 deduped
│ │ │ │ │ │ └── to-regex-range@2.1.1 deduped
│ │ │ │ │ ├── isobject@3.0.1 deduped
│ │ │ │ │ ├── repeat-element@1.1.3 deduped
│ │ │ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ │ │ ├── snapdragon-node@2.1.1 deduped
│ │ │ │ │ ├── split-string@3.1.0 deduped
│ │ │ │ │ └── to-regex@3.0.2 deduped
│ │ │ │ ├─┬ define-property@2.0.2
│ │ │ │ │ ├─┬ is-descriptor@1.0.2
│ │ │ │ │ │ ├─┬ is-accessor-descriptor@1.0.0
│ │ │ │ │ │ │ └── kind-of@6.0.3 deduped
│ │ │ │ │ │ ├─┬ is-data-descriptor@1.0.0
│ │ │ │ │ │ │ └── kind-of@6.0.3 deduped
│ │ │ │ │ │ └── kind-of@6.0.3 deduped
│ │ │ │ │ └── isobject@3.0.1 deduped
│ │ │ │ ├─┬ extend-shallow@3.0.2
│ │ │ │ │ ├── assign-symbols@1.0.0 deduped
│ │ │ │ │ └─┬ is-extendable@1.0.1
│ │ │ │ │   └── is-plain-object@2.0.4 deduped
│ │ │ │ ├─┬ extglob@2.0.4
│ │ │ │ │ ├── array-unique@0.3.2 deduped
│ │ │ │ │ ├─┬ define-property@1.0.0
│ │ │ │ │ │ └── is-descriptor@1.0.2 deduped
│ │ │ │ │ ├─┬ expand-brackets@2.1.4
│ │ │ │ │ │ ├── debug@2.6.9 deduped
│ │ │ │ │ │ ├─┬ define-property@0.2.5
│ │ │ │ │ │ │ └─┬ is-descriptor@0.1.6
│ │ │ │ │ │ │   ├─┬ is-accessor-descriptor@0.1.6
│ │ │ │ │ │ │   │ └─┬ kind-of@3.2.2
│ │ │ │ │ │ │   │   └── is-buffer@1.1.6 deduped
│ │ │ │ │ │ │   ├─┬ is-data-descriptor@0.1.4
│ │ │ │ │ │ │   │ └─┬ kind-of@3.2.2
│ │ │ │ │ │ │   │   └── is-buffer@1.1.6 deduped
│ │ │ │ │ │ │   └── kind-of@5.1.0
│ │ │ │ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ │ │ ├── posix-character-classes@0.1.1 deduped
│ │ │ │ │ │ ├── regex-not@1.0.2 deduped
│ │ │ │ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ │ │ │ └── to-regex@3.0.2 deduped
│ │ │ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ │ ├── fragment-cache@0.2.1 deduped
│ │ │ │ │ ├── regex-not@1.0.2 deduped
│ │ │ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ │ │ └── to-regex@3.0.2 deduped
│ │ │ │ ├── fragment-cache@0.2.1 deduped
│ │ │ │ ├── kind-of@6.0.3
│ │ │ │ ├── nanomatch@1.2.13 deduped
│ │ │ │ ├── object.pick@1.3.0 deduped
│ │ │ │ ├── regex-not@1.0.2 deduped
│ │ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ │ └── to-regex@3.0.2 deduped
│ │ │ └── normalize-path@2.1.1 deduped
│ │ ├─┬ async-done@1.3.2
│ │ │ ├─┬ end-of-stream@1.4.4
│ │ │ │ └── once@1.4.0 deduped
│ │ │ ├── once@1.4.0 deduped
│ │ │ ├── process-nextick-args@2.0.1
│ │ │ └── stream-exhaust@1.0.2
│ │ ├─┬ chokidar@2.1.8
│ │ │ ├── anymatch@2.0.0 deduped
│ │ │ ├── async-each@1.0.3 deduped
│ │ │ ├─┬ braces@2.3.2
│ │ │ │ ├── arr-flatten@1.1.0 deduped
│ │ │ │ ├── array-unique@0.3.2
│ │ │ │ ├── extend-shallow@2.0.1 deduped
│ │ │ │ ├─┬ fill-range@4.0.0
│ │ │ │ │ ├── extend-shallow@2.0.1 deduped
│ │ │ │ │ ├─┬ is-number@3.0.0
│ │ │ │ │ │ └─┬ kind-of@3.2.2
│ │ │ │ │ │   └── is-buffer@1.1.6 deduped
│ │ │ │ │ ├── repeat-string@1.6.1 deduped
│ │ │ │ │ └── to-regex-range@2.1.1 deduped
│ │ │ │ ├── isobject@3.0.1 deduped
│ │ │ │ ├── repeat-element@1.1.3 deduped
│ │ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ │ ├── snapdragon-node@2.1.1 deduped
│ │ │ │ ├── split-string@3.1.0 deduped
│ │ │ │ └── to-regex@3.0.2 deduped
│ │ │ ├─┬ fsevents@1.2.11
│ │ │ │ ├─┬ bindings@1.5.0
│ │ │ │ │ └── file-uri-to-path@1.0.0
│ │ │ │ ├── nan@2.14.0 deduped
│ │ │ │ └─┬ node-pre-gyp@0.14.0
│ │ │ │   ├── detect-libc@1.0.3
│ │ │ │   ├─┬ mkdirp@0.5.1
│ │ │ │   │ └── minimist@0.0.8
│ │ │ │   ├─┬ needle@2.4.0
│ │ │ │   │ ├─┬ debug@3.2.6
│ │ │ │   │ │ └── ms@2.1.2
│ │ │ │   │ ├─┬ iconv-lite@0.4.24
│ │ │ │   │ │ └── safer-buffer@2.1.2
│ │ │ │   │ └── sax@1.2.4
│ │ │ │   ├─┬ nopt@4.0.1
│ │ │ │   │ ├── abbrev@1.1.1
│ │ │ │   │ └─┬ osenv@0.1.5
│ │ │ │   │   ├── os-homedir@1.0.2
│ │ │ │   │   └── os-tmpdir@1.0.2
│ │ │ │   ├─┬ npm-packlist@1.4.7
│ │ │ │   │ ├─┬ ignore-walk@3.0.3
│ │ │ │   │ │ └─┬ minimatch@3.0.4
│ │ │ │   │ │   └─┬ brace-expansion@1.1.11
│ │ │ │   │ │     ├── balanced-match@1.0.0
│ │ │ │   │ │     └── concat-map@0.0.1
│ │ │ │   │ └─┬ npm-bundled@1.1.1
│ │ │ │   │   └── npm-normalize-package-bin@1.0.1
│ │ │ │   ├─┬ npmlog@4.1.2
│ │ │ │   │ ├─┬ are-we-there-yet@1.1.5
│ │ │ │   │ │ ├── delegates@1.0.0
│ │ │ │   │ │ └─┬ readable-stream@2.3.6
│ │ │ │   │ │   ├── core-util-is@1.0.2
│ │ │ │   │ │   ├── inherits@2.0.4 deduped
│ │ │ │   │ │   ├── isarray@1.0.0
│ │ │ │   │ │   ├── process-nextick-args@2.0.1
│ │ │ │   │ │   ├── safe-buffer@5.1.2 deduped
│ │ │ │   │ │   ├─┬ string_decoder@1.1.1
│ │ │ │   │ │   │ └── safe-buffer@5.1.2 deduped
│ │ │ │   │ │   └── util-deprecate@1.0.2
│ │ │ │   │ ├── console-control-strings@1.1.0
│ │ │ │   │ ├─┬ gauge@2.7.4
│ │ │ │   │ │ ├── aproba@1.2.0
│ │ │ │   │ │ ├── console-control-strings@1.1.0 deduped
│ │ │ │   │ │ ├── has-unicode@2.0.1
│ │ │ │   │ │ ├── object-assign@4.1.1
│ │ │ │   │ │ ├── signal-exit@3.0.2
│ │ │ │   │ │ ├─┬ string-width@1.0.2
│ │ │ │   │ │ │ ├── code-point-at@1.1.0
│ │ │ │   │ │ │ ├─┬ is-fullwidth-code-point@1.0.0
│ │ │ │   │ │ │ │ └── number-is-nan@1.0.1
│ │ │ │   │ │ │ └── strip-ansi@3.0.1 deduped
│ │ │ │   │ │ ├─┬ strip-ansi@3.0.1
│ │ │ │   │ │ │ └── ansi-regex@2.1.1
│ │ │ │   │ │ └─┬ wide-align@1.1.3
│ │ │ │   │ │   └── string-width@1.0.2 deduped
│ │ │ │   │ └── set-blocking@2.0.0
│ │ │ │   ├─┬ rc@1.2.8
│ │ │ │   │ ├── deep-extend@0.6.0
│ │ │ │   │ ├── ini@1.3.5
│ │ │ │   │ ├── minimist@1.2.0
│ │ │ │   │ └── strip-json-comments@2.0.1
│ │ │ │   ├─┬ rimraf@2.7.1
│ │ │ │   │ └─┬ glob@7.1.6
│ │ │ │   │   ├── fs.realpath@1.0.0
│ │ │ │   │   ├─┬ inflight@1.0.6
│ │ │ │   │   │ ├── once@1.4.0 deduped
│ │ │ │   │   │ └── wrappy@1.0.2
│ │ │ │   │   ├── inherits@2.0.4
│ │ │ │   │   ├── minimatch@3.0.4 deduped
│ │ │ │   │   ├─┬ once@1.4.0
│ │ │ │   │   │ └── wrappy@1.0.2 deduped
│ │ │ │   │   └── path-is-absolute@1.0.1
│ │ │ │   ├── semver@5.7.1
│ │ │ │   └─┬ tar@4.4.13
│ │ │ │     ├── chownr@1.1.3
│ │ │ │     ├─┬ fs-minipass@1.2.7
│ │ │ │     │ └── minipass@2.9.0 deduped
│ │ │ │     ├─┬ minipass@2.9.0
│ │ │ │     │ ├── safe-buffer@5.1.2 deduped
│ │ │ │     │ └── yallist@3.1.1 deduped
│ │ │ │     ├─┬ minizlib@1.3.3
│ │ │ │     │ └── minipass@2.9.0 deduped
│ │ │ │     ├── mkdirp@0.5.1 deduped
│ │ │ │     ├── safe-buffer@5.1.2
│ │ │ │     └── yallist@3.1.1
│ │ │ ├── glob-parent@3.1.0 deduped
│ │ │ ├── inherits@2.0.4 deduped
│ │ │ ├─┬ is-binary-path@1.0.1
│ │ │ │ └── binary-extensions@1.13.1
│ │ │ ├─┬ is-glob@4.0.1
│ │ │ │ └── is-extglob@2.1.1 deduped
│ │ │ ├── normalize-path@3.0.0
│ │ │ ├── path-is-absolute@1.0.1 deduped
│ │ │ ├─┬ readdirp@2.2.1
│ │ │ │ ├── graceful-fs@4.2.3 deduped
│ │ │ │ ├─┬ micromatch@3.1.10
│ │ │ │ │ ├── arr-diff@4.0.0
│ │ │ │ │ ├── array-unique@0.3.2
│ │ │ │ │ ├─┬ braces@2.3.2
│ │ │ │ │ │ ├── arr-flatten@1.1.0 deduped
│ │ │ │ │ │ ├── array-unique@0.3.2 deduped
│ │ │ │ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ │ │ ├─┬ fill-range@4.0.0
│ │ │ │ │ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ │ │ │ ├─┬ is-number@3.0.0
│ │ │ │ │ │ │ │ └─┬ kind-of@3.2.2
│ │ │ │ │ │ │ │   └── is-buffer@1.1.6 deduped
│ │ │ │ │ │ │ ├── repeat-string@1.6.1 deduped
│ │ │ │ │ │ │ └── to-regex-range@2.1.1 deduped
│ │ │ │ │ │ ├── isobject@3.0.1 deduped
│ │ │ │ │ │ ├── repeat-element@1.1.3 deduped
│ │ │ │ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ │ │ │ ├── snapdragon-node@2.1.1 deduped
│ │ │ │ │ │ ├── split-string@3.1.0 deduped
│ │ │ │ │ │ └── to-regex@3.0.2 deduped
│ │ │ │ │ ├─┬ define-property@2.0.2
│ │ │ │ │ │ ├─┬ is-descriptor@1.0.2
│ │ │ │ │ │ │ ├─┬ is-accessor-descriptor@1.0.0
│ │ │ │ │ │ │ │ └── kind-of@6.0.3 deduped
│ │ │ │ │ │ │ ├─┬ is-data-descriptor@1.0.0
│ │ │ │ │ │ │ │ └── kind-of@6.0.3 deduped
│ │ │ │ │ │ │ └── kind-of@6.0.3 deduped
│ │ │ │ │ │ └── isobject@3.0.1 deduped
│ │ │ │ │ ├─┬ extend-shallow@3.0.2
│ │ │ │ │ │ ├── assign-symbols@1.0.0 deduped
│ │ │ │ │ │ └─┬ is-extendable@1.0.1
│ │ │ │ │ │   └── is-plain-object@2.0.4 deduped
│ │ │ │ │ ├─┬ extglob@2.0.4
│ │ │ │ │ │ ├── array-unique@0.3.2 deduped
│ │ │ │ │ │ ├─┬ define-property@1.0.0
│ │ │ │ │ │ │ └── is-descriptor@1.0.2 deduped
│ │ │ │ │ │ ├─┬ expand-brackets@2.1.4
│ │ │ │ │ │ │ ├── debug@2.6.9 deduped
│ │ │ │ │ │ │ ├─┬ define-property@0.2.5
│ │ │ │ │ │ │ │ └─┬ is-descriptor@0.1.6
│ │ │ │ │ │ │ │   ├─┬ is-accessor-descriptor@0.1.6
│ │ │ │ │ │ │ │   │ └─┬ kind-of@3.2.2
│ │ │ │ │ │ │ │   │   └── is-buffer@1.1.6 deduped
│ │ │ │ │ │ │ │   ├─┬ is-data-descriptor@0.1.4
│ │ │ │ │ │ │ │   │ └─┬ kind-of@3.2.2
│ │ │ │ │ │ │ │   │   └── is-buffer@1.1.6 deduped
│ │ │ │ │ │ │ │   └── kind-of@5.1.0
│ │ │ │ │ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ │ │ │ ├── posix-character-classes@0.1.1 deduped
│ │ │ │ │ │ │ ├── regex-not@1.0.2 deduped
│ │ │ │ │ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ │ │ │ │ └── to-regex@3.0.2 deduped
│ │ │ │ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ │ │ ├── fragment-cache@0.2.1 deduped
│ │ │ │ │ │ ├── regex-not@1.0.2 deduped
│ │ │ │ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ │ │ │ └── to-regex@3.0.2 deduped
│ │ │ │ │ ├── fragment-cache@0.2.1 deduped
│ │ │ │ │ ├── kind-of@6.0.3
│ │ │ │ │ ├── nanomatch@1.2.13 deduped
│ │ │ │ │ ├── object.pick@1.3.0 deduped
│ │ │ │ │ ├── regex-not@1.0.2 deduped
│ │ │ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ │ │ └── to-regex@3.0.2 deduped
│ │ │ │ └── readable-stream@2.3.7 deduped
│ │ │ └── upath@1.2.0
│ │ ├── is-negated-glob@1.0.0
│ │ ├── just-debounce@1.0.0
│ │ └─┬ object.defaults@1.1.0
│ │   ├── array-each@1.0.1
│ │   ├── array-slice@1.1.0
│ │   ├─┬ for-own@1.0.0
│ │   │ └── for-in@1.0.2 deduped
│ │   └── isobject@3.0.1 deduped
│ ├─┬ gulp-cli@2.2.0
│ │ ├─┬ ansi-colors@1.1.0
│ │ │ └── ansi-wrap@0.1.0 deduped
│ │ ├── archy@1.0.0
│ │ ├─┬ array-sort@1.0.0
│ │ │ ├─┬ default-compare@1.0.0
│ │ │ │ └── kind-of@5.1.0 deduped
│ │ │ ├── get-value@2.0.6 deduped
│ │ │ └── kind-of@5.1.0 deduped
│ │ ├── color-support@1.1.3
│ │ ├─┬ concat-stream@1.6.2
│ │ │ ├── buffer-from@1.1.1 deduped
│ │ │ ├── inherits@2.0.4 deduped
│ │ │ ├── readable-stream@2.3.7 deduped
│ │ │ └── typedarray@0.0.6
│ │ ├─┬ copy-props@2.0.4
│ │ │ ├─┬ each-props@1.3.2
│ │ │ │ ├── is-plain-object@2.0.4 deduped
│ │ │ │ └── object.defaults@1.1.0 deduped
│ │ │ └── is-plain-object@2.0.4 deduped
│ │ ├── fancy-log@1.3.3 deduped
│ │ ├─┬ gulplog@1.0.0
│ │ │ └─┬ glogg@1.0.2
│ │ │   └── sparkles@1.0.1 deduped
│ │ ├── interpret@1.2.0
│ │ ├── isobject@3.0.1 deduped
│ │ ├─┬ liftoff@3.1.0
│ │ │ ├── extend@3.0.2 deduped
│ │ │ ├─┬ findup-sync@3.0.0
│ │ │ │ ├── detect-file@1.0.0
│ │ │ │ ├─┬ is-glob@4.0.1
│ │ │ │ │ └── is-extglob@2.1.1 deduped
│ │ │ │ ├─┬ micromatch@3.1.10
│ │ │ │ │ ├── arr-diff@4.0.0
│ │ │ │ │ ├── array-unique@0.3.2
│ │ │ │ │ ├─┬ braces@2.3.2
│ │ │ │ │ │ ├── arr-flatten@1.1.0 deduped
│ │ │ │ │ │ ├── array-unique@0.3.2 deduped
│ │ │ │ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ │ │ ├─┬ fill-range@4.0.0
│ │ │ │ │ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ │ │ │ ├─┬ is-number@3.0.0
│ │ │ │ │ │ │ │ └─┬ kind-of@3.2.2
│ │ │ │ │ │ │ │   └── is-buffer@1.1.6 deduped
│ │ │ │ │ │ │ ├── repeat-string@1.6.1 deduped
│ │ │ │ │ │ │ └── to-regex-range@2.1.1 deduped
│ │ │ │ │ │ ├── isobject@3.0.1 deduped
│ │ │ │ │ │ ├── repeat-element@1.1.3 deduped
│ │ │ │ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ │ │ │ ├── snapdragon-node@2.1.1 deduped
│ │ │ │ │ │ ├── split-string@3.1.0 deduped
│ │ │ │ │ │ └── to-regex@3.0.2 deduped
│ │ │ │ │ ├─┬ define-property@2.0.2
│ │ │ │ │ │ ├─┬ is-descriptor@1.0.2
│ │ │ │ │ │ │ ├─┬ is-accessor-descriptor@1.0.0
│ │ │ │ │ │ │ │ └── kind-of@6.0.3 deduped
│ │ │ │ │ │ │ ├─┬ is-data-descriptor@1.0.0
│ │ │ │ │ │ │ │ └── kind-of@6.0.3 deduped
│ │ │ │ │ │ │ └── kind-of@6.0.3 deduped
│ │ │ │ │ │ └── isobject@3.0.1 deduped
│ │ │ │ │ ├─┬ extend-shallow@3.0.2
│ │ │ │ │ │ ├── assign-symbols@1.0.0 deduped
│ │ │ │ │ │ └─┬ is-extendable@1.0.1
│ │ │ │ │ │   └── is-plain-object@2.0.4 deduped
│ │ │ │ │ ├─┬ extglob@2.0.4
│ │ │ │ │ │ ├── array-unique@0.3.2 deduped
│ │ │ │ │ │ ├─┬ define-property@1.0.0
│ │ │ │ │ │ │ └── is-descriptor@1.0.2 deduped
│ │ │ │ │ │ ├─┬ expand-brackets@2.1.4
│ │ │ │ │ │ │ ├── debug@2.6.9 deduped
│ │ │ │ │ │ │ ├─┬ define-property@0.2.5
│ │ │ │ │ │ │ │ └─┬ is-descriptor@0.1.6
│ │ │ │ │ │ │ │   ├─┬ is-accessor-descriptor@0.1.6
│ │ │ │ │ │ │ │   │ └─┬ kind-of@3.2.2
│ │ │ │ │ │ │ │   │   └── is-buffer@1.1.6 deduped
│ │ │ │ │ │ │ │   ├─┬ is-data-descriptor@0.1.4
│ │ │ │ │ │ │ │   │ └─┬ kind-of@3.2.2
│ │ │ │ │ │ │ │   │   └── is-buffer@1.1.6 deduped
│ │ │ │ │ │ │ │   └── kind-of@5.1.0
│ │ │ │ │ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ │ │ │ ├── posix-character-classes@0.1.1 deduped
│ │ │ │ │ │ │ ├── regex-not@1.0.2 deduped
│ │ │ │ │ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ │ │ │ │ └── to-regex@3.0.2 deduped
│ │ │ │ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ │ │ ├── fragment-cache@0.2.1 deduped
│ │ │ │ │ │ ├── regex-not@1.0.2 deduped
│ │ │ │ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ │ │ │ └── to-regex@3.0.2 deduped
│ │ │ │ │ ├── fragment-cache@0.2.1 deduped
│ │ │ │ │ ├── kind-of@6.0.3
│ │ │ │ │ ├── nanomatch@1.2.13 deduped
│ │ │ │ │ ├── object.pick@1.3.0 deduped
│ │ │ │ │ ├── regex-not@1.0.2 deduped
│ │ │ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ │ │ └── to-regex@3.0.2 deduped
│ │ │ │ └── resolve-dir@1.0.1 deduped
│ │ │ ├─┬ fined@1.2.0
│ │ │ │ ├── expand-tilde@2.0.2 deduped
│ │ │ │ ├── is-plain-object@2.0.4 deduped
│ │ │ │ ├── object.defaults@1.1.0 deduped
│ │ │ │ ├── object.pick@1.3.0 deduped
│ │ │ │ └─┬ parse-filepath@1.0.2
│ │ │ │   ├─┬ is-absolute@1.0.0
│ │ │ │   │ ├─┬ is-relative@1.0.0
│ │ │ │   │ │ └─┬ is-unc-path@1.0.0
│ │ │ │   │ │   └── unc-path-regex@0.1.2 deduped
│ │ │ │   │ └── is-windows@1.0.2 deduped
│ │ │ │   ├── map-cache@0.2.2 deduped
│ │ │ │   └─┬ path-root@0.1.1
│ │ │ │     └── path-root-regex@0.1.2
│ │ │ ├── flagged-respawn@1.0.1
│ │ │ ├── is-plain-object@2.0.4 deduped
│ │ │ ├─┬ object.map@1.0.1
│ │ │ │ ├─┬ for-own@1.0.0
│ │ │ │ │ └── for-in@1.0.2 deduped
│ │ │ │ └── make-iterator@1.0.1 deduped
│ │ │ ├─┬ rechoir@0.6.2
│ │ │ │ └── resolve@1.15.0 deduped
│ │ │ └── resolve@1.15.0 deduped
│ │ ├─┬ matchdep@2.0.0
│ │ │ ├─┬ findup-sync@2.0.0
│ │ │ │ ├── detect-file@1.0.0 deduped
│ │ │ │ ├── is-glob@3.1.0 deduped
│ │ │ │ ├── micromatch@3.1.10 deduped
│ │ │ │ └── resolve-dir@1.0.1 deduped
│ │ │ ├─┬ micromatch@3.1.10
│ │ │ │ ├── arr-diff@4.0.0
│ │ │ │ ├── array-unique@0.3.2
│ │ │ │ ├─┬ braces@2.3.2
│ │ │ │ │ ├── arr-flatten@1.1.0 deduped
│ │ │ │ │ ├── array-unique@0.3.2 deduped
│ │ │ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ │ ├─┬ fill-range@4.0.0
│ │ │ │ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ │ │ ├─┬ is-number@3.0.0
│ │ │ │ │ │ │ └─┬ kind-of@3.2.2
│ │ │ │ │ │ │   └── is-buffer@1.1.6 deduped
│ │ │ │ │ │ ├── repeat-string@1.6.1 deduped
│ │ │ │ │ │ └── to-regex-range@2.1.1 deduped
│ │ │ │ │ ├── isobject@3.0.1 deduped
│ │ │ │ │ ├── repeat-element@1.1.3 deduped
│ │ │ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ │ │ ├── snapdragon-node@2.1.1 deduped
│ │ │ │ │ ├── split-string@3.1.0 deduped
│ │ │ │ │ └── to-regex@3.0.2 deduped
│ │ │ │ ├─┬ define-property@2.0.2
│ │ │ │ │ ├─┬ is-descriptor@1.0.2
│ │ │ │ │ │ ├─┬ is-accessor-descriptor@1.0.0
│ │ │ │ │ │ │ └── kind-of@6.0.3 deduped
│ │ │ │ │ │ ├─┬ is-data-descriptor@1.0.0
│ │ │ │ │ │ │ └── kind-of@6.0.3 deduped
│ │ │ │ │ │ └── kind-of@6.0.3 deduped
│ │ │ │ │ └── isobject@3.0.1 deduped
│ │ │ │ ├─┬ extend-shallow@3.0.2
│ │ │ │ │ ├── assign-symbols@1.0.0 deduped
│ │ │ │ │ └─┬ is-extendable@1.0.1
│ │ │ │ │   └── is-plain-object@2.0.4 deduped
│ │ │ │ ├─┬ extglob@2.0.4
│ │ │ │ │ ├── array-unique@0.3.2 deduped
│ │ │ │ │ ├─┬ define-property@1.0.0
│ │ │ │ │ │ └── is-descriptor@1.0.2 deduped
│ │ │ │ │ ├─┬ expand-brackets@2.1.4
│ │ │ │ │ │ ├── debug@2.6.9 deduped
│ │ │ │ │ │ ├─┬ define-property@0.2.5
│ │ │ │ │ │ │ └─┬ is-descriptor@0.1.6
│ │ │ │ │ │ │   ├─┬ is-accessor-descriptor@0.1.6
│ │ │ │ │ │ │   │ └─┬ kind-of@3.2.2
│ │ │ │ │ │ │   │   └── is-buffer@1.1.6 deduped
│ │ │ │ │ │ │   ├─┬ is-data-descriptor@0.1.4
│ │ │ │ │ │ │   │ └─┬ kind-of@3.2.2
│ │ │ │ │ │ │   │   └── is-buffer@1.1.6 deduped
│ │ │ │ │ │ │   └── kind-of@5.1.0
│ │ │ │ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ │ │ ├── posix-character-classes@0.1.1 deduped
│ │ │ │ │ │ ├── regex-not@1.0.2 deduped
│ │ │ │ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ │ │ │ └── to-regex@3.0.2 deduped
│ │ │ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ │ ├── fragment-cache@0.2.1 deduped
│ │ │ │ │ ├── regex-not@1.0.2 deduped
│ │ │ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ │ │ └── to-regex@3.0.2 deduped
│ │ │ │ ├── fragment-cache@0.2.1 deduped
│ │ │ │ ├── kind-of@6.0.3
│ │ │ │ ├── nanomatch@1.2.13 deduped
│ │ │ │ ├── object.pick@1.3.0 deduped
│ │ │ │ ├── regex-not@1.0.2 deduped
│ │ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ │ └── to-regex@3.0.2 deduped
│ │ │ ├── resolve@1.15.0 deduped
│ │ │ └── stack-trace@0.0.10
│ │ ├── mute-stdout@1.0.1
│ │ ├── pretty-hrtime@1.0.3
│ │ ├─┬ replace-homedir@1.0.0
│ │ │ ├── homedir-polyfill@1.0.3 deduped
│ │ │ ├─┬ is-absolute@1.0.0
│ │ │ │ ├─┬ is-relative@1.0.0
│ │ │ │ │ └─┬ is-unc-path@1.0.0
│ │ │ │ │   └── unc-path-regex@0.1.2
│ │ │ │ └── is-windows@1.0.2 deduped
│ │ │ └── remove-trailing-separator@1.1.0 deduped
│ │ ├─┬ semver-greatest-satisfied-range@1.1.0
│ │ │ └─┬ sver-compat@1.5.0
│ │ │   ├── es6-iterator@2.0.3 deduped
│ │ │   └── es6-symbol@3.1.3 deduped
│ │ ├─┬ v8flags@3.1.3
│ │ │ └── homedir-polyfill@1.0.3 deduped
│ │ └─┬ yargs@7.1.0
│ │   ├── camelcase@3.0.0
│ │   ├─┬ cliui@3.2.0
│ │   │ ├── string-width@1.0.2 deduped
│ │   │ ├── strip-ansi@3.0.1 deduped
│ │   │ └─┬ wrap-ansi@2.1.0
│ │   │   ├── string-width@1.0.2 deduped
│ │   │   └── strip-ansi@3.0.1 deduped
│ │   ├── decamelize@1.2.0 deduped
│ │   ├── get-caller-file@1.0.3
│ │   ├─┬ os-locale@1.4.0
│ │   │ └─┬ lcid@1.0.0
│ │   │   └── invert-kv@1.0.0
│ │   ├── read-pkg-up@1.0.1 deduped
│ │   ├── require-directory@2.1.1 deduped
│ │   ├── require-main-filename@1.0.1
│ │   ├── set-blocking@2.0.0 deduped
│ │   ├─┬ string-width@1.0.2
│ │   │ ├── code-point-at@1.1.0
│ │   │ ├─┬ is-fullwidth-code-point@1.0.0
│ │   │ │ └── number-is-nan@1.0.1
│ │   │ └── strip-ansi@3.0.1 deduped
│ │   ├── which-module@1.0.0
│ │   ├── y18n@3.2.1
│ │   └─┬ yargs-parser@5.0.0
│ │     └── camelcase@3.0.0 deduped
│ ├─┬ undertaker@1.2.1
│ │ ├── arr-flatten@1.1.0
│ │ ├─┬ arr-map@2.0.2
│ │ │ └─┬ make-iterator@1.0.1
│ │ │   └── kind-of@6.0.3
│ │ ├─┬ bach@1.2.0
│ │ │ ├─┬ arr-filter@1.1.2
│ │ │ │ └── make-iterator@1.0.1 deduped
│ │ │ ├── arr-flatten@1.1.0 deduped
│ │ │ ├── arr-map@2.0.2 deduped
│ │ │ ├── array-each@1.0.1 deduped
│ │ │ ├─┬ array-initial@1.1.0
│ │ │ │ ├── array-slice@1.1.0
│ │ │ │ └── is-number@4.0.0
│ │ │ ├─┬ array-last@1.3.0
│ │ │ │ └── is-number@4.0.0
│ │ │ ├── async-done@1.3.2 deduped
│ │ │ ├─┬ async-settle@1.0.0
│ │ │ │ └── async-done@1.3.2 deduped
│ │ │ └── now-and-later@2.0.1 deduped
│ │ ├─┬ collection-map@1.0.0
│ │ │ ├── arr-map@2.0.2 deduped
│ │ │ ├─┬ for-own@1.0.0
│ │ │ │ └── for-in@1.0.2 deduped
│ │ │ └── make-iterator@1.0.1 deduped
│ │ ├─┬ es6-weak-map@2.0.3
│ │ │ ├─┬ d@1.0.1
│ │ │ │ ├── es5-ext@0.10.53 deduped
│ │ │ │ └── type@1.2.0
│ │ │ ├─┬ es5-ext@0.10.53
│ │ │ │ ├── es6-iterator@2.0.3 deduped
│ │ │ │ ├── es6-symbol@3.1.3 deduped
│ │ │ │ └── next-tick@1.0.0
│ │ │ ├─┬ es6-iterator@2.0.3
│ │ │ │ ├── d@1.0.1 deduped
│ │ │ │ ├── es5-ext@0.10.53 deduped
│ │ │ │ └── es6-symbol@3.1.3 deduped
│ │ │ └─┬ es6-symbol@3.1.3
│ │ │   ├── d@1.0.1 deduped
│ │ │   └─┬ ext@1.4.0
│ │ │     └── type@2.0.0
│ │ ├─┬ last-run@1.1.1
│ │ │ ├── default-resolution@2.0.0
│ │ │ └── es6-weak-map@2.0.3 deduped
│ │ ├── object.defaults@1.1.0 deduped
│ │ ├─┬ object.reduce@1.0.1
│ │ │ ├─┬ for-own@1.0.0
│ │ │ │ └── for-in@1.0.2 deduped
│ │ │ └── make-iterator@1.0.1 deduped
│ │ └── undertaker-registry@1.0.1
│ └─┬ vinyl-fs@3.0.3
│   ├─┬ fs-mkdirp-stream@1.0.0
│   │ ├── graceful-fs@4.2.3 deduped
│   │ └── through2@2.0.5 deduped
│   ├─┬ glob-stream@6.1.0
│   │ ├── extend@3.0.2 deduped
│   │ ├─┬ glob@7.1.6
│   │ │ ├── fs.realpath@1.0.0 deduped
│   │ │ ├── inflight@1.0.6 deduped
│   │ │ ├── inherits@2.0.4 deduped
│   │ │ ├── minimatch@3.0.4 deduped
│   │ │ ├── once@1.4.0 deduped
│   │ │ └── path-is-absolute@1.0.1 deduped
│   │ ├── glob-parent@3.1.0 deduped
│   │ ├── is-negated-glob@1.0.0 deduped
│   │ ├─┬ ordered-read-streams@1.0.1
│   │ │ └── readable-stream@2.3.7 deduped
│   │ ├── pumpify@1.5.1 deduped
│   │ ├── readable-stream@2.3.7 deduped
│   │ ├── remove-trailing-separator@1.1.0 deduped
│   │ ├─┬ to-absolute-glob@2.0.2
│   │ │ ├─┬ is-absolute@1.0.0
│   │ │ │ ├─┬ is-relative@1.0.0
│   │ │ │ │ └─┬ is-unc-path@1.0.0
│   │ │ │ │   └── unc-path-regex@0.1.2 deduped
│   │ │ │ └── is-windows@1.0.2 deduped
│   │ │ └── is-negated-glob@1.0.0 deduped
│   │ └─┬ unique-stream@2.3.1
│   │   ├── json-stable-stringify-without-jsonify@1.0.1
│   │   └─┬ through2-filter@3.0.0
│   │     ├── through2@2.0.5 deduped
│   │     └── xtend@4.0.2 deduped
│   ├── graceful-fs@4.2.3 deduped
│   ├── is-valid-glob@1.0.0
│   ├─┬ lazystream@1.0.0
│   │ └── readable-stream@2.3.7 deduped
│   ├─┬ lead@1.0.0
│   │ └─┬ flush-write-stream@1.1.1
│   │   ├── inherits@2.0.4 deduped
│   │   └── readable-stream@2.3.7 deduped
│   ├─┬ object.assign@4.1.0
│   │ ├─┬ define-properties@1.1.3
│   │ │ └── object-keys@1.1.1 deduped
│   │ ├── function-bind@1.1.1
│   │ ├── has-symbols@1.0.1
│   │ └── object-keys@1.1.1
│   ├─┬ pumpify@1.5.1
│   │ ├─┬ duplexify@3.7.1
│   │ │ ├── end-of-stream@1.4.4 deduped
│   │ │ ├── inherits@2.0.4 deduped
│   │ │ ├── readable-stream@2.3.7 deduped
│   │ │ └── stream-shift@1.0.1
│   │ ├── inherits@2.0.4 deduped
│   │ └─┬ pump@2.0.1
│   │   ├── end-of-stream@1.4.4 deduped
│   │   └── once@1.4.0 deduped
│   ├─┬ readable-stream@2.3.7
│   │ ├── core-util-is@1.0.2
│   │ ├── inherits@2.0.4 deduped
│   │ ├── isarray@1.0.0 deduped
│   │ ├── process-nextick-args@2.0.1 deduped
│   │ ├── safe-buffer@5.1.2 deduped
│   │ ├── string_decoder@1.1.1 deduped
│   │ └── util-deprecate@1.0.2 deduped
│   ├─┬ remove-bom-buffer@3.0.0
│   │ ├── is-buffer@1.1.6 deduped
│   │ └── is-utf8@0.2.1
│   ├─┬ remove-bom-stream@1.2.0
│   │ ├── remove-bom-buffer@3.0.0 deduped
│   │ ├── safe-buffer@5.1.2 deduped
│   │ └── through2@2.0.5 deduped
│   ├─┬ resolve-options@1.1.0
│   │ └── value-or-function@3.0.0 deduped
│   ├── through2@2.0.5 deduped
│   ├─┬ to-through@2.0.0
│   │ └── through2@2.0.5 deduped
│   ├── value-or-function@3.0.0
│   ├─┬ vinyl@2.2.0
│   │ ├── clone@2.1.2
│   │ ├── clone-buffer@1.0.0 deduped
│   │ ├── clone-stats@1.0.0
│   │ ├── cloneable-readable@1.1.3 deduped
│   │ ├── remove-trailing-separator@1.1.0 deduped
│   │ └── replace-ext@1.0.0
│   └─┬ vinyl-sourcemap@1.1.0
│     ├─┬ append-buffer@1.0.2
│     │ └── buffer-equal@1.0.0
│     ├── convert-source-map@1.7.0 deduped
│     ├── graceful-fs@4.2.3 deduped
│     ├── normalize-path@2.1.1 deduped
│     ├─┬ now-and-later@2.0.1
│     │ └── once@1.4.0 deduped
│     ├── remove-bom-buffer@3.0.0 deduped
│     └─┬ vinyl@2.2.0
│       ├── clone@2.1.2
│       ├── clone-buffer@1.0.0 deduped
│       ├── clone-stats@1.0.0
│       ├── cloneable-readable@1.1.3 deduped
│       ├── remove-trailing-separator@1.1.0 deduped
│       └── replace-ext@1.0.0
├─┬ gulp-clean-css@4.3.0
│ ├─┬ clean-css@4.2.3
│ │ └── source-map@0.6.1 deduped
│ ├─┬ plugin-error@1.0.1
│ │ ├─┬ ansi-colors@1.1.0
│ │ │ └── ansi-wrap@0.1.0 deduped
│ │ ├── arr-diff@4.0.0
│ │ ├── arr-union@3.1.0
│ │ └─┬ extend-shallow@3.0.2
│ │   ├── assign-symbols@1.0.0 deduped
│ │   └─┬ is-extendable@1.0.1
│ │     └── is-plain-object@2.0.4 deduped
│ ├─┬ through2@3.0.1
│ │ └── readable-stream@2.3.7 deduped
│ └─┬ vinyl-sourcemaps-apply@0.2.1
│   └── source-map@0.5.7
├─┬ gulp-concat@2.6.1
│ ├─┬ concat-with-sourcemaps@1.1.0
│ │ └── source-map@0.6.1 deduped
│ ├─┬ through2@2.0.5
│ │ ├── readable-stream@2.3.7 deduped
│ │ └── xtend@4.0.2
│ └─┬ vinyl@2.2.0
│   ├── clone@2.1.2
│   ├── clone-buffer@1.0.0
│   ├── clone-stats@1.0.0
│   ├─┬ cloneable-readable@1.1.3
│   │ ├── inherits@2.0.4 deduped
│   │ ├── process-nextick-args@2.0.1 deduped
│   │ └── readable-stream@2.3.7 deduped
│   ├── remove-trailing-separator@1.1.0
│   └── replace-ext@1.0.0
├─┬ gulp-htmlmin@5.0.1
│ ├─┬ html-minifier@3.5.21
│ │ ├─┬ camel-case@3.0.0
│ │ │ ├─┬ no-case@2.3.2
│ │ │ │ └── lower-case@1.1.4
│ │ │ └── upper-case@1.1.3
│ │ ├─┬ clean-css@4.2.1
│ │ │ └── source-map@0.6.1 deduped
│ │ ├── commander@2.17.1
│ │ ├── he@1.2.0
│ │ ├─┬ param-case@2.1.1
│ │ │ └── no-case@2.3.2 deduped
│ │ ├── relateurl@0.2.7
│ │ └─┬ uglify-js@3.4.10
│ │   ├── commander@2.19.0
│ │   └── source-map@0.6.1 deduped
│ ├─┬ plugin-error@1.0.1
│ │ ├─┬ ansi-colors@1.1.0
│ │ │ └── ansi-wrap@0.1.0 deduped
│ │ ├── arr-diff@4.0.0
│ │ ├── arr-union@3.1.0
│ │ └─┬ extend-shallow@3.0.2
│ │   ├── assign-symbols@1.0.0 deduped
│ │   └─┬ is-extendable@1.0.1
│ │     └── is-plain-object@2.0.4 deduped
│ └── through2@2.0.5 deduped
├─┬ gulp-minify@3.1.0
│ ├─┬ ansi-colors@1.1.0
│ │ └── ansi-wrap@0.1.0
│ ├── minimatch@3.0.4 deduped
│ ├─┬ plugin-error@0.1.2
│ │ ├─┬ ansi-cyan@0.1.1
│ │ │ └── ansi-wrap@0.1.0 deduped
│ │ ├─┬ ansi-red@0.1.1
│ │ │ └── ansi-wrap@0.1.0 deduped
│ │ ├─┬ arr-diff@1.1.0
│ │ │ ├── arr-flatten@1.1.0 deduped
│ │ │ └── array-slice@0.2.3
│ │ ├── arr-union@2.1.0
│ │ └─┬ extend-shallow@1.1.4
│ │   └── kind-of@1.1.0
│ ├─┬ terser@3.17.0
│ │ ├── commander@2.20.3
│ │ ├── source-map@0.6.1 deduped
│ │ └─┬ source-map-support@0.5.16
│ │   ├── buffer-from@1.1.1 deduped
│ │   └── source-map@0.6.1 deduped
│ ├── through2@2.0.5 deduped
│ └─┬ vinyl@2.2.0
│   ├── clone@2.1.2
│   ├── clone-buffer@1.0.0 deduped
│   ├── clone-stats@1.0.0
│   ├── cloneable-readable@1.1.3 deduped
│   ├── remove-trailing-separator@1.1.0 deduped
│   └── replace-ext@1.0.0
├─┬ gulp-mode@1.0.2
│ └─┬ gulp-util@3.0.8
│   ├── array-differ@1.0.0
│   ├── array-uniq@1.0.3
│   ├── beeper@1.1.1
│   ├── chalk@1.1.3 deduped
│   ├── dateformat@2.2.0
│   ├── fancy-log@1.3.3 deduped
│   ├── gulplog@1.0.0 deduped
│   ├─┬ has-gulplog@0.1.0
│   │ └── sparkles@1.0.1
│   ├── lodash._reescape@3.0.0
│   ├── lodash._reevaluate@3.0.0
│   ├── lodash._reinterpolate@3.0.0
│   ├─┬ lodash.template@3.6.2
│   │ ├── lodash._basecopy@3.0.1
│   │ ├── lodash._basetostring@3.0.1
│   │ ├── lodash._basevalues@3.0.0
│   │ ├── lodash._isiterateecall@3.0.9
│   │ ├── lodash._reinterpolate@3.0.0 deduped
│   │ ├─┬ lodash.escape@3.2.0
│   │ │ └── lodash._root@3.0.1
│   │ ├─┬ lodash.keys@3.1.2
│   │ │ ├── lodash._getnative@3.9.1
│   │ │ ├── lodash.isarguments@3.1.0
│   │ │ └── lodash.isarray@3.0.4
│   │ ├── lodash.restparam@3.6.1
│   │ └─┬ lodash.templatesettings@3.1.1
│   │   ├── lodash._reinterpolate@3.0.0 deduped
│   │   └── lodash.escape@3.2.0 deduped
│   ├── minimist@1.2.0 deduped
│   ├─┬ multipipe@0.1.2
│   │ └─┬ duplexer2@0.0.2
│   │   └─┬ readable-stream@1.1.14
│   │     ├── core-util-is@1.0.2 deduped
│   │     ├── inherits@2.0.4 deduped
│   │     ├── isarray@0.0.1
│   │     └── string_decoder@0.10.31
│   ├── object-assign@3.0.0
│   ├── replace-ext@0.0.1
│   ├── through2@2.0.5 deduped
│   └─┬ vinyl@0.5.3
│     ├── clone@1.0.4
│     ├── clone-stats@0.0.1
│     └── replace-ext@0.0.1 deduped
├── gulp-rename@2.0.0
├─┬ gulp-rev@9.0.0
│ ├── modify-filename@1.1.0
│ ├─┬ plugin-error@1.0.1
│ │ ├─┬ ansi-colors@1.1.0
│ │ │ └── ansi-wrap@0.1.0 deduped
│ │ ├── arr-diff@4.0.0
│ │ ├── arr-union@3.1.0
│ │ └─┬ extend-shallow@3.0.2
│ │   ├── assign-symbols@1.0.0 deduped
│ │   └─┬ is-extendable@1.0.1
│ │     └── is-plain-object@2.0.4 deduped
│ ├── rev-hash@2.0.0
│ ├─┬ rev-path@2.0.0
│ │ └── modify-filename@1.1.0 deduped
│ ├─┬ sort-keys@2.0.0
│ │ └── is-plain-obj@1.1.0
│ ├── through2@2.0.5 deduped
│ ├─┬ vinyl@2.2.0
│ │ ├── clone@2.1.2
│ │ ├── clone-buffer@1.0.0 deduped
│ │ ├── clone-stats@1.0.0
│ │ ├── cloneable-readable@1.1.3 deduped
│ │ ├── remove-trailing-separator@1.1.0 deduped
│ │ └── replace-ext@1.0.0
│ └─┬ vinyl-file@3.0.0
│   ├── graceful-fs@4.2.3 deduped
│   ├── pify@2.3.0
│   ├─┬ strip-bom-buf@1.0.0
│   │ └── is-utf8@0.2.1 deduped
│   ├─┬ strip-bom-stream@2.0.0
│   │ ├─┬ first-chunk-stream@2.0.0
│   │ │ └── readable-stream@2.3.7 deduped
│   │ └─┬ strip-bom@2.0.0
│   │   └── is-utf8@0.2.1 deduped
│   └─┬ vinyl@2.2.0
│     ├── clone@2.1.2
│     ├── clone-buffer@1.0.0 deduped
│     ├── clone-stats@1.0.0
│     ├── cloneable-readable@1.1.3 deduped
│     ├── remove-trailing-separator@1.1.0 deduped
│     └── replace-ext@1.0.0
├─┬ gulp-rev-rewrite@2.0.0
│ ├── lodash.escaperegexp@4.1.2
│ ├─┬ plugin-error@1.0.1
│ │ ├─┬ ansi-colors@1.1.0
│ │ │ └── ansi-wrap@0.1.0 deduped
│ │ ├── arr-diff@4.0.0
│ │ ├── arr-union@3.1.0
│ │ └─┬ extend-shallow@3.0.2
│ │   ├── assign-symbols@1.0.0 deduped
│ │   └─┬ is-extendable@1.0.1
│ │     └── is-plain-object@2.0.4 deduped
│ └─┬ through2@3.0.1
│   └── readable-stream@2.3.7 deduped
├─┬ gulp-sass@4.1.0
│ ├─┬ chalk@2.4.2
│ │ ├─┬ ansi-styles@3.2.1
│ │ │ └── color-convert@1.9.3 deduped
│ │ ├── escape-string-regexp@1.0.5 deduped
│ │ └─┬ supports-color@5.5.0
│ │   └── has-flag@3.0.0 deduped
│ ├── lodash@4.17.20
│ ├── node-sass@4.14.1 deduped
│ ├─┬ plugin-error@1.0.1
│ │ ├─┬ ansi-colors@1.1.0
│ │ │ └── ansi-wrap@0.1.0 deduped
│ │ ├── arr-diff@4.0.0
│ │ ├── arr-union@3.1.0
│ │ └─┬ extend-shallow@3.0.2
│ │   ├── assign-symbols@1.0.0 deduped
│ │   └─┬ is-extendable@1.0.1
│ │     └── is-plain-object@2.0.4 deduped
│ ├── replace-ext@1.0.1
│ ├─┬ strip-ansi@4.0.0
│ │ └── ansi-regex@3.0.0
│ ├── through2@2.0.5 deduped
│ └── vinyl-sourcemaps-apply@0.2.1 deduped
├─┬ gulp-sourcemaps@2.6.5
│ ├─┬ @gulp-sourcemaps/identity-map@1.0.2
│ │ ├── acorn@5.7.4
│ │ ├── css@2.2.4 deduped
│ │ ├─┬ normalize-path@2.1.1
│ │ │ └── remove-trailing-separator@1.1.0 deduped
│ │ ├── source-map@0.6.1 deduped
│ │ └── through2@2.0.5 deduped
│ ├─┬ @gulp-sourcemaps/map-sources@1.0.0
│ │ ├── normalize-path@2.1.1 deduped
│ │ └── through2@2.0.5 deduped
│ ├── acorn@5.7.4
│ ├─┬ convert-source-map@1.7.0
│ │ └── safe-buffer@5.1.2
│ ├─┬ css@2.2.4
│ │ ├── inherits@2.0.4
│ │ ├── source-map@0.6.1 deduped
│ │ ├─┬ source-map-resolve@0.5.3
│ │ │ ├── atob@2.1.2
│ │ │ ├── decode-uri-component@0.2.0
│ │ │ ├── resolve-url@0.2.1
│ │ │ ├── source-map-url@0.4.0
│ │ │ └── urix@0.1.0 deduped
│ │ └── urix@0.1.0
│ ├─┬ debug-fabulous@1.1.0
│ │ ├─┬ debug@3.2.6
│ │ │ └── ms@2.1.2
│ │ ├─┬ memoizee@0.4.14
│ │ │ ├── d@1.0.1 deduped
│ │ │ ├── es5-ext@0.10.53 deduped
│ │ │ ├── es6-weak-map@2.0.3 deduped
│ │ │ ├─┬ event-emitter@0.3.5
│ │ │ │ ├── d@1.0.1 deduped
│ │ │ │ └── es5-ext@0.10.53 deduped
│ │ │ ├── is-promise@2.2.2
│ │ │ ├─┬ lru-queue@0.1.0
│ │ │ │ └── es5-ext@0.10.53 deduped
│ │ │ ├── next-tick@1.1.0
│ │ │ └─┬ timers-ext@0.1.7
│ │ │   ├── es5-ext@0.10.53 deduped
│ │ │   └── next-tick@1.1.0
│ │ └── object-assign@4.1.1 deduped
│ ├── detect-newline@2.1.0
│ ├── graceful-fs@4.2.3 deduped
│ ├── source-map@0.6.1
│ ├── strip-bom-string@1.0.0
│ └── through2@2.0.5 deduped
├─┬ hostile@1.3.2
│ ├─┬ chalk@2.4.2
│ │ ├─┬ ansi-styles@3.2.1
│ │ │ └── color-convert@1.9.3 deduped
│ │ ├── escape-string-regexp@1.0.5 deduped
│ │ └─┬ supports-color@5.5.0
│ │   └── has-flag@3.0.0 deduped
│ ├── minimist@1.2.0 deduped
│ ├─┬ once@1.4.0
│ │ └── wrappy@1.0.2
│ ├─┬ split@1.0.1
│ │ └── through@2.3.8 deduped
│ └── through@2.3.8
├─┬ jest@26.6.0
│ ├─┬ @jest/core@26.6.0
│ │ ├─┬ @jest/console@26.6.0
│ │ │ ├─┬ @jest/types@26.6.0
│ │ │ │ ├── @types/istanbul-lib-coverage@2.0.3 deduped
│ │ │ │ ├── @types/istanbul-reports@3.0.0 deduped
│ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ ├── @types/yargs@15.0.7 deduped
│ │ │ │ └── chalk@4.1.0 deduped
│ │ │ ├── @types/node@13.5.0 deduped
│ │ │ ├─┬ chalk@4.1.0
│ │ │ │ ├─┬ ansi-styles@4.3.0
│ │ │ │ │ └─┬ color-convert@2.0.1
│ │ │ │ │   └── color-name@1.1.4
│ │ │ │ └─┬ supports-color@7.2.0
│ │ │ │   └── has-flag@4.0.0
│ │ │ ├── jest-message-util@26.6.0 deduped
│ │ │ ├─┬ jest-util@26.6.0
│ │ │ │ ├── @jest/types@26.6.0 deduped
│ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ ├── chalk@4.1.0 deduped
│ │ │ │ ├── graceful-fs@4.2.4
│ │ │ │ ├── is-ci@2.0.0 deduped
│ │ │ │ └─┬ micromatch@4.0.2
│ │ │ │   ├─┬ braces@3.0.2
│ │ │ │   │ └─┬ fill-range@7.0.1
│ │ │ │   │   └─┬ to-regex-range@5.0.1
│ │ │ │   │     └── is-number@7.0.0
│ │ │ │   └── picomatch@2.2.1 deduped
│ │ │ └── slash@3.0.0 deduped
│ │ ├─┬ @jest/reporters@26.6.0
│ │ │ ├── @bcoe/v8-coverage@0.2.3
│ │ │ ├── @jest/console@26.6.0 deduped
│ │ │ ├── @jest/test-result@26.6.0 deduped
│ │ │ ├── @jest/transform@26.6.0 deduped
│ │ │ ├─┬ @jest/types@26.6.0
│ │ │ │ ├── @types/istanbul-lib-coverage@2.0.3 deduped
│ │ │ │ ├── @types/istanbul-reports@3.0.0 deduped
│ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ ├── @types/yargs@15.0.7 deduped
│ │ │ │ └── chalk@4.1.0 deduped
│ │ │ ├─┬ chalk@4.1.0
│ │ │ │ ├─┬ ansi-styles@4.3.0
│ │ │ │ │ └─┬ color-convert@2.0.1
│ │ │ │ │   └── color-name@1.1.4
│ │ │ │ └─┬ supports-color@7.2.0
│ │ │ │   └── has-flag@4.0.0
│ │ │ ├── collect-v8-coverage@1.0.1
│ │ │ ├── exit@0.1.2 deduped
│ │ │ ├─┬ glob@7.1.6
│ │ │ │ ├── fs.realpath@1.0.0 deduped
│ │ │ │ ├── inflight@1.0.6 deduped
│ │ │ │ ├── inherits@2.0.4 deduped
│ │ │ │ ├── minimatch@3.0.4 deduped
│ │ │ │ ├── once@1.4.0 deduped
│ │ │ │ └── path-is-absolute@1.0.1 deduped
│ │ │ ├── graceful-fs@4.2.4
│ │ │ ├── istanbul-lib-coverage@3.0.0
│ │ │ ├─┬ istanbul-lib-instrument@4.0.3
│ │ │ │ ├── @babel/core@7.12.3 deduped
│ │ │ │ ├── @istanbuljs/schema@0.1.2
│ │ │ │ ├── istanbul-lib-coverage@3.0.0 deduped
│ │ │ │ └── semver@6.3.0
│ │ │ ├─┬ istanbul-lib-report@3.0.0
│ │ │ │ ├── istanbul-lib-coverage@3.0.0 deduped
│ │ │ │ ├─┬ make-dir@3.1.0
│ │ │ │ │ └── semver@6.3.0
│ │ │ │ └─┬ supports-color@7.2.0
│ │ │ │   └── has-flag@4.0.0
│ │ │ ├─┬ istanbul-lib-source-maps@4.0.0
│ │ │ │ ├─┬ debug@4.2.0
│ │ │ │ │ └── ms@2.1.2
│ │ │ │ ├── istanbul-lib-coverage@3.0.0 deduped
│ │ │ │ └── source-map@0.6.1 deduped
│ │ │ ├─┬ istanbul-reports@3.0.2
│ │ │ │ ├── html-escaper@2.0.2
│ │ │ │ └── istanbul-lib-report@3.0.0 deduped
│ │ │ ├── jest-haste-map@26.6.0 deduped
│ │ │ ├── jest-resolve@26.6.0 deduped
│ │ │ ├─┬ jest-util@26.6.0
│ │ │ │ ├── @jest/types@26.6.0 deduped
│ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ ├── chalk@4.1.0 deduped
│ │ │ │ ├── graceful-fs@4.2.4 deduped
│ │ │ │ ├── is-ci@2.0.0 deduped
│ │ │ │ └─┬ micromatch@4.0.2
│ │ │ │   ├─┬ braces@3.0.2
│ │ │ │   │ └─┬ fill-range@7.0.1
│ │ │ │   │   └─┬ to-regex-range@5.0.1
│ │ │ │   │     └── is-number@7.0.0
│ │ │ │   └── picomatch@2.2.1 deduped
│ │ │ ├─┬ jest-worker@26.5.0
│ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ ├── merge-stream@2.0.0
│ │ │ │ └─┬ supports-color@7.2.0
│ │ │ │   └── has-flag@4.0.0
│ │ │ ├─┬ node-notifier@8.0.0
│ │ │ │ ├── growly@1.3.0
│ │ │ │ ├─┬ is-wsl@2.2.0
│ │ │ │ │ └── is-docker@2.1.1
│ │ │ │ ├── semver@7.3.2
│ │ │ │ ├── shellwords@0.1.1
│ │ │ │ ├── uuid@8.3.1
│ │ │ │ └─┬ which@2.0.2
│ │ │ │   └── isexe@2.0.0 deduped
│ │ │ ├── slash@3.0.0 deduped
│ │ │ ├── source-map@0.6.1 deduped
│ │ │ ├─┬ string-length@4.0.1
│ │ │ │ ├── char-regex@1.0.2
│ │ │ │ └─┬ strip-ansi@6.0.0
│ │ │ │   └── ansi-regex@5.0.0
│ │ │ ├─┬ terminal-link@2.1.1
│ │ │ │ ├─┬ ansi-escapes@4.3.1
│ │ │ │ │ └── type-fest@0.11.0
│ │ │ │ └─┬ supports-hyperlinks@2.1.0
│ │ │ │   ├── has-flag@4.0.0
│ │ │ │   └─┬ supports-color@7.2.0
│ │ │ │     └── has-flag@4.0.0 deduped
│ │ │ └─┬ v8-to-istanbul@6.0.1
│ │ │   ├── @types/istanbul-lib-coverage@2.0.3 deduped
│ │ │   ├── convert-source-map@1.7.0 deduped
│ │ │   └── source-map@0.7.3
│ │ ├─┬ @jest/test-result@26.6.0
│ │ │ ├── @jest/console@26.6.0 deduped
│ │ │ ├─┬ @jest/types@26.6.0
│ │ │ │ ├── @types/istanbul-lib-coverage@2.0.3 deduped
│ │ │ │ ├── @types/istanbul-reports@3.0.0 deduped
│ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ ├── @types/yargs@15.0.7 deduped
│ │ │ │ └─┬ chalk@4.1.0
│ │ │ │   ├─┬ ansi-styles@4.3.0
│ │ │ │   │ └─┬ color-convert@2.0.1
│ │ │ │   │   └── color-name@1.1.4
│ │ │ │   └─┬ supports-color@7.2.0
│ │ │ │     └── has-flag@4.0.0
│ │ │ ├── @types/istanbul-lib-coverage@2.0.3 deduped
│ │ │ └── collect-v8-coverage@1.0.1 deduped
│ │ ├─┬ @jest/transform@26.6.0
│ │ │ ├─┬ @babel/core@7.12.3
│ │ │ │ ├── @babel/code-frame@7.10.4 deduped
│ │ │ │ ├─┬ @babel/generator@7.12.1
│ │ │ │ │ ├── @babel/types@7.12.1 deduped
│ │ │ │ │ ├── jsesc@2.5.2
│ │ │ │ │ └── source-map@0.5.7
│ │ │ │ ├─┬ @babel/helper-module-transforms@7.12.1
│ │ │ │ │ ├─┬ @babel/helper-module-imports@7.12.1
│ │ │ │ │ │ └── @babel/types@7.12.1 deduped
│ │ │ │ │ ├─┬ @babel/helper-replace-supers@7.12.1
│ │ │ │ │ │ ├─┬ @babel/helper-member-expression-to-functions@7.12.1
│ │ │ │ │ │ │ └── @babel/types@7.12.1 deduped
│ │ │ │ │ │ ├─┬ @babel/helper-optimise-call-expression@7.10.4
│ │ │ │ │ │ │ └── @babel/types@7.12.1 deduped
│ │ │ │ │ │ ├── @babel/traverse@7.12.1 deduped
│ │ │ │ │ │ └── @babel/types@7.12.1 deduped
│ │ │ │ │ ├─┬ @babel/helper-simple-access@7.12.1
│ │ │ │ │ │ └── @babel/types@7.12.1 deduped
│ │ │ │ │ ├─┬ @babel/helper-split-export-declaration@7.11.0
│ │ │ │ │ │ └── @babel/types@7.12.1 deduped
│ │ │ │ │ ├── @babel/helper-validator-identifier@7.10.4 deduped
│ │ │ │ │ ├── @babel/template@7.10.4 deduped
│ │ │ │ │ ├── @babel/traverse@7.12.1 deduped
│ │ │ │ │ ├── @babel/types@7.12.1 deduped
│ │ │ │ │ └── lodash@4.17.20 deduped
│ │ │ │ ├─┬ @babel/helpers@7.12.1
│ │ │ │ │ ├── @babel/template@7.10.4 deduped
│ │ │ │ │ ├── @babel/traverse@7.12.1 deduped
│ │ │ │ │ └── @babel/types@7.12.1 deduped
│ │ │ │ ├── @babel/parser@7.12.3
│ │ │ │ ├─┬ @babel/template@7.10.4
│ │ │ │ │ ├── @babel/code-frame@7.10.4 deduped
│ │ │ │ │ ├── @babel/parser@7.12.3 deduped
│ │ │ │ │ └── @babel/types@7.12.1 deduped
│ │ │ │ ├─┬ @babel/traverse@7.12.1
│ │ │ │ │ ├── @babel/code-frame@7.10.4 deduped
│ │ │ │ │ ├── @babel/generator@7.12.1 deduped
│ │ │ │ │ ├─┬ @babel/helper-function-name@7.10.4
│ │ │ │ │ │ ├─┬ @babel/helper-get-function-arity@7.10.4
│ │ │ │ │ │ │ └── @babel/types@7.12.1 deduped
│ │ │ │ │ │ ├── @babel/template@7.10.4 deduped
│ │ │ │ │ │ └── @babel/types@7.12.1 deduped
│ │ │ │ │ ├── @babel/helper-split-export-declaration@7.11.0 deduped
│ │ │ │ │ ├── @babel/parser@7.12.3 deduped
│ │ │ │ │ ├── @babel/types@7.12.1 deduped
│ │ │ │ │ ├─┬ debug@4.2.0
│ │ │ │ │ │ └── ms@2.1.2
│ │ │ │ │ ├── globals@11.12.0
│ │ │ │ │ └── lodash@4.17.20 deduped
│ │ │ │ ├── @babel/types@7.12.1 deduped
│ │ │ │ ├── convert-source-map@1.7.0 deduped
│ │ │ │ ├─┬ debug@4.2.0
│ │ │ │ │ └── ms@2.1.2
│ │ │ │ ├── gensync@1.0.0-beta.1
│ │ │ │ ├─┬ json5@2.1.3
│ │ │ │ │ └── minimist@1.2.5
│ │ │ │ ├── lodash@4.17.20 deduped
│ │ │ │ ├── resolve@1.15.0 deduped
│ │ │ │ ├── semver@5.7.1 deduped
│ │ │ │ └── source-map@0.5.7
│ │ │ ├─┬ @jest/types@26.6.0
│ │ │ │ ├── @types/istanbul-lib-coverage@2.0.3 deduped
│ │ │ │ ├── @types/istanbul-reports@3.0.0 deduped
│ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ ├── @types/yargs@15.0.7 deduped
│ │ │ │ └── chalk@4.1.0 deduped
│ │ │ ├─┬ babel-plugin-istanbul@6.0.0
│ │ │ │ ├── @babel/helper-plugin-utils@7.10.4
│ │ │ │ ├─┬ @istanbuljs/load-nyc-config@1.1.0
│ │ │ │ │ ├── camelcase@5.3.1
│ │ │ │ │ ├─┬ find-up@4.1.0
│ │ │ │ │ │ ├─┬ locate-path@5.0.0
│ │ │ │ │ │ │ └─┬ p-locate@4.1.0
│ │ │ │ │ │ │   └── p-limit@2.3.0 deduped
│ │ │ │ │ │ └── path-exists@4.0.0
│ │ │ │ │ ├── get-package-type@0.1.0
│ │ │ │ │ ├── js-yaml@3.13.1 deduped
│ │ │ │ │ └── resolve-from@5.0.0 deduped
│ │ │ │ ├── @istanbuljs/schema@0.1.2 deduped
│ │ │ │ ├── istanbul-lib-instrument@4.0.3 deduped
│ │ │ │ └─┬ test-exclude@6.0.0
│ │ │ │   ├── @istanbuljs/schema@0.1.2 deduped
│ │ │ │   ├─┬ glob@7.1.6
│ │ │ │   │ ├── fs.realpath@1.0.0 deduped
│ │ │ │   │ ├── inflight@1.0.6 deduped
│ │ │ │   │ ├── inherits@2.0.4 deduped
│ │ │ │   │ ├── minimatch@3.0.4 deduped
│ │ │ │   │ ├── once@1.4.0 deduped
│ │ │ │   │ └── path-is-absolute@1.0.1 deduped
│ │ │ │   └── minimatch@3.0.4 deduped
│ │ │ ├─┬ chalk@4.1.0
│ │ │ │ ├─┬ ansi-styles@4.3.0
│ │ │ │ │ └─┬ color-convert@2.0.1
│ │ │ │ │   └── color-name@1.1.4
│ │ │ │ └─┬ supports-color@7.2.0
│ │ │ │   └── has-flag@4.0.0
│ │ │ ├── convert-source-map@1.7.0 deduped
│ │ │ ├── fast-json-stable-stringify@2.1.0 deduped
│ │ │ ├── graceful-fs@4.2.4
│ │ │ ├── jest-haste-map@26.6.0 deduped
│ │ │ ├── jest-regex-util@26.0.0 deduped
│ │ │ ├─┬ jest-util@26.6.0
│ │ │ │ ├── @jest/types@26.6.0 deduped
│ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ ├── chalk@4.1.0 deduped
│ │ │ │ ├── graceful-fs@4.2.4 deduped
│ │ │ │ ├── is-ci@2.0.0 deduped
│ │ │ │ └── micromatch@4.0.2 deduped
│ │ │ ├─┬ micromatch@4.0.2
│ │ │ │ ├─┬ braces@3.0.2
│ │ │ │ │ └─┬ fill-range@7.0.1
│ │ │ │ │   └─┬ to-regex-range@5.0.1
│ │ │ │ │     └── is-number@7.0.0
│ │ │ │ └── picomatch@2.2.1 deduped
│ │ │ ├─┬ pirates@4.0.1
│ │ │ │ └── node-modules-regexp@1.0.0
│ │ │ ├── slash@3.0.0 deduped
│ │ │ ├── source-map@0.6.1 deduped
│ │ │ └─┬ write-file-atomic@3.0.3
│ │ │   ├── imurmurhash@0.1.4
│ │ │   ├── is-typedarray@1.0.0 deduped
│ │ │   ├── signal-exit@3.0.3 deduped
│ │ │   └─┬ typedarray-to-buffer@3.1.5
│ │ │     └── is-typedarray@1.0.0 deduped
│ │ ├─┬ @jest/types@26.6.0
│ │ │ ├── @types/istanbul-lib-coverage@2.0.3 deduped
│ │ │ ├── @types/istanbul-reports@3.0.0 deduped
│ │ │ ├── @types/node@13.5.0 deduped
│ │ │ ├── @types/yargs@15.0.7 deduped
│ │ │ └── chalk@4.1.0 deduped
│ │ ├── @types/node@13.5.0
│ │ ├─┬ ansi-escapes@4.3.1
│ │ │ └── type-fest@0.11.0
│ │ ├─┬ chalk@4.1.0
│ │ │ ├─┬ ansi-styles@4.3.0
│ │ │ │ └─┬ color-convert@2.0.1
│ │ │ │   └── color-name@1.1.4
│ │ │ └─┬ supports-color@7.2.0
│ │ │   └── has-flag@4.0.0
│ │ ├── exit@0.1.2
│ │ ├── graceful-fs@4.2.4
│ │ ├─┬ jest-changed-files@26.6.0
│ │ │ ├─┬ @jest/types@26.6.0
│ │ │ │ ├── @types/istanbul-lib-coverage@2.0.3 deduped
│ │ │ │ ├── @types/istanbul-reports@3.0.0 deduped
│ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ ├── @types/yargs@15.0.7 deduped
│ │ │ │ └─┬ chalk@4.1.0
│ │ │ │   ├─┬ ansi-styles@4.3.0
│ │ │ │   │ └─┬ color-convert@2.0.1
│ │ │ │   │   └── color-name@1.1.4
│ │ │ │   └─┬ supports-color@7.2.0
│ │ │ │     └── has-flag@4.0.0
│ │ │ ├─┬ execa@4.0.3
│ │ │ │ ├─┬ cross-spawn@7.0.3
│ │ │ │ │ ├── path-key@3.1.1
│ │ │ │ │ ├─┬ shebang-command@2.0.0
│ │ │ │ │ │ └── shebang-regex@3.0.0
│ │ │ │ │ └─┬ which@2.0.2
│ │ │ │ │   └── isexe@2.0.0 deduped
│ │ │ │ ├─┬ get-stream@5.2.0
│ │ │ │ │ └─┬ pump@3.0.0
│ │ │ │ │   ├── end-of-stream@1.4.4 deduped
│ │ │ │ │   └── once@1.4.0 deduped
│ │ │ │ ├── human-signals@1.1.1
│ │ │ │ ├── is-stream@2.0.0
│ │ │ │ ├── merge-stream@2.0.0
│ │ │ │ ├─┬ npm-run-path@4.0.1
│ │ │ │ │ └── path-key@3.1.1 deduped
│ │ │ │ ├─┬ onetime@5.1.2
│ │ │ │ │ └── mimic-fn@2.1.0
│ │ │ │ ├── signal-exit@3.0.3 deduped
│ │ │ │ └── strip-final-newline@2.0.0
│ │ │ └── throat@5.0.0
│ │ ├─┬ jest-config@26.6.0
│ │ │ ├── @babel/core@7.12.3 deduped
│ │ │ ├─┬ @jest/test-sequencer@26.6.0
│ │ │ │ ├── @jest/test-result@26.6.0 deduped
│ │ │ │ ├── graceful-fs@4.2.4
│ │ │ │ ├── jest-haste-map@26.6.0 deduped
│ │ │ │ ├── jest-runner@26.6.0 deduped
│ │ │ │ └── jest-runtime@26.6.0 deduped
│ │ │ ├─┬ @jest/types@26.6.0
│ │ │ │ ├── @types/istanbul-lib-coverage@2.0.3 deduped
│ │ │ │ ├── @types/istanbul-reports@3.0.0 deduped
│ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ ├── @types/yargs@15.0.7 deduped
│ │ │ │ └── chalk@4.1.0 deduped
│ │ │ ├─┬ babel-jest@26.6.0
│ │ │ │ ├── @jest/transform@26.6.0 deduped
│ │ │ │ ├─┬ @jest/types@26.6.0
│ │ │ │ │ ├── @types/istanbul-lib-coverage@2.0.3 deduped
│ │ │ │ │ ├── @types/istanbul-reports@3.0.0 deduped
│ │ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ │ ├── @types/yargs@15.0.7 deduped
│ │ │ │ │ └── chalk@4.1.0 deduped
│ │ │ │ ├─┬ @types/babel__core@7.1.10
│ │ │ │ │ ├── @babel/parser@7.12.3 deduped
│ │ │ │ │ ├── @babel/types@7.12.1 deduped
│ │ │ │ │ ├─┬ @types/babel__generator@7.6.2
│ │ │ │ │ │ └── @babel/types@7.12.1 deduped
│ │ │ │ │ ├─┬ @types/babel__template@7.0.3
│ │ │ │ │ │ ├── @babel/parser@7.12.3 deduped
│ │ │ │ │ │ └── @babel/types@7.12.1 deduped
│ │ │ │ │ └── @types/babel__traverse@7.0.15 deduped
│ │ │ │ ├── babel-plugin-istanbul@6.0.0 deduped
│ │ │ │ ├─┬ babel-preset-jest@26.5.0
│ │ │ │ │ ├─┬ babel-plugin-jest-hoist@26.5.0
│ │ │ │ │ │ ├── @babel/template@7.10.4 deduped
│ │ │ │ │ │ ├── @babel/types@7.12.1 deduped
│ │ │ │ │ │ ├── @types/babel__core@7.1.10 deduped
│ │ │ │ │ │ └── @types/babel__traverse@7.0.15 deduped
│ │ │ │ │ └─┬ babel-preset-current-node-syntax@0.1.4
│ │ │ │ │   ├─┬ @babel/plugin-syntax-async-generators@7.8.4
│ │ │ │ │   │ └── @babel/helper-plugin-utils@7.10.4 deduped
│ │ │ │ │   ├─┬ @babel/plugin-syntax-bigint@7.8.3
│ │ │ │ │   │ └── @babel/helper-plugin-utils@7.10.4 deduped
│ │ │ │ │   ├─┬ @babel/plugin-syntax-class-properties@7.12.1
│ │ │ │ │   │ └── @babel/helper-plugin-utils@7.10.4 deduped
│ │ │ │ │   ├─┬ @babel/plugin-syntax-import-meta@7.10.4
│ │ │ │ │   │ └── @babel/helper-plugin-utils@7.10.4 deduped
│ │ │ │ │   ├─┬ @babel/plugin-syntax-json-strings@7.8.3
│ │ │ │ │   │ └── @babel/helper-plugin-utils@7.10.4 deduped
│ │ │ │ │   ├─┬ @babel/plugin-syntax-logical-assignment-operators@7.10.4
│ │ │ │ │   │ └── @babel/helper-plugin-utils@7.10.4 deduped
│ │ │ │ │   ├─┬ @babel/plugin-syntax-nullish-coalescing-operator@7.8.3
│ │ │ │ │   │ └── @babel/helper-plugin-utils@7.10.4 deduped
│ │ │ │ │   ├─┬ @babel/plugin-syntax-numeric-separator@7.10.4
│ │ │ │ │   │ └── @babel/helper-plugin-utils@7.10.4 deduped
│ │ │ │ │   ├─┬ @babel/plugin-syntax-object-rest-spread@7.8.3
│ │ │ │ │   │ └── @babel/helper-plugin-utils@7.10.4 deduped
│ │ │ │ │   ├─┬ @babel/plugin-syntax-optional-catch-binding@7.8.3
│ │ │ │ │   │ └── @babel/helper-plugin-utils@7.10.4 deduped
│ │ │ │ │   └─┬ @babel/plugin-syntax-optional-chaining@7.8.3
│ │ │ │ │     └── @babel/helper-plugin-utils@7.10.4 deduped
│ │ │ │ ├─┬ chalk@4.1.0
│ │ │ │ │ ├─┬ ansi-styles@4.3.0
│ │ │ │ │ │ └─┬ color-convert@2.0.1
│ │ │ │ │ │   └── color-name@1.1.4
│ │ │ │ │ └─┬ supports-color@7.2.0
│ │ │ │ │   └── has-flag@4.0.0
│ │ │ │ ├── graceful-fs@4.2.4
│ │ │ │ └── slash@3.0.0 deduped
│ │ │ ├─┬ chalk@4.1.0
│ │ │ │ ├─┬ ansi-styles@4.3.0
│ │ │ │ │ └─┬ color-convert@2.0.1
│ │ │ │ │   └── color-name@1.1.4
│ │ │ │ └─┬ supports-color@7.2.0
│ │ │ │   └── has-flag@4.0.0
│ │ │ ├── deepmerge@4.2.2
│ │ │ ├─┬ glob@7.1.6
│ │ │ │ ├── fs.realpath@1.0.0 deduped
│ │ │ │ ├── inflight@1.0.6 deduped
│ │ │ │ ├── inherits@2.0.4 deduped
│ │ │ │ ├── minimatch@3.0.4 deduped
│ │ │ │ ├── once@1.4.0 deduped
│ │ │ │ └── path-is-absolute@1.0.1 deduped
│ │ │ ├── graceful-fs@4.2.4
│ │ │ ├─┬ jest-environment-jsdom@26.6.0
│ │ │ │ ├── @jest/environment@26.6.0 deduped
│ │ │ │ ├── @jest/fake-timers@26.6.0 deduped
│ │ │ │ ├─┬ @jest/types@26.6.0
│ │ │ │ │ ├── @types/istanbul-lib-coverage@2.0.3 deduped
│ │ │ │ │ ├── @types/istanbul-reports@3.0.0 deduped
│ │ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ │ ├── @types/yargs@15.0.7 deduped
│ │ │ │ │ └─┬ chalk@4.1.0
│ │ │ │ │   ├─┬ ansi-styles@4.3.0
│ │ │ │ │   │ └─┬ color-convert@2.0.1
│ │ │ │ │   │   └── color-name@1.1.4
│ │ │ │ │   └─┬ supports-color@7.2.0
│ │ │ │ │     └── has-flag@4.0.0
│ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ ├── jest-mock@26.6.0 deduped
│ │ │ │ ├─┬ jest-util@26.6.0
│ │ │ │ │ ├── @jest/types@26.6.0 deduped
│ │ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ │ ├── chalk@4.1.0 deduped
│ │ │ │ │ ├── graceful-fs@4.2.4
│ │ │ │ │ ├── is-ci@2.0.0 deduped
│ │ │ │ │ └─┬ micromatch@4.0.2
│ │ │ │ │   ├─┬ braces@3.0.2
│ │ │ │ │   │ └─┬ fill-range@7.0.1
│ │ │ │ │   │   └─┬ to-regex-range@5.0.1
│ │ │ │ │   │     └── is-number@7.0.0
│ │ │ │ │   └── picomatch@2.2.1 deduped
│ │ │ │ └─┬ jsdom@16.4.0
│ │ │ │   ├── abab@2.0.5 deduped
│ │ │ │   ├── acorn@7.4.1
│ │ │ │   ├─┬ acorn-globals@6.0.0
│ │ │ │   │ ├── acorn@7.4.1 deduped
│ │ │ │   │ └── acorn-walk@7.2.0
│ │ │ │   ├── cssom@0.4.4
│ │ │ │   ├─┬ cssstyle@2.3.0
│ │ │ │   │ └── cssom@0.3.8
│ │ │ │   ├─┬ data-urls@2.0.0
│ │ │ │   │ ├── abab@2.0.5 deduped
│ │ │ │   │ ├── whatwg-mimetype@2.3.0 deduped
│ │ │ │   │ └── whatwg-url@8.4.0 deduped
│ │ │ │   ├── decimal.js@10.2.1
│ │ │ │   ├─┬ domexception@2.0.1
│ │ │ │   │ └── webidl-conversions@5.0.0
│ │ │ │   ├─┬ escodegen@1.14.3
│ │ │ │   │ ├── esprima@4.0.1 deduped
│ │ │ │   │ ├── estraverse@4.3.0 deduped
│ │ │ │   │ ├── esutils@2.0.3
│ │ │ │   │ ├─┬ optionator@0.8.3
│ │ │ │   │ │ ├── deep-is@0.1.3
│ │ │ │   │ │ ├── fast-levenshtein@2.0.6
│ │ │ │   │ │ ├─┬ levn@0.3.0
│ │ │ │   │ │ │ ├── prelude-ls@1.1.2 deduped
│ │ │ │   │ │ │ └── type-check@0.3.2 deduped
│ │ │ │   │ │ ├── prelude-ls@1.1.2
│ │ │ │   │ │ ├─┬ type-check@0.3.2
│ │ │ │   │ │ │ └── prelude-ls@1.1.2 deduped
│ │ │ │   │ │ └── word-wrap@1.2.3
│ │ │ │   │ └── source-map@0.6.1 deduped
│ │ │ │   ├─┬ html-encoding-sniffer@2.0.1
│ │ │ │   │ └── whatwg-encoding@1.0.5 deduped
│ │ │ │   ├── is-potential-custom-element-name@1.0.0
│ │ │ │   ├── nwsapi@2.2.0
│ │ │ │   ├── parse5@5.1.1
│ │ │ │   ├── request@2.88.2 deduped
│ │ │ │   ├─┬ request-promise-native@1.0.9
│ │ │ │   │ ├─┬ request-promise-core@1.1.4
│ │ │ │   │ │ └── lodash@4.17.20 deduped
│ │ │ │   │ ├── stealthy-require@1.1.1
│ │ │ │   │ └── tough-cookie@2.5.0 deduped
│ │ │ │   ├─┬ saxes@5.0.1
│ │ │ │   │ └── xmlchars@2.2.0
│ │ │ │   ├── symbol-tree@3.2.4
│ │ │ │   ├─┬ tough-cookie@3.0.1
│ │ │ │   │ ├── ip-regex@2.1.0
│ │ │ │   │ ├── psl@1.8.0 deduped
│ │ │ │   │ └── punycode@2.1.1 deduped
│ │ │ │   ├─┬ w3c-hr-time@1.0.2
│ │ │ │   │ └── browser-process-hrtime@1.0.0
│ │ │ │   ├─┬ w3c-xmlserializer@2.0.0
│ │ │ │   │ └── xml-name-validator@3.0.0 deduped
│ │ │ │   ├── webidl-conversions@6.1.0
│ │ │ │   ├─┬ whatwg-encoding@1.0.5
│ │ │ │   │ └── iconv-lite@0.4.24 deduped
│ │ │ │   ├── whatwg-mimetype@2.3.0 deduped
│ │ │ │   ├─┬ whatwg-url@8.4.0
│ │ │ │   │ ├── lodash.sortby@4.7.0
│ │ │ │   │ ├─┬ tr46@2.0.2
│ │ │ │   │ │ └── punycode@2.1.1 deduped
│ │ │ │   │ └── webidl-conversions@6.1.0 deduped
│ │ │ │   ├── ws@7.3.1
│ │ │ │   └── xml-name-validator@3.0.0
│ │ │ ├─┬ jest-environment-node@26.6.0
│ │ │ │ ├── @jest/environment@26.6.0 deduped
│ │ │ │ ├── @jest/fake-timers@26.6.0 deduped
│ │ │ │ ├─┬ @jest/types@26.6.0
│ │ │ │ │ ├── @types/istanbul-lib-coverage@2.0.3 deduped
│ │ │ │ │ ├── @types/istanbul-reports@3.0.0 deduped
│ │ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ │ ├── @types/yargs@15.0.7 deduped
│ │ │ │ │ └─┬ chalk@4.1.0
│ │ │ │ │   ├─┬ ansi-styles@4.3.0
│ │ │ │ │   │ └─┬ color-convert@2.0.1
│ │ │ │ │   │   └── color-name@1.1.4
│ │ │ │ │   └─┬ supports-color@7.2.0
│ │ │ │ │     └── has-flag@4.0.0
│ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ ├── jest-mock@26.6.0 deduped
│ │ │ │ └─┬ jest-util@26.6.0
│ │ │ │   ├── @jest/types@26.6.0 deduped
│ │ │ │   ├── @types/node@13.5.0 deduped
│ │ │ │   ├── chalk@4.1.0 deduped
│ │ │ │   ├── graceful-fs@4.2.4
│ │ │ │   ├── is-ci@2.0.0 deduped
│ │ │ │   └─┬ micromatch@4.0.2
│ │ │ │     ├─┬ braces@3.0.2
│ │ │ │     │ └─┬ fill-range@7.0.1
│ │ │ │     │   └─┬ to-regex-range@5.0.1
│ │ │ │     │     └── is-number@7.0.0
│ │ │ │     └── picomatch@2.2.1 deduped
│ │ │ ├── jest-get-type@26.3.0 deduped
│ │ │ ├─┬ jest-jasmine2@26.6.0
│ │ │ │ ├── @babel/traverse@7.12.1 deduped
│ │ │ │ ├── @jest/environment@26.6.0 deduped
│ │ │ │ ├── @jest/source-map@26.5.0 deduped
│ │ │ │ ├── @jest/test-result@26.6.0 deduped
│ │ │ │ ├─┬ @jest/types@26.6.0
│ │ │ │ │ ├── @types/istanbul-lib-coverage@2.0.3 deduped
│ │ │ │ │ ├── @types/istanbul-reports@3.0.0 deduped
│ │ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ │ ├── @types/yargs@15.0.7 deduped
│ │ │ │ │ └── chalk@4.1.0 deduped
│ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ ├─┬ chalk@4.1.0
│ │ │ │ │ ├─┬ ansi-styles@4.3.0
│ │ │ │ │ │ └─┬ color-convert@2.0.1
│ │ │ │ │ │   └── color-name@1.1.4
│ │ │ │ │ └─┬ supports-color@7.2.0
│ │ │ │ │   └── has-flag@4.0.0
│ │ │ │ ├── co@4.6.0 deduped
│ │ │ │ ├── expect@26.6.0 deduped
│ │ │ │ ├── is-generator-fn@2.1.0
│ │ │ │ ├─┬ jest-each@26.6.0
│ │ │ │ │ ├─┬ @jest/types@26.6.0
│ │ │ │ │ │ ├── @types/istanbul-lib-coverage@2.0.3 deduped
│ │ │ │ │ │ ├── @types/istanbul-reports@3.0.0 deduped
│ │ │ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ │ │ ├── @types/yargs@15.0.7 deduped
│ │ │ │ │ │ └── chalk@4.1.0 deduped
│ │ │ │ │ ├─┬ chalk@4.1.0
│ │ │ │ │ │ ├─┬ ansi-styles@4.3.0
│ │ │ │ │ │ │ └─┬ color-convert@2.0.1
│ │ │ │ │ │ │   └── color-name@1.1.4
│ │ │ │ │ │ └─┬ supports-color@7.2.0
│ │ │ │ │ │   └── has-flag@4.0.0
│ │ │ │ │ ├── jest-get-type@26.3.0 deduped
│ │ │ │ │ ├─┬ jest-util@26.6.0
│ │ │ │ │ │ ├── @jest/types@26.6.0 deduped
│ │ │ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ │ │ ├── chalk@4.1.0 deduped
│ │ │ │ │ │ ├── graceful-fs@4.2.4
│ │ │ │ │ │ ├── is-ci@2.0.0 deduped
│ │ │ │ │ │ └─┬ micromatch@4.0.2
│ │ │ │ │ │   ├─┬ braces@3.0.2
│ │ │ │ │ │   │ └─┬ fill-range@7.0.1
│ │ │ │ │ │   │   └─┬ to-regex-range@5.0.1
│ │ │ │ │ │   │     └── is-number@7.0.0
│ │ │ │ │ │   └── picomatch@2.2.1 deduped
│ │ │ │ │ └── pretty-format@26.6.0 deduped
│ │ │ │ ├── jest-matcher-utils@26.6.0 deduped
│ │ │ │ ├── jest-message-util@26.6.0 deduped
│ │ │ │ ├── jest-runtime@26.6.0 deduped
│ │ │ │ ├── jest-snapshot@26.6.0 deduped
│ │ │ │ ├─┬ jest-util@26.6.0
│ │ │ │ │ ├── @jest/types@26.6.0 deduped
│ │ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ │ ├── chalk@4.1.0 deduped
│ │ │ │ │ ├── graceful-fs@4.2.4
│ │ │ │ │ ├── is-ci@2.0.0 deduped
│ │ │ │ │ └─┬ micromatch@4.0.2
│ │ │ │ │   ├─┬ braces@3.0.2
│ │ │ │ │   │ └─┬ fill-range@7.0.1
│ │ │ │ │   │   └─┬ to-regex-range@5.0.1
│ │ │ │ │   │     └── is-number@7.0.0
│ │ │ │ │   └── picomatch@2.2.1 deduped
│ │ │ │ ├── pretty-format@26.6.0 deduped
│ │ │ │ └── throat@5.0.0 deduped
│ │ │ ├── jest-regex-util@26.0.0 deduped
│ │ │ ├── jest-resolve@26.6.0 deduped
│ │ │ ├─┬ jest-util@26.6.0
│ │ │ │ ├── @jest/types@26.6.0 deduped
│ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ ├── chalk@4.1.0 deduped
│ │ │ │ ├── graceful-fs@4.2.4 deduped
│ │ │ │ ├── is-ci@2.0.0 deduped
│ │ │ │ └── micromatch@4.0.2 deduped
│ │ │ ├── jest-validate@26.6.0 deduped
│ │ │ ├─┬ micromatch@4.0.2
│ │ │ │ ├─┬ braces@3.0.2
│ │ │ │ │ └─┬ fill-range@7.0.1
│ │ │ │ │   └─┬ to-regex-range@5.0.1
│ │ │ │ │     └── is-number@7.0.0
│ │ │ │ └── picomatch@2.2.1 deduped
│ │ │ └── pretty-format@26.6.0 deduped
│ │ ├─┬ jest-haste-map@26.6.0
│ │ │ ├─┬ @jest/types@26.6.0
│ │ │ │ ├── @types/istanbul-lib-coverage@2.0.3 deduped
│ │ │ │ ├── @types/istanbul-reports@3.0.0 deduped
│ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ ├── @types/yargs@15.0.7 deduped
│ │ │ │ └─┬ chalk@4.1.0
│ │ │ │   ├─┬ ansi-styles@4.3.0
│ │ │ │   │ └─┬ color-convert@2.0.1
│ │ │ │   │   └── color-name@1.1.4
│ │ │ │   └─┬ supports-color@7.2.0
│ │ │ │     └── has-flag@4.0.0
│ │ │ ├─┬ @types/graceful-fs@4.1.3
│ │ │ │ └── @types/node@13.5.0 deduped
│ │ │ ├── @types/node@13.5.0 deduped
│ │ │ ├─┬ anymatch@3.1.1
│ │ │ │ ├── normalize-path@3.0.0
│ │ │ │ └── picomatch@2.2.1 deduped
│ │ │ ├─┬ fb-watchman@2.0.1
│ │ │ │ └─┬ bser@2.1.1
│ │ │ │   └── node-int64@0.4.0
│ │ │ ├── UNMET OPTIONAL DEPENDENCY fsevents@2.1.3
│ │ │ ├── graceful-fs@4.2.4
│ │ │ ├── jest-regex-util@26.0.0 deduped
│ │ │ ├─┬ jest-serializer@26.5.0
│ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ └── graceful-fs@4.2.4
│ │ │ ├─┬ jest-util@26.6.0
│ │ │ │ ├── @jest/types@26.6.0 deduped
│ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ ├── chalk@4.1.0 deduped
│ │ │ │ ├── graceful-fs@4.2.4 deduped
│ │ │ │ ├── is-ci@2.0.0 deduped
│ │ │ │ └── micromatch@4.0.2 deduped
│ │ │ ├── jest-worker@26.5.0 deduped
│ │ │ ├─┬ micromatch@4.0.2
│ │ │ │ ├─┬ braces@3.0.2
│ │ │ │ │ └─┬ fill-range@7.0.1
│ │ │ │ │   └─┬ to-regex-range@5.0.1
│ │ │ │ │     └── is-number@7.0.0
│ │ │ │ └── picomatch@2.2.1 deduped
│ │ │ ├─┬ sane@4.1.0
│ │ │ │ ├─┬ @cnakazawa/watch@1.0.4
│ │ │ │ │ ├── exec-sh@0.3.4 deduped
│ │ │ │ │ └── minimist@1.2.0 deduped
│ │ │ │ ├── anymatch@2.0.0 deduped
│ │ │ │ ├─┬ capture-exit@2.0.0
│ │ │ │ │ └── rsvp@4.8.5
│ │ │ │ ├── exec-sh@0.3.4
│ │ │ │ ├─┬ execa@1.0.0
│ │ │ │ │ ├─┬ cross-spawn@6.0.5
│ │ │ │ │ │ ├── nice-try@1.0.5
│ │ │ │ │ │ ├── path-key@2.0.1
│ │ │ │ │ │ ├── semver@5.7.1 deduped
│ │ │ │ │ │ ├── shebang-command@1.2.0 deduped
│ │ │ │ │ │ └── which@1.3.1 deduped
│ │ │ │ │ ├─┬ get-stream@4.1.0
│ │ │ │ │ │ └─┬ pump@3.0.0
│ │ │ │ │ │   ├── end-of-stream@1.4.4 deduped
│ │ │ │ │ │   └── once@1.4.0 deduped
│ │ │ │ │ ├── is-stream@1.1.0
│ │ │ │ │ ├─┬ npm-run-path@2.0.2
│ │ │ │ │ │ └── path-key@2.0.1 deduped
│ │ │ │ │ ├── p-finally@1.0.0
│ │ │ │ │ ├── signal-exit@3.0.3 deduped
│ │ │ │ │ └── strip-eof@1.0.0
│ │ │ │ ├── fb-watchman@2.0.1 deduped
│ │ │ │ ├─┬ micromatch@3.1.10
│ │ │ │ │ ├── arr-diff@4.0.0
│ │ │ │ │ ├── array-unique@0.3.2
│ │ │ │ │ ├─┬ braces@2.3.2
│ │ │ │ │ │ ├── arr-flatten@1.1.0 deduped
│ │ │ │ │ │ ├── array-unique@0.3.2 deduped
│ │ │ │ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ │ │ ├─┬ fill-range@4.0.0
│ │ │ │ │ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ │ │ │ ├─┬ is-number@3.0.0
│ │ │ │ │ │ │ │ └─┬ kind-of@3.2.2
│ │ │ │ │ │ │ │   └── is-buffer@1.1.6 deduped
│ │ │ │ │ │ │ ├── repeat-string@1.6.1 deduped
│ │ │ │ │ │ │ └── to-regex-range@2.1.1 deduped
│ │ │ │ │ │ ├── isobject@3.0.1 deduped
│ │ │ │ │ │ ├── repeat-element@1.1.3 deduped
│ │ │ │ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ │ │ │ ├── snapdragon-node@2.1.1 deduped
│ │ │ │ │ │ ├── split-string@3.1.0 deduped
│ │ │ │ │ │ └── to-regex@3.0.2 deduped
│ │ │ │ │ ├─┬ define-property@2.0.2
│ │ │ │ │ │ ├─┬ is-descriptor@1.0.2
│ │ │ │ │ │ │ ├─┬ is-accessor-descriptor@1.0.0
│ │ │ │ │ │ │ │ └── kind-of@6.0.3 deduped
│ │ │ │ │ │ │ ├─┬ is-data-descriptor@1.0.0
│ │ │ │ │ │ │ │ └── kind-of@6.0.3 deduped
│ │ │ │ │ │ │ └── kind-of@6.0.3 deduped
│ │ │ │ │ │ └── isobject@3.0.1 deduped
│ │ │ │ │ ├─┬ extend-shallow@3.0.2
│ │ │ │ │ │ ├── assign-symbols@1.0.0 deduped
│ │ │ │ │ │ └─┬ is-extendable@1.0.1
│ │ │ │ │ │   └── is-plain-object@2.0.4 deduped
│ │ │ │ │ ├─┬ extglob@2.0.4
│ │ │ │ │ │ ├── array-unique@0.3.2 deduped
│ │ │ │ │ │ ├─┬ define-property@1.0.0
│ │ │ │ │ │ │ └── is-descriptor@1.0.2 deduped
│ │ │ │ │ │ ├─┬ expand-brackets@2.1.4
│ │ │ │ │ │ │ ├── debug@2.6.9 deduped
│ │ │ │ │ │ │ ├─┬ define-property@0.2.5
│ │ │ │ │ │ │ │ └─┬ is-descriptor@0.1.6
│ │ │ │ │ │ │ │   ├─┬ is-accessor-descriptor@0.1.6
│ │ │ │ │ │ │ │   │ └─┬ kind-of@3.2.2
│ │ │ │ │ │ │ │   │   └── is-buffer@1.1.6 deduped
│ │ │ │ │ │ │ │   ├─┬ is-data-descriptor@0.1.4
│ │ │ │ │ │ │ │   │ └─┬ kind-of@3.2.2
│ │ │ │ │ │ │ │   │   └── is-buffer@1.1.6 deduped
│ │ │ │ │ │ │ │   └── kind-of@5.1.0
│ │ │ │ │ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ │ │ │ ├── posix-character-classes@0.1.1 deduped
│ │ │ │ │ │ │ ├── regex-not@1.0.2 deduped
│ │ │ │ │ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ │ │ │ │ └── to-regex@3.0.2 deduped
│ │ │ │ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ │ │ ├── fragment-cache@0.2.1 deduped
│ │ │ │ │ │ ├── regex-not@1.0.2 deduped
│ │ │ │ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ │ │ │ └── to-regex@3.0.2 deduped
│ │ │ │ │ ├── fragment-cache@0.2.1 deduped
│ │ │ │ │ ├── kind-of@6.0.3
│ │ │ │ │ ├── nanomatch@1.2.13 deduped
│ │ │ │ │ ├── object.pick@1.3.0 deduped
│ │ │ │ │ ├── regex-not@1.0.2 deduped
│ │ │ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ │ │ └── to-regex@3.0.2 deduped
│ │ │ │ ├── minimist@1.2.0 deduped
│ │ │ │ └── walker@1.0.7 deduped
│ │ │ └─┬ walker@1.0.7
│ │ │   └─┬ makeerror@1.0.11
│ │ │     └── tmpl@1.0.4
│ │ ├─┬ jest-message-util@26.6.0
│ │ │ ├── @babel/code-frame@7.10.4 deduped
│ │ │ ├─┬ @jest/types@26.6.0
│ │ │ │ ├── @types/istanbul-lib-coverage@2.0.3 deduped
│ │ │ │ ├── @types/istanbul-reports@3.0.0 deduped
│ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ ├── @types/yargs@15.0.7 deduped
│ │ │ │ └── chalk@4.1.0 deduped
│ │ │ ├── @types/stack-utils@2.0.0
│ │ │ ├─┬ chalk@4.1.0
│ │ │ │ ├─┬ ansi-styles@4.3.0
│ │ │ │ │ └─┬ color-convert@2.0.1
│ │ │ │ │   └── color-name@1.1.4
│ │ │ │ └─┬ supports-color@7.2.0
│ │ │ │   └── has-flag@4.0.0
│ │ │ ├── graceful-fs@4.2.4
│ │ │ ├─┬ micromatch@4.0.2
│ │ │ │ ├─┬ braces@3.0.2
│ │ │ │ │ └─┬ fill-range@7.0.1
│ │ │ │ │   └─┬ to-regex-range@5.0.1
│ │ │ │ │     └── is-number@7.0.0
│ │ │ │ └── picomatch@2.2.1 deduped
│ │ │ ├── slash@3.0.0 deduped
│ │ │ └─┬ stack-utils@2.0.2
│ │ │   └── escape-string-regexp@2.0.0
│ │ ├── jest-regex-util@26.0.0
│ │ ├─┬ jest-resolve@26.6.0
│ │ │ ├─┬ @jest/types@26.6.0
│ │ │ │ ├── @types/istanbul-lib-coverage@2.0.3 deduped
│ │ │ │ ├── @types/istanbul-reports@3.0.0 deduped
│ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ ├── @types/yargs@15.0.7 deduped
│ │ │ │ └── chalk@4.1.0 deduped
│ │ │ ├─┬ chalk@4.1.0
│ │ │ │ ├─┬ ansi-styles@4.3.0
│ │ │ │ │ └─┬ color-convert@2.0.1
│ │ │ │ │   └── color-name@1.1.4
│ │ │ │ └─┬ supports-color@7.2.0
│ │ │ │   └── has-flag@4.0.0
│ │ │ ├── graceful-fs@4.2.4
│ │ │ ├── jest-pnp-resolver@1.2.2
│ │ │ ├─┬ jest-util@26.6.0
│ │ │ │ ├── @jest/types@26.6.0 deduped
│ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ ├── chalk@4.1.0 deduped
│ │ │ │ ├── graceful-fs@4.2.4 deduped
│ │ │ │ ├── is-ci@2.0.0 deduped
│ │ │ │ └─┬ micromatch@4.0.2
│ │ │ │   ├─┬ braces@3.0.2
│ │ │ │   │ └─┬ fill-range@7.0.1
│ │ │ │   │   └─┬ to-regex-range@5.0.1
│ │ │ │   │     └── is-number@7.0.0
│ │ │ │   └── picomatch@2.2.1 deduped
│ │ │ ├─┬ read-pkg-up@7.0.1
│ │ │ │ ├─┬ find-up@4.1.0
│ │ │ │ │ ├─┬ locate-path@5.0.0
│ │ │ │ │ │ └─┬ p-locate@4.1.0
│ │ │ │ │ │   └── p-limit@2.3.0 deduped
│ │ │ │ │ └── path-exists@4.0.0
│ │ │ │ ├─┬ read-pkg@5.2.0
│ │ │ │ │ ├── @types/normalize-package-data@2.4.0
│ │ │ │ │ ├── normalize-package-data@2.5.0 deduped
│ │ │ │ │ ├─┬ parse-json@5.1.0
│ │ │ │ │ │ ├── @babel/code-frame@7.10.4 deduped
│ │ │ │ │ │ ├─┬ error-ex@1.3.2
│ │ │ │ │ │ │ └── is-arrayish@0.2.1
│ │ │ │ │ │ ├── json-parse-even-better-errors@2.3.1
│ │ │ │ │ │ └── lines-and-columns@1.1.6
│ │ │ │ │ └── type-fest@0.6.0
│ │ │ │ └── type-fest@0.8.1
│ │ │ ├─┬ resolve@1.18.1
│ │ │ │ ├─┬ is-core-module@2.0.0
│ │ │ │ │ └─┬ has@1.0.3
│ │ │ │ │   └── function-bind@1.1.1 deduped
│ │ │ │ └── path-parse@1.0.6 deduped
│ │ │ └── slash@3.0.0 deduped
│ │ ├─┬ jest-resolve-dependencies@26.6.0
│ │ │ ├─┬ @jest/types@26.6.0
│ │ │ │ ├── @types/istanbul-lib-coverage@2.0.3 deduped
│ │ │ │ ├── @types/istanbul-reports@3.0.0 deduped
│ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ ├── @types/yargs@15.0.7 deduped
│ │ │ │ └─┬ chalk@4.1.0
│ │ │ │   ├─┬ ansi-styles@4.3.0
│ │ │ │   │ └─┬ color-convert@2.0.1
│ │ │ │   │   └── color-name@1.1.4
│ │ │ │   └─┬ supports-color@7.2.0
│ │ │ │     └── has-flag@4.0.0
│ │ │ ├── jest-regex-util@26.0.0 deduped
│ │ │ └── jest-snapshot@26.6.0 deduped
│ │ ├─┬ jest-runner@26.6.0
│ │ │ ├── @jest/console@26.6.0 deduped
│ │ │ ├─┬ @jest/environment@26.6.0
│ │ │ │ ├── @jest/fake-timers@26.6.0 deduped
│ │ │ │ ├─┬ @jest/types@26.6.0
│ │ │ │ │ ├── @types/istanbul-lib-coverage@2.0.3 deduped
│ │ │ │ │ ├── @types/istanbul-reports@3.0.0 deduped
│ │ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ │ ├── @types/yargs@15.0.7 deduped
│ │ │ │ │ └─┬ chalk@4.1.0
│ │ │ │ │   ├─┬ ansi-styles@4.3.0
│ │ │ │ │   │ └─┬ color-convert@2.0.1
│ │ │ │ │   │   └── color-name@1.1.4
│ │ │ │ │   └─┬ supports-color@7.2.0
│ │ │ │ │     └── has-flag@4.0.0
│ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ └── jest-mock@26.6.0 deduped
│ │ │ ├── @jest/test-result@26.6.0 deduped
│ │ │ ├─┬ @jest/types@26.6.0
│ │ │ │ ├── @types/istanbul-lib-coverage@2.0.3 deduped
│ │ │ │ ├── @types/istanbul-reports@3.0.0 deduped
│ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ ├── @types/yargs@15.0.7 deduped
│ │ │ │ └── chalk@4.1.0 deduped
│ │ │ ├── @types/node@13.5.0 deduped
│ │ │ ├─┬ chalk@4.1.0
│ │ │ │ ├─┬ ansi-styles@4.3.0
│ │ │ │ │ └─┬ color-convert@2.0.1
│ │ │ │ │   └── color-name@1.1.4
│ │ │ │ └─┬ supports-color@7.2.0
│ │ │ │   └── has-flag@4.0.0
│ │ │ ├── emittery@0.7.2
│ │ │ ├── exit@0.1.2 deduped
│ │ │ ├── graceful-fs@4.2.4
│ │ │ ├── jest-config@26.6.0 deduped
│ │ │ ├─┬ jest-docblock@26.0.0
│ │ │ │ └── detect-newline@3.1.0
│ │ │ ├── jest-haste-map@26.6.0 deduped
│ │ │ ├─┬ jest-leak-detector@26.6.0
│ │ │ │ ├── jest-get-type@26.3.0 deduped
│ │ │ │ └── pretty-format@26.6.0 deduped
│ │ │ ├── jest-message-util@26.6.0 deduped
│ │ │ ├── jest-resolve@26.6.0 deduped
│ │ │ ├── jest-runtime@26.6.0 deduped
│ │ │ ├─┬ jest-util@26.6.0
│ │ │ │ ├── @jest/types@26.6.0 deduped
│ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ ├── chalk@4.1.0 deduped
│ │ │ │ ├── graceful-fs@4.2.4 deduped
│ │ │ │ ├── is-ci@2.0.0 deduped
│ │ │ │ └─┬ micromatch@4.0.2
│ │ │ │   ├─┬ braces@3.0.2
│ │ │ │   │ └─┬ fill-range@7.0.1
│ │ │ │   │   └─┬ to-regex-range@5.0.1
│ │ │ │   │     └── is-number@7.0.0
│ │ │ │   └── picomatch@2.2.1 deduped
│ │ │ ├── jest-worker@26.5.0 deduped
│ │ │ ├── source-map-support@0.5.16 deduped
│ │ │ └── throat@5.0.0 deduped
│ │ ├─┬ jest-runtime@26.6.0
│ │ │ ├── @jest/console@26.6.0 deduped
│ │ │ ├── @jest/environment@26.6.0 deduped
│ │ │ ├─┬ @jest/fake-timers@26.6.0
│ │ │ │ ├─┬ @jest/types@26.6.0
│ │ │ │ │ ├── @types/istanbul-lib-coverage@2.0.3 deduped
│ │ │ │ │ ├── @types/istanbul-reports@3.0.0 deduped
│ │ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ │ ├── @types/yargs@15.0.7 deduped
│ │ │ │ │ └─┬ chalk@4.1.0
│ │ │ │ │   ├─┬ ansi-styles@4.3.0
│ │ │ │ │   │ └─┬ color-convert@2.0.1
│ │ │ │ │   │   └── color-name@1.1.4
│ │ │ │ │   └─┬ supports-color@7.2.0
│ │ │ │ │     └── has-flag@4.0.0
│ │ │ │ ├─┬ @sinonjs/fake-timers@6.0.1
│ │ │ │ │ └─┬ @sinonjs/commons@1.8.1
│ │ │ │ │   └── type-detect@4.0.8
│ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ ├── jest-message-util@26.6.0 deduped
│ │ │ │ ├── jest-mock@26.6.0 deduped
│ │ │ │ └─┬ jest-util@26.6.0
│ │ │ │   ├── @jest/types@26.6.0 deduped
│ │ │ │   ├── @types/node@13.5.0 deduped
│ │ │ │   ├── chalk@4.1.0 deduped
│ │ │ │   ├── graceful-fs@4.2.4
│ │ │ │   ├── is-ci@2.0.0 deduped
│ │ │ │   └─┬ micromatch@4.0.2
│ │ │ │     ├─┬ braces@3.0.2
│ │ │ │     │ └─┬ fill-range@7.0.1
│ │ │ │     │   └─┬ to-regex-range@5.0.1
│ │ │ │     │     └── is-number@7.0.0
│ │ │ │     └── picomatch@2.2.1 deduped
│ │ │ ├─┬ @jest/globals@26.6.0
│ │ │ │ ├── @jest/environment@26.6.0 deduped
│ │ │ │ ├─┬ @jest/types@26.6.0
│ │ │ │ │ ├── @types/istanbul-lib-coverage@2.0.3 deduped
│ │ │ │ │ ├── @types/istanbul-reports@3.0.0 deduped
│ │ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ │ ├── @types/yargs@15.0.7 deduped
│ │ │ │ │ └─┬ chalk@4.1.0
│ │ │ │ │   ├─┬ ansi-styles@4.3.0
│ │ │ │ │   │ └─┬ color-convert@2.0.1
│ │ │ │ │   │   └── color-name@1.1.4
│ │ │ │ │   └─┬ supports-color@7.2.0
│ │ │ │ │     └── has-flag@4.0.0
│ │ │ │ └── expect@26.6.0 deduped
│ │ │ ├─┬ @jest/source-map@26.5.0
│ │ │ │ ├── callsites@3.1.0
│ │ │ │ ├── graceful-fs@4.2.4
│ │ │ │ └── source-map@0.6.1 deduped
│ │ │ ├── @jest/test-result@26.6.0 deduped
│ │ │ ├── @jest/transform@26.6.0 deduped
│ │ │ ├─┬ @jest/types@26.6.0
│ │ │ │ ├── @types/istanbul-lib-coverage@2.0.3 deduped
│ │ │ │ ├── @types/istanbul-reports@3.0.0 deduped
│ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ ├── @types/yargs@15.0.7 deduped
│ │ │ │ └── chalk@4.1.0 deduped
│ │ │ ├── @types/yargs@15.0.7 deduped
│ │ │ ├─┬ chalk@4.1.0
│ │ │ │ ├─┬ ansi-styles@4.3.0
│ │ │ │ │ └─┬ color-convert@2.0.1
│ │ │ │ │   └── color-name@1.1.4
│ │ │ │ └─┬ supports-color@7.2.0
│ │ │ │   └── has-flag@4.0.0
│ │ │ ├── collect-v8-coverage@1.0.1 deduped
│ │ │ ├── exit@0.1.2 deduped
│ │ │ ├─┬ glob@7.1.6
│ │ │ │ ├── fs.realpath@1.0.0 deduped
│ │ │ │ ├── inflight@1.0.6 deduped
│ │ │ │ ├── inherits@2.0.4 deduped
│ │ │ │ ├── minimatch@3.0.4 deduped
│ │ │ │ ├── once@1.4.0 deduped
│ │ │ │ └── path-is-absolute@1.0.1 deduped
│ │ │ ├── graceful-fs@4.2.4
│ │ │ ├── jest-config@26.6.0 deduped
│ │ │ ├── jest-haste-map@26.6.0 deduped
│ │ │ ├── jest-message-util@26.6.0 deduped
│ │ │ ├─┬ jest-mock@26.6.0
│ │ │ │ ├─┬ @jest/types@26.6.0
│ │ │ │ │ ├── @types/istanbul-lib-coverage@2.0.3 deduped
│ │ │ │ │ ├── @types/istanbul-reports@3.0.0 deduped
│ │ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ │ ├── @types/yargs@15.0.7 deduped
│ │ │ │ │ └─┬ chalk@4.1.0
│ │ │ │ │   ├─┬ ansi-styles@4.3.0
│ │ │ │ │   │ └─┬ color-convert@2.0.1
│ │ │ │ │   │   └── color-name@1.1.4
│ │ │ │ │   └─┬ supports-color@7.2.0
│ │ │ │ │     └── has-flag@4.0.0
│ │ │ │ └── @types/node@13.5.0 deduped
│ │ │ ├── jest-regex-util@26.0.0 deduped
│ │ │ ├── jest-resolve@26.6.0 deduped
│ │ │ ├── jest-snapshot@26.6.0 deduped
│ │ │ ├─┬ jest-util@26.6.0
│ │ │ │ ├── @jest/types@26.6.0 deduped
│ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ ├── chalk@4.1.0 deduped
│ │ │ │ ├── graceful-fs@4.2.4 deduped
│ │ │ │ ├── is-ci@2.0.0 deduped
│ │ │ │ └─┬ micromatch@4.0.2
│ │ │ │   ├─┬ braces@3.0.2
│ │ │ │   │ └─┬ fill-range@7.0.1
│ │ │ │   │   └─┬ to-regex-range@5.0.1
│ │ │ │   │     └── is-number@7.0.0
│ │ │ │   └── picomatch@2.2.1 deduped
│ │ │ ├── jest-validate@26.6.0 deduped
│ │ │ ├── slash@3.0.0 deduped
│ │ │ ├── strip-bom@4.0.0
│ │ │ └─┬ yargs@15.4.1
│ │ │   ├─┬ cliui@6.0.0
│ │ │   │ ├── string-width@4.2.0 deduped
│ │ │   │ ├─┬ strip-ansi@6.0.0
│ │ │   │ │ └── ansi-regex@5.0.0
│ │ │   │ └─┬ wrap-ansi@6.2.0
│ │ │   │   ├── ansi-styles@4.3.0 deduped
│ │ │   │   ├── string-width@4.2.0 deduped
│ │ │   │   └── strip-ansi@6.0.0 deduped
│ │ │   ├── decamelize@1.2.0 deduped
│ │ │   ├─┬ find-up@4.1.0
│ │ │   │ ├─┬ locate-path@5.0.0
│ │ │   │ │ └─┬ p-locate@4.1.0
│ │ │   │ │   └── p-limit@2.3.0 deduped
│ │ │   │ └── path-exists@4.0.0
│ │ │   ├── get-caller-file@2.0.5
│ │ │   ├── require-directory@2.1.1 deduped
│ │ │   ├── require-main-filename@2.0.0
│ │ │   ├── set-blocking@2.0.0 deduped
│ │ │   ├─┬ string-width@4.2.0
│ │ │   │ ├── emoji-regex@8.0.0
│ │ │   │ ├── is-fullwidth-code-point@3.0.0
│ │ │   │ └── strip-ansi@6.0.0 deduped
│ │ │   ├── which-module@2.0.0
│ │ │   ├── y18n@4.0.0
│ │ │   └─┬ yargs-parser@18.1.3
│ │ │     ├── camelcase@5.3.1
│ │ │     └── decamelize@1.2.0 deduped
│ │ ├─┬ jest-snapshot@26.6.0
│ │ │ ├─┬ @babel/types@7.12.1
│ │ │ │ ├── @babel/helper-validator-identifier@7.10.4 deduped
│ │ │ │ ├── lodash@4.17.20 deduped
│ │ │ │ └── to-fast-properties@2.0.0
│ │ │ ├─┬ @jest/types@26.6.0
│ │ │ │ ├── @types/istanbul-lib-coverage@2.0.3 deduped
│ │ │ │ ├── @types/istanbul-reports@3.0.0 deduped
│ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ ├── @types/yargs@15.0.7 deduped
│ │ │ │ └── chalk@4.1.0 deduped
│ │ │ ├─┬ @types/babel__traverse@7.0.15
│ │ │ │ └── @babel/types@7.12.1 deduped
│ │ │ ├── @types/prettier@2.1.5
│ │ │ ├─┬ chalk@4.1.0
│ │ │ │ ├─┬ ansi-styles@4.3.0
│ │ │ │ │ └─┬ color-convert@2.0.1
│ │ │ │ │   └── color-name@1.1.4
│ │ │ │ └─┬ supports-color@7.2.0
│ │ │ │   └── has-flag@4.0.0
│ │ │ ├─┬ expect@26.6.0
│ │ │ │ ├─┬ @jest/types@26.6.0
│ │ │ │ │ ├── @types/istanbul-lib-coverage@2.0.3 deduped
│ │ │ │ │ ├── @types/istanbul-reports@3.0.0 deduped
│ │ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ │ ├── @types/yargs@15.0.7 deduped
│ │ │ │ │ └─┬ chalk@4.1.0
│ │ │ │ │   ├── ansi-styles@4.3.0 deduped
│ │ │ │ │   └─┬ supports-color@7.2.0
│ │ │ │ │     └── has-flag@4.0.0
│ │ │ │ ├─┬ ansi-styles@4.3.0
│ │ │ │ │ └─┬ color-convert@2.0.1
│ │ │ │ │   └── color-name@1.1.4
│ │ │ │ ├── jest-get-type@26.3.0 deduped
│ │ │ │ ├── jest-matcher-utils@26.6.0 deduped
│ │ │ │ ├── jest-message-util@26.6.0 deduped
│ │ │ │ └── jest-regex-util@26.0.0 deduped
│ │ │ ├── graceful-fs@4.2.4
│ │ │ ├── jest-diff@26.6.0 deduped
│ │ │ ├── jest-get-type@26.3.0 deduped
│ │ │ ├── jest-haste-map@26.6.0 deduped
│ │ │ ├─┬ jest-matcher-utils@26.6.0
│ │ │ │ ├─┬ chalk@4.1.0
│ │ │ │ │ ├─┬ ansi-styles@4.3.0
│ │ │ │ │ │ └─┬ color-convert@2.0.1
│ │ │ │ │ │   └── color-name@1.1.4
│ │ │ │ │ └─┬ supports-color@7.2.0
│ │ │ │ │   └── has-flag@4.0.0
│ │ │ │ ├── jest-diff@26.6.0 deduped
│ │ │ │ ├── jest-get-type@26.3.0 deduped
│ │ │ │ └── pretty-format@26.6.0 deduped
│ │ │ ├── jest-message-util@26.6.0 deduped
│ │ │ ├── jest-resolve@26.6.0 deduped
│ │ │ ├── natural-compare@1.4.0
│ │ │ ├── pretty-format@26.6.0 deduped
│ │ │ └── semver@7.3.2
│ │ ├─┬ jest-util@26.6.0
│ │ │ ├── @jest/types@26.6.0 deduped
│ │ │ ├── @types/node@13.5.0 deduped
│ │ │ ├── chalk@4.1.0 deduped
│ │ │ ├── graceful-fs@4.2.4 deduped
│ │ │ ├── is-ci@2.0.0 deduped
│ │ │ └── micromatch@4.0.2 deduped
│ │ ├─┬ jest-validate@26.6.0
│ │ │ ├─┬ @jest/types@26.6.0
│ │ │ │ ├── @types/istanbul-lib-coverage@2.0.3 deduped
│ │ │ │ ├── @types/istanbul-reports@3.0.0 deduped
│ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ ├── @types/yargs@15.0.7 deduped
│ │ │ │ └── chalk@4.1.0 deduped
│ │ │ ├── camelcase@6.1.0
│ │ │ ├─┬ chalk@4.1.0
│ │ │ │ ├─┬ ansi-styles@4.3.0
│ │ │ │ │ └─┬ color-convert@2.0.1
│ │ │ │ │   └── color-name@1.1.4
│ │ │ │ └─┬ supports-color@7.2.0
│ │ │ │   └── has-flag@4.0.0
│ │ │ ├── jest-get-type@26.3.0 deduped
│ │ │ ├── leven@3.1.0
│ │ │ └── pretty-format@26.6.0 deduped
│ │ ├─┬ jest-watcher@26.6.0
│ │ │ ├── @jest/test-result@26.6.0 deduped
│ │ │ ├─┬ @jest/types@26.6.0
│ │ │ │ ├── @types/istanbul-lib-coverage@2.0.3 deduped
│ │ │ │ ├── @types/istanbul-reports@3.0.0 deduped
│ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ ├── @types/yargs@15.0.7 deduped
│ │ │ │ └── chalk@4.1.0 deduped
│ │ │ ├── @types/node@13.5.0 deduped
│ │ │ ├─┬ ansi-escapes@4.3.1
│ │ │ │ └── type-fest@0.11.0
│ │ │ ├─┬ chalk@4.1.0
│ │ │ │ ├─┬ ansi-styles@4.3.0
│ │ │ │ │ └─┬ color-convert@2.0.1
│ │ │ │ │   └── color-name@1.1.4
│ │ │ │ └─┬ supports-color@7.2.0
│ │ │ │   └── has-flag@4.0.0
│ │ │ ├─┬ jest-util@26.6.0
│ │ │ │ ├── @jest/types@26.6.0 deduped
│ │ │ │ ├── @types/node@13.5.0 deduped
│ │ │ │ ├── chalk@4.1.0 deduped
│ │ │ │ ├── graceful-fs@4.2.4
│ │ │ │ ├── is-ci@2.0.0 deduped
│ │ │ │ └─┬ micromatch@4.0.2
│ │ │ │   ├─┬ braces@3.0.2
│ │ │ │   │ └─┬ fill-range@7.0.1
│ │ │ │   │   └─┬ to-regex-range@5.0.1
│ │ │ │   │     └── is-number@7.0.0
│ │ │ │   └── picomatch@2.2.1 deduped
│ │ │ └── string-length@4.0.1 deduped
│ │ ├─┬ micromatch@4.0.2
│ │ │ ├─┬ braces@3.0.2
│ │ │ │ └─┬ fill-range@7.0.1
│ │ │ │   └─┬ to-regex-range@5.0.1
│ │ │ │     └── is-number@7.0.0
│ │ │ └── picomatch@2.2.1 deduped
│ │ ├── p-each-series@2.1.0
│ │ ├─┬ rimraf@3.0.2
│ │ │ └─┬ glob@7.1.6
│ │ │   ├── fs.realpath@1.0.0 deduped
│ │ │   ├── inflight@1.0.6 deduped
│ │ │   ├── inherits@2.0.4 deduped
│ │ │   ├── minimatch@3.0.4 deduped
│ │ │   ├── once@1.4.0 deduped
│ │ │   └── path-is-absolute@1.0.1 deduped
│ │ ├── slash@3.0.0 deduped
│ │ └─┬ strip-ansi@6.0.0
│ │   └── ansi-regex@5.0.0
│ ├─┬ import-local@3.0.2
│ │ ├─┬ pkg-dir@4.2.0
│ │ │ └─┬ find-up@4.1.0
│ │ │   ├─┬ locate-path@5.0.0
│ │ │   │ └─┬ p-locate@4.1.0
│ │ │   │   └── p-limit@2.3.0 deduped
│ │ │   └── path-exists@4.0.0
│ │ └─┬ resolve-cwd@3.0.0
│ │   └── resolve-from@5.0.0
│ └─┬ jest-cli@26.6.0
│   ├── @jest/core@26.6.0 deduped
│   ├── @jest/test-result@26.6.0 deduped
│   ├─┬ @jest/types@26.6.0
│   │ ├── @types/istanbul-lib-coverage@2.0.3 deduped
│   │ ├── @types/istanbul-reports@3.0.0 deduped
│   │ ├── @types/node@13.5.0 deduped
│   │ ├── @types/yargs@15.0.7 deduped
│   │ └── chalk@4.1.0 deduped
│   ├─┬ chalk@4.1.0
│   │ ├─┬ ansi-styles@4.3.0
│   │ │ └─┬ color-convert@2.0.1
│   │ │   └── color-name@1.1.4
│   │ └─┬ supports-color@7.2.0
│   │   └── has-flag@4.0.0
│   ├── exit@0.1.2 deduped
│   ├── graceful-fs@4.2.4
│   ├── import-local@3.0.2 deduped
│   ├─┬ is-ci@2.0.0
│   │ └── ci-info@2.0.0
│   ├── jest-config@26.6.0 deduped
│   ├─┬ jest-util@26.6.0
│   │ ├── @jest/types@26.6.0 deduped
│   │ ├── @types/node@13.5.0 deduped
│   │ ├── chalk@4.1.0 deduped
│   │ ├── graceful-fs@4.2.4 deduped
│   │ ├── is-ci@2.0.0 deduped
│   │ └─┬ micromatch@4.0.2
│   │   ├─┬ braces@3.0.2
│   │   │ └─┬ fill-range@7.0.1
│   │   │   └─┬ to-regex-range@5.0.1
│   │   │     └── is-number@7.0.0
│   │   └── picomatch@2.2.1 deduped
│   ├── jest-validate@26.6.0 deduped
│   ├─┬ prompts@2.3.2
│   │ ├── kleur@3.0.3
│   │ └── sisteransi@1.0.5
│   └─┬ yargs@15.4.1
│     ├─┬ cliui@6.0.0
│     │ ├── string-width@4.2.0 deduped
│     │ ├─┬ strip-ansi@6.0.0
│     │ │ └── ansi-regex@5.0.0
│     │ └─┬ wrap-ansi@6.2.0
│     │   ├── ansi-styles@4.3.0 deduped
│     │   ├── string-width@4.2.0 deduped
│     │   └── strip-ansi@6.0.0 deduped
│     ├── decamelize@1.2.0 deduped
│     ├─┬ find-up@4.1.0
│     │ ├─┬ locate-path@5.0.0
│     │ │ └─┬ p-locate@4.1.0
│     │ │   └── p-limit@2.3.0 deduped
│     │ └── path-exists@4.0.0
│     ├── get-caller-file@2.0.5
│     ├── require-directory@2.1.1 deduped
│     ├── require-main-filename@2.0.0
│     ├── set-blocking@2.0.0 deduped
│     ├─┬ string-width@4.2.0
│     │ ├── emoji-regex@8.0.0
│     │ ├── is-fullwidth-code-point@3.0.0
│     │ └── strip-ansi@6.0.0 deduped
│     ├── which-module@2.0.0
│     ├── y18n@4.0.0
│     └─┬ yargs-parser@18.1.3
│       ├── camelcase@5.3.1
│       └── decamelize@1.2.0 deduped
├── UNMET PEER DEPENDENCY jquery@1.9.1 - 3
├─┬ node-sass@4.14.1
│ ├── async-foreach@0.1.3
│ ├─┬ chalk@1.1.3
│ │ ├── ansi-styles@2.2.1
│ │ ├── escape-string-regexp@1.0.5 deduped
│ │ ├─┬ has-ansi@2.0.0
│ │ │ └── ansi-regex@2.1.1
│ │ ├─┬ strip-ansi@3.0.1
│ │ │ └── ansi-regex@2.1.1 deduped
│ │ └── supports-color@2.0.0
│ ├─┬ cross-spawn@3.0.1
│ │ ├── lru-cache@4.1.5 deduped
│ │ └── which@1.3.1 deduped
│ ├─┬ gaze@1.1.3
│ │ └─┬ globule@1.3.2
│ │   ├─┬ glob@7.1.6
│ │   │ ├── fs.realpath@1.0.0 deduped
│ │   │ ├── inflight@1.0.6 deduped
│ │   │ ├── inherits@2.0.4 deduped
│ │   │ ├── minimatch@3.0.4 deduped
│ │   │ ├── once@1.4.0 deduped
│ │   │ └── path-is-absolute@1.0.1 deduped
│ │   ├── lodash@4.17.20 deduped
│ │   └── minimatch@3.0.4 deduped
│ ├── get-stdin@4.0.1
│ ├─┬ glob@7.1.6
│ │ ├── fs.realpath@1.0.0
│ │ ├─┬ inflight@1.0.6
│ │ │ ├── once@1.4.0 deduped
│ │ │ └── wrappy@1.0.2 deduped
│ │ ├── inherits@2.0.4 deduped
│ │ ├── minimatch@3.0.4 deduped
│ │ ├── once@1.4.0 deduped
│ │ └── path-is-absolute@1.0.1
│ ├── in-publish@2.0.1
│ ├── lodash@4.17.20 deduped
│ ├─┬ meow@3.7.0
│ │ ├─┬ camelcase-keys@2.1.0
│ │ │ ├── camelcase@2.1.1
│ │ │ └── map-obj@1.0.1 deduped
│ │ ├── decamelize@1.2.0 deduped
│ │ ├─┬ loud-rejection@1.6.0
│ │ │ ├─┬ currently-unhandled@0.4.1
│ │ │ │ └── array-find-index@1.0.2
│ │ │ └── signal-exit@3.0.3
│ │ ├── map-obj@1.0.1
│ │ ├── minimist@1.2.0 deduped
│ │ ├─┬ normalize-package-data@2.5.0
│ │ │ ├── hosted-git-info@2.8.5
│ │ │ ├── resolve@1.15.0 deduped
│ │ │ ├── semver@5.7.1 deduped
│ │ │ └─┬ validate-npm-package-license@3.0.4
│ │ │   ├─┬ spdx-correct@3.1.0
│ │ │   │ ├── spdx-expression-parse@3.0.0 deduped
│ │ │   │ └── spdx-license-ids@3.0.5
│ │ │   └─┬ spdx-expression-parse@3.0.0
│ │ │     ├── spdx-exceptions@2.2.0
│ │ │     └── spdx-license-ids@3.0.5 deduped
│ │ ├── object-assign@4.1.1 deduped
│ │ ├─┬ read-pkg-up@1.0.1
│ │ │ ├─┬ find-up@1.1.2
│ │ │ │ ├─┬ path-exists@2.1.0
│ │ │ │ │ └── pinkie-promise@2.0.1 deduped
│ │ │ │ └─┬ pinkie-promise@2.0.1
│ │ │ │   └── pinkie@2.0.4
│ │ │ └─┬ read-pkg@1.1.0
│ │ │   ├─┬ load-json-file@1.1.0
│ │ │   │ ├── graceful-fs@4.2.3 deduped
│ │ │   │ ├─┬ parse-json@2.2.0
│ │ │   │ │ └── error-ex@1.3.2 deduped
│ │ │   │ ├── pify@2.3.0 deduped
│ │ │   │ ├── pinkie-promise@2.0.1 deduped
│ │ │   │ └── strip-bom@2.0.0 deduped
│ │ │   ├── normalize-package-data@2.5.0 deduped
│ │ │   └─┬ path-type@1.1.0
│ │ │     ├── graceful-fs@4.2.3 deduped
│ │ │     ├── pify@2.3.0 deduped
│ │ │     └── pinkie-promise@2.0.1 deduped
│ │ ├─┬ redent@1.0.0
│ │ │ ├─┬ indent-string@2.1.0
│ │ │ │ └─┬ repeating@2.0.1
│ │ │ │   └── is-finite@1.1.0
│ │ │ └─┬ strip-indent@1.0.1
│ │ │   └── get-stdin@4.0.1
│ │ └── trim-newlines@1.0.0
│ ├─┬ mkdirp@0.5.1
│ │ └── minimist@0.0.8
│ ├── nan@2.14.0
│ ├─┬ node-gyp@3.8.0
│ │ ├─┬ fstream@1.0.12
│ │ │ ├── graceful-fs@4.2.3 deduped
│ │ │ ├── inherits@2.0.4 deduped
│ │ │ ├── mkdirp@0.5.1 deduped
│ │ │ └── rimraf@2.7.1 deduped
│ │ ├─┬ glob@7.1.6
│ │ │ ├── fs.realpath@1.0.0 deduped
│ │ │ ├── inflight@1.0.6 deduped
│ │ │ ├── inherits@2.0.4 deduped
│ │ │ ├── minimatch@3.0.4 deduped
│ │ │ ├── once@1.4.0 deduped
│ │ │ └── path-is-absolute@1.0.1 deduped
│ │ ├── graceful-fs@4.2.3 deduped
│ │ ├── mkdirp@0.5.1 deduped
│ │ ├─┬ nopt@3.0.6
│ │ │ └── abbrev@1.1.1
│ │ ├── npmlog@4.1.2 deduped
│ │ ├─┬ osenv@0.1.5
│ │ │ ├── os-homedir@1.0.2
│ │ │ └── os-tmpdir@1.0.2
│ │ ├── request@2.88.2 deduped
│ │ ├─┬ rimraf@2.7.1
│ │ │ └─┬ glob@7.1.6
│ │ │   ├── fs.realpath@1.0.0 deduped
│ │ │   ├── inflight@1.0.6 deduped
│ │ │   ├── inherits@2.0.4 deduped
│ │ │   ├── minimatch@3.0.4 deduped
│ │ │   ├── once@1.4.0 deduped
│ │ │   └── path-is-absolute@1.0.1 deduped
│ │ ├── semver@5.3.0
│ │ ├─┬ tar@2.2.2
│ │ │ ├─┬ block-stream@0.0.9
│ │ │ │ └── inherits@2.0.4 deduped
│ │ │ ├── fstream@1.0.12 deduped
│ │ │ └── inherits@2.0.4 deduped
│ │ └── which@1.3.1 deduped
│ ├─┬ npmlog@4.1.2
│ │ ├─┬ are-we-there-yet@1.1.5
│ │ │ ├── delegates@1.0.0
│ │ │ └── readable-stream@2.3.7 deduped
│ │ ├── console-control-strings@1.1.0
│ │ ├─┬ gauge@2.7.4
│ │ │ ├── aproba@1.2.0
│ │ │ ├── console-control-strings@1.1.0 deduped
│ │ │ ├── has-unicode@2.0.1
│ │ │ ├── object-assign@4.1.1 deduped
│ │ │ ├── signal-exit@3.0.3 deduped
│ │ │ ├── string-width@1.0.2 deduped
│ │ │ ├── strip-ansi@3.0.1 deduped
│ │ │ └─┬ wide-align@1.1.3
│ │ │   └── string-width@1.0.2 deduped
│ │ └── set-blocking@2.0.0 deduped
│ ├─┬ request@2.88.2
│ │ ├── aws-sign2@0.7.0
│ │ ├── aws4@1.10.1
│ │ ├── caseless@0.12.0
│ │ ├─┬ combined-stream@1.0.8
│ │ │ └── delayed-stream@1.0.0
│ │ ├── extend@3.0.2
│ │ ├── forever-agent@0.6.1
│ │ ├─┬ form-data@2.3.3
│ │ │ ├── asynckit@0.4.0
│ │ │ ├── combined-stream@1.0.8 deduped
│ │ │ └── mime-types@2.1.27 deduped
│ │ ├─┬ har-validator@5.1.5
│ │ │ ├── ajv@6.12.6 deduped
│ │ │ └── har-schema@2.0.0
│ │ ├─┬ http-signature@1.2.0
│ │ │ ├── assert-plus@1.0.0
│ │ │ ├─┬ jsprim@1.4.1
│ │ │ │ ├── assert-plus@1.0.0 deduped
│ │ │ │ ├── extsprintf@1.3.0
│ │ │ │ ├── json-schema@0.2.3
│ │ │ │ └─┬ verror@1.10.0
│ │ │ │   ├── assert-plus@1.0.0 deduped
│ │ │ │   ├── core-util-is@1.0.2 deduped
│ │ │ │   └── extsprintf@1.3.0 deduped
│ │ │ └─┬ sshpk@1.16.1
│ │ │   ├─┬ asn1@0.2.4
│ │ │   │ └── safer-buffer@2.1.2 deduped
│ │ │   ├── assert-plus@1.0.0 deduped
│ │ │   ├─┬ bcrypt-pbkdf@1.0.2
│ │ │   │ └── tweetnacl@0.14.5 deduped
│ │ │   ├─┬ dashdash@1.14.1
│ │ │   │ └── assert-plus@1.0.0 deduped
│ │ │   ├─┬ ecc-jsbn@0.1.2
│ │ │   │ ├── jsbn@0.1.1 deduped
│ │ │   │ └── safer-buffer@2.1.2 deduped
│ │ │   ├─┬ getpass@0.1.7
│ │ │   │ └── assert-plus@1.0.0 deduped
│ │ │   ├── jsbn@0.1.1
│ │ │   ├── safer-buffer@2.1.2 deduped
│ │ │   └── tweetnacl@0.14.5
│ │ ├── is-typedarray@1.0.0
│ │ ├── isstream@0.1.2
│ │ ├── json-stringify-safe@5.0.1
│ │ ├── mime-types@2.1.27 deduped
│ │ ├── oauth-sign@0.9.0
│ │ ├── performance-now@2.1.0
│ │ ├── qs@6.5.2
│ │ ├── safe-buffer@5.1.2 deduped
│ │ ├─┬ tough-cookie@2.5.0
│ │ │ ├── psl@1.8.0
│ │ │ └── punycode@2.1.1
│ │ ├─┬ tunnel-agent@0.6.0
│ │ │ └── safe-buffer@5.1.2 deduped
│ │ └── uuid@3.4.0
│ ├─┬ sass-graph@2.2.5
│ │ ├─┬ glob@7.1.6
│ │ │ ├── fs.realpath@1.0.0 deduped
│ │ │ ├── inflight@1.0.6 deduped
│ │ │ ├── inherits@2.0.4 deduped
│ │ │ ├── minimatch@3.0.4 deduped
│ │ │ ├── once@1.4.0 deduped
│ │ │ └── path-is-absolute@1.0.1 deduped
│ │ ├── lodash@4.17.20 deduped
│ │ ├─┬ scss-tokenizer@0.2.3
│ │ │ ├── js-base64@2.6.4
│ │ │ └─┬ source-map@0.4.4
│ │ │   └── amdefine@1.0.1
│ │ └── yargs@13.3.2 deduped
│ ├─┬ stdout-stream@1.4.1
│ │ └── readable-stream@2.3.7 deduped
│ └─┬ true-case-path@1.0.3
│   └─┬ glob@7.1.6
│     ├── fs.realpath@1.0.0 deduped
│     ├── inflight@1.0.6 deduped
│     ├── inherits@2.0.4 deduped
│     ├── minimatch@3.0.4 deduped
│     ├── once@1.4.0 deduped
│     └── path-is-absolute@1.0.1 deduped
├── UNMET PEER DEPENDENCY popper.js@^1.16.1
├─┬ react@16.14.0
│ ├─┬ loose-envify@1.4.0
│ │ └── js-tokens@4.0.0
│ ├── object-assign@4.1.1
│ └─┬ prop-types@15.7.2
│   ├── loose-envify@1.4.0 deduped
│   ├── object-assign@4.1.1 deduped
│   └── react-is@16.13.0 deduped
├─┬ react-dom@16.14.0
│ ├── loose-envify@1.4.0 deduped
│ ├── object-assign@4.1.1 deduped
│ ├── prop-types@15.7.2 deduped
│ └─┬ scheduler@0.19.1
│   ├── loose-envify@1.4.0 deduped
│   └── object-assign@4.1.1 deduped
├─┬ source-map-loader@1.1.1
│ ├── abab@2.0.5
│ ├─┬ iconv-lite@0.6.2
│ │ └── safer-buffer@2.1.2
│ ├─┬ loader-utils@2.0.0
│ │ ├── big.js@5.2.2 deduped
│ │ ├── emojis-list@3.0.0 deduped
│ │ └─┬ json5@2.1.3
│ │   └── minimist@1.2.5
│ ├─┬ schema-utils@3.0.0
│ │ ├── @types/json-schema@7.0.6 deduped
│ │ ├── ajv@6.12.6 deduped
│ │ └── ajv-keywords@3.5.2 deduped
│ ├── source-map@0.6.1 deduped
│ └── whatwg-mimetype@2.3.0
├─┬ ts-jest@26.4.1
│ ├── @types/jest@26.0.15 deduped
│ ├─┬ bs-logger@0.2.6
│ │ └── fast-json-stable-stringify@2.1.0 deduped
│ ├── buffer-from@1.1.1
│ ├── fast-json-stable-stringify@2.1.0
│ ├─┬ jest-util@26.3.0
│ │ ├─┬ @jest/types@26.3.0
│ │ │ ├── @types/istanbul-lib-coverage@2.0.3 deduped
│ │ │ ├── @types/istanbul-reports@3.0.0 deduped
│ │ │ ├── @types/node@13.5.0 deduped
│ │ │ ├── @types/yargs@15.0.7 deduped
│ │ │ └─┬ chalk@4.1.0
│ │ │   ├─┬ ansi-styles@4.2.1
│ │ │   │ ├── @types/color-name@1.1.1 deduped
│ │ │   │ └─┬ color-convert@2.0.1
│ │ │   │   └── color-name@1.1.4
│ │ │   └─┬ supports-color@7.2.0
│ │ │     └── has-flag@4.0.0
│ │ ├── @types/node@13.5.0 deduped
│ │ ├─┬ chalk@4.1.0
│ │ │ ├─┬ ansi-styles@4.2.1
│ │ │ │ ├── @types/color-name@1.1.1
│ │ │ │ └─┬ color-convert@2.0.1
│ │ │ │   └── color-name@1.1.4
│ │ │ └─┬ supports-color@7.2.0
│ │ │   └── has-flag@4.0.0
│ │ ├── graceful-fs@4.2.4
│ │ ├── is-ci@2.0.0 deduped
│ │ └─┬ micromatch@4.0.2
│ │   ├─┬ braces@3.0.2
│ │   │ └─┬ fill-range@7.0.1
│ │   │   └─┬ to-regex-range@5.0.1
│ │   │     └── is-number@7.0.0
│ │   └── picomatch@2.2.1 deduped
│ ├─┬ json5@2.1.3
│ │ └── minimist@1.2.5
│ ├── lodash.memoize@4.1.2
│ ├── make-error@1.3.6
│ ├── mkdirp@1.0.4
│ ├── semver@7.3.2
│ └── yargs-parser@20.2.1
├─┬ ts-loader@6.2.2
│ ├─┬ chalk@2.4.2
│ │ ├─┬ ansi-styles@3.2.1
│ │ │ └── color-convert@1.9.3 deduped
│ │ ├── escape-string-regexp@1.0.5 deduped
│ │ └─┬ supports-color@5.5.0
│ │   └── has-flag@3.0.0 deduped
│ ├─┬ enhanced-resolve@4.3.0
│ │ ├── graceful-fs@4.2.3 deduped
│ │ ├─┬ memory-fs@0.5.0
│ │ │ ├── errno@0.1.7 deduped
│ │ │ └── readable-stream@2.3.7 deduped
│ │ └── tapable@1.1.3 deduped
│ ├── loader-utils@1.4.0 deduped
│ ├─┬ micromatch@4.0.2
│ │ ├─┬ braces@3.0.2
│ │ │ └─┬ fill-range@7.0.1
│ │ │   └─┬ to-regex-range@5.0.1
│ │ │     └── is-number@7.0.0
│ │ └── picomatch@2.2.1 deduped
│ └── semver@6.3.0
├── typescript@4.0.3
├─┬ webpack@4.44.2
│ ├─┬ @webassemblyjs/ast@1.9.0
│ │ ├── @webassemblyjs/helper-module-context@1.9.0 deduped
│ │ ├── @webassemblyjs/helper-wasm-bytecode@1.9.0
│ │ └─┬ @webassemblyjs/wast-parser@1.9.0
│ │   ├── @webassemblyjs/ast@1.9.0 deduped
│ │   ├── @webassemblyjs/floating-point-hex-parser@1.9.0
│ │   ├── @webassemblyjs/helper-api-error@1.9.0 deduped
│ │   ├─┬ @webassemblyjs/helper-code-frame@1.9.0
│ │   │ └── @webassemblyjs/wast-printer@1.9.0 deduped
│ │   ├── @webassemblyjs/helper-fsm@1.9.0
│ │   └── @xtuc/long@4.2.2
│ ├─┬ @webassemblyjs/helper-module-context@1.9.0
│ │ └── @webassemblyjs/ast@1.9.0 deduped
│ ├─┬ @webassemblyjs/wasm-edit@1.9.0
│ │ ├── @webassemblyjs/ast@1.9.0 deduped
│ │ ├── @webassemblyjs/helper-buffer@1.9.0
│ │ ├── @webassemblyjs/helper-wasm-bytecode@1.9.0 deduped
│ │ ├─┬ @webassemblyjs/helper-wasm-section@1.9.0
│ │ │ ├── @webassemblyjs/ast@1.9.0 deduped
│ │ │ ├── @webassemblyjs/helper-buffer@1.9.0 deduped
│ │ │ ├── @webassemblyjs/helper-wasm-bytecode@1.9.0 deduped
│ │ │ └── @webassemblyjs/wasm-gen@1.9.0 deduped
│ │ ├─┬ @webassemblyjs/wasm-gen@1.9.0
│ │ │ ├── @webassemblyjs/ast@1.9.0 deduped
│ │ │ ├── @webassemblyjs/helper-wasm-bytecode@1.9.0 deduped
│ │ │ ├── @webassemblyjs/ieee754@1.9.0 deduped
│ │ │ ├── @webassemblyjs/leb128@1.9.0 deduped
│ │ │ └── @webassemblyjs/utf8@1.9.0 deduped
│ │ ├─┬ @webassemblyjs/wasm-opt@1.9.0
│ │ │ ├── @webassemblyjs/ast@1.9.0 deduped
│ │ │ ├── @webassemblyjs/helper-buffer@1.9.0 deduped
│ │ │ ├── @webassemblyjs/wasm-gen@1.9.0 deduped
│ │ │ └── @webassemblyjs/wasm-parser@1.9.0 deduped
│ │ ├── @webassemblyjs/wasm-parser@1.9.0 deduped
│ │ └─┬ @webassemblyjs/wast-printer@1.9.0
│ │   ├── @webassemblyjs/ast@1.9.0 deduped
│ │   ├── @webassemblyjs/wast-parser@1.9.0 deduped
│ │   └── @xtuc/long@4.2.2 deduped
│ ├─┬ @webassemblyjs/wasm-parser@1.9.0
│ │ ├── @webassemblyjs/ast@1.9.0 deduped
│ │ ├── @webassemblyjs/helper-api-error@1.9.0
│ │ ├── @webassemblyjs/helper-wasm-bytecode@1.9.0 deduped
│ │ ├─┬ @webassemblyjs/ieee754@1.9.0
│ │ │ └── @xtuc/ieee754@1.2.0
│ │ ├─┬ @webassemblyjs/leb128@1.9.0
│ │ │ └── @xtuc/long@4.2.2 deduped
│ │ └── @webassemblyjs/utf8@1.9.0
│ ├── acorn@6.4.2
│ ├─┬ ajv@6.12.6
│ │ ├── fast-deep-equal@3.1.3
│ │ ├── fast-json-stable-stringify@2.1.0 deduped
│ │ ├── json-schema-traverse@0.4.1
│ │ └─┬ uri-js@4.4.0
│ │   └── punycode@2.1.1 deduped
│ ├── ajv-keywords@3.5.2
│ ├─┬ chrome-trace-event@1.0.2
│ │ └── tslib@1.14.1
│ ├── enhanced-resolve@4.3.0 deduped
│ ├─┬ eslint-scope@4.0.3
│ │ ├─┬ esrecurse@4.3.0
│ │ │ └── estraverse@5.2.0
│ │ └── estraverse@4.3.0
│ ├── json-parse-better-errors@1.0.2
│ ├── loader-runner@2.4.0
│ ├── loader-utils@1.4.0 deduped
│ ├─┬ memory-fs@0.4.1
│ │ ├─┬ errno@0.1.7
│ │ │ └── prr@1.0.1
│ │ └── readable-stream@2.3.7 deduped
│ ├─┬ micromatch@3.1.10
│ │ ├── arr-diff@4.0.0
│ │ ├── array-unique@0.3.2
│ │ ├─┬ braces@2.3.2
│ │ │ ├── arr-flatten@1.1.0 deduped
│ │ │ ├── array-unique@0.3.2 deduped
│ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ ├─┬ fill-range@4.0.0
│ │ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ ├─┬ is-number@3.0.0
│ │ │ │ │ └─┬ kind-of@3.2.2
│ │ │ │ │   └── is-buffer@1.1.6 deduped
│ │ │ │ ├── repeat-string@1.6.1 deduped
│ │ │ │ └── to-regex-range@2.1.1 deduped
│ │ │ ├── isobject@3.0.1 deduped
│ │ │ ├── repeat-element@1.1.3 deduped
│ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ ├── snapdragon-node@2.1.1 deduped
│ │ │ ├── split-string@3.1.0 deduped
│ │ │ └── to-regex@3.0.2 deduped
│ │ ├─┬ define-property@2.0.2
│ │ │ ├─┬ is-descriptor@1.0.2
│ │ │ │ ├─┬ is-accessor-descriptor@1.0.0
│ │ │ │ │ └── kind-of@6.0.3 deduped
│ │ │ │ ├─┬ is-data-descriptor@1.0.0
│ │ │ │ │ └── kind-of@6.0.3 deduped
│ │ │ │ └── kind-of@6.0.3 deduped
│ │ │ └── isobject@3.0.1 deduped
│ │ ├─┬ extend-shallow@3.0.2
│ │ │ ├── assign-symbols@1.0.0 deduped
│ │ │ └─┬ is-extendable@1.0.1
│ │ │   └── is-plain-object@2.0.4 deduped
│ │ ├─┬ extglob@2.0.4
│ │ │ ├── array-unique@0.3.2 deduped
│ │ │ ├─┬ define-property@1.0.0
│ │ │ │ └── is-descriptor@1.0.2 deduped
│ │ │ ├─┬ expand-brackets@2.1.4
│ │ │ │ ├── debug@2.6.9 deduped
│ │ │ │ ├─┬ define-property@0.2.5
│ │ │ │ │ └─┬ is-descriptor@0.1.6
│ │ │ │ │   ├─┬ is-accessor-descriptor@0.1.6
│ │ │ │ │   │ └─┬ kind-of@3.2.2
│ │ │ │ │   │   └── is-buffer@1.1.6 deduped
│ │ │ │ │   ├─┬ is-data-descriptor@0.1.4
│ │ │ │ │   │ └─┬ kind-of@3.2.2
│ │ │ │ │   │   └── is-buffer@1.1.6 deduped
│ │ │ │ │   └── kind-of@5.1.0
│ │ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ ├── posix-character-classes@0.1.1 deduped
│ │ │ │ ├── regex-not@1.0.2 deduped
│ │ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ │ └── to-regex@3.0.2 deduped
│ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ ├── fragment-cache@0.2.1 deduped
│ │ │ ├── regex-not@1.0.2 deduped
│ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ └── to-regex@3.0.2 deduped
│ │ ├── fragment-cache@0.2.1 deduped
│ │ ├── kind-of@6.0.3
│ │ ├── nanomatch@1.2.13 deduped
│ │ ├── object.pick@1.3.0 deduped
│ │ ├── regex-not@1.0.2 deduped
│ │ ├── snapdragon@0.8.2 deduped
│ │ └── to-regex@3.0.2 deduped
│ ├─┬ mkdirp@0.5.5
│ │ └── minimist@1.2.5
│ ├── neo-async@2.6.1
│ ├─┬ node-libs-browser@2.2.1
│ │ ├─┬ assert@1.5.0
│ │ │ ├── object-assign@4.1.1 deduped
│ │ │ └─┬ util@0.10.3
│ │ │   └── inherits@2.0.1
│ │ ├─┬ browserify-zlib@0.2.0
│ │ │ └── pako@1.0.11
│ │ ├─┬ buffer@4.9.2
│ │ │ ├── base64-js@1.3.1
│ │ │ ├── ieee754@1.1.13
│ │ │ └── isarray@1.0.0 deduped
│ │ ├── console-browserify@1.2.0
│ │ ├── constants-browserify@1.0.0
│ │ ├─┬ crypto-browserify@3.12.0
│ │ │ ├─┬ browserify-cipher@1.0.1
│ │ │ │ ├─┬ browserify-aes@1.2.0
│ │ │ │ │ ├── buffer-xor@1.0.3
│ │ │ │ │ ├── cipher-base@1.0.4 deduped
│ │ │ │ │ ├── create-hash@1.2.0 deduped
│ │ │ │ │ ├── evp_bytestokey@1.0.3 deduped
│ │ │ │ │ ├── inherits@2.0.4 deduped
│ │ │ │ │ └── safe-buffer@5.1.2 deduped
│ │ │ │ ├─┬ browserify-des@1.0.2
│ │ │ │ │ ├── cipher-base@1.0.4 deduped
│ │ │ │ │ ├─┬ des.js@1.0.1
│ │ │ │ │ │ ├── inherits@2.0.4 deduped
│ │ │ │ │ │ └── minimalistic-assert@1.0.1 deduped
│ │ │ │ │ ├── inherits@2.0.4 deduped
│ │ │ │ │ └── safe-buffer@5.1.2 deduped
│ │ │ │ └─┬ evp_bytestokey@1.0.3
│ │ │ │   ├── md5.js@1.3.5 deduped
│ │ │ │   └── safe-buffer@5.1.2 deduped
│ │ │ ├─┬ browserify-sign@4.2.1
│ │ │ │ ├── bn.js@5.1.3
│ │ │ │ ├─┬ browserify-rsa@4.0.1
│ │ │ │ │ ├── bn.js@4.11.9
│ │ │ │ │ └── randombytes@2.1.0 deduped
│ │ │ │ ├── create-hash@1.2.0 deduped
│ │ │ │ ├── create-hmac@1.1.7 deduped
│ │ │ │ ├─┬ elliptic@6.5.3
│ │ │ │ │ ├── bn.js@4.11.9
│ │ │ │ │ ├── brorand@1.1.0
│ │ │ │ │ ├─┬ hash.js@1.1.7
│ │ │ │ │ │ ├── inherits@2.0.4 deduped
│ │ │ │ │ │ └── minimalistic-assert@1.0.1 deduped
│ │ │ │ │ ├─┬ hmac-drbg@1.0.1
│ │ │ │ │ │ ├── hash.js@1.1.7 deduped
│ │ │ │ │ │ ├── minimalistic-assert@1.0.1 deduped
│ │ │ │ │ │ └── minimalistic-crypto-utils@1.0.1 deduped
│ │ │ │ │ ├── inherits@2.0.4 deduped
│ │ │ │ │ ├── minimalistic-assert@1.0.1
│ │ │ │ │ └── minimalistic-crypto-utils@1.0.1
│ │ │ │ ├── inherits@2.0.4 deduped
│ │ │ │ ├─┬ parse-asn1@5.1.6
│ │ │ │ │ ├─┬ asn1.js@5.4.1
│ │ │ │ │ │ ├── bn.js@4.11.9
│ │ │ │ │ │ ├── inherits@2.0.4 deduped
│ │ │ │ │ │ ├── minimalistic-assert@1.0.1 deduped
│ │ │ │ │ │ └── safer-buffer@2.1.2 deduped
│ │ │ │ │ ├── browserify-aes@1.2.0 deduped
│ │ │ │ │ ├── evp_bytestokey@1.0.3 deduped
│ │ │ │ │ ├── pbkdf2@3.1.1 deduped
│ │ │ │ │ └── safe-buffer@5.1.2 deduped
│ │ │ │ ├─┬ readable-stream@3.6.0
│ │ │ │ │ ├── inherits@2.0.4 deduped
│ │ │ │ │ ├── string_decoder@1.1.1 deduped
│ │ │ │ │ └── util-deprecate@1.0.2 deduped
│ │ │ │ └── safe-buffer@5.2.1
│ │ │ ├─┬ create-ecdh@4.0.4
│ │ │ │ ├── bn.js@4.11.9
│ │ │ │ └── elliptic@6.5.3 deduped
│ │ │ ├─┬ create-hash@1.2.0
│ │ │ │ ├─┬ cipher-base@1.0.4
│ │ │ │ │ ├── inherits@2.0.4 deduped
│ │ │ │ │ └── safe-buffer@5.1.2 deduped
│ │ │ │ ├── inherits@2.0.4 deduped
│ │ │ │ ├─┬ md5.js@1.3.5
│ │ │ │ │ ├─┬ hash-base@3.1.0
│ │ │ │ │ │ ├── inherits@2.0.4 deduped
│ │ │ │ │ │ ├─┬ readable-stream@3.6.0
│ │ │ │ │ │ │ ├── inherits@2.0.4 deduped
│ │ │ │ │ │ │ ├── string_decoder@1.1.1 deduped
│ │ │ │ │ │ │ └── util-deprecate@1.0.2 deduped
│ │ │ │ │ │ └── safe-buffer@5.2.1
│ │ │ │ │ ├── inherits@2.0.4 deduped
│ │ │ │ │ └── safe-buffer@5.1.2 deduped
│ │ │ │ ├─┬ ripemd160@2.0.2
│ │ │ │ │ ├── hash-base@3.1.0 deduped
│ │ │ │ │ └── inherits@2.0.4 deduped
│ │ │ │ └─┬ sha.js@2.4.11
│ │ │ │   ├── inherits@2.0.4 deduped
│ │ │ │   └── safe-buffer@5.1.2 deduped
│ │ │ ├─┬ create-hmac@1.1.7
│ │ │ │ ├── cipher-base@1.0.4 deduped
│ │ │ │ ├── create-hash@1.2.0 deduped
│ │ │ │ ├── inherits@2.0.4 deduped
│ │ │ │ ├── ripemd160@2.0.2 deduped
│ │ │ │ ├── safe-buffer@5.1.2 deduped
│ │ │ │ └── sha.js@2.4.11 deduped
│ │ │ ├─┬ diffie-hellman@5.0.3
│ │ │ │ ├── bn.js@4.11.9
│ │ │ │ ├─┬ miller-rabin@4.0.1
│ │ │ │ │ ├── bn.js@4.11.9
│ │ │ │ │ └── brorand@1.1.0 deduped
│ │ │ │ └── randombytes@2.1.0 deduped
│ │ │ ├── inherits@2.0.4 deduped
│ │ │ ├─┬ pbkdf2@3.1.1
│ │ │ │ ├── create-hash@1.2.0 deduped
│ │ │ │ ├── create-hmac@1.1.7 deduped
│ │ │ │ ├── ripemd160@2.0.2 deduped
│ │ │ │ ├── safe-buffer@5.1.2 deduped
│ │ │ │ └── sha.js@2.4.11 deduped
│ │ │ ├─┬ public-encrypt@4.0.3
│ │ │ │ ├── bn.js@4.11.9
│ │ │ │ ├── browserify-rsa@4.0.1 deduped
│ │ │ │ ├── create-hash@1.2.0 deduped
│ │ │ │ ├── parse-asn1@5.1.6 deduped
│ │ │ │ ├── randombytes@2.1.0 deduped
│ │ │ │ └── safe-buffer@5.1.2 deduped
│ │ │ ├─┬ randombytes@2.1.0
│ │ │ │ └── safe-buffer@5.1.2 deduped
│ │ │ └─┬ randomfill@1.0.4
│ │ │   ├── randombytes@2.1.0 deduped
│ │ │   └── safe-buffer@5.1.2 deduped
│ │ ├── domain-browser@1.2.0
│ │ ├── events@3.2.0
│ │ ├── https-browserify@1.0.0
│ │ ├── os-browserify@0.3.0
│ │ ├── path-browserify@0.0.1
│ │ ├── process@0.11.10
│ │ ├── punycode@1.4.1
│ │ ├── querystring-es3@0.2.1
│ │ ├── readable-stream@2.3.7 deduped
│ │ ├─┬ stream-browserify@2.0.2
│ │ │ ├── inherits@2.0.4 deduped
│ │ │ └── readable-stream@2.3.7 deduped
│ │ ├─┬ stream-http@2.8.3
│ │ │ ├── builtin-status-codes@3.0.0
│ │ │ ├── inherits@2.0.4 deduped
│ │ │ ├── readable-stream@2.3.7 deduped
│ │ │ ├── to-arraybuffer@1.0.1
│ │ │ └── xtend@4.0.2 deduped
│ │ ├─┬ string_decoder@1.1.1
│ │ │ └── safe-buffer@5.1.2 deduped
│ │ ├─┬ timers-browserify@2.0.11
│ │ │ └── setimmediate@1.0.5
│ │ ├── tty-browserify@0.0.0
│ │ ├─┬ url@0.11.0
│ │ │ ├── punycode@1.3.2
│ │ │ └── querystring@0.2.0
│ │ ├─┬ util@0.11.1
│ │ │ └── inherits@2.0.3
│ │ └── vm-browserify@1.1.2
│ ├─┬ schema-utils@1.0.0
│ │ ├── ajv@6.12.6 deduped
│ │ ├── ajv-errors@1.0.1
│ │ └── ajv-keywords@3.5.2 deduped
│ ├── tapable@1.1.3 deduped
│ ├─┬ terser-webpack-plugin@1.4.5
│ │ ├─┬ cacache@12.0.4
│ │ │ ├── bluebird@3.7.2
│ │ │ ├── chownr@1.1.4
│ │ │ ├── figgy-pudding@3.5.2
│ │ │ ├─┬ glob@7.1.6
│ │ │ │ ├── fs.realpath@1.0.0 deduped
│ │ │ │ ├── inflight@1.0.6 deduped
│ │ │ │ ├── inherits@2.0.4 deduped
│ │ │ │ ├── minimatch@3.0.4 deduped
│ │ │ │ ├── once@1.4.0 deduped
│ │ │ │ └── path-is-absolute@1.0.1 deduped
│ │ │ ├── graceful-fs@4.2.3 deduped
│ │ │ ├── infer-owner@1.0.4
│ │ │ ├─┬ lru-cache@5.1.1
│ │ │ │ └── yallist@3.1.1
│ │ │ ├─┬ mississippi@3.0.0
│ │ │ │ ├── concat-stream@1.6.2 deduped
│ │ │ │ ├── duplexify@3.7.1 deduped
│ │ │ │ ├── end-of-stream@1.4.4 deduped
│ │ │ │ ├── flush-write-stream@1.1.1 deduped
│ │ │ │ ├─┬ from2@2.3.0
│ │ │ │ │ ├── inherits@2.0.4 deduped
│ │ │ │ │ └── readable-stream@2.3.7 deduped
│ │ │ │ ├─┬ parallel-transform@1.2.0
│ │ │ │ │ ├── cyclist@1.0.1
│ │ │ │ │ ├── inherits@2.0.4 deduped
│ │ │ │ │ └── readable-stream@2.3.7 deduped
│ │ │ │ ├─┬ pump@3.0.0
│ │ │ │ │ ├── end-of-stream@1.4.4 deduped
│ │ │ │ │ └── once@1.4.0 deduped
│ │ │ │ ├── pumpify@1.5.1 deduped
│ │ │ │ ├─┬ stream-each@1.2.3
│ │ │ │ │ ├── end-of-stream@1.4.4 deduped
│ │ │ │ │ └── stream-shift@1.0.1 deduped
│ │ │ │ └── through2@2.0.5 deduped
│ │ │ ├── mkdirp@0.5.1 deduped
│ │ │ ├─┬ move-concurrently@1.0.1
│ │ │ │ ├── aproba@1.2.0 deduped
│ │ │ │ ├─┬ copy-concurrently@1.0.5
│ │ │ │ │ ├── aproba@1.2.0 deduped
│ │ │ │ │ ├── fs-write-stream-atomic@1.0.10 deduped
│ │ │ │ │ ├── iferr@0.1.5
│ │ │ │ │ ├── mkdirp@0.5.1 deduped
│ │ │ │ │ ├── rimraf@2.7.1 deduped
│ │ │ │ │ └── run-queue@1.0.3 deduped
│ │ │ │ ├─┬ fs-write-stream-atomic@1.0.10
│ │ │ │ │ ├── graceful-fs@4.2.3 deduped
│ │ │ │ │ ├── iferr@0.1.5 deduped
│ │ │ │ │ ├── imurmurhash@0.1.4 deduped
│ │ │ │ │ └── readable-stream@2.3.7 deduped
│ │ │ │ ├── mkdirp@0.5.1 deduped
│ │ │ │ ├── rimraf@2.7.1 deduped
│ │ │ │ └─┬ run-queue@1.0.3
│ │ │ │   └── aproba@1.2.0 deduped
│ │ │ ├── promise-inflight@1.0.1
│ │ │ ├── rimraf@2.7.1 deduped
│ │ │ ├─┬ ssri@6.0.1
│ │ │ │ └── figgy-pudding@3.5.2 deduped
│ │ │ ├─┬ unique-filename@1.1.1
│ │ │ │ └─┬ unique-slug@2.0.2
│ │ │ │   └── imurmurhash@0.1.4 deduped
│ │ │ └── y18n@4.0.0
│ │ ├─┬ find-cache-dir@2.1.0
│ │ │ ├── commondir@1.0.1
│ │ │ ├─┬ make-dir@2.1.0
│ │ │ │ ├── pify@4.0.1
│ │ │ │ └── semver@5.7.1 deduped
│ │ │ └─┬ pkg-dir@3.0.0
│ │ │   └─┬ find-up@3.0.0
│ │ │     └── locate-path@3.0.0 deduped
│ │ ├── is-wsl@1.1.0 deduped
│ │ ├─┬ schema-utils@1.0.0
│ │ │ ├── ajv@6.12.6 deduped
│ │ │ ├── ajv-errors@1.0.1 deduped
│ │ │ └── ajv-keywords@3.5.2 deduped
│ │ ├─┬ serialize-javascript@4.0.0
│ │ │ └── randombytes@2.1.0 deduped
│ │ ├── source-map@0.6.1 deduped
│ │ ├─┬ terser@4.8.0
│ │ │ ├── commander@2.20.3 deduped
│ │ │ ├── source-map@0.6.1 deduped
│ │ │ └── source-map-support@0.5.16 deduped
│ │ ├── webpack-sources@1.4.3 deduped
│ │ └─┬ worker-farm@1.7.0
│ │   └── errno@0.1.7 deduped
│ ├─┬ watchpack@1.7.4
│ │ ├─┬ chokidar@3.4.3
│ │ │ ├─┬ anymatch@3.1.1
│ │ │ │ ├── normalize-path@3.0.0 deduped
│ │ │ │ └── picomatch@2.2.1 deduped
│ │ │ ├─┬ braces@3.0.2
│ │ │ │ └─┬ fill-range@7.0.1
│ │ │ │   └─┬ to-regex-range@5.0.1
│ │ │ │     └── is-number@7.0.0
│ │ │ ├── UNMET OPTIONAL DEPENDENCY fsevents@2.1.3
│ │ │ ├─┬ glob-parent@5.1.1
│ │ │ │ └── is-glob@4.0.1 deduped
│ │ │ ├─┬ is-binary-path@2.1.0
│ │ │ │ └── binary-extensions@2.1.0
│ │ │ ├─┬ is-glob@4.0.1
│ │ │ │ └── is-extglob@2.1.1 deduped
│ │ │ ├── normalize-path@3.0.0
│ │ │ └─┬ readdirp@3.5.0
│ │ │   └── picomatch@2.2.1 deduped
│ │ ├── graceful-fs@4.2.3 deduped
│ │ ├── neo-async@2.6.1 deduped
│ │ └─┬ watchpack-chokidar2@2.0.0
│ │   └── chokidar@2.1.8 deduped
│ └─┬ webpack-sources@1.4.3
│   ├── source-list-map@2.0.1
│   └── source-map@0.6.1 deduped
├─┬ webpack-stream@5.2.1
│ ├─┬ fancy-log@1.3.3
│ │ ├─┬ ansi-gray@0.1.1
│ │ │ └── ansi-wrap@0.1.0 deduped
│ │ ├── color-support@1.1.3 deduped
│ │ ├── parse-node-version@1.0.1
│ │ └── time-stamp@1.1.0 deduped
│ ├── lodash.clone@4.5.0
│ ├── lodash.some@4.6.0
│ ├── memory-fs@0.4.1 deduped
│ ├─┬ plugin-error@1.0.1
│ │ ├─┬ ansi-colors@1.1.0
│ │ │ └── ansi-wrap@0.1.0 deduped
│ │ ├── arr-diff@4.0.0
│ │ ├── arr-union@3.1.0
│ │ └─┬ extend-shallow@3.0.2
│ │   ├── assign-symbols@1.0.0 deduped
│ │   └─┬ is-extendable@1.0.1
│ │     └── is-plain-object@2.0.4 deduped
│ ├─┬ supports-color@5.5.0
│ │ └── has-flag@3.0.0
│ ├── through@2.3.8 deduped
│ ├─┬ vinyl@2.2.0
│ │ ├── clone@2.1.2
│ │ ├── clone-buffer@1.0.0 deduped
│ │ ├── clone-stats@1.0.0
│ │ ├── cloneable-readable@1.1.3 deduped
│ │ ├── remove-trailing-separator@1.1.0 deduped
│ │ └── replace-ext@1.0.0
│ └── webpack@4.44.2 deduped
└─┬ yargs@13.3.2
  ├─┬ cliui@5.0.0
  │ ├── string-width@3.1.0 deduped
  │ ├─┬ strip-ansi@5.2.0
  │ │ └── ansi-regex@4.1.0
  │ └─┬ wrap-ansi@5.1.0
  │   ├─┬ ansi-styles@3.2.1
  │   │ └── color-convert@1.9.3 deduped
  │   ├── string-width@3.1.0 deduped
  │   └── strip-ansi@5.2.0 deduped
  ├─┬ find-up@3.0.0
  │ └─┬ locate-path@3.0.0
  │   ├─┬ p-locate@3.0.0
  │   │ └─┬ p-limit@2.3.0
  │   │   └── p-try@2.2.0
  │   └── path-exists@3.0.0
  ├── get-caller-file@2.0.5
  ├── require-directory@2.1.1
  ├── require-main-filename@2.0.0
  ├── set-blocking@2.0.0
  ├─┬ string-width@3.1.0
  │ ├── emoji-regex@7.0.3
  │ ├── is-fullwidth-code-point@2.0.0
  │ └── strip-ansi@5.2.0 deduped
  ├── which-module@2.0.0
  ├── y18n@4.0.0
  └─┬ yargs-parser@13.1.2
    ├── camelcase@5.3.1
    └── decamelize@1.2.0 deduped