jantimon / html-webpack-plugin

Simplifies creation of HTML files to serve your webpack bundles
MIT License
10.72k stars 1.31k forks source link

throw new Error('Cyclic dependency: '+JSON.stringify(node)) #981

Closed darkylmnx closed 6 years ago

darkylmnx commented 6 years ago

Expected behaviour

Just installed the new Vue cli which uses internally webpack 4, I'm expecting evrything to go fine but...

Current behaviour

image

It seems there's a JSON / cyclic problem with your plugin and toposort or something @jantimon

Environment

Windows 10 Console : Cmder

The webpack config is the following ``` $ vue-cli-service inspect --mode production { mode: 'production', context: 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F', devtool: 'source-map', node: { setImmediate: false, process: 'mock', dgram: 'empty', fs: 'empty', net: 'empty', tls: 'empty', child_process: 'empty' }, output: { path: 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\dist', filename: 'js/[name].[chunkhash:8].js', publicPath: '/', chunkFilename: 'js/[name].[chunkhash:8].js' }, resolve: { symlinks: false, alias: { '@': 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\src', vue$: 'vue/dist/vue.runtime.esm.js', '@comp': 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\src\\components', '@compBase': 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\src\\components\\Base', '@conf': 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\src\\config', '@api': 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\src\\services\\api', '@mixins': 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\src\\vue-services\\mixins\\index.js', '@plugins': 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\src\\vue-services\\plugins', '@directives': 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\src\\vue-services\\directives\\index.js', '@img': 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\src\\assets\\img', '@scss': 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\src\\assets\\scss', '@scss_vars': 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\src\\assets\\scss\\bulma-custom.scss' }, extensions: [ '.js', '.jsx', '.vue', '.json' ], modules: [ 'node_modules', 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\node_modules', 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\node_modules\\@vue\\cli-service\\node_modules' ] }, resolveLoader: { modules: [ 'node_modules', 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\node_modules', 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\node_modules\\@vue\\cli-service\\node_modules' ] }, module: { noParse: /^(vue|vue-router|vuex|vuex-router-sync)$/, rules: [ { test: /\.vue$/, use: [ { loader: 'cache-loader', options: { cacheDirectory: 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\node_modules\\.cache\\vue-loader', cacheIdentifier: '47fd1b46' } }, { loader: 'vue-loader', options: { compilerOptions: { preserveWhitespace: false }, cacheDirectory: 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\node_modules\\.cache\\vue-loader', cacheIdentifier: '47fd1b46' } } ] }, { test: /\.(png|jpe?g|gif|webp)(\?.*)?$/, use: [ { loader: 'url-loader', options: { limit: 4096, name: 'img/[name].[hash:8].[ext]' } } ] }, { test: /\.(svg)(\?.*)?$/, use: [ { loader: 'file-loader', options: { name: 'img/[name].[hash:8].[ext]' } } ] }, { test: /\.(mp4|webm|ogg|mp3|wav|flac|aac)(\?.*)?$/, use: [ { loader: 'url-loader', options: { limit: 4096, name: 'media/[name].[hash:8].[ext]' } } ] }, { test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/i, use: [ { loader: 'url-loader', options: { limit: 4096, name: 'fonts/[name].[hash:8].[ext]' } } ] }, { test: /\.pug$/, use: [ { loader: 'pug-plain-loader' } ] }, { test: /\.css$/, oneOf: [ { resourceQuery: /module/, use: [ { loader: 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\node_modules\\mini-css-extract-plugin\\dist\\loader.js' }, { loader: 'css-loader', options: { minimize: true, sourceMap: false, importLoaders: 2, modules: true, localIdentName: '[name]_[local]_[hash:base64:5]' } }, { loader: 'postcss-loader', options: { sourceMap: false } } ] }, { resourceQuery: /\?vue/, use: [ { loader: 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\node_modules\\mini-css-extract-plugin\\dist\\loader.js' }, { loader: 'css-loader', options: { minimize: true, sourceMap: false, importLoaders: 2 } }, { loader: 'postcss-loader', options: { sourceMap: false } } ] }, { test: /\.module\.\w+$/, use: [ { loader: 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\node_modules\\mini-css-extract-plugin\\dist\\loader.js' }, { loader: 'css-loader', options: { minimize: true, sourceMap: false, importLoaders: 2, modules: true, localIdentName: '[name]_[local]_[hash:base64:5]' } }, { loader: 'postcss-loader', options: { sourceMap: false } } ] }, { use: [ { loader: 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\node_modules\\mini-css-extract-plugin\\dist\\loader.js' }, { loader: 'css-loader', options: { minimize: true, sourceMap: false, importLoaders: 2 } }, { loader: 'postcss-loader', options: { sourceMap: false } } ] } ] }, { test: /\.p(ost)?css$/, oneOf: [ { resourceQuery: /module/, use: [ { loader: 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\node_modules\\mini-css-extract-plugin\\dist\\loader.js' }, { loader: 'css-loader', options: { minimize: true, sourceMap: false, importLoaders: 2, modules: true, localIdentName: '[name]_[local]_[hash:base64:5]' } }, { loader: 'postcss-loader', options: { sourceMap: false } } ] }, { resourceQuery: /\?vue/, use: [ { loader: 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\node_modules\\mini-css-extract-plugin\\dist\\loader.js' }, { loader: 'css-loader', options: { minimize: true, sourceMap: false, importLoaders: 2 } }, { loader: 'postcss-loader', options: { sourceMap: false } } ] }, { test: /\.module\.\w+$/, use: [ { loader: 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\node_modules\\mini-css-extract-plugin\\dist\\loader.js' }, { loader: 'css-loader', options: { minimize: true, sourceMap: false, importLoaders: 2, modules: true, localIdentName: '[name]_[local]_[hash:base64:5]' } }, { loader: 'postcss-loader', options: { sourceMap: false } } ] }, { use: [ { loader: 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\node_modules\\mini-css-extract-plugin\\dist\\loader.js' }, { loader: 'css-loader', options: { minimize: true, sourceMap: false, importLoaders: 2 } }, { loader: 'postcss-loader', options: { sourceMap: false } } ] } ] }, { test: /\.scss$/, oneOf: [ { resourceQuery: /module/, use: [ { loader: 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\node_modules\\mini-css-extract-plugin\\dist\\loader.js' }, { loader: 'css-loader', options: { minimize: true, sourceMap: false, importLoaders: 3, modules: true, localIdentName: '[name]_[local]_[hash:base64:5]' } }, { loader: 'postcss-loader', options: { sourceMap: false } }, { loader: 'sass-loader', options: { sourceMap: false } } ] }, { resourceQuery: /\?vue/, use: [ { loader: 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\node_modules\\mini-css-extract-plugin\\dist\\loader.js' }, { loader: 'css-loader', options: { minimize: true, sourceMap: false, importLoaders: 3 } }, { loader: 'postcss-loader', options: { sourceMap: false } }, { loader: 'sass-loader', options: { sourceMap: false } } ] }, { test: /\.module\.\w+$/, use: [ { loader: 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\node_modules\\mini-css-extract-plugin\\dist\\loader.js' }, { loader: 'css-loader', options: { minimize: true, sourceMap: false, importLoaders: 3, modules: true, localIdentName: '[name]_[local]_[hash:base64:5]' } }, { loader: 'postcss-loader', options: { sourceMap: false } }, { loader: 'sass-loader', options: { sourceMap: false } } ] }, { use: [ { loader: 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\node_modules\\mini-css-extract-plugin\\dist\\loader.js' }, { loader: 'css-loader', options: { minimize: true, sourceMap: false, importLoaders: 3 } }, { loader: 'postcss-loader', options: { sourceMap: false } }, { loader: 'sass-loader', options: { sourceMap: false } } ] } ] }, { test: /\.sass$/, oneOf: [ { resourceQuery: /module/, use: [ { loader: 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\node_modules\\mini-css-extract-plugin\\dist\\loader.js' }, { loader: 'css-loader', options: { minimize: true, sourceMap: false, importLoaders: 3, modules: true, localIdentName: '[name]_[local]_[hash:base64:5]' } }, { loader: 'postcss-loader', options: { sourceMap: false } }, { loader: 'sass-loader', options: { sourceMap: false, indentedSyntax: true } } ] }, { resourceQuery: /\?vue/, use: [ { loader: 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\node_modules\\mini-css-extract-plugin\\dist\\loader.js' }, { loader: 'css-loader', options: { minimize: true, sourceMap: false, importLoaders: 3 } }, { loader: 'postcss-loader', options: { sourceMap: false } }, { loader: 'sass-loader', options: { sourceMap: false, indentedSyntax: true } } ] }, { test: /\.module\.\w+$/, use: [ { loader: 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\node_modules\\mini-css-extract-plugin\\dist\\loader.js' }, { loader: 'css-loader', options: { minimize: true, sourceMap: false, importLoaders: 3, modules: true, localIdentName: '[name]_[local]_[hash:base64:5]' } }, { loader: 'postcss-loader', options: { sourceMap: false } }, { loader: 'sass-loader', options: { sourceMap: false, indentedSyntax: true } } ] }, { use: [ { loader: 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\node_modules\\mini-css-extract-plugin\\dist\\loader.js' }, { loader: 'css-loader', options: { minimize: true, sourceMap: false, importLoaders: 3 } }, { loader: 'postcss-loader', options: { sourceMap: false } }, { loader: 'sass-loader', options: { sourceMap: false, indentedSyntax: true } } ] } ] }, { test: /\.less$/, oneOf: [ { resourceQuery: /module/, use: [ { loader: 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\node_modules\\mini-css-extract-plugin\\dist\\loader.js' }, { loader: 'css-loader', options: { minimize: true, sourceMap: false, importLoaders: 3, modules: true, localIdentName: '[name]_[local]_[hash:base64:5]' } }, { loader: 'postcss-loader', options: { sourceMap: false } }, { loader: 'less-loader', options: { sourceMap: false } } ] }, { resourceQuery: /\?vue/, use: [ { loader: 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\node_modules\\mini-css-extract-plugin\\dist\\loader.js' }, { loader: 'css-loader', options: { minimize: true, sourceMap: false, importLoaders: 3 } }, { loader: 'postcss-loader', options: { sourceMap: false } }, { loader: 'less-loader', options: { sourceMap: false } } ] }, { test: /\.module\.\w+$/, use: [ { loader: 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\node_modules\\mini-css-extract-plugin\\dist\\loader.js' }, { loader: 'css-loader', options: { minimize: true, sourceMap: false, importLoaders: 3, modules: true, localIdentName: '[name]_[local]_[hash:base64:5]' } }, { loader: 'postcss-loader', options: { sourceMap: false } }, { loader: 'less-loader', options: { sourceMap: false } } ] }, { use: [ { loader: 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\node_modules\\mini-css-extract-plugin\\dist\\loader.js' }, { loader: 'css-loader', options: { minimize: true, sourceMap: false, importLoaders: 3 } }, { loader: 'postcss-loader', options: { sourceMap: false } }, { loader: 'less-loader', options: { sourceMap: false } } ] } ] }, { test: /\.styl(us)?$/, oneOf: [ { resourceQuery: /module/, use: [ { loader: 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\node_modules\\mini-css-extract-plugin\\dist\\loader.js' }, { loader: 'css-loader', options: { minimize: true, sourceMap: false, importLoaders: 3, modules: true, localIdentName: '[name]_[local]_[hash:base64:5]' } }, { loader: 'postcss-loader', options: { sourceMap: false } }, { loader: 'stylus-loader', options: { sourceMap: false, preferPathResolver: 'webpack' } } ] }, { resourceQuery: /\?vue/, use: [ { loader: 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\node_modules\\mini-css-extract-plugin\\dist\\loader.js' }, { loader: 'css-loader', options: { minimize: true, sourceMap: false, importLoaders: 3 } }, { loader: 'postcss-loader', options: { sourceMap: false } }, { loader: 'stylus-loader', options: { sourceMap: false, preferPathResolver: 'webpack' } } ] }, { test: /\.module\.\w+$/, use: [ { loader: 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\node_modules\\mini-css-extract-plugin\\dist\\loader.js' }, { loader: 'css-loader', options: { minimize: true, sourceMap: false, importLoaders: 3, modules: true, localIdentName: '[name]_[local]_[hash:base64:5]' } }, { loader: 'postcss-loader', options: { sourceMap: false } }, { loader: 'stylus-loader', options: { sourceMap: false, preferPathResolver: 'webpack' } } ] }, { use: [ { loader: 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\node_modules\\mini-css-extract-plugin\\dist\\loader.js' }, { loader: 'css-loader', options: { minimize: true, sourceMap: false, importLoaders: 3 } }, { loader: 'postcss-loader', options: { sourceMap: false } }, { loader: 'stylus-loader', options: { sourceMap: false, preferPathResolver: 'webpack' } } ] } ] }, { test: /\.jsx?$/, exclude: [ function () { /* omitted long function */ } ], use: [ { loader: 'cache-loader', options: { cacheDirectory: 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\node_modules\\.cache\\babel-loader', cacheIdentifier: 'a470bede' } }, { loader: 'thread-loader' }, { loader: 'babel-loader' } ] }, { enforce: 'pre', test: /\.(vue|(j|t)sx?)$/, exclude: [ /node_modules/, 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\node_modules\\@vue\\cli-service\\lib' ], use: [ { loader: 'eslint-loader', options: { extensions: [ '.js', '.jsx', '.vue' ], cache: true, cacheIdentifier: 'c3ca5b60', emitWarning: true, formatter: function () { /* omitted long function */ } } } ] } ] }, optimization: { minimizer: [ { options: { test: /\.js(\?.*)?$/i, warningsFilter: function () { return true; }, extractComments: false, sourceMap: true, cache: true, parallel: true, include: undefined, exclude: undefined, uglifyOptions: { output: { comments: /^\**!|@preserve|@license|@cc_on/ }, compress: { arrows: false, collapse_vars: false, comparisons: false, computed_props: false, hoist_funs: false, hoist_props: false, hoist_vars: false, inline: false, loops: false, negate_iife: false, properties: false, reduce_funcs: false, reduce_vars: false, switches: false, toplevel: false, typeofs: false, booleans: true, if_return: true, sequences: true, unused: true, conditionals: true, dead_code: true, evaluate: true }, mangle: { safari10: true } } } } ], splitChunks: { cacheGroups: { vendors: { name: 'chunk-vendors', test: /[\\\/]node_modules[\\\/]/, priority: -10, chunks: 'initial' }, common: { name: 'chunk-common', minChunks: 2, priority: -20, chunks: 'initial', reuseExistingChunk: true } } } }, plugins: [ /* config.plugin('vue-loader') */ new VueLoaderPlugin(), /* config.plugin('define') */ new DefinePlugin( { 'process.env': { NODE_ENV: '"production"', VUE_APP_API_URL: '"https://testing-api.weeship.fr/"', VUE_APP_CLI_UI_URL: '""', VUE_APP_I18N_FALLBACK_LOCALE: '"fr"', VUE_APP_I18N_LOCALE: '"fr"', BASE_URL: '"/"' } } ), /* config.plugin('case-sensitive-paths') */ new CaseSensitivePathsPlugin(), /* config.plugin('friendly-errors') */ new FriendlyErrorsWebpackPlugin( { additionalTransformers: [ function () { /* omitted long function */ } ], additionalFormatters: [ function () { /* omitted long function */ } ] } ), /* config.plugin('extract-css') */ new MiniCssExtractPlugin( { filename: 'css/[name].[contenthash:8].css', chunkFilename: 'css/[name].[contenthash:8].css' } ), /* config.plugin('optimize-css') */ new OptimizeCssAssetsWebpackPlugin( { canPrint: false, cssProcessorOptions: { safe: true, autoprefixer: { disable: true }, mergeLonghand: false } } ), /* config.plugin('hash-module-ids') */ new HashedModuleIdsPlugin(), /* config.plugin('html') */ new HtmlWebpackPlugin( { templateParameters: function () { /* omitted long function */ }, minify: { removeComments: true, collapseWhitespace: true, removeAttributeQuotes: true, collapseBooleanAttributes: true, removeScriptTypeAttributes: true }, chunksSortMode: 'dependency', template: 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\public\\index.html' } ), /* config.plugin('pwa') */ new HtmlPwaPlugin( { name: 'Weeship - Envoyer', themeColor: '#009fe3', msTileColor: '#FFFFFF' } ), /* config.plugin('preload') */ new PreloadPlugin( { rel: 'preload', include: 'initial', fileBlacklist: [ /\.map$/, /hot-update\.js$/ ] } ), /* config.plugin('prefetch') */ new PreloadPlugin( { rel: 'prefetch', include: 'asyncChunks' } ), /* config.plugin('copy') */ new CopyWebpackPlugin( [ { from: 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\public', to: 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\dist', ignore: [ 'index.html', '.DS_Store' ] } ] ), /* config.plugin('workbox') */ new GenerateSW( { exclude: [ /\.map$/, /img\/icons\//, /favicon\.ico$/, /manifest\.json$/ ], cacheId: 'frontend-station-f' } ) ], entry: { app: [ './src/main.js' ] } } $ vue-cli-service inspect --mode development { mode: 'development', context: 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F', devtool: 'cheap-module-eval-source-map', node: { setImmediate: false, process: 'mock', dgram: 'empty', fs: 'empty', net: 'empty', tls: 'empty', child_process: 'empty' }, output: { path: 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\dist', filename: '[name].js', publicPath: '/' }, resolve: { symlinks: false, alias: { '@': 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\src', vue$: 'vue/dist/vue.runtime.esm.js', '@comp': 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\src\\components', '@compBase': 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\src\\components\\Base', '@conf': 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\src\\config', '@api': 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\src\\services\\api', '@mixins': 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\src\\vue-services\\mixins\\index.js', '@plugins': 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\src\\vue-services\\plugins', '@directives': 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\src\\vue-services\\directives\\index.js', '@img': 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\src\\assets\\img', '@scss': 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\src\\assets\\scss', '@scss_vars': 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\src\\assets\\scss\\bulma-custom.scss' }, extensions: [ '.js', '.jsx', '.vue', '.json' ], modules: [ 'node_modules', 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\node_modules', 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\node_modules\\@vue\\cli-service\\node_modules' ] }, resolveLoader: { modules: [ 'node_modules', 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\node_modules', 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\node_modules\\@vue\\cli-service\\node_modules' ] }, module: { noParse: /^(vue|vue-router|vuex|vuex-router-sync)$/, rules: [ { test: /\.vue$/, use: [ { loader: 'cache-loader', options: { cacheDirectory: 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\node_modules\\.cache\\vue-loader', cacheIdentifier: '5f68a44f' } }, { loader: 'vue-loader', options: { compilerOptions: { preserveWhitespace: false }, cacheDirectory: 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\node_modules\\.cache\\vue-loader', cacheIdentifier: '5f68a44f' } } ] }, { test: /\.(png|jpe?g|gif|webp)(\?.*)?$/, use: [ { loader: 'url-loader', options: { limit: 4096, name: 'img/[name].[hash:8].[ext]' } } ] }, { test: /\.(svg)(\?.*)?$/, use: [ { loader: 'file-loader', options: { name: 'img/[name].[hash:8].[ext]' } } ] }, { test: /\.(mp4|webm|ogg|mp3|wav|flac|aac)(\?.*)?$/, use: [ { loader: 'url-loader', options: { limit: 4096, name: 'media/[name].[hash:8].[ext]' } } ] }, { test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/i, use: [ { loader: 'url-loader', options: { limit: 4096, name: 'fonts/[name].[hash:8].[ext]' } } ] }, { test: /\.pug$/, use: [ { loader: 'pug-plain-loader' } ] }, { test: /\.css$/, oneOf: [ { resourceQuery: /module/, use: [ { loader: 'vue-style-loader', options: { sourceMap: false, shadowMode: false } }, { loader: 'css-loader', options: { minimize: false, sourceMap: false, importLoaders: 2, modules: true, localIdentName: '[name]_[local]_[hash:base64:5]' } }, { loader: 'postcss-loader', options: { sourceMap: false } } ] }, { resourceQuery: /\?vue/, use: [ { loader: 'vue-style-loader', options: { sourceMap: false, shadowMode: false } }, { loader: 'css-loader', options: { minimize: false, sourceMap: false, importLoaders: 2 } }, { loader: 'postcss-loader', options: { sourceMap: false } } ] }, { test: /\.module\.\w+$/, use: [ { loader: 'vue-style-loader', options: { sourceMap: false, shadowMode: false } }, { loader: 'css-loader', options: { minimize: false, sourceMap: false, importLoaders: 2, modules: true, localIdentName: '[name]_[local]_[hash:base64:5]' } }, { loader: 'postcss-loader', options: { sourceMap: false } } ] }, { use: [ { loader: 'vue-style-loader', options: { sourceMap: false, shadowMode: false } }, { loader: 'css-loader', options: { minimize: false, sourceMap: false, importLoaders: 2 } }, { loader: 'postcss-loader', options: { sourceMap: false } } ] } ] }, { test: /\.p(ost)?css$/, oneOf: [ { resourceQuery: /module/, use: [ { loader: 'vue-style-loader', options: { sourceMap: false, shadowMode: false } }, { loader: 'css-loader', options: { minimize: false, sourceMap: false, importLoaders: 2, modules: true, localIdentName: '[name]_[local]_[hash:base64:5]' } }, { loader: 'postcss-loader', options: { sourceMap: false } } ] }, { resourceQuery: /\?vue/, use: [ { loader: 'vue-style-loader', options: { sourceMap: false, shadowMode: false } }, { loader: 'css-loader', options: { minimize: false, sourceMap: false, importLoaders: 2 } }, { loader: 'postcss-loader', options: { sourceMap: false } } ] }, { test: /\.module\.\w+$/, use: [ { loader: 'vue-style-loader', options: { sourceMap: false, shadowMode: false } }, { loader: 'css-loader', options: { minimize: false, sourceMap: false, importLoaders: 2, modules: true, localIdentName: '[name]_[local]_[hash:base64:5]' } }, { loader: 'postcss-loader', options: { sourceMap: false } } ] }, { use: [ { loader: 'vue-style-loader', options: { sourceMap: false, shadowMode: false } }, { loader: 'css-loader', options: { minimize: false, sourceMap: false, importLoaders: 2 } }, { loader: 'postcss-loader', options: { sourceMap: false } } ] } ] }, { test: /\.scss$/, oneOf: [ { resourceQuery: /module/, use: [ { loader: 'vue-style-loader', options: { sourceMap: false, shadowMode: false } }, { loader: 'css-loader', options: { minimize: false, sourceMap: false, importLoaders: 3, modules: true, localIdentName: '[name]_[local]_[hash:base64:5]' } }, { loader: 'postcss-loader', options: { sourceMap: false } }, { loader: 'sass-loader', options: { sourceMap: false } } ] }, { resourceQuery: /\?vue/, use: [ { loader: 'vue-style-loader', options: { sourceMap: false, shadowMode: false } }, { loader: 'css-loader', options: { minimize: false, sourceMap: false, importLoaders: 3 } }, { loader: 'postcss-loader', options: { sourceMap: false } }, { loader: 'sass-loader', options: { sourceMap: false } } ] }, { test: /\.module\.\w+$/, use: [ { loader: 'vue-style-loader', options: { sourceMap: false, shadowMode: false } }, { loader: 'css-loader', options: { minimize: false, sourceMap: false, importLoaders: 3, modules: true, localIdentName: '[name]_[local]_[hash:base64:5]' } }, { loader: 'postcss-loader', options: { sourceMap: false } }, { loader: 'sass-loader', options: { sourceMap: false } } ] }, { use: [ { loader: 'vue-style-loader', options: { sourceMap: false, shadowMode: false } }, { loader: 'css-loader', options: { minimize: false, sourceMap: false, importLoaders: 3 } }, { loader: 'postcss-loader', options: { sourceMap: false } }, { loader: 'sass-loader', options: { sourceMap: false } } ] } ] }, { test: /\.sass$/, oneOf: [ { resourceQuery: /module/, use: [ { loader: 'vue-style-loader', options: { sourceMap: false, shadowMode: false } }, { loader: 'css-loader', options: { minimize: false, sourceMap: false, importLoaders: 3, modules: true, localIdentName: '[name]_[local]_[hash:base64:5]' } }, { loader: 'postcss-loader', options: { sourceMap: false } }, { loader: 'sass-loader', options: { sourceMap: false, indentedSyntax: true } } ] }, { resourceQuery: /\?vue/, use: [ { loader: 'vue-style-loader', options: { sourceMap: false, shadowMode: false } }, { loader: 'css-loader', options: { minimize: false, sourceMap: false, importLoaders: 3 } }, { loader: 'postcss-loader', options: { sourceMap: false } }, { loader: 'sass-loader', options: { sourceMap: false, indentedSyntax: true } } ] }, { test: /\.module\.\w+$/, use: [ { loader: 'vue-style-loader', options: { sourceMap: false, shadowMode: false } }, { loader: 'css-loader', options: { minimize: false, sourceMap: false, importLoaders: 3, modules: true, localIdentName: '[name]_[local]_[hash:base64:5]' } }, { loader: 'postcss-loader', options: { sourceMap: false } }, { loader: 'sass-loader', options: { sourceMap: false, indentedSyntax: true } } ] }, { use: [ { loader: 'vue-style-loader', options: { sourceMap: false, shadowMode: false } }, { loader: 'css-loader', options: { minimize: false, sourceMap: false, importLoaders: 3 } }, { loader: 'postcss-loader', options: { sourceMap: false } }, { loader: 'sass-loader', options: { sourceMap: false, indentedSyntax: true } } ] } ] }, { test: /\.less$/, oneOf: [ { resourceQuery: /module/, use: [ { loader: 'vue-style-loader', options: { sourceMap: false, shadowMode: false } }, { loader: 'css-loader', options: { minimize: false, sourceMap: false, importLoaders: 3, modules: true, localIdentName: '[name]_[local]_[hash:base64:5]' } }, { loader: 'postcss-loader', options: { sourceMap: false } }, { loader: 'less-loader', options: { sourceMap: false } } ] }, { resourceQuery: /\?vue/, use: [ { loader: 'vue-style-loader', options: { sourceMap: false, shadowMode: false } }, { loader: 'css-loader', options: { minimize: false, sourceMap: false, importLoaders: 3 } }, { loader: 'postcss-loader', options: { sourceMap: false } }, { loader: 'less-loader', options: { sourceMap: false } } ] }, { test: /\.module\.\w+$/, use: [ { loader: 'vue-style-loader', options: { sourceMap: false, shadowMode: false } }, { loader: 'css-loader', options: { minimize: false, sourceMap: false, importLoaders: 3, modules: true, localIdentName: '[name]_[local]_[hash:base64:5]' } }, { loader: 'postcss-loader', options: { sourceMap: false } }, { loader: 'less-loader', options: { sourceMap: false } } ] }, { use: [ { loader: 'vue-style-loader', options: { sourceMap: false, shadowMode: false } }, { loader: 'css-loader', options: { minimize: false, sourceMap: false, importLoaders: 3 } }, { loader: 'postcss-loader', options: { sourceMap: false } }, { loader: 'less-loader', options: { sourceMap: false } } ] } ] }, { test: /\.styl(us)?$/, oneOf: [ { resourceQuery: /module/, use: [ { loader: 'vue-style-loader', options: { sourceMap: false, shadowMode: false } }, { loader: 'css-loader', options: { minimize: false, sourceMap: false, importLoaders: 3, modules: true, localIdentName: '[name]_[local]_[hash:base64:5]' } }, { loader: 'postcss-loader', options: { sourceMap: false } }, { loader: 'stylus-loader', options: { sourceMap: false, preferPathResolver: 'webpack' } } ] }, { resourceQuery: /\?vue/, use: [ { loader: 'vue-style-loader', options: { sourceMap: false, shadowMode: false } }, { loader: 'css-loader', options: { minimize: false, sourceMap: false, importLoaders: 3 } }, { loader: 'postcss-loader', options: { sourceMap: false } }, { loader: 'stylus-loader', options: { sourceMap: false, preferPathResolver: 'webpack' } } ] }, { test: /\.module\.\w+$/, use: [ { loader: 'vue-style-loader', options: { sourceMap: false, shadowMode: false } }, { loader: 'css-loader', options: { minimize: false, sourceMap: false, importLoaders: 3, modules: true, localIdentName: '[name]_[local]_[hash:base64:5]' } }, { loader: 'postcss-loader', options: { sourceMap: false } }, { loader: 'stylus-loader', options: { sourceMap: false, preferPathResolver: 'webpack' } } ] }, { use: [ { loader: 'vue-style-loader', options: { sourceMap: false, shadowMode: false } }, { loader: 'css-loader', options: { minimize: false, sourceMap: false, importLoaders: 3 } }, { loader: 'postcss-loader', options: { sourceMap: false } }, { loader: 'stylus-loader', options: { sourceMap: false, preferPathResolver: 'webpack' } } ] } ] }, { test: /\.jsx?$/, exclude: [ function () { /* omitted long function */ } ], use: [ { loader: 'cache-loader', options: { cacheDirectory: 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\node_modules\\.cache\\babel-loader', cacheIdentifier: '057550d2' } }, { loader: 'babel-loader' } ] }, { enforce: 'pre', test: /\.(vue|(j|t)sx?)$/, exclude: [ /node_modules/, 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\node_modules\\@vue\\cli-service\\lib' ], use: [ { loader: 'eslint-loader', options: { extensions: [ '.js', '.jsx', '.vue' ], cache: true, cacheIdentifier: '9b8b2a74', emitWarning: true, formatter: function () { /* omitted long function */ } } } ] } ] }, plugins: [ /* config.plugin('vue-loader') */ new VueLoaderPlugin(), /* config.plugin('define') */ new DefinePlugin( { 'process.env': { NODE_ENV: '"development"', VUE_APP_API_URL: '"https://testing-api.weeship.fr/"', VUE_APP_CLI_UI_URL: '""', VUE_APP_I18N_FALLBACK_LOCALE: '"fr"', VUE_APP_I18N_LOCALE: '"fr"', BASE_URL: '"/"' } } ), /* config.plugin('case-sensitive-paths') */ new CaseSensitivePathsPlugin(), /* config.plugin('friendly-errors') */ new FriendlyErrorsWebpackPlugin( { additionalTransformers: [ function () { /* omitted long function */ } ], additionalFormatters: [ function () { /* omitted long function */ } ] } ), /* config.plugin('hmr') */ new HotModuleReplacementPlugin(), /* config.plugin('no-emit-on-errors') */ new NoEmitOnErrorsPlugin(), /* config.plugin('progress') */ new ProgressPlugin(), /* config.plugin('html') */ new HtmlWebpackPlugin( { templateParameters: function () { /* omitted long function */ }, template: 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\public\\index.html' } ), /* config.plugin('pwa') */ new HtmlPwaPlugin( { name: 'Weeship - Envoyer', themeColor: '#009fe3', msTileColor: '#FFFFFF' } ), /* config.plugin('preload') */ new PreloadPlugin( { rel: 'preload', include: 'initial', fileBlacklist: [ /\.map$/, /hot-update\.js$/ ] } ), /* config.plugin('prefetch') */ new PreloadPlugin( { rel: 'prefetch', include: 'asyncChunks' } ), /* config.plugin('copy') */ new CopyWebpackPlugin( [ { from: 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\public', to: 'C:\\Users\\arieldi\\Projects\\Weeship\\Frontend-Station-F\\dist', ignore: [ 'index.html', '.DS_Store' ] } ] ) ], entry: { app: [ './src/main.js' ] } } ```
coryisbest0728 commented 6 years ago

@darkylmnx I had the same problem. I've changed html-webpack-plugin 3.2 to 4.0.0-alpha, and now it's working.

darkylmnx commented 6 years ago

I'm using version 4 already

Le lun. 18 juin 2018 à 09:49, Cory notifications@github.com a écrit :

@darkylmnx https://github.com/darkylmnx I had the same problem. I've changed html-webpack-plugin 3.2 to 4.0.0-alpha, and now it's working.

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/jantimon/html-webpack-plugin/issues/981#issuecomment-397969990, or mute the thread https://github.com/notifications/unsubscribe-auth/ABXDtQP4nglbUqFZEi5ux4yl-PKeF0sqks5t91uigaJpZM4UqXb5 .

jantimon commented 6 years ago

@darkylmnx this should be fixed in the current version - can you please let us know the exact html-webpack-plugin version your are using?

edtoken commented 6 years ago

@jantimon Same problem

at visit (/Users/ed/workspace/rebilly/buzzmillions-frontend/node_modules/toposort/index.js:35:13)
    at visit (/Users/ed/workspace/rebilly/buzzmillions-frontend/node_modules/toposort/index.js:53:9)
    at visit (/Users/ed/workspace/rebilly/buzzmillions-frontend/node_modules/toposort/index.js:53:9)
    at Function.toposort [as array] (/Users/ed/workspace/rebilly/buzzmillions-frontend/node_modules/toposort/index.js:22:22)
    at Object.module.exports.dependency (/Users/ed/workspace/rebilly/buzzmillions-frontend/node_modules/html-webpack-plugin/lib/chunksorter.js:50:35)
    at HtmlWebpackPlugin.sortChunks (/Users/ed/workspace/rebilly/buzzmillions-frontend/node_modules/html-webpack-plugin/index.js:364:35)
    at /Users/ed/workspace/rebilly/buzzmillions-frontend/node_modules/html-webpack-plugin/index.js:113:21
    at _err0 (eval at create (/Users/ed/workspace/rebilly/buzzmillions-frontend/node_modules/tapable/lib/HookCodeFactory.js:24:12), <anonymous>:19:1)
    at callback (/Users/ed/workspace/rebilly/buzzmillions-frontend/node_modules/copy-webpack-plugin/dist/index.js:77:17)
    at /Users/ed/workspace/rebilly/buzzmillions-frontend/node_modules/copy-webpack-plugin/dist/index.js:118:24
    at <anonymous>
(node:47583) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2)
(node:47583) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
├─┬ @vue/test-utils@1.0.0-beta.19
│ └── lodash@4.17.10 deduped
├─┬ axios@0.18.0
│ ├─┬ follow-redirects@1.5.0
│ │ └── debug@3.1.0 deduped
│ └── is-buffer@1.1.6
├─┬ babel-core@6.26.3
│ ├─┬ babel-code-frame@6.26.0
│ │ ├─┬ chalk@1.1.3
│ │ │ ├── ansi-styles@2.2.1
│ │ │ ├── escape-string-regexp@1.0.5 deduped
│ │ │ ├── has-ansi@2.0.0 deduped
│ │ │ ├── strip-ansi@3.0.1 deduped
│ │ │ └── supports-color@2.0.0
│ │ ├── esutils@2.0.2 deduped
│ │ └── js-tokens@3.0.2
│ ├─┬ babel-generator@6.26.1
│ │ ├── babel-messages@6.23.0 deduped
│ │ ├── babel-runtime@6.26.0 deduped
│ │ ├── babel-types@6.26.0 deduped
│ │ ├─┬ detect-indent@4.0.0
│ │ │ └─┬ repeating@2.0.1
│ │ │   └─┬ is-finite@1.0.2
│ │ │     └── number-is-nan@1.0.1
│ │ ├── jsesc@1.3.0
│ │ ├── lodash@4.17.10 deduped
│ │ ├── source-map@0.5.7
│ │ └── trim-right@1.0.1
│ ├─┬ babel-helpers@6.24.1
│ │ ├── babel-runtime@6.26.0 deduped
│ │ └── babel-template@6.26.0 deduped
│ ├─┬ babel-messages@6.23.0
│ │ └── babel-runtime@6.26.0 deduped
│ ├─┬ babel-register@6.26.0
│ │ ├── babel-core@6.26.3 deduped
│ │ ├── babel-runtime@6.26.0 deduped
│ │ ├── core-js@2.5.7
│ │ ├─┬ home-or-tmp@2.0.0
│ │ │ ├── os-homedir@1.0.2 deduped
│ │ │ └── os-tmpdir@1.0.2
│ │ ├── lodash@4.17.10 deduped
│ │ ├── mkdirp@0.5.1 deduped
│ │ └─┬ source-map-support@0.4.18
│ │   └── source-map@0.5.7
│ ├─┬ babel-runtime@6.26.0
│ │ ├── core-js@2.5.7 deduped
│ │ └── regenerator-runtime@0.11.1
│ ├─┬ babel-template@6.26.0
│ │ ├── babel-runtime@6.26.0 deduped
│ │ ├── babel-traverse@6.26.0 deduped
│ │ ├── babel-types@6.26.0 deduped
│ │ ├── babylon@6.18.0 deduped
│ │ └── lodash@4.17.10 deduped
│ ├─┬ babel-traverse@6.26.0
│ │ ├── babel-code-frame@6.26.0 deduped
│ │ ├── babel-messages@6.23.0 deduped
│ │ ├── babel-runtime@6.26.0 deduped
│ │ ├── babel-types@6.26.0 deduped
│ │ ├── babylon@6.18.0 deduped
│ │ ├─┬ debug@2.6.9
│ │ │ └── ms@2.0.0 deduped
│ │ ├── globals@9.18.0
│ │ ├── invariant@2.2.4 deduped
│ │ └── lodash@4.17.10 deduped
│ ├─┬ babel-types@6.26.0
│ │ ├── babel-runtime@6.26.0 deduped
│ │ ├── esutils@2.0.2 deduped
│ │ ├── lodash@4.17.10 deduped
│ │ └── to-fast-properties@1.0.3
│ ├── babylon@6.18.0
│ ├── convert-source-map@1.5.1
│ ├─┬ debug@2.6.9
│ │ └── ms@2.0.0
│ ├── json5@0.5.1
│ ├── lodash@4.17.10 deduped
│ ├─┬ minimatch@3.0.4
│ │ └─┬ brace-expansion@1.1.11
│ │   ├── balanced-match@1.0.0
│ │   └── concat-map@0.0.1
│ ├── path-is-absolute@1.0.1
│ ├── private@0.1.8
│ ├── slash@1.0.0
│ └── source-map@0.5.7
├─┬ babel-eslint@8.2.3
│ ├─┬ @babel/code-frame@7.0.0-beta.44
│ │ └─┬ @babel/highlight@7.0.0-beta.44
│ │   ├── chalk@2.4.1 deduped
│ │   ├── esutils@2.0.2 deduped
│ │   └── js-tokens@3.0.2 deduped
│ ├─┬ @babel/traverse@7.0.0-beta.44
│ │ ├── @babel/code-frame@7.0.0-beta.44 deduped
│ │ ├─┬ @babel/generator@7.0.0-beta.44
│ │ │ ├── @babel/types@7.0.0-beta.44 deduped
│ │ │ ├── jsesc@2.5.1
│ │ │ ├── lodash@4.17.10 deduped
│ │ │ ├── source-map@0.5.7
│ │ │ └── trim-right@1.0.1 deduped
│ │ ├─┬ @babel/helper-function-name@7.0.0-beta.44
│ │ │ ├─┬ @babel/helper-get-function-arity@7.0.0-beta.44
│ │ │ │ └── @babel/types@7.0.0-beta.44 deduped
│ │ │ ├─┬ @babel/template@7.0.0-beta.44
│ │ │ │ ├── @babel/code-frame@7.0.0-beta.44 deduped
│ │ │ │ ├── @babel/types@7.0.0-beta.44 deduped
│ │ │ │ ├── babylon@7.0.0-beta.44
│ │ │ │ └── lodash@4.17.10 deduped
│ │ │ └── @babel/types@7.0.0-beta.44 deduped
│ │ ├─┬ @babel/helper-split-export-declaration@7.0.0-beta.44
│ │ │ └── @babel/types@7.0.0-beta.44 deduped
│ │ ├── @babel/types@7.0.0-beta.44 deduped
│ │ ├── babylon@7.0.0-beta.44
│ │ ├── debug@3.1.0 deduped
│ │ ├── globals@11.6.0
│ │ ├── invariant@2.2.4 deduped
│ │ └── lodash@4.17.10 deduped
│ ├─┬ @babel/types@7.0.0-beta.44
│ │ ├── esutils@2.0.2 deduped
│ │ ├── lodash@4.17.10 deduped
│ │ └── to-fast-properties@2.0.0
│ ├── babylon@7.0.0-beta.44
│ ├─┬ eslint-scope@3.7.1
│ │ ├─┬ esrecurse@4.2.1
│ │ │ └── estraverse@4.2.0 deduped
│ │ └── estraverse@4.2.0
│ └── eslint-visitor-keys@1.0.0
├─┬ babel-loader@7.1.4
│ ├─┬ find-cache-dir@1.0.0
│ │ ├── commondir@1.0.1
│ │ ├─┬ make-dir@1.3.0
│ │ │ └── pify@3.0.0
│ │ └─┬ pkg-dir@2.0.0
│ │   └── find-up@2.1.0 deduped
│ ├─┬ loader-utils@1.1.0
│ │ ├── big.js@3.2.0
│ │ ├── emojis-list@2.1.0
│ │ └── json5@0.5.1 deduped
│ └── mkdirp@0.5.1 deduped
├─┬ babel-plugin-istanbul@4.1.6
│ ├── babel-plugin-syntax-object-rest-spread@6.13.0
│ ├─┬ find-up@2.1.0
│ │ └─┬ locate-path@2.0.0
│ │   ├─┬ p-locate@2.0.0
│ │   │ └── p-limit@1.3.0 deduped
│ │   └── path-exists@3.0.0
│ ├─┬ istanbul-lib-instrument@1.10.1
│ │ ├── babel-generator@6.26.1 deduped
│ │ ├── babel-template@6.26.0 deduped
│ │ ├── babel-traverse@6.26.0 deduped
│ │ ├── babel-types@6.26.0 deduped
│ │ ├── babylon@6.18.0 deduped
│ │ ├── istanbul-lib-coverage@1.2.0
│ │ └── semver@5.5.0 deduped
│ └─┬ test-exclude@4.2.1
│   ├── arrify@1.0.1 deduped
│   ├── micromatch@3.1.10 deduped
│   ├── object-assign@4.1.1 deduped
│   ├─┬ read-pkg-up@1.0.1
│   │ ├─┬ find-up@1.1.2
│   │ │ ├─┬ path-exists@2.1.0
│   │ │ │ └── pinkie-promise@2.0.1 deduped
│   │ │ └── pinkie-promise@2.0.1 deduped
│   │ └─┬ read-pkg@1.1.0
│   │   ├─┬ load-json-file@1.1.0
│   │   │ ├── graceful-fs@4.1.11 deduped
│   │   │ ├── parse-json@2.2.0 deduped
│   │   │ ├── pify@2.3.0 deduped
│   │   │ ├── pinkie-promise@2.0.1 deduped
│   │   │ └─┬ strip-bom@2.0.0
│   │   │   └── is-utf8@0.2.1
│   │   ├── normalize-package-data@2.4.0 deduped
│   │   └─┬ path-type@1.1.0
│   │     ├── graceful-fs@4.1.11 deduped
│   │     ├── pify@2.3.0 deduped
│   │     └── pinkie-promise@2.0.1 deduped
│   └── require-main-filename@1.0.1
├─┬ babel-plugin-transform-class-properties@6.24.1
│ ├─┬ babel-helper-function-name@6.24.1
│ │ ├─┬ babel-helper-get-function-arity@6.24.1
│ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ └── babel-types@6.26.0 deduped
│ │ ├── babel-runtime@6.26.0 deduped
│ │ ├── babel-template@6.26.0 deduped
│ │ ├── babel-traverse@6.26.0 deduped
│ │ └── babel-types@6.26.0 deduped
│ ├── babel-plugin-syntax-class-properties@6.13.0
│ ├── babel-runtime@6.26.0 deduped
│ └── babel-template@6.26.0 deduped
├─┬ babel-plugin-transform-runtime@6.23.0
│ └── babel-runtime@6.26.0 deduped
├─┬ babel-plugin-webpack-alias@2.1.2
│ ├── babel-types@6.26.0 deduped
│ ├── find-up@2.1.0 deduped
│ ├── lodash.some@4.6.0
│ └─┬ lodash.template@4.4.0
│   ├── lodash._reinterpolate@3.0.0
│   └─┬ lodash.templatesettings@4.1.0
│     └── lodash._reinterpolate@3.0.0 deduped
├─┬ babel-preset-env@1.7.0
│ ├─┬ babel-plugin-check-es2015-constants@6.22.0
│ │ └── babel-runtime@6.26.0 deduped
│ ├── 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-helper-function-name@6.24.1 deduped
│ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ ├── babel-template@6.26.0 deduped
│ │ │ ├── babel-traverse@6.26.0 deduped
│ │ │ └── babel-types@6.26.0 deduped
│ │ ├── babel-plugin-syntax-async-functions@6.13.0
│ │ └── babel-runtime@6.26.0 deduped
│ ├─┬ babel-plugin-transform-es2015-arrow-functions@6.22.0
│ │ └── babel-runtime@6.26.0 deduped
│ ├─┬ babel-plugin-transform-es2015-block-scoped-functions@6.22.0
│ │ └── babel-runtime@6.26.0 deduped
│ ├─┬ babel-plugin-transform-es2015-block-scoping@6.26.0
│ │ ├── babel-runtime@6.26.0 deduped
│ │ ├── babel-template@6.26.0 deduped
│ │ ├── babel-traverse@6.26.0 deduped
│ │ ├── babel-types@6.26.0 deduped
│ │ └── lodash@4.17.10 deduped
│ ├─┬ babel-plugin-transform-es2015-classes@6.24.1
│ │ ├─┬ babel-helper-define-map@6.26.0
│ │ │ ├── babel-helper-function-name@6.24.1 deduped
│ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ ├── babel-types@6.26.0 deduped
│ │ │ └── lodash@4.17.10 deduped
│ │ ├── babel-helper-function-name@6.24.1 deduped
│ │ ├─┬ babel-helper-optimise-call-expression@6.24.1
│ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ └── babel-types@6.26.0 deduped
│ │ ├─┬ babel-helper-replace-supers@6.24.1
│ │ │ ├── babel-helper-optimise-call-expression@6.24.1 deduped
│ │ │ ├── babel-messages@6.23.0 deduped
│ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ ├── babel-template@6.26.0 deduped
│ │ │ ├── babel-traverse@6.26.0 deduped
│ │ │ └── babel-types@6.26.0 deduped
│ │ ├── babel-messages@6.23.0 deduped
│ │ ├── babel-runtime@6.26.0 deduped
│ │ ├── babel-template@6.26.0 deduped
│ │ ├── babel-traverse@6.26.0 deduped
│ │ └── babel-types@6.26.0 deduped
│ ├─┬ babel-plugin-transform-es2015-computed-properties@6.24.1
│ │ ├── babel-runtime@6.26.0 deduped
│ │ └── babel-template@6.26.0 deduped
│ ├─┬ babel-plugin-transform-es2015-destructuring@6.23.0
│ │ └── babel-runtime@6.26.0 deduped
│ ├─┬ babel-plugin-transform-es2015-duplicate-keys@6.24.1
│ │ ├── babel-runtime@6.26.0 deduped
│ │ └── babel-types@6.26.0 deduped
│ ├─┬ babel-plugin-transform-es2015-for-of@6.23.0
│ │ └── babel-runtime@6.26.0 deduped
│ ├─┬ babel-plugin-transform-es2015-function-name@6.24.1
│ │ ├── babel-helper-function-name@6.24.1 deduped
│ │ ├── babel-runtime@6.26.0 deduped
│ │ └── babel-types@6.26.0 deduped
│ ├─┬ babel-plugin-transform-es2015-literals@6.22.0
│ │ └── babel-runtime@6.26.0 deduped
│ ├─┬ babel-plugin-transform-es2015-modules-amd@6.24.1
│ │ ├── babel-plugin-transform-es2015-modules-commonjs@6.26.2 deduped
│ │ ├── babel-runtime@6.26.0 deduped
│ │ └── babel-template@6.26.0 deduped
│ ├─┬ babel-plugin-transform-es2015-modules-commonjs@6.26.2
│ │ ├─┬ babel-plugin-transform-strict-mode@6.24.1
│ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ └── babel-types@6.26.0 deduped
│ │ ├── babel-runtime@6.26.0 deduped
│ │ ├── babel-template@6.26.0 deduped
│ │ └── babel-types@6.26.0 deduped
│ ├─┬ babel-plugin-transform-es2015-modules-systemjs@6.24.1
│ │ ├─┬ babel-helper-hoist-variables@6.24.1
│ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ └── babel-types@6.26.0 deduped
│ │ ├── babel-runtime@6.26.0 deduped
│ │ └── babel-template@6.26.0 deduped
│ ├─┬ babel-plugin-transform-es2015-modules-umd@6.24.1
│ │ ├── babel-plugin-transform-es2015-modules-amd@6.24.1 deduped
│ │ ├── babel-runtime@6.26.0 deduped
│ │ └── babel-template@6.26.0 deduped
│ ├─┬ babel-plugin-transform-es2015-object-super@6.24.1
│ │ ├── babel-helper-replace-supers@6.24.1 deduped
│ │ └── babel-runtime@6.26.0 deduped
│ ├─┬ babel-plugin-transform-es2015-parameters@6.24.1
│ │ ├─┬ babel-helper-call-delegate@6.24.1
│ │ │ ├── babel-helper-hoist-variables@6.24.1 deduped
│ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ ├── babel-traverse@6.26.0 deduped
│ │ │ └── babel-types@6.26.0 deduped
│ │ ├── babel-helper-get-function-arity@6.24.1 deduped
│ │ ├── babel-runtime@6.26.0 deduped
│ │ ├── babel-template@6.26.0 deduped
│ │ ├── babel-traverse@6.26.0 deduped
│ │ └── babel-types@6.26.0 deduped
│ ├─┬ babel-plugin-transform-es2015-shorthand-properties@6.24.1
│ │ ├── babel-runtime@6.26.0 deduped
│ │ └── babel-types@6.26.0 deduped
│ ├─┬ babel-plugin-transform-es2015-spread@6.22.0
│ │ └── babel-runtime@6.26.0 deduped
│ ├─┬ babel-plugin-transform-es2015-sticky-regex@6.24.1
│ │ ├─┬ babel-helper-regex@6.26.0
│ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ ├── babel-types@6.26.0 deduped
│ │ │ └── lodash@4.17.10 deduped
│ │ ├── babel-runtime@6.26.0 deduped
│ │ └── babel-types@6.26.0 deduped
│ ├─┬ babel-plugin-transform-es2015-template-literals@6.22.0
│ │ └── babel-runtime@6.26.0 deduped
│ ├─┬ babel-plugin-transform-es2015-typeof-symbol@6.23.0
│ │ └── babel-runtime@6.26.0 deduped
│ ├─┬ babel-plugin-transform-es2015-unicode-regex@6.24.1
│ │ ├── babel-helper-regex@6.26.0 deduped
│ │ ├── babel-runtime@6.26.0 deduped
│ │ └─┬ regexpu-core@2.0.0
│ │   ├── regenerate@1.4.0
│ │   ├── regjsgen@0.2.0
│ │   └─┬ regjsparser@0.1.5
│ │     └── jsesc@0.5.0
│ ├─┬ babel-plugin-transform-exponentiation-operator@6.24.1
│ │ ├─┬ babel-helper-builder-binary-assignment-operator-visitor@6.24.1
│ │ │ ├─┬ babel-helper-explode-assignable-expression@6.24.1
│ │ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ │ ├── babel-traverse@6.26.0 deduped
│ │ │ │ └── babel-types@6.26.0 deduped
│ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ └── babel-types@6.26.0 deduped
│ │ ├── babel-plugin-syntax-exponentiation-operator@6.13.0
│ │ └── babel-runtime@6.26.0 deduped
│ ├─┬ babel-plugin-transform-regenerator@6.26.0
│ │ └─┬ regenerator-transform@0.10.1
│ │   ├── babel-runtime@6.26.0 deduped
│ │   ├── babel-types@6.26.0 deduped
│ │   └── private@0.1.8 deduped
│ ├─┬ browserslist@3.2.8
│ │ ├── caniuse-lite@1.0.30000856
│ │ └── electron-to-chromium@1.3.48
│ ├─┬ invariant@2.2.4
│ │ └─┬ loose-envify@1.3.1
│ │   └── js-tokens@3.0.2 deduped
│ └── semver@5.5.0
├─┬ babel-preset-stage-2@6.24.1
│ ├── babel-plugin-syntax-dynamic-import@6.18.0
│ ├── babel-plugin-transform-class-properties@6.24.1 deduped
│ ├─┬ babel-plugin-transform-decorators@6.24.1
│ │ ├─┬ babel-helper-explode-class@6.24.1
│ │ │ ├─┬ babel-helper-bindify-decorators@6.24.1
│ │ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ │ ├── babel-traverse@6.26.0 deduped
│ │ │ │ └── babel-types@6.26.0 deduped
│ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ ├── babel-traverse@6.26.0 deduped
│ │ │ └── babel-types@6.26.0 deduped
│ │ ├── babel-plugin-syntax-decorators@6.13.0
│ │ ├── babel-runtime@6.26.0 deduped
│ │ ├── babel-template@6.26.0 deduped
│ │ └── babel-types@6.26.0 deduped
│ └─┬ babel-preset-stage-3@6.24.1
│   ├── babel-plugin-syntax-trailing-function-commas@6.22.0 deduped
│   ├─┬ babel-plugin-transform-async-generator-functions@6.24.1
│   │ ├── babel-helper-remap-async-to-generator@6.24.1 deduped
│   │ ├── babel-plugin-syntax-async-generators@6.13.0
│   │ └── babel-runtime@6.26.0 deduped
│   ├── babel-plugin-transform-async-to-generator@6.24.1 deduped
│   ├── babel-plugin-transform-exponentiation-operator@6.24.1 deduped
│   └─┬ babel-plugin-transform-object-rest-spread@6.26.0
│     ├── babel-plugin-syntax-object-rest-spread@6.13.0 deduped
│     └── babel-runtime@6.26.0 deduped
├─┬ chai@4.1.2
│ ├── assertion-error@1.1.0
│ ├── check-error@1.0.2
│ ├─┬ deep-eql@3.0.1
│ │ └── type-detect@4.0.8 deduped
│ ├── get-func-name@2.0.0
│ ├── pathval@1.1.0
│ └── type-detect@4.0.8
├── circular-dependency-plugin@5.0.2
├─┬ clean-webpack-plugin@0.1.19
│ └─┬ rimraf@2.6.2
│   └── glob@7.1.2 deduped
├─┬ compression-webpack-plugin@1.1.11
│ ├─┬ cacache@10.0.4
│ │ ├── bluebird@3.5.1 deduped
│ │ ├── chownr@1.0.1
│ │ ├── glob@7.1.2 deduped
│ │ ├── graceful-fs@4.1.11
│ │ ├─┬ lru-cache@4.1.3
│ │ │ ├── pseudomap@1.0.2
│ │ │ └── yallist@2.1.2
│ │ ├─┬ mississippi@2.0.0
│ │ │ ├── concat-stream@1.6.2 deduped
│ │ │ ├─┬ duplexify@3.6.0
│ │ │ │ ├── end-of-stream@1.4.1 deduped
│ │ │ │ ├── inherits@2.0.3 deduped
│ │ │ │ ├── readable-stream@2.3.6 deduped
│ │ │ │ └── stream-shift@1.0.0
│ │ │ ├─┬ end-of-stream@1.4.1
│ │ │ │ └── once@1.4.0 deduped
│ │ │ ├─┬ flush-write-stream@1.0.3
│ │ │ │ ├── inherits@2.0.3 deduped
│ │ │ │ └── readable-stream@2.3.6 deduped
│ │ │ ├─┬ from2@2.3.0
│ │ │ │ ├── inherits@2.0.3 deduped
│ │ │ │ └── readable-stream@2.3.6 deduped
│ │ │ ├─┬ parallel-transform@1.1.0
│ │ │ │ ├── cyclist@0.2.2
│ │ │ │ ├── inherits@2.0.3 deduped
│ │ │ │ └── readable-stream@2.3.6 deduped
│ │ │ ├─┬ pump@2.0.1
│ │ │ │ ├── end-of-stream@1.4.1 deduped
│ │ │ │ └── once@1.4.0 deduped
│ │ │ ├─┬ pumpify@1.5.1
│ │ │ │ ├── duplexify@3.6.0 deduped
│ │ │ │ ├── inherits@2.0.3 deduped
│ │ │ │ └── pump@2.0.1 deduped
│ │ │ ├─┬ stream-each@1.2.2
│ │ │ │ ├── end-of-stream@1.4.1 deduped
│ │ │ │ └── stream-shift@1.0.0 deduped
│ │ │ └─┬ through2@2.0.3
│ │ │   ├── readable-stream@2.3.6 deduped
│ │ │   └── xtend@4.0.1 deduped
│ │ ├── mkdirp@0.5.1 deduped
│ │ ├─┬ move-concurrently@1.0.1
│ │ │ ├── aproba@1.2.0
│ │ │ ├─┬ copy-concurrently@1.0.5
│ │ │ │ ├── aproba@1.2.0 deduped
│ │ │ │ ├── fs-write-stream-atomic@1.0.10 deduped
│ │ │ │ ├── iferr@0.1.5
│ │ │ │ ├── mkdirp@0.5.1 deduped
│ │ │ │ ├── rimraf@2.6.2 deduped
│ │ │ │ └── run-queue@1.0.3 deduped
│ │ │ ├─┬ fs-write-stream-atomic@1.0.10
│ │ │ │ ├── graceful-fs@4.1.11 deduped
│ │ │ │ ├── iferr@0.1.5 deduped
│ │ │ │ ├── imurmurhash@0.1.4 deduped
│ │ │ │ └── readable-stream@2.3.6 deduped
│ │ │ ├── mkdirp@0.5.1 deduped
│ │ │ ├── rimraf@2.6.2 deduped
│ │ │ └─┬ run-queue@1.0.3
│ │ │   └── aproba@1.2.0 deduped
│ │ ├── promise-inflight@1.0.1
│ │ ├── rimraf@2.6.2 deduped
│ │ ├─┬ ssri@5.3.0
│ │ │ └── safe-buffer@5.1.2 deduped
│ │ ├─┬ unique-filename@1.1.0
│ │ │ └─┬ unique-slug@2.0.0
│ │ │   └── imurmurhash@0.1.4 deduped
│ │ └── y18n@4.0.0
│ ├── find-cache-dir@1.0.0 deduped
│ ├── neo-async@2.5.1
│ ├── serialize-javascript@1.5.0
│ └─┬ webpack-sources@1.1.0
│   ├── source-list-map@2.0.0 deduped
│   └── source-map@0.6.1 deduped
├─┬ copy-webpack-plugin@4.5.1
│ ├── cacache@10.0.4 deduped
│ ├── find-cache-dir@1.0.0 deduped
│ ├─┬ globby@7.1.1
│ │ ├─┬ array-union@1.0.2
│ │ │ └── array-uniq@1.0.3
│ │ ├─┬ dir-glob@2.0.0
│ │ │ ├── arrify@1.0.1 deduped
│ │ │ └─┬ path-type@3.0.0
│ │ │   └── pify@3.0.0
│ │ ├── glob@7.1.2 deduped
│ │ ├── ignore@3.3.8 deduped
│ │ ├── pify@3.0.0
│ │ └── slash@1.0.0 deduped
│ ├─┬ is-glob@4.0.0
│ │ └── is-extglob@2.1.1
│ ├── loader-utils@1.1.0 deduped
│ ├── minimatch@3.0.4 deduped
│ ├─┬ p-limit@1.3.0
│ │ └── p-try@1.0.0
│ └── serialize-javascript@1.5.0 deduped
├─┬ cross-env@5.2.0
│ ├─┬ cross-spawn@6.0.5
│ │ ├── nice-try@1.0.4
│ │ ├── path-key@2.0.1
│ │ ├── semver@5.5.0 deduped
│ │ ├─┬ shebang-command@1.2.0
│ │ │ └── shebang-regex@1.0.0
│ │ └── which@1.3.1 deduped
│ └── is-windows@1.0.2
├─┬ css-loader@0.28.11
│ ├── babel-code-frame@6.26.0 deduped
│ ├─┬ css-selector-tokenizer@0.7.0
│ │ ├── cssesc@0.1.0
│ │ ├── fastparse@1.1.1
│ │ └─┬ regexpu-core@1.0.0
│ │   ├── regenerate@1.4.0 deduped
│ │   ├── regjsgen@0.2.0 deduped
│ │   └── regjsparser@0.1.5 deduped
│ ├─┬ cssnano@3.10.0
│ │ ├─┬ autoprefixer@6.7.7
│ │ │ ├─┬ browserslist@1.7.7
│ │ │ │ ├── caniuse-db@1.0.30000856 deduped
│ │ │ │ └── electron-to-chromium@1.3.48 deduped
│ │ │ ├── caniuse-db@1.0.30000856
│ │ │ ├── normalize-range@0.1.2 deduped
│ │ │ ├── num2fraction@1.2.2 deduped
│ │ │ ├── postcss@5.2.18 deduped
│ │ │ └── postcss-value-parser@3.3.0 deduped
│ │ ├── decamelize@1.2.0
│ │ ├── defined@1.0.0
│ │ ├─┬ has@1.0.3
│ │ │ └── function-bind@1.1.1
│ │ ├── object-assign@4.1.1 deduped
│ │ ├─┬ postcss@5.2.18
│ │ │ ├─┬ chalk@1.1.3
│ │ │ │ ├── ansi-styles@2.2.1
│ │ │ │ ├── escape-string-regexp@1.0.5 deduped
│ │ │ │ ├── has-ansi@2.0.0 deduped
│ │ │ │ ├── strip-ansi@3.0.1 deduped
│ │ │ │ └── supports-color@2.0.0
│ │ │ ├── js-base64@2.4.5 deduped
│ │ │ ├── source-map@0.5.7
│ │ │ └─┬ supports-color@3.2.3
│ │ │   └── has-flag@1.0.0
│ │ ├─┬ postcss-calc@5.3.1
│ │ │ ├── postcss@5.2.18 deduped
│ │ │ ├── postcss-message-helpers@2.0.0 deduped
│ │ │ └── reduce-css-calc@1.3.0 deduped
│ │ ├─┬ postcss-colormin@2.2.2
│ │ │ ├─┬ colormin@1.1.2
│ │ │ │ ├── color@0.11.4 deduped
│ │ │ │ ├── css-color-names@0.0.4
│ │ │ │ └── has@1.0.3 deduped
│ │ │ ├─┬ postcss@5.2.18
│ │ │ │ ├─┬ chalk@1.1.3
│ │ │ │ │ ├── ansi-styles@2.2.1
│ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped
│ │ │ │ │ ├── has-ansi@2.0.0 deduped
│ │ │ │ │ ├── strip-ansi@3.0.1 deduped
│ │ │ │ │ └── supports-color@2.0.0
│ │ │ │ ├── js-base64@2.4.5 deduped
│ │ │ │ ├── source-map@0.5.7
│ │ │ │ └─┬ supports-color@3.2.3
│ │ │ │   └── has-flag@1.0.0
│ │ │ └── postcss-value-parser@3.3.0 deduped
│ │ ├─┬ postcss-convert-values@2.6.1
│ │ │ ├─┬ postcss@5.2.18
│ │ │ │ ├─┬ chalk@1.1.3
│ │ │ │ │ ├── ansi-styles@2.2.1
│ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped
│ │ │ │ │ ├── has-ansi@2.0.0 deduped
│ │ │ │ │ ├── strip-ansi@3.0.1 deduped
│ │ │ │ │ └── supports-color@2.0.0
│ │ │ │ ├── js-base64@2.4.5 deduped
│ │ │ │ ├── source-map@0.5.7
│ │ │ │ └─┬ supports-color@3.2.3
│ │ │ │   └── has-flag@1.0.0
│ │ │ └── postcss-value-parser@3.3.0 deduped
│ │ ├─┬ postcss-discard-comments@2.0.4
│ │ │ └─┬ postcss@5.2.18
│ │ │   ├─┬ chalk@1.1.3
│ │ │   │ ├── ansi-styles@2.2.1
│ │ │   │ ├── escape-string-regexp@1.0.5 deduped
│ │ │   │ ├── has-ansi@2.0.0 deduped
│ │ │   │ ├── strip-ansi@3.0.1 deduped
│ │ │   │ └── supports-color@2.0.0
│ │ │   ├── js-base64@2.4.5 deduped
│ │ │   ├── source-map@0.5.7
│ │ │   └─┬ supports-color@3.2.3
│ │ │     └── has-flag@1.0.0
│ │ ├─┬ postcss-discard-duplicates@2.1.0
│ │ │ └─┬ postcss@5.2.18
│ │ │   ├─┬ chalk@1.1.3
│ │ │   │ ├── ansi-styles@2.2.1
│ │ │   │ ├── escape-string-regexp@1.0.5 deduped
│ │ │   │ ├── has-ansi@2.0.0 deduped
│ │ │   │ ├── strip-ansi@3.0.1 deduped
│ │ │   │ └── supports-color@2.0.0
│ │ │   ├── js-base64@2.4.5 deduped
│ │ │   ├── source-map@0.5.7
│ │ │   └─┬ supports-color@3.2.3
│ │ │     └── has-flag@1.0.0
│ │ ├─┬ postcss-discard-empty@2.1.0
│ │ │ └─┬ postcss@5.2.18
│ │ │   ├─┬ chalk@1.1.3
│ │ │   │ ├── ansi-styles@2.2.1
│ │ │   │ ├── escape-string-regexp@1.0.5 deduped
│ │ │   │ ├── has-ansi@2.0.0 deduped
│ │ │   │ ├── strip-ansi@3.0.1 deduped
│ │ │   │ └── supports-color@2.0.0
│ │ │   ├── js-base64@2.4.5 deduped
│ │ │   ├── source-map@0.5.7
│ │ │   └─┬ supports-color@3.2.3
│ │ │     └── has-flag@1.0.0
│ │ ├─┬ postcss-discard-overridden@0.1.1
│ │ │ └─┬ postcss@5.2.18
│ │ │   ├─┬ chalk@1.1.3
│ │ │   │ ├── ansi-styles@2.2.1
│ │ │   │ ├── escape-string-regexp@1.0.5 deduped
│ │ │   │ ├── has-ansi@2.0.0 deduped
│ │ │   │ ├── strip-ansi@3.0.1 deduped
│ │ │   │ └── supports-color@2.0.0
│ │ │   ├── js-base64@2.4.5 deduped
│ │ │   ├── source-map@0.5.7
│ │ │   └─┬ supports-color@3.2.3
│ │ │     └── has-flag@1.0.0
│ │ ├─┬ postcss-discard-unused@2.2.3
│ │ │ ├─┬ postcss@5.2.18
│ │ │ │ ├─┬ chalk@1.1.3
│ │ │ │ │ ├── ansi-styles@2.2.1
│ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped
│ │ │ │ │ ├── has-ansi@2.0.0 deduped
│ │ │ │ │ ├── strip-ansi@3.0.1 deduped
│ │ │ │ │ └── supports-color@2.0.0
│ │ │ │ ├── js-base64@2.4.5 deduped
│ │ │ │ ├── source-map@0.5.7
│ │ │ │ └─┬ supports-color@3.2.3
│ │ │ │   └── has-flag@1.0.0
│ │ │ └── uniqs@2.0.0
│ │ ├─┬ postcss-filter-plugins@2.0.3
│ │ │ └─┬ postcss@5.2.18
│ │ │   ├─┬ chalk@1.1.3
│ │ │   │ ├── ansi-styles@2.2.1
│ │ │   │ ├── escape-string-regexp@1.0.5 deduped
│ │ │   │ ├── has-ansi@2.0.0 deduped
│ │ │   │ ├── strip-ansi@3.0.1 deduped
│ │ │   │ └── supports-color@2.0.0
│ │ │   ├── js-base64@2.4.5 deduped
│ │ │   ├── source-map@0.5.7
│ │ │   └─┬ supports-color@3.2.3
│ │ │     └── has-flag@1.0.0
│ │ ├─┬ postcss-merge-idents@2.1.7
│ │ │ ├── has@1.0.3 deduped
│ │ │ ├─┬ postcss@5.2.18
│ │ │ │ ├─┬ chalk@1.1.3
│ │ │ │ │ ├── ansi-styles@2.2.1
│ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped
│ │ │ │ │ ├── has-ansi@2.0.0 deduped
│ │ │ │ │ ├── strip-ansi@3.0.1 deduped
│ │ │ │ │ └── supports-color@2.0.0
│ │ │ │ ├── js-base64@2.4.5 deduped
│ │ │ │ ├── source-map@0.5.7
│ │ │ │ └─┬ supports-color@3.2.3
│ │ │ │   └── has-flag@1.0.0
│ │ │ └── postcss-value-parser@3.3.0 deduped
│ │ ├─┬ postcss-merge-longhand@2.0.2
│ │ │ └─┬ postcss@5.2.18
│ │ │   ├─┬ chalk@1.1.3
│ │ │   │ ├── ansi-styles@2.2.1
│ │ │   │ ├── escape-string-regexp@1.0.5 deduped
│ │ │   │ ├── has-ansi@2.0.0 deduped
│ │ │   │ ├── strip-ansi@3.0.1 deduped
│ │ │   │ └── supports-color@2.0.0
│ │ │   ├── js-base64@2.4.5 deduped
│ │ │   ├── source-map@0.5.7
│ │ │   └─┬ supports-color@3.2.3
│ │ │     └── has-flag@1.0.0
│ │ ├─┬ postcss-merge-rules@2.1.2
│ │ │ ├─┬ browserslist@1.7.7
│ │ │ │ ├── caniuse-db@1.0.30000856 deduped
│ │ │ │ └── electron-to-chromium@1.3.48 deduped
│ │ │ ├─┬ caniuse-api@1.6.1
│ │ │ │ ├── browserslist@1.7.7 deduped
│ │ │ │ ├── caniuse-db@1.0.30000856 deduped
│ │ │ │ ├── lodash.memoize@4.1.2 deduped
│ │ │ │ └── lodash.uniq@4.5.0 deduped
│ │ │ ├─┬ postcss@5.2.18
│ │ │ │ ├─┬ chalk@1.1.3
│ │ │ │ │ ├── ansi-styles@2.2.1
│ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped
│ │ │ │ │ ├── has-ansi@2.0.0 deduped
│ │ │ │ │ ├── strip-ansi@3.0.1 deduped
│ │ │ │ │ └── supports-color@2.0.0
│ │ │ │ ├── js-base64@2.4.5 deduped
│ │ │ │ ├── source-map@0.5.7
│ │ │ │ └─┬ supports-color@3.2.3
│ │ │ │   └── has-flag@1.0.0
│ │ │ ├── postcss-selector-parser@2.2.3 deduped
│ │ │ └── vendors@1.0.2
│ │ ├─┬ postcss-minify-font-values@1.0.5
│ │ │ ├── object-assign@4.1.1 deduped
│ │ │ ├─┬ postcss@5.2.18
│ │ │ │ ├─┬ chalk@1.1.3
│ │ │ │ │ ├── ansi-styles@2.2.1
│ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped
│ │ │ │ │ ├── has-ansi@2.0.0 deduped
│ │ │ │ │ ├── strip-ansi@3.0.1 deduped
│ │ │ │ │ └── supports-color@2.0.0
│ │ │ │ ├── js-base64@2.4.5 deduped
│ │ │ │ ├── source-map@0.5.7
│ │ │ │ └─┬ supports-color@3.2.3
│ │ │ │   └── has-flag@1.0.0
│ │ │ └── postcss-value-parser@3.3.0 deduped
│ │ ├─┬ postcss-minify-gradients@1.0.5
│ │ │ ├─┬ postcss@5.2.18
│ │ │ │ ├─┬ chalk@1.1.3
│ │ │ │ │ ├── ansi-styles@2.2.1
│ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped
│ │ │ │ │ ├── has-ansi@2.0.0 deduped
│ │ │ │ │ ├── strip-ansi@3.0.1 deduped
│ │ │ │ │ └── supports-color@2.0.0
│ │ │ │ ├── js-base64@2.4.5 deduped
│ │ │ │ ├── source-map@0.5.7
│ │ │ │ └─┬ supports-color@3.2.3
│ │ │ │   └── has-flag@1.0.0
│ │ │ └── postcss-value-parser@3.3.0 deduped
│ │ ├─┬ postcss-minify-params@1.2.2
│ │ │ ├── alphanum-sort@1.0.2
│ │ │ ├─┬ postcss@5.2.18
│ │ │ │ ├─┬ chalk@1.1.3
│ │ │ │ │ ├── ansi-styles@2.2.1
│ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped
│ │ │ │ │ ├── has-ansi@2.0.0 deduped
│ │ │ │ │ ├── strip-ansi@3.0.1 deduped
│ │ │ │ │ └── supports-color@2.0.0
│ │ │ │ ├── js-base64@2.4.5 deduped
│ │ │ │ ├── source-map@0.5.7
│ │ │ │ └─┬ supports-color@3.2.3
│ │ │ │   └── has-flag@1.0.0
│ │ │ ├── postcss-value-parser@3.3.0 deduped
│ │ │ └── uniqs@2.0.0 deduped
│ │ ├─┬ postcss-minify-selectors@2.1.1
│ │ │ ├── alphanum-sort@1.0.2 deduped
│ │ │ ├── has@1.0.3 deduped
│ │ │ ├─┬ postcss@5.2.18
│ │ │ │ ├─┬ chalk@1.1.3
│ │ │ │ │ ├── ansi-styles@2.2.1
│ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped
│ │ │ │ │ ├── has-ansi@2.0.0 deduped
│ │ │ │ │ ├── strip-ansi@3.0.1 deduped
│ │ │ │ │ └── supports-color@2.0.0
│ │ │ │ ├── js-base64@2.4.5 deduped
│ │ │ │ ├── source-map@0.5.7
│ │ │ │ └─┬ supports-color@3.2.3
│ │ │ │   └── has-flag@1.0.0
│ │ │ └── postcss-selector-parser@2.2.3 deduped
│ │ ├─┬ postcss-normalize-charset@1.1.1
│ │ │ └─┬ postcss@5.2.18
│ │ │   ├─┬ chalk@1.1.3
│ │ │   │ ├── ansi-styles@2.2.1
│ │ │   │ ├── escape-string-regexp@1.0.5 deduped
│ │ │   │ ├── has-ansi@2.0.0 deduped
│ │ │   │ ├── strip-ansi@3.0.1 deduped
│ │ │   │ └── supports-color@2.0.0
│ │ │   ├── js-base64@2.4.5 deduped
│ │ │   ├── source-map@0.5.7
│ │ │   └─┬ supports-color@3.2.3
│ │ │     └── has-flag@1.0.0
│ │ ├─┬ postcss-normalize-url@3.0.8
│ │ │ ├── is-absolute-url@2.1.0
│ │ │ ├─┬ normalize-url@1.9.1
│ │ │ │ ├── object-assign@4.1.1 deduped
│ │ │ │ ├── prepend-http@1.0.4
│ │ │ │ ├─┬ query-string@4.3.4
│ │ │ │ │ ├── object-assign@4.1.1 deduped
│ │ │ │ │ └── strict-uri-encode@1.1.0
│ │ │ │ └─┬ sort-keys@1.1.2
│ │ │ │   └── is-plain-obj@1.1.0 deduped
│ │ │ ├─┬ postcss@5.2.18
│ │ │ │ ├─┬ chalk@1.1.3
│ │ │ │ │ ├── ansi-styles@2.2.1
│ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped
│ │ │ │ │ ├── has-ansi@2.0.0 deduped
│ │ │ │ │ ├── strip-ansi@3.0.1 deduped
│ │ │ │ │ └── supports-color@2.0.0
│ │ │ │ ├── js-base64@2.4.5 deduped
│ │ │ │ ├── source-map@0.5.7
│ │ │ │ └─┬ supports-color@3.2.3
│ │ │ │   └── has-flag@1.0.0
│ │ │ └── postcss-value-parser@3.3.0 deduped
│ │ ├─┬ postcss-ordered-values@2.2.3
│ │ │ ├─┬ postcss@5.2.18
│ │ │ │ ├─┬ chalk@1.1.3
│ │ │ │ │ ├── ansi-styles@2.2.1
│ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped
│ │ │ │ │ ├── has-ansi@2.0.0 deduped
│ │ │ │ │ ├── strip-ansi@3.0.1 deduped
│ │ │ │ │ └── supports-color@2.0.0
│ │ │ │ ├── js-base64@2.4.5 deduped
│ │ │ │ ├── source-map@0.5.7
│ │ │ │ └─┬ supports-color@3.2.3
│ │ │ │   └── has-flag@1.0.0
│ │ │ └── postcss-value-parser@3.3.0 deduped
│ │ ├─┬ postcss-reduce-idents@2.4.0
│ │ │ ├─┬ postcss@5.2.18
│ │ │ │ ├─┬ chalk@1.1.3
│ │ │ │ │ ├── ansi-styles@2.2.1
│ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped
│ │ │ │ │ ├── has-ansi@2.0.0 deduped
│ │ │ │ │ ├── strip-ansi@3.0.1 deduped
│ │ │ │ │ └── supports-color@2.0.0
│ │ │ │ ├── js-base64@2.4.5 deduped
│ │ │ │ ├── source-map@0.5.7
│ │ │ │ └─┬ supports-color@3.2.3
│ │ │ │   └── has-flag@1.0.0
│ │ │ └── postcss-value-parser@3.3.0 deduped
│ │ ├─┬ postcss-reduce-initial@1.0.1
│ │ │ └─┬ postcss@5.2.18
│ │ │   ├─┬ chalk@1.1.3
│ │ │   │ ├── ansi-styles@2.2.1
│ │ │   │ ├── escape-string-regexp@1.0.5 deduped
│ │ │   │ ├── has-ansi@2.0.0 deduped
│ │ │   │ ├── strip-ansi@3.0.1 deduped
│ │ │   │ └── supports-color@2.0.0
│ │ │   ├── js-base64@2.4.5 deduped
│ │ │   ├── source-map@0.5.7
│ │ │   └─┬ supports-color@3.2.3
│ │ │     └── has-flag@1.0.0
│ │ ├─┬ postcss-reduce-transforms@1.0.4
│ │ │ ├── has@1.0.3 deduped
│ │ │ ├─┬ postcss@5.2.18
│ │ │ │ ├─┬ chalk@1.1.3
│ │ │ │ │ ├── ansi-styles@2.2.1
│ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped
│ │ │ │ │ ├── has-ansi@2.0.0 deduped
│ │ │ │ │ ├── strip-ansi@3.0.1 deduped
│ │ │ │ │ └── supports-color@2.0.0
│ │ │ │ ├── js-base64@2.4.5 deduped
│ │ │ │ ├── source-map@0.5.7
│ │ │ │ └─┬ supports-color@3.2.3
│ │ │ │   └── has-flag@1.0.0
│ │ │ └── postcss-value-parser@3.3.0 deduped
│ │ ├─┬ postcss-svgo@2.1.6
│ │ │ ├─┬ is-svg@2.1.0
│ │ │ │ └── html-comment-regex@1.1.1
│ │ │ ├─┬ postcss@5.2.18
│ │ │ │ ├─┬ chalk@1.1.3
│ │ │ │ │ ├── ansi-styles@2.2.1
│ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped
│ │ │ │ │ ├── has-ansi@2.0.0 deduped
│ │ │ │ │ ├── strip-ansi@3.0.1 deduped
│ │ │ │ │ └── supports-color@2.0.0
│ │ │ │ ├── js-base64@2.4.5 deduped
│ │ │ │ ├── source-map@0.5.7
│ │ │ │ └─┬ supports-color@3.2.3
│ │ │ │   └── has-flag@1.0.0
│ │ │ ├── postcss-value-parser@3.3.0 deduped
│ │ │ └─┬ svgo@0.7.2
│ │ │   ├─┬ coa@1.0.4
│ │ │   │ └── q@1.5.1
│ │ │   ├── colors@1.1.2
│ │ │   ├─┬ csso@2.3.2
│ │ │   │ ├─┬ clap@1.2.3
│ │ │   │ │ └─┬ chalk@1.1.3
│ │ │   │ │   ├── ansi-styles@2.2.1
│ │ │   │ │   ├── escape-string-regexp@1.0.5 deduped
│ │ │   │ │   ├── has-ansi@2.0.0 deduped
│ │ │   │ │   ├── strip-ansi@3.0.1 deduped
│ │ │   │ │   └── supports-color@2.0.0
│ │ │   │ └── source-map@0.5.7
│ │ │   ├── js-yaml@3.7.0 deduped
│ │ │   ├── mkdirp@0.5.1 deduped
│ │ │   ├── sax@1.2.4 deduped
│ │ │   └── whet.extend@0.9.9
│ │ ├─┬ postcss-unique-selectors@2.0.2
│ │ │ ├── alphanum-sort@1.0.2 deduped
│ │ │ ├─┬ postcss@5.2.18
│ │ │ │ ├─┬ chalk@1.1.3
│ │ │ │ │ ├── ansi-styles@2.2.1
│ │ │ │ │ ├── escape-string-regexp@1.0.5 deduped
│ │ │ │ │ ├── has-ansi@2.0.0 deduped
│ │ │ │ │ ├── strip-ansi@3.0.1 deduped
│ │ │ │ │ └── supports-color@2.0.0
│ │ │ │ ├── js-base64@2.4.5 deduped
│ │ │ │ ├── source-map@0.5.7
│ │ │ │ └─┬ supports-color@3.2.3
│ │ │ │   └── has-flag@1.0.0
│ │ │ └── uniqs@2.0.0 deduped
│ │ ├── postcss-value-parser@3.3.0 deduped
│ │ └─┬ postcss-zindex@2.2.0
│ │   ├── has@1.0.3 deduped
│ │   ├─┬ postcss@5.2.18
│ │   │ ├─┬ chalk@1.1.3
│ │   │ │ ├── ansi-styles@2.2.1
│ │   │ │ ├── escape-string-regexp@1.0.5 deduped
│ │   │ │ ├── has-ansi@2.0.0 deduped
│ │   │ │ ├── strip-ansi@3.0.1 deduped
│ │   │ │ └── supports-color@2.0.0
│ │   │ ├── js-base64@2.4.5 deduped
│ │   │ ├── source-map@0.5.7
│ │   │ └─┬ supports-color@3.2.3
│ │   │   └── has-flag@1.0.0
│ │   └── uniqs@2.0.0 deduped
│ ├─┬ icss-utils@2.1.0
│ │ └── postcss@6.0.22 deduped
│ ├── loader-utils@1.1.0 deduped
│ ├── lodash.camelcase@4.3.0
│ ├── object-assign@4.1.1
│ ├─┬ postcss@5.2.18
│ │ ├─┬ chalk@1.1.3
│ │ │ ├── ansi-styles@2.2.1
│ │ │ ├── escape-string-regexp@1.0.5 deduped
│ │ │ ├── has-ansi@2.0.0 deduped
│ │ │ ├── strip-ansi@3.0.1 deduped
│ │ │ └── supports-color@2.0.0
│ │ ├── js-base64@2.4.5
│ │ ├── source-map@0.5.7
│ │ └─┬ supports-color@3.2.3
│ │   └── has-flag@1.0.0
│ ├─┬ postcss-modules-extract-imports@1.2.0
│ │ └── postcss@6.0.22 deduped
│ ├─┬ postcss-modules-local-by-default@1.2.0
│ │ ├── css-selector-tokenizer@0.7.0 deduped
│ │ └── postcss@6.0.22 deduped
│ ├─┬ postcss-modules-scope@1.1.0
│ │ ├── css-selector-tokenizer@0.7.0 deduped
│ │ └── postcss@6.0.22 deduped
│ ├─┬ postcss-modules-values@1.3.0
│ │ ├── icss-replace-symbols@1.1.0
│ │ └── postcss@6.0.22 deduped
│ ├── postcss-value-parser@3.3.0
│ └── source-list-map@2.0.0
├── deep-copy@1.4.2
├── deep-extend@0.6.0
├─┬ depcheck@0.6.9
│ ├── babel-traverse@6.26.0 deduped
│ ├── babylon@6.18.0 deduped
│ ├── builtin-modules@1.1.1
│ ├── deprecate@1.0.0
│ ├── deps-regex@0.1.4
│ ├─┬ js-yaml@3.7.0
│ │ ├── argparse@1.0.10 deduped
│ │ └── esprima@2.7.3
│ ├── lodash@4.17.10 deduped
│ ├── minimatch@3.0.4 deduped
│ ├── require-package-name@2.0.1
│ ├── walkdir@0.0.11
│ └─┬ yargs@8.0.2
│   ├── camelcase@4.1.0
│   ├─┬ cliui@3.2.0
│   │ ├─┬ string-width@1.0.2
│   │ │ ├── code-point-at@1.1.0
│   │ │ ├─┬ is-fullwidth-code-point@1.0.0
│   │ │ │ └── number-is-nan@1.0.1 deduped
│   │ │ └── strip-ansi@3.0.1 deduped
│   │ ├── strip-ansi@3.0.1 deduped
│   │ └─┬ wrap-ansi@2.1.0
│   │   ├─┬ string-width@1.0.2
│   │   │ ├── code-point-at@1.1.0 deduped
│   │   │ ├── is-fullwidth-code-point@1.0.0 deduped
│   │   │ └── strip-ansi@3.0.1 deduped
│   │   └── strip-ansi@3.0.1 deduped
│   ├── decamelize@1.2.0 deduped
│   ├── get-caller-file@1.0.2
│   ├─┬ os-locale@2.1.0
│   │ ├─┬ execa@0.7.0
│   │ │ ├─┬ cross-spawn@5.1.0
│   │ │ │ ├── lru-cache@4.1.3 deduped
│   │ │ │ ├── shebang-command@1.2.0 deduped
│   │ │ │ └── which@1.3.1 deduped
│   │ │ ├── get-stream@3.0.0
│   │ │ ├── is-stream@1.1.0
│   │ │ ├─┬ npm-run-path@2.0.2
│   │ │ │ └── path-key@2.0.1 deduped
│   │ │ ├── p-finally@1.0.0
│   │ │ ├── signal-exit@3.0.2 deduped
│   │ │ └── strip-eof@1.0.0
│   │ ├─┬ lcid@1.0.0
│   │ │ └── invert-kv@1.0.0
│   │ └─┬ mem@1.1.0
│   │   └── mimic-fn@1.2.0
│   ├─┬ read-pkg-up@2.0.0
│   │ ├── find-up@2.1.0 deduped
│   │ └─┬ read-pkg@2.0.0
│   │   ├─┬ load-json-file@2.0.0
│   │   │ ├── graceful-fs@4.1.11 deduped
│   │   │ ├── parse-json@2.2.0 deduped
│   │   │ ├── pify@2.3.0 deduped
│   │   │ └── strip-bom@3.0.0
│   │   ├── normalize-package-data@2.4.0 deduped
│   │   └─┬ path-type@2.0.0
│   │     └── pify@2.3.0 deduped
│   ├── require-directory@2.1.1
│   ├── require-main-filename@1.0.1 deduped
│   ├── set-blocking@2.0.0
│   ├── string-width@2.1.1 deduped
│   ├── which-module@2.0.0
│   ├── y18n@3.2.1
│   └─┬ yargs-parser@7.0.0
│     └── camelcase@4.1.0 deduped
├─┬ eslint@4.19.1
│ ├─┬ ajv@5.5.2
│ │ ├── co@4.6.0
│ │ ├── fast-deep-equal@1.1.0
│ │ ├── fast-json-stable-stringify@2.0.0
│ │ └── json-schema-traverse@0.3.1
│ ├── babel-code-frame@6.26.0 deduped
│ ├─┬ chalk@2.4.1
│ │ ├─┬ ansi-styles@3.2.1
│ │ │ └─┬ color-convert@1.9.2
│ │ │   └── color-name@1.1.1
│ │ ├── escape-string-regexp@1.0.5 deduped
│ │ └── supports-color@5.4.0 deduped
│ ├─┬ concat-stream@1.6.2
│ │ ├── buffer-from@1.1.0
│ │ ├── inherits@2.0.3 deduped
│ │ ├─┬ readable-stream@2.3.6
│ │ │ ├── core-util-is@1.0.2
│ │ │ ├── inherits@2.0.3 deduped
│ │ │ ├── isarray@1.0.0
│ │ │ ├── process-nextick-args@2.0.0
│ │ │ ├── safe-buffer@5.1.2 deduped
│ │ │ ├── string_decoder@1.1.1 deduped
│ │ │ └── util-deprecate@1.0.2
│ │ └── typedarray@0.0.6
│ ├─┬ cross-spawn@5.1.0
│ │ ├── lru-cache@4.1.3 deduped
│ │ ├── shebang-command@1.2.0 deduped
│ │ └── which@1.3.1 deduped
│ ├─┬ debug@3.1.0
│ │ └── ms@2.0.0 deduped
│ ├─┬ doctrine@2.1.0
│ │ └── esutils@2.0.2 deduped
│ ├── eslint-scope@3.7.1 deduped
│ ├── eslint-visitor-keys@1.0.0 deduped
│ ├─┬ espree@3.5.4
│ │ ├── acorn@5.7.1 deduped
│ │ └─┬ acorn-jsx@3.0.1
│ │   └── acorn@3.3.0
│ ├─┬ esquery@1.0.1
│ │ └── estraverse@4.2.0 deduped
│ ├── esutils@2.0.2
│ ├─┬ file-entry-cache@2.0.0
│ │ ├─┬ flat-cache@1.3.0
│ │ │ ├── circular-json@0.3.3
│ │ │ ├─┬ del@2.2.2
│ │ │ │ ├─┬ globby@5.0.0
│ │ │ │ │ ├── array-union@1.0.2 deduped
│ │ │ │ │ ├── arrify@1.0.1 deduped
│ │ │ │ │ ├── glob@7.1.2 deduped
│ │ │ │ │ ├── object-assign@4.1.1 deduped
│ │ │ │ │ ├── pify@2.3.0 deduped
│ │ │ │ │ └── pinkie-promise@2.0.1 deduped
│ │ │ │ ├── is-path-cwd@1.0.0 deduped
│ │ │ │ ├── is-path-in-cwd@1.0.1 deduped
│ │ │ │ ├── object-assign@4.1.1 deduped
│ │ │ │ ├── pify@2.3.0 deduped
│ │ │ │ ├── pinkie-promise@2.0.1 deduped
│ │ │ │ └── rimraf@2.6.2 deduped
│ │ │ ├── graceful-fs@4.1.11 deduped
│ │ │ └─┬ write@0.2.1
│ │ │   └── mkdirp@0.5.1 deduped
│ │ └── object-assign@4.1.1 deduped
│ ├── functional-red-black-tree@1.0.1
│ ├── glob@7.1.2 deduped
│ ├── globals@11.6.0
│ ├── ignore@3.3.8
│ ├── imurmurhash@0.1.4
│ ├─┬ inquirer@3.3.0
│ │ ├── ansi-escapes@3.1.0
│ │ ├── chalk@2.4.1 deduped
│ │ ├─┬ cli-cursor@2.1.0
│ │ │ └─┬ restore-cursor@2.0.0
│ │ │   ├─┬ onetime@2.0.1
│ │ │   │ └── mimic-fn@1.2.0 deduped
│ │ │   └── signal-exit@3.0.2 deduped
│ │ ├── cli-width@2.2.0
│ │ ├─┬ external-editor@2.2.0
│ │ │ ├── chardet@0.4.2
│ │ │ ├─┬ iconv-lite@0.4.23
│ │ │ │ └── safer-buffer@2.1.2
│ │ │ └─┬ tmp@0.0.33
│ │ │   └── os-tmpdir@1.0.2 deduped
│ │ ├─┬ figures@2.0.0
│ │ │ └── escape-string-regexp@1.0.5 deduped
│ │ ├── lodash@4.17.10 deduped
│ │ ├── mute-stream@0.0.7
│ │ ├─┬ run-async@2.3.0
│ │ │ └── is-promise@2.1.0
│ │ ├── rx-lite@4.0.8
│ │ ├─┬ rx-lite-aggregates@4.0.8
│ │ │ └── rx-lite@4.0.8 deduped
│ │ ├── string-width@2.1.1 deduped
│ │ ├─┬ strip-ansi@4.0.0
│ │ │ └── ansi-regex@3.0.0
│ │ └── through@2.3.8
│ ├── is-resolvable@1.1.0
│ ├─┬ js-yaml@3.12.0
│ │ ├── argparse@1.0.10 deduped
│ │ └── esprima@4.0.0
│ ├── json-stable-stringify-without-jsonify@1.0.1
│ ├─┬ levn@0.3.0
│ │ ├── prelude-ls@1.1.2
│ │ └─┬ type-check@0.3.2
│ │   └── prelude-ls@1.1.2 deduped
│ ├── lodash@4.17.10 deduped
│ ├── minimatch@3.0.4 deduped
│ ├── mkdirp@0.5.1 deduped
│ ├── natural-compare@1.4.0
│ ├─┬ optionator@0.8.2
│ │ ├── deep-is@0.1.3
│ │ ├── fast-levenshtein@2.0.6
│ │ ├── levn@0.3.0 deduped
│ │ ├── prelude-ls@1.1.2 deduped
│ │ ├── type-check@0.3.2 deduped
│ │ └── wordwrap@1.0.0
│ ├── path-is-inside@1.0.2
│ ├── pluralize@7.0.0
│ ├── progress@2.0.0
│ ├── regexpp@1.1.0
│ ├─┬ require-uncached@1.0.3
│ │ ├─┬ caller-path@0.1.0
│ │ │ └── callsites@0.2.0
│ │ └── resolve-from@1.0.1
│ ├── semver@5.5.0 deduped
│ ├─┬ strip-ansi@4.0.0
│ │ └── ansi-regex@3.0.0
│ ├── strip-json-comments@2.0.1
│ ├─┬ table@4.0.2
│ │ ├── ajv@5.5.2 deduped
│ │ ├── ajv-keywords@2.1.1
│ │ ├── chalk@2.4.1 deduped
│ │ ├── lodash@4.17.10 deduped
│ │ ├─┬ slice-ansi@1.0.0
│ │ │ └── is-fullwidth-code-point@2.0.0
│ │ └── string-width@2.1.1 deduped
│ └── text-table@0.2.0
├─┬ eslint-config-prettier@2.9.0
│ └── get-stdin@5.0.1
├─┬ eslint-friendly-formatter@4.0.1
│ ├── chalk@2.4.1 deduped
│ ├── coalescy@1.0.0
│ ├── extend@3.0.1
│ ├── minimist@1.2.0
│ ├─┬ strip-ansi@4.0.0
│ │ └── ansi-regex@3.0.0
│ └── text-table@0.2.0 deduped
├─┬ eslint-loader@2.0.0
│ ├─┬ loader-fs-cache@1.0.1
│ │ ├─┬ find-cache-dir@0.1.1
│ │ │ ├── commondir@1.0.1 deduped
│ │ │ ├── mkdirp@0.5.1 deduped
│ │ │ └─┬ pkg-dir@1.0.0
│ │ │   └─┬ find-up@1.1.2
│ │ │     ├─┬ path-exists@2.1.0
│ │ │     │ └── pinkie-promise@2.0.1 deduped
│ │ │     └── pinkie-promise@2.0.1 deduped
│ │ └── mkdirp@0.5.1 deduped
│ ├── loader-utils@1.1.0 deduped
│ ├── object-assign@4.1.1 deduped
│ ├── object-hash@1.3.0
│ └── rimraf@2.6.2 deduped
├─┬ eslint-plugin-jsdoc@3.7.1
│ ├─┬ comment-parser@0.4.2
│ │ └── readable-stream@2.3.6 deduped
│ ├── jsdoctypeparser@2.0.0-alpha-8
│ └── lodash@4.17.10 deduped
├─┬ eslint-plugin-prettier@2.6.0
│ ├── fast-diff@1.1.2
│ └── jest-docblock@21.2.0
├─┬ eslint-plugin-vue@4.5.0
│ └─┬ vue-eslint-parser@2.0.3
│   ├── debug@3.1.0 deduped
│   ├── eslint-scope@3.7.1 deduped
│   ├── eslint-visitor-keys@1.0.0 deduped
│   ├── espree@3.5.4 deduped
│   ├── esquery@1.0.1 deduped
│   └── lodash@4.17.10 deduped
├─┬ eslint-watch@3.1.5
│ ├─┬ babel-polyfill@6.26.0
│ │ ├── babel-runtime@6.26.0 deduped
│ │ ├── core-js@2.5.7 deduped
│ │ └── regenerator-runtime@0.10.5
│ ├── bluebird@3.5.1
│ ├── chalk@2.4.1 deduped
│ ├─┬ chokidar@2.0.4
│ │ ├─┬ anymatch@2.0.0
│ │ │ ├── micromatch@3.1.10 deduped
│ │ │ └── normalize-path@2.1.1 deduped
│ │ ├── async-each@1.0.1
│ │ ├─┬ braces@2.3.2
│ │ │ ├── arr-flatten@1.1.0
│ │ │ ├── array-unique@0.3.2 deduped
│ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ ├─┬ fill-range@4.0.0
│ │ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ ├─┬ is-number@3.0.0
│ │ │ │ │ └─┬ kind-of@3.2.2
│ │ │ │ │   └── is-buffer@1.1.6 deduped
│ │ │ │ ├── repeat-string@1.6.1 deduped
│ │ │ │ └─┬ to-regex-range@2.1.1
│ │ │ │   ├── is-number@3.0.0 deduped
│ │ │ │   └── repeat-string@1.6.1 deduped
│ │ │ ├── isobject@3.0.1
│ │ │ ├── repeat-element@1.1.2
│ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ ├─┬ snapdragon-node@2.1.1
│ │ │ │ ├─┬ define-property@1.0.0
│ │ │ │ │ └─┬ is-descriptor@1.0.2
│ │ │ │ │   ├─┬ is-accessor-descriptor@1.0.0
│ │ │ │ │   │ └── kind-of@6.0.2 deduped
│ │ │ │ │   ├─┬ is-data-descriptor@1.0.0
│ │ │ │ │   │ └── kind-of@6.0.2 deduped
│ │ │ │ │   └── kind-of@6.0.2 deduped
│ │ │ │ ├── isobject@3.0.1 deduped
│ │ │ │ └─┬ snapdragon-util@3.0.1
│ │ │ │   └─┬ kind-of@3.2.2
│ │ │ │     └── is-buffer@1.1.6 deduped
│ │ │ ├─┬ split-string@3.1.0
│ │ │ │ └── extend-shallow@3.0.2 deduped
│ │ │ └── to-regex@3.0.2 deduped
│ │ ├─┬ fsevents@1.2.4
│ │ │ ├── nan@2.10.0 deduped
│ │ │ └─┬ node-pre-gyp@0.10.0
│ │ │   ├── detect-libc@1.0.3
│ │ │   ├─┬ mkdirp@0.5.1
│ │ │   │ └── minimist@0.0.8
│ │ │   ├─┬ needle@2.2.0
│ │ │   │ ├─┬ debug@2.6.9
│ │ │   │ │ └── ms@2.0.0
│ │ │   │ ├─┬ iconv-lite@0.4.21
│ │ │   │ │ └── safer-buffer@2.1.2
│ │ │   │ └── sax@1.2.4
│ │ │   ├─┬ nopt@4.0.1
│ │ │   │ ├── abbrev@1.1.1
│ │ │   │ └─┬ osenv@0.1.5
│ │ │   │   ├── os-homedir@1.0.2
│ │ │   │   └── os-tmpdir@1.0.2
│ │ │   ├─┬ npm-packlist@1.1.10
│ │ │   │ ├─┬ ignore-walk@3.0.1
│ │ │   │ │ └─┬ minimatch@3.0.4
│ │ │   │ │   └─┬ brace-expansion@1.1.11
│ │ │   │ │     ├── balanced-match@1.0.0
│ │ │   │ │     └── concat-map@0.0.1
│ │ │   │ └── npm-bundled@1.0.3
│ │ │   ├─┬ npmlog@4.1.2
│ │ │   │ ├─┬ are-we-there-yet@1.1.4
│ │ │   │ │ ├── delegates@1.0.0
│ │ │   │ │ └─┬ readable-stream@2.3.6
│ │ │   │ │   ├── core-util-is@1.0.2
│ │ │   │ │   ├── inherits@2.0.3 deduped
│ │ │   │ │   ├── isarray@1.0.0
│ │ │   │ │   ├── process-nextick-args@2.0.0
│ │ │   │ │   ├── safe-buffer@5.1.1 deduped
│ │ │   │ │   ├─┬ string_decoder@1.1.1
│ │ │   │ │   │ └── safe-buffer@5.1.1 deduped
│ │ │   │ │   └── util-deprecate@1.0.2
│ │ │   │ ├── console-control-strings@1.1.0
│ │ │   │ ├─┬ gauge@2.7.4
│ │ │   │ │ ├── aproba@1.2.0
│ │ │   │ │ ├── console-control-strings@1.1.0 deduped
│ │ │   │ │ ├── has-unicode@2.0.1
│ │ │   │ │ ├── object-assign@4.1.1
│ │ │   │ │ ├── signal-exit@3.0.2
│ │ │   │ │ ├─┬ string-width@1.0.2
│ │ │   │ │ │ ├── code-point-at@1.1.0
│ │ │   │ │ │ ├─┬ is-fullwidth-code-point@1.0.0
│ │ │   │ │ │ │ └── number-is-nan@1.0.1
│ │ │   │ │ │ └── strip-ansi@3.0.1 deduped
│ │ │   │ │ ├─┬ strip-ansi@3.0.1
│ │ │   │ │ │ └── ansi-regex@2.1.1
│ │ │   │ │ └─┬ wide-align@1.1.2
│ │ │   │ │   └── string-width@1.0.2 deduped
│ │ │   │ └── set-blocking@2.0.0
│ │ │   ├─┬ rc@1.2.7
│ │ │   │ ├── deep-extend@0.5.1
│ │ │   │ ├── ini@1.3.5
│ │ │   │ ├── minimist@1.2.0
│ │ │   │ └── strip-json-comments@2.0.1
│ │ │   ├─┬ rimraf@2.6.2
│ │ │   │ └─┬ glob@7.1.2
│ │ │   │   ├── fs.realpath@1.0.0
│ │ │   │   ├─┬ inflight@1.0.6
│ │ │   │   │ ├── once@1.4.0 deduped
│ │ │   │   │ └── wrappy@1.0.2
│ │ │   │   ├── inherits@2.0.3
│ │ │   │   ├── minimatch@3.0.4 deduped
│ │ │   │   ├─┬ once@1.4.0
│ │ │   │   │ └── wrappy@1.0.2 deduped
│ │ │   │   └── path-is-absolute@1.0.1
│ │ │   ├── semver@5.5.0
│ │ │   └─┬ tar@4.4.1
│ │ │     ├── chownr@1.0.1
│ │ │     ├─┬ fs-minipass@1.2.5
│ │ │     │ └── minipass@2.2.4 deduped
│ │ │     ├─┬ minipass@2.2.4
│ │ │     │ ├── safe-buffer@5.1.1 deduped
│ │ │     │ └── yallist@3.0.2 deduped
│ │ │     ├─┬ minizlib@1.1.0
│ │ │     │ └── minipass@2.2.4 deduped
│ │ │     ├── mkdirp@0.5.1 deduped
│ │ │     ├── safe-buffer@5.1.1
│ │ │     └── yallist@3.0.2
│ │ ├── glob-parent@3.1.0 deduped
│ │ ├── inherits@2.0.3 deduped
│ │ ├─┬ is-binary-path@1.0.1
│ │ │ └── binary-extensions@1.11.0
│ │ ├── is-glob@4.0.0 deduped
│ │ ├── lodash.debounce@4.0.8
│ │ ├── normalize-path@2.1.1 deduped
│ │ ├── path-is-absolute@1.0.1 deduped
│ │ ├─┬ readdirp@2.1.0
│ │ │ ├── graceful-fs@4.1.11 deduped
│ │ │ ├── minimatch@3.0.4 deduped
│ │ │ ├── readable-stream@2.3.6 deduped
│ │ │ └── set-immediate-shim@1.0.1
│ │ └── upath@1.1.0
│ ├── debug@3.1.0 deduped
│ ├── keypress@0.2.1
│ ├── lodash@4.17.10 deduped
│ ├── optionator@0.8.2 deduped
│ ├─┬ source-map-support@0.5.6
│ │ ├── buffer-from@1.1.0 deduped
│ │ └── source-map@0.6.1 deduped
│ ├─┬ strip-ansi@4.0.0
│ │ └── ansi-regex@3.0.0
│ ├── text-table@0.2.0 deduped
│ └── unicons@0.0.3
├─┬ extract-text-webpack-plugin@3.0.2
│ ├─┬ async@2.6.1
│ │ └── lodash@4.17.10 deduped
│ ├── loader-utils@1.1.0 deduped
│ ├─┬ schema-utils@0.3.0
│ │ └── ajv@5.5.2 deduped
│ └── webpack-sources@1.1.0 deduped
├─┬ file-loader@1.1.11
│ ├── loader-utils@1.1.0 deduped
│ └─┬ schema-utils@0.4.5
│   ├─┬ ajv@6.5.1
│   │ ├── fast-deep-equal@2.0.1
│   │ ├── fast-json-stable-stringify@2.0.0 deduped
│   │ ├── json-schema-traverse@0.4.1
│   │ └── uri-js@4.2.2 deduped
│   └── ajv-keywords@3.2.0
├─┬ friendly-errors-webpack-plugin@1.7.0
│ ├─┬ chalk@1.1.3
│ │ ├── ansi-styles@2.2.1
│ │ ├── escape-string-regexp@1.0.5 deduped
│ │ ├─┬ has-ansi@2.0.0
│ │ │ └── ansi-regex@2.1.1 deduped
│ │ ├── strip-ansi@3.0.1 deduped
│ │ └── supports-color@2.0.0
│ ├─┬ error-stack-parser@2.0.2
│ │ └── stackframe@1.0.4
│ └─┬ string-width@2.1.1
│   ├── is-fullwidth-code-point@2.0.0
│   └─┬ strip-ansi@4.0.0
│     └── ansi-regex@3.0.0
├─┬ glob@7.1.2
│ ├── fs.realpath@1.0.0
│ ├─┬ inflight@1.0.6
│ │ ├── once@1.4.0 deduped
│ │ └── wrappy@1.0.2
│ ├── inherits@2.0.3
│ ├── minimatch@3.0.4 deduped
│ ├─┬ once@1.4.0
│ │ └── wrappy@1.0.2 deduped
│ └── path-is-absolute@1.0.1 deduped
├─┬ html-webpack-plugin@3.2.0
│ ├─┬ html-minifier@3.5.16
│ │ ├─┬ camel-case@3.0.0
│ │ │ ├─┬ no-case@2.3.2
│ │ │ │ └── lower-case@1.1.4
│ │ │ └── upper-case@1.1.3
│ │ ├─┬ clean-css@4.1.11
│ │ │ └── source-map@0.5.7
│ │ ├── commander@2.15.1 deduped
│ │ ├── he@1.1.1 deduped
│ │ ├─┬ param-case@2.1.1
│ │ │ └── no-case@2.3.2 deduped
│ │ ├── relateurl@0.2.7
│ │ └─┬ uglify-js@3.3.28
│ │   ├── commander@2.15.1 deduped
│ │   └── source-map@0.6.1 deduped
│ ├─┬ loader-utils@0.2.17
│ │ ├── big.js@3.2.0 deduped
│ │ ├── emojis-list@2.1.0 deduped
│ │ ├── json5@0.5.1 deduped
│ │ └── object-assign@4.1.1 deduped
│ ├── lodash@4.17.10 deduped
│ ├─┬ pretty-error@2.1.1
│ │ ├─┬ renderkid@2.0.1
│ │ │ ├─┬ css-select@1.2.0
│ │ │ │ ├── boolbase@1.0.0
│ │ │ │ ├── css-what@2.1.0
│ │ │ │ ├── domutils@1.5.1 deduped
│ │ │ │ └─┬ nth-check@1.0.1
│ │ │ │   └── boolbase@1.0.0 deduped
│ │ │ ├─┬ dom-converter@0.1.4
│ │ │ │ └── utila@0.3.3
│ │ │ ├─┬ htmlparser2@3.3.0
│ │ │ │ ├── domelementtype@1.3.0 deduped
│ │ │ │ ├─┬ domhandler@2.1.0
│ │ │ │ │ └── domelementtype@1.3.0 deduped
│ │ │ │ ├─┬ domutils@1.1.6
│ │ │ │ │ └── domelementtype@1.3.0 deduped
│ │ │ │ └─┬ readable-stream@1.0.34
│ │ │ │   ├── core-util-is@1.0.2 deduped
│ │ │ │   ├── inherits@2.0.3 deduped
│ │ │ │   ├── isarray@0.0.1 deduped
│ │ │ │   └── string_decoder@0.10.31
│ │ │ ├── strip-ansi@3.0.1 deduped
│ │ │ └── utila@0.3.3
│ │ └── utila@0.4.0
│ ├── tapable@1.0.0
│ ├── toposort@1.0.7
│ └─┬ util.promisify@1.0.0
│   ├─┬ define-properties@1.1.2
│   │ ├── foreach@2.0.5
│   │ └── object-keys@1.0.12
│   └─┬ object.getownpropertydescriptors@2.0.3
│     ├── define-properties@1.1.2 deduped
│     └── es-abstract@1.12.0 deduped
├─┬ jsdoc@3.5.5
│ ├── babylon@7.0.0-beta.19
│ ├── bluebird@3.5.1 deduped
│ ├─┬ catharsis@0.8.9
│ │ └─┬ underscore-contrib@0.3.0
│ │   └── underscore@1.6.0
│ ├── escape-string-regexp@1.0.5
│ ├─┬ js2xmlparser@3.0.0
│ │ └── xmlcreate@1.0.2
│ ├─┬ klaw@2.0.0
│ │ └── graceful-fs@4.1.11 deduped
│ ├── marked@0.3.19
│ ├── mkdirp@0.5.1 deduped
│ ├─┬ requizzle@0.2.1
│ │ └── underscore@1.6.0
│ ├── strip-json-comments@2.0.1 deduped
│ ├── taffydb@2.6.2
│ └── underscore@1.8.3
├─┬ jsdoc-to-markdown@4.0.1
│ ├─┬ array-back@2.0.0
│ │ └── typical@2.6.1
│ ├─┬ command-line-tool@0.8.0
│ │ ├─┬ ansi-escape-sequences@4.0.0
│ │ │ └── array-back@2.0.0 deduped
│ │ ├── array-back@2.0.0 deduped
│ │ ├─┬ command-line-args@5.0.2
│ │ │ ├─┬ argv-tools@0.1.1
│ │ │ │ ├── array-back@2.0.0 deduped
│ │ │ │ └── find-replace@2.0.1 deduped
│ │ │ ├── array-back@2.0.0 deduped
│ │ │ ├─┬ find-replace@2.0.1
│ │ │ │ ├── array-back@2.0.0 deduped
│ │ │ │ └── test-value@3.0.0 deduped
│ │ │ ├── lodash.camelcase@4.3.0 deduped
│ │ │ └── typical@2.6.1 deduped
│ │ ├─┬ command-line-usage@4.1.0
│ │ │ ├── ansi-escape-sequences@4.0.0 deduped
│ │ │ ├── array-back@2.0.0 deduped
│ │ │ ├─┬ table-layout@0.4.4
│ │ │ │ ├── array-back@2.0.0 deduped
│ │ │ │ ├── deep-extend@0.6.0 deduped
│ │ │ │ ├── lodash.padend@4.6.1
│ │ │ │ ├── typical@2.6.1 deduped
│ │ │ │ └─┬ wordwrapjs@3.0.0
│ │ │ │   ├── reduce-flatten@1.0.1 deduped
│ │ │ │   └── typical@2.6.1 deduped
│ │ │ └── typical@2.6.1 deduped
│ │ └── typical@2.6.1 deduped
│ ├─┬ config-master@3.1.0
│ │ └── walk-back@2.0.1
│ ├─┬ dmd@3.0.12
│ │ ├── array-back@2.0.0 deduped
│ │ ├─┬ cache-point@0.4.1
│ │ │ ├── array-back@2.0.0 deduped
│ │ │ ├── fs-then-native@2.0.0 deduped
│ │ │ └── mkdirp2@1.0.4
│ │ ├── common-sequence@1.0.2
│ │ ├─┬ file-set@2.0.0
│ │ │ ├── array-back@2.0.0 deduped
│ │ │ └── glob@7.1.2 deduped
│ │ ├─┬ handlebars@4.0.11
│ │ │ ├── async@1.5.2
│ │ │ ├─┬ optimist@0.6.1
│ │ │ │ ├── minimist@0.0.8 deduped
│ │ │ │ └── wordwrap@0.0.3
│ │ │ ├─┬ source-map@0.4.4
│ │ │ │ └── amdefine@1.0.1
│ │ │ └─┬ uglify-js@2.8.29
│ │ │   ├── source-map@0.5.7
│ │ │   ├── uglify-to-browserify@1.0.2
│ │ │   └─┬ yargs@3.10.0
│ │ │     ├── camelcase@1.2.1
│ │ │     ├─┬ cliui@2.1.0
│ │ │     │ ├─┬ center-align@0.1.3
│ │ │     │ │ ├─┬ align-text@0.1.4
│ │ │     │ │ │ ├─┬ kind-of@3.2.2
│ │ │     │ │ │ │ └── is-buffer@1.1.6 deduped
│ │ │     │ │ │ ├── longest@1.0.1
│ │ │     │ │ │ └── repeat-string@1.6.1 deduped
│ │ │     │ │ └── lazy-cache@1.0.4
│ │ │     │ ├─┬ right-align@0.1.3
│ │ │     │ │ └── align-text@0.1.4 deduped
│ │ │     │ └── wordwrap@0.0.2
│ │ │     ├── decamelize@1.2.0 deduped
│ │ │     └── window-size@0.1.0
│ │ ├── marked@0.3.19 deduped
│ │ ├── object-get@2.1.0
│ │ ├── reduce-flatten@1.0.1
│ │ ├── reduce-unique@1.0.0
│ │ ├─┬ reduce-without@1.0.1
│ │ │ └─┬ test-value@2.1.0
│ │ │   ├─┬ array-back@1.0.4
│ │ │   │ └── typical@2.6.1 deduped
│ │ │   └── typical@2.6.1 deduped
│ │ ├─┬ test-value@3.0.0
│ │ │ ├── array-back@2.0.0 deduped
│ │ │ └── typical@2.6.1 deduped
│ │ └── walk-back@3.0.0 deduped
│ ├─┬ jsdoc-api@4.0.3
│ │ ├── array-back@2.0.0 deduped
│ │ ├── cache-point@0.4.1 deduped
│ │ ├─┬ collect-all@1.0.3
│ │ │ ├─┬ stream-connect@1.0.2
│ │ │ │ └─┬ array-back@1.0.4
│ │ │ │   └── typical@2.6.1 deduped
│ │ │ └── stream-via@1.0.4
│ │ ├── file-set@2.0.0 deduped
│ │ ├── fs-then-native@2.0.0
│ │ ├── jsdoc@3.5.5 deduped
│ │ ├── object-to-spawn-args@1.1.1
│ │ ├── temp-path@1.0.0
│ │ └── walk-back@3.0.0 deduped
│ ├─┬ jsdoc-parse@3.0.1
│ │ ├── array-back@2.0.0 deduped
│ │ ├── lodash.omit@4.5.0
│ │ ├── lodash.pick@4.4.0
│ │ ├─┬ reduce-extract@1.0.0
│ │ │ └─┬ test-value@1.1.0
│ │ │   ├─┬ array-back@1.0.4
│ │ │   │ └── typical@2.6.1 deduped
│ │ │   └── typical@2.6.1 deduped
│ │ ├─┬ sort-array@2.0.0
│ │ │ ├─┬ array-back@1.0.4
│ │ │ │ └── typical@2.6.1 deduped
│ │ │ ├── object-get@2.1.0 deduped
│ │ │ └── typical@2.6.1 deduped
│ │ └── test-value@3.0.0 deduped
│ └── walk-back@3.0.0
├─┬ jsdom@11.11.0
│ ├── abab@1.0.4
│ ├── acorn@5.7.1
│ ├─┬ acorn-globals@4.1.0
│ │ └── acorn@5.7.1 deduped
│ ├── array-equal@1.0.0
│ ├── cssom@0.3.2
│ ├─┬ cssstyle@0.3.1
│ │ └── cssom@0.3.2 deduped
│ ├─┬ data-urls@1.0.0
│ │ ├── abab@1.0.4 deduped
│ │ ├── whatwg-mimetype@2.1.0 deduped
│ │ └── whatwg-url@6.5.0 deduped
│ ├─┬ domexception@1.0.1
│ │ └── webidl-conversions@4.0.2 deduped
│ ├─┬ escodegen@1.10.0
│ │ ├── esprima@3.1.3
│ │ ├── estraverse@4.2.0 deduped
│ │ ├── esutils@2.0.2 deduped
│ │ ├── optionator@0.8.2 deduped
│ │ └── source-map@0.6.1 deduped
│ ├─┬ html-encoding-sniffer@1.0.2
│ │ └── whatwg-encoding@1.0.3 deduped
│ ├── left-pad@1.3.0
│ ├── nwsapi@2.0.4
│ ├── parse5@4.0.0
│ ├── pn@1.1.0
│ ├─┬ request@2.87.0
│ │ ├── aws-sign2@0.7.0
│ │ ├── aws4@1.7.0
│ │ ├── caseless@0.12.0
│ │ ├─┬ combined-stream@1.0.6
│ │ │ └── delayed-stream@1.0.0
│ │ ├── extend@3.0.1 deduped
│ │ ├── forever-agent@0.6.1
│ │ ├─┬ form-data@2.3.2
│ │ │ ├── asynckit@0.4.0
│ │ │ ├── combined-stream@1.0.6 deduped
│ │ │ └── mime-types@2.1.18 deduped
│ │ ├─┬ har-validator@5.0.3
│ │ │ ├── ajv@5.5.2 deduped
│ │ │ └── har-schema@2.0.0
│ │ ├─┬ http-signature@1.2.0
│ │ │ ├── assert-plus@1.0.0
│ │ │ ├─┬ jsprim@1.4.1
│ │ │ │ ├── assert-plus@1.0.0 deduped
│ │ │ │ ├── extsprintf@1.3.0
│ │ │ │ ├── json-schema@0.2.3
│ │ │ │ └─┬ verror@1.10.0
│ │ │ │   ├── assert-plus@1.0.0 deduped
│ │ │ │   ├── core-util-is@1.0.2 deduped
│ │ │ │   └── extsprintf@1.3.0 deduped
│ │ │ └─┬ sshpk@1.14.2
│ │ │   ├── asn1@0.2.3
│ │ │   ├── assert-plus@1.0.0 deduped
│ │ │   ├─┬ bcrypt-pbkdf@1.0.1
│ │ │   │ └── tweetnacl@0.14.5 deduped
│ │ │   ├─┬ dashdash@1.14.1
│ │ │   │ └── assert-plus@1.0.0 deduped
│ │ │   ├─┬ ecc-jsbn@0.1.1
│ │ │   │ └── jsbn@0.1.1 deduped
│ │ │   ├─┬ getpass@0.1.7
│ │ │   │ └── assert-plus@1.0.0 deduped
│ │ │   ├── jsbn@0.1.1
│ │ │   ├── safer-buffer@2.1.2 deduped
│ │ │   └── tweetnacl@0.14.5
│ │ ├── is-typedarray@1.0.0
│ │ ├── isstream@0.1.2
│ │ ├── json-stringify-safe@5.0.1
│ │ ├─┬ mime-types@2.1.18
│ │ │ └── mime-db@1.33.0
│ │ ├── oauth-sign@0.8.2
│ │ ├── performance-now@2.1.0
│ │ ├── qs@6.5.2
│ │ ├── safe-buffer@5.1.2
│ │ ├─┬ tough-cookie@2.3.4
│ │ │ └── punycode@1.4.1
│ │ ├─┬ tunnel-agent@0.6.0
│ │ │ └── safe-buffer@5.1.2 deduped
│ │ └── uuid@3.2.1
│ ├─┬ request-promise-native@1.0.5
│ │ ├─┬ request-promise-core@1.1.1
│ │ │ └── lodash@4.17.10 deduped
│ │ ├── stealthy-require@1.1.1
│ │ └── tough-cookie@2.4.2 deduped
│ ├── sax@1.2.4
│ ├── symbol-tree@3.2.2
│ ├─┬ tough-cookie@2.4.2
│ │ ├── psl@1.1.28
│ │ └── punycode@1.4.1
│ ├─┬ w3c-hr-time@1.0.1
│ │ └── browser-process-hrtime@0.1.2
│ ├── webidl-conversions@4.0.2
│ ├─┬ whatwg-encoding@1.0.3
│ │ └── iconv-lite@0.4.19
│ ├── whatwg-mimetype@2.1.0
│ ├─┬ whatwg-url@6.5.0
│ │ ├── lodash.sortby@4.7.0
│ │ ├─┬ tr46@1.0.1
│ │ │ └── punycode@2.1.1
│ │ └── webidl-conversions@4.0.2 deduped
│ ├─┬ ws@4.1.0
│ │ ├── async-limiter@1.0.0
│ │ └── safe-buffer@5.1.2 deduped
│ └── xml-name-validator@3.0.0
├── jsdom-global@3.0.2
├── lodash@4.17.10
├─┬ mkdirp@0.5.1
│ └── minimist@0.0.8
├─┬ mocha@5.2.0
│ ├── browser-stdout@1.3.1
│ ├── commander@2.15.1
│ ├── debug@3.1.0 deduped
│ ├── diff@3.5.0
│ ├── escape-string-regexp@1.0.5 deduped
│ ├── glob@7.1.2 deduped
│ ├── growl@1.10.5
│ ├── he@1.1.1
│ ├── minimatch@3.0.4 deduped
│ ├── mkdirp@0.5.1 deduped
│ └─┬ supports-color@5.4.0
│   └── has-flag@3.0.0
├─┬ mocha-junit-reporter@1.17.0
│ ├─┬ debug@2.6.9
│ │ └── ms@2.0.0 deduped
│ ├─┬ md5@2.2.1
│ │ ├── charenc@0.0.2
│ │ ├── crypt@0.0.2
│ │ └── is-buffer@1.1.6 deduped
│ ├── mkdirp@0.5.1 deduped
│ ├─┬ strip-ansi@4.0.0
│ │ └── ansi-regex@3.0.0
│ └── xml@1.0.1
├─┬ mocha-webpack@2.0.0-beta.0
│ ├── babel-runtime@6.26.0 deduped
│ ├── chalk@2.4.1 deduped
│ ├── chokidar@2.0.4 deduped
│ ├─┬ glob-parent@3.1.0
│ │ ├─┬ is-glob@3.1.0
│ │ │ └── is-extglob@2.1.1 deduped
│ │ └── path-dirname@1.0.2
│ ├── globby@7.1.1 deduped
│ ├── interpret@1.1.0
│ ├── is-glob@4.0.0 deduped
│ ├── loader-utils@1.1.0 deduped
│ ├── lodash@4.17.10 deduped
│ ├─┬ memory-fs@0.4.1
│ │ ├─┬ errno@0.1.7
│ │ │ └── prr@1.0.1
│ │ └── readable-stream@2.3.6 deduped
│ ├── nodent-runtime@3.2.1
│ ├─┬ normalize-path@2.1.1
│ │ └── remove-trailing-separator@1.1.0
│ ├── progress@2.0.0 deduped
│ ├─┬ source-map-support@0.5.6
│ │ ├── buffer-from@1.1.0 deduped
│ │ └── source-map@0.6.1 deduped
│ ├─┬ strip-ansi@4.0.0
│ │ └── ansi-regex@3.0.0
│ ├── toposort@1.0.7 deduped
│ └─┬ yargs@11.0.0
│   ├─┬ cliui@4.1.0
│   │ ├── string-width@2.1.1 deduped
│   │ ├── strip-ansi@4.0.0 deduped
│   │ └── wrap-ansi@2.1.0 deduped
│   ├── decamelize@1.2.0 deduped
│   ├── find-up@2.1.0 deduped
│   ├── get-caller-file@1.0.2 deduped
│   ├── os-locale@2.1.0 deduped
│   ├── require-directory@2.1.1 deduped
│   ├── require-main-filename@1.0.1 deduped
│   ├── set-blocking@2.0.0 deduped
│   ├── string-width@2.1.1 deduped
│   ├── which-module@2.0.0 deduped
│   ├── y18n@3.2.1
│   └─┬ yargs-parser@9.0.2
│     └── camelcase@4.1.0 deduped
├── moment@2.22.2
├── moxios@0.4.0
├─┬ node-notifier@5.2.1
│ ├── growly@1.3.0
│ ├── semver@5.5.0 deduped
│ ├── shellwords@0.1.1
│ └─┬ which@1.3.1
│   └── isexe@2.0.0
├─┬ node-sass@4.9.0
│ ├── async-foreach@0.1.3
│ ├─┬ chalk@1.1.3
│ │ ├── ansi-styles@2.2.1
│ │ ├── escape-string-regexp@1.0.5 deduped
│ │ ├── has-ansi@2.0.0 deduped
│ │ ├── strip-ansi@3.0.1 deduped
│ │ └── supports-color@2.0.0
│ ├─┬ cross-spawn@3.0.1
│ │ ├── lru-cache@4.1.3 deduped
│ │ └── which@1.3.1 deduped
│ ├─┬ gaze@1.1.3
│ │ └─┬ globule@1.2.1
│ │   ├── glob@7.1.2 deduped
│ │   ├── lodash@4.17.10 deduped
│ │   └── minimatch@3.0.4 deduped
│ ├── get-stdin@4.0.1
│ ├── glob@7.1.2 deduped
│ ├── in-publish@2.0.0
│ ├── lodash.assign@4.2.0
│ ├── lodash.clonedeep@4.5.0
│ ├── lodash.mergewith@4.6.1
│ ├─┬ meow@3.7.0
│ │ ├─┬ camelcase-keys@2.1.0
│ │ │ ├── camelcase@2.1.1
│ │ │ └── map-obj@1.0.1 deduped
│ │ ├── decamelize@1.2.0 deduped
│ │ ├─┬ loud-rejection@1.6.0
│ │ │ ├─┬ currently-unhandled@0.4.1
│ │ │ │ └── array-find-index@1.0.2
│ │ │ └── signal-exit@3.0.2 deduped
│ │ ├── map-obj@1.0.1
│ │ ├── minimist@1.2.0
│ │ ├─┬ normalize-package-data@2.4.0
│ │ │ ├── hosted-git-info@2.6.0
│ │ │ ├─┬ is-builtin-module@1.0.0
│ │ │ │ └── builtin-modules@1.1.1 deduped
│ │ │ ├── semver@5.5.0 deduped
│ │ │ └─┬ validate-npm-package-license@3.0.3
│ │ │   ├─┬ spdx-correct@3.0.0
│ │ │   │ ├── spdx-expression-parse@3.0.0 deduped
│ │ │   │ └── spdx-license-ids@3.0.0
│ │ │   └─┬ spdx-expression-parse@3.0.0
│ │ │     ├── spdx-exceptions@2.1.0
│ │ │     └── spdx-license-ids@3.0.0 deduped
│ │ ├── object-assign@4.1.1 deduped
│ │ ├── read-pkg-up@1.0.1 deduped
│ │ ├─┬ redent@1.0.0
│ │ │ ├─┬ indent-string@2.1.0
│ │ │ │ └── repeating@2.0.1 deduped
│ │ │ └─┬ strip-indent@1.0.1
│ │ │   └── get-stdin@4.0.1
│ │ └── trim-newlines@1.0.0
│ ├── mkdirp@0.5.1 deduped
│ ├── nan@2.10.0
│ ├─┬ node-gyp@3.7.0
│ │ ├─┬ fstream@1.0.11
│ │ │ ├── graceful-fs@4.1.11 deduped
│ │ │ ├── inherits@2.0.3 deduped
│ │ │ ├── mkdirp@0.5.1 deduped
│ │ │ └── rimraf@2.6.2 deduped
│ │ ├── glob@7.1.2 deduped
│ │ ├── graceful-fs@4.1.11 deduped
│ │ ├── mkdirp@0.5.1 deduped
│ │ ├─┬ nopt@3.0.6
│ │ │ └── abbrev@1.1.1
│ │ ├── npmlog@4.1.2 deduped
│ │ ├─┬ osenv@0.1.5
│ │ │ ├── os-homedir@1.0.2 deduped
│ │ │ └── os-tmpdir@1.0.2 deduped
│ │ ├─┬ request@2.81.0
│ │ │ ├── aws-sign2@0.6.0
│ │ │ ├── aws4@1.7.0 deduped
│ │ │ ├── caseless@0.12.0 deduped
│ │ │ ├── combined-stream@1.0.6 deduped
│ │ │ ├── extend@3.0.1 deduped
│ │ │ ├── forever-agent@0.6.1 deduped
│ │ │ ├─┬ form-data@2.1.4
│ │ │ │ ├── asynckit@0.4.0 deduped
│ │ │ │ ├── combined-stream@1.0.6 deduped
│ │ │ │ └── mime-types@2.1.18 deduped
│ │ │ ├─┬ har-validator@4.2.1
│ │ │ │ ├─┬ ajv@4.11.8
│ │ │ │ │ ├── co@4.6.0 deduped
│ │ │ │ │ └─┬ json-stable-stringify@1.0.1
│ │ │ │ │   └── jsonify@0.0.0 deduped
│ │ │ │ └── har-schema@1.0.5
│ │ │ ├── hawk@3.1.3 deduped
│ │ │ ├─┬ http-signature@1.1.1
│ │ │ │ ├── assert-plus@0.2.0
│ │ │ │ ├── jsprim@1.4.1 deduped
│ │ │ │ └── sshpk@1.14.2 deduped
│ │ │ ├── is-typedarray@1.0.0 deduped
│ │ │ ├── isstream@0.1.2 deduped
│ │ │ ├── json-stringify-safe@5.0.1 deduped
│ │ │ ├── mime-types@2.1.18 deduped
│ │ │ ├── oauth-sign@0.8.2 deduped
│ │ │ ├── performance-now@0.2.0
│ │ │ ├── qs@6.4.0
│ │ │ ├── safe-buffer@5.1.2 deduped
│ │ │ ├── stringstream@0.0.6 deduped
│ │ │ ├─┬ tough-cookie@2.3.4
│ │ │ │ └── punycode@1.4.1
│ │ │ ├── tunnel-agent@0.6.0 deduped
│ │ │ └── uuid@3.2.1 deduped
│ │ ├── rimraf@2.6.2 deduped
│ │ ├── semver@5.3.0
│ │ ├─┬ tar@2.2.1
│ │ │ ├─┬ block-stream@0.0.9
│ │ │ │ └── inherits@2.0.3 deduped
│ │ │ ├── fstream@1.0.11 deduped
│ │ │ └── inherits@2.0.3 deduped
│ │ └── which@1.3.1 deduped
│ ├─┬ npmlog@4.1.2
│ │ ├─┬ are-we-there-yet@1.1.5
│ │ │ ├── delegates@1.0.0
│ │ │ └── readable-stream@2.3.6 deduped
│ │ ├── console-control-strings@1.1.0
│ │ ├─┬ gauge@2.7.4
│ │ │ ├── aproba@1.2.0 deduped
│ │ │ ├── console-control-strings@1.1.0 deduped
│ │ │ ├── has-unicode@2.0.1
│ │ │ ├── object-assign@4.1.1 deduped
│ │ │ ├── signal-exit@3.0.2 deduped
│ │ │ ├─┬ string-width@1.0.2
│ │ │ │ ├── code-point-at@1.1.0 deduped
│ │ │ │ ├── is-fullwidth-code-point@1.0.0 deduped
│ │ │ │ └── strip-ansi@3.0.1 deduped
│ │ │ ├── strip-ansi@3.0.1 deduped
│ │ │ └─┬ wide-align@1.1.3
│ │ │   └── string-width@2.1.1 deduped
│ │ └── set-blocking@2.0.0 deduped
│ ├─┬ request@2.79.0
│ │ ├── aws-sign2@0.6.0
│ │ ├── aws4@1.7.0 deduped
│ │ ├── caseless@0.11.0
│ │ ├── combined-stream@1.0.6 deduped
│ │ ├── extend@3.0.1 deduped
│ │ ├── forever-agent@0.6.1 deduped
│ │ ├─┬ form-data@2.1.4
│ │ │ ├── asynckit@0.4.0 deduped
│ │ │ ├── combined-stream@1.0.6 deduped
│ │ │ └── mime-types@2.1.18 deduped
│ │ ├─┬ har-validator@2.0.6
│ │ │ ├── chalk@1.1.3 deduped
│ │ │ ├── commander@2.15.1 deduped
│ │ │ ├─┬ is-my-json-valid@2.17.2
│ │ │ │ ├── generate-function@2.0.0
│ │ │ │ ├─┬ generate-object-property@1.2.0
│ │ │ │ │ └── is-property@1.0.2
│ │ │ │ ├── is-my-ip-valid@1.0.0
│ │ │ │ ├── jsonpointer@4.0.1
│ │ │ │ └── xtend@4.0.1 deduped
│ │ │ └─┬ pinkie-promise@2.0.1
│ │ │   └── pinkie@2.0.4
│ │ ├─┬ hawk@3.1.3
│ │ │ ├─┬ boom@2.10.1
│ │ │ │ └── hoek@2.16.3 deduped
│ │ │ ├─┬ cryptiles@2.0.5
│ │ │ │ └── boom@2.10.1 deduped
│ │ │ ├── hoek@2.16.3
│ │ │ └─┬ sntp@1.0.9
│ │ │   └── hoek@2.16.3 deduped
│ │ ├─┬ http-signature@1.1.1
│ │ │ ├── assert-plus@0.2.0
│ │ │ ├── jsprim@1.4.1 deduped
│ │ │ └── sshpk@1.14.2 deduped
│ │ ├── is-typedarray@1.0.0 deduped
│ │ ├── isstream@0.1.2 deduped
│ │ ├── json-stringify-safe@5.0.1 deduped
│ │ ├── mime-types@2.1.18 deduped
│ │ ├── oauth-sign@0.8.2 deduped
│ │ ├── qs@6.3.2
│ │ ├── stringstream@0.0.6
│ │ ├─┬ tough-cookie@2.3.4
│ │ │ └── punycode@1.4.1
│ │ ├── tunnel-agent@0.4.3
│ │ └── uuid@3.2.1 deduped
│ ├─┬ sass-graph@2.2.4
│ │ ├── glob@7.1.2 deduped
│ │ ├── lodash@4.17.10 deduped
│ │ ├─┬ scss-tokenizer@0.2.3
│ │ │ ├── js-base64@2.4.5 deduped
│ │ │ └─┬ source-map@0.4.4
│ │ │   └── amdefine@1.0.1 deduped
│ │ └─┬ yargs@7.1.0
│ │   ├── camelcase@3.0.0
│ │   ├── cliui@3.2.0 deduped
│ │   ├── decamelize@1.2.0 deduped
│ │   ├── get-caller-file@1.0.2 deduped
│ │   ├─┬ os-locale@1.4.0
│ │   │ └── lcid@1.0.0 deduped
│ │   ├── read-pkg-up@1.0.1 deduped
│ │   ├── require-directory@2.1.1 deduped
│ │   ├── require-main-filename@1.0.1 deduped
│ │   ├── set-blocking@2.0.0 deduped
│ │   ├─┬ string-width@1.0.2
│ │   │ ├── code-point-at@1.1.0 deduped
│ │   │ ├── is-fullwidth-code-point@1.0.0 deduped
│ │   │ └── strip-ansi@3.0.1 deduped
│ │   ├── which-module@1.0.0
│ │   ├── y18n@3.2.1
│ │   └─┬ yargs-parser@5.0.0
│ │     └── camelcase@3.0.0 deduped
│ ├─┬ stdout-stream@1.4.0
│ │ └── readable-stream@2.3.6 deduped
│ └─┬ true-case-path@1.0.2
│   └─┬ glob@6.0.4
│     ├── inflight@1.0.6 deduped
│     ├── inherits@2.0.3 deduped
│     ├── minimatch@3.0.4 deduped
│     ├── once@1.4.0 deduped
│     └── path-is-absolute@1.0.1 deduped
├─┬ nodemon@1.17.5
│ ├── chokidar@2.0.4 deduped
│ ├── debug@3.1.0 deduped
│ ├── ignore-by-default@1.0.1
│ ├── minimatch@3.0.4 deduped
│ ├─┬ pstree.remy@1.1.0
│ │ └─┬ ps-tree@1.1.0
│ │   └─┬ event-stream@3.3.4
│ │     ├── duplexer@0.1.1 deduped
│ │     ├── from@0.1.7
│ │     ├── map-stream@0.1.0
│ │     ├─┬ pause-stream@0.0.11
│ │     │ └── through@2.3.8 deduped
│ │     ├─┬ split@0.3.3
│ │     │ └── through@2.3.8 deduped
│ │     ├─┬ stream-combiner@0.0.4
│ │     │ └── duplexer@0.1.1 deduped
│ │     └── through@2.3.8 deduped
│ ├── semver@5.5.0 deduped
│ ├── supports-color@5.4.0 deduped
│ ├─┬ touch@3.1.0
│ │ └─┬ nopt@1.0.10
│ │   └── abbrev@1.1.1 deduped
│ ├─┬ undefsafe@2.0.2
│ │ └─┬ debug@2.6.9
│ │   └── ms@2.0.0 deduped
│ └─┬ update-notifier@2.5.0
│   ├─┬ boxen@1.3.0
│   │ ├─┬ ansi-align@2.0.0
│   │ │ └── string-width@2.1.1 deduped
│   │ ├── camelcase@4.1.0 deduped
│   │ ├── chalk@2.4.1 deduped
│   │ ├── cli-boxes@1.0.0
│   │ ├── string-width@2.1.1 deduped
│   │ ├─┬ term-size@1.2.0
│   │ │ └── execa@0.7.0 deduped
│   │ └─┬ widest-line@2.0.0
│   │   └── string-width@2.1.1 deduped
│   ├── chalk@2.4.1 deduped
│   ├─┬ configstore@3.1.2
│   │ ├── dot-prop@4.2.0 deduped
│   │ ├── graceful-fs@4.1.11 deduped
│   │ ├── make-dir@1.3.0 deduped
│   │ ├─┬ unique-string@1.0.0
│   │ │ └── crypto-random-string@1.0.0
│   │ ├─┬ write-file-atomic@2.3.0
│   │ │ ├── graceful-fs@4.1.11 deduped
│   │ │ ├── imurmurhash@0.1.4 deduped
│   │ │ └── signal-exit@3.0.2 deduped
│   │ └── xdg-basedir@3.0.0 deduped
│   ├── import-lazy@2.1.0
│   ├─┬ is-ci@1.1.0
│   │ └── ci-info@1.1.3
│   ├─┬ is-installed-globally@0.1.0
│   │ ├─┬ global-dirs@0.1.1
│   │ │ └── ini@1.3.5
│   │ └─┬ is-path-inside@1.0.1
│   │   └── path-is-inside@1.0.2 deduped
│   ├── is-npm@1.0.0
│   ├─┬ latest-version@3.1.0
│   │ └─┬ package-json@4.0.1
│   │   ├─┬ got@6.7.1
│   │   │ ├─┬ create-error-class@3.0.2
│   │   │ │ └── capture-stack-trace@1.0.0
│   │   │ ├── duplexer3@0.1.4
│   │   │ ├── get-stream@3.0.0 deduped
│   │   │ ├── is-redirect@1.0.0
│   │   │ ├── is-retry-allowed@1.1.0
│   │   │ ├── is-stream@1.1.0 deduped
│   │   │ ├── lowercase-keys@1.0.1 deduped
│   │   │ ├── safe-buffer@5.1.2 deduped
│   │   │ ├── timed-out@4.0.1
│   │   │ ├── unzip-response@2.0.1
│   │   │ └─┬ url-parse-lax@1.0.0
│   │   │   └── prepend-http@1.0.4 deduped
│   │   ├─┬ registry-auth-token@3.3.2
│   │   │ ├─┬ rc@1.2.8
│   │   │ │ ├── deep-extend@0.6.0 deduped
│   │   │ │ ├── ini@1.3.5 deduped
│   │   │ │ ├── minimist@1.2.0
│   │   │ │ └── strip-json-comments@2.0.1 deduped
│   │   │ └── safe-buffer@5.1.2 deduped
│   │   ├─┬ registry-url@3.1.0
│   │   │ └── rc@1.2.8 deduped
│   │   └── semver@5.5.0 deduped
│   ├─┬ semver-diff@2.1.0
│   │ └── semver@5.5.0 deduped
│   └── xdg-basedir@3.0.0
├─┬ nyc@12.0.2
│ ├── archy@1.0.0
│ ├── arrify@1.0.1
│ ├─┬ caching-transform@1.0.1
│ │ ├── md5-hex@1.3.0 deduped
│ │ ├── mkdirp@0.5.1 deduped
│ │ └─┬ write-file-atomic@1.3.4
│ │   ├── graceful-fs@4.1.11
│ │   ├── imurmurhash@0.1.4
│ │   └── slide@1.1.6
│ ├── convert-source-map@1.5.1
│ ├── debug-log@1.0.1
│ ├─┬ default-require-extensions@1.0.0
│ │ └─┬ strip-bom@2.0.0
│ │   └── is-utf8@0.2.1
│ ├─┬ find-cache-dir@0.1.1
│ │ ├── commondir@1.0.1
│ │ ├── mkdirp@0.5.1 deduped
│ │ └─┬ pkg-dir@1.0.0
│ │   └─┬ find-up@1.1.2
│ │     ├─┬ path-exists@2.1.0
│ │     │ └── pinkie-promise@2.0.1 deduped
│ │     └─┬ pinkie-promise@2.0.1
│ │       └── pinkie@2.0.4
│ ├─┬ find-up@2.1.0
│ │ └─┬ locate-path@2.0.0
│ │   ├─┬ p-locate@2.0.0
│ │   │ └─┬ p-limit@1.2.0
│ │   │   └── p-try@1.0.0
│ │   └── path-exists@3.0.0
│ ├─┬ foreground-child@1.5.6
│ │ ├─┬ cross-spawn@4.0.2
│ │ │ ├─┬ lru-cache@4.1.3
│ │ │ │ ├── pseudomap@1.0.2
│ │ │ │ └── yallist@2.1.2
│ │ │ └── which@1.3.1 deduped
│ │ └── signal-exit@3.0.2 deduped
│ ├─┬ glob@7.1.2
│ │ ├── fs.realpath@1.0.0
│ │ ├─┬ inflight@1.0.6
│ │ │ ├── once@1.4.0 deduped
│ │ │ └── wrappy@1.0.2
│ │ ├── inherits@2.0.3
│ │ ├─┬ minimatch@3.0.4
│ │ │ └─┬ brace-expansion@1.1.11
│ │ │   ├── balanced-match@1.0.0
│ │ │   └── concat-map@0.0.1
│ │ ├─┬ once@1.4.0
│ │ │ └── wrappy@1.0.2 deduped
│ │ └── path-is-absolute@1.0.1
│ ├── istanbul-lib-coverage@1.2.0
│ ├─┬ istanbul-lib-hook@1.1.0
│ │ └─┬ append-transform@0.4.0
│ │   └── default-require-extensions@1.0.0 deduped
│ ├─┬ istanbul-lib-instrument@2.2.0
│ │ ├─┬ @babel/generator@7.0.0-beta.49
│ │ │ ├── @babel/types@7.0.0-beta.49 deduped
│ │ │ ├── jsesc@2.5.1
│ │ │ ├── lodash@4.17.10 deduped
│ │ │ ├── source-map@0.5.7 deduped
│ │ │ └── trim-right@1.0.1 deduped
│ │ ├── @babel/parser@7.0.0-beta.49
│ │ ├─┬ @babel/template@7.0.0-beta.49
│ │ │ ├─┬ @babel/code-frame@7.0.0-beta.49
│ │ │ │ └─┬ @babel/highlight@7.0.0-beta.49
│ │ │ │   ├── chalk@2.4.1 deduped
│ │ │ │   ├── esutils@2.0.2 deduped
│ │ │ │   └── js-tokens@3.0.2 deduped
│ │ │ ├── @babel/parser@7.0.0-beta.49 deduped
│ │ │ ├── @babel/types@7.0.0-beta.49 deduped
│ │ │ └── lodash@4.17.10 deduped
│ │ ├─┬ @babel/traverse@7.0.0-beta.49
│ │ │ ├── @babel/code-frame@7.0.0-beta.49 deduped
│ │ │ ├── @babel/generator@7.0.0-beta.49 deduped
│ │ │ ├─┬ @babel/helper-function-name@7.0.0-beta.49
│ │ │ │ ├─┬ @babel/helper-get-function-arity@7.0.0-beta.49
│ │ │ │ │ └── @babel/types@7.0.0-beta.49 deduped
│ │ │ │ ├── @babel/template@7.0.0-beta.49 deduped
│ │ │ │ └── @babel/types@7.0.0-beta.49 deduped
│ │ │ ├─┬ @babel/helper-split-export-declaration@7.0.0-beta.49
│ │ │ │ └── @babel/types@7.0.0-beta.49 deduped
│ │ │ ├── @babel/parser@7.0.0-beta.49 deduped
│ │ │ ├── @babel/types@7.0.0-beta.49 deduped
│ │ │ ├── debug@3.1.0 deduped
│ │ │ ├── globals@11.6.0
│ │ │ ├── invariant@2.2.4 deduped
│ │ │ └── lodash@4.17.10 deduped
│ │ ├─┬ @babel/types@7.0.0-beta.49
│ │ │ ├── esutils@2.0.2 deduped
│ │ │ ├── lodash@4.17.10 deduped
│ │ │ └── to-fast-properties@2.0.0
│ │ ├── istanbul-lib-coverage@2.0.0
│ │ └── semver@5.5.0
│ ├─┬ istanbul-lib-report@1.1.3
│ │ ├── istanbul-lib-coverage@1.2.0 deduped
│ │ ├── mkdirp@0.5.1 deduped
│ │ ├── path-parse@1.0.5
│ │ └─┬ supports-color@3.2.3
│ │   └── has-flag@1.0.0
│ ├─┬ istanbul-lib-source-maps@1.2.5
│ │ ├─┬ debug@3.1.0
│ │ │ └── ms@2.0.0
│ │ ├── istanbul-lib-coverage@1.2.0 deduped
│ │ ├── mkdirp@0.5.1 deduped
│ │ ├── rimraf@2.6.2 deduped
│ │ └── source-map@0.5.7
│ ├─┬ istanbul-reports@1.4.1
│ │ └─┬ handlebars@4.0.11
│ │   ├── async@1.5.2
│ │   ├─┬ optimist@0.6.1
│ │   │ ├── minimist@0.0.8 deduped
│ │   │ └── wordwrap@0.0.3
│ │   ├─┬ source-map@0.4.4
│ │   │ └── amdefine@1.0.1
│ │   └─┬ uglify-js@2.8.29
│ │     ├── source-map@0.5.7 deduped
│ │     ├── uglify-to-browserify@1.0.2
│ │     └─┬ yargs@3.10.0
│ │       ├── camelcase@1.2.1
│ │       ├─┬ cliui@2.1.0
│ │       │ ├─┬ center-align@0.1.3
│ │       │ │ ├─┬ align-text@0.1.4
│ │       │ │ │ ├── kind-of@3.2.2 deduped
│ │       │ │ │ ├── longest@1.0.1
│ │       │ │ │ └── repeat-string@1.6.1 deduped
│ │       │ │ └── lazy-cache@1.0.4
│ │       │ ├─┬ right-align@0.1.3
│ │       │ │ └── align-text@0.1.4 deduped
│ │       │ └── wordwrap@0.0.2
│ │       ├── decamelize@1.2.0 deduped
│ │       └── window-size@0.1.0
│ ├─┬ md5-hex@1.3.0
│ │ └── md5-o-matic@0.1.1
│ ├─┬ merge-source-map@1.1.0
│ │ └── source-map@0.6.1
│ ├─┬ micromatch@3.1.10
│ │ ├── arr-diff@4.0.0
│ │ ├── array-unique@0.3.2
│ │ ├─┬ braces@2.3.2
│ │ │ ├── arr-flatten@1.1.0
│ │ │ ├── array-unique@0.3.2 deduped
│ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ └── is-extendable@0.1.1
│ │ │ ├─┬ fill-range@4.0.0
│ │ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ ├─┬ is-number@3.0.0
│ │ │ │ │ └─┬ kind-of@3.2.2
│ │ │ │ │   └── is-buffer@1.1.6
│ │ │ │ ├── repeat-string@1.6.1
│ │ │ │ └─┬ to-regex-range@2.1.1
│ │ │ │   ├── is-number@3.0.0 deduped
│ │ │ │   └── repeat-string@1.6.1 deduped
│ │ │ ├── isobject@3.0.1
│ │ │ ├── repeat-element@1.1.2
│ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ ├─┬ snapdragon-node@2.1.1
│ │ │ │ ├─┬ define-property@1.0.0
│ │ │ │ │ └─┬ is-descriptor@1.0.2
│ │ │ │ │   ├─┬ is-accessor-descriptor@1.0.0
│ │ │ │ │   │ └── kind-of@6.0.2 deduped
│ │ │ │ │   ├─┬ is-data-descriptor@1.0.0
│ │ │ │ │   │ └── kind-of@6.0.2 deduped
│ │ │ │ │   └── kind-of@6.0.2
│ │ │ │ ├── isobject@3.0.1 deduped
│ │ │ │ └─┬ snapdragon-util@3.0.1
│ │ │ │   └── kind-of@3.2.2 deduped
│ │ │ ├─┬ split-string@3.1.0
│ │ │ │ └── extend-shallow@3.0.2 deduped
│ │ │ └── to-regex@3.0.2 deduped
│ │ ├─┬ define-property@2.0.2
│ │ │ ├─┬ is-descriptor@1.0.2
│ │ │ │ ├─┬ is-accessor-descriptor@1.0.0
│ │ │ │ │ └── kind-of@6.0.2 deduped
│ │ │ │ ├─┬ is-data-descriptor@1.0.0
│ │ │ │ │ └── kind-of@6.0.2 deduped
│ │ │ │ └── kind-of@6.0.2
│ │ │ └── isobject@3.0.1 deduped
│ │ ├─┬ extend-shallow@3.0.2
│ │ │ ├── assign-symbols@1.0.0
│ │ │ └─┬ is-extendable@1.0.1
│ │ │   └─┬ is-plain-object@2.0.4
│ │ │     └── isobject@3.0.1 deduped
│ │ ├─┬ extglob@2.0.4
│ │ │ ├── array-unique@0.3.2 deduped
│ │ │ ├─┬ define-property@1.0.0
│ │ │ │ └─┬ is-descriptor@1.0.2
│ │ │ │   ├─┬ is-accessor-descriptor@1.0.0
│ │ │ │   │ └── kind-of@6.0.2 deduped
│ │ │ │   ├─┬ is-data-descriptor@1.0.0
│ │ │ │   │ └── kind-of@6.0.2 deduped
│ │ │ │   └── kind-of@6.0.2
│ │ │ ├─┬ expand-brackets@2.1.4
│ │ │ │ ├─┬ debug@2.6.9
│ │ │ │ │ └── ms@2.0.0 deduped
│ │ │ │ ├─┬ define-property@0.2.5
│ │ │ │ │ └── is-descriptor@0.1.6 deduped
│ │ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ ├── posix-character-classes@0.1.1
│ │ │ │ ├── regex-not@1.0.2 deduped
│ │ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ │ └── to-regex@3.0.2 deduped
│ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ ├── fragment-cache@0.2.1 deduped
│ │ │ ├── regex-not@1.0.2 deduped
│ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ └── to-regex@3.0.2 deduped
│ │ ├─┬ fragment-cache@0.2.1
│ │ │ └── map-cache@0.2.2
│ │ ├── kind-of@6.0.2
│ │ ├─┬ nanomatch@1.2.9
│ │ │ ├── arr-diff@4.0.0 deduped
│ │ │ ├── array-unique@0.3.2 deduped
│ │ │ ├── define-property@2.0.2 deduped
│ │ │ ├── extend-shallow@3.0.2 deduped
│ │ │ ├── fragment-cache@0.2.1 deduped
│ │ │ ├─┬ is-odd@2.0.0
│ │ │ │ └── is-number@4.0.0
│ │ │ ├── is-windows@1.0.2
│ │ │ ├── kind-of@6.0.2
│ │ │ ├── object.pick@1.3.0 deduped
│ │ │ ├── regex-not@1.0.2 deduped
│ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ └── to-regex@3.0.2 deduped
│ │ ├─┬ object.pick@1.3.0
│ │ │ └── isobject@3.0.1 deduped
│ │ ├─┬ regex-not@1.0.2
│ │ │ ├── extend-shallow@3.0.2 deduped
│ │ │ └─┬ safe-regex@1.1.0
│ │ │   └── ret@0.1.15
│ │ ├─┬ snapdragon@0.8.2
│ │ │ ├─┬ base@0.11.2
│ │ │ │ ├─┬ cache-base@1.0.1
│ │ │ │ │ ├─┬ collection-visit@1.0.0
│ │ │ │ │ │ ├─┬ map-visit@1.0.0
│ │ │ │ │ │ │ └── object-visit@1.0.1 deduped
│ │ │ │ │ │ └─┬ object-visit@1.0.1
│ │ │ │ │ │   └── isobject@3.0.1 deduped
│ │ │ │ │ ├── component-emitter@1.2.1 deduped
│ │ │ │ │ ├── get-value@2.0.6
│ │ │ │ │ ├─┬ has-value@1.0.0
│ │ │ │ │ │ ├── get-value@2.0.6 deduped
│ │ │ │ │ │ ├─┬ has-values@1.0.0
│ │ │ │ │ │ │ ├── is-number@3.0.0 deduped
│ │ │ │ │ │ │ └─┬ kind-of@4.0.0
│ │ │ │ │ │ │   └── is-buffer@1.1.6 deduped
│ │ │ │ │ │ └── isobject@3.0.1 deduped
│ │ │ │ │ ├── isobject@3.0.1 deduped
│ │ │ │ │ ├─┬ set-value@2.0.0
│ │ │ │ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ │ │ ├── is-extendable@0.1.1 deduped
│ │ │ │ │ │ ├── is-plain-object@2.0.4 deduped
│ │ │ │ │ │ └── split-string@3.1.0 deduped
│ │ │ │ │ ├─┬ to-object-path@0.3.0
│ │ │ │ │ │ └── kind-of@3.2.2 deduped
│ │ │ │ │ ├─┬ union-value@1.0.0
│ │ │ │ │ │ ├── arr-union@3.1.0 deduped
│ │ │ │ │ │ ├── get-value@2.0.6 deduped
│ │ │ │ │ │ ├── is-extendable@0.1.1 deduped
│ │ │ │ │ │ └─┬ set-value@0.4.3
│ │ │ │ │ │   ├─┬ extend-shallow@2.0.1
│ │ │ │ │ │   │ └── is-extendable@0.1.1 deduped
│ │ │ │ │ │   ├── is-extendable@0.1.1 deduped
│ │ │ │ │ │   ├── is-plain-object@2.0.4 deduped
│ │ │ │ │ │   └── to-object-path@0.3.0 deduped
│ │ │ │ │ └─┬ unset-value@1.0.0
│ │ │ │ │   ├─┬ has-value@0.3.1
│ │ │ │ │   │ ├── get-value@2.0.6 deduped
│ │ │ │ │   │ ├── has-values@0.1.4
│ │ │ │ │   │ └─┬ isobject@2.1.0
│ │ │ │ │   │   └── isarray@1.0.0
│ │ │ │ │   └── isobject@3.0.1 deduped
│ │ │ │ ├─┬ class-utils@0.3.6
│ │ │ │ │ ├── arr-union@3.1.0
│ │ │ │ │ ├─┬ define-property@0.2.5
│ │ │ │ │ │ └── is-descriptor@0.1.6 deduped
│ │ │ │ │ ├── isobject@3.0.1 deduped
│ │ │ │ │ └─┬ static-extend@0.1.2
│ │ │ │ │   ├─┬ define-property@0.2.5
│ │ │ │ │   │ └── is-descriptor@0.1.6 deduped
│ │ │ │ │   └─┬ object-copy@0.1.0
│ │ │ │ │     ├── copy-descriptor@0.1.1
│ │ │ │ │     ├─┬ define-property@0.2.5
│ │ │ │ │     │ └── is-descriptor@0.1.6 deduped
│ │ │ │ │     └── kind-of@3.2.2 deduped
│ │ │ │ ├── component-emitter@1.2.1
│ │ │ │ ├─┬ define-property@1.0.0
│ │ │ │ │ └─┬ is-descriptor@1.0.2
│ │ │ │ │   ├─┬ is-accessor-descriptor@1.0.0
│ │ │ │ │   │ └── kind-of@6.0.2 deduped
│ │ │ │ │   ├─┬ is-data-descriptor@1.0.0
│ │ │ │ │   │ └── kind-of@6.0.2 deduped
│ │ │ │ │   └── kind-of@6.0.2
│ │ │ │ ├── isobject@3.0.1 deduped
│ │ │ │ ├─┬ mixin-deep@1.3.1
│ │ │ │ │ ├── for-in@1.0.2
│ │ │ │ │ └─┬ is-extendable@1.0.1
│ │ │ │ │   └── is-plain-object@2.0.4 deduped
│ │ │ │ └── pascalcase@0.1.1
│ │ │ ├─┬ debug@2.6.9
│ │ │ │ └── ms@2.0.0 deduped
│ │ │ ├─┬ define-property@0.2.5
│ │ │ │ └─┬ is-descriptor@0.1.6
│ │ │ │   ├─┬ is-accessor-descriptor@0.1.6
│ │ │ │   │ └── kind-of@3.2.2 deduped
│ │ │ │   ├─┬ is-data-descriptor@0.1.4
│ │ │ │   │ └── kind-of@3.2.2 deduped
│ │ │ │   └── kind-of@5.1.0
│ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ ├── map-cache@0.2.2 deduped
│ │ │ ├── source-map@0.5.7 deduped
│ │ │ ├─┬ source-map-resolve@0.5.2
│ │ │ │ ├── atob@2.1.1
│ │ │ │ ├── decode-uri-component@0.2.0
│ │ │ │ ├── resolve-url@0.2.1
│ │ │ │ ├── source-map-url@0.4.0
│ │ │ │ └── urix@0.1.0
│ │ │ └─┬ use@3.1.0
│ │ │   └── kind-of@6.0.2
│ │ └─┬ to-regex@3.0.2
│ │   ├── define-property@2.0.2 deduped
│ │   ├── extend-shallow@3.0.2 deduped
│ │   ├── regex-not@1.0.2 deduped
│ │   └── safe-regex@1.1.0 deduped
│ ├─┬ mkdirp@0.5.1
│ │ └── minimist@0.0.8
│ ├── resolve-from@2.0.0
│ ├─┬ rimraf@2.6.2
│ │ └── glob@7.1.2 deduped
│ ├── signal-exit@3.0.2
│ ├─┬ spawn-wrap@1.4.2
│ │ ├── foreground-child@1.5.6 deduped
│ │ ├── mkdirp@0.5.1 deduped
│ │ ├── os-homedir@1.0.2
│ │ ├── rimraf@2.6.2 deduped
│ │ ├── signal-exit@3.0.2 deduped
│ │ └─┬ which@1.3.1
│ │   └── isexe@2.0.0
│ ├─┬ test-exclude@4.2.1
│ │ ├── arrify@1.0.1 deduped
│ │ ├── micromatch@3.1.10 deduped
│ │ ├── object-assign@4.1.1
│ │ ├─┬ read-pkg-up@1.0.1
│ │ │ ├─┬ find-up@1.1.2
│ │ │ │ ├── path-exists@2.1.0 deduped
│ │ │ │ └── pinkie-promise@2.0.1 deduped
│ │ │ └─┬ read-pkg@1.1.0
│ │ │   ├─┬ load-json-file@1.1.0
│ │ │   │ ├── graceful-fs@4.1.11 deduped
│ │ │   │ ├─┬ parse-json@2.2.0
│ │ │   │ │ └─┬ error-ex@1.3.1
│ │ │   │ │   └── is-arrayish@0.2.1
│ │ │   │ ├── pify@2.3.0
│ │ │   │ ├── pinkie-promise@2.0.1 deduped
│ │ │   │ └── strip-bom@2.0.0 deduped
│ │ │   ├─┬ normalize-package-data@2.4.0
│ │ │   │ ├── hosted-git-info@2.6.0
│ │ │   │ ├─┬ is-builtin-module@1.0.0
│ │ │   │ │ └── builtin-modules@1.1.1
│ │ │   │ ├── semver@5.5.0 deduped
│ │ │   │ └─┬ validate-npm-package-license@3.0.3
│ │ │   │   ├─┬ spdx-correct@3.0.0
│ │ │   │   │ ├── spdx-expression-parse@3.0.0 deduped
│ │ │   │   │ └── spdx-license-ids@3.0.0
│ │ │   │   └─┬ spdx-expression-parse@3.0.0
│ │ │   │     ├── spdx-exceptions@2.1.0
│ │ │   │     └── spdx-license-ids@3.0.0 deduped
│ │ │   └─┬ path-type@1.1.0
│ │ │     ├── graceful-fs@4.1.11 deduped
│ │ │     ├── pify@2.3.0 deduped
│ │ │     └── pinkie-promise@2.0.1 deduped
│ │ └── require-main-filename@1.0.1
│ ├─┬ yargs@11.1.0
│ │ ├─┬ cliui@4.1.0
│ │ │ ├── string-width@2.1.1 deduped
│ │ │ ├── strip-ansi@4.0.0 deduped
│ │ │ └─┬ wrap-ansi@2.1.0
│ │ │   ├─┬ string-width@1.0.2
│ │ │   │ ├── code-point-at@1.1.0
│ │ │   │ ├─┬ is-fullwidth-code-point@1.0.0
│ │ │   │ │ └── number-is-nan@1.0.1
│ │ │   │ └── strip-ansi@3.0.1 deduped
│ │ │   └─┬ strip-ansi@3.0.1
│ │ │     └── ansi-regex@2.1.1
│ │ ├── decamelize@1.2.0
│ │ ├── find-up@2.1.0 deduped
│ │ ├── get-caller-file@1.0.2
│ │ ├─┬ os-locale@2.1.0
│ │ │ ├─┬ execa@0.7.0
│ │ │ │ ├─┬ cross-spawn@5.1.0
│ │ │ │ │ ├── lru-cache@4.1.3 deduped
│ │ │ │ │ ├─┬ shebang-command@1.2.0
│ │ │ │ │ │ └── shebang-regex@1.0.0
│ │ │ │ │ └── which@1.3.1 deduped
│ │ │ │ ├── get-stream@3.0.0
│ │ │ │ ├── is-stream@1.1.0
│ │ │ │ ├─┬ npm-run-path@2.0.2
│ │ │ │ │ └── path-key@2.0.1
│ │ │ │ ├── p-finally@1.0.0
│ │ │ │ ├── signal-exit@3.0.2 deduped
│ │ │ │ └── strip-eof@1.0.0
│ │ │ ├─┬ lcid@1.0.0
│ │ │ │ └── invert-kv@1.0.0
│ │ │ └─┬ mem@1.1.0
│ │ │   └── mimic-fn@1.2.0
│ │ ├── require-directory@2.1.1
│ │ ├── require-main-filename@1.0.1 deduped
│ │ ├── set-blocking@2.0.0
│ │ ├─┬ string-width@2.1.1
│ │ │ ├── is-fullwidth-code-point@2.0.0
│ │ │ └─┬ strip-ansi@4.0.0
│ │ │   └── ansi-regex@3.0.0
│ │ ├── which-module@2.0.0
│ │ ├── y18n@3.2.1
│ │ └─┬ yargs-parser@9.0.2
│ │   └── camelcase@4.1.0
│ └─┬ yargs-parser@8.1.0
│   └── camelcase@4.1.0
├─┬ optimize-css-assets-webpack-plugin@4.0.2
│ ├── cssnano@3.10.0 deduped
│ └─┬ last-call-webpack-plugin@3.0.0
│   ├── lodash@4.17.10 deduped
│   └── webpack-sources@1.1.0 deduped
├─┬ portfinder@1.0.13
│ ├── async@1.5.2
│ ├─┬ debug@2.6.9
│ │ └── ms@2.0.0 deduped
│ └── mkdirp@0.5.1 deduped
├─┬ postcss-cssnext@3.1.0
│ ├─┬ autoprefixer@7.2.6
│ │ ├─┬ browserslist@2.11.3
│ │ │ ├── caniuse-lite@1.0.30000856 deduped
│ │ │ └── electron-to-chromium@1.3.48 deduped
│ │ ├── caniuse-lite@1.0.30000856 deduped
│ │ ├── normalize-range@0.1.2
│ │ ├── num2fraction@1.2.2
│ │ ├── postcss@6.0.22 deduped
│ │ └── postcss-value-parser@3.3.0 deduped
│ ├─┬ caniuse-api@2.0.0
│ │ ├── browserslist@2.11.3 deduped
│ │ ├── caniuse-lite@1.0.30000856 deduped
│ │ ├── lodash.memoize@4.1.2
│ │ └── lodash.uniq@4.5.0
│ ├── chalk@2.4.1 deduped
│ ├─┬ pixrem@4.0.1
│ │ ├── browserslist@2.11.3 deduped
│ │ ├── postcss@6.0.22 deduped
│ │ └─┬ reduce-css-calc@1.3.0
│ │   ├── balanced-match@0.4.2 deduped
│ │   ├── math-expression-evaluator@1.2.17
│ │   └── reduce-function-call@1.0.2 deduped
│ ├─┬ pleeease-filters@4.0.0
│ │ ├── onecolor@3.0.5
│ │ └── postcss@6.0.22 deduped
│ ├─┬ postcss@6.0.22
│ │ ├── chalk@2.4.1 deduped
│ │ ├── source-map@0.6.1 deduped
│ │ └── supports-color@5.4.0 deduped
│ ├─┬ postcss-apply@0.8.0
│ │ ├── babel-runtime@6.26.0 deduped
│ │ ├── balanced-match@0.4.2
│ │ └── postcss@6.0.22 deduped
│ ├─┬ postcss-attribute-case-insensitive@2.0.0
│ │ ├── postcss@6.0.22 deduped
│ │ └─┬ postcss-selector-parser@2.2.3
│ │   ├── flatten@1.0.2
│ │   ├── indexes-of@1.0.1 deduped
│ │   └── uniq@1.0.1 deduped
│ ├─┬ postcss-calc@6.0.1
│ │ ├── css-unit-converter@1.1.1
│ │ ├── postcss@6.0.22 deduped
│ │ ├── postcss-selector-parser@2.2.3 deduped
│ │ └─┬ reduce-css-calc@2.1.4
│ │   ├── css-unit-converter@1.1.1 deduped
│ │   └── postcss-value-parser@3.3.0 deduped
│ ├─┬ postcss-color-function@4.0.1
│ │ ├─┬ css-color-function@1.3.3
│ │ │ ├── balanced-match@0.1.0
│ │ │ ├─┬ color@0.11.4
│ │ │ │ ├── clone@1.0.4
│ │ │ │ ├── color-convert@1.9.2 deduped
│ │ │ │ └─┬ color-string@0.3.0
│ │ │ │   └── color-name@1.1.1 deduped
│ │ │ ├── debug@3.1.0 deduped
│ │ │ └── rgb@0.1.0
│ │ ├── postcss@6.0.22 deduped
│ │ ├── postcss-message-helpers@2.0.0
│ │ └── postcss-value-parser@3.3.0 deduped
│ ├─┬ postcss-color-gray@4.1.0
│ │ ├─┬ color@2.0.1
│ │ │ ├── color-convert@1.9.2 deduped
│ │ │ └─┬ color-string@1.5.2
│ │ │   ├── color-name@1.1.1 deduped
│ │ │   └─┬ simple-swizzle@0.2.2
│ │ │     └── is-arrayish@0.3.2
│ │ ├── postcss@6.0.22 deduped
│ │ ├── postcss-message-helpers@2.0.0 deduped
│ │ └─┬ reduce-function-call@1.0.2
│ │   └── balanced-match@0.4.2 deduped
│ ├─┬ postcss-color-hex-alpha@3.0.0
│ │ ├─┬ color@1.0.3
│ │ │ ├── color-convert@1.9.2 deduped
│ │ │ └─┬ color-string@1.5.2
│ │ │   ├── color-name@1.1.1 deduped
│ │ │   └── simple-swizzle@0.2.2 deduped
│ │ ├── postcss@6.0.22 deduped
│ │ └── postcss-message-helpers@2.0.0 deduped
│ ├─┬ postcss-color-hsl@2.0.0
│ │ ├── postcss@6.0.22 deduped
│ │ ├── postcss-value-parser@3.3.0 deduped
│ │ └─┬ units-css@0.4.0
│ │   ├── isnumeric@0.2.0
│ │   └── viewport-dimensions@0.2.0
│ ├─┬ postcss-color-hwb@3.0.0
│ │ ├─┬ color@1.0.3
│ │ │ ├── color-convert@1.9.2 deduped
│ │ │ └─┬ color-string@1.5.2
│ │ │   ├── color-name@1.1.1 deduped
│ │ │   └── simple-swizzle@0.2.2 deduped
│ │ ├── postcss@6.0.22 deduped
│ │ ├── postcss-message-helpers@2.0.0 deduped
│ │ └── reduce-function-call@1.0.2 deduped
│ ├─┬ postcss-color-rebeccapurple@3.1.0
│ │ ├── postcss@6.0.22 deduped
│ │ └─┬ postcss-values-parser@1.5.0
│ │   ├── flatten@1.0.2 deduped
│ │   ├── indexes-of@1.0.1 deduped
│ │   └── uniq@1.0.1 deduped
│ ├─┬ postcss-color-rgb@2.0.0
│ │ ├── postcss@6.0.22 deduped
│ │ └── postcss-value-parser@3.3.0 deduped
│ ├─┬ postcss-color-rgba-fallback@3.0.0
│ │ ├── postcss@6.0.22 deduped
│ │ ├── postcss-value-parser@3.3.0 deduped
│ │ └── rgb-hex@2.1.0
│ ├─┬ postcss-custom-media@6.0.0
│ │ └── postcss@6.0.22 deduped
│ ├─┬ postcss-custom-properties@6.3.1
│ │ ├── balanced-match@1.0.0
│ │ └── postcss@6.0.22 deduped
│ ├─┬ postcss-custom-selectors@4.0.1
│ │ ├── postcss@6.0.22 deduped
│ │ └── postcss-selector-matches@3.0.1 deduped
│ ├─┬ postcss-font-family-system-ui@3.0.0
│ │ └── postcss@6.0.22 deduped
│ ├─┬ postcss-font-variant@3.0.0
│ │ └── postcss@6.0.22 deduped
│ ├─┬ postcss-image-set-polyfill@0.3.5
│ │ ├── postcss@6.0.22 deduped
│ │ └── postcss-media-query-parser@0.2.3 deduped
│ ├─┬ postcss-initial@2.0.0
│ │ ├── lodash.template@4.4.0 deduped
│ │ └── postcss@6.0.22 deduped
│ ├─┬ postcss-media-minmax@3.0.0
│ │ └── postcss@6.0.22 deduped
│ ├─┬ postcss-nesting@4.2.1
│ │ └── postcss@6.0.22 deduped
│ ├─┬ postcss-pseudo-class-any-link@4.0.0
│ │ ├── postcss@6.0.22 deduped
│ │ └── postcss-selector-parser@2.2.3 deduped
│ ├─┬ postcss-pseudoelements@5.0.0
│ │ └── postcss@6.0.22 deduped
│ ├─┬ postcss-replace-overflow-wrap@2.0.0
│ │ └── postcss@6.0.22 deduped
│ ├─┬ postcss-selector-matches@3.0.1
│ │ ├── balanced-match@0.4.2 deduped
│ │ └── postcss@6.0.22 deduped
│ └─┬ postcss-selector-not@3.0.1
│   ├── balanced-match@0.4.2 deduped
│   └── postcss@6.0.22 deduped
├─┬ postcss-import@11.1.0
│ ├── postcss@6.0.22 deduped
│ ├── postcss-value-parser@3.3.0 deduped
│ ├─┬ read-cache@1.0.0
│ │ └── pify@2.3.0
│ └─┬ resolve@1.8.1
│   └── path-parse@1.0.5
├─┬ postcss-loader@2.1.5
│ ├── loader-utils@1.1.0 deduped
│ ├── postcss@6.0.22 deduped
│ ├─┬ postcss-load-config@1.2.0
│ │ ├─┬ cosmiconfig@2.2.2
│ │ │ ├── is-directory@0.3.1 deduped
│ │ │ ├── js-yaml@3.7.0 deduped
│ │ │ ├── minimist@1.2.0
│ │ │ ├── object-assign@4.1.1 deduped
│ │ │ ├── os-homedir@1.0.2 deduped
│ │ │ ├─┬ parse-json@2.2.0
│ │ │ │ └── error-ex@1.3.2 deduped
│ │ │ └── require-from-string@1.2.1
│ │ ├── object-assign@4.1.1 deduped
│ │ ├─┬ postcss-load-options@1.2.0
│ │ │ ├── cosmiconfig@2.2.2 deduped
│ │ │ └── object-assign@4.1.1 deduped
│ │ └─┬ postcss-load-plugins@2.3.0
│ │   ├── cosmiconfig@2.2.2 deduped
│ │   └── object-assign@4.1.1 deduped
│ └─┬ schema-utils@0.4.5
│   ├─┬ ajv@6.5.1
│   │ ├── fast-deep-equal@2.0.1
│   │ ├── fast-json-stable-stringify@2.0.0 deduped
│   │ ├── json-schema-traverse@0.4.1
│   │ └── uri-js@4.2.2 deduped
│   └── ajv-keywords@3.2.0
├─┬ postcss-sass@0.3.2
│ ├─┬ gonzales-pe@4.2.3
│ │ └── minimist@1.1.3
│ └── postcss@6.0.22 deduped
├── prettier@1.13.5
├─┬ sass-loader@7.0.3
│ ├─┬ clone-deep@2.0.2
│ │ ├─┬ for-own@1.0.0
│ │ │ └── for-in@1.0.2
│ │ ├─┬ is-plain-object@2.0.4
│ │ │ └── isobject@3.0.1 deduped
│ │ ├── kind-of@6.0.2
│ │ └─┬ shallow-clone@1.0.0
│ │   ├── is-extendable@0.1.1
│ │   ├── kind-of@5.1.0
│ │   └─┬ mixin-object@2.0.1
│ │     ├── for-in@0.1.8
│ │     └── is-extendable@0.1.1 deduped
│ ├── loader-utils@1.1.0 deduped
│ ├── lodash.tail@4.1.1
│ ├── neo-async@2.5.1 deduped
│ └── pify@3.0.0
├─┬ sinon@6.0.0
│ ├─┬ @sinonjs/formatio@2.0.0
│ │ └── samsam@1.3.0
│ ├── diff@3.5.0 deduped
│ ├── lodash.get@4.4.2
│ ├── lolex@2.7.0
│ ├─┬ nise@1.4.2
│ │ ├── @sinonjs/formatio@2.0.0 deduped
│ │ ├── just-extend@1.1.27
│ │ ├── lolex@2.7.0 deduped
│ │ ├─┬ path-to-regexp@1.7.0
│ │ │ └── isarray@0.0.1
│ │ └── text-encoding@0.6.4
│ ├── supports-color@5.4.0 deduped
│ └── type-detect@4.0.8 deduped
├─┬ static-server@2.2.1
│ ├─┬ chalk@0.5.1
│ │ ├── ansi-styles@1.1.0
│ │ ├── escape-string-regexp@1.0.5 deduped
│ │ ├─┬ has-ansi@0.1.0
│ │ │ └── ansi-regex@0.2.1
│ │ ├─┬ strip-ansi@0.3.0
│ │ │ └── ansi-regex@0.2.1 deduped
│ │ └── supports-color@0.2.0
│ ├── commander@2.15.1 deduped
│ ├── file-size@0.0.5
│ ├── mime@1.6.0
│ └─┬ opn@5.3.0
│   └── is-wsl@1.1.0
├─┬ style-loader@0.21.0
│ ├── loader-utils@1.1.0 deduped
│ └─┬ schema-utils@0.4.5
│   ├─┬ ajv@6.5.1
│   │ ├── fast-deep-equal@2.0.1
│   │ ├── fast-json-stable-stringify@2.0.0 deduped
│   │ ├── json-schema-traverse@0.4.1
│   │ └── uri-js@4.2.2 deduped
│   └── ajv-keywords@3.2.0
├─┬ UNMET PEER DEPENDENCY stylelint@9.3.0
│ ├─┬ autoprefixer@8.6.3
│ │ ├─┬ browserslist@3.2.8
│ │ │ ├── caniuse-lite@1.0.30000856 deduped
│ │ │ └── electron-to-chromium@1.3.48 deduped
│ │ ├── caniuse-lite@1.0.30000856 deduped
│ │ ├── normalize-range@0.1.2 deduped
│ │ ├── num2fraction@1.2.2 deduped
│ │ ├── postcss@6.0.22 deduped
│ │ └── postcss-value-parser@3.3.0 deduped
│ ├── balanced-match@1.0.0
│ ├── chalk@2.4.1 deduped
│ ├─┬ cosmiconfig@5.0.5
│ │ ├── is-directory@0.3.1 deduped
│ │ ├─┬ js-yaml@3.12.0
│ │ │ ├── argparse@1.0.10 deduped
│ │ │ └── esprima@4.0.0
│ │ └─┬ parse-json@4.0.0
│ │   ├─┬ error-ex@1.3.2
│ │   │ └── is-arrayish@0.2.1
│ │   └── json-parse-better-errors@1.0.2 deduped
│ ├── debug@3.1.0 deduped
│ ├─┬ execall@1.0.0
│ │ └─┬ clone-regexp@1.0.1
│ │   ├── is-regexp@1.0.0
│ │   └── is-supported-regexp-flag@1.0.1
│ ├── file-entry-cache@2.0.0 deduped
│ ├── get-stdin@6.0.0
│ ├─┬ globby@8.0.1
│ │ ├── array-union@1.0.2 deduped
│ │ ├── dir-glob@2.0.0 deduped
│ │ ├─┬ fast-glob@2.2.2
│ │ │ ├─┬ @mrmlnc/readdir-enhanced@2.2.1
│ │ │ │ ├── call-me-maybe@1.0.1
│ │ │ │ └── glob-to-regexp@0.3.0
│ │ │ ├── @nodelib/fs.stat@1.1.0
│ │ │ ├── glob-parent@3.1.0 deduped
│ │ │ ├── is-glob@4.0.0 deduped
│ │ │ ├── merge2@1.2.2
│ │ │ └── micromatch@3.1.10 deduped
│ │ ├── glob@7.1.2 deduped
│ │ ├── ignore@3.3.8 deduped
│ │ ├── pify@3.0.0 deduped
│ │ └── slash@1.0.0 deduped
│ ├── globjoin@0.1.4
│ ├── html-tags@2.0.0
│ ├── ignore@3.3.8 deduped
│ ├── import-lazy@3.1.0
│ ├── imurmurhash@0.1.4 deduped
│ ├── known-css-properties@0.6.1
│ ├── lodash@4.17.10 deduped
│ ├─┬ log-symbols@2.2.0
│ │ └── chalk@2.4.1 deduped
│ ├── mathml-tag-names@2.1.0
│ ├─┬ meow@5.0.0
│ │ ├─┬ camelcase-keys@4.2.0
│ │ │ ├── camelcase@4.1.0 deduped
│ │ │ ├── map-obj@2.0.0
│ │ │ └── quick-lru@1.1.0
│ │ ├─┬ decamelize-keys@1.1.0
│ │ │ ├── decamelize@1.2.0 deduped
│ │ │ └── map-obj@1.0.1 deduped
│ │ ├── loud-rejection@1.6.0 deduped
│ │ ├─┬ minimist-options@3.0.2
│ │ │ ├── arrify@1.0.1 deduped
│ │ │ └── is-plain-obj@1.1.0
│ │ ├── normalize-package-data@2.4.0 deduped
│ │ ├─┬ read-pkg-up@3.0.0
│ │ │ ├── find-up@2.1.0 deduped
│ │ │ └─┬ read-pkg@3.0.0
│ │ │   ├─┬ load-json-file@4.0.0
│ │ │   │ ├── graceful-fs@4.1.11 deduped
│ │ │   │ ├── parse-json@4.0.0 deduped
│ │ │   │ ├── pify@3.0.0 deduped
│ │ │   │ └── strip-bom@3.0.0
│ │ │   ├── normalize-package-data@2.4.0 deduped
│ │ │   └─┬ path-type@3.0.0
│ │ │     └── pify@3.0.0 deduped
│ │ ├─┬ redent@2.0.0
│ │ │ ├── indent-string@3.2.0
│ │ │ └── strip-indent@2.0.0
│ │ ├── trim-newlines@2.0.0
│ │ └─┬ yargs-parser@10.0.0
│ │   └── camelcase@4.1.0 deduped
│ ├─┬ micromatch@2.3.11
│ │ ├─┬ arr-diff@2.0.0
│ │ │ └── arr-flatten@1.1.0 deduped
│ │ ├── array-unique@0.2.1
│ │ ├─┬ braces@1.8.5
│ │ │ ├─┬ expand-range@1.8.2
│ │ │ │ └─┬ fill-range@2.2.4
│ │ │ │   ├─┬ is-number@2.1.0
│ │ │ │   │ └─┬ kind-of@3.2.2
│ │ │ │   │   └── is-buffer@1.1.6 deduped
│ │ │ │   ├─┬ isobject@2.1.0
│ │ │ │   │ └── isarray@1.0.0
│ │ │ │   ├─┬ randomatic@3.0.0
│ │ │ │   │ ├── is-number@4.0.0
│ │ │ │   │ ├── kind-of@6.0.2 deduped
│ │ │ │   │ └── math-random@1.0.1
│ │ │ │   ├── repeat-element@1.1.2 deduped
│ │ │ │   └── repeat-string@1.6.1 deduped
│ │ │ ├── preserve@0.2.0
│ │ │ └── repeat-element@1.1.2 deduped
│ │ ├─┬ expand-brackets@0.1.5
│ │ │ └── is-posix-bracket@0.1.1
│ │ ├─┬ extglob@0.3.2
│ │ │ └── is-extglob@1.0.0 deduped
│ │ ├── filename-regex@2.0.1
│ │ ├── is-extglob@1.0.0
│ │ ├─┬ is-glob@2.0.1
│ │ │ └── is-extglob@1.0.0 deduped
│ │ ├─┬ kind-of@3.2.2
│ │ │ └── is-buffer@1.1.6 deduped
│ │ ├── normalize-path@2.1.1 deduped
│ │ ├─┬ object.omit@2.0.1
│ │ │ ├─┬ for-own@0.1.5
│ │ │ │ └── for-in@1.0.2 deduped
│ │ │ └── is-extendable@0.1.1 deduped
│ │ ├─┬ parse-glob@3.0.4
│ │ │ ├─┬ glob-base@0.3.0
│ │ │ │ ├─┬ glob-parent@2.0.0
│ │ │ │ │ └── is-glob@2.0.1 deduped
│ │ │ │ └─┬ is-glob@2.0.1
│ │ │ │   └── is-extglob@1.0.0
│ │ │ ├── is-dotfile@1.0.3
│ │ │ ├── is-extglob@1.0.0
│ │ │ └─┬ is-glob@2.0.1
│ │ │   └── is-extglob@1.0.0 deduped
│ │ └─┬ regex-cache@0.4.4
│ │   └─┬ is-equal-shallow@0.1.3
│ │     └── is-primitive@2.0.0
│ ├── normalize-selector@0.2.0
│ ├── pify@3.0.0
│ ├── postcss@6.0.22 deduped
│ ├─┬ postcss-html@0.28.0
│ │ └─┬ htmlparser2@3.9.2
│ │   ├── domelementtype@1.3.0 deduped
│ │   ├─┬ domhandler@2.4.2
│ │   │ └── domelementtype@1.3.0 deduped
│ │   ├── domutils@1.5.1 deduped
│ │   ├── entities@1.1.1 deduped
│ │   ├── inherits@2.0.3 deduped
│ │   └── readable-stream@2.3.6 deduped
│ ├─┬ postcss-less@2.0.0
│ │ └─┬ postcss@5.2.18
│ │   ├─┬ chalk@1.1.3
│ │   │ ├── ansi-styles@2.2.1
│ │   │ ├── escape-string-regexp@1.0.5 deduped
│ │   │ ├── has-ansi@2.0.0 deduped
│ │   │ ├── strip-ansi@3.0.1 deduped
│ │   │ └── supports-color@2.0.0
│ │   ├── js-base64@2.4.5 deduped
│ │   ├── source-map@0.5.7
│ │   └─┬ supports-color@3.2.3
│ │     └── has-flag@1.0.0
│ ├─┬ postcss-markdown@0.28.0
│ │ ├── remark@9.0.0 deduped
│ │ └─┬ unist-util-find-all-after@1.0.2
│ │   └── unist-util-is@2.1.2 deduped
│ ├── postcss-media-query-parser@0.2.3
│ ├─┬ postcss-reporter@5.0.0
│ │ ├── chalk@2.4.1 deduped
│ │ ├── lodash@4.17.10 deduped
│ │ ├── log-symbols@2.2.0 deduped
│ │ └── postcss@6.0.22 deduped
│ ├── postcss-resolve-nested-selector@0.1.1
│ ├─┬ postcss-safe-parser@3.0.1
│ │ └── postcss@6.0.22 deduped
│ ├── postcss-sass@0.3.2 deduped
│ ├─┬ postcss-scss@1.0.5
│ │ └── postcss@6.0.22 deduped
│ ├─┬ postcss-selector-parser@3.1.1
│ │ ├─┬ dot-prop@4.2.0
│ │ │ └── is-obj@1.0.1
│ │ ├── indexes-of@1.0.1
│ │ └── uniq@1.0.1
│ ├── postcss-syntax@0.28.0
│ ├── postcss-value-parser@3.3.0 deduped
│ ├── resolve-from@4.0.0
│ ├── signal-exit@3.0.2
│ ├── specificity@0.3.2
│ ├── string-width@2.1.1 deduped
│ ├── style-search@0.1.0
│ ├─┬ sugarss@1.0.1
│ │ └── postcss@6.0.22 deduped
│ ├── svg-tags@1.0.0
│ └── table@4.0.2 deduped
├─┬ stylelint-config-rational-order@0.0.2
│ └─┬ stylelint-order@0.8.1
│   ├── lodash@4.17.10 deduped
│   ├── postcss@6.0.22 deduped
│   └─┬ postcss-sorting@3.1.0
│     ├── lodash@4.17.10 deduped
│     └── postcss@6.0.22 deduped
├─┬ stylelint-config-recommended-scss@3.2.0
│ └── stylelint-config-recommended@2.1.0
├─┬ stylelint-processor-html@1.0.0
│ └─┬ htmlparser2@3.9.2
│   ├── domelementtype@1.3.0
│   ├─┬ domhandler@2.4.2
│   │ └── domelementtype@1.3.0 deduped
│   ├─┬ domutils@1.5.1
│   │ ├─┬ dom-serializer@0.1.0
│   │ │ ├── domelementtype@1.1.3
│   │ │ └── entities@1.1.1 deduped
│   │ └── domelementtype@1.3.0 deduped
│   ├── entities@1.1.1
│   ├── inherits@2.0.3 deduped
│   └── readable-stream@2.3.6 deduped
├─┬ stylelint-scss@3.1.3
│ ├── lodash@4.17.10 deduped
│ ├── postcss-media-query-parser@0.2.3 deduped
│ ├── postcss-resolve-nested-selector@0.1.1 deduped
│ ├─┬ postcss-selector-parser@4.0.0
│ │ ├── cssesc@1.0.1
│ │ ├── indexes-of@1.0.1 deduped
│ │ └── uniq@1.0.1 deduped
│ └── postcss-value-parser@3.3.0 deduped
├─┬ stylelint-webpack-plugin@0.10.5
│ ├── arrify@1.0.1
│ ├─┬ micromatch@3.1.10
│ │ ├── arr-diff@4.0.0
│ │ ├── array-unique@0.3.2
│ │ ├── braces@2.3.2 deduped
│ │ ├─┬ define-property@2.0.2
│ │ │ ├─┬ is-descriptor@1.0.2
│ │ │ │ ├─┬ is-accessor-descriptor@1.0.0
│ │ │ │ │ └── kind-of@6.0.2 deduped
│ │ │ │ ├─┬ is-data-descriptor@1.0.0
│ │ │ │ │ └── kind-of@6.0.2 deduped
│ │ │ │ └── kind-of@6.0.2 deduped
│ │ │ └── isobject@3.0.1 deduped
│ │ ├─┬ extend-shallow@3.0.2
│ │ │ ├── assign-symbols@1.0.0
│ │ │ └─┬ is-extendable@1.0.1
│ │ │   └── is-plain-object@2.0.4 deduped
│ │ ├─┬ extglob@2.0.4
│ │ │ ├── array-unique@0.3.2 deduped
│ │ │ ├─┬ define-property@1.0.0
│ │ │ │ └─┬ is-descriptor@1.0.2
│ │ │ │   ├─┬ is-accessor-descriptor@1.0.0
│ │ │ │   │ └── kind-of@6.0.2 deduped
│ │ │ │   ├─┬ is-data-descriptor@1.0.0
│ │ │ │   │ └── kind-of@6.0.2 deduped
│ │ │ │   └── kind-of@6.0.2 deduped
│ │ │ ├─┬ expand-brackets@2.1.4
│ │ │ │ ├─┬ debug@2.6.9
│ │ │ │ │ └── ms@2.0.0 deduped
│ │ │ │ ├─┬ define-property@0.2.5
│ │ │ │ │ └── is-descriptor@0.1.6 deduped
│ │ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ ├── posix-character-classes@0.1.1
│ │ │ │ ├── regex-not@1.0.2 deduped
│ │ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ │ └── to-regex@3.0.2 deduped
│ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ ├── fragment-cache@0.2.1 deduped
│ │ │ ├── regex-not@1.0.2 deduped
│ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ └── to-regex@3.0.2 deduped
│ │ ├─┬ fragment-cache@0.2.1
│ │ │ └── map-cache@0.2.2
│ │ ├── kind-of@6.0.2 deduped
│ │ ├─┬ nanomatch@1.2.9
│ │ │ ├── arr-diff@4.0.0 deduped
│ │ │ ├── array-unique@0.3.2 deduped
│ │ │ ├── define-property@2.0.2 deduped
│ │ │ ├── extend-shallow@3.0.2 deduped
│ │ │ ├── fragment-cache@0.2.1 deduped
│ │ │ ├─┬ is-odd@2.0.0
│ │ │ │ └── is-number@4.0.0
│ │ │ ├── is-windows@1.0.2 deduped
│ │ │ ├── kind-of@6.0.2 deduped
│ │ │ ├── object.pick@1.3.0 deduped
│ │ │ ├── regex-not@1.0.2 deduped
│ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ └── to-regex@3.0.2 deduped
│ │ ├─┬ object.pick@1.3.0
│ │ │ └── isobject@3.0.1 deduped
│ │ ├─┬ regex-not@1.0.2
│ │ │ ├── extend-shallow@3.0.2 deduped
│ │ │ └─┬ safe-regex@1.1.0
│ │ │   └── ret@0.1.15
│ │ ├─┬ snapdragon@0.8.2
│ │ │ ├─┬ base@0.11.2
│ │ │ │ ├─┬ cache-base@1.0.1
│ │ │ │ │ ├─┬ collection-visit@1.0.0
│ │ │ │ │ │ ├─┬ map-visit@1.0.0
│ │ │ │ │ │ │ └── object-visit@1.0.1 deduped
│ │ │ │ │ │ └─┬ object-visit@1.0.1
│ │ │ │ │ │   └── isobject@3.0.1 deduped
│ │ │ │ │ ├── component-emitter@1.2.1 deduped
│ │ │ │ │ ├── get-value@2.0.6
│ │ │ │ │ ├─┬ has-value@1.0.0
│ │ │ │ │ │ ├── get-value@2.0.6 deduped
│ │ │ │ │ │ ├─┬ has-values@1.0.0
│ │ │ │ │ │ │ ├── is-number@3.0.0 deduped
│ │ │ │ │ │ │ └─┬ kind-of@4.0.0
│ │ │ │ │ │ │   └── is-buffer@1.1.6 deduped
│ │ │ │ │ │ └── isobject@3.0.1 deduped
│ │ │ │ │ ├── isobject@3.0.1 deduped
│ │ │ │ │ ├─┬ set-value@2.0.0
│ │ │ │ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ │ │ ├── is-extendable@0.1.1 deduped
│ │ │ │ │ │ ├── is-plain-object@2.0.4 deduped
│ │ │ │ │ │ └── split-string@3.1.0 deduped
│ │ │ │ │ ├─┬ to-object-path@0.3.0
│ │ │ │ │ │ └─┬ kind-of@3.2.2
│ │ │ │ │ │   └── is-buffer@1.1.6 deduped
│ │ │ │ │ ├─┬ union-value@1.0.0
│ │ │ │ │ │ ├── arr-union@3.1.0 deduped
│ │ │ │ │ │ ├── get-value@2.0.6 deduped
│ │ │ │ │ │ ├── is-extendable@0.1.1 deduped
│ │ │ │ │ │ └─┬ set-value@0.4.3
│ │ │ │ │ │   ├─┬ extend-shallow@2.0.1
│ │ │ │ │ │   │ └── is-extendable@0.1.1 deduped
│ │ │ │ │ │   ├── is-extendable@0.1.1 deduped
│ │ │ │ │ │   ├── is-plain-object@2.0.4 deduped
│ │ │ │ │ │   └── to-object-path@0.3.0 deduped
│ │ │ │ │ └─┬ unset-value@1.0.0
│ │ │ │ │   ├─┬ has-value@0.3.1
│ │ │ │ │   │ ├── get-value@2.0.6 deduped
│ │ │ │ │   │ ├── has-values@0.1.4
│ │ │ │ │   │ └─┬ isobject@2.1.0
│ │ │ │ │   │   └── isarray@1.0.0
│ │ │ │ │   └── isobject@3.0.1 deduped
│ │ │ │ ├─┬ class-utils@0.3.6
│ │ │ │ │ ├── arr-union@3.1.0
│ │ │ │ │ ├─┬ define-property@0.2.5
│ │ │ │ │ │ └── is-descriptor@0.1.6 deduped
│ │ │ │ │ ├── isobject@3.0.1 deduped
│ │ │ │ │ └─┬ static-extend@0.1.2
│ │ │ │ │   ├─┬ define-property@0.2.5
│ │ │ │ │   │ └── is-descriptor@0.1.6 deduped
│ │ │ │ │   └─┬ object-copy@0.1.0
│ │ │ │ │     ├── copy-descriptor@0.1.1
│ │ │ │ │     ├─┬ define-property@0.2.5
│ │ │ │ │     │ └── is-descriptor@0.1.6 deduped
│ │ │ │ │     └─┬ kind-of@3.2.2
│ │ │ │ │       └── is-buffer@1.1.6 deduped
│ │ │ │ ├── component-emitter@1.2.1
│ │ │ │ ├─┬ define-property@1.0.0
│ │ │ │ │ └─┬ is-descriptor@1.0.2
│ │ │ │ │   ├─┬ is-accessor-descriptor@1.0.0
│ │ │ │ │   │ └── kind-of@6.0.2 deduped
│ │ │ │ │   ├─┬ is-data-descriptor@1.0.0
│ │ │ │ │   │ └── kind-of@6.0.2 deduped
│ │ │ │ │   └── kind-of@6.0.2 deduped
│ │ │ │ ├── isobject@3.0.1 deduped
│ │ │ │ ├─┬ mixin-deep@1.3.1
│ │ │ │ │ ├── for-in@1.0.2 deduped
│ │ │ │ │ └─┬ is-extendable@1.0.1
│ │ │ │ │   └── is-plain-object@2.0.4 deduped
│ │ │ │ └── pascalcase@0.1.1
│ │ │ ├─┬ debug@2.6.9
│ │ │ │ └── ms@2.0.0 deduped
│ │ │ ├─┬ define-property@0.2.5
│ │ │ │ └─┬ is-descriptor@0.1.6
│ │ │ │   ├─┬ is-accessor-descriptor@0.1.6
│ │ │ │   │ └─┬ kind-of@3.2.2
│ │ │ │   │   └── is-buffer@1.1.6 deduped
│ │ │ │   ├─┬ is-data-descriptor@0.1.4
│ │ │ │   │ └─┬ kind-of@3.2.2
│ │ │ │   │   └── is-buffer@1.1.6 deduped
│ │ │ │   └── kind-of@5.1.0
│ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ ├── map-cache@0.2.2 deduped
│ │ │ ├── source-map@0.5.7
│ │ │ ├─┬ source-map-resolve@0.5.2
│ │ │ │ ├── atob@2.1.1
│ │ │ │ ├── decode-uri-component@0.2.0
│ │ │ │ ├── resolve-url@0.2.1
│ │ │ │ ├── source-map-url@0.4.0
│ │ │ │ └── urix@0.1.0
│ │ │ └─┬ use@3.1.0
│ │ │   └── kind-of@6.0.2 deduped
│ │ └─┬ to-regex@3.0.2
│ │   ├── define-property@2.0.2 deduped
│ │   ├── extend-shallow@3.0.2 deduped
│ │   ├── regex-not@1.0.2 deduped
│ │   └── safe-regex@1.1.0 deduped
│ ├── object-assign@4.1.1 deduped
│ └── ramda@0.25.0
├─┬ uglifyjs-webpack-plugin@1.2.5
│ ├── cacache@10.0.4 deduped
│ ├── find-cache-dir@1.0.0 deduped
│ ├─┬ schema-utils@0.4.5
│ │ ├─┬ ajv@6.5.1
│ │ │ ├── fast-deep-equal@2.0.1
│ │ │ ├── fast-json-stable-stringify@2.0.0 deduped
│ │ │ ├── json-schema-traverse@0.4.1
│ │ │ └── uri-js@4.2.2 deduped
│ │ └── ajv-keywords@3.2.0
│ ├── serialize-javascript@1.5.0 deduped
│ ├── source-map@0.6.1
│ ├─┬ uglify-es@3.3.9
│ │ ├── commander@2.13.0
│ │ └── source-map@0.6.1 deduped
│ ├── webpack-sources@1.1.0 deduped
│ └─┬ worker-farm@1.6.0
│   └── errno@0.1.7 deduped
├─┬ url-loader@1.0.1
│ ├── loader-utils@1.1.0 deduped
│ ├── mime@2.3.1
│ └─┬ schema-utils@0.4.5
│   ├─┬ ajv@6.5.1
│   │ ├── fast-deep-equal@2.0.1
│   │ ├── fast-json-stable-stringify@2.0.0 deduped
│   │ ├── json-schema-traverse@0.4.1
│   │ └── uri-js@4.2.2 deduped
│   └── ajv-keywords@3.2.0
├─┬ v-calendar@0.9.7
│ └── vue@2.5.16 deduped
├─┬ v-tooltip@2.0.0-rc.33
│ ├── lodash.merge@4.6.1
│ ├── popper.js@1.14.3
│ └── vue-resize@0.4.4
├── vue@2.5.16
├─┬ vue-loader@15.2.4
│ ├─┬ @vue/component-compiler-utils@1.3.1
│ │ ├─┬ consolidate@0.15.1
│ │ │ └── bluebird@3.5.1 deduped
│ │ ├── hash-sum@1.0.2 deduped
│ │ ├── lru-cache@4.1.3 deduped
│ │ ├─┬ merge-source-map@1.1.0
│ │ │ └── source-map@0.6.1 deduped
│ │ ├── postcss@6.0.22 deduped
│ │ ├─┬ postcss-selector-parser@3.1.1
│ │ │ ├── dot-prop@4.2.0 deduped
│ │ │ ├── indexes-of@1.0.1 deduped
│ │ │ └── uniq@1.0.1 deduped
│ │ ├── prettier@1.13.5 deduped
│ │ ├── source-map@0.5.7
│ │ └── vue-template-es2015-compiler@1.6.0
│ ├── hash-sum@1.0.2
│ ├── loader-utils@1.1.0 deduped
│ ├── vue-hot-reload-api@2.3.0
│ └── vue-style-loader@4.1.0 deduped
├── vue-router@3.0.1
├─┬ vue-style-loader@4.1.0
│ ├── hash-sum@1.0.2 deduped
│ └── loader-utils@1.1.0 deduped
├─┬ vue-styleguidist@1.7.10
│ ├─┬ @vxna/mini-html-webpack-template@0.1.7
│ │ └── common-tags@1.8.0
│ ├── acorn@5.7.1 deduped
│ ├── ast-types@0.11.5
│ ├─┬ buble@0.19.3
│ │ ├── acorn@5.7.1 deduped
│ │ ├── acorn-dynamic-import@3.0.0 deduped
│ │ ├─┬ acorn-jsx@4.1.1
│ │ │ └── acorn@5.7.1 deduped
│ │ ├── chalk@2.4.1 deduped
│ │ ├─┬ magic-string@0.22.5
│ │ │ └── vlq@0.2.3
│ │ ├── minimist@1.2.0
│ │ ├── os-homedir@1.0.2
│ │ └── vlq@1.0.0
│ ├── chalk@2.4.1 deduped
│ ├── classnames@2.2.6
│ ├── clean-webpack-plugin@0.1.19 deduped
│ ├── clipboard-copy@2.0.0
│ ├── codemirror@5.38.0
│ ├─┬ common-dir@1.0.1
│ │ └── common-sequence@1.0.2 deduped
│ ├── copy-webpack-plugin@4.5.1 deduped
│ ├── css-loader@0.28.11 deduped
│ ├── doctrine@2.1.0 deduped
│ ├── es6-object-assign@1.1.0
│ ├── es6-promise@4.2.4
│ ├── escodegen@1.10.0 deduped
│ ├── esprima@4.0.0
│ ├─┬ findup@0.1.5
│ │ ├── colors@0.6.2
│ │ └── commander@2.1.0
│ ├── function.name-polyfill@1.0.6
│ ├─┬ github-slugger@1.2.0
│ │ └── emoji-regex@6.1.1
│ ├── glob@7.1.2 deduped
│ ├─┬ glogg@1.0.1
│ │ └── sparkles@1.0.1
│ ├── highlight.js@9.12.0
│ ├── is-directory@0.3.1
│ ├── javascript-stringify@1.6.0
│ ├─┬ jss@9.8.6
│ │ ├── is-in-browser@1.1.3
│ │ ├── symbol-observable@1.2.0
│ │ └─┬ warning@3.0.0
│ │   └── loose-envify@1.3.1 deduped
│ ├─┬ jss-camel-case@6.1.0
│ │ └── hyphenate-style-name@1.0.2
│ ├─┬ jss-compose@5.0.0
│ │ └── warning@3.0.0 deduped
│ ├── jss-default-unit@8.0.2
│ ├── jss-global@3.0.0
│ ├─┬ jss-isolate@5.1.0
│ │ └── css-initials@0.2.0
│ ├─┬ jss-nested@6.0.1
│ │ └── warning@3.0.0 deduped
│ ├── leven@2.1.0
│ ├── listify@1.0.0
│ ├── loader-utils@1.1.0 deduped
│ ├── lodash@4.17.10 deduped
│ ├── lowercase-keys@1.0.1
│ ├─┬ markdown-to-jsx@6.6.7
│ │ ├── prop-types@15.6.2 deduped
│ │ └── unquote@1.1.1
│ ├─┬ mini-html-webpack-plugin@0.2.3
│ │ └── webpack-sources@1.1.0 deduped
│ ├── minimist@1.2.0
│ ├── opn@5.3.0 deduped
│ ├─┬ ora@2.1.0
│ │ ├── chalk@2.4.1 deduped
│ │ ├── cli-cursor@2.1.0 deduped
│ │ ├── cli-spinners@1.3.1
│ │ ├── log-symbols@2.2.0 deduped
│ │ ├─┬ strip-ansi@4.0.0
│ │ │ └── ansi-regex@3.0.0
│ │ └─┬ wcwidth@1.0.1
│ │   └─┬ defaults@1.0.3
│ │     └── clone@1.0.4 deduped
│ ├─┬ prop-types@15.6.2
│ │ ├── loose-envify@1.3.1 deduped
│ │ └── object-assign@4.1.1 deduped
│ ├─┬ q-i@2.0.1
│ │ ├── ansi-styles@3.2.1 deduped
│ │ ├── is-plain-object@2.0.4 deduped
│ │ └─┬ stringify-object@3.2.2
│ │   ├── get-own-enumerable-property-symbols@2.0.1
│ │   ├── is-obj@1.0.1 deduped
│ │   └── is-regexp@1.0.0 deduped
│ ├─┬ react@16.4.1
│ │ ├─┬ fbjs@0.8.17
│ │ │ ├── core-js@1.2.7
│ │ │ ├─┬ isomorphic-fetch@2.2.1
│ │ │ │ ├─┬ node-fetch@1.7.3
│ │ │ │ │ ├─┬ encoding@0.1.12
│ │ │ │ │ │ └── iconv-lite@0.4.23 deduped
│ │ │ │ │ └── is-stream@1.1.0 deduped
│ │ │ │ └── whatwg-fetch@2.0.4
│ │ │ ├── loose-envify@1.3.1 deduped
│ │ │ ├── object-assign@4.1.1 deduped
│ │ │ ├─┬ promise@7.3.1
│ │ │ │ └── asap@2.0.6
│ │ │ ├── setimmediate@1.0.5
│ │ │ └── ua-parser-js@0.7.18
│ │ ├── loose-envify@1.3.1 deduped
│ │ ├── object-assign@4.1.1 deduped
│ │ └── prop-types@15.6.2 deduped
│ ├── react-codemirror2@4.3.0
│ ├─┬ react-dev-utils@5.0.1
│ │ ├── address@1.0.3
│ │ ├── babel-code-frame@6.26.0 deduped
│ │ ├─┬ chalk@1.1.3
│ │ │ ├── ansi-styles@2.2.1
│ │ │ ├── escape-string-regexp@1.0.5 deduped
│ │ │ ├── has-ansi@2.0.0 deduped
│ │ │ ├── strip-ansi@3.0.1 deduped
│ │ │ └── supports-color@2.0.0
│ │ ├─┬ cross-spawn@5.1.0
│ │ │ ├── lru-cache@4.1.3 deduped
│ │ │ ├── shebang-command@1.2.0 deduped
│ │ │ └── which@1.3.1 deduped
│ │ ├─┬ detect-port-alt@1.1.6
│ │ │ ├── address@1.0.3 deduped
│ │ │ └─┬ debug@2.6.9
│ │ │   └── ms@2.0.0 deduped
│ │ ├── escape-string-regexp@1.0.5 deduped
│ │ ├── filesize@3.5.11 deduped
│ │ ├─┬ global-modules@1.0.0
│ │ │ ├─┬ global-prefix@1.0.2
│ │ │ │ ├─┬ expand-tilde@2.0.2
│ │ │ │ │ └── homedir-polyfill@1.0.1 deduped
│ │ │ │ ├─┬ homedir-polyfill@1.0.1
│ │ │ │ │ └── parse-passwd@1.0.0
│ │ │ │ ├── ini@1.3.5 deduped
│ │ │ │ ├── is-windows@1.0.2 deduped
│ │ │ │ └── which@1.3.1 deduped
│ │ │ ├── is-windows@1.0.2 deduped
│ │ │ └─┬ resolve-dir@1.0.1
│ │ │   ├── expand-tilde@2.0.2 deduped
│ │ │   └── global-modules@1.0.0 deduped
│ │ ├─┬ gzip-size@3.0.0
│ │ │ └── duplexer@0.1.1 deduped
│ │ ├── inquirer@3.3.0 deduped
│ │ ├── is-root@1.0.0
│ │ ├─┬ opn@5.2.0
│ │ │ └── is-wsl@1.1.0 deduped
│ │ ├── react-error-overlay@4.0.0
│ │ ├─┬ recursive-readdir@2.2.1
│ │ │ └─┬ minimatch@3.0.3
│ │ │   └── brace-expansion@1.1.11 deduped
│ │ ├─┬ shell-quote@1.6.1
│ │ │ ├── array-filter@0.0.1
│ │ │ ├── array-map@0.0.0
│ │ │ ├── array-reduce@0.0.0
│ │ │ └── jsonify@0.0.0
│ │ ├── sockjs-client@1.1.4 deduped
│ │ ├── strip-ansi@3.0.1 deduped
│ │ └── text-table@0.2.0 deduped
│ ├─┬ react-dom@16.4.1
│ │ ├── fbjs@0.8.17 deduped
│ │ ├── loose-envify@1.3.1 deduped
│ │ ├── object-assign@4.1.1 deduped
│ │ └── prop-types@15.6.2 deduped
│ ├─┬ react-group@1.0.6
│ │ └── prop-types@15.6.2 deduped
│ ├─┬ react-icons@2.2.7
│ │ └── react-icon-base@2.1.0
│ ├─┬ remark@9.0.0
│ │ ├─┬ remark-parse@5.0.0
│ │ │ ├── collapse-white-space@1.0.4
│ │ │ ├── is-alphabetical@1.0.2
│ │ │ ├── is-decimal@1.0.2
│ │ │ ├── is-whitespace-character@1.0.2
│ │ │ ├── is-word-character@1.0.2
│ │ │ ├── markdown-escapes@1.0.2
│ │ │ ├─┬ parse-entities@1.1.2
│ │ │ │ ├── character-entities@1.2.2
│ │ │ │ ├── character-entities-legacy@1.1.2
│ │ │ │ ├── character-reference-invalid@1.1.2
│ │ │ │ ├─┬ is-alphanumerical@1.0.2
│ │ │ │ │ ├── is-alphabetical@1.0.2 deduped
│ │ │ │ │ └── is-decimal@1.0.2 deduped
│ │ │ │ ├── is-decimal@1.0.2 deduped
│ │ │ │ └── is-hexadecimal@1.0.2
│ │ │ ├── repeat-string@1.6.1
│ │ │ ├── state-toggle@1.0.1
│ │ │ ├── trim@0.0.1
│ │ │ ├── trim-trailing-lines@1.1.1
│ │ │ ├─┬ unherit@1.1.1
│ │ │ │ ├── inherits@2.0.3 deduped
│ │ │ │ └── xtend@4.0.1 deduped
│ │ │ ├─┬ unist-util-remove-position@1.1.2
│ │ │ │ └── unist-util-visit@1.3.1 deduped
│ │ │ ├── vfile-location@2.0.3
│ │ │ └── xtend@4.0.1
│ │ ├─┬ remark-stringify@5.0.0
│ │ │ ├── ccount@1.0.3
│ │ │ ├── is-alphanumeric@1.0.0
│ │ │ ├── is-decimal@1.0.2 deduped
│ │ │ ├── is-whitespace-character@1.0.2 deduped
│ │ │ ├── longest-streak@2.0.2
│ │ │ ├── markdown-escapes@1.0.2 deduped
│ │ │ ├── markdown-table@1.1.2
│ │ │ ├─┬ mdast-util-compact@1.0.1
│ │ │ │ ├─┬ unist-util-modify-children@1.1.2
│ │ │ │ │ └── array-iterate@1.1.2
│ │ │ │ └── unist-util-visit@1.3.1 deduped
│ │ │ ├── parse-entities@1.1.2 deduped
│ │ │ ├── repeat-string@1.6.1 deduped
│ │ │ ├── state-toggle@1.0.1 deduped
│ │ │ ├─┬ stringify-entities@1.3.2
│ │ │ │ ├── character-entities-html4@1.1.2
│ │ │ │ ├── character-entities-legacy@1.1.2 deduped
│ │ │ │ ├── is-alphanumerical@1.0.2 deduped
│ │ │ │ └── is-hexadecimal@1.0.2 deduped
│ │ │ ├── unherit@1.1.1 deduped
│ │ │ └── xtend@4.0.1 deduped
│ │ └─┬ unified@6.2.0
│ │   ├── bail@1.0.3
│ │   ├── extend@3.0.1 deduped
│ │   ├── is-plain-obj@1.1.0 deduped
│ │   ├── trough@1.0.2
│ │   ├─┬ vfile@2.3.0
│ │   │ ├── is-buffer@1.1.6 deduped
│ │   │ ├── replace-ext@1.0.0
│ │   │ ├── unist-util-stringify-position@1.1.2
│ │   │ └─┬ vfile-message@1.0.1
│ │   │   └── unist-util-stringify-position@1.1.2 deduped
│ │   └── x-is-string@0.1.0
│ ├─┬ strip-comments@0.4.4
│ │ ├─┬ extend-shallow@2.0.1
│ │ │ └── is-extendable@0.1.1 deduped
│ │ └─┬ extract-comments@0.10.1
│ │   ├─┬ define-property@0.2.5
│ │   │ └── is-descriptor@0.1.6 deduped
│ │   ├─┬ esprima-extract-comments@0.2.1
│ │   │ └── esprima@2.7.3 deduped
│ │   ├─┬ extend-shallow@2.0.1
│ │   │ └── is-extendable@0.1.1 deduped
│ │   └── parse-code-context@0.2.2
│ ├─┬ style-loader@0.20.3
│ │ ├── loader-utils@1.1.0 deduped
│ │ └─┬ schema-utils@0.4.5
│ │   ├─┬ ajv@6.5.1
│ │   │ ├── fast-deep-equal@2.0.1
│ │   │ ├── fast-json-stable-stringify@2.0.0 deduped
│ │   │ ├── json-schema-traverse@0.4.1
│ │   │ └── uri-js@4.2.2 deduped
│ │   └── ajv-keywords@3.2.0
│ ├─┬ to-ast@1.0.0
│ │ ├── ast-types@0.7.8
│ │ └── esprima@2.7.3 deduped
│ ├── type-detect@4.0.8 deduped
│ ├─┬ uglifyjs-webpack-plugin@1.2.4
│ │ ├── cacache@10.0.4 deduped
│ │ ├── find-cache-dir@1.0.0 deduped
│ │ ├── schema-utils@0.4.5 deduped
│ │ ├── serialize-javascript@1.5.0 deduped
│ │ ├── source-map@0.6.1 deduped
│ │ ├─┬ uglify-es@3.3.9
│ │ │ ├── commander@2.13.0
│ │ │ └── source-map@0.6.1 deduped
│ │ ├── webpack-sources@1.1.0 deduped
│ │ └── worker-farm@1.6.0 deduped
│ ├─┬ unist-util-visit@1.3.1
│ │ └── unist-util-is@2.1.2
│ ├─┬ vue-docgen-api@2.3.11
│ │ ├── babel-core@6.26.3 deduped
│ │ ├── babel-plugin-transform-object-rest-spread@6.26.0 deduped
│ │ ├── babel-plugin-transform-runtime@6.23.0 deduped
│ │ ├── babel-preset-env@1.7.0 deduped
│ │ ├─┬ babel-preset-flow@6.23.0
│ │ │ └─┬ babel-plugin-transform-flow-strip-types@6.22.0
│ │ │   ├── babel-plugin-syntax-flow@6.18.0
│ │ │   └── babel-runtime@6.26.0 deduped
│ │ ├── babel-preset-stage-2@6.24.1 deduped
│ │ ├── babel-preset-stage-3@6.24.1 deduped
│ │ ├── doctrine@2.1.0 deduped
│ │ ├── hash-sum@1.0.2 deduped
│ │ ├─┬ htmlparser2@3.9.2
│ │ │ ├── domelementtype@1.3.0 deduped
│ │ │ ├─┬ domhandler@2.4.2
│ │ │ │ └── domelementtype@1.3.0 deduped
│ │ │ ├── domutils@1.5.1 deduped
│ │ │ ├── entities@1.1.1 deduped
│ │ │ ├── inherits@2.0.3 deduped
│ │ │ └── readable-stream@2.3.6 deduped
│ │ ├─┬ jsdoc-api@3.0.0
│ │ │ ├─┬ array-back@1.0.4
│ │ │ │ └── typical@2.6.1 deduped
│ │ │ ├── cache-point@0.4.1 deduped
│ │ │ ├── collect-all@1.0.3 deduped
│ │ │ ├─┬ file-set@1.1.1
│ │ │ │ ├── array-back@1.0.4 deduped
│ │ │ │ └── glob@7.1.2 deduped
│ │ │ ├── fs-then-native@2.0.0 deduped
│ │ │ ├─┬ jsdoc-75lb@3.6.0
│ │ │ │ ├── bluebird@3.4.7
│ │ │ │ ├── catharsis@0.8.9 deduped
│ │ │ │ ├── escape-string-regexp@1.0.5 deduped
│ │ │ │ ├─┬ espree@3.1.7
│ │ │ │ │ ├── acorn@3.3.0
│ │ │ │ │ └── acorn-jsx@3.0.1 deduped
│ │ │ │ ├── js2xmlparser@1.0.0
│ │ │ │ ├─┬ klaw@1.3.1
│ │ │ │ │ └── graceful-fs@4.1.11 deduped
│ │ │ │ ├── marked@0.3.19 deduped
│ │ │ │ ├── mkdirp@0.5.1 deduped
│ │ │ │ ├── requizzle@0.2.1 deduped
│ │ │ │ ├── strip-json-comments@2.0.1 deduped
│ │ │ │ ├── taffydb@2.6.2 deduped
│ │ │ │ └── underscore@1.8.3 deduped
│ │ │ ├── object-to-spawn-args@1.1.1 deduped
│ │ │ ├── temp-path@1.0.0 deduped
│ │ │ └── walk-back@2.0.1
│ │ ├── lru-cache@4.1.3 deduped
│ │ ├── vue@2.5.16 deduped
│ │ └── vue-template-compiler@2.5.16 deduped
│ ├── UNMET PEER DEPENDENCY webpack@^2.2.0 || ^3.0.0
│ ├─┬ webpack-dev-server@2.11.2
│ │ ├── ansi-html@0.0.7 deduped
│ │ ├── array-includes@3.0.3 deduped
│ │ ├── bonjour@3.5.0 deduped
│ │ ├── chokidar@2.0.4 deduped
│ │ ├── compression@1.7.2 deduped
│ │ ├── connect-history-api-fallback@1.5.0 deduped
│ │ ├── debug@3.1.0 deduped
│ │ ├─┬ del@3.0.0
│ │ │ ├─┬ globby@6.1.0
│ │ │ │ ├── array-union@1.0.2 deduped
│ │ │ │ ├── glob@7.1.2 deduped
│ │ │ │ ├── object-assign@4.1.1 deduped
│ │ │ │ ├── pify@2.3.0
│ │ │ │ └── pinkie-promise@2.0.1 deduped
│ │ │ ├── is-path-cwd@1.0.0 deduped
│ │ │ ├── is-path-in-cwd@1.0.1 deduped
│ │ │ ├── p-map@1.2.0 deduped
│ │ │ ├── pify@3.0.0
│ │ │ └── rimraf@2.6.2 deduped
│ │ ├── express@4.16.3 deduped
│ │ ├── html-entities@1.2.1 deduped
│ │ ├─┬ http-proxy-middleware@0.17.4
│ │ │ ├── http-proxy@1.17.0 deduped
│ │ │ ├─┬ is-glob@3.1.0
│ │ │ │ └── is-extglob@2.1.1 deduped
│ │ │ ├── lodash@4.17.10 deduped
│ │ │ └─┬ micromatch@2.3.11
│ │ │   ├─┬ arr-diff@2.0.0
│ │ │   │ └── arr-flatten@1.1.0 deduped
│ │ │   ├── array-unique@0.2.1
│ │ │   ├─┬ braces@1.8.5
│ │ │   │ ├── expand-range@1.8.2 deduped
│ │ │   │ ├── preserve@0.2.0 deduped
│ │ │   │ └── repeat-element@1.1.2 deduped
│ │ │   ├─┬ expand-brackets@0.1.5
│ │ │   │ └── is-posix-bracket@0.1.1 deduped
│ │ │   ├─┬ extglob@0.3.2
│ │ │   │ └── is-extglob@1.0.0
│ │ │   ├── filename-regex@2.0.1 deduped
│ │ │   ├── is-extglob@1.0.0
│ │ │   ├─┬ is-glob@2.0.1
│ │ │   │ └── is-extglob@1.0.0 deduped
│ │ │   ├─┬ kind-of@3.2.2
│ │ │   │ └── is-buffer@1.1.6 deduped
│ │ │   ├── normalize-path@2.1.1 deduped
│ │ │   ├── object.omit@2.0.1 deduped
│ │ │   ├── parse-glob@3.0.4 deduped
│ │ │   └── regex-cache@0.4.4 deduped
│ │ ├── import-local@1.0.0 deduped
│ │ ├── internal-ip@1.2.0 deduped
│ │ ├── ip@1.1.5 deduped
│ │ ├── killable@1.0.0 deduped
│ │ ├── loglevel@1.6.1 deduped
│ │ ├── opn@5.3.0 deduped
│ │ ├── portfinder@1.0.13 deduped
│ │ ├── selfsigned@1.10.3 deduped
│ │ ├── serve-index@1.9.1 deduped
│ │ ├── sockjs@0.3.19 deduped
│ │ ├── sockjs-client@1.1.4 deduped
│ │ ├── spdy@3.4.7 deduped
│ │ ├── strip-ansi@3.0.1 deduped
│ │ ├── supports-color@5.4.0 deduped
│ │ ├── UNMET PEER DEPENDENCY webpack@^1.0.0 || ^2.0.0 || ^3.0.0
│ │ ├─┬ webpack-dev-middleware@1.12.2
│ │ │ ├── memory-fs@0.4.1 deduped
│ │ │ ├── mime@1.6.0 deduped
│ │ │ ├── path-is-absolute@1.0.1 deduped
│ │ │ ├── range-parser@1.2.0 deduped
│ │ │ └── time-stamp@2.0.0
│ │ └─┬ yargs@6.6.0
│ │   ├── camelcase@3.0.0
│ │   ├── cliui@3.2.0 deduped
│ │   ├── decamelize@1.2.0 deduped
│ │   ├── get-caller-file@1.0.2 deduped
│ │   ├─┬ os-locale@1.4.0
│ │   │ └── lcid@1.0.0 deduped
│ │   ├── read-pkg-up@1.0.1 deduped
│ │   ├── require-directory@2.1.1 deduped
│ │   ├── require-main-filename@1.0.1 deduped
│ │   ├── set-blocking@2.0.0 deduped
│ │   ├─┬ string-width@1.0.2
│ │   │ ├── code-point-at@1.1.0 deduped
│ │   │ ├── is-fullwidth-code-point@1.0.0 deduped
│ │   │ └── strip-ansi@3.0.1 deduped
│ │   ├── which-module@1.0.0
│ │   ├── y18n@3.2.1
│ │   └─┬ yargs-parser@4.2.1
│ │     └── camelcase@3.0.0 deduped
│ └─┬ webpack-merge@4.1.3
│   └── lodash@4.17.10 deduped
├─┬ vue-template-compiler@2.5.16
│ ├── de-indent@1.0.2
│ └── he@1.1.1 deduped
├── vuelidate@0.7.4
├── vuex@3.0.1
├─┬ UNMET PEER DEPENDENCY webpack@4.12.0
│ ├─┬ @webassemblyjs/ast@1.5.12
│ │ ├── @webassemblyjs/helper-module-context@1.5.12 deduped
│ │ ├── @webassemblyjs/helper-wasm-bytecode@1.5.12
│ │ ├─┬ @webassemblyjs/wast-parser@1.5.12
│ │ │ ├── @webassemblyjs/ast@1.5.12 deduped
│ │ │ ├── @webassemblyjs/floating-point-hex-parser@1.5.12
│ │ │ ├── @webassemblyjs/helper-api-error@1.5.12 deduped
│ │ │ ├─┬ @webassemblyjs/helper-code-frame@1.5.12
│ │ │ │ └── @webassemblyjs/wast-printer@1.5.12 deduped
│ │ │ ├── @webassemblyjs/helper-fsm@1.5.12
│ │ │ ├── long@3.2.0
│ │ │ └── mamacro@0.0.3 deduped
│ │ ├── debug@3.1.0 deduped
│ │ └── mamacro@0.0.3
│ ├─┬ @webassemblyjs/helper-module-context@1.5.12
│ │ ├── debug@3.1.0 deduped
│ │ └── mamacro@0.0.3 deduped
│ ├─┬ @webassemblyjs/wasm-edit@1.5.12
│ │ ├── @webassemblyjs/ast@1.5.12 deduped
│ │ ├─┬ @webassemblyjs/helper-buffer@1.5.12
│ │ │ └── debug@3.1.0 deduped
│ │ ├── @webassemblyjs/helper-wasm-bytecode@1.5.12 deduped
│ │ ├─┬ @webassemblyjs/helper-wasm-section@1.5.12
│ │ │ ├── @webassemblyjs/ast@1.5.12 deduped
│ │ │ ├── @webassemblyjs/helper-buffer@1.5.12 deduped
│ │ │ ├── @webassemblyjs/helper-wasm-bytecode@1.5.12 deduped
│ │ │ ├── @webassemblyjs/wasm-gen@1.5.12 deduped
│ │ │ └── debug@3.1.0 deduped
│ │ ├─┬ @webassemblyjs/wasm-gen@1.5.12
│ │ │ ├── @webassemblyjs/ast@1.5.12 deduped
│ │ │ ├── @webassemblyjs/helper-wasm-bytecode@1.5.12 deduped
│ │ │ ├── @webassemblyjs/ieee754@1.5.12 deduped
│ │ │ ├── @webassemblyjs/leb128@1.5.12 deduped
│ │ │ └── @webassemblyjs/utf8@1.5.12 deduped
│ │ ├── @webassemblyjs/wasm-opt@1.5.12 deduped
│ │ ├── @webassemblyjs/wasm-parser@1.5.12 deduped
│ │ ├─┬ @webassemblyjs/wast-printer@1.5.12
│ │ │ ├── @webassemblyjs/ast@1.5.12 deduped
│ │ │ ├── @webassemblyjs/wast-parser@1.5.12 deduped
│ │ │ └── long@3.2.0 deduped
│ │ └── debug@3.1.0 deduped
│ ├─┬ @webassemblyjs/wasm-opt@1.5.12
│ │ ├── @webassemblyjs/ast@1.5.12 deduped
│ │ ├── @webassemblyjs/helper-buffer@1.5.12 deduped
│ │ ├── @webassemblyjs/wasm-gen@1.5.12 deduped
│ │ ├── @webassemblyjs/wasm-parser@1.5.12 deduped
│ │ └── debug@3.1.0 deduped
│ ├─┬ @webassemblyjs/wasm-parser@1.5.12
│ │ ├── @webassemblyjs/ast@1.5.12 deduped
│ │ ├── @webassemblyjs/helper-api-error@1.5.12
│ │ ├── @webassemblyjs/helper-wasm-bytecode@1.5.12 deduped
│ │ ├─┬ @webassemblyjs/ieee754@1.5.12
│ │ │ └── ieee754@1.1.12
│ │ ├─┬ @webassemblyjs/leb128@1.5.12
│ │ │ └── leb@0.3.0
│ │ └── @webassemblyjs/utf8@1.5.12
│ ├── acorn@5.7.1 deduped
│ ├─┬ acorn-dynamic-import@3.0.0
│ │ └── acorn@5.7.1 deduped
│ ├─┬ ajv@6.5.1
│ │ ├── fast-deep-equal@2.0.1
│ │ ├── fast-json-stable-stringify@2.0.0 deduped
│ │ ├── json-schema-traverse@0.4.1
│ │ └─┬ uri-js@4.2.2
│ │   └── punycode@2.1.1 deduped
│ ├── ajv-keywords@3.2.0
│ ├─┬ chrome-trace-event@1.0.0
│ │ └── tslib@1.9.2
│ ├─┬ enhanced-resolve@4.0.0
│ │ ├── graceful-fs@4.1.11 deduped
│ │ ├── memory-fs@0.4.1 deduped
│ │ └── tapable@1.0.0 deduped
│ ├── eslint-scope@3.7.1 deduped
│ ├── json-parse-better-errors@1.0.2
│ ├── loader-runner@2.3.0
│ ├── loader-utils@1.1.0 deduped
│ ├── memory-fs@0.4.1 deduped
│ ├── micromatch@3.1.10 deduped
│ ├── mkdirp@0.5.1 deduped
│ ├── neo-async@2.5.1 deduped
│ ├─┬ node-libs-browser@2.1.0
│ │ ├─┬ assert@1.4.1
│ │ │ └─┬ util@0.10.3
│ │ │   └── inherits@2.0.1
│ │ ├─┬ browserify-zlib@0.2.0
│ │ │ └── pako@1.0.6
│ │ ├─┬ buffer@4.9.1
│ │ │ ├── base64-js@1.3.0
│ │ │ ├── ieee754@1.1.12 deduped
│ │ │ └── isarray@1.0.0
│ │ ├─┬ console-browserify@1.1.0
│ │ │ └── date-now@0.1.4
│ │ ├── constants-browserify@1.0.0
│ │ ├─┬ crypto-browserify@3.12.0
│ │ │ ├─┬ browserify-cipher@1.0.1
│ │ │ │ ├─┬ browserify-aes@1.2.0
│ │ │ │ │ ├── buffer-xor@1.0.3
│ │ │ │ │ ├── cipher-base@1.0.4 deduped
│ │ │ │ │ ├── create-hash@1.2.0 deduped
│ │ │ │ │ ├── evp_bytestokey@1.0.3 deduped
│ │ │ │ │ ├── inherits@2.0.3 deduped
│ │ │ │ │ └── safe-buffer@5.1.2 deduped
│ │ │ │ ├─┬ browserify-des@1.0.1
│ │ │ │ │ ├── cipher-base@1.0.4 deduped
│ │ │ │ │ ├─┬ des.js@1.0.0
│ │ │ │ │ │ ├── inherits@2.0.3 deduped
│ │ │ │ │ │ └── minimalistic-assert@1.0.1 deduped
│ │ │ │ │ └── inherits@2.0.3 deduped
│ │ │ │ └─┬ evp_bytestokey@1.0.3
│ │ │ │   ├── md5.js@1.3.4 deduped
│ │ │ │   └── safe-buffer@5.1.2 deduped
│ │ │ ├─┬ browserify-sign@4.0.4
│ │ │ │ ├── bn.js@4.11.8
│ │ │ │ ├─┬ browserify-rsa@4.0.1
│ │ │ │ │ ├── bn.js@4.11.8 deduped
│ │ │ │ │ └── randombytes@2.0.6 deduped
│ │ │ │ ├── create-hash@1.2.0 deduped
│ │ │ │ ├── create-hmac@1.1.7 deduped
│ │ │ │ ├─┬ elliptic@6.4.0
│ │ │ │ │ ├── bn.js@4.11.8 deduped
│ │ │ │ │ ├── brorand@1.1.0
│ │ │ │ │ ├─┬ hash.js@1.1.4
│ │ │ │ │ │ ├── inherits@2.0.3 deduped
│ │ │ │ │ │ └── minimalistic-assert@1.0.1 deduped
│ │ │ │ │ ├─┬ hmac-drbg@1.0.1
│ │ │ │ │ │ ├── hash.js@1.1.4 deduped
│ │ │ │ │ │ ├── minimalistic-assert@1.0.1 deduped
│ │ │ │ │ │ └── minimalistic-crypto-utils@1.0.1 deduped
│ │ │ │ │ ├── inherits@2.0.3 deduped
│ │ │ │ │ ├── minimalistic-assert@1.0.1 deduped
│ │ │ │ │ └── minimalistic-crypto-utils@1.0.1
│ │ │ │ ├── inherits@2.0.3 deduped
│ │ │ │ └─┬ parse-asn1@5.1.1
│ │ │ │   ├─┬ asn1.js@4.10.1
│ │ │ │   │ ├── bn.js@4.11.8 deduped
│ │ │ │   │ ├── inherits@2.0.3 deduped
│ │ │ │   │ └── minimalistic-assert@1.0.1 deduped
│ │ │ │   ├── browserify-aes@1.2.0 deduped
│ │ │ │   ├── create-hash@1.2.0 deduped
│ │ │ │   ├── evp_bytestokey@1.0.3 deduped
│ │ │ │   └── pbkdf2@3.0.16 deduped
│ │ │ ├─┬ create-ecdh@4.0.3
│ │ │ │ ├── bn.js@4.11.8 deduped
│ │ │ │ └── elliptic@6.4.0 deduped
│ │ │ ├─┬ create-hash@1.2.0
│ │ │ │ ├─┬ cipher-base@1.0.4
│ │ │ │ │ ├── inherits@2.0.3 deduped
│ │ │ │ │ └── safe-buffer@5.1.2 deduped
│ │ │ │ ├── inherits@2.0.3 deduped
│ │ │ │ ├─┬ md5.js@1.3.4
│ │ │ │ │ ├─┬ hash-base@3.0.4
│ │ │ │ │ │ ├── inherits@2.0.3 deduped
│ │ │ │ │ │ └── safe-buffer@5.1.2 deduped
│ │ │ │ │ └── inherits@2.0.3 deduped
│ │ │ │ ├─┬ ripemd160@2.0.2
│ │ │ │ │ ├── hash-base@3.0.4 deduped
│ │ │ │ │ └── inherits@2.0.3 deduped
│ │ │ │ └─┬ sha.js@2.4.11
│ │ │ │   ├── inherits@2.0.3 deduped
│ │ │ │   └── safe-buffer@5.1.2 deduped
│ │ │ ├─┬ create-hmac@1.1.7
│ │ │ │ ├── cipher-base@1.0.4 deduped
│ │ │ │ ├── create-hash@1.2.0 deduped
│ │ │ │ ├── inherits@2.0.3 deduped
│ │ │ │ ├── ripemd160@2.0.2 deduped
│ │ │ │ ├── safe-buffer@5.1.2 deduped
│ │ │ │ └── sha.js@2.4.11 deduped
│ │ │ ├─┬ diffie-hellman@5.0.3
│ │ │ │ ├── bn.js@4.11.8 deduped
│ │ │ │ ├─┬ miller-rabin@4.0.1
│ │ │ │ │ ├── bn.js@4.11.8 deduped
│ │ │ │ │ └── brorand@1.1.0 deduped
│ │ │ │ └── randombytes@2.0.6 deduped
│ │ │ ├── inherits@2.0.3 deduped
│ │ │ ├─┬ pbkdf2@3.0.16
│ │ │ │ ├── create-hash@1.2.0 deduped
│ │ │ │ ├── create-hmac@1.1.7 deduped
│ │ │ │ ├── ripemd160@2.0.2 deduped
│ │ │ │ ├── safe-buffer@5.1.2 deduped
│ │ │ │ └── sha.js@2.4.11 deduped
│ │ │ ├─┬ public-encrypt@4.0.2
│ │ │ │ ├── bn.js@4.11.8 deduped
│ │ │ │ ├── browserify-rsa@4.0.1 deduped
│ │ │ │ ├── create-hash@1.2.0 deduped
│ │ │ │ ├── parse-asn1@5.1.1 deduped
│ │ │ │ └── randombytes@2.0.6 deduped
│ │ │ ├─┬ randombytes@2.0.6
│ │ │ │ └── safe-buffer@5.1.2 deduped
│ │ │ └─┬ randomfill@1.0.4
│ │ │   ├── randombytes@2.0.6 deduped
│ │ │   └── safe-buffer@5.1.2 deduped
│ │ ├── domain-browser@1.2.0
│ │ ├── events@1.1.1
│ │ ├── https-browserify@1.0.0
│ │ ├── os-browserify@0.3.0
│ │ ├── path-browserify@0.0.0
│ │ ├── process@0.11.10
│ │ ├── punycode@1.4.1
│ │ ├── querystring-es3@0.2.1
│ │ ├── readable-stream@2.3.6 deduped
│ │ ├─┬ stream-browserify@2.0.1
│ │ │ ├── inherits@2.0.3 deduped
│ │ │ └── readable-stream@2.3.6 deduped
│ │ ├─┬ stream-http@2.8.3
│ │ │ ├── builtin-status-codes@3.0.0
│ │ │ ├── inherits@2.0.3 deduped
│ │ │ ├── readable-stream@2.3.6 deduped
│ │ │ ├── to-arraybuffer@1.0.1
│ │ │ └── xtend@4.0.1 deduped
│ │ ├─┬ string_decoder@1.1.1
│ │ │ └── safe-buffer@5.1.2 deduped
│ │ ├─┬ timers-browserify@2.0.10
│ │ │ └── setimmediate@1.0.5 deduped
│ │ ├── tty-browserify@0.0.0
│ │ ├─┬ url@0.11.0
│ │ │ ├── punycode@1.3.2
│ │ │ └── querystring@0.2.0
│ │ ├─┬ util@0.10.4
│ │ │ └── inherits@2.0.3 deduped
│ │ └─┬ vm-browserify@0.0.4
│ │   └── indexof@0.0.1
│ ├─┬ schema-utils@0.4.5
│ │ ├── ajv@6.5.1 deduped
│ │ └── ajv-keywords@3.2.0 deduped
│ ├── tapable@1.0.0 deduped
│ ├── uglifyjs-webpack-plugin@1.2.5 deduped
│ ├─┬ watchpack@1.6.0
│ │ ├── chokidar@2.0.4 deduped
│ │ ├── graceful-fs@4.1.11 deduped
│ │ └── neo-async@2.5.1 deduped
│ └── webpack-sources@1.1.0 deduped
├─┬ webpack-bundle-analyzer@2.13.1
│ ├── acorn@5.7.1 deduped
│ ├─┬ bfj-node4@5.3.1
│ │ ├── bluebird@3.5.1 deduped
│ │ ├── check-types@7.4.0
│ │ └── tryer@1.0.0
│ ├── chalk@2.4.1 deduped
│ ├── commander@2.15.1 deduped
│ ├── ejs@2.6.1
│ ├─┬ express@4.16.3
│ │ ├─┬ accepts@1.3.5
│ │ │ ├── mime-types@2.1.18 deduped
│ │ │ └── negotiator@0.6.1
│ │ ├── array-flatten@1.1.1
│ │ ├─┬ body-parser@1.18.2
│ │ │ ├── bytes@3.0.0 deduped
│ │ │ ├── content-type@1.0.4 deduped
│ │ │ ├─┬ debug@2.6.9
│ │ │ │ └── ms@2.0.0 deduped
│ │ │ ├── depd@1.1.2 deduped
│ │ │ ├── http-errors@1.6.3 deduped
│ │ │ ├── iconv-lite@0.4.19
│ │ │ ├── on-finished@2.3.0 deduped
│ │ │ ├── qs@6.5.1
│ │ │ ├─┬ raw-body@2.3.2
│ │ │ │ ├── bytes@3.0.0 deduped
│ │ │ │ ├─┬ http-errors@1.6.2
│ │ │ │ │ ├── depd@1.1.1
│ │ │ │ │ ├── inherits@2.0.3 deduped
│ │ │ │ │ ├── setprototypeof@1.0.3
│ │ │ │ │ └── statuses@1.4.0 deduped
│ │ │ │ ├── iconv-lite@0.4.19
│ │ │ │ └── unpipe@1.0.0 deduped
│ │ │ └── type-is@1.6.16 deduped
│ │ ├── content-disposition@0.5.2
│ │ ├── content-type@1.0.4
│ │ ├── cookie@0.3.1
│ │ ├── cookie-signature@1.0.6
│ │ ├─┬ debug@2.6.9
│ │ │ └── ms@2.0.0 deduped
│ │ ├── depd@1.1.2
│ │ ├── encodeurl@1.0.2
│ │ ├── escape-html@1.0.3
│ │ ├── etag@1.8.1
│ │ ├─┬ finalhandler@1.1.1
│ │ │ ├─┬ debug@2.6.9
│ │ │ │ └── ms@2.0.0 deduped
│ │ │ ├── encodeurl@1.0.2 deduped
│ │ │ ├── escape-html@1.0.3 deduped
│ │ │ ├── on-finished@2.3.0 deduped
│ │ │ ├── parseurl@1.3.2 deduped
│ │ │ ├── statuses@1.4.0 deduped
│ │ │ └── unpipe@1.0.0
│ │ ├── fresh@0.5.2
│ │ ├── merge-descriptors@1.0.1
│ │ ├── methods@1.1.2
│ │ ├─┬ on-finished@2.3.0
│ │ │ └── ee-first@1.1.1
│ │ ├── parseurl@1.3.2
│ │ ├── path-to-regexp@0.1.7
│ │ ├─┬ proxy-addr@2.0.3
│ │ │ ├── forwarded@0.1.2
│ │ │ └── ipaddr.js@1.6.0
│ │ ├── qs@6.5.1
│ │ ├── range-parser@1.2.0
│ │ ├── safe-buffer@5.1.1
│ │ ├─┬ send@0.16.2
│ │ │ ├─┬ debug@2.6.9
│ │ │ │ └── ms@2.0.0 deduped
│ │ │ ├── depd@1.1.2 deduped
│ │ │ ├── destroy@1.0.4
│ │ │ ├── encodeurl@1.0.2 deduped
│ │ │ ├── escape-html@1.0.3 deduped
│ │ │ ├── etag@1.8.1 deduped
│ │ │ ├── fresh@0.5.2 deduped
│ │ │ ├── http-errors@1.6.3 deduped
│ │ │ ├── mime@1.4.1
│ │ │ ├── ms@2.0.0 deduped
│ │ │ ├── on-finished@2.3.0 deduped
│ │ │ ├── range-parser@1.2.0 deduped
│ │ │ └── statuses@1.4.0 deduped
│ │ ├─┬ serve-static@1.13.2
│ │ │ ├── encodeurl@1.0.2 deduped
│ │ │ ├── escape-html@1.0.3 deduped
│ │ │ ├── parseurl@1.3.2 deduped
│ │ │ └── send@0.16.2 deduped
│ │ ├── setprototypeof@1.1.0
│ │ ├── statuses@1.4.0
│ │ ├─┬ type-is@1.6.16
│ │ │ ├── media-typer@0.3.0
│ │ │ └── mime-types@2.1.18 deduped
│ │ ├── utils-merge@1.0.1
│ │ └── vary@1.1.2
│ ├── filesize@3.5.11
│ ├─┬ gzip-size@4.1.0
│ │ ├── duplexer@0.1.1
│ │ └── pify@3.0.0
│ ├── lodash@4.17.10 deduped
│ ├── mkdirp@0.5.1 deduped
│ ├── opener@1.4.3
│ └── ws@4.1.0 deduped
├─┬ webpack-cli@3.0.8
│ ├── chalk@2.4.1 deduped
│ ├── cross-spawn@6.0.5 deduped
│ ├── enhanced-resolve@4.0.0 deduped
│ ├── global-modules-path@2.1.0
│ ├─┬ import-local@1.0.0
│ │ ├── pkg-dir@2.0.0 deduped
│ │ └─┬ resolve-cwd@2.0.0
│ │   └── resolve-from@3.0.0
│ ├─┬ inquirer@6.0.0
│ │ ├── ansi-escapes@3.1.0 deduped
│ │ ├── chalk@2.4.1 deduped
│ │ ├── cli-cursor@2.1.0 deduped
│ │ ├── cli-width@2.2.0 deduped
│ │ ├─┬ external-editor@3.0.0
│ │ │ ├── chardet@0.5.0
│ │ │ ├── iconv-lite@0.4.23 deduped
│ │ │ └── tmp@0.0.33 deduped
│ │ ├── figures@2.0.0 deduped
│ │ ├── lodash@4.17.10 deduped
│ │ ├── mute-stream@0.0.7 deduped
│ │ ├── run-async@2.3.0 deduped
│ │ ├─┬ rxjs@6.2.1
│ │ │ └── tslib@1.9.2 deduped
│ │ ├── string-width@2.1.1 deduped
│ │ ├─┬ strip-ansi@4.0.0
│ │ │ └── ansi-regex@3.0.0
│ │ └── through@2.3.8 deduped
│ ├── interpret@1.1.0 deduped
│ ├── loader-utils@1.1.0 deduped
│ ├── supports-color@5.4.0 deduped
│ ├── v8-compile-cache@2.0.0
│ └─┬ yargs@11.1.0
│   ├─┬ cliui@4.1.0
│   │ ├── string-width@2.1.1 deduped
│   │ ├── strip-ansi@4.0.0 deduped
│   │ └── wrap-ansi@2.1.0 deduped
│   ├── decamelize@1.2.0 deduped
│   ├── find-up@2.1.0 deduped
│   ├── get-caller-file@1.0.2 deduped
│   ├── os-locale@2.1.0 deduped
│   ├── require-directory@2.1.1 deduped
│   ├── require-main-filename@1.0.1 deduped
│   ├── set-blocking@2.0.0 deduped
│   ├── string-width@2.1.1 deduped
│   ├── which-module@2.0.0 deduped
│   ├── y18n@3.2.1
│   └─┬ yargs-parser@9.0.2
│     └── camelcase@4.1.0 deduped
├─┬ webpack-dev-server@3.1.4
│ ├── ansi-html@0.0.7
│ ├─┬ array-includes@3.0.3
│ │ ├── define-properties@1.1.2 deduped
│ │ └─┬ es-abstract@1.12.0
│ │   ├─┬ es-to-primitive@1.1.1
│ │   │ ├── is-callable@1.1.3 deduped
│ │   │ ├── is-date-object@1.0.1
│ │   │ └── is-symbol@1.0.1
│ │   ├── function-bind@1.1.1 deduped
│ │   ├── has@1.0.3 deduped
│ │   ├── is-callable@1.1.3
│ │   └─┬ is-regex@1.0.4
│ │     └── has@1.0.3 deduped
│ ├─┬ bonjour@3.5.0
│ │ ├── array-flatten@2.1.1
│ │ ├── deep-equal@1.0.1
│ │ ├── dns-equal@1.0.0
│ │ ├─┬ dns-txt@2.0.2
│ │ │ └── buffer-indexof@1.1.1
│ │ ├─┬ multicast-dns@6.2.3
│ │ │ ├─┬ dns-packet@1.3.1
│ │ │ │ ├── ip@1.1.5 deduped
│ │ │ │ └── safe-buffer@5.1.2 deduped
│ │ │ └── thunky@1.0.2
│ │ └── multicast-dns-service-types@1.1.0
│ ├── chokidar@2.0.4 deduped
│ ├─┬ compression@1.7.2
│ │ ├── accepts@1.3.5 deduped
│ │ ├── bytes@3.0.0
│ │ ├─┬ compressible@2.0.14
│ │ │ └── mime-db@1.34.0
│ │ ├─┬ debug@2.6.9
│ │ │ └── ms@2.0.0 deduped
│ │ ├── on-headers@1.0.1
│ │ ├── safe-buffer@5.1.1
│ │ └── vary@1.1.2 deduped
│ ├── connect-history-api-fallback@1.5.0
│ ├── debug@3.1.0 deduped
│ ├─┬ del@3.0.0
│ │ ├─┬ globby@6.1.0
│ │ │ ├── array-union@1.0.2 deduped
│ │ │ ├── glob@7.1.2 deduped
│ │ │ ├── object-assign@4.1.1 deduped
│ │ │ ├── pify@2.3.0
│ │ │ └── pinkie-promise@2.0.1 deduped
│ │ ├── is-path-cwd@1.0.0
│ │ ├─┬ is-path-in-cwd@1.0.1
│ │ │ └── is-path-inside@1.0.1 deduped
│ │ ├── p-map@1.2.0
│ │ ├── pify@3.0.0
│ │ └── rimraf@2.6.2 deduped
│ ├── express@4.16.3 deduped
│ ├── html-entities@1.2.1
│ ├─┬ http-proxy-middleware@0.18.0
│ │ ├─┬ http-proxy@1.17.0
│ │ │ ├── eventemitter3@3.1.0
│ │ │ ├── follow-redirects@1.5.0 deduped
│ │ │ └── requires-port@1.0.0 deduped
│ │ ├── is-glob@4.0.0 deduped
│ │ ├── lodash@4.17.10 deduped
│ │ └── micromatch@3.1.10 deduped
│ ├── import-local@1.0.0 deduped
│ ├─┬ internal-ip@1.2.0
│ │ └── meow@3.7.0 deduped
│ ├── ip@1.1.5
│ ├── killable@1.0.0
│ ├── loglevel@1.6.1
│ ├── opn@5.3.0 deduped
│ ├── portfinder@1.0.13 deduped
│ ├─┬ selfsigned@1.10.3
│ │ └── node-forge@0.7.5
│ ├─┬ serve-index@1.9.1
│ │ ├── accepts@1.3.5 deduped
│ │ ├── batch@0.6.1
│ │ ├─┬ debug@2.6.9
│ │ │ └── ms@2.0.0 deduped
│ │ ├── escape-html@1.0.3 deduped
│ │ ├─┬ http-errors@1.6.3
│ │ │ ├── depd@1.1.2 deduped
│ │ │ ├── inherits@2.0.3 deduped
│ │ │ ├── setprototypeof@1.1.0 deduped
│ │ │ └── statuses@1.4.0 deduped
│ │ ├── mime-types@2.1.18 deduped
│ │ └── parseurl@1.3.2 deduped
│ ├─┬ sockjs@0.3.19
│ │ ├─┬ faye-websocket@0.10.0
│ │ │ └─┬ websocket-driver@0.7.0
│ │ │   ├── http-parser-js@0.4.13
│ │ │   └── websocket-extensions@0.1.3
│ │ └── uuid@3.2.1 deduped
│ ├─┬ sockjs-client@1.1.4
│ │ ├─┬ debug@2.6.9
│ │ │ └── ms@2.0.0 deduped
│ │ ├─┬ eventsource@0.1.6
│ │ │ └─┬ original@1.0.1
│ │ │   └── url-parse@1.4.1 deduped
│ │ ├─┬ faye-websocket@0.11.1
│ │ │ └── websocket-driver@0.7.0 deduped
│ │ ├── inherits@2.0.3 deduped
│ │ ├── json3@3.3.2
│ │ └─┬ url-parse@1.4.1
│ │   ├── querystringify@2.0.0
│ │   └── requires-port@1.0.0
│ ├─┬ spdy@3.4.7
│ │ ├─┬ debug@2.6.9
│ │ │ └── ms@2.0.0 deduped
│ │ ├── handle-thing@1.2.5
│ │ ├── http-deceiver@1.2.7
│ │ ├── safe-buffer@5.1.2 deduped
│ │ ├── select-hose@2.0.0
│ │ └─┬ spdy-transport@2.1.0
│ │   ├─┬ debug@2.6.9
│ │   │ └── ms@2.0.0 deduped
│ │   ├── detect-node@2.0.3
│ │   ├─┬ hpack.js@2.1.6
│ │   │ ├── inherits@2.0.3 deduped
│ │   │ ├── obuf@1.1.2 deduped
│ │   │ ├── readable-stream@2.3.6 deduped
│ │   │ └── wbuf@1.7.3 deduped
│ │   ├── obuf@1.1.2
│ │   ├── readable-stream@2.3.6 deduped
│ │   ├── safe-buffer@5.1.2 deduped
│ │   └─┬ wbuf@1.7.3
│ │     └── minimalistic-assert@1.0.1
│ ├─┬ strip-ansi@3.0.1
│ │ └── ansi-regex@2.1.1
│ ├── supports-color@5.4.0 deduped
│ ├─┬ webpack-dev-middleware@3.1.3
│ │ ├── loud-rejection@1.6.0 deduped
│ │ ├── memory-fs@0.4.1 deduped
│ │ ├── mime@2.3.1
│ │ ├── path-is-absolute@1.0.1 deduped
│ │ ├── range-parser@1.2.0 deduped
│ │ ├── url-join@4.0.0
│ │ └── webpack-log@1.2.0 deduped
│ ├─┬ webpack-log@1.2.0
│ │ ├── chalk@2.4.1 deduped
│ │ ├── log-symbols@2.2.0 deduped
│ │ ├─┬ loglevelnext@1.0.5
│ │ │ ├─┬ es6-symbol@3.1.1
│ │ │ │ ├─┬ d@1.0.0
│ │ │ │ │ └── es5-ext@0.10.45 deduped
│ │ │ │ └─┬ es5-ext@0.10.45
│ │ │ │   ├─┬ es6-iterator@2.0.3
│ │ │ │   │ ├── d@1.0.0 deduped
│ │ │ │   │ ├── es5-ext@0.10.45 deduped
│ │ │ │   │ └── es6-symbol@3.1.1 deduped
│ │ │ │   ├── es6-symbol@3.1.1 deduped
│ │ │ │   └── next-tick@1.0.0
│ │ │ └─┬ object.assign@4.1.0
│ │ │   ├── define-properties@1.1.2 deduped
│ │ │   ├── function-bind@1.1.1 deduped
│ │ │   ├── has-symbols@1.0.0
│ │ │   └── object-keys@1.0.12 deduped
│ │ └── uuid@3.2.1 deduped
│ └─┬ yargs@11.0.0
│   ├─┬ cliui@4.1.0
│   │ ├── string-width@2.1.1 deduped
│   │ ├─┬ strip-ansi@4.0.0
│   │ │ └── ansi-regex@3.0.0
│   │ └── wrap-ansi@2.1.0 deduped
│   ├── decamelize@1.2.0 deduped
│   ├── find-up@2.1.0 deduped
│   ├── get-caller-file@1.0.2 deduped
│   ├── os-locale@2.1.0 deduped
│   ├── require-directory@2.1.1 deduped
│   ├── require-main-filename@1.0.1 deduped
│   ├── set-blocking@2.0.0 deduped
│   ├── string-width@2.1.1 deduped
│   ├── which-module@2.0.0 deduped
│   ├── y18n@3.2.1
│   └─┬ yargs-parser@9.0.2
│     └── camelcase@4.1.0 deduped
├── webpack-node-externals@1.7.2
└─┬ yamljs@0.3.0
  ├─┬ argparse@1.0.10
  │ └── sprintf-js@1.0.3
  └── glob@7.1.2 deduped
jantimon commented 6 years ago

@edtoken you are not using the version with the fix.
If you don't want to use the alpha you have to wait a little bit more for the next major release or disable chunk sorting by hand.

b12f commented 6 years ago

I am getting the same error, no matter which version I am using (Both 4.0.0-alpha and 3.2.0). I even rm -rf-ed the html-webpack-plugin from the @vue/cli-service/node_modules folder and copied the alpha version in to no avail.

Weirdly, setting chunksSortMode to none doesn't seem to do anything at all, but I might have misunderstood the benefit of that.

Webpack config ``` new HtmlWebpackPlugin( { templateParameters: function () { /* omitted long function */ }, template: '/path/to/workspace/renderer/client/public/index.html', chunksSortMode: 'none' } ) ```
Package dev dependencies ``` "devDependencies": { "@vue/cli-plugin-babel": "^3.0.0-rc.3", "@vue/cli-plugin-eslint": "^3.0.0-rc.3", "@vue/cli-service": "^3.0.0-rc.3", "html-webpack-plugin": "^4.0.0-alpha", "node-sass": "^4.9.0", "sass-loader": "^7.0.3", "vue-template-compiler": "^2.5.16", "vue-template-loader": "^1.0.0" }, ```
jantimon commented 6 years ago

4.0.0-alpha does not include topsort:

https://github.com/jantimon/html-webpack-plugin/blob/webpack-4/package.json

So I am not sure how a topsort error might occur for 4.0.0-alpha
Any thoughts?

b12f commented 6 years ago

Maybe there's another 3.2.0 hidden somewhere and node module resolution is doing weird stuff? I'll check it out on monday.

b12f commented 6 years ago

Edit:

My real problem was that both html-webpack-plugin and vue-template-loader were trying to handle the same file. Check your webpack config to make sure you're loading every html with with either one or the other.

Bessonov commented 6 years ago

Can confirm, that set chunksSortMode to none works with 3.2.0:

new HtmlWebpackPlugin({
            chunksSortMode: 'none'
lock[bot] commented 6 years ago

This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.