spatie / laravel-mix-purgecss

Zero-config Purgecss for Laravel Mix
https://spatie.be/en/opensource
MIT License
874 stars 38 forks source link

laravel-mix v2.1.7 - doesn't work #22

Closed cjmaxik closed 6 years ago

cjmaxik commented 6 years ago

laravel-mix-purgecss doesn't do anything after Laravel Mix update to v2.1.7

sebastiandedeyne commented 6 years ago

Laravel Mix 2.1 has some rewritten internals regarding Webpack, I assume something became incompatible. I'll see what we can do next week, for now consider staying on 2.0.

cjmaxik commented 6 years ago

It works on v2.1.1 actually. Waiting for the update, thanks.

sebastiandedeyne commented 6 years ago

I just upgraded to laravel-mix 2.1.7 and laravel-mix-purgecss 1.0.5, and it seems to work fine. Could youβ€”or anyone else experiencing this issueβ€”post the contents of npm ls / yarn list?

stefanzweifel commented 6 years ago

I experience a similar "bug" after upgrading to laravel-mix@2.1.8. But it seems it's not a problem with laravel-mix-purgecss or purgecss (I've reverted back to my own purgecss webpack config script and it seems to not work either with laravel-mix@2.1.8).

Build with laravel-mix@2.0.0

screen-shot-2018-03-19-20-35-45

Build with laravel-mix@2.1.9

screen-shot-2018-03-19-20-37-14

So it seems something broke between 2.0.0 and 2.1.9. See the 2 chunk names for the CSS files πŸ€”

Current webpack.mix.js
const { mix } = require('laravel-mix');
const tailwindcss = require('tailwindcss');
require('laravel-mix-purgecss');

mix.setPublicPath('dist/');

mix
  .js('src/js/main.js', 'dist/assets/js/main.js')
  .postCss('src/css/2018.css', 'dist/assets/css', [
    tailwindcss('./tailwind.js'),
  ])
  .version()
  .purgeCss({
    enabled: mix.inProduction(),
    globs: [
        path.join(__dirname, 'dist/site/snippets/**/*.blade.php'),
        path.join(__dirname, 'dist/site/snippets/**/*.php'),
        path.join(__dirname, 'dist/site/templates/**/*.blade.php'),
        path.join(__dirname, 'dist/site/templates/**/*.php')
    ],
    extensions: ['html', 'js', 'php'],
    whitelist: ['a', 'blockquote', 'p', 'h1', 'h2', 'h3', 'h4', 'ul', 'ol', 'figure', 'figcaption', 'img', 'pre', 'code', 'footnotes', 'border', 'border-solid'],
    whitelistPatterns: [/turbolinks-progress-bar/]
  });
Output yarn list
yarn list v1.5.1
β”œβ”€ abbrev@1.1.1
β”œβ”€ accepts@1.3.5
β”‚  β”œβ”€ mime-types@~2.1.18
β”‚  └─ negotiator@0.6.1
β”œβ”€ acorn-dynamic-import@2.0.2
β”‚  β”œβ”€ acorn@^4.0.3
β”‚  └─ acorn@4.0.13
β”œβ”€ acorn@5.5.3
β”œβ”€ adjust-sourcemap-loader@1.2.0
β”‚  β”œβ”€ assert@^1.3.0
β”‚  β”œβ”€ camelcase@^1.2.1
β”‚  β”œβ”€ camelcase@1.2.1
β”‚  β”œβ”€ loader-utils@^1.1.0
β”‚  β”œβ”€ lodash.assign@^4.0.1
β”‚  β”œβ”€ lodash.defaults@^3.1.2
β”‚  β”œβ”€ lodash.defaults@3.1.2
β”‚  β”‚  β”œβ”€ lodash.assign@^3.0.0
β”‚  β”‚  β”œβ”€ lodash.assign@3.2.0
β”‚  β”‚  β”‚  β”œβ”€ lodash._baseassign@^3.0.0
β”‚  β”‚  β”‚  β”œβ”€ lodash._createassigner@^3.0.0
β”‚  β”‚  β”‚  └─ lodash.keys@^3.0.0
β”‚  β”‚  └─ lodash.restparam@^3.0.0
β”‚  β”œβ”€ object-path@^0.9.2
β”‚  └─ regex-parser@^2.2.9
β”œβ”€ ajv-keywords@3.1.0
β”œβ”€ ajv@5.5.2
β”‚  β”œβ”€ co@^4.6.0
β”‚  β”œβ”€ fast-deep-equal@^1.0.0
β”‚  β”œβ”€ fast-json-stable-stringify@^2.0.0
β”‚  └─ json-schema-traverse@^0.3.0
β”œβ”€ align-text@0.1.4
β”‚  β”œβ”€ kind-of@^3.0.2
β”‚  β”œβ”€ longest@^1.0.1
β”‚  └─ repeat-string@^1.5.2
β”œβ”€ alphanum-sort@1.0.2
β”œβ”€ amdefine@1.0.1
β”œβ”€ ansi-align@2.0.0
β”‚  β”œβ”€ ansi-regex@3.0.0
β”‚  β”œβ”€ is-fullwidth-code-point@2.0.0
β”‚  β”œβ”€ string-width@^2.0.0
β”‚  β”œβ”€ string-width@2.1.1
β”‚  β”‚  β”œβ”€ is-fullwidth-code-point@^2.0.0
β”‚  β”‚  └─ strip-ansi@^4.0.0
β”‚  └─ strip-ansi@4.0.0
β”‚     └─ ansi-regex@^3.0.0
β”œβ”€ ansi-gray@0.1.1
β”‚  └─ ansi-wrap@0.1.0
β”œβ”€ ansi-html@0.0.7
β”œβ”€ ansi-regex@2.1.1
β”œβ”€ ansi-styles@2.2.1
β”œβ”€ ansi-wrap@0.1.0
β”œβ”€ anymatch@2.0.0
β”‚  β”œβ”€ define-property@2.0.2
β”‚  β”‚  β”œβ”€ is-descriptor@^1.0.2
β”‚  β”‚  └─ isobject@^3.0.1
β”‚  β”œβ”€ expand-brackets@2.1.4
β”‚  β”‚  β”œβ”€ debug@^2.3.3
β”‚  β”‚  β”œβ”€ define-property@^0.2.5
β”‚  β”‚  β”œβ”€ define-property@0.2.5
β”‚  β”‚  β”‚  └─ is-descriptor@^0.1.0
β”‚  β”‚  β”œβ”€ extend-shallow@^2.0.1
β”‚  β”‚  β”œβ”€ extend-shallow@2.0.1
β”‚  β”‚  β”‚  └─ is-extendable@^0.1.0
β”‚  β”‚  β”œβ”€ is-descriptor@0.1.6
β”‚  β”‚  β”‚  β”œβ”€ is-accessor-descriptor@^0.1.6
β”‚  β”‚  β”‚  β”œβ”€ is-data-descriptor@^0.1.4
β”‚  β”‚  β”‚  └─ kind-of@^5.0.0
β”‚  β”‚  β”œβ”€ is-extendable@0.1.1
β”‚  β”‚  β”œβ”€ kind-of@5.1.0
β”‚  β”‚  β”œβ”€ posix-character-classes@^0.1.0
β”‚  β”‚  β”œβ”€ regex-not@^1.0.0
β”‚  β”‚  β”œβ”€ snapdragon@^0.8.1
β”‚  β”‚  └─ to-regex@^3.0.1
β”‚  β”œβ”€ extend-shallow@3.0.2
β”‚  β”‚  β”œβ”€ assign-symbols@^1.0.0
β”‚  β”‚  └─ is-extendable@^1.0.1
β”‚  β”œβ”€ extglob@2.0.4
β”‚  β”‚  β”œβ”€ array-unique@^0.3.2
β”‚  β”‚  β”œβ”€ define-property@^1.0.0
β”‚  β”‚  β”œβ”€ define-property@1.0.0
β”‚  β”‚  β”‚  └─ is-descriptor@^1.0.0
β”‚  β”‚  β”œβ”€ expand-brackets@^2.1.4
β”‚  β”‚  β”œβ”€ extend-shallow@^2.0.1
β”‚  β”‚  β”œβ”€ extend-shallow@2.0.1
β”‚  β”‚  β”‚  └─ is-extendable@^0.1.0
β”‚  β”‚  β”œβ”€ fragment-cache@^0.2.1
β”‚  β”‚  β”œβ”€ is-extendable@0.1.1
β”‚  β”‚  β”œβ”€ regex-not@^1.0.0
β”‚  β”‚  β”œβ”€ snapdragon@^0.8.1
β”‚  β”‚  └─ to-regex@^3.0.1
β”‚  β”œβ”€ is-accessor-descriptor@0.1.6
β”‚  β”‚  β”œβ”€ kind-of@^3.0.2
β”‚  β”‚  └─ kind-of@3.2.2
β”‚  β”‚     └─ is-buffer@^1.1.5
β”‚  β”œβ”€ is-data-descriptor@0.1.4
β”‚  β”‚  β”œβ”€ kind-of@^3.0.2
β”‚  β”‚  └─ kind-of@3.2.2
β”‚  β”‚     └─ is-buffer@^1.1.5
β”‚  β”œβ”€ is-extendable@1.0.1
β”‚  β”‚  └─ is-plain-object@^2.0.4
β”‚  β”œβ”€ kind-of@6.0.2
β”‚  β”œβ”€ micromatch@^3.1.4
β”‚  β”œβ”€ micromatch@3.1.9
β”‚  β”‚  β”œβ”€ arr-diff@^4.0.0
β”‚  β”‚  β”œβ”€ array-unique@^0.3.2
β”‚  β”‚  β”œβ”€ braces@^2.3.1
β”‚  β”‚  β”œβ”€ define-property@^2.0.2
β”‚  β”‚  β”œβ”€ extend-shallow@^3.0.2
β”‚  β”‚  β”œβ”€ extglob@^2.0.4
β”‚  β”‚  β”œβ”€ fragment-cache@^0.2.1
β”‚  β”‚  β”œβ”€ kind-of@^6.0.2
β”‚  β”‚  β”œβ”€ nanomatch@^1.2.9
β”‚  β”‚  β”œβ”€ object.pick@^1.3.0
β”‚  β”‚  β”œβ”€ regex-not@^1.0.0
β”‚  β”‚  β”œβ”€ snapdragon@^0.8.1
β”‚  β”‚  └─ to-regex@^3.0.1
β”‚  └─ normalize-path@^2.1.1
β”œβ”€ aproba@1.2.0
β”œβ”€ archive-type@3.2.0
β”‚  └─ file-type@^3.1.0
β”œβ”€ are-we-there-yet@1.1.4
β”‚  β”œβ”€ delegates@^1.0.0
β”‚  └─ readable-stream@^2.0.6
β”œβ”€ argparse@1.0.10
β”‚  └─ sprintf-js@~1.0.2
β”œβ”€ arr-diff@4.0.0
β”œβ”€ arr-flatten@1.1.0
β”œβ”€ arr-union@3.1.0
β”œβ”€ array-differ@1.0.0
β”œβ”€ array-find-index@1.0.2
β”œβ”€ array-flatten@1.1.1
β”œβ”€ array-includes@3.0.3
β”‚  β”œβ”€ define-properties@^1.1.2
β”‚  └─ es-abstract@^1.7.0
β”œβ”€ array-union@1.0.2
β”‚  └─ array-uniq@^1.0.1
β”œβ”€ array-uniq@1.0.3
β”œβ”€ array-unique@0.3.2
β”œβ”€ asn1.js@4.10.1
β”‚  β”œβ”€ bn.js@^4.0.0
β”‚  β”œβ”€ inherits@^2.0.1
β”‚  └─ minimalistic-assert@^1.0.0
β”œβ”€ asn1@0.2.3
β”œβ”€ assert-plus@1.0.0
β”œβ”€ assert@1.4.1
β”‚  └─ util@0.10.3
β”œβ”€ assign-symbols@1.0.0
β”œβ”€ ast-types@0.9.6
β”œβ”€ async-each-series@1.1.0
β”œβ”€ async-each@1.0.1
β”œβ”€ async-foreach@0.1.3
β”œβ”€ async@2.6.0
β”‚  └─ lodash@^4.14.0
β”œβ”€ asynckit@0.4.0
β”œβ”€ atob@2.0.3
β”œβ”€ autoprefixer@7.2.6
β”‚  β”œβ”€ ansi-styles@3.2.1
β”‚  β”‚  └─ color-convert@^1.9.0
β”‚  β”œβ”€ browserslist@^2.11.3
β”‚  β”œβ”€ browserslist@2.11.3
β”‚  β”‚  β”œβ”€ caniuse-lite@^1.0.30000792
β”‚  β”‚  └─ electron-to-chromium@^1.3.30
β”‚  β”œβ”€ caniuse-lite@^1.0.30000805
β”‚  β”œβ”€ chalk@2.3.2
β”‚  β”‚  β”œβ”€ ansi-styles@^3.2.1
β”‚  β”‚  β”œβ”€ escape-string-regexp@^1.0.5
β”‚  β”‚  └─ supports-color@^5.3.0
β”‚  β”œβ”€ normalize-range@^0.1.2
β”‚  β”œβ”€ num2fraction@^1.2.2
β”‚  β”œβ”€ postcss-value-parser@^3.2.3
β”‚  β”œβ”€ postcss@^6.0.17
β”‚  β”œβ”€ postcss@6.0.20
β”‚  β”‚  β”œβ”€ chalk@^2.3.2
β”‚  β”‚  β”œβ”€ source-map@^0.6.1
β”‚  β”‚  └─ supports-color@^5.3.0
β”‚  └─ source-map@0.6.1
β”œβ”€ aws-sign2@0.6.0
β”œβ”€ aws4@1.6.0
β”œβ”€ babel-code-frame@6.26.0
β”‚  β”œβ”€ chalk@^1.1.3
β”‚  β”œβ”€ esutils@^2.0.2
β”‚  └─ js-tokens@^3.0.2
β”œβ”€ babel-core@6.26.0
β”‚  β”œβ”€ babel-code-frame@^6.26.0
β”‚  β”œβ”€ babel-generator@^6.26.0
β”‚  β”œβ”€ babel-helpers@^6.24.1
β”‚  β”œβ”€ babel-messages@^6.23.0
β”‚  β”œβ”€ babel-register@^6.26.0
β”‚  β”œβ”€ babel-runtime@^6.26.0
β”‚  β”œβ”€ babel-template@^6.26.0
β”‚  β”œβ”€ babel-traverse@^6.26.0
β”‚  β”œβ”€ babel-types@^6.26.0
β”‚  β”œβ”€ babylon@^6.18.0
β”‚  β”œβ”€ convert-source-map@^1.5.0
β”‚  β”œβ”€ debug@^2.6.8
β”‚  β”œβ”€ json5@^0.5.1
β”‚  β”œβ”€ lodash@^4.17.4
β”‚  β”œβ”€ minimatch@^3.0.4
β”‚  β”œβ”€ path-is-absolute@^1.0.1
β”‚  β”œβ”€ private@^0.1.7
β”‚  β”œβ”€ slash@^1.0.0
β”‚  └─ source-map@^0.5.6
β”œβ”€ babel-generator@6.26.1
β”‚  β”œβ”€ babel-messages@^6.23.0
β”‚  β”œβ”€ babel-runtime@^6.26.0
β”‚  β”œβ”€ babel-types@^6.26.0
β”‚  β”œβ”€ detect-indent@^4.0.0
β”‚  β”œβ”€ jsesc@^1.3.0
β”‚  β”œβ”€ lodash@^4.17.4
β”‚  β”œβ”€ source-map@^0.5.7
β”‚  └─ trim-right@^1.0.1
β”œβ”€ babel-helper-builder-binary-assignment-operator-visitor@6.24.1
β”‚  β”œβ”€ babel-helper-explode-assignable-expression@^6.24.1
β”‚  β”œβ”€ babel-runtime@^6.22.0
β”‚  └─ babel-types@^6.24.1
β”œβ”€ babel-helper-call-delegate@6.24.1
β”‚  β”œβ”€ babel-helper-hoist-variables@^6.24.1
β”‚  β”œβ”€ babel-runtime@^6.22.0
β”‚  β”œβ”€ babel-traverse@^6.24.1
β”‚  └─ babel-types@^6.24.1
β”œβ”€ babel-helper-define-map@6.26.0
β”‚  β”œβ”€ babel-helper-function-name@^6.24.1
β”‚  β”œβ”€ babel-runtime@^6.26.0
β”‚  β”œβ”€ babel-types@^6.26.0
β”‚  └─ lodash@^4.17.4
β”œβ”€ babel-helper-explode-assignable-expression@6.24.1
β”‚  β”œβ”€ babel-runtime@^6.22.0
β”‚  β”œβ”€ babel-traverse@^6.24.1
β”‚  └─ babel-types@^6.24.1
β”œβ”€ babel-helper-function-name@6.24.1
β”‚  β”œβ”€ babel-helper-get-function-arity@^6.24.1
β”‚  β”œβ”€ babel-runtime@^6.22.0
β”‚  β”œβ”€ babel-template@^6.24.1
β”‚  β”œβ”€ babel-traverse@^6.24.1
β”‚  └─ babel-types@^6.24.1
β”œβ”€ babel-helper-get-function-arity@6.24.1
β”‚  β”œβ”€ babel-runtime@^6.22.0
β”‚  └─ babel-types@^6.24.1
β”œβ”€ babel-helper-hoist-variables@6.24.1
β”‚  β”œβ”€ babel-runtime@^6.22.0
β”‚  └─ babel-types@^6.24.1
β”œβ”€ babel-helper-optimise-call-expression@6.24.1
β”‚  β”œβ”€ babel-runtime@^6.22.0
β”‚  └─ babel-types@^6.24.1
β”œβ”€ babel-helper-regex@6.26.0
β”‚  β”œβ”€ babel-runtime@^6.26.0
β”‚  β”œβ”€ babel-types@^6.26.0
β”‚  └─ lodash@^4.17.4
β”œβ”€ babel-helper-remap-async-to-generator@6.24.1
β”‚  β”œβ”€ babel-helper-function-name@^6.24.1
β”‚  β”œβ”€ babel-runtime@^6.22.0
β”‚  β”œβ”€ babel-template@^6.24.1
β”‚  β”œβ”€ babel-traverse@^6.24.1
β”‚  └─ babel-types@^6.24.1
β”œβ”€ babel-helper-replace-supers@6.24.1
β”‚  β”œβ”€ babel-helper-optimise-call-expression@^6.24.1
β”‚  β”œβ”€ babel-messages@^6.23.0
β”‚  β”œβ”€ babel-runtime@^6.22.0
β”‚  β”œβ”€ babel-template@^6.24.1
β”‚  β”œβ”€ babel-traverse@^6.24.1
β”‚  └─ babel-types@^6.24.1
β”œβ”€ babel-helpers@6.24.1
β”‚  β”œβ”€ babel-runtime@^6.22.0
β”‚  └─ babel-template@^6.24.1
β”œβ”€ babel-loader@7.1.4
β”‚  β”œβ”€ find-cache-dir@^1.0.0
β”‚  β”œβ”€ loader-utils@^1.0.2
β”‚  └─ mkdirp@^0.5.1
β”œβ”€ babel-messages@6.23.0
β”‚  └─ babel-runtime@^6.22.0
β”œβ”€ babel-plugin-check-es2015-constants@6.22.0
β”‚  └─ babel-runtime@^6.22.0
β”œβ”€ babel-plugin-syntax-async-functions@6.13.0
β”œβ”€ babel-plugin-syntax-exponentiation-operator@6.13.0
β”œβ”€ babel-plugin-syntax-object-rest-spread@6.13.0
β”œβ”€ babel-plugin-syntax-trailing-function-commas@6.22.0
β”œβ”€ babel-plugin-transform-async-to-generator@6.24.1
β”‚  β”œβ”€ babel-helper-remap-async-to-generator@^6.24.1
β”‚  β”œβ”€ babel-plugin-syntax-async-functions@^6.8.0
β”‚  └─ babel-runtime@^6.22.0
β”œβ”€ babel-plugin-transform-es2015-arrow-functions@6.22.0
β”‚  └─ babel-runtime@^6.22.0
β”œβ”€ babel-plugin-transform-es2015-block-scoped-functions@6.22.0
β”‚  └─ babel-runtime@^6.22.0
β”œβ”€ babel-plugin-transform-es2015-block-scoping@6.26.0
β”‚  β”œβ”€ babel-runtime@^6.26.0
β”‚  β”œβ”€ babel-template@^6.26.0
β”‚  β”œβ”€ babel-traverse@^6.26.0
β”‚  β”œβ”€ babel-types@^6.26.0
β”‚  └─ lodash@^4.17.4
β”œβ”€ babel-plugin-transform-es2015-classes@6.24.1
β”‚  β”œβ”€ babel-helper-define-map@^6.24.1
β”‚  β”œβ”€ babel-helper-function-name@^6.24.1
β”‚  β”œβ”€ babel-helper-optimise-call-expression@^6.24.1
β”‚  β”œβ”€ babel-helper-replace-supers@^6.24.1
β”‚  β”œβ”€ babel-messages@^6.23.0
β”‚  β”œβ”€ babel-runtime@^6.22.0
β”‚  β”œβ”€ babel-template@^6.24.1
β”‚  β”œβ”€ babel-traverse@^6.24.1
β”‚  └─ babel-types@^6.24.1
β”œβ”€ babel-plugin-transform-es2015-computed-properties@6.24.1
β”‚  β”œβ”€ babel-runtime@^6.22.0
β”‚  └─ babel-template@^6.24.1
β”œβ”€ babel-plugin-transform-es2015-destructuring@6.23.0
β”‚  └─ babel-runtime@^6.22.0
β”œβ”€ babel-plugin-transform-es2015-duplicate-keys@6.24.1
β”‚  β”œβ”€ babel-runtime@^6.22.0
β”‚  └─ babel-types@^6.24.1
β”œβ”€ babel-plugin-transform-es2015-for-of@6.23.0
β”‚  └─ babel-runtime@^6.22.0
β”œβ”€ babel-plugin-transform-es2015-function-name@6.24.1
β”‚  β”œβ”€ babel-helper-function-name@^6.24.1
β”‚  β”œβ”€ babel-runtime@^6.22.0
β”‚  └─ babel-types@^6.24.1
β”œβ”€ babel-plugin-transform-es2015-literals@6.22.0
β”‚  └─ babel-runtime@^6.22.0
β”œβ”€ babel-plugin-transform-es2015-modules-amd@6.24.1
β”‚  β”œβ”€ babel-plugin-transform-es2015-modules-commonjs@^6.24.1
β”‚  β”œβ”€ babel-runtime@^6.22.0
β”‚  └─ babel-template@^6.24.1
β”œβ”€ babel-plugin-transform-es2015-modules-commonjs@6.26.0
β”‚  β”œβ”€ babel-plugin-transform-strict-mode@^6.24.1
β”‚  β”œβ”€ babel-runtime@^6.26.0
β”‚  β”œβ”€ babel-template@^6.26.0
β”‚  └─ babel-types@^6.26.0
β”œβ”€ babel-plugin-transform-es2015-modules-systemjs@6.24.1
β”‚  β”œβ”€ babel-helper-hoist-variables@^6.24.1
β”‚  β”œβ”€ babel-runtime@^6.22.0
β”‚  └─ babel-template@^6.24.1
β”œβ”€ babel-plugin-transform-es2015-modules-umd@6.24.1
β”‚  β”œβ”€ babel-plugin-transform-es2015-modules-amd@^6.24.1
β”‚  β”œβ”€ babel-runtime@^6.22.0
β”‚  └─ babel-template@^6.24.1
β”œβ”€ babel-plugin-transform-es2015-object-super@6.24.1
β”‚  β”œβ”€ babel-helper-replace-supers@^6.24.1
β”‚  └─ babel-runtime@^6.22.0
β”œβ”€ babel-plugin-transform-es2015-parameters@6.24.1
β”‚  β”œβ”€ babel-helper-call-delegate@^6.24.1
β”‚  β”œβ”€ babel-helper-get-function-arity@^6.24.1
β”‚  β”œβ”€ babel-runtime@^6.22.0
β”‚  β”œβ”€ babel-template@^6.24.1
β”‚  β”œβ”€ babel-traverse@^6.24.1
β”‚  └─ babel-types@^6.24.1
β”œβ”€ babel-plugin-transform-es2015-shorthand-properties@6.24.1
β”‚  β”œβ”€ babel-runtime@^6.22.0
β”‚  └─ babel-types@^6.24.1
β”œβ”€ babel-plugin-transform-es2015-spread@6.22.0
β”‚  └─ babel-runtime@^6.22.0
β”œβ”€ babel-plugin-transform-es2015-sticky-regex@6.24.1
β”‚  β”œβ”€ babel-helper-regex@^6.24.1
β”‚  β”œβ”€ babel-runtime@^6.22.0
β”‚  └─ babel-types@^6.24.1
β”œβ”€ babel-plugin-transform-es2015-template-literals@6.22.0
β”‚  └─ babel-runtime@^6.22.0
β”œβ”€ babel-plugin-transform-es2015-typeof-symbol@6.23.0
β”‚  └─ babel-runtime@^6.22.0
β”œβ”€ babel-plugin-transform-es2015-unicode-regex@6.24.1
β”‚  β”œβ”€ babel-helper-regex@^6.24.1
β”‚  β”œβ”€ babel-runtime@^6.22.0
β”‚  β”œβ”€ regexpu-core@^2.0.0
β”‚  └─ regexpu-core@2.0.0
β”‚     β”œβ”€ regenerate@^1.2.1
β”‚     β”œβ”€ regjsgen@^0.2.0
β”‚     └─ regjsparser@^0.1.4
β”œβ”€ babel-plugin-transform-exponentiation-operator@6.24.1
β”‚  β”œβ”€ babel-helper-builder-binary-assignment-operator-visitor@^6.24.1
β”‚  β”œβ”€ babel-plugin-syntax-exponentiation-operator@^6.8.0
β”‚  └─ babel-runtime@^6.22.0
β”œβ”€ babel-plugin-transform-object-rest-spread@6.26.0
β”‚  β”œβ”€ babel-plugin-syntax-object-rest-spread@^6.8.0
β”‚  └─ babel-runtime@^6.26.0
β”œβ”€ babel-plugin-transform-regenerator@6.26.0
β”‚  └─ regenerator-transform@^0.10.0
β”œβ”€ babel-plugin-transform-runtime@6.23.0
β”‚  └─ babel-runtime@^6.22.0
β”œβ”€ babel-plugin-transform-strict-mode@6.24.1
β”‚  β”œβ”€ babel-runtime@^6.22.0
β”‚  └─ babel-types@^6.24.1
β”œβ”€ babel-preset-env@1.6.1
β”‚  β”œβ”€ babel-plugin-check-es2015-constants@^6.22.0
β”‚  β”œβ”€ babel-plugin-syntax-trailing-function-commas@^6.22.0
β”‚  β”œβ”€ babel-plugin-transform-async-to-generator@^6.22.0
β”‚  β”œβ”€ babel-plugin-transform-es2015-arrow-functions@^6.22.0
β”‚  β”œβ”€ babel-plugin-transform-es2015-block-scoped-functions@^6.22.0
β”‚  β”œβ”€ babel-plugin-transform-es2015-block-scoping@^6.23.0
β”‚  β”œβ”€ babel-plugin-transform-es2015-classes@^6.23.0
β”‚  β”œβ”€ babel-plugin-transform-es2015-computed-properties@^6.22.0
β”‚  β”œβ”€ babel-plugin-transform-es2015-destructuring@^6.23.0
β”‚  β”œβ”€ babel-plugin-transform-es2015-duplicate-keys@^6.22.0
β”‚  β”œβ”€ babel-plugin-transform-es2015-for-of@^6.23.0
β”‚  β”œβ”€ babel-plugin-transform-es2015-function-name@^6.22.0
β”‚  β”œβ”€ babel-plugin-transform-es2015-literals@^6.22.0
β”‚  β”œβ”€ babel-plugin-transform-es2015-modules-amd@^6.22.0
β”‚  β”œβ”€ babel-plugin-transform-es2015-modules-commonjs@^6.23.0
β”‚  β”œβ”€ babel-plugin-transform-es2015-modules-systemjs@^6.23.0
β”‚  β”œβ”€ babel-plugin-transform-es2015-modules-umd@^6.23.0
β”‚  β”œβ”€ babel-plugin-transform-es2015-object-super@^6.22.0
β”‚  β”œβ”€ babel-plugin-transform-es2015-parameters@^6.23.0
β”‚  β”œβ”€ babel-plugin-transform-es2015-shorthand-properties@^6.22.0
β”‚  β”œβ”€ babel-plugin-transform-es2015-spread@^6.22.0
β”‚  β”œβ”€ babel-plugin-transform-es2015-sticky-regex@^6.22.0
β”‚  β”œβ”€ babel-plugin-transform-es2015-template-literals@^6.22.0
β”‚  β”œβ”€ babel-plugin-transform-es2015-typeof-symbol@^6.23.0
β”‚  β”œβ”€ babel-plugin-transform-es2015-unicode-regex@^6.22.0
β”‚  β”œβ”€ babel-plugin-transform-exponentiation-operator@^6.22.0
β”‚  β”œβ”€ babel-plugin-transform-regenerator@^6.22.0
β”‚  β”œβ”€ browserslist@^2.1.2
β”‚  β”œβ”€ browserslist@2.11.3
β”‚  β”‚  β”œβ”€ caniuse-lite@^1.0.30000792
β”‚  β”‚  └─ electron-to-chromium@^1.3.30
β”‚  β”œβ”€ invariant@^2.2.2
β”‚  └─ semver@^5.3.0
β”œβ”€ babel-register@6.26.0
β”‚  β”œβ”€ babel-core@^6.26.0
β”‚  β”œβ”€ babel-runtime@^6.26.0
β”‚  β”œβ”€ core-js@^2.5.0
β”‚  β”œβ”€ home-or-tmp@^2.0.0
β”‚  β”œβ”€ lodash@^4.17.4
β”‚  β”œβ”€ mkdirp@^0.5.1
β”‚  └─ source-map-support@^0.4.15
β”œβ”€ babel-runtime@6.26.0
β”‚  β”œβ”€ core-js@^2.4.0
β”‚  └─ regenerator-runtime@^0.11.0
β”œβ”€ babel-template@6.26.0
β”‚  β”œβ”€ babel-runtime@^6.26.0
β”‚  β”œβ”€ babel-traverse@^6.26.0
β”‚  β”œβ”€ babel-types@^6.26.0
β”‚  β”œβ”€ babylon@^6.18.0
β”‚  └─ lodash@^4.17.4
β”œβ”€ babel-traverse@6.26.0
β”‚  β”œβ”€ babel-code-frame@^6.26.0
β”‚  β”œβ”€ babel-messages@^6.23.0
β”‚  β”œβ”€ babel-runtime@^6.26.0
β”‚  β”œβ”€ babel-types@^6.26.0
β”‚  β”œβ”€ babylon@^6.18.0
β”‚  β”œβ”€ debug@^2.6.8
β”‚  β”œβ”€ globals@^9.18.0
β”‚  β”œβ”€ invariant@^2.2.2
β”‚  └─ lodash@^4.17.4
β”œβ”€ babel-types@6.26.0
β”‚  β”œβ”€ babel-runtime@^6.26.0
β”‚  β”œβ”€ esutils@^2.0.2
β”‚  β”œβ”€ lodash@^4.17.4
β”‚  └─ to-fast-properties@^1.0.3
β”œβ”€ babylon@6.18.0
β”œβ”€ balanced-match@0.4.2
β”œβ”€ base@0.11.2
β”‚  β”œβ”€ cache-base@^1.0.1
β”‚  β”œβ”€ class-utils@^0.3.5
β”‚  β”œβ”€ component-emitter@^1.2.1
β”‚  β”œβ”€ define-property@^1.0.0
β”‚  β”œβ”€ define-property@1.0.0
β”‚  β”‚  └─ is-descriptor@^1.0.0
β”‚  β”œβ”€ isobject@^3.0.1
β”‚  β”œβ”€ mixin-deep@^1.2.0
β”‚  └─ pascalcase@^0.1.1
β”œβ”€ base64-js@1.2.3
β”œβ”€ batch@0.6.1
β”œβ”€ bcrypt-pbkdf@1.0.1
β”‚  └─ tweetnacl@^0.14.3
β”œβ”€ beeper@1.1.1
β”œβ”€ big.js@3.2.0
β”œβ”€ bin-build@2.2.0
β”‚  β”œβ”€ archive-type@^3.0.1
β”‚  β”œβ”€ decompress@^3.0.0
β”‚  β”œβ”€ download@^4.1.2
β”‚  β”œβ”€ exec-series@^1.0.0
β”‚  β”œβ”€ rimraf@^2.2.6
β”‚  β”œβ”€ tempfile@^1.0.0
β”‚  β”œβ”€ tempfile@1.1.1
β”‚  β”‚  β”œβ”€ os-tmpdir@^1.0.0
β”‚  β”‚  └─ uuid@^2.0.1
β”‚  β”œβ”€ url-regex@^3.0.0
β”‚  └─ uuid@2.0.3
β”œβ”€ bin-check@2.0.0
β”‚  └─ executable@^1.0.0
β”œβ”€ bin-version-check@2.1.0
β”‚  β”œβ”€ bin-version@^1.0.0
β”‚  β”œβ”€ minimist@^1.1.0
β”‚  β”œβ”€ semver-truncate@^1.0.0
β”‚  β”œβ”€ semver@^4.0.3
β”‚  └─ semver@4.3.6
β”œβ”€ bin-version@1.0.4
β”‚  └─ find-versions@^1.0.0
β”œβ”€ bin-wrapper@3.0.2
β”‚  β”œβ”€ bin-check@^2.0.0
β”‚  β”œβ”€ bin-version-check@^2.1.0
β”‚  β”œβ”€ download@^4.0.0
β”‚  β”œβ”€ each-async@^1.1.1
β”‚  β”œβ”€ lazy-req@^1.0.0
β”‚  └─ os-filter-obj@^1.0.0
β”œβ”€ binary-extensions@1.11.0
β”œβ”€ bl@1.2.1
β”‚  └─ readable-stream@^2.0.5
β”œβ”€ block-stream@0.0.9
β”‚  └─ inherits@~2.0.0
β”œβ”€ bluebird@3.5.1
β”œβ”€ bn.js@4.11.8
β”œβ”€ body-parser@1.18.2
β”‚  β”œβ”€ bytes@3.0.0
β”‚  β”œβ”€ content-type@~1.0.4
β”‚  β”œβ”€ debug@2.6.9
β”‚  β”œβ”€ depd@~1.1.1
β”‚  β”œβ”€ http-errors@~1.6.2
β”‚  β”œβ”€ iconv-lite@0.4.19
β”‚  β”œβ”€ on-finished@~2.3.0
β”‚  β”œβ”€ qs@6.5.1
β”‚  β”œβ”€ raw-body@2.3.2
β”‚  └─ type-is@~1.6.15
β”œβ”€ bonjour@3.5.0
β”‚  β”œβ”€ array-flatten@^2.1.0
β”‚  β”œβ”€ array-flatten@2.1.1
β”‚  β”œβ”€ deep-equal@^1.0.1
β”‚  β”œβ”€ dns-equal@^1.0.0
β”‚  β”œβ”€ dns-txt@^2.0.2
β”‚  β”œβ”€ multicast-dns-service-types@^1.1.0
β”‚  └─ multicast-dns@^6.0.1
β”œβ”€ boolbase@1.0.0
β”œβ”€ boom@2.10.1
β”‚  β”œβ”€ hoek@2.16.3
β”‚  └─ hoek@2.x.x
β”œβ”€ boxen@1.3.0
β”‚  β”œβ”€ ansi-align@^2.0.0
β”‚  β”œβ”€ ansi-regex@3.0.0
β”‚  β”œβ”€ ansi-styles@3.2.1
β”‚  β”‚  └─ color-convert@^1.9.0
β”‚  β”œβ”€ camelcase@^4.0.0
β”‚  β”œβ”€ chalk@^2.0.1
β”‚  β”œβ”€ chalk@2.3.2
β”‚  β”‚  β”œβ”€ ansi-styles@^3.2.1
β”‚  β”‚  β”œβ”€ escape-string-regexp@^1.0.5
β”‚  β”‚  └─ supports-color@^5.3.0
β”‚  β”œβ”€ cli-boxes@^1.0.0
β”‚  β”œβ”€ is-fullwidth-code-point@2.0.0
β”‚  β”œβ”€ string-width@^2.0.0
β”‚  β”œβ”€ string-width@2.1.1
β”‚  β”‚  β”œβ”€ is-fullwidth-code-point@^2.0.0
β”‚  β”‚  └─ strip-ansi@^4.0.0
β”‚  β”œβ”€ strip-ansi@4.0.0
β”‚  β”‚  └─ ansi-regex@^3.0.0
β”‚  β”œβ”€ term-size@^1.2.0
β”‚  └─ widest-line@^2.0.0
β”œβ”€ brace-expansion@1.1.11
β”‚  β”œβ”€ balanced-match@^1.0.0
β”‚  β”œβ”€ balanced-match@1.0.0
β”‚  └─ concat-map@0.0.1
β”œβ”€ braces@2.3.1
β”‚  β”œβ”€ arr-flatten@^1.1.0
β”‚  β”œβ”€ array-unique@^0.3.2
β”‚  β”œβ”€ define-property@^1.0.0
β”‚  β”œβ”€ define-property@1.0.0
β”‚  β”‚  └─ is-descriptor@^1.0.0
β”‚  β”œβ”€ extend-shallow@^2.0.1
β”‚  β”œβ”€ fill-range@^4.0.0
β”‚  β”œβ”€ isobject@^3.0.1
β”‚  β”œβ”€ kind-of@^6.0.2
β”‚  β”œβ”€ kind-of@6.0.2
β”‚  β”œβ”€ repeat-element@^1.1.2
β”‚  β”œβ”€ snapdragon-node@^2.0.1
β”‚  β”œβ”€ snapdragon@^0.8.1
β”‚  β”œβ”€ split-string@^3.0.2
β”‚  └─ to-regex@^3.0.1
β”œβ”€ brorand@1.1.0
β”œβ”€ browserify-aes@1.1.1
β”‚  β”œβ”€ buffer-xor@^1.0.3
β”‚  β”œβ”€ cipher-base@^1.0.0
β”‚  β”œβ”€ create-hash@^1.1.0
β”‚  β”œβ”€ evp_bytestokey@^1.0.3
β”‚  β”œβ”€ inherits@^2.0.1
β”‚  └─ safe-buffer@^5.0.1
β”œβ”€ browserify-cipher@1.0.0
β”‚  β”œβ”€ browserify-aes@^1.0.4
β”‚  β”œβ”€ browserify-des@^1.0.0
β”‚  └─ evp_bytestokey@^1.0.0
β”œβ”€ browserify-des@1.0.0
β”‚  β”œβ”€ cipher-base@^1.0.1
β”‚  β”œβ”€ des.js@^1.0.0
β”‚  └─ inherits@^2.0.1
β”œβ”€ browserify-rsa@4.0.1
β”‚  β”œβ”€ bn.js@^4.1.0
β”‚  └─ randombytes@^2.0.1
β”œβ”€ browserify-sign@4.0.4
β”‚  β”œβ”€ bn.js@^4.1.1
β”‚  β”œβ”€ browserify-rsa@^4.0.0
β”‚  β”œβ”€ create-hash@^1.1.0
β”‚  β”œβ”€ create-hmac@^1.1.2
β”‚  β”œβ”€ elliptic@^6.0.0
β”‚  β”œβ”€ inherits@^2.0.1
β”‚  └─ parse-asn1@^5.0.0
β”œβ”€ browserify-zlib@0.2.0
β”‚  └─ pako@~1.0.5
β”œβ”€ browserslist@1.7.7
β”‚  β”œβ”€ caniuse-db@^1.0.30000639
β”‚  └─ electron-to-chromium@^1.2.7
β”œβ”€ buffer-crc32@0.2.13
β”œβ”€ buffer-from@0.1.2
β”œβ”€ buffer-indexof@1.1.1
β”œβ”€ buffer-to-vinyl@1.1.0
β”‚  β”œβ”€ file-type@^3.1.0
β”‚  β”œβ”€ readable-stream@^2.0.2
β”‚  β”œβ”€ uuid@^2.0.1
β”‚  β”œβ”€ uuid@2.0.3
β”‚  └─ vinyl@^1.0.0
β”œβ”€ buffer-xor@1.0.3
β”œβ”€ buffer@4.9.1
β”‚  β”œβ”€ base64-js@^1.0.2
β”‚  β”œβ”€ ieee754@^1.1.4
β”‚  └─ isarray@^1.0.0
β”œβ”€ builtin-modules@1.1.1
β”œβ”€ builtin-status-codes@3.0.0
β”œβ”€ bytes@3.0.0
β”œβ”€ cacache@10.0.4
β”‚  β”œβ”€ bluebird@^3.5.1
β”‚  β”œβ”€ chownr@^1.0.1
β”‚  β”œβ”€ glob@^7.1.2
β”‚  β”œβ”€ graceful-fs@^4.1.11
β”‚  β”œβ”€ lru-cache@^4.1.1
β”‚  β”œβ”€ mississippi@^2.0.0
β”‚  β”œβ”€ mkdirp@^0.5.1
β”‚  β”œβ”€ move-concurrently@^1.0.1
β”‚  β”œβ”€ promise-inflight@^1.0.1
β”‚  β”œβ”€ rimraf@^2.6.2
β”‚  β”œβ”€ ssri@^5.2.4
β”‚  β”œβ”€ unique-filename@^1.1.0
β”‚  β”œβ”€ y18n@^4.0.0
β”‚  └─ y18n@4.0.0
β”œβ”€ cache-base@1.0.1
β”‚  β”œβ”€ collection-visit@^1.0.0
β”‚  β”œβ”€ component-emitter@^1.2.1
β”‚  β”œβ”€ get-value@^2.0.6
β”‚  β”œβ”€ has-value@^1.0.0
β”‚  β”œβ”€ isobject@^3.0.1
β”‚  β”œβ”€ set-value@^2.0.0
β”‚  β”œβ”€ to-object-path@^0.3.0
β”‚  β”œβ”€ union-value@^1.0.0
β”‚  └─ unset-value@^1.0.0
β”œβ”€ camel-case@3.0.0
β”‚  β”œβ”€ no-case@^2.2.0
β”‚  └─ upper-case@^1.1.1
β”œβ”€ camelcase-css@1.0.1
β”œβ”€ camelcase-keys@2.1.0
β”‚  β”œβ”€ camelcase@^2.0.0
β”‚  β”œβ”€ camelcase@2.1.1
β”‚  └─ map-obj@^1.0.0
β”œβ”€ camelcase@4.1.0
β”œβ”€ caniuse-api@1.6.1
β”‚  β”œβ”€ browserslist@^1.3.6
β”‚  β”œβ”€ caniuse-db@^1.0.30000529
β”‚  β”œβ”€ lodash.memoize@^4.1.2
β”‚  └─ lodash.uniq@^4.5.0
β”œβ”€ caniuse-db@1.0.30000815
β”œβ”€ caniuse-lite@1.0.30000815
β”œβ”€ capture-stack-trace@1.0.0
β”œβ”€ caseless@0.12.0
β”œβ”€ caw@1.2.0
β”‚  β”œβ”€ get-proxy@^1.0.1
β”‚  β”œβ”€ is-obj@^1.0.0
β”‚  β”œβ”€ object-assign@^3.0.0
β”‚  β”œβ”€ object-assign@3.0.0
β”‚  β”œβ”€ tunnel-agent@^0.4.0
β”‚  └─ tunnel-agent@0.4.3
β”œβ”€ center-align@0.1.3
β”‚  β”œβ”€ align-text@^0.1.3
β”‚  └─ lazy-cache@^1.0.3
β”œβ”€ chalk@1.1.3
β”‚  β”œβ”€ ansi-styles@^2.2.1
β”‚  β”œβ”€ escape-string-regexp@^1.0.2
β”‚  β”œβ”€ has-ansi@^2.0.0
β”‚  β”œβ”€ strip-ansi@^3.0.0
β”‚  β”œβ”€ supports-color@^2.0.0
β”‚  └─ supports-color@2.0.0
β”œβ”€ charenc@0.0.2
β”œβ”€ chokidar@2.0.2
β”‚  β”œβ”€ anymatch@^2.0.0
β”‚  β”œβ”€ async-each@^1.0.0
β”‚  β”œβ”€ braces@^2.3.0
β”‚  β”œβ”€ fsevents@^1.0.0
β”‚  β”œβ”€ glob-parent@^3.1.0
β”‚  β”œβ”€ inherits@^2.0.1
β”‚  β”œβ”€ is-binary-path@^1.0.0
β”‚  β”œβ”€ is-extglob@2.1.1
β”‚  β”œβ”€ is-glob@^4.0.0
β”‚  β”œβ”€ is-glob@4.0.0
β”‚  β”‚  └─ is-extglob@^2.1.1
β”‚  β”œβ”€ normalize-path@^2.1.1
β”‚  β”œβ”€ path-is-absolute@^1.0.0
β”‚  β”œβ”€ readdirp@^2.0.0
β”‚  └─ upath@^1.0.0
β”œβ”€ chownr@1.0.1
β”œβ”€ cipher-base@1.0.4
β”‚  β”œβ”€ inherits@^2.0.1
β”‚  └─ safe-buffer@^5.0.1
β”œβ”€ clap@1.2.3
β”‚  └─ chalk@^1.1.3
β”œβ”€ class-utils@0.3.6
β”‚  β”œβ”€ arr-union@^3.1.0
β”‚  β”œβ”€ define-property@^0.2.5
β”‚  β”œβ”€ isobject@^3.0.0
β”‚  └─ static-extend@^0.1.1
β”œβ”€ clean-css@4.1.11
β”‚  └─ source-map@0.5.x
β”œβ”€ cli-boxes@1.0.0
β”œβ”€ cliui@3.2.0
β”‚  β”œβ”€ string-width@^1.0.1
β”‚  β”œβ”€ strip-ansi@^3.0.1
β”‚  └─ wrap-ansi@^2.0.0
β”œβ”€ clone-deep@2.0.2
β”‚  β”œβ”€ for-own@^1.0.0
β”‚  β”œβ”€ for-own@1.0.0
β”‚  β”‚  └─ for-in@^1.0.1
β”‚  β”œβ”€ is-plain-object@^2.0.4
β”‚  β”œβ”€ kind-of@^6.0.0
β”‚  β”œβ”€ kind-of@6.0.2
β”‚  └─ shallow-clone@^1.0.0
β”œβ”€ clone-stats@0.0.1
β”œβ”€ clone@1.0.3
β”œβ”€ co@4.6.0
β”œβ”€ coa@2.0.1
β”‚  └─ q@^1.1.2
β”œβ”€ code-point-at@1.1.0
β”œβ”€ collection-visit@1.0.0
β”‚  β”œβ”€ map-visit@^1.0.0
β”‚  └─ object-visit@^1.0.0
β”œβ”€ color-convert@1.9.1
β”‚  └─ color-name@^1.1.1
β”œβ”€ color-name@1.1.3
β”œβ”€ color-string@0.3.0
β”‚  └─ color-name@^1.0.0
β”œβ”€ color-support@1.1.3
β”œβ”€ color@0.11.4
β”‚  β”œβ”€ clone@^1.0.2
β”‚  β”œβ”€ color-convert@^1.3.0
β”‚  └─ color-string@^0.3.0
β”œβ”€ colormin@1.1.2
β”‚  β”œβ”€ color@^0.11.0
β”‚  β”œβ”€ css-color-names@0.0.4
β”‚  └─ has@^1.0.1
β”œβ”€ colors@1.1.2
β”œβ”€ combined-stream@1.0.6
β”‚  └─ delayed-stream@~1.0.0
β”œβ”€ commander@2.15.0
β”œβ”€ comment-regex@1.0.0
β”œβ”€ commondir@1.0.1
β”œβ”€ component-emitter@1.2.1
β”œβ”€ compressible@2.0.13
β”‚  └─ mime-db@>= 1.33.0 < 2
β”œβ”€ compression@1.7.2
β”‚  β”œβ”€ accepts@~1.3.4
β”‚  β”œβ”€ bytes@3.0.0
β”‚  β”œβ”€ compressible@~2.0.13
β”‚  β”œβ”€ debug@2.6.9
β”‚  β”œβ”€ on-headers@~1.0.1
β”‚  β”œβ”€ safe-buffer@5.1.1
β”‚  └─ vary@~1.1.2
β”œβ”€ concat-map@0.0.1
β”œβ”€ concat-stream@1.6.1
β”‚  β”œβ”€ inherits@^2.0.3
β”‚  β”œβ”€ readable-stream@^2.2.2
β”‚  └─ typedarray@^0.0.6
β”œβ”€ concatenate@0.0.2
β”‚  └─ globs@^0.1.2
β”œβ”€ config-chain@1.1.11
β”‚  β”œβ”€ ini@^1.3.4
β”‚  └─ proto-list@~1.2.1
β”œβ”€ configstore@3.1.1
β”‚  β”œβ”€ dot-prop@^4.1.0
β”‚  β”œβ”€ graceful-fs@^4.1.2
β”‚  β”œβ”€ make-dir@^1.0.0
β”‚  β”œβ”€ unique-string@^1.0.0
β”‚  β”œβ”€ write-file-atomic@^2.0.0
β”‚  └─ xdg-basedir@^3.0.0
β”œβ”€ connect-history-api-fallback@1.5.0
β”œβ”€ console-browserify@1.1.0
β”‚  └─ date-now@^0.1.4
β”œβ”€ console-control-strings@1.1.0
β”œβ”€ console-stream@0.1.1
β”œβ”€ consolidate@0.14.5
β”‚  └─ bluebird@^3.1.1
β”œβ”€ constants-browserify@1.0.0
β”œβ”€ content-disposition@0.5.2
β”œβ”€ content-type@1.0.4
β”œβ”€ convert-source-map@1.5.1
β”œβ”€ cookie-signature@1.0.6
β”œβ”€ cookie@0.3.1
β”œβ”€ copy-concurrently@1.0.5
β”‚  β”œβ”€ aproba@^1.1.1
β”‚  β”œβ”€ fs-write-stream-atomic@^1.0.8
β”‚  β”œβ”€ iferr@^0.1.5
β”‚  β”œβ”€ mkdirp@^0.5.1
β”‚  β”œβ”€ rimraf@^2.5.4
β”‚  └─ run-queue@^1.0.0
β”œβ”€ copy-descriptor@0.1.1
β”œβ”€ core-js@2.5.3
β”œβ”€ core-util-is@1.0.2
β”œβ”€ cosmiconfig@2.2.2
β”‚  β”œβ”€ is-directory@^0.3.1
β”‚  β”œβ”€ js-yaml@^3.4.3
β”‚  β”œβ”€ minimist@^1.2.0
β”‚  β”œβ”€ object-assign@^4.1.0
β”‚  β”œβ”€ os-homedir@^1.0.1
β”‚  β”œβ”€ parse-json@^2.2.0
β”‚  └─ require-from-string@^1.1.0
β”œβ”€ create-ecdh@4.0.0
β”‚  β”œβ”€ bn.js@^4.1.0
β”‚  └─ elliptic@^6.0.0
β”œβ”€ create-error-class@3.0.2
β”‚  └─ capture-stack-trace@^1.0.0
β”œβ”€ create-hash@1.1.3
β”‚  β”œβ”€ cipher-base@^1.0.1
β”‚  β”œβ”€ inherits@^2.0.1
β”‚  β”œβ”€ ripemd160@^2.0.0
β”‚  └─ sha.js@^2.4.0
β”œβ”€ create-hmac@1.1.6
β”‚  β”œβ”€ cipher-base@^1.0.3
β”‚  β”œβ”€ create-hash@^1.1.0
β”‚  β”œβ”€ inherits@^2.0.1
β”‚  β”œβ”€ ripemd160@^2.0.0
β”‚  β”œβ”€ safe-buffer@^5.0.1
β”‚  └─ sha.js@^2.4.8
β”œβ”€ cross-env@5.1.4
β”‚  β”œβ”€ cross-spawn@^5.1.0
β”‚  └─ is-windows@^1.0.0
β”œβ”€ cross-spawn@5.1.0
β”‚  β”œβ”€ lru-cache@^4.0.1
β”‚  β”œβ”€ shebang-command@^1.2.0
β”‚  └─ which@^1.2.9
β”œβ”€ crypt@0.0.2
β”œβ”€ cryptiles@2.0.5
β”‚  └─ boom@2.x.x
β”œβ”€ crypto-browserify@3.12.0
β”‚  β”œβ”€ browserify-cipher@^1.0.0
β”‚  β”œβ”€ browserify-sign@^4.0.0
β”‚  β”œβ”€ create-ecdh@^4.0.0
β”‚  β”œβ”€ create-hash@^1.1.0
β”‚  β”œβ”€ create-hmac@^1.1.0
β”‚  β”œβ”€ diffie-hellman@^5.0.0
β”‚  β”œβ”€ inherits@^2.0.1
β”‚  β”œβ”€ pbkdf2@^3.0.3
β”‚  β”œβ”€ public-encrypt@^4.0.0
β”‚  β”œβ”€ randombytes@^2.0.0
β”‚  └─ randomfill@^1.0.3
β”œβ”€ crypto-random-string@1.0.0
β”œβ”€ css-color-names@0.0.4
β”œβ”€ css-loader@0.28.11
β”‚  β”œβ”€ babel-code-frame@^6.26.0
β”‚  β”œβ”€ css-selector-tokenizer@^0.7.0
β”‚  β”œβ”€ cssnano@^3.10.0
β”‚  β”œβ”€ icss-utils@^2.1.0
β”‚  β”œβ”€ loader-utils@^1.0.2
β”‚  β”œβ”€ lodash.camelcase@^4.3.0
β”‚  β”œβ”€ object-assign@^4.1.1
β”‚  β”œβ”€ postcss-modules-extract-imports@^1.2.0
β”‚  β”œβ”€ postcss-modules-local-by-default@^1.2.0
β”‚  β”œβ”€ postcss-modules-scope@^1.1.0
β”‚  β”œβ”€ postcss-modules-values@^1.3.0
β”‚  β”œβ”€ postcss-value-parser@^3.3.0
β”‚  β”œβ”€ postcss@^5.0.6
β”‚  └─ source-list-map@^2.0.0
β”œβ”€ css-select-base-adapter@0.1.0
β”œβ”€ css-select@1.3.0-rc0
β”‚  β”œβ”€ boolbase@^1.0.0
β”‚  β”œβ”€ css-what@2.1
β”‚  β”œβ”€ domutils@1.5.1
β”‚  └─ nth-check@^1.0.1
β”œβ”€ css-selector-tokenizer@0.7.0
β”‚  β”œβ”€ cssesc@^0.1.0
β”‚  β”œβ”€ fastparse@^1.1.1
β”‚  └─ regexpu-core@^1.0.0
β”œβ”€ css-tree@1.0.0-alpha25
β”‚  β”œβ”€ mdn-data@^1.0.0
β”‚  └─ source-map@^0.5.3
β”œβ”€ css-url-regex@1.1.0
β”œβ”€ css-what@2.1.0
β”œβ”€ css@2.2.1
β”‚  β”œβ”€ atob@1.1.3
β”‚  β”œβ”€ inherits@^2.0.1
β”‚  β”œβ”€ source-map-resolve@^0.3.0
β”‚  β”œβ”€ source-map-resolve@0.3.1
β”‚  β”‚  β”œβ”€ atob@~1.1.0
β”‚  β”‚  β”œβ”€ resolve-url@~0.2.1
β”‚  β”‚  β”œβ”€ source-map-url@~0.3.0
β”‚  β”‚  └─ urix@~0.1.0
β”‚  β”œβ”€ source-map-url@0.3.0
β”‚  β”œβ”€ source-map@^0.1.38
β”‚  β”œβ”€ source-map@0.1.43
β”‚  β”‚  └─ amdefine@>=0.0.4
β”‚  └─ urix@^0.1.0
β”œβ”€ cssesc@0.1.0
β”œβ”€ cssnano@3.10.0
β”‚  β”œβ”€ autoprefixer@^6.3.1
β”‚  β”œβ”€ autoprefixer@6.7.7
β”‚  β”‚  β”œβ”€ browserslist@^1.7.6
β”‚  β”‚  β”œβ”€ caniuse-db@^1.0.30000634
β”‚  β”‚  β”œβ”€ normalize-range@^0.1.2
β”‚  β”‚  β”œβ”€ num2fraction@^1.2.2
β”‚  β”‚  β”œβ”€ postcss-value-parser@^3.2.3
β”‚  β”‚  └─ postcss@^5.2.16
β”‚  β”œβ”€ decamelize@^1.1.2
β”‚  β”œβ”€ defined@^1.0.0
β”‚  β”œβ”€ has@^1.0.1
β”‚  β”œβ”€ object-assign@^4.0.1
β”‚  β”œβ”€ postcss-calc@^5.2.0
β”‚  β”œβ”€ postcss-colormin@^2.1.8
β”‚  β”œβ”€ postcss-convert-values@^2.3.4
β”‚  β”œβ”€ postcss-discard-comments@^2.0.4
β”‚  β”œβ”€ postcss-discard-duplicates@^2.0.1
β”‚  β”œβ”€ postcss-discard-empty@^2.0.1
β”‚  β”œβ”€ postcss-discard-overridden@^0.1.1
β”‚  β”œβ”€ postcss-discard-unused@^2.2.1
β”‚  β”œβ”€ postcss-filter-plugins@^2.0.0
β”‚  β”œβ”€ postcss-merge-idents@^2.1.5
β”‚  β”œβ”€ postcss-merge-longhand@^2.0.1
β”‚  β”œβ”€ postcss-merge-rules@^2.0.3
β”‚  β”œβ”€ postcss-minify-font-values@^1.0.2
β”‚  β”œβ”€ postcss-minify-gradients@^1.0.1
β”‚  β”œβ”€ postcss-minify-params@^1.0.4
β”‚  β”œβ”€ postcss-minify-selectors@^2.0.4
β”‚  β”œβ”€ postcss-normalize-charset@^1.1.0
β”‚  β”œβ”€ postcss-normalize-url@^3.0.7
β”‚  β”œβ”€ postcss-ordered-values@^2.1.0
β”‚  β”œβ”€ postcss-reduce-idents@^2.2.2
β”‚  β”œβ”€ postcss-reduce-initial@^1.0.0
β”‚  β”œβ”€ postcss-reduce-transforms@^1.0.3
β”‚  β”œβ”€ postcss-svgo@^2.1.1
β”‚  β”œβ”€ postcss-unique-selectors@^2.0.2
β”‚  β”œβ”€ postcss-value-parser@^3.2.3
β”‚  β”œβ”€ postcss-zindex@^2.0.1
β”‚  └─ postcss@^5.0.14
β”œβ”€ csso@3.5.0
β”‚  β”œβ”€ css-tree@1.0.0-alpha.27
β”‚  └─ css-tree@1.0.0-alpha.27
β”‚     β”œβ”€ mdn-data@^1.0.0
β”‚     └─ source-map@^0.5.3
β”œβ”€ currently-unhandled@0.4.1
β”‚  └─ array-find-index@^1.0.1
β”œβ”€ cyclist@0.2.2
β”œβ”€ d@1.0.0
β”‚  └─ es5-ext@^0.10.9
β”œβ”€ dashdash@1.14.1
β”‚  └─ assert-plus@^1.0.0
β”œβ”€ date-now@0.1.4
β”œβ”€ dateformat@2.2.0
β”œβ”€ de-indent@1.0.2
β”œβ”€ debug@2.6.9
β”‚  └─ ms@2.0.0
β”œβ”€ decamelize@1.2.0
β”œβ”€ decode-uri-component@0.2.0
β”œβ”€ decompress-response@3.3.0
β”‚  └─ mimic-response@^1.0.0
β”œβ”€ decompress-tar@4.1.1
β”‚  β”œβ”€ file-type@^5.2.0
β”‚  β”œβ”€ file-type@5.2.0
β”‚  β”œβ”€ is-stream@^1.1.0
β”‚  └─ tar-stream@^1.5.2
β”œβ”€ decompress-tarbz2@3.1.0
β”‚  β”œβ”€ clone@0.2.0
β”‚  β”œβ”€ is-bzip2@^1.0.0
β”‚  β”œβ”€ isarray@0.0.1
β”‚  β”œβ”€ object-assign@^2.0.0
β”‚  β”œβ”€ object-assign@2.1.1
β”‚  β”œβ”€ readable-stream@1.0.34
β”‚  β”‚  β”œβ”€ core-util-is@~1.0.0
β”‚  β”‚  β”œβ”€ inherits@~2.0.1
β”‚  β”‚  β”œβ”€ isarray@0.0.1
β”‚  β”‚  └─ string_decoder@~0.10.x
β”‚  β”œβ”€ seek-bzip@^1.0.3
β”‚  β”œβ”€ strip-dirs@^1.0.0
β”‚  β”œβ”€ tar-stream@^1.1.1
β”‚  β”œβ”€ through2@^0.6.1
β”‚  β”œβ”€ through2@0.6.5
β”‚  β”‚  β”œβ”€ readable-stream@>=1.0.33-1 <1.1.0-0
β”‚  β”‚  └─ xtend@>=4.0.0 <4.1.0-0
β”‚  β”œβ”€ vinyl@^0.4.3
β”‚  └─ vinyl@0.4.6
β”‚     β”œβ”€ clone-stats@^0.0.1
β”‚     └─ clone@^0.2.0
β”œβ”€ decompress-targz@3.1.0
β”‚  β”œβ”€ clone@0.2.0
β”‚  β”œβ”€ is-gzip@^1.0.0
β”‚  β”œβ”€ isarray@0.0.1
β”‚  β”œβ”€ object-assign@^2.0.0
β”‚  β”œβ”€ object-assign@2.1.1
β”‚  β”œβ”€ readable-stream@1.0.34
β”‚  β”‚  β”œβ”€ core-util-is@~1.0.0
β”‚  β”‚  β”œβ”€ inherits@~2.0.1
β”‚  β”‚  β”œβ”€ isarray@0.0.1
β”‚  β”‚  └─ string_decoder@~0.10.x
β”‚  β”œβ”€ strip-dirs@^1.0.0
β”‚  β”œβ”€ tar-stream@^1.1.1
β”‚  β”œβ”€ through2@^0.6.1
β”‚  β”œβ”€ through2@0.6.5
β”‚  β”‚  β”œβ”€ readable-stream@>=1.0.33-1 <1.1.0-0
β”‚  β”‚  └─ xtend@>=4.0.0 <4.1.0-0
β”‚  β”œβ”€ vinyl@^0.4.3
β”‚  └─ vinyl@0.4.6
β”‚     β”œβ”€ clone-stats@^0.0.1
β”‚     └─ clone@^0.2.0
β”œβ”€ decompress-unzip@3.4.0
β”‚  β”œβ”€ is-zip@^1.0.0
β”‚  β”œβ”€ read-all-stream@^3.0.0
β”‚  β”œβ”€ stat-mode@^0.2.0
β”‚  β”œβ”€ strip-dirs@^1.0.0
β”‚  β”œβ”€ through2@^2.0.0
β”‚  β”œβ”€ vinyl@^1.0.0
β”‚  └─ yauzl@^2.2.1
β”œβ”€ decompress@3.0.0
β”‚  β”œβ”€ buffer-to-vinyl@^1.0.0
β”‚  β”œβ”€ clone@0.2.0
β”‚  β”œβ”€ concat-stream@^1.4.6
β”‚  β”œβ”€ decompress-tar@^3.0.0
β”‚  β”œβ”€ decompress-tar@3.1.0
β”‚  β”‚  β”œβ”€ is-tar@^1.0.0
β”‚  β”‚  β”œβ”€ object-assign@^2.0.0
β”‚  β”‚  β”œβ”€ strip-dirs@^1.0.0
β”‚  β”‚  β”œβ”€ tar-stream@^1.1.1
β”‚  β”‚  β”œβ”€ through2@^0.6.1
β”‚  β”‚  └─ vinyl@^0.4.3
β”‚  β”œβ”€ decompress-tarbz2@^3.0.0
β”‚  β”œβ”€ decompress-targz@^3.0.0
β”‚  β”œβ”€ decompress-unzip@^3.0.0
β”‚  β”œβ”€ isarray@0.0.1
β”‚  β”œβ”€ object-assign@2.1.1
β”‚  β”œβ”€ readable-stream@1.0.34
β”‚  β”‚  β”œβ”€ core-util-is@~1.0.0
β”‚  β”‚  β”œβ”€ inherits@~2.0.1
β”‚  β”‚  β”œβ”€ isarray@0.0.1
β”‚  β”‚  └─ string_decoder@~0.10.x
β”‚  β”œβ”€ stream-combiner2@^1.1.1
β”‚  β”œβ”€ through2@0.6.5
β”‚  β”‚  β”œβ”€ readable-stream@>=1.0.33-1 <1.1.0-0
β”‚  β”‚  └─ xtend@>=4.0.0 <4.1.0-0
β”‚  β”œβ”€ vinyl-assign@^1.0.1
β”‚  β”œβ”€ vinyl-fs@^2.2.0
β”‚  └─ vinyl@0.4.6
β”‚     β”œβ”€ clone-stats@^0.0.1
β”‚     └─ clone@^0.2.0
β”œβ”€ deep-equal@1.0.1
β”œβ”€ deep-extend@0.4.2
β”œβ”€ define-properties@1.1.2
β”‚  β”œβ”€ foreach@^2.0.5
β”‚  └─ object-keys@^1.0.8
β”œβ”€ define-property@0.2.5
β”‚  β”œβ”€ is-accessor-descriptor@0.1.6
β”‚  β”‚  β”œβ”€ kind-of@^3.0.2
β”‚  β”‚  └─ kind-of@3.2.2
β”‚  β”‚     └─ is-buffer@^1.1.5
β”‚  β”œβ”€ is-data-descriptor@0.1.4
β”‚  β”‚  β”œβ”€ kind-of@^3.0.2
β”‚  β”‚  └─ kind-of@3.2.2
β”‚  β”‚     └─ is-buffer@^1.1.5
β”‚  β”œβ”€ is-descriptor@^0.1.0
β”‚  β”œβ”€ is-descriptor@0.1.6
β”‚  β”‚  β”œβ”€ is-accessor-descriptor@^0.1.6
β”‚  β”‚  β”œβ”€ is-data-descriptor@^0.1.4
β”‚  β”‚  └─ kind-of@^5.0.0
β”‚  └─ kind-of@5.1.0
β”œβ”€ defined@1.0.0
β”œβ”€ del@3.0.0
β”‚  β”œβ”€ globby@^6.1.0
β”‚  β”œβ”€ is-path-cwd@^1.0.0
β”‚  β”œβ”€ is-path-in-cwd@^1.0.0
β”‚  β”œβ”€ p-map@^1.1.1
β”‚  β”œβ”€ pify@^3.0.0
β”‚  β”œβ”€ pify@3.0.0
β”‚  └─ rimraf@^2.2.8
β”œβ”€ delayed-stream@1.0.0
β”œβ”€ delegates@1.0.0
β”œβ”€ depd@1.1.2
β”œβ”€ des.js@1.0.0
β”‚  β”œβ”€ inherits@^2.0.1
β”‚  └─ minimalistic-assert@^1.0.0
β”œβ”€ destroy@1.0.4
β”œβ”€ detect-indent@4.0.0
β”‚  └─ repeating@^2.0.0
β”œβ”€ detect-libc@1.0.3
β”œβ”€ detect-node@2.0.3
β”œβ”€ diffie-hellman@5.0.2
β”‚  β”œβ”€ bn.js@^4.1.0
β”‚  β”œβ”€ miller-rabin@^4.0.0
β”‚  └─ randombytes@^2.0.0
β”œβ”€ dns-equal@1.0.0
β”œβ”€ dns-packet@1.3.1
β”‚  β”œβ”€ ip@^1.1.0
β”‚  └─ safe-buffer@^5.0.1
β”œβ”€ dns-txt@2.0.2
β”‚  └─ buffer-indexof@^1.0.0
β”œβ”€ dom-serializer@0.1.0
β”‚  β”œβ”€ domelementtype@~1.1.1
β”‚  β”œβ”€ domelementtype@1.1.3
β”‚  └─ entities@~1.1.1
β”œβ”€ domain-browser@1.2.0
β”œβ”€ domelementtype@1.3.0
β”œβ”€ domutils@1.5.1
β”‚  β”œβ”€ dom-serializer@0
β”‚  └─ domelementtype@1
β”œβ”€ dot-prop@4.2.0
β”‚  └─ is-obj@^1.0.0
β”œβ”€ dotenv-expand@4.2.0
β”œβ”€ dotenv@4.0.0
β”œβ”€ download@4.4.3
β”‚  β”œβ”€ caw@^1.0.1
β”‚  β”œβ”€ concat-stream@^1.4.7
β”‚  β”œβ”€ each-async@^1.0.0
β”‚  β”œβ”€ filenamify@^1.0.1
β”‚  β”œβ”€ got@^5.0.0
β”‚  β”œβ”€ gulp-decompress@^1.2.0
β”‚  β”œβ”€ gulp-rename@^1.2.0
β”‚  β”œβ”€ is-url@^1.2.0
β”‚  β”œβ”€ object-assign@^4.0.1
β”‚  β”œβ”€ read-all-stream@^3.0.0
β”‚  β”œβ”€ readable-stream@^2.0.2
β”‚  β”œβ”€ stream-combiner2@^1.1.1
β”‚  β”œβ”€ vinyl-fs@^2.2.0
β”‚  β”œβ”€ vinyl@^1.0.0
β”‚  └─ ware@^1.2.0
β”œβ”€ duplexer@0.1.1
β”œβ”€ duplexer2@0.1.4
β”‚  └─ readable-stream@^2.0.2
β”œβ”€ duplexer3@0.1.4
β”œβ”€ duplexify@3.5.4
β”‚  β”œβ”€ end-of-stream@^1.0.0
β”‚  β”œβ”€ inherits@^2.0.1
β”‚  β”œβ”€ readable-stream@^2.0.0
β”‚  └─ stream-shift@^1.0.0
β”œβ”€ each-async@1.1.1
β”‚  β”œβ”€ onetime@^1.0.0
β”‚  └─ set-immediate-shim@^1.0.0
β”œβ”€ ecc-jsbn@0.1.1
β”‚  └─ jsbn@~0.1.0
β”œβ”€ ee-first@1.1.1
β”œβ”€ electron-to-chromium@1.3.39
β”œβ”€ elliptic@6.4.0
β”‚  β”œβ”€ bn.js@^4.4.0
β”‚  β”œβ”€ brorand@^1.0.1
β”‚  β”œβ”€ hash.js@^1.0.0
β”‚  β”œβ”€ hmac-drbg@^1.0.0
β”‚  β”œβ”€ inherits@^2.0.1
β”‚  β”œβ”€ minimalistic-assert@^1.0.0
β”‚  └─ minimalistic-crypto-utils@^1.0.0
β”œβ”€ emojis-list@2.1.0
β”œβ”€ encodeurl@1.0.2
β”œβ”€ end-of-stream@1.4.1
β”‚  └─ once@^1.4.0
β”œβ”€ enhanced-resolve@3.4.1
β”‚  β”œβ”€ graceful-fs@^4.1.2
β”‚  β”œβ”€ memory-fs@^0.4.0
β”‚  β”œβ”€ object-assign@^4.0.1
β”‚  └─ tapable@^0.2.7
β”œβ”€ entities@1.1.1
β”œβ”€ errno@0.1.7
β”‚  └─ prr@~1.0.1
β”œβ”€ error-ex@1.3.1
β”‚  └─ is-arrayish@^0.2.1
β”œβ”€ error-stack-parser@2.0.1
β”‚  └─ stackframe@^1.0.3
β”œβ”€ es-abstract@1.10.0
β”‚  β”œβ”€ es-to-primitive@^1.1.1
β”‚  β”œβ”€ function-bind@^1.1.1
β”‚  β”œβ”€ has@^1.0.1
β”‚  β”œβ”€ is-callable@^1.1.3
β”‚  └─ is-regex@^1.0.4
β”œβ”€ es-to-primitive@1.1.1
β”‚  β”œβ”€ is-callable@^1.1.1
β”‚  β”œβ”€ is-date-object@^1.0.1
β”‚  └─ is-symbol@^1.0.1
β”œβ”€ es5-ext@0.10.41
β”‚  β”œβ”€ es6-iterator@~2.0.3
β”‚  β”œβ”€ es6-symbol@~3.1.1
β”‚  └─ next-tick@1
β”œβ”€ es6-iterator@2.0.3
β”‚  β”œβ”€ d@1
β”‚  β”œβ”€ es5-ext@^0.10.35
β”‚  └─ es6-symbol@^3.1.1
β”œβ”€ es6-map@0.1.5
β”‚  β”œβ”€ d@1
β”‚  β”œβ”€ es5-ext@~0.10.14
β”‚  β”œβ”€ es6-iterator@~2.0.1
β”‚  β”œβ”€ es6-set@~0.1.5
β”‚  β”œβ”€ es6-symbol@~3.1.1
β”‚  └─ event-emitter@~0.3.5
β”œβ”€ es6-set@0.1.5
β”‚  β”œβ”€ d@1
β”‚  β”œβ”€ es5-ext@~0.10.14
β”‚  β”œβ”€ es6-iterator@~2.0.1
β”‚  β”œβ”€ es6-symbol@3.1.1
β”‚  └─ event-emitter@~0.3.5
β”œβ”€ es6-symbol@3.1.1
β”‚  β”œβ”€ d@1
β”‚  └─ es5-ext@~0.10.14
β”œβ”€ es6-templates@0.2.3
β”‚  β”œβ”€ recast@~0.11.12
β”‚  └─ through@~2.3.6
β”œβ”€ es6-weak-map@2.0.2
β”‚  β”œβ”€ d@1
β”‚  β”œβ”€ es5-ext@^0.10.14
β”‚  β”œβ”€ es6-iterator@^2.0.1
β”‚  └─ es6-symbol@^3.1.1
β”œβ”€ escape-html@1.0.3
β”œβ”€ escape-string-regexp@1.0.5
β”œβ”€ escope@3.6.0
β”‚  β”œβ”€ es6-map@^0.1.3
β”‚  β”œβ”€ es6-weak-map@^2.0.1
β”‚  β”œβ”€ esrecurse@^4.1.0
β”‚  └─ estraverse@^4.1.1
β”œβ”€ esprima@4.0.0
β”œβ”€ esrecurse@4.2.1
β”‚  └─ estraverse@^4.1.0
β”œβ”€ estraverse@4.2.0
β”œβ”€ esutils@2.0.2
β”œβ”€ etag@1.8.1
β”œβ”€ event-emitter@0.3.5
β”‚  β”œβ”€ d@1
β”‚  └─ es5-ext@~0.10.14
β”œβ”€ event-stream@3.3.4
β”‚  β”œβ”€ duplexer@~0.1.1
β”‚  β”œβ”€ from@~0
β”‚  β”œβ”€ map-stream@~0.1.0
β”‚  β”œβ”€ pause-stream@0.0.11
β”‚  β”œβ”€ split@0.3
β”‚  β”œβ”€ stream-combiner@~0.0.4
β”‚  └─ through@~2.3.1
β”œβ”€ eventemitter3@1.2.0
β”œβ”€ events@1.1.1
β”œβ”€ eventsource@0.1.6
β”‚  └─ original@>=0.0.5
β”œβ”€ evp_bytestokey@1.0.3
β”‚  β”œβ”€ md5.js@^1.3.4
β”‚  └─ safe-buffer@^5.1.1
β”œβ”€ exec-buffer@3.2.0
β”‚  β”œβ”€ execa@^0.7.0
β”‚  β”œβ”€ p-finally@^1.0.0
β”‚  β”œβ”€ pify@^3.0.0
β”‚  β”œβ”€ pify@3.0.0
β”‚  β”œβ”€ rimraf@^2.5.4
β”‚  └─ tempfile@^2.0.0
β”œβ”€ exec-series@1.0.3
β”‚  β”œβ”€ async-each-series@^1.1.0
β”‚  └─ object-assign@^4.1.0
β”œβ”€ execa@0.7.0
β”‚  β”œβ”€ cross-spawn@^5.0.1
β”‚  β”œβ”€ get-stream@^3.0.0
β”‚  β”œβ”€ is-stream@^1.1.0
β”‚  β”œβ”€ npm-run-path@^2.0.0
β”‚  β”œβ”€ p-finally@^1.0.0
β”‚  β”œβ”€ signal-exit@^3.0.0
β”‚  └─ strip-eof@^1.0.0
β”œβ”€ executable@1.1.0
β”‚  └─ meow@^3.1.0
β”œβ”€ expand-brackets@0.1.5
β”‚  └─ is-posix-bracket@^0.1.0
β”œβ”€ expand-range@1.8.2
β”‚  β”œβ”€ fill-range@^2.1.0
β”‚  β”œβ”€ fill-range@2.2.3
β”‚  β”‚  β”œβ”€ is-number@^2.1.0
β”‚  β”‚  β”œβ”€ isobject@^2.0.0
β”‚  β”‚  β”œβ”€ randomatic@^1.1.3
β”‚  β”‚  β”œβ”€ repeat-element@^1.1.2
β”‚  β”‚  └─ repeat-string@^1.5.2
β”‚  β”œβ”€ is-number@2.1.0
β”‚  β”‚  └─ kind-of@^3.0.2
β”‚  └─ isobject@2.1.0
β”‚     └─ isarray@1.0.0
β”œβ”€ express@4.16.3
β”‚  β”œβ”€ accepts@~1.3.5
β”‚  β”œβ”€ array-flatten@1.1.1
β”‚  β”œβ”€ body-parser@1.18.2
β”‚  β”œβ”€ content-disposition@0.5.2
β”‚  β”œβ”€ content-type@~1.0.4
β”‚  β”œβ”€ cookie-signature@1.0.6
β”‚  β”œβ”€ cookie@0.3.1
β”‚  β”œβ”€ debug@2.6.9
β”‚  β”œβ”€ depd@~1.1.2
β”‚  β”œβ”€ encodeurl@~1.0.2
β”‚  β”œβ”€ escape-html@~1.0.3
β”‚  β”œβ”€ etag@~1.8.1
β”‚  β”œβ”€ finalhandler@1.1.1
β”‚  β”œβ”€ fresh@0.5.2
β”‚  β”œβ”€ merge-descriptors@1.0.1
β”‚  β”œβ”€ methods@~1.1.2
β”‚  β”œβ”€ on-finished@~2.3.0
β”‚  β”œβ”€ parseurl@~1.3.2
β”‚  β”œβ”€ path-to-regexp@0.1.7
β”‚  β”œβ”€ proxy-addr@~2.0.3
β”‚  β”œβ”€ qs@6.5.1
β”‚  β”œβ”€ range-parser@~1.2.0
β”‚  β”œβ”€ safe-buffer@5.1.1
β”‚  β”œβ”€ send@0.16.2
β”‚  β”œβ”€ serve-static@1.13.2
β”‚  β”œβ”€ setprototypeof@1.1.0
β”‚  β”œβ”€ statuses@~1.4.0
β”‚  β”œβ”€ type-is@~1.6.16
β”‚  β”œβ”€ utils-merge@1.0.1
β”‚  └─ vary@~1.1.2
β”œβ”€ ext-list@2.2.2
β”‚  └─ mime-db@^1.28.0
β”œβ”€ ext-name@5.0.0
β”‚  β”œβ”€ ext-list@^2.0.0
β”‚  └─ sort-keys-length@^1.0.0
β”œβ”€ extend-shallow@2.0.1
β”‚  └─ is-extendable@^0.1.0
β”œβ”€ extend@3.0.1
β”œβ”€ extglob@0.3.2
β”‚  └─ is-extglob@^1.0.0
β”œβ”€ extract-text-webpack-plugin@3.0.2
β”‚  β”œβ”€ async@^2.4.1
β”‚  β”œβ”€ loader-utils@^1.1.0
β”‚  β”œβ”€ schema-utils@^0.3.0
β”‚  └─ webpack-sources@^1.0.1
β”œβ”€ extsprintf@1.3.0
β”œβ”€ fancy-log@1.3.2
β”‚  β”œβ”€ ansi-gray@^0.1.1
β”‚  β”œβ”€ color-support@^1.1.3
β”‚  β”œβ”€ time-stamp@^1.0.0
β”‚  └─ time-stamp@1.1.0
β”œβ”€ fast-deep-equal@1.1.0
β”œβ”€ fast-json-stable-stringify@2.0.0
β”œβ”€ fastparse@1.1.1
β”œβ”€ faye-websocket@0.10.0
β”‚  └─ websocket-driver@>=0.5.1
β”œβ”€ fd-slicer@1.0.1
β”‚  └─ pend@~1.2.0
β”œβ”€ figures@1.7.0
β”‚  β”œβ”€ escape-string-regexp@^1.0.5
β”‚  └─ object-assign@^4.1.0
β”œβ”€ file-loader@0.11.2
β”‚  └─ loader-utils@^1.0.2
β”œβ”€ file-type@3.9.0
β”œβ”€ filename-regex@2.0.1
β”œβ”€ filename-reserved-regex@1.0.0
β”œβ”€ filenamify@1.2.1
β”‚  β”œβ”€ filename-reserved-regex@^1.0.0
β”‚  β”œβ”€ strip-outer@^1.0.0
β”‚  └─ trim-repeated@^1.0.0
β”œβ”€ fill-range@4.0.0
β”‚  β”œβ”€ extend-shallow@^2.0.1
β”‚  β”œβ”€ is-number@^3.0.0
β”‚  β”œβ”€ repeat-string@^1.6.1
β”‚  └─ to-regex-range@^2.1.0
β”œβ”€ finalhandler@1.1.1
β”‚  β”œβ”€ debug@2.6.9
β”‚  β”œβ”€ encodeurl@~1.0.2
β”‚  β”œβ”€ escape-html@~1.0.3
β”‚  β”œβ”€ on-finished@~2.3.0
β”‚  β”œβ”€ parseurl@~1.3.2
β”‚  β”œβ”€ statuses@~1.4.0
β”‚  └─ unpipe@~1.0.0
β”œβ”€ find-cache-dir@1.0.0
β”‚  β”œβ”€ commondir@^1.0.1
β”‚  β”œβ”€ make-dir@^1.0.0
β”‚  └─ pkg-dir@^2.0.0
β”œβ”€ find-up@2.1.0
β”‚  └─ locate-path@^2.0.0
β”œβ”€ find-versions@1.2.1
β”‚  β”œβ”€ array-uniq@^1.0.0
β”‚  β”œβ”€ get-stdin@^4.0.1
β”‚  β”œβ”€ meow@^3.5.0
β”‚  └─ semver-regex@^1.0.0
β”œβ”€ first-chunk-stream@1.0.0
β”œβ”€ flatten@1.0.2
β”œβ”€ flush-write-stream@1.0.2
β”‚  β”œβ”€ inherits@^2.0.1
β”‚  └─ readable-stream@^2.0.4
β”œβ”€ for-in@1.0.2
β”œβ”€ for-own@0.1.5
β”‚  └─ for-in@^1.0.1
β”œβ”€ foreach@2.0.5
β”œβ”€ forever-agent@0.6.1
β”œβ”€ form-data@2.1.4
β”‚  β”œβ”€ asynckit@^0.4.0
β”‚  β”œβ”€ combined-stream@^1.0.5
β”‚  └─ mime-types@^2.1.12
β”œβ”€ forwarded@0.1.2
β”œβ”€ fragment-cache@0.2.1
β”‚  └─ map-cache@^0.2.2
β”œβ”€ fresh@0.5.2
β”œβ”€ friendly-errors-webpack-plugin@1.6.1
β”‚  β”œβ”€ chalk@^1.1.3
β”‚  β”œβ”€ error-stack-parser@^2.0.0
β”‚  └─ string-length@^1.0.1
β”œβ”€ from@0.1.7
β”œβ”€ from2@2.3.0
β”‚  β”œβ”€ inherits@^2.0.1
β”‚  └─ readable-stream@^2.0.0
β”œβ”€ fs-extra@3.0.1
β”‚  β”œβ”€ graceful-fs@^4.1.2
β”‚  β”œβ”€ jsonfile@^3.0.0
β”‚  └─ universalify@^0.1.0
β”œβ”€ fs-write-stream-atomic@1.0.10
β”‚  β”œβ”€ graceful-fs@^4.1.2
β”‚  β”œβ”€ iferr@^0.1.5
β”‚  β”œβ”€ imurmurhash@^0.1.4
β”‚  └─ readable-stream@1 || 2
β”œβ”€ fs.realpath@1.0.0
β”œβ”€ fsevents@1.1.3
β”‚  β”œβ”€ nan@^2.3.0
β”‚  └─ node-pre-gyp@^0.6.39
β”œβ”€ fstream-ignore@1.0.5
β”‚  β”œβ”€ fstream@^1.0.0
β”‚  β”œβ”€ inherits@2
β”‚  └─ minimatch@^3.0.0
β”œβ”€ fstream@1.0.11
β”‚  β”œβ”€ graceful-fs@^4.1.2
β”‚  β”œβ”€ inherits@~2.0.0
β”‚  β”œβ”€ mkdirp@>=0.5 0
β”‚  └─ rimraf@2
β”œβ”€ function-bind@1.1.1
β”œβ”€ gather-stream@1.0.0
β”œβ”€ gauge@2.7.4
β”‚  β”œβ”€ aproba@^1.0.3
β”‚  β”œβ”€ console-control-strings@^1.0.0
β”‚  β”œβ”€ has-unicode@^2.0.0
β”‚  β”œβ”€ object-assign@^4.1.0
β”‚  β”œβ”€ signal-exit@^3.0.0
β”‚  β”œβ”€ string-width@^1.0.1
β”‚  β”œβ”€ strip-ansi@^3.0.1
β”‚  └─ wide-align@^1.1.0
β”œβ”€ gaze@1.1.2
β”‚  └─ globule@^1.0.0
β”œβ”€ generate-function@2.0.0
β”œβ”€ generate-object-property@1.2.0
β”‚  └─ is-property@^1.0.0
β”œβ”€ get-caller-file@1.0.2
β”œβ”€ get-proxy@1.1.0
β”‚  └─ rc@^1.1.2
β”œβ”€ get-stdin@4.0.1
β”œβ”€ get-stream@3.0.0
β”œβ”€ get-value@2.0.6
β”œβ”€ getpass@0.1.7
β”‚  └─ assert-plus@^1.0.0
β”œβ”€ gifsicle@3.0.4
β”‚  β”œβ”€ bin-build@^2.0.0
β”‚  β”œβ”€ bin-wrapper@^3.0.0
β”‚  └─ logalot@^2.0.0
β”œβ”€ glob-all@3.1.0
β”‚  β”œβ”€ glob@^7.0.5
β”‚  β”œβ”€ minimist@0.1.0
β”‚  β”œβ”€ yargs@~1.2.6
β”‚  └─ yargs@1.2.6
β”‚     └─ minimist@^0.1.0
β”œβ”€ glob-base@0.3.0
β”‚  β”œβ”€ glob-parent@^2.0.0
β”‚  β”œβ”€ glob-parent@2.0.0
β”‚  β”‚  └─ is-glob@^2.0.0
β”‚  └─ is-glob@^2.0.0
β”œβ”€ glob-parent@3.1.0
β”‚  β”œβ”€ is-extglob@2.1.1
β”‚  β”œβ”€ is-glob@^3.1.0
β”‚  β”œβ”€ is-glob@3.1.0
β”‚  β”‚  └─ is-extglob@^2.1.0
β”‚  └─ path-dirname@^1.0.0
β”œβ”€ glob-stream@5.3.5
β”‚  β”œβ”€ extend@^3.0.0
β”‚  β”œβ”€ glob-parent@^3.0.0
β”‚  β”œβ”€ glob@^5.0.3
β”‚  β”œβ”€ glob@5.0.15
β”‚  β”‚  β”œβ”€ inflight@^1.0.4
β”‚  β”‚  β”œβ”€ inherits@2
β”‚  β”‚  β”œβ”€ minimatch@2 || 3
β”‚  β”‚  β”œβ”€ once@^1.3.0
β”‚  β”‚  └─ path-is-absolute@^1.0.0
β”‚  β”œβ”€ isarray@0.0.1
β”‚  β”œβ”€ micromatch@^2.3.7
β”‚  β”œβ”€ ordered-read-streams@^0.3.0
β”‚  β”œβ”€ readable-stream@1.0.34
β”‚  β”‚  β”œβ”€ core-util-is@~1.0.0
β”‚  β”‚  β”œβ”€ inherits@~2.0.1
β”‚  β”‚  β”œβ”€ isarray@0.0.1
β”‚  β”‚  └─ string_decoder@~0.10.x
β”‚  β”œβ”€ through2@^0.6.0
β”‚  β”œβ”€ through2@0.6.5
β”‚  β”‚  β”œβ”€ readable-stream@>=1.0.33-1 <1.1.0-0
β”‚  β”‚  └─ xtend@>=4.0.0 <4.1.0-0
β”‚  β”œβ”€ to-absolute-glob@^0.1.1
β”‚  └─ unique-stream@^2.0.2
β”œβ”€ glob@7.1.2
β”‚  β”œβ”€ fs.realpath@^1.0.0
β”‚  β”œβ”€ inflight@^1.0.4
β”‚  β”œβ”€ inherits@2
β”‚  β”œβ”€ minimatch@^3.0.4
β”‚  β”œβ”€ once@^1.3.0
β”‚  └─ path-is-absolute@^1.0.0
β”œβ”€ global-dirs@0.1.1
β”‚  └─ ini@^1.3.4
β”œβ”€ globals@9.18.0
β”œβ”€ globby@6.1.0
β”‚  β”œβ”€ array-union@^1.0.1
β”‚  β”œβ”€ glob@^7.0.3
β”‚  β”œβ”€ object-assign@^4.0.1
β”‚  β”œβ”€ pify@^2.0.0
β”‚  └─ pinkie-promise@^2.0.0
β”œβ”€ globs@0.1.3
β”‚  └─ glob@^7.1.1
β”œβ”€ globule@1.2.0
β”‚  β”œβ”€ glob@~7.1.1
β”‚  β”œβ”€ lodash@~4.17.4
β”‚  └─ minimatch@~3.0.2
β”œβ”€ glogg@1.0.1
β”‚  └─ sparkles@^1.0.0
β”œβ”€ got@5.7.1
β”‚  β”œβ”€ create-error-class@^3.0.1
β”‚  β”œβ”€ duplexer2@^0.1.4
β”‚  β”œβ”€ is-redirect@^1.0.0
β”‚  β”œβ”€ is-retry-allowed@^1.0.0
β”‚  β”œβ”€ is-stream@^1.0.0
β”‚  β”œβ”€ lowercase-keys@^1.0.0
β”‚  β”œβ”€ node-status-codes@^1.0.0
β”‚  β”œβ”€ object-assign@^4.0.1
β”‚  β”œβ”€ parse-json@^2.1.0
β”‚  β”œβ”€ pinkie-promise@^2.0.0
β”‚  β”œβ”€ read-all-stream@^3.0.0
β”‚  β”œβ”€ readable-stream@^2.0.5
β”‚  β”œβ”€ timed-out@^3.0.0
β”‚  β”œβ”€ timed-out@3.1.3
β”‚  β”œβ”€ unzip-response@^1.0.2
β”‚  └─ url-parse-lax@^1.0.0
β”œβ”€ graceful-fs@4.1.11
β”œβ”€ graceful-readlink@1.0.1
β”œβ”€ growly@1.3.0
β”œβ”€ gulp-decompress@1.2.0
β”‚  β”œβ”€ archive-type@^3.0.0
β”‚  β”œβ”€ decompress@^3.0.0
β”‚  β”œβ”€ gulp-util@^3.0.1
β”‚  └─ readable-stream@^2.0.2
β”œβ”€ gulp-rename@1.2.2
β”œβ”€ gulp-sourcemaps@1.6.0
β”‚  β”œβ”€ convert-source-map@^1.1.1
β”‚  β”œβ”€ graceful-fs@^4.1.2
β”‚  β”œβ”€ strip-bom@^2.0.0
β”‚  β”œβ”€ through2@^2.0.0
β”‚  └─ vinyl@^1.0.0
β”œβ”€ gulp-util@3.0.8
β”‚  β”œβ”€ array-differ@^1.0.0
β”‚  β”œβ”€ array-uniq@^1.0.2
β”‚  β”œβ”€ beeper@^1.0.0
β”‚  β”œβ”€ chalk@^1.0.0
β”‚  β”œβ”€ dateformat@^2.0.0
β”‚  β”œβ”€ fancy-log@^1.1.0
β”‚  β”œβ”€ gulplog@^1.0.0
β”‚  β”œβ”€ has-gulplog@^0.1.0
β”‚  β”œβ”€ lodash._reescape@^3.0.0
β”‚  β”œβ”€ lodash._reevaluate@^3.0.0
β”‚  β”œβ”€ lodash._reinterpolate@^3.0.0
β”‚  β”œβ”€ lodash.template@^3.0.0
β”‚  β”œβ”€ minimist@^1.1.0
β”‚  β”œβ”€ multipipe@^0.1.2
β”‚  β”œβ”€ object-assign@^3.0.0
β”‚  β”œβ”€ object-assign@3.0.0
β”‚  β”œβ”€ replace-ext@0.0.1
β”‚  β”œβ”€ through2@^2.0.0
β”‚  β”œβ”€ vinyl@^0.5.0
β”‚  └─ vinyl@0.5.3
β”‚     β”œβ”€ clone-stats@^0.0.1
β”‚     β”œβ”€ clone@^1.0.0
β”‚     └─ replace-ext@0.0.1
β”œβ”€ gulplog@1.0.0
β”‚  └─ glogg@^1.0.0
β”œβ”€ handle-thing@1.2.5
β”œβ”€ har-schema@2.0.0
β”œβ”€ har-validator@2.0.6
β”‚  β”œβ”€ chalk@^1.1.1
β”‚  β”œβ”€ commander@^2.9.0
β”‚  β”œβ”€ is-my-json-valid@^2.12.4
β”‚  └─ pinkie-promise@^2.0.0
β”œβ”€ has-ansi@2.0.0
β”‚  └─ ansi-regex@^2.0.0
β”œβ”€ has-flag@3.0.0
β”œβ”€ has-gulplog@0.1.0
β”‚  └─ sparkles@^1.0.0
β”œβ”€ has-symbol-support-x@1.4.2
β”œβ”€ has-to-string-tag-x@1.4.1
β”‚  └─ has-symbol-support-x@^1.4.1
β”œβ”€ has-unicode@2.0.1
β”œβ”€ has-value@1.0.0
β”‚  β”œβ”€ get-value@^2.0.6
β”‚  β”œβ”€ has-values@^1.0.0
β”‚  └─ isobject@^3.0.0
β”œβ”€ has-values@1.0.0
β”‚  β”œβ”€ is-number@^3.0.0
β”‚  β”œβ”€ kind-of@^4.0.0
β”‚  └─ kind-of@4.0.0
β”‚     └─ is-buffer@^1.1.5
β”œβ”€ has@1.0.1
β”‚  └─ function-bind@^1.0.2
β”œβ”€ hash-base@2.0.2
β”‚  └─ inherits@^2.0.1
β”œβ”€ hash-sum@1.0.2
β”œβ”€ hash.js@1.1.3
β”‚  β”œβ”€ inherits@^2.0.3
β”‚  └─ minimalistic-assert@^1.0.0
β”œβ”€ hawk@3.1.3
β”‚  β”œβ”€ boom@2.x.x
β”‚  β”œβ”€ cryptiles@2.x.x
β”‚  β”œβ”€ hoek@2.16.3
β”‚  β”œβ”€ hoek@2.x.x
β”‚  └─ sntp@1.x.x
β”œβ”€ he@1.1.1
β”œβ”€ hmac-drbg@1.0.1
β”‚  β”œβ”€ hash.js@^1.0.3
β”‚  β”œβ”€ minimalistic-assert@^1.0.0
β”‚  └─ minimalistic-crypto-utils@^1.0.1
β”œβ”€ hoek@4.2.1
β”œβ”€ home-or-tmp@2.0.0
β”‚  β”œβ”€ os-homedir@^1.0.0
β”‚  └─ os-tmpdir@^1.0.1
β”œβ”€ hosted-git-info@2.6.0
β”œβ”€ hpack.js@2.1.6
β”‚  β”œβ”€ inherits@^2.0.1
β”‚  β”œβ”€ obuf@^1.0.0
β”‚  β”œβ”€ readable-stream@^2.0.1
β”‚  └─ wbuf@^1.1.0
β”œβ”€ html-comment-regex@1.1.1
β”œβ”€ html-entities@1.2.1
β”œβ”€ html-loader@0.4.5
β”‚  β”œβ”€ es6-templates@^0.2.2
β”‚  β”œβ”€ fastparse@^1.1.1
β”‚  β”œβ”€ html-minifier@^3.0.1
β”‚  β”œβ”€ loader-utils@^1.0.2
β”‚  └─ object-assign@^4.1.0
β”œβ”€ html-minifier@3.5.11
β”‚  β”œβ”€ camel-case@3.0.x
β”‚  β”œβ”€ clean-css@4.1.x
β”‚  β”œβ”€ commander@2.15.x
β”‚  β”œβ”€ he@1.1.x
β”‚  β”œβ”€ ncname@1.0.x
β”‚  β”œβ”€ param-case@2.1.x
β”‚  β”œβ”€ relateurl@0.2.x
β”‚  β”œβ”€ source-map@0.6.1
β”‚  β”œβ”€ uglify-js@3.3.15
β”‚  β”‚  β”œβ”€ commander@~2.15.0
β”‚  β”‚  └─ source-map@~0.6.1
β”‚  └─ uglify-js@3.3.x
β”œβ”€ http-deceiver@1.2.7
β”œβ”€ http-errors@1.6.2
β”‚  β”œβ”€ depd@1.1.1
β”‚  β”œβ”€ depd@1.1.1
β”‚  β”œβ”€ inherits@2.0.3
β”‚  β”œβ”€ setprototypeof@1.0.3
β”‚  β”œβ”€ setprototypeof@1.0.3
β”‚  └─ statuses@>= 1.3.1 < 2
β”œβ”€ http-parser-js@0.4.11
β”œβ”€ http-proxy-middleware@0.17.4
β”‚  β”œβ”€ http-proxy@^1.16.2
β”‚  β”œβ”€ is-extglob@2.1.1
β”‚  β”œβ”€ is-glob@^3.1.0
β”‚  β”œβ”€ is-glob@3.1.0
β”‚  β”‚  └─ is-extglob@^2.1.0
β”‚  β”œβ”€ lodash@^4.17.2
β”‚  └─ micromatch@^2.3.11
β”œβ”€ http-proxy@1.16.2
β”‚  β”œβ”€ eventemitter3@1.x.x
β”‚  └─ requires-port@1.x.x
β”œβ”€ http-signature@1.1.1
β”‚  β”œβ”€ assert-plus@^0.2.0
β”‚  β”œβ”€ assert-plus@0.2.0
β”‚  β”œβ”€ jsprim@^1.2.2
β”‚  └─ sshpk@^1.7.0
β”œβ”€ https-browserify@1.0.0
β”œβ”€ iconv-lite@0.4.19
β”œβ”€ icss-replace-symbols@1.1.0
β”œβ”€ icss-utils@2.1.0
β”‚  β”œβ”€ ansi-styles@3.2.1
β”‚  β”‚  └─ color-convert@^1.9.0
β”‚  β”œβ”€ chalk@2.3.2
β”‚  β”‚  β”œβ”€ ansi-styles@^3.2.1
β”‚  β”‚  β”œβ”€ escape-string-regexp@^1.0.5
β”‚  β”‚  └─ supports-color@^5.3.0
β”‚  β”œβ”€ postcss@^6.0.1
β”‚  β”œβ”€ postcss@6.0.20
β”‚  β”‚  β”œβ”€ chalk@^2.3.2
β”‚  β”‚  β”œβ”€ source-map@^0.6.1
β”‚  β”‚  └─ supports-color@^5.3.0
β”‚  └─ source-map@0.6.1
β”œβ”€ ieee754@1.1.10
β”œβ”€ iferr@0.1.5
β”œβ”€ ignore-by-default@1.0.1
β”œβ”€ imagemin-gifsicle@5.2.0
β”‚  β”œβ”€ exec-buffer@^3.0.0
β”‚  β”œβ”€ gifsicle@^3.0.0
β”‚  └─ is-gif@^1.0.0
β”œβ”€ imagemin-mozjpeg@7.0.0
β”‚  β”œβ”€ execa@^0.8.0
β”‚  β”œβ”€ execa@0.8.0
β”‚  β”‚  β”œβ”€ cross-spawn@^5.0.1
β”‚  β”‚  β”œβ”€ get-stream@^3.0.0
β”‚  β”‚  β”œβ”€ is-stream@^1.1.0
β”‚  β”‚  β”œβ”€ npm-run-path@^2.0.0
β”‚  β”‚  β”œβ”€ p-finally@^1.0.0
β”‚  β”‚  β”œβ”€ signal-exit@^3.0.0
β”‚  β”‚  └─ strip-eof@^1.0.0
β”‚  β”œβ”€ is-jpg@^1.0.0
β”‚  └─ mozjpeg@^5.0.0
β”œβ”€ imagemin-optipng@5.2.1
β”‚  β”œβ”€ exec-buffer@^3.0.0
β”‚  β”œβ”€ is-png@^1.0.0
β”‚  └─ optipng-bin@^3.0.0
β”œβ”€ imagemin-pngquant@5.1.0
β”‚  β”œβ”€ cross-spawn@6.0.5
β”‚  β”‚  β”œβ”€ nice-try@^1.0.4
β”‚  β”‚  β”œβ”€ path-key@^2.0.1
β”‚  β”‚  β”œβ”€ semver@^5.5.0
β”‚  β”‚  β”œβ”€ shebang-command@^1.2.0
β”‚  β”‚  └─ which@^1.2.9
β”‚  β”œβ”€ execa@^0.10.0
β”‚  β”œβ”€ execa@0.10.0
β”‚  β”‚  β”œβ”€ cross-spawn@^6.0.0
β”‚  β”‚  β”œβ”€ get-stream@^3.0.0
β”‚  β”‚  β”œβ”€ is-stream@^1.1.0
β”‚  β”‚  β”œβ”€ npm-run-path@^2.0.0
β”‚  β”‚  β”œβ”€ p-finally@^1.0.0
β”‚  β”‚  β”œβ”€ signal-exit@^3.0.0
β”‚  β”‚  └─ strip-eof@^1.0.0
β”‚  β”œβ”€ is-png@^1.0.0
β”‚  β”œβ”€ is-stream@^1.1.0
β”‚  └─ pngquant-bin@^4.0.0
β”œβ”€ imagemin-svgo@6.0.0
β”‚  β”œβ”€ buffer-from@^0.1.1
β”‚  β”œβ”€ is-svg@^2.0.0
β”‚  └─ svgo@^1.0.0
β”œβ”€ imagemin@5.3.1
β”‚  β”œβ”€ file-type@^4.1.0
β”‚  β”œβ”€ file-type@4.4.0
β”‚  β”œβ”€ globby@^6.1.0
β”‚  β”œβ”€ make-dir@^1.0.0
β”‚  β”œβ”€ p-pipe@^1.1.0
β”‚  β”œβ”€ pify@^2.3.0
β”‚  β”œβ”€ replace-ext@^1.0.0
β”‚  └─ replace-ext@1.0.0
β”œβ”€ img-loader@2.0.1
β”‚  β”œβ”€ imagemin-gifsicle@^5.2.0
β”‚  β”œβ”€ imagemin-mozjpeg@^7.0.0
β”‚  β”œβ”€ imagemin-optipng@^5.2.0
β”‚  β”œβ”€ imagemin-pngquant@^5.0.1
β”‚  β”œβ”€ imagemin-svgo@^6.0.0
β”‚  β”œβ”€ imagemin@^5.3.1
β”‚  └─ loader-utils@^1.1.0
β”œβ”€ import-lazy@2.1.0
β”œβ”€ import-local@1.0.0
β”‚  β”œβ”€ pkg-dir@^2.0.0
β”‚  └─ resolve-cwd@^2.0.0
β”œβ”€ imurmurhash@0.1.4
β”œβ”€ in-publish@2.0.0
β”œβ”€ indent-string@2.1.0
β”‚  └─ repeating@^2.0.0
β”œβ”€ indexes-of@1.0.1
β”œβ”€ indexof@0.0.1
β”œβ”€ inflight@1.0.6
β”‚  β”œβ”€ once@^1.3.0
β”‚  └─ wrappy@1
β”œβ”€ inherits@2.0.3
β”œβ”€ ini@1.3.5
β”œβ”€ internal-ip@1.2.0
β”‚  └─ meow@^3.3.0
β”œβ”€ interpret@1.1.0
β”œβ”€ invariant@2.2.4
β”‚  └─ loose-envify@^1.0.0
β”œβ”€ invert-kv@1.0.0
β”œβ”€ ip-regex@1.0.3
β”œβ”€ ip@1.1.5
β”œβ”€ ipaddr.js@1.6.0
β”œβ”€ is-absolute-url@2.1.0
β”œβ”€ is-absolute@0.1.7
β”‚  └─ is-relative@^0.1.0
β”œβ”€ is-accessor-descriptor@1.0.0
β”‚  β”œβ”€ kind-of@^6.0.0
β”‚  └─ kind-of@6.0.2
β”œβ”€ is-arrayish@0.2.1
β”œβ”€ is-binary-path@1.0.1
β”‚  └─ binary-extensions@^1.0.0
β”œβ”€ is-buffer@1.1.6
β”œβ”€ is-builtin-module@1.0.0
β”‚  └─ builtin-modules@^1.0.0
β”œβ”€ is-bzip2@1.0.0
β”œβ”€ is-callable@1.1.3
β”œβ”€ is-data-descriptor@1.0.0
β”‚  β”œβ”€ kind-of@^6.0.0
β”‚  └─ kind-of@6.0.2
β”œβ”€ is-date-object@1.0.1
β”œβ”€ is-descriptor@1.0.2
β”‚  β”œβ”€ is-accessor-descriptor@^1.0.0
β”‚  β”œβ”€ is-data-descriptor@^1.0.0
β”‚  β”œβ”€ kind-of@^6.0.2
β”‚  └─ kind-of@6.0.2
β”œβ”€ is-directory@0.3.1
β”œβ”€ is-dotfile@1.0.3
β”œβ”€ is-equal-shallow@0.1.3
β”‚  └─ is-primitive@^2.0.0
β”œβ”€ is-extendable@0.1.1
β”œβ”€ is-extglob@1.0.0
β”œβ”€ is-finite@1.0.2
β”‚  └─ number-is-nan@^1.0.0
β”œβ”€ is-fullwidth-code-point@1.0.0
β”‚  └─ number-is-nan@^1.0.0
β”œβ”€ is-gif@1.0.0
β”œβ”€ is-glob@2.0.1
β”‚  └─ is-extglob@^1.0.0
β”œβ”€ is-gzip@1.0.0
β”œβ”€ is-installed-globally@0.1.0
β”‚  β”œβ”€ global-dirs@^0.1.0
β”‚  └─ is-path-inside@^1.0.0
β”œβ”€ is-jpg@1.0.0
β”œβ”€ is-my-ip-valid@1.0.0
β”œβ”€ is-my-json-valid@2.17.2
β”‚  β”œβ”€ generate-function@^2.0.0
β”‚  β”œβ”€ generate-object-property@^1.1.0
β”‚  β”œβ”€ is-my-ip-valid@^1.0.0
β”‚  β”œβ”€ jsonpointer@^4.0.0
β”‚  └─ xtend@^4.0.0
β”œβ”€ is-natural-number@2.1.1
β”œβ”€ is-npm@1.0.0
β”œβ”€ is-number@3.0.0
β”‚  └─ kind-of@^3.0.2
β”œβ”€ is-obj@1.0.1
β”œβ”€ is-object@1.0.1
β”œβ”€ is-odd@2.0.0
β”‚  β”œβ”€ is-number@^4.0.0
β”‚  └─ is-number@4.0.0
β”œβ”€ is-path-cwd@1.0.0
β”œβ”€ is-path-in-cwd@1.0.0
β”‚  └─ is-path-inside@^1.0.0
β”œβ”€ is-path-inside@1.0.1
β”‚  └─ path-is-inside@^1.0.1
β”œβ”€ is-plain-obj@1.1.0
β”œβ”€ is-plain-object@2.0.4
β”‚  └─ isobject@^3.0.1
β”œβ”€ is-png@1.1.0
β”œβ”€ is-posix-bracket@0.1.1
β”œβ”€ is-primitive@2.0.0
β”œβ”€ is-property@1.0.2
β”œβ”€ is-redirect@1.0.0
β”œβ”€ is-regex@1.0.4
β”‚  └─ has@^1.0.1
β”œβ”€ is-relative@0.1.3
β”œβ”€ is-retry-allowed@1.1.0
β”œβ”€ is-stream@1.1.0
β”œβ”€ is-svg@2.1.0
β”‚  └─ html-comment-regex@^1.1.0
β”œβ”€ is-symbol@1.0.1
β”œβ”€ is-tar@1.0.0
β”œβ”€ is-typedarray@1.0.0
β”œβ”€ is-url@1.2.2
β”œβ”€ is-utf8@0.2.1
β”œβ”€ is-valid-glob@0.3.0
β”œβ”€ is-windows@1.0.2
β”œβ”€ is-wsl@1.1.0
β”œβ”€ is-zip@1.0.0
β”œβ”€ isarray@1.0.0
β”œβ”€ isexe@2.0.0
β”œβ”€ isobject@3.0.1
β”œβ”€ isstream@0.1.2
β”œβ”€ isurl@1.0.0
β”‚  β”œβ”€ has-to-string-tag-x@^1.2.0
β”‚  └─ is-object@^1.0.1
β”œβ”€ js-base64@2.4.3
β”œβ”€ js-tokens@3.0.2
β”œβ”€ js-yaml@3.11.0
β”‚  β”œβ”€ argparse@^1.0.7
β”‚  └─ esprima@^4.0.0
β”œβ”€ jsbn@0.1.1
β”œβ”€ jsesc@1.3.0
β”œβ”€ json-loader@0.5.7
β”œβ”€ json-schema-traverse@0.3.1
β”œβ”€ json-schema@0.2.3
β”œβ”€ json-stable-stringify@1.0.1
β”‚  └─ jsonify@~0.0.0
β”œβ”€ json-stringify-safe@5.0.1
β”œβ”€ json3@3.3.2
β”œβ”€ json5@0.5.1
β”œβ”€ jsonfile@3.0.1
β”‚  └─ graceful-fs@^4.1.6
β”œβ”€ jsonify@0.0.0
β”œβ”€ jsonpointer@4.0.1
β”œβ”€ jsprim@1.4.1
β”‚  β”œβ”€ assert-plus@1.0.0
β”‚  β”œβ”€ extsprintf@1.3.0
β”‚  β”œβ”€ json-schema@0.2.3
β”‚  └─ verror@1.10.0
β”œβ”€ killable@1.0.0
β”œβ”€ kind-of@3.2.2
β”‚  └─ is-buffer@^1.1.5
β”œβ”€ laravel-mix-purgecss@1.0.5
β”‚  β”œβ”€ glob-all@^3.0.0
β”‚  β”œβ”€ lodash@^4.0.0
β”‚  └─ purgecss-webpack-plugin@^0.19.0
β”œβ”€ laravel-mix@2.1.8
β”‚  β”œβ”€ autoprefixer@^7.2.6
β”‚  β”œβ”€ babel-core@^6.24.1
β”‚  β”œβ”€ babel-loader@^7.1.1
β”‚  β”œβ”€ babel-plugin-transform-object-rest-spread@^6.26.0
β”‚  β”œβ”€ babel-plugin-transform-runtime@^6.23.0
β”‚  β”œβ”€ babel-preset-env@^1.5.1
β”‚  β”œβ”€ chokidar@^2.0.0
β”‚  β”œβ”€ clean-css@^4.1.3
β”‚  β”œβ”€ concatenate@0.0.2
β”‚  β”œβ”€ css-loader@^0.28.9
β”‚  β”œβ”€ dotenv-expand@^4.2.0
β”‚  β”œβ”€ dotenv@^4.0.0
β”‚  β”œβ”€ extract-text-webpack-plugin@^3.0.2
β”‚  β”œβ”€ file-loader@^0.11.2
β”‚  β”œβ”€ friendly-errors-webpack-plugin@^1.6.1
β”‚  β”œβ”€ fs-extra@^3.0.1
β”‚  β”œβ”€ glob@^7.1.2
β”‚  β”œβ”€ html-loader@^0.4.5
β”‚  β”œβ”€ img-loader@^2.0.1
β”‚  β”œβ”€ lodash@^4.17.5
β”‚  β”œβ”€ md5@^2.2.1
β”‚  β”œβ”€ node-sass@^4.7.2
β”‚  β”œβ”€ postcss-loader@^2.1.0
β”‚  β”œβ”€ resolve-url-loader@^2.2.1
β”‚  β”œβ”€ sass-loader@^6.0.5
β”‚  β”œβ”€ style-loader@^0.18.2
β”‚  β”œβ”€ uglify-js@^2.8.29
β”‚  β”œβ”€ uglifyjs-webpack-plugin@^1.1.8
β”‚  β”œβ”€ vue-loader@^13.7.1
β”‚  β”œβ”€ vue-template-compiler@^2.5.13
β”‚  β”œβ”€ webpack-chunk-hash@^0.4.0
β”‚  β”œβ”€ webpack-dev-server@^2.11.1
β”‚  β”œβ”€ webpack-merge@^4.1.0
β”‚  β”œβ”€ webpack-notifier@^1.5.1
β”‚  β”œβ”€ webpack@^3.11.0
β”‚  └─ yargs@^8.0.2
β”œβ”€ latest-version@3.1.0
β”‚  └─ package-json@^4.0.0
β”œβ”€ lazy-cache@1.0.4
β”œβ”€ lazy-req@1.1.0
β”œβ”€ lazystream@1.0.0
β”‚  └─ readable-stream@^2.0.5
β”œβ”€ lcid@1.0.0
β”‚  └─ invert-kv@^1.0.0
β”œβ”€ load-json-file@1.1.0
β”‚  β”œβ”€ graceful-fs@^4.1.2
β”‚  β”œβ”€ parse-json@^2.2.0
β”‚  β”œβ”€ pify@^2.0.0
β”‚  β”œβ”€ pinkie-promise@^2.0.0
β”‚  └─ strip-bom@^2.0.0
β”œβ”€ loader-runner@2.3.0
β”œβ”€ loader-utils@1.1.0
β”‚  β”œβ”€ big.js@^3.1.3
β”‚  β”œβ”€ emojis-list@^2.0.0
β”‚  └─ json5@^0.5.0
β”œβ”€ locate-path@2.0.0
β”‚  β”œβ”€ p-locate@^2.0.0
β”‚  β”œβ”€ path-exists@^3.0.0
β”‚  └─ path-exists@3.0.0
β”œβ”€ lodash._baseassign@3.2.0
β”‚  β”œβ”€ lodash._basecopy@^3.0.0
β”‚  └─ lodash.keys@^3.0.0
β”œβ”€ lodash._basecopy@3.0.1
β”œβ”€ lodash._basetostring@3.0.1
β”œβ”€ lodash._basevalues@3.0.0
β”œβ”€ lodash._bindcallback@3.0.1
β”œβ”€ lodash._createassigner@3.1.1
β”‚  β”œβ”€ lodash._bindcallback@^3.0.0
β”‚  β”œβ”€ lodash._isiterateecall@^3.0.0
β”‚  └─ lodash.restparam@^3.0.0
β”œβ”€ lodash._getnative@3.9.1
β”œβ”€ lodash._isiterateecall@3.0.9
β”œβ”€ lodash._reescape@3.0.0
β”œβ”€ lodash._reevaluate@3.0.0
β”œβ”€ lodash._reinterpolate@3.0.0
β”œβ”€ lodash._root@3.0.1
β”œβ”€ lodash.assign@4.2.0
β”œβ”€ lodash.camelcase@4.3.0
β”œβ”€ lodash.clonedeep@4.5.0
β”œβ”€ lodash.defaults@4.2.0
β”œβ”€ lodash.escape@3.2.0
β”‚  └─ lodash._root@^3.0.0
β”œβ”€ lodash.isarguments@3.1.0
β”œβ”€ lodash.isarray@3.0.4
β”œβ”€ lodash.isequal@4.5.0
β”œβ”€ lodash.keys@3.1.2
β”‚  β”œβ”€ lodash._getnative@^3.0.0
β”‚  β”œβ”€ lodash.isarguments@^3.0.0
β”‚  └─ lodash.isarray@^3.0.0
β”œβ”€ lodash.memoize@4.1.2
β”œβ”€ lodash.mergewith@4.6.1
β”œβ”€ lodash.restparam@3.6.1
β”œβ”€ lodash.tail@4.1.1
β”œβ”€ lodash.template@3.6.2
β”‚  β”œβ”€ lodash._basecopy@^3.0.0
β”‚  β”œβ”€ lodash._basetostring@^3.0.0
β”‚  β”œβ”€ lodash._basevalues@^3.0.0
β”‚  β”œβ”€ lodash._isiterateecall@^3.0.0
β”‚  β”œβ”€ lodash._reinterpolate@^3.0.0
β”‚  β”œβ”€ lodash.escape@^3.0.0
β”‚  β”œβ”€ lodash.keys@^3.0.0
β”‚  β”œβ”€ lodash.restparam@^3.0.0
β”‚  └─ lodash.templatesettings@^3.0.0
β”œβ”€ lodash.templatesettings@3.1.1
β”‚  β”œβ”€ lodash._reinterpolate@^3.0.0
β”‚  └─ lodash.escape@^3.0.0
β”œβ”€ lodash.uniq@4.5.0
β”œβ”€ lodash@4.17.5
β”œβ”€ logalot@2.1.0
β”‚  β”œβ”€ figures@^1.3.5
β”‚  └─ squeak@^1.0.0
β”œβ”€ loglevel@1.6.1
β”œβ”€ longest@1.0.1
β”œβ”€ loose-envify@1.3.1
β”‚  └─ js-tokens@^3.0.0
β”œβ”€ loud-rejection@1.6.0
β”‚  β”œβ”€ currently-unhandled@^0.4.1
β”‚  └─ signal-exit@^3.0.0
β”œβ”€ lower-case@1.1.4
β”œβ”€ lowercase-keys@1.0.0
β”œβ”€ lpad-align@1.1.2
β”‚  β”œβ”€ get-stdin@^4.0.1
β”‚  β”œβ”€ indent-string@^2.1.0
β”‚  β”œβ”€ longest@^1.0.0
β”‚  └─ meow@^3.3.0
β”œβ”€ lru-cache@4.1.2
β”‚  β”œβ”€ pseudomap@^1.0.2
β”‚  └─ yallist@^2.1.2
β”œβ”€ macaddress@0.2.8
β”œβ”€ make-dir@1.2.0
β”‚  β”œβ”€ pify@^3.0.0
β”‚  └─ pify@3.0.0
β”œβ”€ map-cache@0.2.2
β”œβ”€ map-obj@1.0.1
β”œβ”€ map-stream@0.1.0
β”œβ”€ map-visit@1.0.0
β”‚  └─ object-visit@^1.0.0
β”œβ”€ math-expression-evaluator@1.2.17
β”œβ”€ md5.js@1.3.4
β”‚  β”œβ”€ hash-base@^3.0.0
β”‚  β”œβ”€ hash-base@3.0.4
β”‚  β”‚  β”œβ”€ inherits@^2.0.1
β”‚  β”‚  └─ safe-buffer@^5.0.1
β”‚  └─ inherits@^2.0.1
β”œβ”€ md5@2.2.1
β”‚  β”œβ”€ charenc@~0.0.1
β”‚  β”œβ”€ crypt@~0.0.1
β”‚  └─ is-buffer@~1.1.1
β”œβ”€ mdn-data@1.1.0
β”œβ”€ media-typer@0.3.0
β”œβ”€ mem@1.1.0
β”‚  └─ mimic-fn@^1.0.0
β”œβ”€ memory-fs@0.4.1
β”‚  β”œβ”€ errno@^0.1.3
β”‚  └─ readable-stream@^2.0.1
β”œβ”€ meow@3.7.0
β”‚  β”œβ”€ camelcase-keys@^2.0.0
β”‚  β”œβ”€ decamelize@^1.1.2
β”‚  β”œβ”€ loud-rejection@^1.0.0
β”‚  β”œβ”€ map-obj@^1.0.1
β”‚  β”œβ”€ minimist@^1.1.3
β”‚  β”œβ”€ normalize-package-data@^2.3.4
β”‚  β”œβ”€ object-assign@^4.0.1
β”‚  β”œβ”€ read-pkg-up@^1.0.1
β”‚  β”œβ”€ redent@^1.0.0
β”‚  └─ trim-newlines@^1.0.0
β”œβ”€ merge-descriptors@1.0.1
β”œβ”€ merge-stream@1.0.1
β”‚  └─ readable-stream@^2.0.1
β”œβ”€ methods@1.1.2
β”œβ”€ micromatch@2.3.11
β”‚  β”œβ”€ arr-diff@^2.0.0
β”‚  β”œβ”€ arr-diff@2.0.0
β”‚  β”‚  └─ arr-flatten@^1.0.1
β”‚  β”œβ”€ array-unique@^0.2.1
β”‚  β”œβ”€ array-unique@0.2.1
β”‚  β”œβ”€ braces@^1.8.2
β”‚  β”œβ”€ braces@1.8.5
β”‚  β”‚  β”œβ”€ expand-range@^1.8.1
β”‚  β”‚  β”œβ”€ preserve@^0.2.0
β”‚  β”‚  └─ repeat-element@^1.1.2
β”‚  β”œβ”€ expand-brackets@^0.1.4
β”‚  β”œβ”€ extglob@^0.3.1
β”‚  β”œβ”€ filename-regex@^2.0.0
β”‚  β”œβ”€ is-extglob@^1.0.0
β”‚  β”œβ”€ is-glob@^2.0.1
β”‚  β”œβ”€ kind-of@^3.0.2
β”‚  β”œβ”€ normalize-path@^2.0.1
β”‚  β”œβ”€ object.omit@^2.0.0
β”‚  β”œβ”€ parse-glob@^3.0.4
β”‚  └─ regex-cache@^0.4.2
β”œβ”€ miller-rabin@4.0.1
β”‚  β”œβ”€ bn.js@^4.0.0
β”‚  └─ brorand@^1.0.1
β”œβ”€ mime-db@1.33.0
β”œβ”€ mime-types@2.1.18
β”‚  └─ mime-db@~1.33.0
β”œβ”€ mime@1.6.0
β”œβ”€ mimic-fn@1.2.0
β”œβ”€ mimic-response@1.0.0
β”œβ”€ minimalistic-assert@1.0.0
β”œβ”€ minimalistic-crypto-utils@1.0.1
β”œβ”€ minimatch@3.0.4
β”‚  └─ brace-expansion@^1.1.7
β”œβ”€ minimist@1.2.0
β”œβ”€ mississippi@2.0.0
β”‚  β”œβ”€ concat-stream@^1.5.0
β”‚  β”œβ”€ duplexify@^3.4.2
β”‚  β”œβ”€ end-of-stream@^1.1.0
β”‚  β”œβ”€ flush-write-stream@^1.0.0
β”‚  β”œβ”€ from2@^2.1.0
β”‚  β”œβ”€ parallel-transform@^1.1.0
β”‚  β”œβ”€ pump@^2.0.1
β”‚  β”œβ”€ pumpify@^1.3.3
β”‚  β”œβ”€ stream-each@^1.1.0
β”‚  └─ through2@^2.0.0
β”œβ”€ mixin-deep@1.3.1
β”‚  β”œβ”€ for-in@^1.0.2
β”‚  β”œβ”€ is-extendable@^1.0.1
β”‚  └─ is-extendable@1.0.1
β”‚     └─ is-plain-object@^2.0.4
β”œβ”€ mixin-object@2.0.1
β”‚  β”œβ”€ for-in@^0.1.3
β”‚  β”œβ”€ for-in@0.1.8
β”‚  └─ is-extendable@^0.1.1
β”œβ”€ mkdirp@0.5.1
β”‚  β”œβ”€ minimist@0.0.8
β”‚  └─ minimist@0.0.8
β”œβ”€ move-concurrently@1.0.1
β”‚  β”œβ”€ aproba@^1.1.1
β”‚  β”œβ”€ copy-concurrently@^1.0.0
β”‚  β”œβ”€ fs-write-stream-atomic@^1.0.8
β”‚  β”œβ”€ mkdirp@^0.5.1
β”‚  β”œβ”€ rimraf@^2.5.4
β”‚  └─ run-queue@^1.0.3
β”œβ”€ mozjpeg@5.0.0
β”‚  β”œβ”€ bin-build@^2.2.0
β”‚  β”œβ”€ bin-wrapper@^3.0.0
β”‚  └─ logalot@^2.0.0
β”œβ”€ ms@2.0.0
β”œβ”€ multicast-dns-service-types@1.1.0
β”œβ”€ multicast-dns@6.2.3
β”‚  β”œβ”€ dns-packet@^1.3.1
β”‚  └─ thunky@^1.0.2
β”œβ”€ multipipe@0.1.2
β”‚  β”œβ”€ duplexer2@0.0.2
β”‚  β”œβ”€ duplexer2@0.0.2
β”‚  β”‚  └─ readable-stream@~1.1.9
β”‚  β”œβ”€ isarray@0.0.1
β”‚  └─ readable-stream@1.1.14
β”‚     β”œβ”€ core-util-is@~1.0.0
β”‚     β”œβ”€ inherits@~2.0.1
β”‚     β”œβ”€ isarray@0.0.1
β”‚     └─ string_decoder@~0.10.x
β”œβ”€ nan@2.10.0
β”œβ”€ nanomatch@1.2.9
β”‚  β”œβ”€ arr-diff@^4.0.0
β”‚  β”œβ”€ array-unique@^0.3.2
β”‚  β”œβ”€ define-property@^2.0.2
β”‚  β”œβ”€ define-property@2.0.2
β”‚  β”‚  β”œβ”€ is-descriptor@^1.0.2
β”‚  β”‚  └─ isobject@^3.0.1
β”‚  β”œβ”€ extend-shallow@^3.0.2
β”‚  β”œβ”€ extend-shallow@3.0.2
β”‚  β”‚  β”œβ”€ assign-symbols@^1.0.0
β”‚  β”‚  └─ is-extendable@^1.0.1
β”‚  β”œβ”€ fragment-cache@^0.2.1
β”‚  β”œβ”€ is-extendable@1.0.1
β”‚  β”‚  └─ is-plain-object@^2.0.4
β”‚  β”œβ”€ is-odd@^2.0.0
β”‚  β”œβ”€ is-windows@^1.0.2
β”‚  β”œβ”€ kind-of@^6.0.2
β”‚  β”œβ”€ kind-of@6.0.2
β”‚  β”œβ”€ object.pick@^1.3.0
β”‚  β”œβ”€ regex-not@^1.0.0
β”‚  β”œβ”€ snapdragon@^0.8.1
β”‚  └─ to-regex@^3.0.1
β”œβ”€ ncname@1.0.0
β”‚  └─ xml-char-classes@^1.0.0
β”œβ”€ negotiator@0.6.1
β”œβ”€ neo-async@2.5.0
β”œβ”€ next-tick@1.0.0
β”œβ”€ nice-try@1.0.4
β”œβ”€ no-case@2.3.2
β”‚  └─ lower-case@^1.1.1
β”œβ”€ node-forge@0.7.1
β”œβ”€ node-gyp@3.6.2
β”‚  β”œβ”€ aws-sign2@0.7.0
β”‚  β”œβ”€ boom@4.3.1
β”‚  β”‚  └─ hoek@4.x.x
β”‚  β”œβ”€ cryptiles@3.1.2
β”‚  β”‚  β”œβ”€ boom@5.2.0
β”‚  β”‚  β”‚  └─ hoek@4.x.x
β”‚  β”‚  └─ boom@5.x.x
β”‚  β”œβ”€ form-data@2.3.2
β”‚  β”‚  β”œβ”€ asynckit@^0.4.0
β”‚  β”‚  β”œβ”€ combined-stream@1.0.6
β”‚  β”‚  └─ mime-types@^2.1.12
β”‚  β”œβ”€ fstream@^1.0.0
β”‚  β”œβ”€ glob@^7.0.3
β”‚  β”œβ”€ graceful-fs@^4.1.2
β”‚  β”œβ”€ har-validator@5.0.3
β”‚  β”‚  β”œβ”€ ajv@^5.1.0
β”‚  β”‚  └─ har-schema@^2.0.0
β”‚  β”œβ”€ hawk@6.0.2
β”‚  β”‚  β”œβ”€ boom@4.x.x
β”‚  β”‚  β”œβ”€ cryptiles@3.x.x
β”‚  β”‚  β”œβ”€ hoek@4.x.x
β”‚  β”‚  └─ sntp@2.x.x
β”‚  β”œβ”€ http-signature@1.2.0
β”‚  β”‚  β”œβ”€ assert-plus@^1.0.0
β”‚  β”‚  β”œβ”€ jsprim@^1.2.2
β”‚  β”‚  └─ sshpk@^1.7.0
β”‚  β”œβ”€ minimatch@^3.0.2
β”‚  β”œβ”€ mkdirp@^0.5.0
β”‚  β”œβ”€ nopt@2 || 3
β”‚  β”œβ”€ npmlog@0 || 1 || 2 || 3 || 4
β”‚  β”œβ”€ osenv@0
β”‚  β”œβ”€ request@2
β”‚  β”œβ”€ request@2.85.0
β”‚  β”‚  β”œβ”€ aws-sign2@~0.7.0
β”‚  β”‚  β”œβ”€ aws4@^1.6.0
β”‚  β”‚  β”œβ”€ caseless@~0.12.0
β”‚  β”‚  β”œβ”€ combined-stream@~1.0.5
β”‚  β”‚  β”œβ”€ extend@~3.0.1
β”‚  β”‚  β”œβ”€ forever-agent@~0.6.1
β”‚  β”‚  β”œβ”€ form-data@~2.3.1
β”‚  β”‚  β”œβ”€ har-validator@~5.0.3
β”‚  β”‚  β”œβ”€ hawk@~6.0.2
β”‚  β”‚  β”œβ”€ http-signature@~1.2.0
β”‚  β”‚  β”œβ”€ is-typedarray@~1.0.0
β”‚  β”‚  β”œβ”€ isstream@~0.1.2
β”‚  β”‚  β”œβ”€ json-stringify-safe@~5.0.1
β”‚  β”‚  β”œβ”€ mime-types@~2.1.17
β”‚  β”‚  β”œβ”€ oauth-sign@~0.8.2
β”‚  β”‚  β”œβ”€ performance-now@^2.1.0
β”‚  β”‚  β”œβ”€ qs@~6.5.1
β”‚  β”‚  β”œβ”€ safe-buffer@^5.1.1
β”‚  β”‚  β”œβ”€ stringstream@~0.0.5
β”‚  β”‚  β”œβ”€ tough-cookie@~2.3.3
β”‚  β”‚  β”œβ”€ tunnel-agent@^0.6.0
β”‚  β”‚  └─ uuid@^3.1.0
β”‚  β”œβ”€ rimraf@2
β”‚  β”œβ”€ semver@~5.3.0
β”‚  β”œβ”€ semver@5.3.0
β”‚  β”œβ”€ sntp@2.1.0
β”‚  β”‚  └─ hoek@4.x.x
β”‚  β”œβ”€ tar@^2.0.0
β”‚  └─ which@1
β”œβ”€ node-libs-browser@2.1.0
β”‚  β”œβ”€ assert@^1.1.1
β”‚  β”œβ”€ browserify-zlib@^0.2.0
β”‚  β”œβ”€ buffer@^4.3.0
β”‚  β”œβ”€ console-browserify@^1.1.0
β”‚  β”œβ”€ constants-browserify@^1.0.0
β”‚  β”œβ”€ crypto-browserify@^3.11.0
β”‚  β”œβ”€ domain-browser@^1.1.1
β”‚  β”œβ”€ events@^1.0.0
β”‚  β”œβ”€ https-browserify@^1.0.0
β”‚  β”œβ”€ os-browserify@^0.3.0
β”‚  β”œβ”€ path-browserify@0.0.0
β”‚  β”œβ”€ process@^0.11.10
β”‚  β”œβ”€ punycode@^1.2.4
β”‚  β”œβ”€ querystring-es3@^0.2.0
β”‚  β”œβ”€ readable-stream@^2.3.3
β”‚  β”œβ”€ stream-browserify@^2.0.1
β”‚  β”œβ”€ stream-http@^2.7.2
β”‚  β”œβ”€ string_decoder@^1.0.0
β”‚  β”œβ”€ string_decoder@1.1.0
β”‚  β”‚  └─ safe-buffer@~5.1.0
β”‚  β”œβ”€ timers-browserify@^2.0.4
β”‚  β”œβ”€ tty-browserify@0.0.0
β”‚  β”œβ”€ url@^0.11.0
β”‚  β”œβ”€ util@^0.10.3
β”‚  └─ vm-browserify@0.0.4
β”œβ”€ node-notifier@5.2.1
β”‚  β”œβ”€ growly@^1.3.0
β”‚  β”œβ”€ semver@^5.4.1
β”‚  β”œβ”€ shellwords@^0.1.1
β”‚  └─ which@^1.3.0
β”œβ”€ node-pre-gyp@0.6.39
β”‚  β”œβ”€ ajv@4.11.8
β”‚  β”‚  β”œβ”€ co@^4.6.0
β”‚  β”‚  └─ json-stable-stringify@^1.0.1
β”‚  β”œβ”€ detect-libc@^1.0.2
β”‚  β”œβ”€ har-schema@1.0.5
β”‚  β”œβ”€ har-validator@4.2.1
β”‚  β”‚  β”œβ”€ ajv@^4.9.1
β”‚  β”‚  └─ har-schema@^1.0.5
β”‚  β”œβ”€ hawk@3.1.3
β”‚  β”œβ”€ mkdirp@^0.5.1
β”‚  β”œβ”€ nopt@^4.0.1
β”‚  β”œβ”€ nopt@4.0.1
β”‚  β”‚  β”œβ”€ abbrev@1
β”‚  β”‚  └─ osenv@^0.1.4
β”‚  β”œβ”€ npmlog@^4.0.2
β”‚  β”œβ”€ performance-now@0.2.0
β”‚  β”œβ”€ qs@6.4.0
β”‚  β”œβ”€ rc@^1.1.7
β”‚  β”œβ”€ request@2.81.0
β”‚  β”‚  β”œβ”€ aws-sign2@~0.6.0
β”‚  β”‚  β”œβ”€ aws4@^1.2.1
β”‚  β”‚  β”œβ”€ caseless@~0.12.0
β”‚  β”‚  β”œβ”€ combined-stream@~1.0.5
β”‚  β”‚  β”œβ”€ extend@~3.0.0
β”‚  β”‚  β”œβ”€ forever-agent@~0.6.1
β”‚  β”‚  β”œβ”€ form-data@~2.1.1
β”‚  β”‚  β”œβ”€ har-validator@~4.2.1
β”‚  β”‚  β”œβ”€ hawk@~3.1.3
β”‚  β”‚  β”œβ”€ http-signature@~1.1.0
β”‚  β”‚  β”œβ”€ is-typedarray@~1.0.0
β”‚  β”‚  β”œβ”€ isstream@~0.1.2
β”‚  β”‚  β”œβ”€ json-stringify-safe@~5.0.1
β”‚  β”‚  β”œβ”€ mime-types@~2.1.7
β”‚  β”‚  β”œβ”€ oauth-sign@~0.8.1
β”‚  β”‚  β”œβ”€ performance-now@^0.2.0
β”‚  β”‚  β”œβ”€ qs@~6.4.0
β”‚  β”‚  β”œβ”€ safe-buffer@^5.0.1
β”‚  β”‚  β”œβ”€ stringstream@~0.0.4
β”‚  β”‚  β”œβ”€ tough-cookie@~2.3.0
β”‚  β”‚  β”œβ”€ tunnel-agent@^0.6.0
β”‚  β”‚  └─ uuid@^3.0.0
β”‚  β”œβ”€ request@2.81.0
β”‚  β”œβ”€ rimraf@^2.6.1
β”‚  β”œβ”€ semver@^5.3.0
β”‚  β”œβ”€ tar-pack@^3.4.0
β”‚  └─ tar@^2.2.1
β”œβ”€ node-sass@4.7.2
β”‚  β”œβ”€ async-foreach@^0.1.3
β”‚  β”œβ”€ chalk@^1.1.1
β”‚  β”œβ”€ cross-spawn@^3.0.0
β”‚  β”œβ”€ cross-spawn@3.0.1
β”‚  β”‚  β”œβ”€ lru-cache@^4.0.1
β”‚  β”‚  └─ which@^1.2.9
β”‚  β”œβ”€ gaze@^1.0.0
β”‚  β”œβ”€ get-stdin@^4.0.1
β”‚  β”œβ”€ glob@^7.0.3
β”‚  β”œβ”€ in-publish@^2.0.0
β”‚  β”œβ”€ lodash.assign@^4.2.0
β”‚  β”œβ”€ lodash.clonedeep@^4.3.2
β”‚  β”œβ”€ lodash.mergewith@^4.6.0
β”‚  β”œβ”€ meow@^3.7.0
β”‚  β”œβ”€ mkdirp@^0.5.1
β”‚  β”œβ”€ nan@^2.3.2
β”‚  β”œβ”€ node-gyp@^3.3.1
β”‚  β”œβ”€ npmlog@^4.0.0
β”‚  β”œβ”€ request@~2.79.0
β”‚  β”œβ”€ sass-graph@^2.2.4
β”‚  β”œβ”€ stdout-stream@^1.4.0
β”‚  └─ true-case-path@^1.0.2
β”œβ”€ node-status-codes@1.0.0
β”œβ”€ nodemon@1.17.2
β”‚  β”œβ”€ chokidar@^2.0.2
β”‚  β”œβ”€ debug@^3.1.0
β”‚  β”œβ”€ debug@3.1.0
β”‚  β”‚  └─ ms@2.0.0
β”‚  β”œβ”€ ignore-by-default@^1.0.1
β”‚  β”œβ”€ minimatch@^3.0.4
β”‚  β”œβ”€ pstree.remy@^1.1.0
β”‚  β”œβ”€ semver@^5.5.0
β”‚  β”œβ”€ supports-color@^5.2.0
β”‚  β”œβ”€ touch@^3.1.0
β”‚  β”œβ”€ undefsafe@^2.0.2
β”‚  └─ update-notifier@^2.3.0
β”œβ”€ nopt@3.0.6
β”‚  └─ abbrev@1
β”œβ”€ normalize-package-data@2.4.0
β”‚  β”œβ”€ hosted-git-info@^2.1.4
β”‚  β”œβ”€ is-builtin-module@^1.0.0
β”‚  β”œβ”€ semver@2 || 3 || 4 || 5
β”‚  └─ validate-npm-package-license@^3.0.1
β”œβ”€ normalize-path@2.1.1
β”‚  └─ remove-trailing-separator@^1.0.1
β”œβ”€ normalize-range@0.1.2
β”œβ”€ normalize-url@1.9.1
β”‚  β”œβ”€ object-assign@^4.0.1
β”‚  β”œβ”€ prepend-http@^1.0.0
β”‚  β”œβ”€ query-string@^4.1.0
β”‚  └─ sort-keys@^1.0.0
β”œβ”€ npm-conf@1.1.3
β”‚  β”œβ”€ config-chain@^1.1.11
β”‚  β”œβ”€ pify@^3.0.0
β”‚  └─ pify@3.0.0
β”œβ”€ npm-run-path@2.0.2
β”‚  └─ path-key@^2.0.0
β”œβ”€ npmlog@4.1.2
β”‚  β”œβ”€ are-we-there-yet@~1.1.2
β”‚  β”œβ”€ console-control-strings@~1.1.0
β”‚  β”œβ”€ gauge@~2.7.3
β”‚  └─ set-blocking@~2.0.0
β”œβ”€ nth-check@1.0.1
β”‚  └─ boolbase@~1.0.0
β”œβ”€ num2fraction@1.2.2
β”œβ”€ number-is-nan@1.0.1
β”œβ”€ oauth-sign@0.8.2
β”œβ”€ object-assign@4.1.1
β”œβ”€ object-copy@0.1.0
β”‚  β”œβ”€ copy-descriptor@^0.1.0
β”‚  β”œβ”€ define-property@^0.2.5
β”‚  └─ kind-of@^3.0.3
β”œβ”€ object-keys@1.0.11
β”œβ”€ object-path@0.9.2
β”œβ”€ object-visit@1.0.1
β”‚  └─ isobject@^3.0.0
β”œβ”€ object.getownpropertydescriptors@2.0.3
β”‚  β”œβ”€ define-properties@^1.1.2
β”‚  └─ es-abstract@^1.5.1
β”œβ”€ object.omit@2.0.1
β”‚  β”œβ”€ for-own@^0.1.4
β”‚  └─ is-extendable@^0.1.1
β”œβ”€ object.pick@1.3.0
β”‚  └─ isobject@^3.0.1
β”œβ”€ object.values@1.0.4
β”‚  β”œβ”€ define-properties@^1.1.2
β”‚  β”œβ”€ es-abstract@^1.6.1
β”‚  β”œβ”€ function-bind@^1.1.0
β”‚  └─ has@^1.0.1
β”œβ”€ obuf@1.1.2
β”œβ”€ on-finished@2.3.0
β”‚  └─ ee-first@1.1.1
β”œβ”€ on-headers@1.0.1
β”œβ”€ once@1.4.0
β”‚  └─ wrappy@1
β”œβ”€ onetime@1.1.0
β”œβ”€ opn@5.3.0
β”‚  └─ is-wsl@^1.1.0
β”œβ”€ optipng-bin@3.1.4
β”‚  β”œβ”€ bin-build@^2.0.0
β”‚  β”œβ”€ bin-wrapper@^3.0.0
β”‚  └─ logalot@^2.0.0
β”œβ”€ ordered-read-streams@0.3.0
β”‚  β”œβ”€ is-stream@^1.0.1
β”‚  └─ readable-stream@^2.0.1
β”œβ”€ original@1.0.0
β”‚  β”œβ”€ querystringify@0.0.4
β”‚  β”œβ”€ url-parse@1.0.5
β”‚  β”‚  β”œβ”€ querystringify@0.0.x
β”‚  β”‚  └─ requires-port@1.0.x
β”‚  └─ url-parse@1.0.x
β”œβ”€ os-browserify@0.3.0
β”œβ”€ os-filter-obj@1.0.3
β”œβ”€ os-homedir@1.0.2
β”œβ”€ os-locale@1.4.0
β”‚  └─ lcid@^1.0.0
β”œβ”€ os-tmpdir@1.0.2
β”œβ”€ osenv@0.1.5
β”‚  β”œβ”€ os-homedir@^1.0.0
β”‚  └─ os-tmpdir@^1.0.0
β”œβ”€ p-cancelable@0.3.0
β”œβ”€ p-event@1.3.0
β”‚  └─ p-timeout@^1.1.1
β”œβ”€ p-finally@1.0.0
β”œβ”€ p-limit@1.2.0
β”‚  └─ p-try@^1.0.0
β”œβ”€ p-locate@2.0.0
β”‚  └─ p-limit@^1.1.0
β”œβ”€ p-map-series@1.0.0
β”‚  └─ p-reduce@^1.0.0
β”œβ”€ p-map@1.2.0
β”œβ”€ p-pipe@1.2.0
β”œβ”€ p-reduce@1.0.0
β”œβ”€ p-timeout@1.2.1
β”‚  └─ p-finally@^1.0.0
β”œβ”€ p-try@1.0.0
β”œβ”€ package-json@4.0.1
β”‚  β”œβ”€ got@^6.7.1
β”‚  β”œβ”€ got@6.7.1
β”‚  β”‚  β”œβ”€ create-error-class@^3.0.0
β”‚  β”‚  β”œβ”€ duplexer3@^0.1.4
β”‚  β”‚  β”œβ”€ get-stream@^3.0.0
β”‚  β”‚  β”œβ”€ is-redirect@^1.0.0
β”‚  β”‚  β”œβ”€ is-retry-allowed@^1.0.0
β”‚  β”‚  β”œβ”€ is-stream@^1.0.0
β”‚  β”‚  β”œβ”€ lowercase-keys@^1.0.0
β”‚  β”‚  β”œβ”€ safe-buffer@^5.0.1
β”‚  β”‚  β”œβ”€ timed-out@^4.0.0
β”‚  β”‚  β”œβ”€ unzip-response@^2.0.1
β”‚  β”‚  └─ url-parse-lax@^1.0.0
β”‚  β”œβ”€ registry-auth-token@^3.0.1
β”‚  β”œβ”€ registry-url@^3.0.3
β”‚  β”œβ”€ semver@^5.1.0
β”‚  └─ unzip-response@2.0.1
β”œβ”€ pako@1.0.6
β”œβ”€ parallel-transform@1.1.0
β”‚  β”œβ”€ cyclist@~0.2.2
β”‚  β”œβ”€ inherits@^2.0.3
β”‚  └─ readable-stream@^2.1.5
β”œβ”€ param-case@2.1.1
β”‚  └─ no-case@^2.2.0
β”œβ”€ parse-asn1@5.1.0
β”‚  β”œβ”€ asn1.js@^4.0.0
β”‚  β”œβ”€ browserify-aes@^1.0.0
β”‚  β”œβ”€ create-hash@^1.1.0
β”‚  β”œβ”€ evp_bytestokey@^1.0.0
β”‚  └─ pbkdf2@^3.0.3
β”œβ”€ parse-glob@3.0.4
β”‚  β”œβ”€ glob-base@^0.3.0
β”‚  β”œβ”€ is-dotfile@^1.0.0
β”‚  β”œβ”€ is-extglob@^1.0.0
β”‚  └─ is-glob@^2.0.0
β”œβ”€ parse-json@2.2.0
β”‚  └─ error-ex@^1.2.0
β”œβ”€ parseurl@1.3.2
β”œβ”€ pascalcase@0.1.1
β”œβ”€ path-browserify@0.0.0
β”œβ”€ path-dirname@1.0.2
β”œβ”€ path-exists@2.1.0
β”‚  └─ pinkie-promise@^2.0.0
β”œβ”€ path-is-absolute@1.0.1
β”œβ”€ path-is-inside@1.0.2
β”œβ”€ path-key@2.0.1
β”œβ”€ path-parse@1.0.5
β”œβ”€ path-to-regexp@0.1.7
β”œβ”€ path-type@1.1.0
β”‚  β”œβ”€ graceful-fs@^4.1.2
β”‚  β”œβ”€ pify@^2.0.0
β”‚  └─ pinkie-promise@^2.0.0
β”œβ”€ pause-stream@0.0.11
β”‚  └─ through@~2.3
β”œβ”€ pbkdf2@3.0.14
β”‚  β”œβ”€ create-hash@^1.1.2
β”‚  β”œβ”€ create-hmac@^1.1.4
β”‚  β”œβ”€ ripemd160@^2.0.1
β”‚  β”œβ”€ safe-buffer@^5.0.1
β”‚  └─ sha.js@^2.4.8
β”œβ”€ pend@1.2.0
β”œβ”€ perfectionist@2.4.0
β”‚  β”œβ”€ comment-regex@^1.0.0
β”‚  β”œβ”€ defined@^1.0.0
β”‚  β”œβ”€ minimist@^1.2.0
β”‚  β”œβ”€ postcss-scss@^0.3.0
β”‚  β”œβ”€ postcss-value-parser@^3.3.0
β”‚  β”œβ”€ postcss@^5.0.8
β”‚  β”œβ”€ read-file-stdin@^0.2.0
β”‚  β”œβ”€ string.prototype.repeat@^0.2.0
β”‚  β”œβ”€ vendors@^1.0.0
β”‚  └─ write-file-stdout@0.0.2
β”œβ”€ performance-now@2.1.0
β”œβ”€ pify@2.3.0
β”œβ”€ pinkie-promise@2.0.1
β”‚  └─ pinkie@^2.0.0
β”œβ”€ pinkie@2.0.4
β”œβ”€ pkg-dir@2.0.0
β”‚  └─ find-up@^2.1.0
β”œβ”€ pngquant-bin@4.0.0
β”‚  β”œβ”€ bin-build@^3.0.0
β”‚  β”œβ”€ bin-build@3.0.0
β”‚  β”‚  β”œβ”€ cross-spawn@5.1.0
β”‚  β”‚  β”‚  β”œβ”€ lru-cache@^4.0.1
β”‚  β”‚  β”‚  β”œβ”€ shebang-command@^1.2.0
β”‚  β”‚  β”‚  └─ which@^1.2.9
β”‚  β”‚  β”œβ”€ decompress@^4.0.0
β”‚  β”‚  β”œβ”€ download@^6.2.2
β”‚  β”‚  β”œβ”€ execa@^0.7.0
β”‚  β”‚  β”œβ”€ execa@0.7.0
β”‚  β”‚  β”‚  β”œβ”€ cross-spawn@^5.0.1
β”‚  β”‚  β”‚  β”œβ”€ get-stream@^3.0.0
β”‚  β”‚  β”‚  β”œβ”€ is-stream@^1.1.0
β”‚  β”‚  β”‚  β”œβ”€ npm-run-path@^2.0.0
β”‚  β”‚  β”‚  β”œβ”€ p-finally@^1.0.0
β”‚  β”‚  β”‚  β”œβ”€ signal-exit@^3.0.0
β”‚  β”‚  β”‚  └─ strip-eof@^1.0.0
β”‚  β”‚  β”œβ”€ p-map-series@^1.0.0
β”‚  β”‚  └─ tempfile@^2.0.0
β”‚  β”œβ”€ bin-wrapper@^3.0.0
β”‚  β”œβ”€ caw@2.0.1
β”‚  β”‚  β”œβ”€ get-proxy@^2.0.0
β”‚  β”‚  β”œβ”€ isurl@^1.0.0-alpha5
β”‚  β”‚  β”œβ”€ tunnel-agent@^0.6.0
β”‚  β”‚  └─ url-to-options@^1.0.1
β”‚  β”œβ”€ cross-spawn@6.0.5
β”‚  β”‚  β”œβ”€ nice-try@^1.0.4
β”‚  β”‚  β”œβ”€ path-key@^2.0.1
β”‚  β”‚  β”œβ”€ semver@^5.5.0
β”‚  β”‚  β”œβ”€ shebang-command@^1.2.0
β”‚  β”‚  └─ which@^1.2.9
β”‚  β”œβ”€ decompress-tarbz2@4.1.1
β”‚  β”‚  β”œβ”€ decompress-tar@^4.1.0
β”‚  β”‚  β”œβ”€ file-type@^6.1.0
β”‚  β”‚  β”œβ”€ file-type@6.2.0
β”‚  β”‚  β”œβ”€ is-stream@^1.1.0
β”‚  β”‚  β”œβ”€ seek-bzip@^1.0.5
β”‚  β”‚  └─ unbzip2-stream@^1.0.9
β”‚  β”œβ”€ decompress-targz@4.1.1
β”‚  β”‚  β”œβ”€ decompress-tar@^4.1.1
β”‚  β”‚  β”œβ”€ file-type@^5.2.0
β”‚  β”‚  └─ is-stream@^1.1.0
β”‚  β”œβ”€ decompress-unzip@4.0.1
β”‚  β”‚  β”œβ”€ file-type@^3.8.0
β”‚  β”‚  β”œβ”€ file-type@3.9.0
β”‚  β”‚  β”œβ”€ get-stream@^2.2.0
β”‚  β”‚  β”œβ”€ get-stream@2.3.1
β”‚  β”‚  β”‚  β”œβ”€ object-assign@^4.0.1
β”‚  β”‚  β”‚  └─ pinkie-promise@^2.0.0
β”‚  β”‚  β”œβ”€ pify@^2.3.0
β”‚  β”‚  └─ yauzl@^2.4.2
β”‚  β”œβ”€ decompress@4.2.0
β”‚  β”‚  β”œβ”€ decompress-tar@^4.0.0
β”‚  β”‚  β”œβ”€ decompress-tarbz2@^4.0.0
β”‚  β”‚  β”œβ”€ decompress-targz@^4.0.0
β”‚  β”‚  β”œβ”€ decompress-unzip@^4.0.1
β”‚  β”‚  β”œβ”€ graceful-fs@^4.1.10
β”‚  β”‚  β”œβ”€ make-dir@^1.0.0
β”‚  β”‚  β”œβ”€ pify@^2.3.0
β”‚  β”‚  └─ strip-dirs@^2.0.0
β”‚  β”œβ”€ download@6.2.5
β”‚  β”‚  β”œβ”€ caw@^2.0.0
β”‚  β”‚  β”œβ”€ content-disposition@^0.5.2
β”‚  β”‚  β”œβ”€ decompress@^4.0.0
β”‚  β”‚  β”œβ”€ ext-name@^5.0.0
β”‚  β”‚  β”œβ”€ file-type@5.2.0
β”‚  β”‚  β”œβ”€ filenamify@^2.0.0
β”‚  β”‚  β”œβ”€ get-stream@^3.0.0
β”‚  β”‚  β”œβ”€ got@^7.0.0
β”‚  β”‚  β”œβ”€ make-dir@^1.0.0
β”‚  β”‚  β”œβ”€ p-event@^1.0.0
β”‚  β”‚  β”œβ”€ pify@^3.0.0
β”‚  β”‚  └─ pify@3.0.0
β”‚  β”œβ”€ execa@^0.10.0
β”‚  β”œβ”€ execa@0.10.0
β”‚  β”‚  β”œβ”€ cross-spawn@^6.0.0
β”‚  β”‚  β”œβ”€ get-stream@^3.0.0
β”‚  β”‚  β”œβ”€ is-stream@^1.1.0
β”‚  β”‚  β”œβ”€ npm-run-path@^2.0.0
β”‚  β”‚  β”œβ”€ p-finally@^1.0.0
β”‚  β”‚  β”œβ”€ signal-exit@^3.0.0
β”‚  β”‚  └─ strip-eof@^1.0.0
β”‚  β”œβ”€ file-type@5.2.0
β”‚  β”œβ”€ filename-reserved-regex@2.0.0
β”‚  β”œβ”€ filenamify@2.0.0
β”‚  β”‚  β”œβ”€ filename-reserved-regex@^2.0.0
β”‚  β”‚  β”œβ”€ strip-outer@^1.0.0
β”‚  β”‚  └─ trim-repeated@^1.0.0
β”‚  β”œβ”€ get-proxy@2.1.0
β”‚  β”‚  └─ npm-conf@^1.1.0
β”‚  β”œβ”€ got@7.1.0
β”‚  β”‚  β”œβ”€ decompress-response@^3.2.0
β”‚  β”‚  β”œβ”€ duplexer3@^0.1.4
β”‚  β”‚  β”œβ”€ get-stream@^3.0.0
β”‚  β”‚  β”œβ”€ is-plain-obj@^1.1.0
β”‚  β”‚  β”œβ”€ is-retry-allowed@^1.0.0
β”‚  β”‚  β”œβ”€ is-stream@^1.0.0
β”‚  β”‚  β”œβ”€ isurl@^1.0.0-alpha5
β”‚  β”‚  β”œβ”€ lowercase-keys@^1.0.0
β”‚  β”‚  β”œβ”€ p-cancelable@^0.3.0
β”‚  β”‚  β”œβ”€ p-timeout@^1.1.1
β”‚  β”‚  β”œβ”€ safe-buffer@^5.0.1
β”‚  β”‚  β”œβ”€ timed-out@^4.0.0
β”‚  β”‚  β”œβ”€ url-parse-lax@^1.0.0
β”‚  β”‚  └─ url-to-options@^1.0.1
β”‚  β”œβ”€ is-natural-number@4.0.1
β”‚  β”œβ”€ logalot@^2.0.0
β”‚  └─ strip-dirs@2.1.0
β”‚     └─ is-natural-number@^4.0.1
β”œβ”€ portfinder@1.0.13
β”‚  β”œβ”€ async@^1.5.2
β”‚  β”œβ”€ async@1.5.2
β”‚  β”œβ”€ debug@^2.2.0
β”‚  └─ mkdirp@0.5.x
β”œβ”€ posix-character-classes@0.1.1
β”œβ”€ postcss-calc@5.3.1
β”‚  β”œβ”€ postcss-message-helpers@^2.0.0
β”‚  β”œβ”€ postcss@^5.0.2
β”‚  └─ reduce-css-calc@^1.2.6
β”œβ”€ postcss-colormin@2.2.2
β”‚  β”œβ”€ colormin@^1.0.5
β”‚  β”œβ”€ postcss-value-parser@^3.2.3
β”‚  └─ postcss@^5.0.13
β”œβ”€ postcss-convert-values@2.6.1
β”‚  β”œβ”€ postcss-value-parser@^3.1.2
β”‚  └─ postcss@^5.0.11
β”œβ”€ postcss-discard-comments@2.0.4
β”‚  └─ postcss@^5.0.14
β”œβ”€ postcss-discard-duplicates@2.1.0
β”‚  └─ postcss@^5.0.4
β”œβ”€ postcss-discard-empty@2.1.0
β”‚  └─ postcss@^5.0.14
β”œβ”€ postcss-discard-overridden@0.1.1
β”‚  └─ postcss@^5.0.16
β”œβ”€ postcss-discard-unused@2.2.3
β”‚  β”œβ”€ postcss@^5.0.14
β”‚  └─ uniqs@^2.0.0
β”œβ”€ postcss-filter-plugins@2.0.2
β”‚  β”œβ”€ postcss@^5.0.4
β”‚  └─ uniqid@^4.0.0
β”œβ”€ postcss-functions@3.0.0
β”‚  β”œβ”€ ansi-styles@3.2.1
β”‚  β”‚  └─ color-convert@^1.9.0
β”‚  β”œβ”€ chalk@2.3.2
β”‚  β”‚  β”œβ”€ ansi-styles@^3.2.1
β”‚  β”‚  β”œβ”€ escape-string-regexp@^1.0.5
β”‚  β”‚  └─ supports-color@^5.3.0
β”‚  β”œβ”€ glob@^7.1.2
β”‚  β”œβ”€ object-assign@^4.1.1
β”‚  β”œβ”€ postcss-value-parser@^3.3.0
β”‚  β”œβ”€ postcss@^6.0.9
β”‚  β”œβ”€ postcss@6.0.20
β”‚  β”‚  β”œβ”€ chalk@^2.3.2
β”‚  β”‚  β”œβ”€ source-map@^0.6.1
β”‚  β”‚  └─ supports-color@^5.3.0
β”‚  └─ source-map@0.6.1
β”œβ”€ postcss-js@1.0.1
β”‚  β”œβ”€ ansi-styles@3.2.1
β”‚  β”‚  └─ color-convert@^1.9.0
β”‚  β”œβ”€ camelcase-css@^1.0.1
β”‚  β”œβ”€ chalk@2.3.2
β”‚  β”‚  β”œβ”€ ansi-styles@^3.2.1
β”‚  β”‚  β”œβ”€ escape-string-regexp@^1.0.5
β”‚  β”‚  └─ supports-color@^5.3.0
β”‚  β”œβ”€ postcss@^6.0.11
β”‚  β”œβ”€ postcss@6.0.20
β”‚  β”‚  β”œβ”€ chalk@^2.3.2
β”‚  β”‚  β”œβ”€ source-map@^0.6.1
β”‚  β”‚  └─ supports-color@^5.3.0
β”‚  └─ source-map@0.6.1
β”œβ”€ postcss-load-config@1.2.0
β”‚  β”œβ”€ cosmiconfig@^2.1.0
β”‚  β”œβ”€ object-assign@^4.1.0
β”‚  β”œβ”€ postcss-load-options@^1.2.0
β”‚  └─ postcss-load-plugins@^2.3.0
β”œβ”€ postcss-load-options@1.2.0
β”‚  β”œβ”€ cosmiconfig@^2.1.0
β”‚  └─ object-assign@^4.1.0
β”œβ”€ postcss-load-plugins@2.3.0
β”‚  β”œβ”€ cosmiconfig@^2.1.1
β”‚  └─ object-assign@^4.1.0
β”œβ”€ postcss-loader@2.1.2
β”‚  β”œβ”€ ajv@6.3.0
β”‚  β”‚  β”œβ”€ fast-deep-equal@^1.0.0
β”‚  β”‚  β”œβ”€ fast-json-stable-stringify@^2.0.0
β”‚  β”‚  └─ json-schema-traverse@^0.3.0
β”‚  β”œβ”€ ansi-styles@3.2.1
β”‚  β”‚  └─ color-convert@^1.9.0
β”‚  β”œβ”€ chalk@2.3.2
β”‚  β”‚  β”œβ”€ ansi-styles@^3.2.1
β”‚  β”‚  β”œβ”€ escape-string-regexp@^1.0.5
β”‚  β”‚  └─ supports-color@^5.3.0
β”‚  β”œβ”€ loader-utils@^1.1.0
β”‚  β”œβ”€ postcss-load-config@^1.2.0
β”‚  β”œβ”€ postcss@^6.0.0
β”‚  β”œβ”€ postcss@6.0.20
β”‚  β”‚  β”œβ”€ chalk@^2.3.2
β”‚  β”‚  β”œβ”€ source-map@^0.6.1
β”‚  β”‚  └─ supports-color@^5.3.0
β”‚  β”œβ”€ schema-utils@^0.4.0
β”‚  β”œβ”€ schema-utils@0.4.5
β”‚  β”‚  β”œβ”€ ajv-keywords@^3.1.0
β”‚  β”‚  └─ ajv@^6.1.0
β”‚  └─ source-map@0.6.1
β”œβ”€ postcss-merge-idents@2.1.7
β”‚  β”œβ”€ has@^1.0.1
β”‚  β”œβ”€ postcss-value-parser@^3.1.1
β”‚  └─ postcss@^5.0.10
β”œβ”€ postcss-merge-longhand@2.0.2
β”‚  └─ postcss@^5.0.4
β”œβ”€ postcss-merge-rules@2.1.2
β”‚  β”œβ”€ browserslist@^1.5.2
β”‚  β”œβ”€ caniuse-api@^1.5.2
β”‚  β”œβ”€ postcss-selector-parser@^2.2.2
β”‚  β”œβ”€ postcss@^5.0.4
β”‚  └─ vendors@^1.0.0
β”œβ”€ postcss-message-helpers@2.0.0
β”œβ”€ postcss-minify-font-values@1.0.5
β”‚  β”œβ”€ object-assign@^4.0.1
β”‚  β”œβ”€ postcss-value-parser@^3.0.2
β”‚  └─ postcss@^5.0.4
β”œβ”€ postcss-minify-gradients@1.0.5
β”‚  β”œβ”€ postcss-value-parser@^3.3.0
β”‚  └─ postcss@^5.0.12
β”œβ”€ postcss-minify-params@1.2.2
β”‚  β”œβ”€ alphanum-sort@^1.0.1
β”‚  β”œβ”€ postcss-value-parser@^3.0.2
β”‚  β”œβ”€ postcss@^5.0.2
β”‚  └─ uniqs@^2.0.0
β”œβ”€ postcss-minify-selectors@2.1.1
β”‚  β”œβ”€ alphanum-sort@^1.0.2
β”‚  β”œβ”€ has@^1.0.1
β”‚  β”œβ”€ postcss-selector-parser@^2.0.0
β”‚  └─ postcss@^5.0.14
β”œβ”€ postcss-modules-extract-imports@1.2.0
β”‚  β”œβ”€ ansi-styles@3.2.1
β”‚  β”‚  └─ color-convert@^1.9.0
β”‚  β”œβ”€ chalk@2.3.2
β”‚  β”‚  β”œβ”€ ansi-styles@^3.2.1
β”‚  β”‚  β”œβ”€ escape-string-regexp@^1.0.5
β”‚  β”‚  └─ supports-color@^5.3.0
β”‚  β”œβ”€ postcss@^6.0.1
β”‚  β”œβ”€ postcss@6.0.20
β”‚  β”‚  β”œβ”€ chalk@^2.3.2
β”‚  β”‚  β”œβ”€ source-map@^0.6.1
β”‚  β”‚  └─ supports-color@^5.3.0
β”‚  └─ source-map@0.6.1
β”œβ”€ postcss-modules-local-by-default@1.2.0
β”‚  β”œβ”€ ansi-styles@3.2.1
β”‚  β”‚  └─ color-convert@^1.9.0
β”‚  β”œβ”€ chalk@2.3.2
β”‚  β”‚  β”œβ”€ ansi-styles@^3.2.1
β”‚  β”‚  β”œβ”€ escape-string-regexp@^1.0.5
β”‚  β”‚  └─ supports-color@^5.3.0
β”‚  β”œβ”€ css-selector-tokenizer@^0.7.0
β”‚  β”œβ”€ postcss@^6.0.1
β”‚  β”œβ”€ postcss@6.0.20
β”‚  β”‚  β”œβ”€ chalk@^2.3.2
β”‚  β”‚  β”œβ”€ source-map@^0.6.1
β”‚  β”‚  └─ supports-color@^5.3.0
β”‚  └─ source-map@0.6.1
β”œβ”€ postcss-modules-scope@1.1.0
β”‚  β”œβ”€ ansi-styles@3.2.1
β”‚  β”‚  └─ color-convert@^1.9.0
β”‚  β”œβ”€ chalk@2.3.2
β”‚  β”‚  β”œβ”€ ansi-styles@^3.2.1
β”‚  β”‚  β”œβ”€ escape-string-regexp@^1.0.5
β”‚  β”‚  └─ supports-color@^5.3.0
β”‚  β”œβ”€ css-selector-tokenizer@^0.7.0
β”‚  β”œβ”€ postcss@^6.0.1
β”‚  β”œβ”€ postcss@6.0.20
β”‚  β”‚  β”œβ”€ chalk@^2.3.2
β”‚  β”‚  β”œβ”€ source-map@^0.6.1
β”‚  β”‚  └─ supports-color@^5.3.0
β”‚  └─ source-map@0.6.1
β”œβ”€ postcss-modules-values@1.3.0
β”‚  β”œβ”€ ansi-styles@3.2.1
β”‚  β”‚  └─ color-convert@^1.9.0
β”‚  β”œβ”€ chalk@2.3.2
β”‚  β”‚  β”œβ”€ ansi-styles@^3.2.1
β”‚  β”‚  β”œβ”€ escape-string-regexp@^1.0.5
β”‚  β”‚  └─ supports-color@^5.3.0
β”‚  β”œβ”€ icss-replace-symbols@^1.1.0
β”‚  β”œβ”€ postcss@^6.0.1
β”‚  β”œβ”€ postcss@6.0.20
β”‚  β”‚  β”œβ”€ chalk@^2.3.2
β”‚  β”‚  β”œβ”€ source-map@^0.6.1
β”‚  β”‚  └─ supports-color@^5.3.0
β”‚  └─ source-map@0.6.1
β”œβ”€ postcss-nested@3.0.0
β”‚  β”œβ”€ ansi-styles@3.2.1
β”‚  β”‚  └─ color-convert@^1.9.0
β”‚  β”œβ”€ chalk@2.3.2
β”‚  β”‚  β”œβ”€ ansi-styles@^3.2.1
β”‚  β”‚  β”œβ”€ escape-string-regexp@^1.0.5
β”‚  β”‚  └─ supports-color@^5.3.0
β”‚  β”œβ”€ postcss-selector-parser@^3.1.1
β”‚  β”œβ”€ postcss-selector-parser@3.1.1
β”‚  β”‚  β”œβ”€ dot-prop@^4.1.1
β”‚  β”‚  β”œβ”€ indexes-of@^1.0.1
β”‚  β”‚  └─ uniq@^1.0.1
β”‚  β”œβ”€ postcss@^6.0.14
β”‚  β”œβ”€ postcss@6.0.20
β”‚  β”‚  β”œβ”€ chalk@^2.3.2
β”‚  β”‚  β”œβ”€ source-map@^0.6.1
β”‚  β”‚  └─ supports-color@^5.3.0
β”‚  └─ source-map@0.6.1
β”œβ”€ postcss-normalize-charset@1.1.1
β”‚  └─ postcss@^5.0.5
β”œβ”€ postcss-normalize-url@3.0.8
β”‚  β”œβ”€ is-absolute-url@^2.0.0
β”‚  β”œβ”€ normalize-url@^1.4.0
β”‚  β”œβ”€ postcss-value-parser@^3.2.3
β”‚  └─ postcss@^5.0.14
β”œβ”€ postcss-ordered-values@2.2.3
β”‚  β”œβ”€ postcss-value-parser@^3.0.1
β”‚  └─ postcss@^5.0.4
β”œβ”€ postcss-reduce-idents@2.4.0
β”‚  β”œβ”€ postcss-value-parser@^3.0.2
β”‚  └─ postcss@^5.0.4
β”œβ”€ postcss-reduce-initial@1.0.1
β”‚  └─ postcss@^5.0.4
β”œβ”€ postcss-reduce-transforms@1.0.4
β”‚  β”œβ”€ has@^1.0.1
β”‚  β”œβ”€ postcss-value-parser@^3.0.1
β”‚  └─ postcss@^5.0.8
β”œβ”€ postcss-scss@0.3.1
β”‚  └─ postcss@^5.2.4
β”œβ”€ postcss-selector-parser@2.2.3
β”‚  β”œβ”€ flatten@^1.0.2
β”‚  β”œβ”€ indexes-of@^1.0.1
β”‚  └─ uniq@^1.0.1
β”œβ”€ postcss-svgo@2.1.6
β”‚  β”œβ”€ coa@1.0.4
β”‚  β”‚  └─ q@^1.1.2
β”‚  β”œβ”€ csso@2.3.2
β”‚  β”‚  β”œβ”€ clap@^1.0.9
β”‚  β”‚  └─ source-map@^0.5.3
β”‚  β”œβ”€ esprima@2.7.3
β”‚  β”œβ”€ is-svg@^2.0.0
β”‚  β”œβ”€ js-yaml@3.7.0
β”‚  β”‚  β”œβ”€ argparse@^1.0.7
β”‚  β”‚  └─ esprima@^2.6.0
β”‚  β”œβ”€ postcss-value-parser@^3.2.3
β”‚  β”œβ”€ postcss@^5.0.14
β”‚  β”œβ”€ svgo@^0.7.0
β”‚  └─ svgo@0.7.2
β”‚     β”œβ”€ coa@~1.0.1
β”‚     β”œβ”€ colors@~1.1.2
β”‚     β”œβ”€ csso@~2.3.1
β”‚     β”œβ”€ js-yaml@~3.7.0
β”‚     β”œβ”€ mkdirp@~0.5.1
β”‚     β”œβ”€ sax@~1.2.1
β”‚     └─ whet.extend@~0.9.9
β”œβ”€ postcss-unique-selectors@2.0.2
β”‚  β”œβ”€ alphanum-sort@^1.0.1
β”‚  β”œβ”€ postcss@^5.0.4
β”‚  └─ uniqs@^2.0.0
β”œβ”€ postcss-value-parser@3.3.0
β”œβ”€ postcss-zindex@2.2.0
β”‚  β”œβ”€ has@^1.0.1
β”‚  β”œβ”€ postcss@^5.0.4
β”‚  └─ uniqs@^2.0.0
β”œβ”€ postcss@5.2.18
β”‚  β”œβ”€ chalk@^1.1.3
β”‚  β”œβ”€ has-flag@1.0.0
β”‚  β”œβ”€ js-base64@^2.1.9
β”‚  β”œβ”€ source-map@^0.5.6
β”‚  β”œβ”€ supports-color@^3.2.3
β”‚  └─ supports-color@3.2.3
β”‚     └─ has-flag@^1.0.0
β”œβ”€ prepend-http@1.0.4
β”œβ”€ preserve@0.2.0
β”œβ”€ prettier@1.11.1
β”œβ”€ private@0.1.8
β”œβ”€ process-nextick-args@2.0.0
β”œβ”€ process@0.11.10
β”œβ”€ promise-inflight@1.0.1
β”œβ”€ proto-list@1.2.4
β”œβ”€ proxy-addr@2.0.3
β”‚  β”œβ”€ forwarded@~0.1.2
β”‚  └─ ipaddr.js@1.6.0
β”œβ”€ prr@1.0.1
β”œβ”€ ps-tree@1.1.0
β”‚  └─ event-stream@~3.3.0
β”œβ”€ pseudomap@1.0.2
β”œβ”€ pstree.remy@1.1.0
β”‚  └─ ps-tree@^1.1.0
β”œβ”€ public-encrypt@4.0.0
β”‚  β”œβ”€ bn.js@^4.1.0
β”‚  β”œβ”€ browserify-rsa@^4.0.0
β”‚  β”œβ”€ create-hash@^1.1.0
β”‚  β”œβ”€ parse-asn1@^5.0.0
β”‚  └─ randombytes@^2.0.1
β”œβ”€ pump@2.0.1
β”‚  β”œβ”€ end-of-stream@^1.1.0
β”‚  └─ once@^1.3.1
β”œβ”€ pumpify@1.4.0
β”‚  β”œβ”€ duplexify@^3.5.3
β”‚  β”œβ”€ inherits@^2.0.3
β”‚  └─ pump@^2.0.0
β”œβ”€ punycode@1.4.1
β”œβ”€ purgecss-webpack-plugin@0.19.0
β”‚  β”œβ”€ purgecss@^0.19.0
β”‚  └─ webpack-sources@^1.1.0
β”œβ”€ purgecss@0.19.0
β”‚  β”œβ”€ ansi-regex@3.0.0
β”‚  β”œβ”€ ansi-styles@3.2.1
β”‚  β”‚  └─ color-convert@^1.9.0
β”‚  β”œβ”€ chalk@2.3.2
β”‚  β”‚  β”œβ”€ ansi-styles@^3.2.1
β”‚  β”‚  β”œβ”€ escape-string-regexp@^1.0.5
β”‚  β”‚  └─ supports-color@^5.3.0
β”‚  β”œβ”€ cliui@4.0.0
β”‚  β”‚  β”œβ”€ string-width@^2.1.1
β”‚  β”‚  β”œβ”€ strip-ansi@^4.0.0
β”‚  β”‚  └─ wrap-ansi@^2.0.0
β”‚  β”œβ”€ glob@^7.1.2
β”‚  β”œβ”€ is-fullwidth-code-point@2.0.0
β”‚  β”œβ”€ os-locale@2.1.0
β”‚  β”‚  β”œβ”€ execa@^0.7.0
β”‚  β”‚  β”œβ”€ lcid@^1.0.0
β”‚  β”‚  └─ mem@^1.1.0
β”‚  β”œβ”€ postcss-selector-parser@^3.1.1
β”‚  β”œβ”€ postcss-selector-parser@3.1.1
β”‚  β”‚  β”œβ”€ dot-prop@^4.1.1
β”‚  β”‚  β”œβ”€ indexes-of@^1.0.1
β”‚  β”‚  └─ uniq@^1.0.1
β”‚  β”œβ”€ postcss@^6.0.16
β”‚  β”œβ”€ postcss@6.0.20
β”‚  β”‚  β”œβ”€ chalk@^2.3.2
β”‚  β”‚  β”œβ”€ source-map@^0.6.1
β”‚  β”‚  └─ supports-color@^5.3.0
β”‚  β”œβ”€ source-map@0.6.1
β”‚  β”œβ”€ string-width@2.1.1
β”‚  β”‚  β”œβ”€ is-fullwidth-code-point@^2.0.0
β”‚  β”‚  └─ strip-ansi@^4.0.0
β”‚  β”œβ”€ strip-ansi@4.0.0
β”‚  β”‚  └─ ansi-regex@^3.0.0
β”‚  β”œβ”€ which-module@2.0.0
β”‚  β”œβ”€ yargs-parser@8.1.0
β”‚  β”‚  └─ camelcase@^4.1.0
β”‚  β”œβ”€ yargs@^10.1.1
β”‚  └─ yargs@10.1.2
β”‚     β”œβ”€ cliui@^4.0.0
β”‚     β”œβ”€ decamelize@^1.1.1
β”‚     β”œβ”€ find-up@^2.1.0
β”‚     β”œβ”€ get-caller-file@^1.0.1
β”‚     β”œβ”€ os-locale@^2.0.0
β”‚     β”œβ”€ require-directory@^2.1.1
β”‚     β”œβ”€ require-main-filename@^1.0.1
β”‚     β”œβ”€ set-blocking@^2.0.0
β”‚     β”œβ”€ string-width@^2.0.0
β”‚     β”œβ”€ which-module@^2.0.0
β”‚     β”œβ”€ y18n@^3.2.1
β”‚     └─ yargs-parser@^8.1.0
β”œβ”€ q@1.5.1
β”œβ”€ qs@6.5.1
β”œβ”€ query-string@4.3.4
β”‚  β”œβ”€ object-assign@^4.1.0
β”‚  └─ strict-uri-encode@^1.0.0
β”œβ”€ querystring-es3@0.2.1
β”œβ”€ querystring@0.2.0
β”œβ”€ querystringify@1.0.0
β”œβ”€ randomatic@1.1.7
β”‚  β”œβ”€ is-number@^3.0.0
β”‚  β”œβ”€ kind-of@^4.0.0
β”‚  └─ kind-of@4.0.0
β”‚     └─ is-buffer@^1.1.5
β”œβ”€ randombytes@2.0.6
β”‚  └─ safe-buffer@^5.1.0
β”œβ”€ randomfill@1.0.4
β”‚  β”œβ”€ randombytes@^2.0.5
β”‚  └─ safe-buffer@^5.1.0
β”œβ”€ range-parser@1.2.0
β”œβ”€ raw-body@2.3.2
β”‚  β”œβ”€ bytes@3.0.0
β”‚  β”œβ”€ http-errors@1.6.2
β”‚  β”œβ”€ iconv-lite@0.4.19
β”‚  └─ unpipe@1.0.0
β”œβ”€ rc@1.2.6
β”‚  β”œβ”€ deep-extend@~0.4.0
β”‚  β”œβ”€ ini@~1.3.0
β”‚  β”œβ”€ minimist@^1.2.0
β”‚  └─ strip-json-comments@~2.0.1
β”œβ”€ read-all-stream@3.1.0
β”‚  β”œβ”€ pinkie-promise@^2.0.0
β”‚  └─ readable-stream@^2.0.0
β”œβ”€ read-file-stdin@0.2.1
β”‚  └─ gather-stream@^1.0.0
β”œβ”€ read-pkg-up@1.0.1
β”‚  β”œβ”€ find-up@^1.0.0
β”‚  β”œβ”€ find-up@1.1.2
β”‚  β”‚  β”œβ”€ path-exists@^2.0.0
β”‚  β”‚  └─ pinkie-promise@^2.0.0
β”‚  └─ read-pkg@^1.0.0
β”œβ”€ read-pkg@1.1.0
β”‚  β”œβ”€ load-json-file@^1.0.0
β”‚  β”œβ”€ normalize-package-data@^2.3.2
β”‚  └─ path-type@^1.0.0
β”œβ”€ readable-stream@2.3.5
β”‚  β”œβ”€ core-util-is@~1.0.0
β”‚  β”œβ”€ inherits@~2.0.3
β”‚  β”œβ”€ isarray@~1.0.0
β”‚  β”œβ”€ process-nextick-args@~2.0.0
β”‚  β”œβ”€ safe-buffer@~5.1.1
β”‚  β”œβ”€ string_decoder@~1.0.3
β”‚  β”œβ”€ string_decoder@1.0.3
β”‚  β”‚  └─ safe-buffer@~5.1.0
β”‚  └─ util-deprecate@~1.0.1
β”œβ”€ readdirp@2.1.0
β”‚  β”œβ”€ graceful-fs@^4.1.2
β”‚  β”œβ”€ minimatch@^3.0.2
β”‚  β”œβ”€ readable-stream@^2.0.2
β”‚  └─ set-immediate-shim@^1.0.1
β”œβ”€ recast@0.11.23
β”‚  β”œβ”€ ast-types@0.9.6
β”‚  β”œβ”€ esprima@~3.1.0
β”‚  β”œβ”€ esprima@3.1.3
β”‚  β”œβ”€ private@~0.1.5
β”‚  └─ source-map@~0.5.0
β”œβ”€ redent@1.0.0
β”‚  β”œβ”€ indent-string@^2.1.0
β”‚  └─ strip-indent@^1.0.1
β”œβ”€ reduce-css-calc@1.3.0
β”‚  β”œβ”€ balanced-match@^0.4.2
β”‚  β”œβ”€ math-expression-evaluator@^1.2.14
β”‚  └─ reduce-function-call@^1.0.1
β”œβ”€ reduce-function-call@1.0.2
β”‚  └─ balanced-match@^0.4.2
β”œβ”€ regenerate@1.3.3
β”œβ”€ regenerator-runtime@0.11.1
β”œβ”€ regenerator-transform@0.10.1
β”‚  β”œβ”€ babel-runtime@^6.18.0
β”‚  β”œβ”€ babel-types@^6.19.0
β”‚  └─ private@^0.1.6
β”œβ”€ regex-cache@0.4.4
β”‚  └─ is-equal-shallow@^0.1.3
β”œβ”€ regex-not@1.0.2
β”‚  β”œβ”€ extend-shallow@^3.0.2
β”‚  β”œβ”€ extend-shallow@3.0.2
β”‚  β”‚  β”œβ”€ assign-symbols@^1.0.0
β”‚  β”‚  └─ is-extendable@^1.0.1
β”‚  β”œβ”€ is-extendable@1.0.1
β”‚  β”‚  └─ is-plain-object@^2.0.4
β”‚  └─ safe-regex@^1.1.0
β”œβ”€ regex-parser@2.2.9
β”œβ”€ regexpu-core@1.0.0
β”‚  β”œβ”€ regenerate@^1.2.1
β”‚  β”œβ”€ regjsgen@^0.2.0
β”‚  └─ regjsparser@^0.1.4
β”œβ”€ registry-auth-token@3.3.2
β”‚  β”œβ”€ rc@^1.1.6
β”‚  └─ safe-buffer@^5.0.1
β”œβ”€ registry-url@3.1.0
β”‚  └─ rc@^1.0.1
β”œβ”€ regjsgen@0.2.0
β”œβ”€ regjsparser@0.1.5
β”‚  β”œβ”€ jsesc@~0.5.0
β”‚  └─ jsesc@0.5.0
β”œβ”€ relateurl@0.2.7
β”œβ”€ remove-trailing-separator@1.1.0
β”œβ”€ repeat-element@1.1.2
β”œβ”€ repeat-string@1.6.1
β”œβ”€ repeating@2.0.1
β”‚  └─ is-finite@^1.0.0
β”œβ”€ replace-ext@0.0.1
β”œβ”€ request@2.79.0
β”‚  β”œβ”€ aws-sign2@~0.6.0
β”‚  β”œβ”€ aws4@^1.2.1
β”‚  β”œβ”€ caseless@~0.11.0
β”‚  β”œβ”€ caseless@0.11.0
β”‚  β”œβ”€ combined-stream@~1.0.5
β”‚  β”œβ”€ extend@~3.0.0
β”‚  β”œβ”€ forever-agent@~0.6.1
β”‚  β”œβ”€ form-data@~2.1.1
β”‚  β”œβ”€ har-validator@~2.0.6
β”‚  β”œβ”€ hawk@~3.1.3
β”‚  β”œβ”€ http-signature@~1.1.0
β”‚  β”œβ”€ is-typedarray@~1.0.0
β”‚  β”œβ”€ isstream@~0.1.2
β”‚  β”œβ”€ json-stringify-safe@~5.0.1
β”‚  β”œβ”€ mime-types@~2.1.7
β”‚  β”œβ”€ oauth-sign@~0.8.1
β”‚  β”œβ”€ qs@~6.3.0
β”‚  β”œβ”€ qs@6.3.2
β”‚  β”œβ”€ stringstream@~0.0.4
β”‚  β”œβ”€ tough-cookie@~2.3.0
β”‚  β”œβ”€ tunnel-agent@~0.4.1
β”‚  β”œβ”€ tunnel-agent@0.4.3
β”‚  └─ uuid@^3.0.0
β”œβ”€ require-directory@2.1.1
β”œβ”€ require-from-string@1.2.1
β”œβ”€ require-main-filename@1.0.1
β”œβ”€ requires-port@1.0.0
β”œβ”€ resolve-cwd@2.0.0
β”‚  └─ resolve-from@^3.0.0
β”œβ”€ resolve-from@3.0.0
β”œβ”€ resolve-url-loader@2.3.0
β”‚  β”œβ”€ adjust-sourcemap-loader@^1.1.0
β”‚  β”œβ”€ camelcase@^4.1.0
β”‚  β”œβ”€ convert-source-map@^1.5.1
β”‚  β”œβ”€ loader-utils@^1.1.0
β”‚  β”œβ”€ lodash.defaults@^4.0.0
β”‚  β”œβ”€ rework-visit@^1.0.0
β”‚  β”œβ”€ rework@^1.0.1
β”‚  β”œβ”€ source-map@^0.5.7
β”‚  └─ urix@^0.1.0
β”œβ”€ resolve-url@0.2.1
β”œβ”€ resolve@1.5.0
β”‚  └─ path-parse@^1.0.5
β”œβ”€ ret@0.1.15
β”œβ”€ rework-visit@1.0.0
β”œβ”€ rework@1.0.1
β”‚  β”œβ”€ convert-source-map@^0.3.3
β”‚  β”œβ”€ convert-source-map@0.3.5
β”‚  └─ css@^2.0.0
β”œβ”€ right-align@0.1.3
β”‚  └─ align-text@^0.1.1
β”œβ”€ rimraf@2.6.2
β”‚  └─ glob@^7.0.5
β”œβ”€ ripemd160@2.0.1
β”‚  β”œβ”€ hash-base@^2.0.0
β”‚  └─ inherits@^2.0.1
β”œβ”€ run-queue@1.0.3
β”‚  └─ aproba@^1.1.1
β”œβ”€ safe-buffer@5.1.1
β”œβ”€ safe-regex@1.1.0
β”‚  └─ ret@~0.1.10
β”œβ”€ sass-graph@2.2.4
β”‚  β”œβ”€ camelcase@3.0.0
β”‚  β”œβ”€ glob@^7.0.0
β”‚  β”œβ”€ lodash@^4.0.0
β”‚  β”œβ”€ scss-tokenizer@^0.2.3
β”‚  β”œβ”€ yargs-parser@5.0.0
β”‚  β”‚  └─ camelcase@^3.0.0
β”‚  β”œβ”€ yargs@^7.0.0
β”‚  └─ yargs@7.1.0
β”‚     β”œβ”€ camelcase@^3.0.0
β”‚     β”œβ”€ cliui@^3.2.0
β”‚     β”œβ”€ decamelize@^1.1.1
β”‚     β”œβ”€ get-caller-file@^1.0.1
β”‚     β”œβ”€ os-locale@^1.4.0
β”‚     β”œβ”€ read-pkg-up@^1.0.1
β”‚     β”œβ”€ require-directory@^2.1.1
β”‚     β”œβ”€ require-main-filename@^1.0.1
β”‚     β”œβ”€ set-blocking@^2.0.0
β”‚     β”œβ”€ string-width@^1.0.2
β”‚     β”œβ”€ which-module@^1.0.0
β”‚     β”œβ”€ y18n@^3.2.1
β”‚     └─ yargs-parser@^5.0.0
β”œβ”€ sass-loader@6.0.7
β”‚  β”œβ”€ clone-deep@^2.0.1
β”‚  β”œβ”€ loader-utils@^1.0.1
β”‚  β”œβ”€ lodash.tail@^4.1.1
β”‚  β”œβ”€ neo-async@^2.5.0
β”‚  β”œβ”€ pify@^3.0.0
β”‚  └─ pify@3.0.0
β”œβ”€ sax@1.2.4
β”œβ”€ schema-utils@0.3.0
β”‚  └─ ajv@^5.0.0
β”œβ”€ scrollprogress@3.0.2
β”œβ”€ scss-tokenizer@0.2.3
β”‚  β”œβ”€ js-base64@^2.1.8
β”‚  β”œβ”€ source-map@^0.4.2
β”‚  └─ source-map@0.4.4
β”‚     └─ amdefine@>=0.0.4
β”œβ”€ seek-bzip@1.0.5
β”‚  β”œβ”€ commander@~2.8.1
β”‚  └─ commander@2.8.1
β”‚     └─ graceful-readlink@>= 1.0.0
β”œβ”€ select-hose@2.0.0
β”œβ”€ selfsigned@1.10.2
β”‚  └─ node-forge@0.7.1
β”œβ”€ semver-diff@2.1.0
β”‚  └─ semver@^5.0.3
β”œβ”€ semver-regex@1.0.0
β”œβ”€ semver-truncate@1.1.2
β”‚  └─ semver@^5.3.0
β”œβ”€ semver@5.5.0
β”œβ”€ send@0.16.2
β”‚  β”œβ”€ debug@2.6.9
β”‚  β”œβ”€ depd@~1.1.2
β”‚  β”œβ”€ destroy@~1.0.4
β”‚  β”œβ”€ encodeurl@~1.0.2
β”‚  β”œβ”€ escape-html@~1.0.3
β”‚  β”œβ”€ etag@~1.8.1
β”‚  β”œβ”€ fresh@0.5.2
β”‚  β”œβ”€ http-errors@~1.6.2
β”‚  β”œβ”€ mime@1.4.1
β”‚  β”œβ”€ mime@1.4.1
β”‚  β”œβ”€ ms@2.0.0
β”‚  β”œβ”€ on-finished@~2.3.0
β”‚  β”œβ”€ range-parser@~1.2.0
β”‚  └─ statuses@~1.4.0
β”œβ”€ serialize-javascript@1.4.0
β”œβ”€ serve-index@1.9.1
β”‚  β”œβ”€ accepts@~1.3.4
β”‚  β”œβ”€ batch@0.6.1
β”‚  β”œβ”€ debug@2.6.9
β”‚  β”œβ”€ escape-html@~1.0.3
β”‚  β”œβ”€ http-errors@~1.6.2
β”‚  β”œβ”€ mime-types@~2.1.17
β”‚  └─ parseurl@~1.3.2
β”œβ”€ serve-static@1.13.2
β”‚  β”œβ”€ encodeurl@~1.0.2
β”‚  β”œβ”€ escape-html@~1.0.3
β”‚  β”œβ”€ parseurl@~1.3.2
β”‚  └─ send@0.16.2
β”œβ”€ set-blocking@2.0.0
β”œβ”€ set-immediate-shim@1.0.1
β”œβ”€ set-value@2.0.0
β”‚  β”œβ”€ extend-shallow@^2.0.1
β”‚  β”œβ”€ is-extendable@^0.1.1
β”‚  β”œβ”€ is-plain-object@^2.0.3
β”‚  └─ split-string@^3.0.1
β”œβ”€ setimmediate@1.0.5
β”œβ”€ setprototypeof@1.1.0
β”œβ”€ sha.js@2.4.10
β”‚  β”œβ”€ inherits@^2.0.1
β”‚  └─ safe-buffer@^5.0.1
β”œβ”€ shallow-clone@1.0.0
β”‚  β”œβ”€ is-extendable@^0.1.1
β”‚  β”œβ”€ kind-of@^5.0.0
β”‚  β”œβ”€ kind-of@5.1.0
β”‚  └─ mixin-object@^2.0.1
β”œβ”€ shebang-command@1.2.0
β”‚  └─ shebang-regex@^1.0.0
β”œβ”€ shebang-regex@1.0.0
β”œβ”€ shellwords@0.1.1
β”œβ”€ signal-exit@3.0.2
β”œβ”€ slash@1.0.0
β”œβ”€ snapdragon-node@2.1.1
β”‚  β”œβ”€ define-property@^1.0.0
β”‚  β”œβ”€ define-property@1.0.0
β”‚  β”‚  └─ is-descriptor@^1.0.0
β”‚  β”œβ”€ isobject@^3.0.0
β”‚  └─ snapdragon-util@^3.0.1
β”œβ”€ snapdragon-util@3.0.1
β”‚  └─ kind-of@^3.2.0
β”œβ”€ snapdragon@0.8.2
β”‚  β”œβ”€ base@^0.11.1
β”‚  β”œβ”€ debug@^2.2.0
β”‚  β”œβ”€ define-property@^0.2.5
β”‚  β”œβ”€ extend-shallow@^2.0.1
β”‚  β”œβ”€ map-cache@^0.2.2
β”‚  β”œβ”€ source-map-resolve@^0.5.0
β”‚  β”œβ”€ source-map@^0.5.6
β”‚  └─ use@^3.1.0
β”œβ”€ sntp@1.0.9
β”‚  β”œβ”€ hoek@2.16.3
β”‚  └─ hoek@2.x.x
β”œβ”€ sockjs-client@1.1.4
β”‚  β”œβ”€ debug@^2.6.6
β”‚  β”œβ”€ eventsource@0.1.6
β”‚  β”œβ”€ faye-websocket@~0.11.0
β”‚  β”œβ”€ faye-websocket@0.11.1
β”‚  β”‚  └─ websocket-driver@>=0.5.1
β”‚  β”œβ”€ inherits@^2.0.1
β”‚  β”œβ”€ json3@^3.3.2
β”‚  └─ url-parse@^1.1.8
β”œβ”€ sockjs@0.3.19
β”‚  β”œβ”€ faye-websocket@^0.10.0
β”‚  └─ uuid@^3.0.1
β”œβ”€ sort-keys-length@1.0.1
β”‚  └─ sort-keys@^1.0.0
β”œβ”€ sort-keys@1.1.2
β”‚  └─ is-plain-obj@^1.0.0
β”œβ”€ source-list-map@2.0.0
β”œβ”€ source-map-resolve@0.5.1
β”‚  β”œβ”€ atob@^2.0.0
β”‚  β”œβ”€ decode-uri-component@^0.2.0
β”‚  β”œβ”€ resolve-url@^0.2.1
β”‚  β”œβ”€ source-map-url@^0.4.0
β”‚  └─ urix@^0.1.0
β”œβ”€ source-map-support@0.4.18
β”‚  └─ source-map@^0.5.6
β”œβ”€ source-map-url@0.4.0
β”œβ”€ source-map@0.5.7
β”œβ”€ sparkles@1.0.0
β”œβ”€ spdx-correct@3.0.0
β”‚  β”œβ”€ spdx-expression-parse@^3.0.0
β”‚  └─ spdx-license-ids@^3.0.0
β”œβ”€ spdx-exceptions@2.1.0
β”œβ”€ spdx-expression-parse@3.0.0
β”‚  β”œβ”€ spdx-exceptions@^2.1.0
β”‚  └─ spdx-license-ids@^3.0.0
β”œβ”€ spdx-license-ids@3.0.0
β”œβ”€ spdy-transport@2.0.20
β”‚  β”œβ”€ debug@^2.6.8
β”‚  β”œβ”€ detect-node@^2.0.3
β”‚  β”œβ”€ hpack.js@^2.1.6
β”‚  β”œβ”€ obuf@^1.1.1
β”‚  β”œβ”€ readable-stream@^2.2.9
β”‚  β”œβ”€ safe-buffer@^5.0.1
β”‚  └─ wbuf@^1.7.2
β”œβ”€ spdy@3.4.7
β”‚  β”œβ”€ debug@^2.6.8
β”‚  β”œβ”€ handle-thing@^1.2.5
β”‚  β”œβ”€ http-deceiver@^1.2.7
β”‚  β”œβ”€ safe-buffer@^5.0.1
β”‚  β”œβ”€ select-hose@^2.0.0
β”‚  └─ spdy-transport@^2.0.18
β”œβ”€ split-string@3.1.0
β”‚  β”œβ”€ extend-shallow@^3.0.0
β”‚  β”œβ”€ extend-shallow@3.0.2
β”‚  β”‚  β”œβ”€ assign-symbols@^1.0.0
β”‚  β”‚  └─ is-extendable@^1.0.1
β”‚  └─ is-extendable@1.0.1
β”‚     └─ is-plain-object@^2.0.4
β”œβ”€ split@0.3.3
β”‚  └─ through@2
β”œβ”€ sprintf-js@1.0.3
β”œβ”€ squeak@1.3.0
β”‚  β”œβ”€ chalk@^1.0.0
β”‚  β”œβ”€ console-stream@^0.1.1
β”‚  └─ lpad-align@^1.0.1
β”œβ”€ sshpk@1.14.1
β”‚  β”œβ”€ asn1@~0.2.3
β”‚  β”œβ”€ assert-plus@^1.0.0
β”‚  β”œβ”€ bcrypt-pbkdf@^1.0.0
β”‚  β”œβ”€ dashdash@^1.12.0
β”‚  β”œβ”€ ecc-jsbn@~0.1.1
β”‚  β”œβ”€ getpass@^0.1.1
β”‚  β”œβ”€ jsbn@~0.1.0
β”‚  └─ tweetnacl@~0.14.0
β”œβ”€ ssri@5.3.0
β”‚  └─ safe-buffer@^5.1.1
β”œβ”€ stable@0.1.6
β”œβ”€ stackframe@1.0.4
β”œβ”€ stat-mode@0.2.2
β”œβ”€ static-extend@0.1.2
β”‚  β”œβ”€ define-property@^0.2.5
β”‚  └─ object-copy@^0.1.0
β”œβ”€ statuses@1.4.0
β”œβ”€ stdout-stream@1.4.0
β”‚  └─ readable-stream@^2.0.1
β”œβ”€ stream-browserify@2.0.1
β”‚  β”œβ”€ inherits@~2.0.1
β”‚  └─ readable-stream@^2.0.2
β”œβ”€ stream-combiner@0.0.4
β”‚  └─ duplexer@~0.1.1
β”œβ”€ stream-combiner2@1.1.1
β”‚  β”œβ”€ duplexer2@~0.1.0
β”‚  └─ readable-stream@^2.0.2
β”œβ”€ stream-each@1.2.2
β”‚  β”œβ”€ end-of-stream@^1.1.0
β”‚  └─ stream-shift@^1.0.0
β”œβ”€ stream-http@2.8.1
β”‚  β”œβ”€ builtin-status-codes@^3.0.0
β”‚  β”œβ”€ inherits@^2.0.1
β”‚  β”œβ”€ readable-stream@^2.3.3
β”‚  β”œβ”€ to-arraybuffer@^1.0.0
β”‚  └─ xtend@^4.0.0
β”œβ”€ stream-shift@1.0.0
β”œβ”€ strict-uri-encode@1.1.0
β”œβ”€ string_decoder@0.10.31
β”œβ”€ string-length@1.0.1
β”‚  └─ strip-ansi@^3.0.0
β”œβ”€ string-width@1.0.2
β”‚  β”œβ”€ code-point-at@^1.0.0
β”‚  β”œβ”€ is-fullwidth-code-point@^1.0.0
β”‚  └─ strip-ansi@^3.0.0
β”œβ”€ string.prototype.repeat@0.2.0
β”œβ”€ stringstream@0.0.5
β”œβ”€ strip-ansi@3.0.1
β”‚  └─ ansi-regex@^2.0.0
β”œβ”€ strip-bom-stream@1.0.0
β”‚  β”œβ”€ first-chunk-stream@^1.0.0
β”‚  └─ strip-bom@^2.0.0
β”œβ”€ strip-bom@2.0.0
β”‚  └─ is-utf8@^0.2.0
β”œβ”€ strip-dirs@1.1.1
β”‚  β”œβ”€ chalk@^1.0.0
β”‚  β”œβ”€ get-stdin@^4.0.1
β”‚  β”œβ”€ is-absolute@^0.1.5
β”‚  β”œβ”€ is-natural-number@^2.0.0
β”‚  β”œβ”€ minimist@^1.1.0
β”‚  └─ sum-up@^1.0.1
β”œβ”€ strip-eof@1.0.0
β”œβ”€ strip-indent@1.0.1
β”‚  └─ get-stdin@^4.0.1
β”œβ”€ strip-json-comments@2.0.1
β”œβ”€ strip-outer@1.0.0
β”‚  └─ escape-string-regexp@^1.0.2
β”œβ”€ style-loader@0.18.2
β”‚  β”œβ”€ loader-utils@^1.0.2
β”‚  └─ schema-utils@^0.3.0
β”œβ”€ sum-up@1.0.3
β”‚  └─ chalk@^1.0.0
β”œβ”€ supports-color@5.3.0
β”‚  └─ has-flag@^3.0.0
β”œβ”€ svgo@1.0.5
β”‚  β”œβ”€ coa@~2.0.1
β”‚  β”œβ”€ colors@~1.1.2
β”‚  β”œβ”€ css-select-base-adapter@~0.1.0
β”‚  β”œβ”€ css-select@~1.3.0-rc0
β”‚  β”œβ”€ css-tree@1.0.0-alpha25
β”‚  β”œβ”€ css-url-regex@^1.1.0
β”‚  β”œβ”€ csso@^3.5.0
β”‚  β”œβ”€ js-yaml@~3.10.0
β”‚  β”œβ”€ js-yaml@3.10.0
β”‚  β”‚  β”œβ”€ argparse@^1.0.7
β”‚  β”‚  └─ esprima@^4.0.0
β”‚  β”œβ”€ mkdirp@~0.5.1
β”‚  β”œβ”€ object.values@^1.0.4
β”‚  β”œβ”€ sax@~1.2.4
β”‚  β”œβ”€ stable@~0.1.6
β”‚  β”œβ”€ unquote@~1.1.1
β”‚  └─ util.promisify@~1.0.0
β”œβ”€ tailwindcss@0.5.1
β”‚  β”œβ”€ ansi-styles@3.2.1
β”‚  β”‚  └─ color-convert@^1.9.0
β”‚  β”œβ”€ chalk@2.3.2
β”‚  β”‚  β”œβ”€ ansi-styles@^3.2.1
β”‚  β”‚  β”œβ”€ escape-string-regexp@^1.0.5
β”‚  β”‚  └─ supports-color@^5.3.0
β”‚  β”œβ”€ commander@^2.11.0
β”‚  β”œβ”€ fs-extra@^4.0.2
β”‚  β”œβ”€ fs-extra@4.0.3
β”‚  β”‚  β”œβ”€ graceful-fs@^4.1.2
β”‚  β”‚  β”œβ”€ jsonfile@^4.0.0
β”‚  β”‚  └─ universalify@^0.1.0
β”‚  β”œβ”€ jsonfile@4.0.0
β”‚  β”‚  └─ graceful-fs@^4.1.6
β”‚  β”œβ”€ lodash@^4.17.4
β”‚  β”œβ”€ nodemon@^1.11.0
β”‚  β”œβ”€ perfectionist@^2.4.0
β”‚  β”œβ”€ postcss-functions@^3.0.0
β”‚  β”œβ”€ postcss-js@^1.0.1
β”‚  β”œβ”€ postcss-nested@^3.0.0
β”‚  β”œβ”€ postcss-selector-parser@^3.1.1
β”‚  β”œβ”€ postcss-selector-parser@3.1.1
β”‚  β”‚  β”œβ”€ dot-prop@^4.1.1
β”‚  β”‚  β”œβ”€ indexes-of@^1.0.1
β”‚  β”‚  └─ uniq@^1.0.1
β”‚  β”œβ”€ postcss@^6.0.9
β”‚  β”œβ”€ postcss@6.0.20
β”‚  β”‚  β”œβ”€ chalk@^2.3.2
β”‚  β”‚  β”œβ”€ source-map@^0.6.1
β”‚  β”‚  └─ supports-color@^5.3.0
β”‚  └─ source-map@0.6.1
β”œβ”€ tapable@0.2.8
β”œβ”€ tar-pack@3.4.1
β”‚  β”œβ”€ debug@^2.2.0
β”‚  β”œβ”€ fstream-ignore@^1.0.5
β”‚  β”œβ”€ fstream@^1.0.10
β”‚  β”œβ”€ once@^1.3.3
β”‚  β”œβ”€ readable-stream@^2.1.4
β”‚  β”œβ”€ rimraf@^2.5.1
β”‚  β”œβ”€ tar@^2.2.1
β”‚  └─ uid-number@^0.0.6
β”œβ”€ tar-stream@1.5.5
β”‚  β”œβ”€ bl@^1.0.0
β”‚  β”œβ”€ end-of-stream@^1.0.0
β”‚  β”œβ”€ readable-stream@^2.0.0
β”‚  └─ xtend@^4.0.0
β”œβ”€ tar@2.2.1
β”‚  β”œβ”€ block-stream@*
β”‚  β”œβ”€ fstream@^1.0.2
β”‚  └─ inherits@2
β”œβ”€ temp-dir@1.0.0
β”œβ”€ tempfile@2.0.0
β”‚  β”œβ”€ temp-dir@^1.0.0
β”‚  └─ uuid@^3.0.1
β”œβ”€ term-size@1.2.0
β”‚  └─ execa@^0.7.0
β”œβ”€ through@2.3.8
β”œβ”€ through2-filter@2.0.0
β”‚  β”œβ”€ through2@~2.0.0
β”‚  └─ xtend@~4.0.0
β”œβ”€ through2@2.0.3
β”‚  β”œβ”€ readable-stream@^2.1.5
β”‚  └─ xtend@~4.0.1
β”œβ”€ thunky@1.0.2
β”œβ”€ time-stamp@2.0.0
β”œβ”€ timed-out@4.0.1
β”œβ”€ timers-browserify@2.0.6
β”‚  └─ setimmediate@^1.0.4
β”œβ”€ to-absolute-glob@0.1.1
β”‚  └─ extend-shallow@^2.0.1
β”œβ”€ to-arraybuffer@1.0.1
β”œβ”€ to-fast-properties@1.0.3
β”œβ”€ to-object-path@0.3.0
β”‚  └─ kind-of@^3.0.2
β”œβ”€ to-regex-range@2.1.1
β”‚  β”œβ”€ is-number@^3.0.0
β”‚  └─ repeat-string@^1.6.1
β”œβ”€ to-regex@3.0.2
β”‚  β”œβ”€ define-property@^2.0.2
β”‚  β”œβ”€ define-property@2.0.2
β”‚  β”‚  β”œβ”€ is-descriptor@^1.0.2
β”‚  β”‚  └─ isobject@^3.0.1
β”‚  β”œβ”€ extend-shallow@^3.0.2
β”‚  β”œβ”€ extend-shallow@3.0.2
β”‚  β”‚  β”œβ”€ assign-symbols@^1.0.0
β”‚  β”‚  └─ is-extendable@^1.0.1
β”‚  β”œβ”€ is-extendable@1.0.1
β”‚  β”‚  └─ is-plain-object@^2.0.4
β”‚  β”œβ”€ regex-not@^1.0.2
β”‚  └─ safe-regex@^1.1.0
β”œβ”€ touch@3.1.0
β”‚  β”œβ”€ nopt@~1.0.10
β”‚  └─ nopt@1.0.10
β”‚     └─ abbrev@1
β”œβ”€ tough-cookie@2.3.4
β”‚  └─ punycode@^1.4.1
β”œβ”€ trim-newlines@1.0.0
β”œβ”€ trim-repeated@1.0.0
β”‚  └─ escape-string-regexp@^1.0.2
β”œβ”€ trim-right@1.0.1
β”œβ”€ true-case-path@1.0.2
β”‚  β”œβ”€ glob@^6.0.4
β”‚  └─ glob@6.0.4
β”‚     β”œβ”€ inflight@^1.0.4
β”‚     β”œβ”€ inherits@2
β”‚     β”œβ”€ minimatch@2 || 3
β”‚     β”œβ”€ once@^1.3.0
β”‚     └─ path-is-absolute@^1.0.0
β”œβ”€ tty-browserify@0.0.0
β”œβ”€ tunnel-agent@0.6.0
β”‚  └─ safe-buffer@^5.0.1
β”œβ”€ tweetnacl@0.14.5
β”œβ”€ type-is@1.6.16
β”‚  β”œβ”€ media-typer@0.3.0
β”‚  └─ mime-types@~2.1.18
β”œβ”€ typedarray@0.0.6
β”œβ”€ uglify-es@3.3.9
β”‚  β”œβ”€ commander@~2.13.0
β”‚  β”œβ”€ commander@2.13.0
β”‚  β”œβ”€ source-map@~0.6.1
β”‚  └─ source-map@0.6.1
β”œβ”€ uglify-js@2.8.29
β”‚  β”œβ”€ camelcase@1.2.1
β”‚  β”œβ”€ cliui@2.1.0
β”‚  β”‚  β”œβ”€ center-align@^0.1.1
β”‚  β”‚  β”œβ”€ right-align@^0.1.1
β”‚  β”‚  └─ wordwrap@0.0.2
β”‚  β”œβ”€ source-map@~0.5.1
β”‚  β”œβ”€ uglify-to-browserify@~1.0.0
β”‚  β”œβ”€ yargs@~3.10.0
β”‚  └─ yargs@3.10.0
β”‚     β”œβ”€ camelcase@^1.0.2
β”‚     β”œβ”€ cliui@^2.1.0
β”‚     β”œβ”€ decamelize@^1.0.0
β”‚     └─ window-size@0.1.0
β”œβ”€ uglify-to-browserify@1.0.2
β”œβ”€ uglifyjs-webpack-plugin@1.2.4
β”‚  β”œβ”€ ajv@6.3.0
β”‚  β”‚  β”œβ”€ fast-deep-equal@^1.0.0
β”‚  β”‚  β”œβ”€ fast-json-stable-stringify@^2.0.0
β”‚  β”‚  └─ json-schema-traverse@^0.3.0
β”‚  β”œβ”€ cacache@^10.0.4
β”‚  β”œβ”€ find-cache-dir@^1.0.0
β”‚  β”œβ”€ schema-utils@^0.4.5
β”‚  β”œβ”€ schema-utils@0.4.5
β”‚  β”‚  β”œβ”€ ajv-keywords@^3.1.0
β”‚  β”‚  └─ ajv@^6.1.0
β”‚  β”œβ”€ serialize-javascript@^1.4.0
β”‚  β”œβ”€ source-map@^0.6.1
β”‚  β”œβ”€ source-map@0.6.1
β”‚  β”œβ”€ uglify-es@^3.3.4
β”‚  β”œβ”€ webpack-sources@^1.1.0
β”‚  └─ worker-farm@^1.5.2
β”œβ”€ uid-number@0.0.6
β”œβ”€ unbzip2-stream@1.2.5
β”‚  β”œβ”€ base64-js@0.0.8
β”‚  β”œβ”€ buffer@^3.0.1
β”‚  β”œβ”€ buffer@3.6.0
β”‚  β”‚  β”œβ”€ base64-js@0.0.8
β”‚  β”‚  β”œβ”€ ieee754@^1.1.4
β”‚  β”‚  └─ isarray@^1.0.0
β”‚  └─ through@^2.3.6
β”œβ”€ undefsafe@2.0.2
β”‚  └─ debug@^2.2.0
β”œβ”€ union-value@1.0.0
β”‚  β”œβ”€ arr-union@^3.1.0
β”‚  β”œβ”€ get-value@^2.0.6
β”‚  β”œβ”€ is-extendable@^0.1.1
β”‚  β”œβ”€ set-value@^0.4.3
β”‚  └─ set-value@0.4.3
β”‚     β”œβ”€ extend-shallow@^2.0.1
β”‚     β”œβ”€ is-extendable@^0.1.1
β”‚     β”œβ”€ is-plain-object@^2.0.1
β”‚     └─ to-object-path@^0.3.0
β”œβ”€ uniq@1.0.1
β”œβ”€ uniqid@4.1.1
β”‚  └─ macaddress@^0.2.8
β”œβ”€ uniqs@2.0.0
β”œβ”€ unique-filename@1.1.0
β”‚  └─ unique-slug@^2.0.0
β”œβ”€ unique-slug@2.0.0
β”‚  └─ imurmurhash@^0.1.4
β”œβ”€ unique-stream@2.2.1
β”‚  β”œβ”€ json-stable-stringify@^1.0.0
β”‚  └─ through2-filter@^2.0.0
β”œβ”€ unique-string@1.0.0
β”‚  └─ crypto-random-string@^1.0.0
β”œβ”€ universalify@0.1.1
β”œβ”€ unpipe@1.0.0
β”œβ”€ unquote@1.1.1
β”œβ”€ unset-value@1.0.0
β”‚  β”œβ”€ has-value@^0.3.1
β”‚  β”œβ”€ has-value@0.3.1
β”‚  β”‚  β”œβ”€ get-value@^2.0.3
β”‚  β”‚  β”œβ”€ has-values@^0.1.4
β”‚  β”‚  β”œβ”€ isobject@^2.0.0
β”‚  β”‚  └─ isobject@2.1.0
β”‚  β”‚     └─ isarray@1.0.0
β”‚  β”œβ”€ has-values@0.1.4
β”‚  └─ isobject@^3.0.0
β”œβ”€ unzip-response@1.0.2
β”œβ”€ upath@1.0.4
β”œβ”€ update-notifier@2.3.0
β”‚  β”œβ”€ ansi-styles@3.2.1
β”‚  β”‚  └─ color-convert@^1.9.0
β”‚  β”œβ”€ boxen@^1.2.1
β”‚  β”œβ”€ chalk@^2.0.1
β”‚  β”œβ”€ chalk@2.3.2
β”‚  β”‚  β”œβ”€ ansi-styles@^3.2.1
β”‚  β”‚  β”œβ”€ escape-string-regexp@^1.0.5
β”‚  β”‚  └─ supports-color@^5.3.0
β”‚  β”œβ”€ configstore@^3.0.0
β”‚  β”œβ”€ import-lazy@^2.1.0
β”‚  β”œβ”€ is-installed-globally@^0.1.0
β”‚  β”œβ”€ is-npm@^1.0.0
β”‚  β”œβ”€ latest-version@^3.0.0
β”‚  β”œβ”€ semver-diff@^2.0.0
β”‚  └─ xdg-basedir@^3.0.0
β”œβ”€ upper-case@1.1.3
β”œβ”€ urix@0.1.0
β”œβ”€ url-parse-lax@1.0.0
β”‚  └─ prepend-http@^1.0.1
β”œβ”€ url-parse@1.2.0
β”‚  β”œβ”€ querystringify@~1.0.0
β”‚  └─ requires-port@~1.0.0
β”œβ”€ url-regex@3.2.0
β”‚  └─ ip-regex@^1.0.1
β”œβ”€ url-to-options@1.0.1
β”œβ”€ url@0.11.0
β”‚  β”œβ”€ punycode@1.3.2
β”‚  β”œβ”€ punycode@1.3.2
β”‚  └─ querystring@0.2.0
β”œβ”€ use@3.1.0
β”‚  β”œβ”€ kind-of@^6.0.2
β”‚  └─ kind-of@6.0.2
β”œβ”€ util-deprecate@1.0.2
β”œβ”€ util.promisify@1.0.0
β”‚  β”œβ”€ define-properties@^1.1.2
β”‚  └─ object.getownpropertydescriptors@^2.0.3
β”œβ”€ util@0.10.3
β”‚  β”œβ”€ inherits@2.0.1
β”‚  └─ inherits@2.0.1
β”œβ”€ utils-merge@1.0.1
β”œβ”€ uuid@3.2.1
β”œβ”€ vali-date@1.0.0
β”œβ”€ validate-npm-package-license@3.0.3
β”‚  β”œβ”€ spdx-correct@^3.0.0
β”‚  └─ spdx-expression-parse@^3.0.0
β”œβ”€ vary@1.1.2
β”œβ”€ vendors@1.0.1
β”œβ”€ verror@1.10.0
β”‚  β”œβ”€ assert-plus@^1.0.0
β”‚  β”œβ”€ core-util-is@1.0.2
β”‚  β”œβ”€ extsprintf@^1.2.0
β”‚  └─ extsprintf@1.4.0
β”œβ”€ vinyl-assign@1.2.1
β”‚  β”œβ”€ object-assign@^4.0.1
β”‚  └─ readable-stream@^2.0.0
β”œβ”€ vinyl-fs@2.4.4
β”‚  β”œβ”€ duplexify@^3.2.0
β”‚  β”œβ”€ glob-stream@^5.3.2
β”‚  β”œβ”€ graceful-fs@^4.0.0
β”‚  β”œβ”€ gulp-sourcemaps@1.6.0
β”‚  β”œβ”€ is-valid-glob@^0.3.0
β”‚  β”œβ”€ lazystream@^1.0.0
β”‚  β”œβ”€ lodash.isequal@^4.0.0
β”‚  β”œβ”€ merge-stream@^1.0.0
β”‚  β”œβ”€ mkdirp@^0.5.0
β”‚  β”œβ”€ object-assign@^4.0.0
β”‚  β”œβ”€ readable-stream@^2.0.4
β”‚  β”œβ”€ strip-bom-stream@^1.0.0
β”‚  β”œβ”€ strip-bom@^2.0.0
β”‚  β”œβ”€ through2-filter@^2.0.0
β”‚  β”œβ”€ through2@^2.0.0
β”‚  β”œβ”€ vali-date@^1.0.0
β”‚  └─ vinyl@^1.0.0
β”œβ”€ vinyl@1.2.0
β”‚  β”œβ”€ clone-stats@^0.0.1
β”‚  β”œβ”€ clone@^1.0.0
β”‚  └─ replace-ext@0.0.1
β”œβ”€ vm-browserify@0.0.4
β”‚  └─ indexof@0.0.1
β”œβ”€ vue-hot-reload-api@2.3.0
β”œβ”€ vue-loader@13.7.1
β”‚  β”œβ”€ ansi-styles@3.2.1
β”‚  β”‚  └─ color-convert@^1.9.0
β”‚  β”œβ”€ chalk@2.3.2
β”‚  β”‚  β”œβ”€ ansi-styles@^3.2.1
β”‚  β”‚  β”œβ”€ escape-string-regexp@^1.0.5
β”‚  β”‚  └─ supports-color@^5.3.0
β”‚  β”œβ”€ consolidate@^0.14.0
β”‚  β”œβ”€ hash-sum@^1.0.2
β”‚  β”œβ”€ loader-utils@^1.1.0
β”‚  β”œβ”€ lru-cache@^4.1.1
β”‚  β”œβ”€ postcss-load-config@^1.1.0
β”‚  β”œβ”€ postcss-selector-parser@^2.0.0
β”‚  β”œβ”€ postcss@^6.0.8
β”‚  β”œβ”€ postcss@6.0.20
β”‚  β”‚  β”œβ”€ chalk@^2.3.2
β”‚  β”‚  β”œβ”€ source-map@^0.6.1
β”‚  β”‚  └─ supports-color@^5.3.0
β”‚  β”œβ”€ prettier@^1.7.0
β”‚  β”œβ”€ resolve@^1.4.0
β”‚  β”œβ”€ source-map@^0.6.1
β”‚  β”œβ”€ source-map@0.6.1
β”‚  β”œβ”€ vue-hot-reload-api@^2.2.0
β”‚  β”œβ”€ vue-style-loader@^3.0.0
β”‚  └─ vue-template-es2015-compiler@^1.6.0
β”œβ”€ vue-style-loader@3.1.2
β”‚  β”œβ”€ hash-sum@^1.0.2
β”‚  └─ loader-utils@^1.0.2
β”œβ”€ vue-template-compiler@2.5.16
β”‚  β”œβ”€ de-indent@^1.0.2
β”‚  └─ he@^1.1.0
β”œβ”€ vue-template-es2015-compiler@1.6.0
β”œβ”€ ware@1.3.0
β”‚  └─ wrap-fn@^0.1.0
β”œβ”€ watchpack@1.5.0
β”‚  β”œβ”€ chokidar@^2.0.2
β”‚  β”œβ”€ graceful-fs@^4.1.2
β”‚  └─ neo-async@^2.5.0
β”œβ”€ wbuf@1.7.3
β”‚  └─ minimalistic-assert@^1.0.0
β”œβ”€ webpack-chunk-hash@0.4.0
β”œβ”€ webpack-dev-middleware@1.12.2
β”‚  β”œβ”€ memory-fs@~0.4.1
β”‚  β”œβ”€ mime@^1.5.0
β”‚  β”œβ”€ path-is-absolute@^1.0.0
β”‚  β”œβ”€ range-parser@^1.0.3
β”‚  └─ time-stamp@^2.0.0
β”œβ”€ webpack-dev-server@2.11.2
β”‚  β”œβ”€ ansi-html@0.0.7
β”‚  β”œβ”€ array-includes@^3.0.3
β”‚  β”œβ”€ bonjour@^3.5.0
β”‚  β”œβ”€ camelcase@3.0.0
β”‚  β”œβ”€ chokidar@^2.0.0
β”‚  β”œβ”€ compression@^1.5.2
β”‚  β”œβ”€ connect-history-api-fallback@^1.3.0
β”‚  β”œβ”€ debug@^3.1.0
β”‚  β”œβ”€ debug@3.1.0
β”‚  β”‚  └─ ms@2.0.0
β”‚  β”œβ”€ del@^3.0.0
β”‚  β”œβ”€ express@^4.16.2
β”‚  β”œβ”€ html-entities@^1.2.0
β”‚  β”œβ”€ http-proxy-middleware@~0.17.4
β”‚  β”œβ”€ import-local@^1.0.0
β”‚  β”œβ”€ internal-ip@1.2.0
β”‚  β”œβ”€ ip@^1.1.5
β”‚  β”œβ”€ killable@^1.0.0
β”‚  β”œβ”€ loglevel@^1.4.1
β”‚  β”œβ”€ opn@^5.1.0
β”‚  β”œβ”€ portfinder@^1.0.9
β”‚  β”œβ”€ selfsigned@^1.9.1
β”‚  β”œβ”€ serve-index@^1.7.2
β”‚  β”œβ”€ sockjs-client@1.1.4
β”‚  β”œβ”€ sockjs@0.3.19
β”‚  β”œβ”€ spdy@^3.4.1
β”‚  β”œβ”€ strip-ansi@^3.0.0
β”‚  β”œβ”€ supports-color@^5.1.0
β”‚  β”œβ”€ webpack-dev-middleware@1.12.2
β”‚  β”œβ”€ yargs-parser@4.2.1
β”‚  β”‚  └─ camelcase@^3.0.0
β”‚  β”œβ”€ yargs@6.6.0
β”‚  └─ yargs@6.6.0
β”‚     β”œβ”€ camelcase@^3.0.0
β”‚     β”œβ”€ cliui@^3.2.0
β”‚     β”œβ”€ decamelize@^1.1.1
β”‚     β”œβ”€ get-caller-file@^1.0.1
β”‚     β”œβ”€ os-locale@^1.4.0
β”‚     β”œβ”€ read-pkg-up@^1.0.1
β”‚     β”œβ”€ require-directory@^2.1.1
β”‚     β”œβ”€ require-main-filename@^1.0.1
β”‚     β”œβ”€ set-blocking@^2.0.0
β”‚     β”œβ”€ string-width@^1.0.2
β”‚     β”œβ”€ which-module@^1.0.0
β”‚     β”œβ”€ y18n@^3.2.1
β”‚     └─ yargs-parser@^4.2.0
β”œβ”€ webpack-merge@4.1.2
β”‚  └─ lodash@^4.17.5
β”œβ”€ webpack-notifier@1.6.0
β”‚  β”œβ”€ node-notifier@^5.1.2
β”‚  β”œβ”€ object-assign@^4.1.0
β”‚  └─ strip-ansi@^3.0.1
β”œβ”€ webpack-sources@1.1.0
β”‚  β”œβ”€ source-list-map@^2.0.0
β”‚  β”œβ”€ source-map@~0.6.1
β”‚  └─ source-map@0.6.1
β”œβ”€ webpack@3.11.0
β”‚  β”œβ”€ acorn-dynamic-import@^2.0.0
β”‚  β”œβ”€ acorn@^5.0.0
β”‚  β”œβ”€ ajv-keywords@^3.1.0
β”‚  β”œβ”€ ajv@^6.1.0
β”‚  β”œβ”€ ajv@6.3.0
β”‚  β”‚  β”œβ”€ fast-deep-equal@^1.0.0
β”‚  β”‚  β”œβ”€ fast-json-stable-stringify@^2.0.0
β”‚  β”‚  └─ json-schema-traverse@^0.3.0
β”‚  β”œβ”€ async@^2.1.2
β”‚  β”œβ”€ enhanced-resolve@^3.4.0
β”‚  β”œβ”€ escope@^3.6.0
β”‚  β”œβ”€ has-flag@2.0.0
β”‚  β”œβ”€ interpret@^1.0.0
β”‚  β”œβ”€ json-loader@^0.5.4
β”‚  β”œβ”€ json5@^0.5.1
β”‚  β”œβ”€ loader-runner@^2.3.0
β”‚  β”œβ”€ loader-utils@^1.1.0
β”‚  β”œβ”€ memory-fs@~0.4.1
β”‚  β”œβ”€ mkdirp@~0.5.0
β”‚  β”œβ”€ node-libs-browser@^2.0.0
β”‚  β”œβ”€ source-map@^0.5.3
β”‚  β”œβ”€ supports-color@^4.2.1
β”‚  β”œβ”€ supports-color@4.5.0
β”‚  β”‚  └─ has-flag@^2.0.0
β”‚  β”œβ”€ tapable@^0.2.7
β”‚  β”œβ”€ uglifyjs-webpack-plugin@^0.4.6
β”‚  β”œβ”€ uglifyjs-webpack-plugin@0.4.6
β”‚  β”‚  β”œβ”€ source-map@^0.5.6
β”‚  β”‚  β”œβ”€ uglify-js@^2.8.29
β”‚  β”‚  └─ webpack-sources@^1.0.1
β”‚  β”œβ”€ watchpack@^1.4.0
β”‚  β”œβ”€ webpack-sources@^1.0.1
β”‚  └─ yargs@^8.0.2
β”œβ”€ websocket-driver@0.7.0
β”‚  β”œβ”€ http-parser-js@>=0.4.0
β”‚  └─ websocket-extensions@>=0.1.1
β”œβ”€ websocket-extensions@0.1.3
β”œβ”€ whet.extend@0.9.9
β”œβ”€ which-module@1.0.0
β”œβ”€ which@1.3.0
β”‚  └─ isexe@^2.0.0
β”œβ”€ wide-align@1.1.2
β”‚  └─ string-width@^1.0.2
β”œβ”€ widest-line@2.0.0
β”‚  β”œβ”€ ansi-regex@3.0.0
β”‚  β”œβ”€ is-fullwidth-code-point@2.0.0
β”‚  β”œβ”€ string-width@^2.1.1
β”‚  β”œβ”€ string-width@2.1.1
β”‚  β”‚  β”œβ”€ is-fullwidth-code-point@^2.0.0
β”‚  β”‚  └─ strip-ansi@^4.0.0
β”‚  └─ strip-ansi@4.0.0
β”‚     └─ ansi-regex@^3.0.0
β”œβ”€ window-size@0.1.0
β”œβ”€ wordwrap@0.0.2
β”œβ”€ worker-farm@1.6.0
β”‚  └─ errno@~0.1.7
β”œβ”€ wrap-ansi@2.1.0
β”‚  β”œβ”€ string-width@^1.0.1
β”‚  └─ strip-ansi@^3.0.1
β”œβ”€ wrap-fn@0.1.5
β”‚  β”œβ”€ co@3.1.0
β”‚  └─ co@3.1.0
β”œβ”€ wrappy@1.0.2
β”œβ”€ write-file-atomic@2.3.0
β”‚  β”œβ”€ graceful-fs@^4.1.11
β”‚  β”œβ”€ imurmurhash@^0.1.4
β”‚  └─ signal-exit@^3.0.2
β”œβ”€ write-file-stdout@0.0.2
β”œβ”€ xdg-basedir@3.0.0
β”œβ”€ xml-char-classes@1.0.0
β”œβ”€ xtend@4.0.1
β”œβ”€ y18n@3.2.1
β”œβ”€ yallist@2.1.2
β”œβ”€ yargs-parser@7.0.0
β”‚  └─ camelcase@^4.1.0
β”œβ”€ yargs@8.0.2
β”‚  β”œβ”€ ansi-regex@3.0.0
β”‚  β”œβ”€ camelcase@^4.1.0
β”‚  β”œβ”€ cliui@^3.2.0
β”‚  β”œβ”€ decamelize@^1.1.1
β”‚  β”œβ”€ get-caller-file@^1.0.1
β”‚  β”œβ”€ is-fullwidth-code-point@2.0.0
β”‚  β”œβ”€ load-json-file@2.0.0
β”‚  β”‚  β”œβ”€ graceful-fs@^4.1.2
β”‚  β”‚  β”œβ”€ parse-json@^2.2.0
β”‚  β”‚  β”œβ”€ pify@^2.0.0
β”‚  β”‚  └─ strip-bom@^3.0.0
β”‚  β”œβ”€ os-locale@^2.0.0
β”‚  β”œβ”€ os-locale@2.1.0
β”‚  β”‚  β”œβ”€ execa@^0.7.0
β”‚  β”‚  β”œβ”€ lcid@^1.0.0
β”‚  β”‚  └─ mem@^1.1.0
β”‚  β”œβ”€ path-type@2.0.0
β”‚  β”‚  └─ pify@^2.0.0
β”‚  β”œβ”€ read-pkg-up@^2.0.0
β”‚  β”œβ”€ read-pkg-up@2.0.0
β”‚  β”‚  β”œβ”€ find-up@^2.0.0
β”‚  β”‚  └─ read-pkg@^2.0.0
β”‚  β”œβ”€ read-pkg@2.0.0
β”‚  β”‚  β”œβ”€ load-json-file@^2.0.0
β”‚  β”‚  β”œβ”€ normalize-package-data@^2.3.2
β”‚  β”‚  └─ path-type@^2.0.0
β”‚  β”œβ”€ require-directory@^2.1.1
β”‚  β”œβ”€ require-main-filename@^1.0.1
β”‚  β”œβ”€ set-blocking@^2.0.0
β”‚  β”œβ”€ string-width@^2.0.0
β”‚  β”œβ”€ string-width@2.1.1
β”‚  β”‚  β”œβ”€ is-fullwidth-code-point@^2.0.0
β”‚  β”‚  └─ strip-ansi@^4.0.0
β”‚  β”œβ”€ strip-ansi@4.0.0
β”‚  β”‚  └─ ansi-regex@^3.0.0
β”‚  β”œβ”€ strip-bom@3.0.0
β”‚  β”œβ”€ which-module@^2.0.0
β”‚  β”œβ”€ which-module@2.0.0
β”‚  β”œβ”€ y18n@^3.2.1
β”‚  └─ yargs-parser@^7.0.0
└─ yauzl@2.9.1
   β”œβ”€ buffer-crc32@~0.2.3
   └─ fd-slicer@~1.0.1
Done in 1.20s.
sebastiandedeyne commented 6 years ago

I merged the PR already, but haven't been able to tag yet.

Thanks again @cjmaxik! I moved some things around and added a quick integration test. Gonna tag a new release early next week πŸ‘Œ

devcircus commented 6 years ago

I pulled in master branch and everything is back to normal. Many thanks!

sebastiandedeyne commented 6 years ago

Released 2.0.0! πŸŽ‰