├── .babelrc ├── .editorconfig ├── .gitignore ├── .postcssrc.js ├── README.md ├── build ├── build.js ├── check-versions.js ├── dev-client.js ├── dev-server.js ├── utils.js ├── vue-loader.conf.js ├── webpack.base.conf.js ├── webpack.dev.conf.js └── webpack.prod.conf.js ├── config ├── dev.env.js ├── index.js └── prod.env.js ├── index.html ├── package.json ├── src ├── App.vue ├── api │ └── shop.js ├── assets │ └── logo.png ├── components │ ├── ProductList.vue │ └── ShoppingCart.vue ├── currency.js ├── main.js └── store │ ├── actions.js │ ├── index.js │ └── modules │ ├── cart.js │ └── products.js ├── static └── .gitkeep └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | ["env", { 4 | "modules": false, 5 | "targets": { 6 | "browsers": ["> 1%", "last 2 versions", "not ie <= 8"] 7 | } 8 | }], 9 | "stage-2" 10 | ], 11 | "plugins": ["transform-runtime"], 12 | "env": { 13 | "test": { 14 | "presets": ["env", "stage-2"], 15 | "plugins": ["istanbul"] 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | indent_style = space 6 | indent_size = 2 7 | end_of_line = lf 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | dist/ 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Editor directories and files 9 | .idea 10 | .vscode 11 | *.suo 12 | *.ntvs* 13 | *.njsproj 14 | *.sln 15 | -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- 1 | // https://github.com/michael-ciniawsky/postcss-load-config 2 | 3 | module.exports = { 4 | "plugins": { 5 | // to edit target browsers: use "browserslist" field in package.json 6 | "autoprefixer": {} 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Vuex for Everyone 2 | [![](https://vueschool.s3.amazonaws.com/07e696bc3ed3884dd88d82db76e69d89/vuex-for-everyone.jpeg)](https://vueschool.io/courses/vuex-for-everyone) 3 | 4 | This repository contains the example code for the [Vuex for Everyone](https://vueschool.io/courses/vuex-for-everyone) course. 5 | 6 | In this course you'll learn all there is to know about Vuex by creating a shopping cart from scratch. 7 | 8 | We will start off by creating a shopping cart with Vue and then progressively dive into Vuex features as we need them. Piece by piece we'll replace parts of our application with mutations, getters, and actions. 9 | 10 | You'll also learn how to break your Vuex store into modules. 11 | 12 | After this course, you will know when and how to use getters, mutations, actions and, how to split your Store with modules. 13 | 14 | The course is free. [Enroll at Vue School!](https://vueschool.io/courses/vuex-for-everyone) 15 | -------------------------------------------------------------------------------- /build/build.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | require('./check-versions')() 3 | 4 | process.env.NODE_ENV = 'production' 5 | 6 | const ora = require('ora') 7 | const rm = require('rimraf') 8 | const path = require('path') 9 | const chalk = require('chalk') 10 | const webpack = require('webpack') 11 | const config = require('../config') 12 | const webpackConfig = require('./webpack.prod.conf') 13 | 14 | const spinner = ora('building for production...') 15 | spinner.start() 16 | 17 | rm(path.join(config.build.assetsRoot, config.build.assetsSubDirectory), err => { 18 | if (err) throw err 19 | webpack(webpackConfig, function (err, stats) { 20 | spinner.stop() 21 | if (err) throw err 22 | process.stdout.write(stats.toString({ 23 | colors: true, 24 | modules: false, 25 | children: false, 26 | chunks: false, 27 | chunkModules: false 28 | }) + '\n\n') 29 | 30 | if (stats.hasErrors()) { 31 | console.log(chalk.red(' Build failed with errors.\n')) 32 | process.exit(1) 33 | } 34 | 35 | console.log(chalk.cyan(' Build complete.\n')) 36 | console.log(chalk.yellow( 37 | ' Tip: built files are meant to be served over an HTTP server.\n' + 38 | ' Opening index.html over file:// won\'t work.\n' 39 | )) 40 | }) 41 | }) 42 | -------------------------------------------------------------------------------- /build/check-versions.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | const chalk = require('chalk') 3 | const semver = require('semver') 4 | const packageConfig = require('../package.json') 5 | const shell = require('shelljs') 6 | function exec (cmd) { 7 | return require('child_process').execSync(cmd).toString().trim() 8 | } 9 | 10 | const versionRequirements = [ 11 | { 12 | name: 'node', 13 | currentVersion: semver.clean(process.version), 14 | versionRequirement: packageConfig.engines.node 15 | } 16 | ] 17 | 18 | if (shell.which('npm')) { 19 | versionRequirements.push({ 20 | name: 'npm', 21 | currentVersion: exec('npm --version'), 22 | versionRequirement: packageConfig.engines.npm 23 | }) 24 | } 25 | 26 | module.exports = function () { 27 | const warnings = [] 28 | for (let i = 0; i < versionRequirements.length; i++) { 29 | const mod = versionRequirements[i] 30 | if (!semver.satisfies(mod.currentVersion, mod.versionRequirement)) { 31 | warnings.push(mod.name + ': ' + 32 | chalk.red(mod.currentVersion) + ' should be ' + 33 | chalk.green(mod.versionRequirement) 34 | ) 35 | } 36 | } 37 | 38 | if (warnings.length) { 39 | console.log('') 40 | console.log(chalk.yellow('To use this template, you must update following to modules:')) 41 | console.log() 42 | for (let i = 0; i < warnings.length; i++) { 43 | const warning = warnings[i] 44 | console.log(' ' + warning) 45 | } 46 | console.log() 47 | process.exit(1) 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /build/dev-client.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | 'use strict' 3 | require('eventsource-polyfill') 4 | var hotClient = require('webpack-hot-middleware/client?noInfo=true&reload=true') 5 | 6 | hotClient.subscribe(function (event) { 7 | if (event.action === 'reload') { 8 | window.location.reload() 9 | } 10 | }) 11 | -------------------------------------------------------------------------------- /build/dev-server.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | require('./check-versions')() 3 | 4 | const config = require('../config') 5 | if (!process.env.NODE_ENV) { 6 | process.env.NODE_ENV = JSON.parse(config.dev.env.NODE_ENV) 7 | } 8 | 9 | const opn = require('opn') 10 | const path = require('path') 11 | const express = require('express') 12 | const webpack = require('webpack') 13 | const proxyMiddleware = require('http-proxy-middleware') 14 | const webpackConfig = require('./webpack.dev.conf') 15 | 16 | // default port where dev server listens for incoming traffic 17 | const port = process.env.PORT || config.dev.port 18 | // automatically open browser, if not set will be false 19 | const autoOpenBrowser = !!config.dev.autoOpenBrowser 20 | // Define HTTP proxies to your custom API backend 21 | // https://github.com/chimurai/http-proxy-middleware 22 | const proxyTable = config.dev.proxyTable 23 | 24 | const app = express() 25 | const compiler = webpack(webpackConfig) 26 | 27 | const devMiddleware = require('webpack-dev-middleware')(compiler, { 28 | publicPath: webpackConfig.output.publicPath, 29 | quiet: true 30 | }) 31 | 32 | const hotMiddleware = require('webpack-hot-middleware')(compiler, { 33 | log: false, 34 | heartbeat: 2000 35 | }) 36 | // force page reload when html-webpack-plugin template changes 37 | // currently disabled until this is resolved: 38 | // https://github.com/jantimon/html-webpack-plugin/issues/680 39 | // compiler.plugin('compilation', function (compilation) { 40 | // compilation.plugin('html-webpack-plugin-after-emit', function (data, cb) { 41 | // hotMiddleware.publish({ action: 'reload' }) 42 | // cb() 43 | // }) 44 | // }) 45 | 46 | // enable hot-reload and state-preserving 47 | // compilation error display 48 | app.use(hotMiddleware) 49 | 50 | // proxy api requests 51 | Object.keys(proxyTable).forEach(function (context) { 52 | let options = proxyTable[context] 53 | if (typeof options === 'string') { 54 | options = { target: options } 55 | } 56 | app.use(proxyMiddleware(options.filter || context, options)) 57 | }) 58 | 59 | // handle fallback for HTML5 history API 60 | app.use(require('connect-history-api-fallback')()) 61 | 62 | // serve webpack bundle output 63 | app.use(devMiddleware) 64 | 65 | // serve pure static assets 66 | const staticPath = path.posix.join(config.dev.assetsPublicPath, config.dev.assetsSubDirectory) 67 | app.use(staticPath, express.static('./static')) 68 | 69 | const uri = 'http://localhost:' + port 70 | 71 | var _resolve 72 | var _reject 73 | var readyPromise = new Promise((resolve, reject) => { 74 | _resolve = resolve 75 | _reject = reject 76 | }) 77 | 78 | var server 79 | var portfinder = require('portfinder') 80 | portfinder.basePort = port 81 | 82 | console.log('> Starting dev server...') 83 | devMiddleware.waitUntilValid(() => { 84 | portfinder.getPort((err, port) => { 85 | if (err) { 86 | _reject(err) 87 | } 88 | process.env.PORT = port 89 | var uri = 'http://localhost:' + port 90 | console.log('> Listening at ' + uri + '\n') 91 | // when env is testing, don't need open it 92 | if (autoOpenBrowser && process.env.NODE_ENV !== 'testing') { 93 | opn(uri) 94 | } 95 | server = app.listen(port) 96 | _resolve() 97 | }) 98 | }) 99 | 100 | module.exports = { 101 | ready: readyPromise, 102 | close: () => { 103 | server.close() 104 | } 105 | } 106 | -------------------------------------------------------------------------------- /build/utils.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | const path = require('path') 3 | const config = require('../config') 4 | const ExtractTextPlugin = require('extract-text-webpack-plugin') 5 | 6 | exports.assetsPath = function (_path) { 7 | const assetsSubDirectory = process.env.NODE_ENV === 'production' 8 | ? config.build.assetsSubDirectory 9 | : config.dev.assetsSubDirectory 10 | return path.posix.join(assetsSubDirectory, _path) 11 | } 12 | 13 | exports.cssLoaders = function (options) { 14 | options = options || {} 15 | 16 | const cssLoader = { 17 | loader: 'css-loader', 18 | options: { 19 | minimize: process.env.NODE_ENV === 'production', 20 | sourceMap: options.sourceMap 21 | } 22 | } 23 | 24 | // generate loader string to be used with extract text plugin 25 | function generateLoaders (loader, loaderOptions) { 26 | const loaders = [cssLoader] 27 | if (loader) { 28 | loaders.push({ 29 | loader: loader + '-loader', 30 | options: Object.assign({}, loaderOptions, { 31 | sourceMap: options.sourceMap 32 | }) 33 | }) 34 | } 35 | 36 | // Extract CSS when that option is specified 37 | // (which is the case during production build) 38 | if (options.extract) { 39 | return ExtractTextPlugin.extract({ 40 | use: loaders, 41 | fallback: 'vue-style-loader' 42 | }) 43 | } else { 44 | return ['vue-style-loader'].concat(loaders) 45 | } 46 | } 47 | 48 | // https://vue-loader.vuejs.org/en/configurations/extract-css.html 49 | return { 50 | css: generateLoaders(), 51 | postcss: generateLoaders(), 52 | less: generateLoaders('less'), 53 | sass: generateLoaders('sass', { indentedSyntax: true }), 54 | scss: generateLoaders('sass'), 55 | stylus: generateLoaders('stylus'), 56 | styl: generateLoaders('stylus') 57 | } 58 | } 59 | 60 | // Generate loaders for standalone style files (outside of .vue) 61 | exports.styleLoaders = function (options) { 62 | const output = [] 63 | const loaders = exports.cssLoaders(options) 64 | for (const extension in loaders) { 65 | const loader = loaders[extension] 66 | output.push({ 67 | test: new RegExp('\\.' + extension + '$'), 68 | use: loader 69 | }) 70 | } 71 | return output 72 | } 73 | -------------------------------------------------------------------------------- /build/vue-loader.conf.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | const utils = require('./utils') 3 | const config = require('../config') 4 | const isProduction = process.env.NODE_ENV === 'production' 5 | 6 | module.exports = { 7 | loaders: utils.cssLoaders({ 8 | sourceMap: isProduction 9 | ? config.build.productionSourceMap 10 | : config.dev.cssSourceMap, 11 | extract: isProduction 12 | }), 13 | transformToRequire: { 14 | video: 'src', 15 | source: 'src', 16 | img: 'src', 17 | image: 'xlink:href' 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /build/webpack.base.conf.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | const path = require('path') 3 | const utils = require('./utils') 4 | const config = require('../config') 5 | const vueLoaderConfig = require('./vue-loader.conf') 6 | 7 | function resolve (dir) { 8 | return path.join(__dirname, '..', dir) 9 | } 10 | 11 | module.exports = { 12 | entry: { 13 | app: './src/main.js' 14 | }, 15 | output: { 16 | path: config.build.assetsRoot, 17 | filename: '[name].js', 18 | publicPath: process.env.NODE_ENV === 'production' 19 | ? config.build.assetsPublicPath 20 | : config.dev.assetsPublicPath 21 | }, 22 | resolve: { 23 | extensions: ['.js', '.vue', '.json'], 24 | alias: { 25 | '@': resolve('src'), 26 | } 27 | }, 28 | module: { 29 | rules: [ 30 | { 31 | test: /\.vue$/, 32 | loader: 'vue-loader', 33 | options: vueLoaderConfig 34 | }, 35 | { 36 | test: /\.js$/, 37 | loader: 'babel-loader', 38 | include: [resolve('src'), resolve('test')] 39 | }, 40 | { 41 | test: /\.(png|jpe?g|gif|svg)(\?.*)?$/, 42 | loader: 'url-loader', 43 | options: { 44 | limit: 10000, 45 | name: utils.assetsPath('img/[name].[hash:7].[ext]') 46 | } 47 | }, 48 | { 49 | test: /\.(mp4|webm|ogg|mp3|wav|flac|aac)(\?.*)?$/, 50 | loader: 'url-loader', 51 | options: { 52 | limit: 10000, 53 | name: utils.assetsPath('media/[name].[hash:7].[ext]') 54 | } 55 | }, 56 | { 57 | test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/, 58 | loader: 'url-loader', 59 | options: { 60 | limit: 10000, 61 | name: utils.assetsPath('fonts/[name].[hash:7].[ext]') 62 | } 63 | } 64 | ] 65 | } 66 | } 67 | -------------------------------------------------------------------------------- /build/webpack.dev.conf.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | const utils = require('./utils') 3 | const webpack = require('webpack') 4 | const config = require('../config') 5 | const merge = require('webpack-merge') 6 | const baseWebpackConfig = require('./webpack.base.conf') 7 | const HtmlWebpackPlugin = require('html-webpack-plugin') 8 | const FriendlyErrorsPlugin = require('friendly-errors-webpack-plugin') 9 | 10 | // add hot-reload related code to entry chunks 11 | Object.keys(baseWebpackConfig.entry).forEach(function (name) { 12 | baseWebpackConfig.entry[name] = ['./build/dev-client'].concat(baseWebpackConfig.entry[name]) 13 | }) 14 | 15 | module.exports = merge(baseWebpackConfig, { 16 | module: { 17 | rules: utils.styleLoaders({ sourceMap: config.dev.cssSourceMap }) 18 | }, 19 | // cheap-module-eval-source-map is faster for development 20 | devtool: '#cheap-module-eval-source-map', 21 | plugins: [ 22 | new webpack.DefinePlugin({ 23 | 'process.env': config.dev.env 24 | }), 25 | // https://github.com/glenjamin/webpack-hot-middleware#installation--usage 26 | new webpack.HotModuleReplacementPlugin(), 27 | new webpack.NoEmitOnErrorsPlugin(), 28 | // https://github.com/ampedandwired/html-webpack-plugin 29 | new HtmlWebpackPlugin({ 30 | filename: 'index.html', 31 | template: 'index.html', 32 | inject: true 33 | }), 34 | new FriendlyErrorsPlugin() 35 | ] 36 | }) 37 | -------------------------------------------------------------------------------- /build/webpack.prod.conf.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | const path = require('path') 3 | const utils = require('./utils') 4 | const webpack = require('webpack') 5 | const config = require('../config') 6 | const merge = require('webpack-merge') 7 | const baseWebpackConfig = require('./webpack.base.conf') 8 | const CopyWebpackPlugin = require('copy-webpack-plugin') 9 | const HtmlWebpackPlugin = require('html-webpack-plugin') 10 | const ExtractTextPlugin = require('extract-text-webpack-plugin') 11 | const OptimizeCSSPlugin = require('optimize-css-assets-webpack-plugin') 12 | 13 | const env = config.build.env 14 | 15 | const webpackConfig = merge(baseWebpackConfig, { 16 | module: { 17 | rules: utils.styleLoaders({ 18 | sourceMap: config.build.productionSourceMap, 19 | extract: true 20 | }) 21 | }, 22 | devtool: config.build.productionSourceMap ? '#source-map' : false, 23 | output: { 24 | path: config.build.assetsRoot, 25 | filename: utils.assetsPath('js/[name].[chunkhash].js'), 26 | chunkFilename: utils.assetsPath('js/[id].[chunkhash].js') 27 | }, 28 | plugins: [ 29 | // http://vuejs.github.io/vue-loader/en/workflow/production.html 30 | new webpack.DefinePlugin({ 31 | 'process.env': env 32 | }), 33 | // UglifyJs do not support ES6+, you can also use babel-minify for better treeshaking: https://github.com/babel/minify 34 | new webpack.optimize.UglifyJsPlugin({ 35 | compress: { 36 | warnings: false 37 | }, 38 | sourceMap: true 39 | }), 40 | // extract css into its own file 41 | new ExtractTextPlugin({ 42 | filename: utils.assetsPath('css/[name].[contenthash].css') 43 | }), 44 | // Compress extracted CSS. We are using this plugin so that possible 45 | // duplicated CSS from different components can be deduped. 46 | new OptimizeCSSPlugin({ 47 | cssProcessorOptions: { 48 | safe: true 49 | } 50 | }), 51 | // generate dist index.html with correct asset hash for caching. 52 | // you can customize output by editing /index.html 53 | // see https://github.com/ampedandwired/html-webpack-plugin 54 | new HtmlWebpackPlugin({ 55 | filename: config.build.index, 56 | template: 'index.html', 57 | inject: true, 58 | minify: { 59 | removeComments: true, 60 | collapseWhitespace: true, 61 | removeAttributeQuotes: true 62 | // more options: 63 | // https://github.com/kangax/html-minifier#options-quick-reference 64 | }, 65 | // necessary to consistently work with multiple chunks via CommonsChunkPlugin 66 | chunksSortMode: 'dependency' 67 | }), 68 | // keep module.id stable when vender modules does not change 69 | new webpack.HashedModuleIdsPlugin(), 70 | // split vendor js into its own file 71 | new webpack.optimize.CommonsChunkPlugin({ 72 | name: 'vendor', 73 | minChunks: function (module) { 74 | // any required modules inside node_modules are extracted to vendor 75 | return ( 76 | module.resource && 77 | /\.js$/.test(module.resource) && 78 | module.resource.indexOf( 79 | path.join(__dirname, '../node_modules') 80 | ) === 0 81 | ) 82 | } 83 | }), 84 | // extract webpack runtime and module manifest to its own file in order to 85 | // prevent vendor hash from being updated whenever app bundle is updated 86 | new webpack.optimize.CommonsChunkPlugin({ 87 | name: 'manifest', 88 | chunks: ['vendor'] 89 | }), 90 | // copy custom static assets 91 | new CopyWebpackPlugin([ 92 | { 93 | from: path.resolve(__dirname, '../static'), 94 | to: config.build.assetsSubDirectory, 95 | ignore: ['.*'] 96 | } 97 | ]) 98 | ] 99 | }) 100 | 101 | if (config.build.productionGzip) { 102 | const CompressionWebpackPlugin = require('compression-webpack-plugin') 103 | 104 | webpackConfig.plugins.push( 105 | new CompressionWebpackPlugin({ 106 | asset: '[path].gz[query]', 107 | algorithm: 'gzip', 108 | test: new RegExp( 109 | '\\.(' + 110 | config.build.productionGzipExtensions.join('|') + 111 | ')$' 112 | ), 113 | threshold: 10240, 114 | minRatio: 0.8 115 | }) 116 | ) 117 | } 118 | 119 | if (config.build.bundleAnalyzerReport) { 120 | const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin 121 | webpackConfig.plugins.push(new BundleAnalyzerPlugin()) 122 | } 123 | 124 | module.exports = webpackConfig 125 | -------------------------------------------------------------------------------- /config/dev.env.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | const merge = require('webpack-merge') 3 | const prodEnv = require('./prod.env') 4 | 5 | module.exports = merge(prodEnv, { 6 | NODE_ENV: '"development"' 7 | }) 8 | -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- 1 | 2 | 'use strict' 3 | // Template version: 1.1.3 4 | // see http://vuejs-templates.github.io/webpack for documentation. 5 | 6 | const path = require('path') 7 | 8 | module.exports = { 9 | build: { 10 | env: require('./prod.env'), 11 | index: path.resolve(__dirname, '../dist/index.html'), 12 | assetsRoot: path.resolve(__dirname, '../dist'), 13 | assetsSubDirectory: 'static', 14 | assetsPublicPath: '/', 15 | productionSourceMap: true, 16 | // Gzip off by default as many popular static hosts such as 17 | // Surge or Netlify already gzip all static assets for you. 18 | // Before setting to `true`, make sure to: 19 | // npm install --save-dev compression-webpack-plugin 20 | productionGzip: false, 21 | productionGzipExtensions: ['js', 'css'], 22 | // Run the build command with an extra argument to 23 | // View the bundle analyzer report after build finishes: 24 | // `npm run build --report` 25 | // Set to `true` or `false` to always turn it on or off 26 | bundleAnalyzerReport: process.env.npm_config_report 27 | }, 28 | dev: { 29 | env: require('./dev.env'), 30 | port: process.env.PORT || 8080, 31 | autoOpenBrowser: true, 32 | assetsSubDirectory: 'static', 33 | assetsPublicPath: '/', 34 | proxyTable: {}, 35 | // CSS Sourcemaps off by default because relative paths are "buggy" 36 | // with this option, according to the CSS-Loader README 37 | // (https://github.com/webpack/css-loader#sourcemaps) 38 | // In our experience, they generally work as expected, 39 | // just be aware of this issue when enabling this option. 40 | cssSourceMap: false 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | module.exports = { 3 | NODE_ENV: '"production"' 4 | } 5 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | shopping-cart 6 | 7 | 8 |
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "shopping-cart", 3 | "version": "1.0.0", 4 | "description": "A Vue.js project", 5 | "author": "Alex Kyriakidis ", 6 | "private": true, 7 | "scripts": { 8 | "dev": "node build/dev-server.js", 9 | "start": "npm run dev", 10 | "build": "node build/build.js" 11 | }, 12 | "dependencies": { 13 | "vue": "^2.5.2", 14 | "vuex": "^3.0.1" 15 | }, 16 | "devDependencies": { 17 | "autoprefixer": "^7.1.2", 18 | "babel-core": "^6.22.1", 19 | "babel-loader": "^7.1.1", 20 | "babel-plugin-transform-runtime": "^6.22.0", 21 | "babel-preset-env": "^1.3.2", 22 | "babel-preset-stage-2": "^6.22.0", 23 | "babel-register": "^6.22.0", 24 | "chalk": "^2.0.1", 25 | "connect-history-api-fallback": "^1.3.0", 26 | "copy-webpack-plugin": "^4.0.1", 27 | "css-loader": "^0.28.0", 28 | "eventsource-polyfill": "^0.9.6", 29 | "express": "^4.14.1", 30 | "extract-text-webpack-plugin": "^3.0.0", 31 | "file-loader": "^1.1.4", 32 | "friendly-errors-webpack-plugin": "^1.6.1", 33 | "html-webpack-plugin": "^2.30.1", 34 | "http-proxy-middleware": "^0.17.3", 35 | "opn": "^5.1.0", 36 | "optimize-css-assets-webpack-plugin": "^3.2.0", 37 | "ora": "^1.2.0", 38 | "portfinder": "^1.0.13", 39 | "rimraf": "^2.6.0", 40 | "semver": "^5.3.0", 41 | "shelljs": "^0.7.6", 42 | "url-loader": "^0.5.8", 43 | "vue-loader": "^13.3.0", 44 | "vue-style-loader": "^3.0.1", 45 | "vue-template-compiler": "^2.5.2", 46 | "webpack": "^3.6.0", 47 | "webpack-bundle-analyzer": "^2.9.0", 48 | "webpack-dev-middleware": "^1.12.0", 49 | "webpack-hot-middleware": "^2.18.2", 50 | "webpack-merge": "^4.1.0" 51 | }, 52 | "engines": { 53 | "node": ">= 4.0.0", 54 | "npm": ">= 3.0.0" 55 | }, 56 | "browserslist": [ 57 | "> 1%", 58 | "last 2 versions", 59 | "not ie <= 8" 60 | ] 61 | } 62 | -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- 1 | 8 | 9 | 21 | 22 | 32 | -------------------------------------------------------------------------------- /src/api/shop.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Mocking client-server processing 3 | */ 4 | const _products = [ 5 | {"id": 1, "title": "iPad 4 Mini", "price": 500.01, "inventory": 2}, 6 | {"id": 2, "title": "H&M T-Shirt White", "price": 10.99, "inventory": 10}, 7 | {"id": 3, "title": "Charli XCX - Sucker CD", "price": 19.99, "inventory": 5} 8 | ] 9 | 10 | export default { 11 | getProducts (cb) { 12 | setTimeout(() => cb(_products), 100) 13 | }, 14 | 15 | buyProducts (products, cb, errorCb) { 16 | setTimeout(() => { 17 | // simulate random checkout failure. 18 | (Math.random() > 0.5 || navigator.userAgent.indexOf('PhantomJS') > -1) 19 | ? cb() 20 | : errorCb() 21 | }, 100) 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vueschool/learn-vuex/50a1fbac2f1e14a1f7dbaa900450b04064332705/src/assets/logo.png -------------------------------------------------------------------------------- /src/components/ProductList.vue: -------------------------------------------------------------------------------- 1 | 19 | 20 | 54 | 55 | 58 | -------------------------------------------------------------------------------- /src/components/ShoppingCart.vue: -------------------------------------------------------------------------------- 1 | 14 | 15 | 34 | 35 | 38 | -------------------------------------------------------------------------------- /src/currency.js: -------------------------------------------------------------------------------- 1 | const digitsRE = /(\d{3})(?=\d)/g 2 | 3 | export function currency (value, currency, decimals) { 4 | value = parseFloat(value) 5 | if (!isFinite(value) || (!value && value !== 0)) return '' 6 | currency = currency != null ? currency : '$' 7 | decimals = decimals != null ? decimals : 2 8 | var stringified = Math.abs(value).toFixed(decimals) 9 | var _int = decimals 10 | ? stringified.slice(0, -1 - decimals) 11 | : stringified 12 | var i = _int.length % 3 13 | var head = i > 0 14 | ? (_int.slice(0, i) + (_int.length > 3 ? ',' : '')) 15 | : '' 16 | var _float = decimals 17 | ? stringified.slice(-1 - decimals) 18 | : '' 19 | var sign = value < 0 ? '-' : '' 20 | return sign + currency + head + 21 | _int.slice(i).replace(digitsRE, '$1,') + 22 | _float 23 | } 24 | -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import App from './App' 3 | import store from '@/store/index' 4 | import {currency} from "@/currency"; 5 | 6 | Vue.config.productionTip = false 7 | Vue.filter('currency', currency) 8 | 9 | /* eslint-disable no-new */ 10 | new Vue({ 11 | el: '#app', 12 | store, 13 | render: h => h(App) 14 | }) 15 | -------------------------------------------------------------------------------- /src/store/actions.js: -------------------------------------------------------------------------------- 1 | import shop from "@/api/shop"; 2 | 3 | export default { // = methods 4 | 5 | } 6 | -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- 1 | import Vuex from 'vuex' 2 | import Vue from 'vue' 3 | import actions from './actions' 4 | import cart from './modules/cart' 5 | import products from './modules/products' 6 | 7 | 8 | Vue.use(Vuex) 9 | 10 | export default new Vuex.Store({ 11 | modules: { 12 | cart, 13 | products 14 | }, 15 | 16 | state: { // = data 17 | 18 | }, 19 | 20 | getters: { // = computed properties 21 | 22 | }, 23 | 24 | actions, 25 | 26 | mutations: { 27 | 28 | } 29 | }) 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /src/store/modules/cart.js: -------------------------------------------------------------------------------- 1 | import shop from "@/api/shop"; 2 | 3 | export default { 4 | namespaced: true, 5 | 6 | state: { 7 | // {id, quantity} 8 | items: [], 9 | checkoutStatus: null 10 | }, 11 | 12 | getters: { 13 | cartProducts (state, getters, rootState, rootGetters) { 14 | return state.items.map(cartItem => { 15 | const product = rootState.products.items.find(product => product.id === cartItem.id) 16 | return { 17 | title: product.title, 18 | price: product.price, 19 | quantity: cartItem.quantity 20 | } 21 | }) 22 | }, 23 | 24 | cartTotal (state, getters) { 25 | return getters.cartProducts.reduce((total, product) => total + product.price * product.quantity, 0) 26 | }, 27 | }, 28 | 29 | mutations: { 30 | pushProductToCart (state, productId) { 31 | state.items.push({ 32 | id: productId, 33 | quantity: 1 34 | }) 35 | }, 36 | 37 | incrementItemQuantity (state, cartItem) { 38 | cartItem.quantity++ 39 | }, 40 | 41 | setCheckoutStatus (state, status) { 42 | state.checkoutStatus = status 43 | }, 44 | 45 | emptyCart (state) { 46 | state.items = [] 47 | } 48 | }, 49 | 50 | actions: { 51 | addProductToCart({state, getters, commit, rootState, rootGetters}, product) { 52 | if (rootGetters['products/productIsInStock'](product)) { 53 | const cartItem = state.items.find(item => item.id === product.id) 54 | if (!cartItem) { 55 | commit('pushProductToCart', product.id) 56 | } else { 57 | commit('incrementItemQuantity', cartItem) 58 | } 59 | commit('products/decrementProductInventory', product, {root: true}) 60 | } 61 | }, 62 | 63 | checkout({state, commit}) { 64 | shop.buyProducts( 65 | state.items, 66 | () => { 67 | commit('emptyCart') 68 | commit('setCheckoutStatus', 'success') 69 | }, 70 | () => { 71 | commit('setCheckoutStatus', 'fail') 72 | } 73 | ) 74 | } 75 | } 76 | } 77 | -------------------------------------------------------------------------------- /src/store/modules/products.js: -------------------------------------------------------------------------------- 1 | import shop from "@/api/shop"; 2 | 3 | export default { 4 | namespaced: true, 5 | 6 | state: { 7 | items: [] 8 | }, 9 | 10 | getters: { 11 | availableProducts (state, getters) { 12 | return state.items.filter(product => product.inventory > 0) 13 | }, 14 | 15 | productIsInStock () { 16 | return (product) => { 17 | return product.inventory > 0 18 | } 19 | } 20 | }, 21 | 22 | mutations: { 23 | setProducts (state, products) { 24 | // update products 25 | state.items = products 26 | }, 27 | 28 | decrementProductInventory (state, product) { 29 | product.inventory-- 30 | } 31 | }, 32 | 33 | actions: { 34 | fetchProducts({commit}) { 35 | return new Promise((resolve, reject) => { 36 | // make the call 37 | // call setProducts mutation 38 | shop.getProducts(products => { 39 | commit('setProducts', products) 40 | resolve() 41 | }) 42 | }) 43 | } 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vueschool/learn-vuex/50a1fbac2f1e14a1f7dbaa900450b04064332705/static/.gitkeep -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1: 6 | version "1.1.1" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 8 | 9 | accepts@~1.3.4: 10 | version "1.3.4" 11 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.4.tgz#86246758c7dd6d21a6474ff084a4740ec05eb21f" 12 | dependencies: 13 | mime-types "~2.1.16" 14 | negotiator "0.6.1" 15 | 16 | acorn-dynamic-import@^2.0.0: 17 | version "2.0.2" 18 | resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz#c752bd210bef679501b6c6cb7fc84f8f47158cc4" 19 | dependencies: 20 | acorn "^4.0.3" 21 | 22 | acorn@^4.0.3: 23 | version "4.0.13" 24 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 25 | 26 | acorn@^5.0.0, acorn@^5.1.1: 27 | version "5.3.0" 28 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.3.0.tgz#7446d39459c54fb49a80e6ee6478149b940ec822" 29 | 30 | ajv-keywords@^2.0.0: 31 | version "2.1.1" 32 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762" 33 | 34 | ajv@^4.9.1: 35 | version "4.11.8" 36 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 37 | dependencies: 38 | co "^4.6.0" 39 | json-stable-stringify "^1.0.1" 40 | 41 | ajv@^5.0.0, ajv@^5.1.5: 42 | version "5.5.2" 43 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 44 | dependencies: 45 | co "^4.6.0" 46 | fast-deep-equal "^1.0.0" 47 | fast-json-stable-stringify "^2.0.0" 48 | json-schema-traverse "^0.3.0" 49 | 50 | align-text@^0.1.1, align-text@^0.1.3: 51 | version "0.1.4" 52 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 53 | dependencies: 54 | kind-of "^3.0.2" 55 | longest "^1.0.1" 56 | repeat-string "^1.5.2" 57 | 58 | alphanum-sort@^1.0.1, alphanum-sort@^1.0.2: 59 | version "1.0.2" 60 | resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3" 61 | 62 | ansi-html@0.0.7: 63 | version "0.0.7" 64 | resolved "https://registry.yarnpkg.com/ansi-html/-/ansi-html-0.0.7.tgz#813584021962a9e9e6fd039f940d12f56ca7859e" 65 | 66 | ansi-regex@^2.0.0: 67 | version "2.1.1" 68 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 69 | 70 | ansi-regex@^3.0.0: 71 | version "3.0.0" 72 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 73 | 74 | ansi-styles@^2.2.1: 75 | version "2.2.1" 76 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 77 | 78 | ansi-styles@^3.1.0: 79 | version "3.2.0" 80 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 81 | dependencies: 82 | color-convert "^1.9.0" 83 | 84 | anymatch@^1.3.0: 85 | version "1.3.2" 86 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 87 | dependencies: 88 | micromatch "^2.1.5" 89 | normalize-path "^2.0.0" 90 | 91 | aproba@^1.0.3, aproba@^1.1.1: 92 | version "1.2.0" 93 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 94 | 95 | are-we-there-yet@~1.1.2: 96 | version "1.1.4" 97 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 98 | dependencies: 99 | delegates "^1.0.0" 100 | readable-stream "^2.0.6" 101 | 102 | argparse@^1.0.7: 103 | version "1.0.9" 104 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 105 | dependencies: 106 | sprintf-js "~1.0.2" 107 | 108 | arr-diff@^2.0.0: 109 | version "2.0.0" 110 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 111 | dependencies: 112 | arr-flatten "^1.0.1" 113 | 114 | arr-flatten@^1.0.1: 115 | version "1.1.0" 116 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 117 | 118 | array-flatten@1.1.1: 119 | version "1.1.1" 120 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" 121 | 122 | array-union@^1.0.1: 123 | version "1.0.2" 124 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 125 | dependencies: 126 | array-uniq "^1.0.1" 127 | 128 | array-uniq@^1.0.1: 129 | version "1.0.3" 130 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 131 | 132 | array-unique@^0.2.1: 133 | version "0.2.1" 134 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 135 | 136 | arrify@^1.0.1: 137 | version "1.0.1" 138 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 139 | 140 | asn1.js@^4.0.0: 141 | version "4.9.2" 142 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.2.tgz#8117ef4f7ed87cd8f89044b5bff97ac243a16c9a" 143 | dependencies: 144 | bn.js "^4.0.0" 145 | inherits "^2.0.1" 146 | minimalistic-assert "^1.0.0" 147 | 148 | asn1@~0.2.3: 149 | version "0.2.3" 150 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 151 | 152 | assert-plus@1.0.0, assert-plus@^1.0.0: 153 | version "1.0.0" 154 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 155 | 156 | assert-plus@^0.2.0: 157 | version "0.2.0" 158 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 159 | 160 | assert@^1.1.1: 161 | version "1.4.1" 162 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 163 | dependencies: 164 | util "0.10.3" 165 | 166 | async-each@^1.0.0: 167 | version "1.0.1" 168 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 169 | 170 | async-limiter@~1.0.0: 171 | version "1.0.0" 172 | resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8" 173 | 174 | async@^1.5.2: 175 | version "1.5.2" 176 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 177 | 178 | async@^2.1.2, async@^2.4.1: 179 | version "2.6.0" 180 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.0.tgz#61a29abb6fcc026fea77e56d1c6ec53a795951f4" 181 | dependencies: 182 | lodash "^4.14.0" 183 | 184 | asynckit@^0.4.0: 185 | version "0.4.0" 186 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 187 | 188 | autoprefixer@^6.3.1: 189 | version "6.7.7" 190 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-6.7.7.tgz#1dbd1c835658e35ce3f9984099db00585c782014" 191 | dependencies: 192 | browserslist "^1.7.6" 193 | caniuse-db "^1.0.30000634" 194 | normalize-range "^0.1.2" 195 | num2fraction "^1.2.2" 196 | postcss "^5.2.16" 197 | postcss-value-parser "^3.2.3" 198 | 199 | autoprefixer@^7.1.2: 200 | version "7.2.4" 201 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-7.2.4.tgz#29b367c03876a29bfd3721260d945e3545666c8d" 202 | dependencies: 203 | browserslist "^2.10.2" 204 | caniuse-lite "^1.0.30000784" 205 | normalize-range "^0.1.2" 206 | num2fraction "^1.2.2" 207 | postcss "^6.0.15" 208 | postcss-value-parser "^3.2.3" 209 | 210 | aws-sign2@~0.6.0: 211 | version "0.6.0" 212 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 213 | 214 | aws4@^1.2.1: 215 | version "1.6.0" 216 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 217 | 218 | babel-code-frame@^6.26.0: 219 | version "6.26.0" 220 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 221 | dependencies: 222 | chalk "^1.1.3" 223 | esutils "^2.0.2" 224 | js-tokens "^3.0.2" 225 | 226 | babel-core@^6.22.1, babel-core@^6.26.0: 227 | version "6.26.0" 228 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 229 | dependencies: 230 | babel-code-frame "^6.26.0" 231 | babel-generator "^6.26.0" 232 | babel-helpers "^6.24.1" 233 | babel-messages "^6.23.0" 234 | babel-register "^6.26.0" 235 | babel-runtime "^6.26.0" 236 | babel-template "^6.26.0" 237 | babel-traverse "^6.26.0" 238 | babel-types "^6.26.0" 239 | babylon "^6.18.0" 240 | convert-source-map "^1.5.0" 241 | debug "^2.6.8" 242 | json5 "^0.5.1" 243 | lodash "^4.17.4" 244 | minimatch "^3.0.4" 245 | path-is-absolute "^1.0.1" 246 | private "^0.1.7" 247 | slash "^1.0.0" 248 | source-map "^0.5.6" 249 | 250 | babel-generator@^6.26.0: 251 | version "6.26.0" 252 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 253 | dependencies: 254 | babel-messages "^6.23.0" 255 | babel-runtime "^6.26.0" 256 | babel-types "^6.26.0" 257 | detect-indent "^4.0.0" 258 | jsesc "^1.3.0" 259 | lodash "^4.17.4" 260 | source-map "^0.5.6" 261 | trim-right "^1.0.1" 262 | 263 | babel-helper-bindify-decorators@^6.24.1: 264 | version "6.24.1" 265 | resolved "https://registry.yarnpkg.com/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.24.1.tgz#14c19e5f142d7b47f19a52431e52b1ccbc40a330" 266 | dependencies: 267 | babel-runtime "^6.22.0" 268 | babel-traverse "^6.24.1" 269 | babel-types "^6.24.1" 270 | 271 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 272 | version "6.24.1" 273 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 274 | dependencies: 275 | babel-helper-explode-assignable-expression "^6.24.1" 276 | babel-runtime "^6.22.0" 277 | babel-types "^6.24.1" 278 | 279 | babel-helper-call-delegate@^6.24.1: 280 | version "6.24.1" 281 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 282 | dependencies: 283 | babel-helper-hoist-variables "^6.24.1" 284 | babel-runtime "^6.22.0" 285 | babel-traverse "^6.24.1" 286 | babel-types "^6.24.1" 287 | 288 | babel-helper-define-map@^6.24.1: 289 | version "6.26.0" 290 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 291 | dependencies: 292 | babel-helper-function-name "^6.24.1" 293 | babel-runtime "^6.26.0" 294 | babel-types "^6.26.0" 295 | lodash "^4.17.4" 296 | 297 | babel-helper-explode-assignable-expression@^6.24.1: 298 | version "6.24.1" 299 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 300 | dependencies: 301 | babel-runtime "^6.22.0" 302 | babel-traverse "^6.24.1" 303 | babel-types "^6.24.1" 304 | 305 | babel-helper-explode-class@^6.24.1: 306 | version "6.24.1" 307 | resolved "https://registry.yarnpkg.com/babel-helper-explode-class/-/babel-helper-explode-class-6.24.1.tgz#7dc2a3910dee007056e1e31d640ced3d54eaa9eb" 308 | dependencies: 309 | babel-helper-bindify-decorators "^6.24.1" 310 | babel-runtime "^6.22.0" 311 | babel-traverse "^6.24.1" 312 | babel-types "^6.24.1" 313 | 314 | babel-helper-function-name@^6.24.1: 315 | version "6.24.1" 316 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 317 | dependencies: 318 | babel-helper-get-function-arity "^6.24.1" 319 | babel-runtime "^6.22.0" 320 | babel-template "^6.24.1" 321 | babel-traverse "^6.24.1" 322 | babel-types "^6.24.1" 323 | 324 | babel-helper-get-function-arity@^6.24.1: 325 | version "6.24.1" 326 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 327 | dependencies: 328 | babel-runtime "^6.22.0" 329 | babel-types "^6.24.1" 330 | 331 | babel-helper-hoist-variables@^6.24.1: 332 | version "6.24.1" 333 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 334 | dependencies: 335 | babel-runtime "^6.22.0" 336 | babel-types "^6.24.1" 337 | 338 | babel-helper-optimise-call-expression@^6.24.1: 339 | version "6.24.1" 340 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 341 | dependencies: 342 | babel-runtime "^6.22.0" 343 | babel-types "^6.24.1" 344 | 345 | babel-helper-regex@^6.24.1: 346 | version "6.26.0" 347 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 348 | dependencies: 349 | babel-runtime "^6.26.0" 350 | babel-types "^6.26.0" 351 | lodash "^4.17.4" 352 | 353 | babel-helper-remap-async-to-generator@^6.24.1: 354 | version "6.24.1" 355 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 356 | dependencies: 357 | babel-helper-function-name "^6.24.1" 358 | babel-runtime "^6.22.0" 359 | babel-template "^6.24.1" 360 | babel-traverse "^6.24.1" 361 | babel-types "^6.24.1" 362 | 363 | babel-helper-replace-supers@^6.24.1: 364 | version "6.24.1" 365 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 366 | dependencies: 367 | babel-helper-optimise-call-expression "^6.24.1" 368 | babel-messages "^6.23.0" 369 | babel-runtime "^6.22.0" 370 | babel-template "^6.24.1" 371 | babel-traverse "^6.24.1" 372 | babel-types "^6.24.1" 373 | 374 | babel-helpers@^6.24.1: 375 | version "6.24.1" 376 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 377 | dependencies: 378 | babel-runtime "^6.22.0" 379 | babel-template "^6.24.1" 380 | 381 | babel-loader@^7.1.1: 382 | version "7.1.2" 383 | resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-7.1.2.tgz#f6cbe122710f1aa2af4d881c6d5b54358ca24126" 384 | dependencies: 385 | find-cache-dir "^1.0.0" 386 | loader-utils "^1.0.2" 387 | mkdirp "^0.5.1" 388 | 389 | babel-messages@^6.23.0: 390 | version "6.23.0" 391 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 392 | dependencies: 393 | babel-runtime "^6.22.0" 394 | 395 | babel-plugin-check-es2015-constants@^6.22.0: 396 | version "6.22.0" 397 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 398 | dependencies: 399 | babel-runtime "^6.22.0" 400 | 401 | babel-plugin-syntax-async-functions@^6.8.0: 402 | version "6.13.0" 403 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 404 | 405 | babel-plugin-syntax-async-generators@^6.5.0: 406 | version "6.13.0" 407 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a" 408 | 409 | babel-plugin-syntax-class-properties@^6.8.0: 410 | version "6.13.0" 411 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 412 | 413 | babel-plugin-syntax-decorators@^6.13.0: 414 | version "6.13.0" 415 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b" 416 | 417 | babel-plugin-syntax-dynamic-import@^6.18.0: 418 | version "6.18.0" 419 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da" 420 | 421 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 422 | version "6.13.0" 423 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 424 | 425 | babel-plugin-syntax-object-rest-spread@^6.8.0: 426 | version "6.13.0" 427 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 428 | 429 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 430 | version "6.22.0" 431 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 432 | 433 | babel-plugin-transform-async-generator-functions@^6.24.1: 434 | version "6.24.1" 435 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.24.1.tgz#f058900145fd3e9907a6ddf28da59f215258a5db" 436 | dependencies: 437 | babel-helper-remap-async-to-generator "^6.24.1" 438 | babel-plugin-syntax-async-generators "^6.5.0" 439 | babel-runtime "^6.22.0" 440 | 441 | babel-plugin-transform-async-to-generator@^6.22.0, babel-plugin-transform-async-to-generator@^6.24.1: 442 | version "6.24.1" 443 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 444 | dependencies: 445 | babel-helper-remap-async-to-generator "^6.24.1" 446 | babel-plugin-syntax-async-functions "^6.8.0" 447 | babel-runtime "^6.22.0" 448 | 449 | babel-plugin-transform-class-properties@^6.24.1: 450 | version "6.24.1" 451 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac" 452 | dependencies: 453 | babel-helper-function-name "^6.24.1" 454 | babel-plugin-syntax-class-properties "^6.8.0" 455 | babel-runtime "^6.22.0" 456 | babel-template "^6.24.1" 457 | 458 | babel-plugin-transform-decorators@^6.24.1: 459 | version "6.24.1" 460 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.24.1.tgz#788013d8f8c6b5222bdf7b344390dfd77569e24d" 461 | dependencies: 462 | babel-helper-explode-class "^6.24.1" 463 | babel-plugin-syntax-decorators "^6.13.0" 464 | babel-runtime "^6.22.0" 465 | babel-template "^6.24.1" 466 | babel-types "^6.24.1" 467 | 468 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 469 | version "6.22.0" 470 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 471 | dependencies: 472 | babel-runtime "^6.22.0" 473 | 474 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 475 | version "6.22.0" 476 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 477 | dependencies: 478 | babel-runtime "^6.22.0" 479 | 480 | babel-plugin-transform-es2015-block-scoping@^6.23.0: 481 | version "6.26.0" 482 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 483 | dependencies: 484 | babel-runtime "^6.26.0" 485 | babel-template "^6.26.0" 486 | babel-traverse "^6.26.0" 487 | babel-types "^6.26.0" 488 | lodash "^4.17.4" 489 | 490 | babel-plugin-transform-es2015-classes@^6.23.0: 491 | version "6.24.1" 492 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 493 | dependencies: 494 | babel-helper-define-map "^6.24.1" 495 | babel-helper-function-name "^6.24.1" 496 | babel-helper-optimise-call-expression "^6.24.1" 497 | babel-helper-replace-supers "^6.24.1" 498 | babel-messages "^6.23.0" 499 | babel-runtime "^6.22.0" 500 | babel-template "^6.24.1" 501 | babel-traverse "^6.24.1" 502 | babel-types "^6.24.1" 503 | 504 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 505 | version "6.24.1" 506 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 507 | dependencies: 508 | babel-runtime "^6.22.0" 509 | babel-template "^6.24.1" 510 | 511 | babel-plugin-transform-es2015-destructuring@^6.23.0: 512 | version "6.23.0" 513 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 514 | dependencies: 515 | babel-runtime "^6.22.0" 516 | 517 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 518 | version "6.24.1" 519 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 520 | dependencies: 521 | babel-runtime "^6.22.0" 522 | babel-types "^6.24.1" 523 | 524 | babel-plugin-transform-es2015-for-of@^6.23.0: 525 | version "6.23.0" 526 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 527 | dependencies: 528 | babel-runtime "^6.22.0" 529 | 530 | babel-plugin-transform-es2015-function-name@^6.22.0: 531 | version "6.24.1" 532 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 533 | dependencies: 534 | babel-helper-function-name "^6.24.1" 535 | babel-runtime "^6.22.0" 536 | babel-types "^6.24.1" 537 | 538 | babel-plugin-transform-es2015-literals@^6.22.0: 539 | version "6.22.0" 540 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 541 | dependencies: 542 | babel-runtime "^6.22.0" 543 | 544 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 545 | version "6.24.1" 546 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 547 | dependencies: 548 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 549 | babel-runtime "^6.22.0" 550 | babel-template "^6.24.1" 551 | 552 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 553 | version "6.26.0" 554 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" 555 | dependencies: 556 | babel-plugin-transform-strict-mode "^6.24.1" 557 | babel-runtime "^6.26.0" 558 | babel-template "^6.26.0" 559 | babel-types "^6.26.0" 560 | 561 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0: 562 | version "6.24.1" 563 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 564 | dependencies: 565 | babel-helper-hoist-variables "^6.24.1" 566 | babel-runtime "^6.22.0" 567 | babel-template "^6.24.1" 568 | 569 | babel-plugin-transform-es2015-modules-umd@^6.23.0: 570 | version "6.24.1" 571 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 572 | dependencies: 573 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 574 | babel-runtime "^6.22.0" 575 | babel-template "^6.24.1" 576 | 577 | babel-plugin-transform-es2015-object-super@^6.22.0: 578 | version "6.24.1" 579 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 580 | dependencies: 581 | babel-helper-replace-supers "^6.24.1" 582 | babel-runtime "^6.22.0" 583 | 584 | babel-plugin-transform-es2015-parameters@^6.23.0: 585 | version "6.24.1" 586 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 587 | dependencies: 588 | babel-helper-call-delegate "^6.24.1" 589 | babel-helper-get-function-arity "^6.24.1" 590 | babel-runtime "^6.22.0" 591 | babel-template "^6.24.1" 592 | babel-traverse "^6.24.1" 593 | babel-types "^6.24.1" 594 | 595 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 596 | version "6.24.1" 597 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 598 | dependencies: 599 | babel-runtime "^6.22.0" 600 | babel-types "^6.24.1" 601 | 602 | babel-plugin-transform-es2015-spread@^6.22.0: 603 | version "6.22.0" 604 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 605 | dependencies: 606 | babel-runtime "^6.22.0" 607 | 608 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 609 | version "6.24.1" 610 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 611 | dependencies: 612 | babel-helper-regex "^6.24.1" 613 | babel-runtime "^6.22.0" 614 | babel-types "^6.24.1" 615 | 616 | babel-plugin-transform-es2015-template-literals@^6.22.0: 617 | version "6.22.0" 618 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 619 | dependencies: 620 | babel-runtime "^6.22.0" 621 | 622 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 623 | version "6.23.0" 624 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 625 | dependencies: 626 | babel-runtime "^6.22.0" 627 | 628 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 629 | version "6.24.1" 630 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 631 | dependencies: 632 | babel-helper-regex "^6.24.1" 633 | babel-runtime "^6.22.0" 634 | regexpu-core "^2.0.0" 635 | 636 | babel-plugin-transform-exponentiation-operator@^6.22.0, babel-plugin-transform-exponentiation-operator@^6.24.1: 637 | version "6.24.1" 638 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 639 | dependencies: 640 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 641 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 642 | babel-runtime "^6.22.0" 643 | 644 | babel-plugin-transform-object-rest-spread@^6.22.0: 645 | version "6.26.0" 646 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06" 647 | dependencies: 648 | babel-plugin-syntax-object-rest-spread "^6.8.0" 649 | babel-runtime "^6.26.0" 650 | 651 | babel-plugin-transform-regenerator@^6.22.0: 652 | version "6.26.0" 653 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 654 | dependencies: 655 | regenerator-transform "^0.10.0" 656 | 657 | babel-plugin-transform-runtime@^6.22.0: 658 | version "6.23.0" 659 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.23.0.tgz#88490d446502ea9b8e7efb0fe09ec4d99479b1ee" 660 | dependencies: 661 | babel-runtime "^6.22.0" 662 | 663 | babel-plugin-transform-strict-mode@^6.24.1: 664 | version "6.24.1" 665 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 666 | dependencies: 667 | babel-runtime "^6.22.0" 668 | babel-types "^6.24.1" 669 | 670 | babel-preset-env@^1.3.2: 671 | version "1.6.1" 672 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.6.1.tgz#a18b564cc9b9afdf4aae57ae3c1b0d99188e6f48" 673 | dependencies: 674 | babel-plugin-check-es2015-constants "^6.22.0" 675 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 676 | babel-plugin-transform-async-to-generator "^6.22.0" 677 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 678 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 679 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 680 | babel-plugin-transform-es2015-classes "^6.23.0" 681 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 682 | babel-plugin-transform-es2015-destructuring "^6.23.0" 683 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 684 | babel-plugin-transform-es2015-for-of "^6.23.0" 685 | babel-plugin-transform-es2015-function-name "^6.22.0" 686 | babel-plugin-transform-es2015-literals "^6.22.0" 687 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 688 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 689 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 690 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 691 | babel-plugin-transform-es2015-object-super "^6.22.0" 692 | babel-plugin-transform-es2015-parameters "^6.23.0" 693 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 694 | babel-plugin-transform-es2015-spread "^6.22.0" 695 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 696 | babel-plugin-transform-es2015-template-literals "^6.22.0" 697 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 698 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 699 | babel-plugin-transform-exponentiation-operator "^6.22.0" 700 | babel-plugin-transform-regenerator "^6.22.0" 701 | browserslist "^2.1.2" 702 | invariant "^2.2.2" 703 | semver "^5.3.0" 704 | 705 | babel-preset-stage-2@^6.22.0: 706 | version "6.24.1" 707 | resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.24.1.tgz#d9e2960fb3d71187f0e64eec62bc07767219bdc1" 708 | dependencies: 709 | babel-plugin-syntax-dynamic-import "^6.18.0" 710 | babel-plugin-transform-class-properties "^6.24.1" 711 | babel-plugin-transform-decorators "^6.24.1" 712 | babel-preset-stage-3 "^6.24.1" 713 | 714 | babel-preset-stage-3@^6.24.1: 715 | version "6.24.1" 716 | resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.24.1.tgz#836ada0a9e7a7fa37cb138fb9326f87934a48395" 717 | dependencies: 718 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 719 | babel-plugin-transform-async-generator-functions "^6.24.1" 720 | babel-plugin-transform-async-to-generator "^6.24.1" 721 | babel-plugin-transform-exponentiation-operator "^6.24.1" 722 | babel-plugin-transform-object-rest-spread "^6.22.0" 723 | 724 | babel-register@^6.22.0, babel-register@^6.26.0: 725 | version "6.26.0" 726 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 727 | dependencies: 728 | babel-core "^6.26.0" 729 | babel-runtime "^6.26.0" 730 | core-js "^2.5.0" 731 | home-or-tmp "^2.0.0" 732 | lodash "^4.17.4" 733 | mkdirp "^0.5.1" 734 | source-map-support "^0.4.15" 735 | 736 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 737 | version "6.26.0" 738 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 739 | dependencies: 740 | core-js "^2.4.0" 741 | regenerator-runtime "^0.11.0" 742 | 743 | babel-template@^6.24.1, babel-template@^6.26.0: 744 | version "6.26.0" 745 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 746 | dependencies: 747 | babel-runtime "^6.26.0" 748 | babel-traverse "^6.26.0" 749 | babel-types "^6.26.0" 750 | babylon "^6.18.0" 751 | lodash "^4.17.4" 752 | 753 | babel-traverse@^6.24.1, babel-traverse@^6.26.0: 754 | version "6.26.0" 755 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 756 | dependencies: 757 | babel-code-frame "^6.26.0" 758 | babel-messages "^6.23.0" 759 | babel-runtime "^6.26.0" 760 | babel-types "^6.26.0" 761 | babylon "^6.18.0" 762 | debug "^2.6.8" 763 | globals "^9.18.0" 764 | invariant "^2.2.2" 765 | lodash "^4.17.4" 766 | 767 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 768 | version "6.26.0" 769 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 770 | dependencies: 771 | babel-runtime "^6.26.0" 772 | esutils "^2.0.2" 773 | lodash "^4.17.4" 774 | to-fast-properties "^1.0.3" 775 | 776 | babylon@^6.18.0: 777 | version "6.18.0" 778 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 779 | 780 | balanced-match@^0.4.2: 781 | version "0.4.2" 782 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 783 | 784 | balanced-match@^1.0.0: 785 | version "1.0.0" 786 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 787 | 788 | base64-js@^1.0.2: 789 | version "1.2.1" 790 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.1.tgz#a91947da1f4a516ea38e5b4ec0ec3773675e0886" 791 | 792 | bcrypt-pbkdf@^1.0.0: 793 | version "1.0.1" 794 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 795 | dependencies: 796 | tweetnacl "^0.14.3" 797 | 798 | big.js@^3.1.3: 799 | version "3.2.0" 800 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.2.0.tgz#a5fc298b81b9e0dca2e458824784b65c52ba588e" 801 | 802 | binary-extensions@^1.0.0: 803 | version "1.11.0" 804 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 805 | 806 | block-stream@*: 807 | version "0.0.9" 808 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 809 | dependencies: 810 | inherits "~2.0.0" 811 | 812 | bluebird@^3.1.1, bluebird@^3.4.7, bluebird@^3.5.0: 813 | version "3.5.1" 814 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.1.tgz#d9551f9de98f1fcda1e683d17ee91a0602ee2eb9" 815 | 816 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: 817 | version "4.11.8" 818 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" 819 | 820 | body-parser@1.18.2: 821 | version "1.18.2" 822 | resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.18.2.tgz#87678a19d84b47d859b83199bd59bce222b10454" 823 | dependencies: 824 | bytes "3.0.0" 825 | content-type "~1.0.4" 826 | debug "2.6.9" 827 | depd "~1.1.1" 828 | http-errors "~1.6.2" 829 | iconv-lite "0.4.19" 830 | on-finished "~2.3.0" 831 | qs "6.5.1" 832 | raw-body "2.3.2" 833 | type-is "~1.6.15" 834 | 835 | boolbase@~1.0.0: 836 | version "1.0.0" 837 | resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" 838 | 839 | boom@2.x.x: 840 | version "2.10.1" 841 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 842 | dependencies: 843 | hoek "2.x.x" 844 | 845 | brace-expansion@^1.1.7: 846 | version "1.1.8" 847 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 848 | dependencies: 849 | balanced-match "^1.0.0" 850 | concat-map "0.0.1" 851 | 852 | braces@^1.8.2: 853 | version "1.8.5" 854 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 855 | dependencies: 856 | expand-range "^1.8.1" 857 | preserve "^0.2.0" 858 | repeat-element "^1.1.2" 859 | 860 | brorand@^1.0.1: 861 | version "1.1.0" 862 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 863 | 864 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 865 | version "1.1.1" 866 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.1.1.tgz#38b7ab55edb806ff2dcda1a7f1620773a477c49f" 867 | dependencies: 868 | buffer-xor "^1.0.3" 869 | cipher-base "^1.0.0" 870 | create-hash "^1.1.0" 871 | evp_bytestokey "^1.0.3" 872 | inherits "^2.0.1" 873 | safe-buffer "^5.0.1" 874 | 875 | browserify-cipher@^1.0.0: 876 | version "1.0.0" 877 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" 878 | dependencies: 879 | browserify-aes "^1.0.4" 880 | browserify-des "^1.0.0" 881 | evp_bytestokey "^1.0.0" 882 | 883 | browserify-des@^1.0.0: 884 | version "1.0.0" 885 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" 886 | dependencies: 887 | cipher-base "^1.0.1" 888 | des.js "^1.0.0" 889 | inherits "^2.0.1" 890 | 891 | browserify-rsa@^4.0.0: 892 | version "4.0.1" 893 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 894 | dependencies: 895 | bn.js "^4.1.0" 896 | randombytes "^2.0.1" 897 | 898 | browserify-sign@^4.0.0: 899 | version "4.0.4" 900 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" 901 | dependencies: 902 | bn.js "^4.1.1" 903 | browserify-rsa "^4.0.0" 904 | create-hash "^1.1.0" 905 | create-hmac "^1.1.2" 906 | elliptic "^6.0.0" 907 | inherits "^2.0.1" 908 | parse-asn1 "^5.0.0" 909 | 910 | browserify-zlib@^0.2.0: 911 | version "0.2.0" 912 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" 913 | dependencies: 914 | pako "~1.0.5" 915 | 916 | browserslist@^1.3.6, browserslist@^1.5.2, browserslist@^1.7.6: 917 | version "1.7.7" 918 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-1.7.7.tgz#0bd76704258be829b2398bb50e4b62d1a166b0b9" 919 | dependencies: 920 | caniuse-db "^1.0.30000639" 921 | electron-to-chromium "^1.2.7" 922 | 923 | browserslist@^2.1.2, browserslist@^2.10.2: 924 | version "2.11.1" 925 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.11.1.tgz#02fda29d9a2164b879100126e7b0d0b57e43a7bb" 926 | dependencies: 927 | caniuse-lite "^1.0.30000789" 928 | electron-to-chromium "^1.3.30" 929 | 930 | buffer-xor@^1.0.3: 931 | version "1.0.3" 932 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 933 | 934 | buffer@^4.3.0: 935 | version "4.9.1" 936 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 937 | dependencies: 938 | base64-js "^1.0.2" 939 | ieee754 "^1.1.4" 940 | isarray "^1.0.0" 941 | 942 | builtin-modules@^1.0.0: 943 | version "1.1.1" 944 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 945 | 946 | builtin-status-codes@^3.0.0: 947 | version "3.0.0" 948 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 949 | 950 | bytes@3.0.0: 951 | version "3.0.0" 952 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" 953 | 954 | cacache@^10.0.1: 955 | version "10.0.2" 956 | resolved "https://registry.yarnpkg.com/cacache/-/cacache-10.0.2.tgz#105a93a162bbedf3a25da42e1939ed99ffb145f8" 957 | dependencies: 958 | bluebird "^3.5.0" 959 | chownr "^1.0.1" 960 | glob "^7.1.2" 961 | graceful-fs "^4.1.11" 962 | lru-cache "^4.1.1" 963 | mississippi "^1.3.0" 964 | mkdirp "^0.5.1" 965 | move-concurrently "^1.0.1" 966 | promise-inflight "^1.0.1" 967 | rimraf "^2.6.1" 968 | ssri "^5.0.0" 969 | unique-filename "^1.1.0" 970 | y18n "^3.2.1" 971 | 972 | camel-case@3.0.x: 973 | version "3.0.0" 974 | resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-3.0.0.tgz#ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73" 975 | dependencies: 976 | no-case "^2.2.0" 977 | upper-case "^1.1.1" 978 | 979 | camelcase@^1.0.2: 980 | version "1.2.1" 981 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 982 | 983 | camelcase@^4.1.0: 984 | version "4.1.0" 985 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 986 | 987 | caniuse-api@^1.5.2: 988 | version "1.6.1" 989 | resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-1.6.1.tgz#b534e7c734c4f81ec5fbe8aca2ad24354b962c6c" 990 | dependencies: 991 | browserslist "^1.3.6" 992 | caniuse-db "^1.0.30000529" 993 | lodash.memoize "^4.1.2" 994 | lodash.uniq "^4.5.0" 995 | 996 | caniuse-db@^1.0.30000529, caniuse-db@^1.0.30000634, caniuse-db@^1.0.30000639: 997 | version "1.0.30000790" 998 | resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000790.tgz#a8023e6eb9fe9c0ef3d60b4427ce104ea87d381c" 999 | 1000 | caniuse-lite@^1.0.30000784, caniuse-lite@^1.0.30000789: 1001 | version "1.0.30000790" 1002 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000790.tgz#c954cca780046f34c4b433d324ef419e1db51a53" 1003 | 1004 | caseless@~0.12.0: 1005 | version "0.12.0" 1006 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 1007 | 1008 | center-align@^0.1.1: 1009 | version "0.1.3" 1010 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 1011 | dependencies: 1012 | align-text "^0.1.3" 1013 | lazy-cache "^1.0.3" 1014 | 1015 | chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3: 1016 | version "1.1.3" 1017 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 1018 | dependencies: 1019 | ansi-styles "^2.2.1" 1020 | escape-string-regexp "^1.0.2" 1021 | has-ansi "^2.0.0" 1022 | strip-ansi "^3.0.0" 1023 | supports-color "^2.0.0" 1024 | 1025 | chalk@^2.0.1, chalk@^2.3.0: 1026 | version "2.3.0" 1027 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba" 1028 | dependencies: 1029 | ansi-styles "^3.1.0" 1030 | escape-string-regexp "^1.0.5" 1031 | supports-color "^4.0.0" 1032 | 1033 | chokidar@^1.7.0: 1034 | version "1.7.0" 1035 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 1036 | dependencies: 1037 | anymatch "^1.3.0" 1038 | async-each "^1.0.0" 1039 | glob-parent "^2.0.0" 1040 | inherits "^2.0.1" 1041 | is-binary-path "^1.0.0" 1042 | is-glob "^2.0.0" 1043 | path-is-absolute "^1.0.0" 1044 | readdirp "^2.0.0" 1045 | optionalDependencies: 1046 | fsevents "^1.0.0" 1047 | 1048 | chownr@^1.0.1: 1049 | version "1.0.1" 1050 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.0.1.tgz#e2a75042a9551908bebd25b8523d5f9769d79181" 1051 | 1052 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: 1053 | version "1.0.4" 1054 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" 1055 | dependencies: 1056 | inherits "^2.0.1" 1057 | safe-buffer "^5.0.1" 1058 | 1059 | clap@^1.0.9: 1060 | version "1.2.3" 1061 | resolved "https://registry.yarnpkg.com/clap/-/clap-1.2.3.tgz#4f36745b32008492557f46412d66d50cb99bce51" 1062 | dependencies: 1063 | chalk "^1.1.3" 1064 | 1065 | clean-css@4.1.x: 1066 | version "4.1.9" 1067 | resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.1.9.tgz#35cee8ae7687a49b98034f70de00c4edd3826301" 1068 | dependencies: 1069 | source-map "0.5.x" 1070 | 1071 | cli-cursor@^2.1.0: 1072 | version "2.1.0" 1073 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 1074 | dependencies: 1075 | restore-cursor "^2.0.0" 1076 | 1077 | cli-spinners@^1.0.0: 1078 | version "1.1.0" 1079 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-1.1.0.tgz#f1847b168844d917a671eb9d147e3df497c90d06" 1080 | 1081 | cliui@^2.1.0: 1082 | version "2.1.0" 1083 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 1084 | dependencies: 1085 | center-align "^0.1.1" 1086 | right-align "^0.1.1" 1087 | wordwrap "0.0.2" 1088 | 1089 | cliui@^3.2.0: 1090 | version "3.2.0" 1091 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 1092 | dependencies: 1093 | string-width "^1.0.1" 1094 | strip-ansi "^3.0.1" 1095 | wrap-ansi "^2.0.0" 1096 | 1097 | clone@^1.0.2: 1098 | version "1.0.3" 1099 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.3.tgz#298d7e2231660f40c003c2ed3140decf3f53085f" 1100 | 1101 | co@^4.6.0: 1102 | version "4.6.0" 1103 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1104 | 1105 | coa@~1.0.1: 1106 | version "1.0.4" 1107 | resolved "https://registry.yarnpkg.com/coa/-/coa-1.0.4.tgz#a9ef153660d6a86a8bdec0289a5c684d217432fd" 1108 | dependencies: 1109 | q "^1.1.2" 1110 | 1111 | code-point-at@^1.0.0: 1112 | version "1.1.0" 1113 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1114 | 1115 | color-convert@^1.3.0, color-convert@^1.9.0: 1116 | version "1.9.1" 1117 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 1118 | dependencies: 1119 | color-name "^1.1.1" 1120 | 1121 | color-name@^1.0.0, color-name@^1.1.1: 1122 | version "1.1.3" 1123 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 1124 | 1125 | color-string@^0.3.0: 1126 | version "0.3.0" 1127 | resolved "https://registry.yarnpkg.com/color-string/-/color-string-0.3.0.tgz#27d46fb67025c5c2fa25993bfbf579e47841b991" 1128 | dependencies: 1129 | color-name "^1.0.0" 1130 | 1131 | color@^0.11.0: 1132 | version "0.11.4" 1133 | resolved "https://registry.yarnpkg.com/color/-/color-0.11.4.tgz#6d7b5c74fb65e841cd48792ad1ed5e07b904d764" 1134 | dependencies: 1135 | clone "^1.0.2" 1136 | color-convert "^1.3.0" 1137 | color-string "^0.3.0" 1138 | 1139 | colormin@^1.0.5: 1140 | version "1.1.2" 1141 | resolved "https://registry.yarnpkg.com/colormin/-/colormin-1.1.2.tgz#ea2f7420a72b96881a38aae59ec124a6f7298133" 1142 | dependencies: 1143 | color "^0.11.0" 1144 | css-color-names "0.0.4" 1145 | has "^1.0.1" 1146 | 1147 | colors@~1.1.2: 1148 | version "1.1.2" 1149 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" 1150 | 1151 | combined-stream@^1.0.5, combined-stream@~1.0.5: 1152 | version "1.0.5" 1153 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 1154 | dependencies: 1155 | delayed-stream "~1.0.0" 1156 | 1157 | commander@2.12.x, commander@~2.12.1: 1158 | version "2.12.2" 1159 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.12.2.tgz#0f5946c427ed9ec0d91a46bb9def53e54650e555" 1160 | 1161 | commander@^2.9.0: 1162 | version "2.13.0" 1163 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.13.0.tgz#6964bca67685df7c1f1430c584f07d7597885b9c" 1164 | 1165 | commondir@^1.0.1: 1166 | version "1.0.1" 1167 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 1168 | 1169 | concat-map@0.0.1: 1170 | version "0.0.1" 1171 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1172 | 1173 | concat-stream@^1.5.0: 1174 | version "1.6.0" 1175 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 1176 | dependencies: 1177 | inherits "^2.0.3" 1178 | readable-stream "^2.2.2" 1179 | typedarray "^0.0.6" 1180 | 1181 | connect-history-api-fallback@^1.3.0: 1182 | version "1.5.0" 1183 | resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.5.0.tgz#b06873934bc5e344fef611a196a6faae0aee015a" 1184 | 1185 | console-browserify@^1.1.0: 1186 | version "1.1.0" 1187 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 1188 | dependencies: 1189 | date-now "^0.1.4" 1190 | 1191 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1192 | version "1.1.0" 1193 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1194 | 1195 | consolidate@^0.14.0: 1196 | version "0.14.5" 1197 | resolved "https://registry.yarnpkg.com/consolidate/-/consolidate-0.14.5.tgz#5a25047bc76f73072667c8cb52c989888f494c63" 1198 | dependencies: 1199 | bluebird "^3.1.1" 1200 | 1201 | constants-browserify@^1.0.0: 1202 | version "1.0.0" 1203 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 1204 | 1205 | content-disposition@0.5.2: 1206 | version "0.5.2" 1207 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" 1208 | 1209 | content-type@~1.0.4: 1210 | version "1.0.4" 1211 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" 1212 | 1213 | convert-source-map@^1.5.0: 1214 | version "1.5.1" 1215 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 1216 | 1217 | cookie-signature@1.0.6: 1218 | version "1.0.6" 1219 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" 1220 | 1221 | cookie@0.3.1: 1222 | version "0.3.1" 1223 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" 1224 | 1225 | copy-concurrently@^1.0.0: 1226 | version "1.0.5" 1227 | resolved "https://registry.yarnpkg.com/copy-concurrently/-/copy-concurrently-1.0.5.tgz#92297398cae34937fcafd6ec8139c18051f0b5e0" 1228 | dependencies: 1229 | aproba "^1.1.1" 1230 | fs-write-stream-atomic "^1.0.8" 1231 | iferr "^0.1.5" 1232 | mkdirp "^0.5.1" 1233 | rimraf "^2.5.4" 1234 | run-queue "^1.0.0" 1235 | 1236 | copy-webpack-plugin@^4.0.1: 1237 | version "4.3.1" 1238 | resolved "https://registry.yarnpkg.com/copy-webpack-plugin/-/copy-webpack-plugin-4.3.1.tgz#19ba6370bf6f8e263cbd66185a2b79f2321a9302" 1239 | dependencies: 1240 | cacache "^10.0.1" 1241 | find-cache-dir "^1.0.0" 1242 | globby "^7.1.1" 1243 | is-glob "^4.0.0" 1244 | loader-utils "^0.2.15" 1245 | lodash "^4.3.0" 1246 | minimatch "^3.0.4" 1247 | p-limit "^1.0.0" 1248 | pify "^3.0.0" 1249 | serialize-javascript "^1.4.0" 1250 | 1251 | core-js@^2.4.0, core-js@^2.5.0: 1252 | version "2.5.3" 1253 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e" 1254 | 1255 | core-util-is@1.0.2, core-util-is@~1.0.0: 1256 | version "1.0.2" 1257 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1258 | 1259 | cosmiconfig@^2.1.0, cosmiconfig@^2.1.1: 1260 | version "2.2.2" 1261 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-2.2.2.tgz#6173cebd56fac042c1f4390edf7af6c07c7cb892" 1262 | dependencies: 1263 | is-directory "^0.3.1" 1264 | js-yaml "^3.4.3" 1265 | minimist "^1.2.0" 1266 | object-assign "^4.1.0" 1267 | os-homedir "^1.0.1" 1268 | parse-json "^2.2.0" 1269 | require-from-string "^1.1.0" 1270 | 1271 | create-ecdh@^4.0.0: 1272 | version "4.0.0" 1273 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" 1274 | dependencies: 1275 | bn.js "^4.1.0" 1276 | elliptic "^6.0.0" 1277 | 1278 | create-hash@^1.1.0, create-hash@^1.1.2: 1279 | version "1.1.3" 1280 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.3.tgz#606042ac8b9262750f483caddab0f5819172d8fd" 1281 | dependencies: 1282 | cipher-base "^1.0.1" 1283 | inherits "^2.0.1" 1284 | ripemd160 "^2.0.0" 1285 | sha.js "^2.4.0" 1286 | 1287 | create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: 1288 | version "1.1.6" 1289 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.6.tgz#acb9e221a4e17bdb076e90657c42b93e3726cf06" 1290 | dependencies: 1291 | cipher-base "^1.0.3" 1292 | create-hash "^1.1.0" 1293 | inherits "^2.0.1" 1294 | ripemd160 "^2.0.0" 1295 | safe-buffer "^5.0.1" 1296 | sha.js "^2.4.8" 1297 | 1298 | cross-spawn@^5.0.1: 1299 | version "5.1.0" 1300 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 1301 | dependencies: 1302 | lru-cache "^4.0.1" 1303 | shebang-command "^1.2.0" 1304 | which "^1.2.9" 1305 | 1306 | cryptiles@2.x.x: 1307 | version "2.0.5" 1308 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1309 | dependencies: 1310 | boom "2.x.x" 1311 | 1312 | crypto-browserify@^3.11.0: 1313 | version "3.12.0" 1314 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" 1315 | dependencies: 1316 | browserify-cipher "^1.0.0" 1317 | browserify-sign "^4.0.0" 1318 | create-ecdh "^4.0.0" 1319 | create-hash "^1.1.0" 1320 | create-hmac "^1.1.0" 1321 | diffie-hellman "^5.0.0" 1322 | inherits "^2.0.1" 1323 | pbkdf2 "^3.0.3" 1324 | public-encrypt "^4.0.0" 1325 | randombytes "^2.0.0" 1326 | randomfill "^1.0.3" 1327 | 1328 | css-color-names@0.0.4: 1329 | version "0.0.4" 1330 | resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0" 1331 | 1332 | css-loader@^0.28.0: 1333 | version "0.28.8" 1334 | resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-0.28.8.tgz#ff36381464dea18fe60f2601a060ba6445886bd5" 1335 | dependencies: 1336 | babel-code-frame "^6.26.0" 1337 | css-selector-tokenizer "^0.7.0" 1338 | cssnano "^3.10.0" 1339 | icss-utils "^2.1.0" 1340 | loader-utils "^1.0.2" 1341 | lodash.camelcase "^4.3.0" 1342 | object-assign "^4.1.1" 1343 | postcss "^5.0.6" 1344 | postcss-modules-extract-imports "^1.1.0" 1345 | postcss-modules-local-by-default "^1.2.0" 1346 | postcss-modules-scope "^1.1.0" 1347 | postcss-modules-values "^1.3.0" 1348 | postcss-value-parser "^3.3.0" 1349 | source-list-map "^2.0.0" 1350 | 1351 | css-select@^1.1.0: 1352 | version "1.2.0" 1353 | resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" 1354 | dependencies: 1355 | boolbase "~1.0.0" 1356 | css-what "2.1" 1357 | domutils "1.5.1" 1358 | nth-check "~1.0.1" 1359 | 1360 | css-selector-tokenizer@^0.7.0: 1361 | version "0.7.0" 1362 | resolved "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.7.0.tgz#e6988474ae8c953477bf5e7efecfceccd9cf4c86" 1363 | dependencies: 1364 | cssesc "^0.1.0" 1365 | fastparse "^1.1.1" 1366 | regexpu-core "^1.0.0" 1367 | 1368 | css-what@2.1: 1369 | version "2.1.0" 1370 | resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.0.tgz#9467d032c38cfaefb9f2d79501253062f87fa1bd" 1371 | 1372 | cssesc@^0.1.0: 1373 | version "0.1.0" 1374 | resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-0.1.0.tgz#c814903e45623371a0477b40109aaafbeeaddbb4" 1375 | 1376 | cssnano@^3.10.0, cssnano@^3.4.0: 1377 | version "3.10.0" 1378 | resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-3.10.0.tgz#4f38f6cea2b9b17fa01490f23f1dc68ea65c1c38" 1379 | dependencies: 1380 | autoprefixer "^6.3.1" 1381 | decamelize "^1.1.2" 1382 | defined "^1.0.0" 1383 | has "^1.0.1" 1384 | object-assign "^4.0.1" 1385 | postcss "^5.0.14" 1386 | postcss-calc "^5.2.0" 1387 | postcss-colormin "^2.1.8" 1388 | postcss-convert-values "^2.3.4" 1389 | postcss-discard-comments "^2.0.4" 1390 | postcss-discard-duplicates "^2.0.1" 1391 | postcss-discard-empty "^2.0.1" 1392 | postcss-discard-overridden "^0.1.1" 1393 | postcss-discard-unused "^2.2.1" 1394 | postcss-filter-plugins "^2.0.0" 1395 | postcss-merge-idents "^2.1.5" 1396 | postcss-merge-longhand "^2.0.1" 1397 | postcss-merge-rules "^2.0.3" 1398 | postcss-minify-font-values "^1.0.2" 1399 | postcss-minify-gradients "^1.0.1" 1400 | postcss-minify-params "^1.0.4" 1401 | postcss-minify-selectors "^2.0.4" 1402 | postcss-normalize-charset "^1.1.0" 1403 | postcss-normalize-url "^3.0.7" 1404 | postcss-ordered-values "^2.1.0" 1405 | postcss-reduce-idents "^2.2.2" 1406 | postcss-reduce-initial "^1.0.0" 1407 | postcss-reduce-transforms "^1.0.3" 1408 | postcss-svgo "^2.1.1" 1409 | postcss-unique-selectors "^2.0.2" 1410 | postcss-value-parser "^3.2.3" 1411 | postcss-zindex "^2.0.1" 1412 | 1413 | csso@~2.3.1: 1414 | version "2.3.2" 1415 | resolved "https://registry.yarnpkg.com/csso/-/csso-2.3.2.tgz#ddd52c587033f49e94b71fc55569f252e8ff5f85" 1416 | dependencies: 1417 | clap "^1.0.9" 1418 | source-map "^0.5.3" 1419 | 1420 | cyclist@~0.2.2: 1421 | version "0.2.2" 1422 | resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-0.2.2.tgz#1b33792e11e914a2fd6d6ed6447464444e5fa640" 1423 | 1424 | d@1: 1425 | version "1.0.0" 1426 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 1427 | dependencies: 1428 | es5-ext "^0.10.9" 1429 | 1430 | dashdash@^1.12.0: 1431 | version "1.14.1" 1432 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1433 | dependencies: 1434 | assert-plus "^1.0.0" 1435 | 1436 | date-now@^0.1.4: 1437 | version "0.1.4" 1438 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 1439 | 1440 | de-indent@^1.0.2: 1441 | version "1.0.2" 1442 | resolved "https://registry.yarnpkg.com/de-indent/-/de-indent-1.0.2.tgz#b2038e846dc33baa5796128d0804b455b8c1e21d" 1443 | 1444 | debug@2.6.9, debug@^2.2.0, debug@^2.6.8: 1445 | version "2.6.9" 1446 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1447 | dependencies: 1448 | ms "2.0.0" 1449 | 1450 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: 1451 | version "1.2.0" 1452 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1453 | 1454 | deep-extend@~0.4.0: 1455 | version "0.4.2" 1456 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1457 | 1458 | defined@^1.0.0: 1459 | version "1.0.0" 1460 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 1461 | 1462 | delayed-stream@~1.0.0: 1463 | version "1.0.0" 1464 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1465 | 1466 | delegates@^1.0.0: 1467 | version "1.0.0" 1468 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1469 | 1470 | depd@1.1.1, depd@~1.1.1: 1471 | version "1.1.1" 1472 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.1.tgz#5783b4e1c459f06fa5ca27f991f3d06e7a310359" 1473 | 1474 | des.js@^1.0.0: 1475 | version "1.0.0" 1476 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" 1477 | dependencies: 1478 | inherits "^2.0.1" 1479 | minimalistic-assert "^1.0.0" 1480 | 1481 | destroy@~1.0.4: 1482 | version "1.0.4" 1483 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 1484 | 1485 | detect-indent@^4.0.0: 1486 | version "4.0.0" 1487 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1488 | dependencies: 1489 | repeating "^2.0.0" 1490 | 1491 | detect-libc@^1.0.2: 1492 | version "1.0.3" 1493 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 1494 | 1495 | diffie-hellman@^5.0.0: 1496 | version "5.0.2" 1497 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" 1498 | dependencies: 1499 | bn.js "^4.1.0" 1500 | miller-rabin "^4.0.0" 1501 | randombytes "^2.0.0" 1502 | 1503 | dir-glob@^2.0.0: 1504 | version "2.0.0" 1505 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-2.0.0.tgz#0b205d2b6aef98238ca286598a8204d29d0a0034" 1506 | dependencies: 1507 | arrify "^1.0.1" 1508 | path-type "^3.0.0" 1509 | 1510 | dom-converter@~0.1: 1511 | version "0.1.4" 1512 | resolved "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.1.4.tgz#a45ef5727b890c9bffe6d7c876e7b19cb0e17f3b" 1513 | dependencies: 1514 | utila "~0.3" 1515 | 1516 | dom-serializer@0: 1517 | version "0.1.0" 1518 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82" 1519 | dependencies: 1520 | domelementtype "~1.1.1" 1521 | entities "~1.1.1" 1522 | 1523 | domain-browser@^1.1.1: 1524 | version "1.1.7" 1525 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" 1526 | 1527 | domelementtype@1: 1528 | version "1.3.0" 1529 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.0.tgz#b17aed82e8ab59e52dd9c19b1756e0fc187204c2" 1530 | 1531 | domelementtype@~1.1.1: 1532 | version "1.1.3" 1533 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.1.3.tgz#bd28773e2642881aec51544924299c5cd822185b" 1534 | 1535 | domhandler@2.1: 1536 | version "2.1.0" 1537 | resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.1.0.tgz#d2646f5e57f6c3bab11cf6cb05d3c0acf7412594" 1538 | dependencies: 1539 | domelementtype "1" 1540 | 1541 | domutils@1.1: 1542 | version "1.1.6" 1543 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.1.6.tgz#bddc3de099b9a2efacc51c623f28f416ecc57485" 1544 | dependencies: 1545 | domelementtype "1" 1546 | 1547 | domutils@1.5.1: 1548 | version "1.5.1" 1549 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" 1550 | dependencies: 1551 | dom-serializer "0" 1552 | domelementtype "1" 1553 | 1554 | duplexer@^0.1.1: 1555 | version "0.1.1" 1556 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" 1557 | 1558 | duplexify@^3.4.2, duplexify@^3.5.3: 1559 | version "3.5.3" 1560 | resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.5.3.tgz#8b5818800df92fd0125b27ab896491912858243e" 1561 | dependencies: 1562 | end-of-stream "^1.0.0" 1563 | inherits "^2.0.1" 1564 | readable-stream "^2.0.0" 1565 | stream-shift "^1.0.0" 1566 | 1567 | ecc-jsbn@~0.1.1: 1568 | version "0.1.1" 1569 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1570 | dependencies: 1571 | jsbn "~0.1.0" 1572 | 1573 | ee-first@1.1.1: 1574 | version "1.1.1" 1575 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 1576 | 1577 | ejs@^2.5.6: 1578 | version "2.5.7" 1579 | resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.5.7.tgz#cc872c168880ae3c7189762fd5ffc00896c9518a" 1580 | 1581 | electron-releases@^2.1.0: 1582 | version "2.1.0" 1583 | resolved "https://registry.yarnpkg.com/electron-releases/-/electron-releases-2.1.0.tgz#c5614bf811f176ce3c836e368a0625782341fd4e" 1584 | 1585 | electron-to-chromium@^1.2.7, electron-to-chromium@^1.3.30: 1586 | version "1.3.30" 1587 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.30.tgz#9666f532a64586651fc56a72513692e820d06a80" 1588 | dependencies: 1589 | electron-releases "^2.1.0" 1590 | 1591 | elliptic@^6.0.0: 1592 | version "6.4.0" 1593 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df" 1594 | dependencies: 1595 | bn.js "^4.4.0" 1596 | brorand "^1.0.1" 1597 | hash.js "^1.0.0" 1598 | hmac-drbg "^1.0.0" 1599 | inherits "^2.0.1" 1600 | minimalistic-assert "^1.0.0" 1601 | minimalistic-crypto-utils "^1.0.0" 1602 | 1603 | emojis-list@^2.0.0: 1604 | version "2.1.0" 1605 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" 1606 | 1607 | encodeurl@~1.0.1: 1608 | version "1.0.1" 1609 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20" 1610 | 1611 | end-of-stream@^1.0.0, end-of-stream@^1.1.0: 1612 | version "1.4.1" 1613 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.1.tgz#ed29634d19baba463b6ce6b80a37213eab71ec43" 1614 | dependencies: 1615 | once "^1.4.0" 1616 | 1617 | enhanced-resolve@^3.4.0: 1618 | version "3.4.1" 1619 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz#0421e339fd71419b3da13d129b3979040230476e" 1620 | dependencies: 1621 | graceful-fs "^4.1.2" 1622 | memory-fs "^0.4.0" 1623 | object-assign "^4.0.1" 1624 | tapable "^0.2.7" 1625 | 1626 | entities@~1.1.1: 1627 | version "1.1.1" 1628 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0" 1629 | 1630 | errno@^0.1.3: 1631 | version "0.1.6" 1632 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.6.tgz#c386ce8a6283f14fc09563b71560908c9bf53026" 1633 | dependencies: 1634 | prr "~1.0.1" 1635 | 1636 | error-ex@^1.2.0: 1637 | version "1.3.1" 1638 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1639 | dependencies: 1640 | is-arrayish "^0.2.1" 1641 | 1642 | error-stack-parser@^2.0.0: 1643 | version "2.0.1" 1644 | resolved "https://registry.yarnpkg.com/error-stack-parser/-/error-stack-parser-2.0.1.tgz#a3202b8fb03114aa9b40a0e3669e48b2b65a010a" 1645 | dependencies: 1646 | stackframe "^1.0.3" 1647 | 1648 | es5-ext@^0.10.14, es5-ext@^0.10.35, es5-ext@^0.10.9, es5-ext@~0.10.14: 1649 | version "0.10.37" 1650 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.37.tgz#0ee741d148b80069ba27d020393756af257defc3" 1651 | dependencies: 1652 | es6-iterator "~2.0.1" 1653 | es6-symbol "~3.1.1" 1654 | 1655 | es6-iterator@^2.0.1, es6-iterator@~2.0.1: 1656 | version "2.0.3" 1657 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" 1658 | dependencies: 1659 | d "1" 1660 | es5-ext "^0.10.35" 1661 | es6-symbol "^3.1.1" 1662 | 1663 | es6-map@^0.1.3: 1664 | version "0.1.5" 1665 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" 1666 | dependencies: 1667 | d "1" 1668 | es5-ext "~0.10.14" 1669 | es6-iterator "~2.0.1" 1670 | es6-set "~0.1.5" 1671 | es6-symbol "~3.1.1" 1672 | event-emitter "~0.3.5" 1673 | 1674 | es6-set@~0.1.5: 1675 | version "0.1.5" 1676 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" 1677 | dependencies: 1678 | d "1" 1679 | es5-ext "~0.10.14" 1680 | es6-iterator "~2.0.1" 1681 | es6-symbol "3.1.1" 1682 | event-emitter "~0.3.5" 1683 | 1684 | es6-symbol@3.1.1, es6-symbol@^3.1.1, es6-symbol@~3.1.1: 1685 | version "3.1.1" 1686 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 1687 | dependencies: 1688 | d "1" 1689 | es5-ext "~0.10.14" 1690 | 1691 | es6-weak-map@^2.0.1: 1692 | version "2.0.2" 1693 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 1694 | dependencies: 1695 | d "1" 1696 | es5-ext "^0.10.14" 1697 | es6-iterator "^2.0.1" 1698 | es6-symbol "^3.1.1" 1699 | 1700 | escape-html@~1.0.3: 1701 | version "1.0.3" 1702 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 1703 | 1704 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1705 | version "1.0.5" 1706 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1707 | 1708 | escope@^3.6.0: 1709 | version "3.6.0" 1710 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 1711 | dependencies: 1712 | es6-map "^0.1.3" 1713 | es6-weak-map "^2.0.1" 1714 | esrecurse "^4.1.0" 1715 | estraverse "^4.1.1" 1716 | 1717 | esprima@^2.6.0: 1718 | version "2.7.3" 1719 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1720 | 1721 | esprima@^4.0.0: 1722 | version "4.0.0" 1723 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1724 | 1725 | esrecurse@^4.1.0: 1726 | version "4.2.0" 1727 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" 1728 | dependencies: 1729 | estraverse "^4.1.0" 1730 | object-assign "^4.0.1" 1731 | 1732 | estraverse@^4.1.0, estraverse@^4.1.1: 1733 | version "4.2.0" 1734 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1735 | 1736 | esutils@^2.0.2: 1737 | version "2.0.2" 1738 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1739 | 1740 | etag@~1.8.1: 1741 | version "1.8.1" 1742 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" 1743 | 1744 | event-emitter@~0.3.5: 1745 | version "0.3.5" 1746 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 1747 | dependencies: 1748 | d "1" 1749 | es5-ext "~0.10.14" 1750 | 1751 | eventemitter3@1.x.x: 1752 | version "1.2.0" 1753 | resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-1.2.0.tgz#1c86991d816ad1e504750e73874224ecf3bec508" 1754 | 1755 | events@^1.0.0: 1756 | version "1.1.1" 1757 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 1758 | 1759 | eventsource-polyfill@^0.9.6: 1760 | version "0.9.6" 1761 | resolved "https://registry.yarnpkg.com/eventsource-polyfill/-/eventsource-polyfill-0.9.6.tgz#10e0d187f111b167f28fdab918843ce7d818f13c" 1762 | 1763 | evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: 1764 | version "1.0.3" 1765 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" 1766 | dependencies: 1767 | md5.js "^1.3.4" 1768 | safe-buffer "^5.1.1" 1769 | 1770 | execa@^0.7.0: 1771 | version "0.7.0" 1772 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1773 | dependencies: 1774 | cross-spawn "^5.0.1" 1775 | get-stream "^3.0.0" 1776 | is-stream "^1.1.0" 1777 | npm-run-path "^2.0.0" 1778 | p-finally "^1.0.0" 1779 | signal-exit "^3.0.0" 1780 | strip-eof "^1.0.0" 1781 | 1782 | expand-brackets@^0.1.4: 1783 | version "0.1.5" 1784 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1785 | dependencies: 1786 | is-posix-bracket "^0.1.0" 1787 | 1788 | expand-range@^1.8.1: 1789 | version "1.8.2" 1790 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1791 | dependencies: 1792 | fill-range "^2.1.0" 1793 | 1794 | express@^4.14.1, express@^4.15.2: 1795 | version "4.16.2" 1796 | resolved "https://registry.yarnpkg.com/express/-/express-4.16.2.tgz#e35c6dfe2d64b7dca0a5cd4f21781be3299e076c" 1797 | dependencies: 1798 | accepts "~1.3.4" 1799 | array-flatten "1.1.1" 1800 | body-parser "1.18.2" 1801 | content-disposition "0.5.2" 1802 | content-type "~1.0.4" 1803 | cookie "0.3.1" 1804 | cookie-signature "1.0.6" 1805 | debug "2.6.9" 1806 | depd "~1.1.1" 1807 | encodeurl "~1.0.1" 1808 | escape-html "~1.0.3" 1809 | etag "~1.8.1" 1810 | finalhandler "1.1.0" 1811 | fresh "0.5.2" 1812 | merge-descriptors "1.0.1" 1813 | methods "~1.1.2" 1814 | on-finished "~2.3.0" 1815 | parseurl "~1.3.2" 1816 | path-to-regexp "0.1.7" 1817 | proxy-addr "~2.0.2" 1818 | qs "6.5.1" 1819 | range-parser "~1.2.0" 1820 | safe-buffer "5.1.1" 1821 | send "0.16.1" 1822 | serve-static "1.13.1" 1823 | setprototypeof "1.1.0" 1824 | statuses "~1.3.1" 1825 | type-is "~1.6.15" 1826 | utils-merge "1.0.1" 1827 | vary "~1.1.2" 1828 | 1829 | extend@~3.0.0: 1830 | version "3.0.1" 1831 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1832 | 1833 | extglob@^0.3.1: 1834 | version "0.3.2" 1835 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1836 | dependencies: 1837 | is-extglob "^1.0.0" 1838 | 1839 | extract-text-webpack-plugin@^3.0.0: 1840 | version "3.0.2" 1841 | resolved "https://registry.yarnpkg.com/extract-text-webpack-plugin/-/extract-text-webpack-plugin-3.0.2.tgz#5f043eaa02f9750a9258b78c0a6e0dc1408fb2f7" 1842 | dependencies: 1843 | async "^2.4.1" 1844 | loader-utils "^1.1.0" 1845 | schema-utils "^0.3.0" 1846 | webpack-sources "^1.0.1" 1847 | 1848 | extsprintf@1.3.0: 1849 | version "1.3.0" 1850 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1851 | 1852 | extsprintf@^1.2.0: 1853 | version "1.4.0" 1854 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 1855 | 1856 | fast-deep-equal@^1.0.0: 1857 | version "1.0.0" 1858 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 1859 | 1860 | fast-json-stable-stringify@^2.0.0: 1861 | version "2.0.0" 1862 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1863 | 1864 | fastparse@^1.1.1: 1865 | version "1.1.1" 1866 | resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.1.tgz#d1e2643b38a94d7583b479060e6c4affc94071f8" 1867 | 1868 | file-loader@^1.1.4: 1869 | version "1.1.6" 1870 | resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-1.1.6.tgz#7b9a8f2c58f00a77fddf49e940f7ac978a3ea0e8" 1871 | dependencies: 1872 | loader-utils "^1.0.2" 1873 | schema-utils "^0.3.0" 1874 | 1875 | filename-regex@^2.0.0: 1876 | version "2.0.1" 1877 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1878 | 1879 | filesize@^3.5.9: 1880 | version "3.5.11" 1881 | resolved "https://registry.yarnpkg.com/filesize/-/filesize-3.5.11.tgz#1919326749433bb3cf77368bd158caabcc19e9ee" 1882 | 1883 | fill-range@^2.1.0: 1884 | version "2.2.3" 1885 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1886 | dependencies: 1887 | is-number "^2.1.0" 1888 | isobject "^2.0.0" 1889 | randomatic "^1.1.3" 1890 | repeat-element "^1.1.2" 1891 | repeat-string "^1.5.2" 1892 | 1893 | finalhandler@1.1.0: 1894 | version "1.1.0" 1895 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.0.tgz#ce0b6855b45853e791b2fcc680046d88253dd7f5" 1896 | dependencies: 1897 | debug "2.6.9" 1898 | encodeurl "~1.0.1" 1899 | escape-html "~1.0.3" 1900 | on-finished "~2.3.0" 1901 | parseurl "~1.3.2" 1902 | statuses "~1.3.1" 1903 | unpipe "~1.0.0" 1904 | 1905 | find-cache-dir@^1.0.0: 1906 | version "1.0.0" 1907 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-1.0.0.tgz#9288e3e9e3cc3748717d39eade17cf71fc30ee6f" 1908 | dependencies: 1909 | commondir "^1.0.1" 1910 | make-dir "^1.0.0" 1911 | pkg-dir "^2.0.0" 1912 | 1913 | find-up@^2.0.0, find-up@^2.1.0: 1914 | version "2.1.0" 1915 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1916 | dependencies: 1917 | locate-path "^2.0.0" 1918 | 1919 | flatten@^1.0.2: 1920 | version "1.0.2" 1921 | resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.2.tgz#dae46a9d78fbe25292258cc1e780a41d95c03782" 1922 | 1923 | flush-write-stream@^1.0.0: 1924 | version "1.0.2" 1925 | resolved "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.0.2.tgz#c81b90d8746766f1a609a46809946c45dd8ae417" 1926 | dependencies: 1927 | inherits "^2.0.1" 1928 | readable-stream "^2.0.4" 1929 | 1930 | for-in@^1.0.1: 1931 | version "1.0.2" 1932 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1933 | 1934 | for-own@^0.1.4: 1935 | version "0.1.5" 1936 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1937 | dependencies: 1938 | for-in "^1.0.1" 1939 | 1940 | forever-agent@~0.6.1: 1941 | version "0.6.1" 1942 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1943 | 1944 | form-data@~2.1.1: 1945 | version "2.1.4" 1946 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1947 | dependencies: 1948 | asynckit "^0.4.0" 1949 | combined-stream "^1.0.5" 1950 | mime-types "^2.1.12" 1951 | 1952 | forwarded@~0.1.2: 1953 | version "0.1.2" 1954 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84" 1955 | 1956 | fresh@0.5.2: 1957 | version "0.5.2" 1958 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" 1959 | 1960 | friendly-errors-webpack-plugin@^1.6.1: 1961 | version "1.6.1" 1962 | resolved "https://registry.yarnpkg.com/friendly-errors-webpack-plugin/-/friendly-errors-webpack-plugin-1.6.1.tgz#e32781c4722f546a06a9b5d7a7cfa28520375d70" 1963 | dependencies: 1964 | chalk "^1.1.3" 1965 | error-stack-parser "^2.0.0" 1966 | string-length "^1.0.1" 1967 | 1968 | from2@^2.1.0: 1969 | version "2.3.0" 1970 | resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af" 1971 | dependencies: 1972 | inherits "^2.0.1" 1973 | readable-stream "^2.0.0" 1974 | 1975 | fs-write-stream-atomic@^1.0.8: 1976 | version "1.0.10" 1977 | resolved "https://registry.yarnpkg.com/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9" 1978 | dependencies: 1979 | graceful-fs "^4.1.2" 1980 | iferr "^0.1.5" 1981 | imurmurhash "^0.1.4" 1982 | readable-stream "1 || 2" 1983 | 1984 | fs.realpath@^1.0.0: 1985 | version "1.0.0" 1986 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1987 | 1988 | fsevents@^1.0.0: 1989 | version "1.1.3" 1990 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8" 1991 | dependencies: 1992 | nan "^2.3.0" 1993 | node-pre-gyp "^0.6.39" 1994 | 1995 | fstream-ignore@^1.0.5: 1996 | version "1.0.5" 1997 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1998 | dependencies: 1999 | fstream "^1.0.0" 2000 | inherits "2" 2001 | minimatch "^3.0.0" 2002 | 2003 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 2004 | version "1.0.11" 2005 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 2006 | dependencies: 2007 | graceful-fs "^4.1.2" 2008 | inherits "~2.0.0" 2009 | mkdirp ">=0.5 0" 2010 | rimraf "2" 2011 | 2012 | function-bind@^1.0.2: 2013 | version "1.1.1" 2014 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 2015 | 2016 | gauge@~2.7.3: 2017 | version "2.7.4" 2018 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 2019 | dependencies: 2020 | aproba "^1.0.3" 2021 | console-control-strings "^1.0.0" 2022 | has-unicode "^2.0.0" 2023 | object-assign "^4.1.0" 2024 | signal-exit "^3.0.0" 2025 | string-width "^1.0.1" 2026 | strip-ansi "^3.0.1" 2027 | wide-align "^1.1.0" 2028 | 2029 | get-caller-file@^1.0.1: 2030 | version "1.0.2" 2031 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 2032 | 2033 | get-stream@^3.0.0: 2034 | version "3.0.0" 2035 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 2036 | 2037 | getpass@^0.1.1: 2038 | version "0.1.7" 2039 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 2040 | dependencies: 2041 | assert-plus "^1.0.0" 2042 | 2043 | glob-base@^0.3.0: 2044 | version "0.3.0" 2045 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 2046 | dependencies: 2047 | glob-parent "^2.0.0" 2048 | is-glob "^2.0.0" 2049 | 2050 | glob-parent@^2.0.0: 2051 | version "2.0.0" 2052 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 2053 | dependencies: 2054 | is-glob "^2.0.0" 2055 | 2056 | glob@^7.0.0, glob@^7.0.5, glob@^7.1.2: 2057 | version "7.1.2" 2058 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 2059 | dependencies: 2060 | fs.realpath "^1.0.0" 2061 | inflight "^1.0.4" 2062 | inherits "2" 2063 | minimatch "^3.0.4" 2064 | once "^1.3.0" 2065 | path-is-absolute "^1.0.0" 2066 | 2067 | globals@^9.18.0: 2068 | version "9.18.0" 2069 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 2070 | 2071 | globby@^7.1.1: 2072 | version "7.1.1" 2073 | resolved "https://registry.yarnpkg.com/globby/-/globby-7.1.1.tgz#fb2ccff9401f8600945dfada97440cca972b8680" 2074 | dependencies: 2075 | array-union "^1.0.1" 2076 | dir-glob "^2.0.0" 2077 | glob "^7.1.2" 2078 | ignore "^3.3.5" 2079 | pify "^3.0.0" 2080 | slash "^1.0.0" 2081 | 2082 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 2083 | version "4.1.11" 2084 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 2085 | 2086 | gzip-size@^3.0.0: 2087 | version "3.0.0" 2088 | resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-3.0.0.tgz#546188e9bdc337f673772f81660464b389dce520" 2089 | dependencies: 2090 | duplexer "^0.1.1" 2091 | 2092 | har-schema@^1.0.5: 2093 | version "1.0.5" 2094 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 2095 | 2096 | har-validator@~4.2.1: 2097 | version "4.2.1" 2098 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 2099 | dependencies: 2100 | ajv "^4.9.1" 2101 | har-schema "^1.0.5" 2102 | 2103 | has-ansi@^2.0.0: 2104 | version "2.0.0" 2105 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 2106 | dependencies: 2107 | ansi-regex "^2.0.0" 2108 | 2109 | has-flag@^1.0.0: 2110 | version "1.0.0" 2111 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 2112 | 2113 | has-flag@^2.0.0: 2114 | version "2.0.0" 2115 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 2116 | 2117 | has-unicode@^2.0.0: 2118 | version "2.0.1" 2119 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 2120 | 2121 | has@^1.0.1: 2122 | version "1.0.1" 2123 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 2124 | dependencies: 2125 | function-bind "^1.0.2" 2126 | 2127 | hash-base@^2.0.0: 2128 | version "2.0.2" 2129 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-2.0.2.tgz#66ea1d856db4e8a5470cadf6fce23ae5244ef2e1" 2130 | dependencies: 2131 | inherits "^2.0.1" 2132 | 2133 | hash-base@^3.0.0: 2134 | version "3.0.4" 2135 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" 2136 | dependencies: 2137 | inherits "^2.0.1" 2138 | safe-buffer "^5.0.1" 2139 | 2140 | hash-sum@^1.0.2: 2141 | version "1.0.2" 2142 | resolved "https://registry.yarnpkg.com/hash-sum/-/hash-sum-1.0.2.tgz#33b40777754c6432573c120cc3808bbd10d47f04" 2143 | 2144 | hash.js@^1.0.0, hash.js@^1.0.3: 2145 | version "1.1.3" 2146 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.3.tgz#340dedbe6290187151c1ea1d777a3448935df846" 2147 | dependencies: 2148 | inherits "^2.0.3" 2149 | minimalistic-assert "^1.0.0" 2150 | 2151 | hawk@3.1.3, hawk@~3.1.3: 2152 | version "3.1.3" 2153 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 2154 | dependencies: 2155 | boom "2.x.x" 2156 | cryptiles "2.x.x" 2157 | hoek "2.x.x" 2158 | sntp "1.x.x" 2159 | 2160 | he@1.1.x, he@^1.1.0: 2161 | version "1.1.1" 2162 | resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" 2163 | 2164 | hmac-drbg@^1.0.0: 2165 | version "1.0.1" 2166 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 2167 | dependencies: 2168 | hash.js "^1.0.3" 2169 | minimalistic-assert "^1.0.0" 2170 | minimalistic-crypto-utils "^1.0.1" 2171 | 2172 | hoek@2.x.x: 2173 | version "2.16.3" 2174 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 2175 | 2176 | home-or-tmp@^2.0.0: 2177 | version "2.0.0" 2178 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 2179 | dependencies: 2180 | os-homedir "^1.0.0" 2181 | os-tmpdir "^1.0.1" 2182 | 2183 | hosted-git-info@^2.1.4: 2184 | version "2.5.0" 2185 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 2186 | 2187 | html-comment-regex@^1.1.0: 2188 | version "1.1.1" 2189 | resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.1.tgz#668b93776eaae55ebde8f3ad464b307a4963625e" 2190 | 2191 | html-entities@^1.2.0: 2192 | version "1.2.1" 2193 | resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-1.2.1.tgz#0df29351f0721163515dfb9e5543e5f6eed5162f" 2194 | 2195 | html-minifier@^3.2.3: 2196 | version "3.5.8" 2197 | resolved "https://registry.yarnpkg.com/html-minifier/-/html-minifier-3.5.8.tgz#5ccdb1f73a0d654e6090147511f6e6b2ee312700" 2198 | dependencies: 2199 | camel-case "3.0.x" 2200 | clean-css "4.1.x" 2201 | commander "2.12.x" 2202 | he "1.1.x" 2203 | ncname "1.0.x" 2204 | param-case "2.1.x" 2205 | relateurl "0.2.x" 2206 | uglify-js "3.3.x" 2207 | 2208 | html-webpack-plugin@^2.30.1: 2209 | version "2.30.1" 2210 | resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-2.30.1.tgz#7f9c421b7ea91ec460f56527d78df484ee7537d5" 2211 | dependencies: 2212 | bluebird "^3.4.7" 2213 | html-minifier "^3.2.3" 2214 | loader-utils "^0.2.16" 2215 | lodash "^4.17.3" 2216 | pretty-error "^2.0.2" 2217 | toposort "^1.0.0" 2218 | 2219 | htmlparser2@~3.3.0: 2220 | version "3.3.0" 2221 | resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.3.0.tgz#cc70d05a59f6542e43f0e685c982e14c924a9efe" 2222 | dependencies: 2223 | domelementtype "1" 2224 | domhandler "2.1" 2225 | domutils "1.1" 2226 | readable-stream "1.0" 2227 | 2228 | http-errors@1.6.2, http-errors@~1.6.2: 2229 | version "1.6.2" 2230 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.2.tgz#0a002cc85707192a7e7946ceedc11155f60ec736" 2231 | dependencies: 2232 | depd "1.1.1" 2233 | inherits "2.0.3" 2234 | setprototypeof "1.0.3" 2235 | statuses ">= 1.3.1 < 2" 2236 | 2237 | http-proxy-middleware@^0.17.3: 2238 | version "0.17.4" 2239 | resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-0.17.4.tgz#642e8848851d66f09d4f124912846dbaeb41b833" 2240 | dependencies: 2241 | http-proxy "^1.16.2" 2242 | is-glob "^3.1.0" 2243 | lodash "^4.17.2" 2244 | micromatch "^2.3.11" 2245 | 2246 | http-proxy@^1.16.2: 2247 | version "1.16.2" 2248 | resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.16.2.tgz#06dff292952bf64dbe8471fa9df73066d4f37742" 2249 | dependencies: 2250 | eventemitter3 "1.x.x" 2251 | requires-port "1.x.x" 2252 | 2253 | http-signature@~1.1.0: 2254 | version "1.1.1" 2255 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 2256 | dependencies: 2257 | assert-plus "^0.2.0" 2258 | jsprim "^1.2.2" 2259 | sshpk "^1.7.0" 2260 | 2261 | https-browserify@^1.0.0: 2262 | version "1.0.0" 2263 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" 2264 | 2265 | iconv-lite@0.4.19: 2266 | version "0.4.19" 2267 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 2268 | 2269 | icss-replace-symbols@^1.1.0: 2270 | version "1.1.0" 2271 | resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded" 2272 | 2273 | icss-utils@^2.1.0: 2274 | version "2.1.0" 2275 | resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-2.1.0.tgz#83f0a0ec378bf3246178b6c2ad9136f135b1c962" 2276 | dependencies: 2277 | postcss "^6.0.1" 2278 | 2279 | ieee754@^1.1.4: 2280 | version "1.1.8" 2281 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 2282 | 2283 | iferr@^0.1.5: 2284 | version "0.1.5" 2285 | resolved "https://registry.yarnpkg.com/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501" 2286 | 2287 | ignore@^3.3.5: 2288 | version "3.3.7" 2289 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.7.tgz#612289bfb3c220e186a58118618d5be8c1bab021" 2290 | 2291 | imurmurhash@^0.1.4: 2292 | version "0.1.4" 2293 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 2294 | 2295 | indexes-of@^1.0.1: 2296 | version "1.0.1" 2297 | resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" 2298 | 2299 | indexof@0.0.1: 2300 | version "0.0.1" 2301 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 2302 | 2303 | inflight@^1.0.4: 2304 | version "1.0.6" 2305 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 2306 | dependencies: 2307 | once "^1.3.0" 2308 | wrappy "1" 2309 | 2310 | inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 2311 | version "2.0.3" 2312 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 2313 | 2314 | inherits@2.0.1: 2315 | version "2.0.1" 2316 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 2317 | 2318 | ini@~1.3.0: 2319 | version "1.3.5" 2320 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 2321 | 2322 | interpret@^1.0.0: 2323 | version "1.1.0" 2324 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.1.0.tgz#7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614" 2325 | 2326 | invariant@^2.2.2: 2327 | version "2.2.2" 2328 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 2329 | dependencies: 2330 | loose-envify "^1.0.0" 2331 | 2332 | invert-kv@^1.0.0: 2333 | version "1.0.0" 2334 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 2335 | 2336 | ipaddr.js@1.5.2: 2337 | version "1.5.2" 2338 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.5.2.tgz#d4b505bde9946987ccf0fc58d9010ff9607e3fa0" 2339 | 2340 | is-absolute-url@^2.0.0: 2341 | version "2.1.0" 2342 | resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6" 2343 | 2344 | is-arrayish@^0.2.1: 2345 | version "0.2.1" 2346 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 2347 | 2348 | is-binary-path@^1.0.0: 2349 | version "1.0.1" 2350 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 2351 | dependencies: 2352 | binary-extensions "^1.0.0" 2353 | 2354 | is-buffer@^1.1.5: 2355 | version "1.1.6" 2356 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 2357 | 2358 | is-builtin-module@^1.0.0: 2359 | version "1.0.0" 2360 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 2361 | dependencies: 2362 | builtin-modules "^1.0.0" 2363 | 2364 | is-directory@^0.3.1: 2365 | version "0.3.1" 2366 | resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" 2367 | 2368 | is-dotfile@^1.0.0: 2369 | version "1.0.3" 2370 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 2371 | 2372 | is-equal-shallow@^0.1.3: 2373 | version "0.1.3" 2374 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 2375 | dependencies: 2376 | is-primitive "^2.0.0" 2377 | 2378 | is-extendable@^0.1.1: 2379 | version "0.1.1" 2380 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 2381 | 2382 | is-extglob@^1.0.0: 2383 | version "1.0.0" 2384 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 2385 | 2386 | is-extglob@^2.1.0, is-extglob@^2.1.1: 2387 | version "2.1.1" 2388 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 2389 | 2390 | is-finite@^1.0.0: 2391 | version "1.0.2" 2392 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 2393 | dependencies: 2394 | number-is-nan "^1.0.0" 2395 | 2396 | is-fullwidth-code-point@^1.0.0: 2397 | version "1.0.0" 2398 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 2399 | dependencies: 2400 | number-is-nan "^1.0.0" 2401 | 2402 | is-fullwidth-code-point@^2.0.0: 2403 | version "2.0.0" 2404 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 2405 | 2406 | is-glob@^2.0.0, is-glob@^2.0.1: 2407 | version "2.0.1" 2408 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 2409 | dependencies: 2410 | is-extglob "^1.0.0" 2411 | 2412 | is-glob@^3.1.0: 2413 | version "3.1.0" 2414 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 2415 | dependencies: 2416 | is-extglob "^2.1.0" 2417 | 2418 | is-glob@^4.0.0: 2419 | version "4.0.0" 2420 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.0.tgz#9521c76845cc2610a85203ddf080a958c2ffabc0" 2421 | dependencies: 2422 | is-extglob "^2.1.1" 2423 | 2424 | is-number@^2.1.0: 2425 | version "2.1.0" 2426 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 2427 | dependencies: 2428 | kind-of "^3.0.2" 2429 | 2430 | is-number@^3.0.0: 2431 | version "3.0.0" 2432 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 2433 | dependencies: 2434 | kind-of "^3.0.2" 2435 | 2436 | is-plain-obj@^1.0.0: 2437 | version "1.1.0" 2438 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 2439 | 2440 | is-posix-bracket@^0.1.0: 2441 | version "0.1.1" 2442 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2443 | 2444 | is-primitive@^2.0.0: 2445 | version "2.0.0" 2446 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2447 | 2448 | is-stream@^1.1.0: 2449 | version "1.1.0" 2450 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2451 | 2452 | is-svg@^2.0.0: 2453 | version "2.1.0" 2454 | resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-2.1.0.tgz#cf61090da0d9efbcab8722deba6f032208dbb0e9" 2455 | dependencies: 2456 | html-comment-regex "^1.1.0" 2457 | 2458 | is-typedarray@~1.0.0: 2459 | version "1.0.0" 2460 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2461 | 2462 | is-wsl@^1.1.0: 2463 | version "1.1.0" 2464 | resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" 2465 | 2466 | isarray@0.0.1: 2467 | version "0.0.1" 2468 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 2469 | 2470 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2471 | version "1.0.0" 2472 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2473 | 2474 | isexe@^2.0.0: 2475 | version "2.0.0" 2476 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2477 | 2478 | isobject@^2.0.0: 2479 | version "2.1.0" 2480 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2481 | dependencies: 2482 | isarray "1.0.0" 2483 | 2484 | isstream@~0.1.2: 2485 | version "0.1.2" 2486 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2487 | 2488 | js-base64@^2.1.9: 2489 | version "2.4.0" 2490 | resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.4.0.tgz#9e566fee624751a1d720c966cd6226d29d4025aa" 2491 | 2492 | js-tokens@^3.0.0, js-tokens@^3.0.2: 2493 | version "3.0.2" 2494 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 2495 | 2496 | js-yaml@^3.4.3: 2497 | version "3.10.0" 2498 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 2499 | dependencies: 2500 | argparse "^1.0.7" 2501 | esprima "^4.0.0" 2502 | 2503 | js-yaml@~3.7.0: 2504 | version "3.7.0" 2505 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80" 2506 | dependencies: 2507 | argparse "^1.0.7" 2508 | esprima "^2.6.0" 2509 | 2510 | jsbn@~0.1.0: 2511 | version "0.1.1" 2512 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2513 | 2514 | jsesc@^1.3.0: 2515 | version "1.3.0" 2516 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2517 | 2518 | jsesc@~0.5.0: 2519 | version "0.5.0" 2520 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2521 | 2522 | json-loader@^0.5.4: 2523 | version "0.5.7" 2524 | resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.7.tgz#dca14a70235ff82f0ac9a3abeb60d337a365185d" 2525 | 2526 | json-schema-traverse@^0.3.0: 2527 | version "0.3.1" 2528 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 2529 | 2530 | json-schema@0.2.3: 2531 | version "0.2.3" 2532 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2533 | 2534 | json-stable-stringify@^1.0.1: 2535 | version "1.0.1" 2536 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2537 | dependencies: 2538 | jsonify "~0.0.0" 2539 | 2540 | json-stringify-safe@~5.0.1: 2541 | version "5.0.1" 2542 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2543 | 2544 | json5@^0.5.0, json5@^0.5.1: 2545 | version "0.5.1" 2546 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2547 | 2548 | jsonify@~0.0.0: 2549 | version "0.0.0" 2550 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2551 | 2552 | jsprim@^1.2.2: 2553 | version "1.4.1" 2554 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 2555 | dependencies: 2556 | assert-plus "1.0.0" 2557 | extsprintf "1.3.0" 2558 | json-schema "0.2.3" 2559 | verror "1.10.0" 2560 | 2561 | kind-of@^3.0.2: 2562 | version "3.2.2" 2563 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2564 | dependencies: 2565 | is-buffer "^1.1.5" 2566 | 2567 | kind-of@^4.0.0: 2568 | version "4.0.0" 2569 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2570 | dependencies: 2571 | is-buffer "^1.1.5" 2572 | 2573 | last-call-webpack-plugin@^2.1.2: 2574 | version "2.1.2" 2575 | resolved "https://registry.yarnpkg.com/last-call-webpack-plugin/-/last-call-webpack-plugin-2.1.2.tgz#ad80c6e310998294d2ed2180a68e9589e4768c44" 2576 | dependencies: 2577 | lodash "^4.17.4" 2578 | webpack-sources "^1.0.1" 2579 | 2580 | lazy-cache@^1.0.3: 2581 | version "1.0.4" 2582 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2583 | 2584 | lcid@^1.0.0: 2585 | version "1.0.0" 2586 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2587 | dependencies: 2588 | invert-kv "^1.0.0" 2589 | 2590 | load-json-file@^2.0.0: 2591 | version "2.0.0" 2592 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2593 | dependencies: 2594 | graceful-fs "^4.1.2" 2595 | parse-json "^2.2.0" 2596 | pify "^2.0.0" 2597 | strip-bom "^3.0.0" 2598 | 2599 | loader-runner@^2.3.0: 2600 | version "2.3.0" 2601 | resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2" 2602 | 2603 | loader-utils@^0.2.15, loader-utils@^0.2.16: 2604 | version "0.2.17" 2605 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.17.tgz#f86e6374d43205a6e6c60e9196f17c0299bfb348" 2606 | dependencies: 2607 | big.js "^3.1.3" 2608 | emojis-list "^2.0.0" 2609 | json5 "^0.5.0" 2610 | object-assign "^4.0.1" 2611 | 2612 | loader-utils@^1.0.2, loader-utils@^1.1.0: 2613 | version "1.1.0" 2614 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd" 2615 | dependencies: 2616 | big.js "^3.1.3" 2617 | emojis-list "^2.0.0" 2618 | json5 "^0.5.0" 2619 | 2620 | locate-path@^2.0.0: 2621 | version "2.0.0" 2622 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2623 | dependencies: 2624 | p-locate "^2.0.0" 2625 | path-exists "^3.0.0" 2626 | 2627 | lodash.camelcase@^4.3.0: 2628 | version "4.3.0" 2629 | resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" 2630 | 2631 | lodash.memoize@^4.1.2: 2632 | version "4.1.2" 2633 | resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" 2634 | 2635 | lodash.uniq@^4.5.0: 2636 | version "4.5.0" 2637 | resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" 2638 | 2639 | lodash@^4.14.0, lodash@^4.17.2, lodash@^4.17.3, lodash@^4.17.4, lodash@^4.3.0: 2640 | version "4.17.4" 2641 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2642 | 2643 | log-symbols@^1.0.2: 2644 | version "1.0.2" 2645 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" 2646 | dependencies: 2647 | chalk "^1.0.0" 2648 | 2649 | longest@^1.0.1: 2650 | version "1.0.1" 2651 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2652 | 2653 | loose-envify@^1.0.0: 2654 | version "1.3.1" 2655 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2656 | dependencies: 2657 | js-tokens "^3.0.0" 2658 | 2659 | lower-case@^1.1.1: 2660 | version "1.1.4" 2661 | resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-1.1.4.tgz#9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac" 2662 | 2663 | lru-cache@^4.0.1, lru-cache@^4.1.1: 2664 | version "4.1.1" 2665 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 2666 | dependencies: 2667 | pseudomap "^1.0.2" 2668 | yallist "^2.1.2" 2669 | 2670 | macaddress@^0.2.8: 2671 | version "0.2.8" 2672 | resolved "https://registry.yarnpkg.com/macaddress/-/macaddress-0.2.8.tgz#5904dc537c39ec6dbefeae902327135fa8511f12" 2673 | 2674 | make-dir@^1.0.0: 2675 | version "1.1.0" 2676 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.1.0.tgz#19b4369fe48c116f53c2af95ad102c0e39e85d51" 2677 | dependencies: 2678 | pify "^3.0.0" 2679 | 2680 | math-expression-evaluator@^1.2.14: 2681 | version "1.2.17" 2682 | resolved "https://registry.yarnpkg.com/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz#de819fdbcd84dccd8fae59c6aeb79615b9d266ac" 2683 | 2684 | md5.js@^1.3.4: 2685 | version "1.3.4" 2686 | resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.4.tgz#e9bdbde94a20a5ac18b04340fc5764d5b09d901d" 2687 | dependencies: 2688 | hash-base "^3.0.0" 2689 | inherits "^2.0.1" 2690 | 2691 | media-typer@0.3.0: 2692 | version "0.3.0" 2693 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 2694 | 2695 | mem@^1.1.0: 2696 | version "1.1.0" 2697 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 2698 | dependencies: 2699 | mimic-fn "^1.0.0" 2700 | 2701 | memory-fs@^0.4.0, memory-fs@~0.4.1: 2702 | version "0.4.1" 2703 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" 2704 | dependencies: 2705 | errno "^0.1.3" 2706 | readable-stream "^2.0.1" 2707 | 2708 | merge-descriptors@1.0.1: 2709 | version "1.0.1" 2710 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" 2711 | 2712 | methods@~1.1.2: 2713 | version "1.1.2" 2714 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 2715 | 2716 | micromatch@^2.1.5, micromatch@^2.3.11: 2717 | version "2.3.11" 2718 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2719 | dependencies: 2720 | arr-diff "^2.0.0" 2721 | array-unique "^0.2.1" 2722 | braces "^1.8.2" 2723 | expand-brackets "^0.1.4" 2724 | extglob "^0.3.1" 2725 | filename-regex "^2.0.0" 2726 | is-extglob "^1.0.0" 2727 | is-glob "^2.0.1" 2728 | kind-of "^3.0.2" 2729 | normalize-path "^2.0.1" 2730 | object.omit "^2.0.0" 2731 | parse-glob "^3.0.4" 2732 | regex-cache "^0.4.2" 2733 | 2734 | miller-rabin@^4.0.0: 2735 | version "4.0.1" 2736 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" 2737 | dependencies: 2738 | bn.js "^4.0.0" 2739 | brorand "^1.0.1" 2740 | 2741 | mime-db@~1.30.0: 2742 | version "1.30.0" 2743 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 2744 | 2745 | mime-types@^2.1.12, mime-types@~2.1.15, mime-types@~2.1.16, mime-types@~2.1.7: 2746 | version "2.1.17" 2747 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 2748 | dependencies: 2749 | mime-db "~1.30.0" 2750 | 2751 | mime@1.3.x: 2752 | version "1.3.6" 2753 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.6.tgz#591d84d3653a6b0b4a3b9df8de5aa8108e72e5e0" 2754 | 2755 | mime@1.4.1: 2756 | version "1.4.1" 2757 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.4.1.tgz#121f9ebc49e3766f311a76e1fa1c8003c4b03aa6" 2758 | 2759 | mime@^1.5.0: 2760 | version "1.6.0" 2761 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" 2762 | 2763 | mimic-fn@^1.0.0: 2764 | version "1.1.0" 2765 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 2766 | 2767 | minimalistic-assert@^1.0.0: 2768 | version "1.0.0" 2769 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" 2770 | 2771 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: 2772 | version "1.0.1" 2773 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 2774 | 2775 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 2776 | version "3.0.4" 2777 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2778 | dependencies: 2779 | brace-expansion "^1.1.7" 2780 | 2781 | minimist@0.0.8: 2782 | version "0.0.8" 2783 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2784 | 2785 | minimist@^1.2.0: 2786 | version "1.2.0" 2787 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2788 | 2789 | mississippi@^1.3.0: 2790 | version "1.3.0" 2791 | resolved "https://registry.yarnpkg.com/mississippi/-/mississippi-1.3.0.tgz#d201583eb12327e3c5c1642a404a9cacf94e34f5" 2792 | dependencies: 2793 | concat-stream "^1.5.0" 2794 | duplexify "^3.4.2" 2795 | end-of-stream "^1.1.0" 2796 | flush-write-stream "^1.0.0" 2797 | from2 "^2.1.0" 2798 | parallel-transform "^1.1.0" 2799 | pump "^1.0.0" 2800 | pumpify "^1.3.3" 2801 | stream-each "^1.1.0" 2802 | through2 "^2.0.0" 2803 | 2804 | mkdirp@0.5.x, "mkdirp@>=0.5 0", mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1: 2805 | version "0.5.1" 2806 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2807 | dependencies: 2808 | minimist "0.0.8" 2809 | 2810 | move-concurrently@^1.0.1: 2811 | version "1.0.1" 2812 | resolved "https://registry.yarnpkg.com/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92" 2813 | dependencies: 2814 | aproba "^1.1.1" 2815 | copy-concurrently "^1.0.0" 2816 | fs-write-stream-atomic "^1.0.8" 2817 | mkdirp "^0.5.1" 2818 | rimraf "^2.5.4" 2819 | run-queue "^1.0.3" 2820 | 2821 | ms@2.0.0: 2822 | version "2.0.0" 2823 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2824 | 2825 | nan@^2.3.0: 2826 | version "2.8.0" 2827 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.8.0.tgz#ed715f3fe9de02b57a5e6252d90a96675e1f085a" 2828 | 2829 | ncname@1.0.x: 2830 | version "1.0.0" 2831 | resolved "https://registry.yarnpkg.com/ncname/-/ncname-1.0.0.tgz#5b57ad18b1ca092864ef62b0b1ed8194f383b71c" 2832 | dependencies: 2833 | xml-char-classes "^1.0.0" 2834 | 2835 | negotiator@0.6.1: 2836 | version "0.6.1" 2837 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" 2838 | 2839 | no-case@^2.2.0: 2840 | version "2.3.2" 2841 | resolved "https://registry.yarnpkg.com/no-case/-/no-case-2.3.2.tgz#60b813396be39b3f1288a4c1ed5d1e7d28b464ac" 2842 | dependencies: 2843 | lower-case "^1.1.1" 2844 | 2845 | node-libs-browser@^2.0.0: 2846 | version "2.1.0" 2847 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.1.0.tgz#5f94263d404f6e44767d726901fff05478d600df" 2848 | dependencies: 2849 | assert "^1.1.1" 2850 | browserify-zlib "^0.2.0" 2851 | buffer "^4.3.0" 2852 | console-browserify "^1.1.0" 2853 | constants-browserify "^1.0.0" 2854 | crypto-browserify "^3.11.0" 2855 | domain-browser "^1.1.1" 2856 | events "^1.0.0" 2857 | https-browserify "^1.0.0" 2858 | os-browserify "^0.3.0" 2859 | path-browserify "0.0.0" 2860 | process "^0.11.10" 2861 | punycode "^1.2.4" 2862 | querystring-es3 "^0.2.0" 2863 | readable-stream "^2.3.3" 2864 | stream-browserify "^2.0.1" 2865 | stream-http "^2.7.2" 2866 | string_decoder "^1.0.0" 2867 | timers-browserify "^2.0.4" 2868 | tty-browserify "0.0.0" 2869 | url "^0.11.0" 2870 | util "^0.10.3" 2871 | vm-browserify "0.0.4" 2872 | 2873 | node-pre-gyp@^0.6.39: 2874 | version "0.6.39" 2875 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 2876 | dependencies: 2877 | detect-libc "^1.0.2" 2878 | hawk "3.1.3" 2879 | mkdirp "^0.5.1" 2880 | nopt "^4.0.1" 2881 | npmlog "^4.0.2" 2882 | rc "^1.1.7" 2883 | request "2.81.0" 2884 | rimraf "^2.6.1" 2885 | semver "^5.3.0" 2886 | tar "^2.2.1" 2887 | tar-pack "^3.4.0" 2888 | 2889 | nopt@^4.0.1: 2890 | version "4.0.1" 2891 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2892 | dependencies: 2893 | abbrev "1" 2894 | osenv "^0.1.4" 2895 | 2896 | normalize-package-data@^2.3.2: 2897 | version "2.4.0" 2898 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2899 | dependencies: 2900 | hosted-git-info "^2.1.4" 2901 | is-builtin-module "^1.0.0" 2902 | semver "2 || 3 || 4 || 5" 2903 | validate-npm-package-license "^3.0.1" 2904 | 2905 | normalize-path@^2.0.0, normalize-path@^2.0.1: 2906 | version "2.1.1" 2907 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2908 | dependencies: 2909 | remove-trailing-separator "^1.0.1" 2910 | 2911 | normalize-range@^0.1.2: 2912 | version "0.1.2" 2913 | resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" 2914 | 2915 | normalize-url@^1.4.0: 2916 | version "1.9.1" 2917 | resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-1.9.1.tgz#2cc0d66b31ea23036458436e3620d85954c66c3c" 2918 | dependencies: 2919 | object-assign "^4.0.1" 2920 | prepend-http "^1.0.0" 2921 | query-string "^4.1.0" 2922 | sort-keys "^1.0.0" 2923 | 2924 | npm-run-path@^2.0.0: 2925 | version "2.0.2" 2926 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2927 | dependencies: 2928 | path-key "^2.0.0" 2929 | 2930 | npmlog@^4.0.2: 2931 | version "4.1.2" 2932 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2933 | dependencies: 2934 | are-we-there-yet "~1.1.2" 2935 | console-control-strings "~1.1.0" 2936 | gauge "~2.7.3" 2937 | set-blocking "~2.0.0" 2938 | 2939 | nth-check@~1.0.1: 2940 | version "1.0.1" 2941 | resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.1.tgz#9929acdf628fc2c41098deab82ac580cf149aae4" 2942 | dependencies: 2943 | boolbase "~1.0.0" 2944 | 2945 | num2fraction@^1.2.2: 2946 | version "1.2.2" 2947 | resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" 2948 | 2949 | number-is-nan@^1.0.0: 2950 | version "1.0.1" 2951 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2952 | 2953 | oauth-sign@~0.8.1: 2954 | version "0.8.2" 2955 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2956 | 2957 | object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: 2958 | version "4.1.1" 2959 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2960 | 2961 | object.omit@^2.0.0: 2962 | version "2.0.1" 2963 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2964 | dependencies: 2965 | for-own "^0.1.4" 2966 | is-extendable "^0.1.1" 2967 | 2968 | on-finished@~2.3.0: 2969 | version "2.3.0" 2970 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 2971 | dependencies: 2972 | ee-first "1.1.1" 2973 | 2974 | once@^1.3.0, once@^1.3.1, once@^1.3.3, once@^1.4.0: 2975 | version "1.4.0" 2976 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2977 | dependencies: 2978 | wrappy "1" 2979 | 2980 | onetime@^2.0.0: 2981 | version "2.0.1" 2982 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2983 | dependencies: 2984 | mimic-fn "^1.0.0" 2985 | 2986 | opener@^1.4.3: 2987 | version "1.4.3" 2988 | resolved "https://registry.yarnpkg.com/opener/-/opener-1.4.3.tgz#5c6da2c5d7e5831e8ffa3964950f8d6674ac90b8" 2989 | 2990 | opn@^5.1.0: 2991 | version "5.1.0" 2992 | resolved "https://registry.yarnpkg.com/opn/-/opn-5.1.0.tgz#72ce2306a17dbea58ff1041853352b4a8fc77519" 2993 | dependencies: 2994 | is-wsl "^1.1.0" 2995 | 2996 | optimize-css-assets-webpack-plugin@^3.2.0: 2997 | version "3.2.0" 2998 | resolved "https://registry.yarnpkg.com/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-3.2.0.tgz#09a40c4cefde1dd0142444a873c56aa29eb18e6f" 2999 | dependencies: 3000 | cssnano "^3.4.0" 3001 | last-call-webpack-plugin "^2.1.2" 3002 | 3003 | ora@^1.2.0: 3004 | version "1.3.0" 3005 | resolved "https://registry.yarnpkg.com/ora/-/ora-1.3.0.tgz#80078dd2b92a934af66a3ad72a5b910694ede51a" 3006 | dependencies: 3007 | chalk "^1.1.1" 3008 | cli-cursor "^2.1.0" 3009 | cli-spinners "^1.0.0" 3010 | log-symbols "^1.0.2" 3011 | 3012 | os-browserify@^0.3.0: 3013 | version "0.3.0" 3014 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" 3015 | 3016 | os-homedir@^1.0.0, os-homedir@^1.0.1: 3017 | version "1.0.2" 3018 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 3019 | 3020 | os-locale@^2.0.0: 3021 | version "2.1.0" 3022 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 3023 | dependencies: 3024 | execa "^0.7.0" 3025 | lcid "^1.0.0" 3026 | mem "^1.1.0" 3027 | 3028 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 3029 | version "1.0.2" 3030 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 3031 | 3032 | osenv@^0.1.4: 3033 | version "0.1.4" 3034 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 3035 | dependencies: 3036 | os-homedir "^1.0.0" 3037 | os-tmpdir "^1.0.0" 3038 | 3039 | p-finally@^1.0.0: 3040 | version "1.0.0" 3041 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 3042 | 3043 | p-limit@^1.0.0, p-limit@^1.1.0: 3044 | version "1.2.0" 3045 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.2.0.tgz#0e92b6bedcb59f022c13d0f1949dc82d15909f1c" 3046 | dependencies: 3047 | p-try "^1.0.0" 3048 | 3049 | p-locate@^2.0.0: 3050 | version "2.0.0" 3051 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 3052 | dependencies: 3053 | p-limit "^1.1.0" 3054 | 3055 | p-try@^1.0.0: 3056 | version "1.0.0" 3057 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 3058 | 3059 | pako@~1.0.5: 3060 | version "1.0.6" 3061 | resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.6.tgz#0101211baa70c4bca4a0f63f2206e97b7dfaf258" 3062 | 3063 | parallel-transform@^1.1.0: 3064 | version "1.1.0" 3065 | resolved "https://registry.yarnpkg.com/parallel-transform/-/parallel-transform-1.1.0.tgz#d410f065b05da23081fcd10f28854c29bda33b06" 3066 | dependencies: 3067 | cyclist "~0.2.2" 3068 | inherits "^2.0.3" 3069 | readable-stream "^2.1.5" 3070 | 3071 | param-case@2.1.x: 3072 | version "2.1.1" 3073 | resolved "https://registry.yarnpkg.com/param-case/-/param-case-2.1.1.tgz#df94fd8cf6531ecf75e6bef9a0858fbc72be2247" 3074 | dependencies: 3075 | no-case "^2.2.0" 3076 | 3077 | parse-asn1@^5.0.0: 3078 | version "5.1.0" 3079 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712" 3080 | dependencies: 3081 | asn1.js "^4.0.0" 3082 | browserify-aes "^1.0.0" 3083 | create-hash "^1.1.0" 3084 | evp_bytestokey "^1.0.0" 3085 | pbkdf2 "^3.0.3" 3086 | 3087 | parse-glob@^3.0.4: 3088 | version "3.0.4" 3089 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 3090 | dependencies: 3091 | glob-base "^0.3.0" 3092 | is-dotfile "^1.0.0" 3093 | is-extglob "^1.0.0" 3094 | is-glob "^2.0.0" 3095 | 3096 | parse-json@^2.2.0: 3097 | version "2.2.0" 3098 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 3099 | dependencies: 3100 | error-ex "^1.2.0" 3101 | 3102 | parseurl@~1.3.2: 3103 | version "1.3.2" 3104 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.2.tgz#fc289d4ed8993119460c156253262cdc8de65bf3" 3105 | 3106 | path-browserify@0.0.0: 3107 | version "0.0.0" 3108 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 3109 | 3110 | path-exists@^3.0.0: 3111 | version "3.0.0" 3112 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 3113 | 3114 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 3115 | version "1.0.1" 3116 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 3117 | 3118 | path-key@^2.0.0: 3119 | version "2.0.1" 3120 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 3121 | 3122 | path-parse@^1.0.5: 3123 | version "1.0.5" 3124 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 3125 | 3126 | path-to-regexp@0.1.7: 3127 | version "0.1.7" 3128 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" 3129 | 3130 | path-type@^2.0.0: 3131 | version "2.0.0" 3132 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 3133 | dependencies: 3134 | pify "^2.0.0" 3135 | 3136 | path-type@^3.0.0: 3137 | version "3.0.0" 3138 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" 3139 | dependencies: 3140 | pify "^3.0.0" 3141 | 3142 | pbkdf2@^3.0.3: 3143 | version "3.0.14" 3144 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.14.tgz#a35e13c64799b06ce15320f459c230e68e73bade" 3145 | dependencies: 3146 | create-hash "^1.1.2" 3147 | create-hmac "^1.1.4" 3148 | ripemd160 "^2.0.1" 3149 | safe-buffer "^5.0.1" 3150 | sha.js "^2.4.8" 3151 | 3152 | performance-now@^0.2.0: 3153 | version "0.2.0" 3154 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 3155 | 3156 | pify@^2.0.0: 3157 | version "2.3.0" 3158 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 3159 | 3160 | pify@^3.0.0: 3161 | version "3.0.0" 3162 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 3163 | 3164 | pkg-dir@^2.0.0: 3165 | version "2.0.0" 3166 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" 3167 | dependencies: 3168 | find-up "^2.1.0" 3169 | 3170 | portfinder@^1.0.13: 3171 | version "1.0.13" 3172 | resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.13.tgz#bb32ecd87c27104ae6ee44b5a3ccbf0ebb1aede9" 3173 | dependencies: 3174 | async "^1.5.2" 3175 | debug "^2.2.0" 3176 | mkdirp "0.5.x" 3177 | 3178 | postcss-calc@^5.2.0: 3179 | version "5.3.1" 3180 | resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-5.3.1.tgz#77bae7ca928ad85716e2fda42f261bf7c1d65b5e" 3181 | dependencies: 3182 | postcss "^5.0.2" 3183 | postcss-message-helpers "^2.0.0" 3184 | reduce-css-calc "^1.2.6" 3185 | 3186 | postcss-colormin@^2.1.8: 3187 | version "2.2.2" 3188 | resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-2.2.2.tgz#6631417d5f0e909a3d7ec26b24c8a8d1e4f96e4b" 3189 | dependencies: 3190 | colormin "^1.0.5" 3191 | postcss "^5.0.13" 3192 | postcss-value-parser "^3.2.3" 3193 | 3194 | postcss-convert-values@^2.3.4: 3195 | version "2.6.1" 3196 | resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz#bbd8593c5c1fd2e3d1c322bb925dcae8dae4d62d" 3197 | dependencies: 3198 | postcss "^5.0.11" 3199 | postcss-value-parser "^3.1.2" 3200 | 3201 | postcss-discard-comments@^2.0.4: 3202 | version "2.0.4" 3203 | resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz#befe89fafd5b3dace5ccce51b76b81514be00e3d" 3204 | dependencies: 3205 | postcss "^5.0.14" 3206 | 3207 | postcss-discard-duplicates@^2.0.1: 3208 | version "2.1.0" 3209 | resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-2.1.0.tgz#b9abf27b88ac188158a5eb12abcae20263b91932" 3210 | dependencies: 3211 | postcss "^5.0.4" 3212 | 3213 | postcss-discard-empty@^2.0.1: 3214 | version "2.1.0" 3215 | resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz#d2b4bd9d5ced5ebd8dcade7640c7d7cd7f4f92b5" 3216 | dependencies: 3217 | postcss "^5.0.14" 3218 | 3219 | postcss-discard-overridden@^0.1.1: 3220 | version "0.1.1" 3221 | resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz#8b1eaf554f686fb288cd874c55667b0aa3668d58" 3222 | dependencies: 3223 | postcss "^5.0.16" 3224 | 3225 | postcss-discard-unused@^2.2.1: 3226 | version "2.2.3" 3227 | resolved "https://registry.yarnpkg.com/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz#bce30b2cc591ffc634322b5fb3464b6d934f4433" 3228 | dependencies: 3229 | postcss "^5.0.14" 3230 | uniqs "^2.0.0" 3231 | 3232 | postcss-filter-plugins@^2.0.0: 3233 | version "2.0.2" 3234 | resolved "https://registry.yarnpkg.com/postcss-filter-plugins/-/postcss-filter-plugins-2.0.2.tgz#6d85862534d735ac420e4a85806e1f5d4286d84c" 3235 | dependencies: 3236 | postcss "^5.0.4" 3237 | uniqid "^4.0.0" 3238 | 3239 | postcss-load-config@^1.1.0: 3240 | version "1.2.0" 3241 | resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-1.2.0.tgz#539e9afc9ddc8620121ebf9d8c3673e0ce50d28a" 3242 | dependencies: 3243 | cosmiconfig "^2.1.0" 3244 | object-assign "^4.1.0" 3245 | postcss-load-options "^1.2.0" 3246 | postcss-load-plugins "^2.3.0" 3247 | 3248 | postcss-load-options@^1.2.0: 3249 | version "1.2.0" 3250 | resolved "https://registry.yarnpkg.com/postcss-load-options/-/postcss-load-options-1.2.0.tgz#b098b1559ddac2df04bc0bb375f99a5cfe2b6d8c" 3251 | dependencies: 3252 | cosmiconfig "^2.1.0" 3253 | object-assign "^4.1.0" 3254 | 3255 | postcss-load-plugins@^2.3.0: 3256 | version "2.3.0" 3257 | resolved "https://registry.yarnpkg.com/postcss-load-plugins/-/postcss-load-plugins-2.3.0.tgz#745768116599aca2f009fad426b00175049d8d92" 3258 | dependencies: 3259 | cosmiconfig "^2.1.1" 3260 | object-assign "^4.1.0" 3261 | 3262 | postcss-merge-idents@^2.1.5: 3263 | version "2.1.7" 3264 | resolved "https://registry.yarnpkg.com/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz#4c5530313c08e1d5b3bbf3d2bbc747e278eea270" 3265 | dependencies: 3266 | has "^1.0.1" 3267 | postcss "^5.0.10" 3268 | postcss-value-parser "^3.1.1" 3269 | 3270 | postcss-merge-longhand@^2.0.1: 3271 | version "2.0.2" 3272 | resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz#23d90cd127b0a77994915332739034a1a4f3d658" 3273 | dependencies: 3274 | postcss "^5.0.4" 3275 | 3276 | postcss-merge-rules@^2.0.3: 3277 | version "2.1.2" 3278 | resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-2.1.2.tgz#d1df5dfaa7b1acc3be553f0e9e10e87c61b5f721" 3279 | dependencies: 3280 | browserslist "^1.5.2" 3281 | caniuse-api "^1.5.2" 3282 | postcss "^5.0.4" 3283 | postcss-selector-parser "^2.2.2" 3284 | vendors "^1.0.0" 3285 | 3286 | postcss-message-helpers@^2.0.0: 3287 | version "2.0.0" 3288 | resolved "https://registry.yarnpkg.com/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz#a4f2f4fab6e4fe002f0aed000478cdf52f9ba60e" 3289 | 3290 | postcss-minify-font-values@^1.0.2: 3291 | version "1.0.5" 3292 | resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz#4b58edb56641eba7c8474ab3526cafd7bbdecb69" 3293 | dependencies: 3294 | object-assign "^4.0.1" 3295 | postcss "^5.0.4" 3296 | postcss-value-parser "^3.0.2" 3297 | 3298 | postcss-minify-gradients@^1.0.1: 3299 | version "1.0.5" 3300 | resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz#5dbda11373703f83cfb4a3ea3881d8d75ff5e6e1" 3301 | dependencies: 3302 | postcss "^5.0.12" 3303 | postcss-value-parser "^3.3.0" 3304 | 3305 | postcss-minify-params@^1.0.4: 3306 | version "1.2.2" 3307 | resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz#ad2ce071373b943b3d930a3fa59a358c28d6f1f3" 3308 | dependencies: 3309 | alphanum-sort "^1.0.1" 3310 | postcss "^5.0.2" 3311 | postcss-value-parser "^3.0.2" 3312 | uniqs "^2.0.0" 3313 | 3314 | postcss-minify-selectors@^2.0.4: 3315 | version "2.1.1" 3316 | resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz#b2c6a98c0072cf91b932d1a496508114311735bf" 3317 | dependencies: 3318 | alphanum-sort "^1.0.2" 3319 | has "^1.0.1" 3320 | postcss "^5.0.14" 3321 | postcss-selector-parser "^2.0.0" 3322 | 3323 | postcss-modules-extract-imports@^1.1.0: 3324 | version "1.1.0" 3325 | resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.1.0.tgz#b614c9720be6816eaee35fb3a5faa1dba6a05ddb" 3326 | dependencies: 3327 | postcss "^6.0.1" 3328 | 3329 | postcss-modules-local-by-default@^1.2.0: 3330 | version "1.2.0" 3331 | resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz#f7d80c398c5a393fa7964466bd19500a7d61c069" 3332 | dependencies: 3333 | css-selector-tokenizer "^0.7.0" 3334 | postcss "^6.0.1" 3335 | 3336 | postcss-modules-scope@^1.1.0: 3337 | version "1.1.0" 3338 | resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz#d6ea64994c79f97b62a72b426fbe6056a194bb90" 3339 | dependencies: 3340 | css-selector-tokenizer "^0.7.0" 3341 | postcss "^6.0.1" 3342 | 3343 | postcss-modules-values@^1.3.0: 3344 | version "1.3.0" 3345 | resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz#ecffa9d7e192518389f42ad0e83f72aec456ea20" 3346 | dependencies: 3347 | icss-replace-symbols "^1.1.0" 3348 | postcss "^6.0.1" 3349 | 3350 | postcss-normalize-charset@^1.1.0: 3351 | version "1.1.1" 3352 | resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz#ef9ee71212d7fe759c78ed162f61ed62b5cb93f1" 3353 | dependencies: 3354 | postcss "^5.0.5" 3355 | 3356 | postcss-normalize-url@^3.0.7: 3357 | version "3.0.8" 3358 | resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz#108f74b3f2fcdaf891a2ffa3ea4592279fc78222" 3359 | dependencies: 3360 | is-absolute-url "^2.0.0" 3361 | normalize-url "^1.4.0" 3362 | postcss "^5.0.14" 3363 | postcss-value-parser "^3.2.3" 3364 | 3365 | postcss-ordered-values@^2.1.0: 3366 | version "2.2.3" 3367 | resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz#eec6c2a67b6c412a8db2042e77fe8da43f95c11d" 3368 | dependencies: 3369 | postcss "^5.0.4" 3370 | postcss-value-parser "^3.0.1" 3371 | 3372 | postcss-reduce-idents@^2.2.2: 3373 | version "2.4.0" 3374 | resolved "https://registry.yarnpkg.com/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz#c2c6d20cc958284f6abfbe63f7609bf409059ad3" 3375 | dependencies: 3376 | postcss "^5.0.4" 3377 | postcss-value-parser "^3.0.2" 3378 | 3379 | postcss-reduce-initial@^1.0.0: 3380 | version "1.0.1" 3381 | resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz#68f80695f045d08263a879ad240df8dd64f644ea" 3382 | dependencies: 3383 | postcss "^5.0.4" 3384 | 3385 | postcss-reduce-transforms@^1.0.3: 3386 | version "1.0.4" 3387 | resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz#ff76f4d8212437b31c298a42d2e1444025771ae1" 3388 | dependencies: 3389 | has "^1.0.1" 3390 | postcss "^5.0.8" 3391 | postcss-value-parser "^3.0.1" 3392 | 3393 | postcss-selector-parser@^2.0.0, postcss-selector-parser@^2.2.2: 3394 | version "2.2.3" 3395 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz#f9437788606c3c9acee16ffe8d8b16297f27bb90" 3396 | dependencies: 3397 | flatten "^1.0.2" 3398 | indexes-of "^1.0.1" 3399 | uniq "^1.0.1" 3400 | 3401 | postcss-svgo@^2.1.1: 3402 | version "2.1.6" 3403 | resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-2.1.6.tgz#b6df18aa613b666e133f08adb5219c2684ac108d" 3404 | dependencies: 3405 | is-svg "^2.0.0" 3406 | postcss "^5.0.14" 3407 | postcss-value-parser "^3.2.3" 3408 | svgo "^0.7.0" 3409 | 3410 | postcss-unique-selectors@^2.0.2: 3411 | version "2.0.2" 3412 | resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz#981d57d29ddcb33e7b1dfe1fd43b8649f933ca1d" 3413 | dependencies: 3414 | alphanum-sort "^1.0.1" 3415 | postcss "^5.0.4" 3416 | uniqs "^2.0.0" 3417 | 3418 | postcss-value-parser@^3.0.1, postcss-value-parser@^3.0.2, postcss-value-parser@^3.1.1, postcss-value-parser@^3.1.2, postcss-value-parser@^3.2.3, postcss-value-parser@^3.3.0: 3419 | version "3.3.0" 3420 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15" 3421 | 3422 | postcss-zindex@^2.0.1: 3423 | version "2.2.0" 3424 | resolved "https://registry.yarnpkg.com/postcss-zindex/-/postcss-zindex-2.2.0.tgz#d2109ddc055b91af67fc4cb3b025946639d2af22" 3425 | dependencies: 3426 | has "^1.0.1" 3427 | postcss "^5.0.4" 3428 | uniqs "^2.0.0" 3429 | 3430 | postcss@^5.0.10, postcss@^5.0.11, postcss@^5.0.12, postcss@^5.0.13, postcss@^5.0.14, postcss@^5.0.16, postcss@^5.0.2, postcss@^5.0.4, postcss@^5.0.5, postcss@^5.0.6, postcss@^5.0.8, postcss@^5.2.16: 3431 | version "5.2.18" 3432 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.2.18.tgz#badfa1497d46244f6390f58b319830d9107853c5" 3433 | dependencies: 3434 | chalk "^1.1.3" 3435 | js-base64 "^2.1.9" 3436 | source-map "^0.5.6" 3437 | supports-color "^3.2.3" 3438 | 3439 | postcss@^6.0.1, postcss@^6.0.15, postcss@^6.0.8: 3440 | version "6.0.16" 3441 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.16.tgz#112e2fe2a6d2109be0957687243170ea5589e146" 3442 | dependencies: 3443 | chalk "^2.3.0" 3444 | source-map "^0.6.1" 3445 | supports-color "^5.1.0" 3446 | 3447 | prepend-http@^1.0.0: 3448 | version "1.0.4" 3449 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 3450 | 3451 | preserve@^0.2.0: 3452 | version "0.2.0" 3453 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 3454 | 3455 | prettier@^1.7.0: 3456 | version "1.10.2" 3457 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.10.2.tgz#1af8356d1842276a99a5b5529c82dd9e9ad3cc93" 3458 | 3459 | pretty-error@^2.0.2: 3460 | version "2.1.1" 3461 | resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-2.1.1.tgz#5f4f87c8f91e5ae3f3ba87ab4cf5e03b1a17f1a3" 3462 | dependencies: 3463 | renderkid "^2.0.1" 3464 | utila "~0.4" 3465 | 3466 | private@^0.1.6, private@^0.1.7: 3467 | version "0.1.8" 3468 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 3469 | 3470 | process-nextick-args@~1.0.6: 3471 | version "1.0.7" 3472 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 3473 | 3474 | process@^0.11.10: 3475 | version "0.11.10" 3476 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" 3477 | 3478 | promise-inflight@^1.0.1: 3479 | version "1.0.1" 3480 | resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" 3481 | 3482 | proxy-addr@~2.0.2: 3483 | version "2.0.2" 3484 | resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.2.tgz#6571504f47bb988ec8180253f85dd7e14952bdec" 3485 | dependencies: 3486 | forwarded "~0.1.2" 3487 | ipaddr.js "1.5.2" 3488 | 3489 | prr@~1.0.1: 3490 | version "1.0.1" 3491 | resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" 3492 | 3493 | pseudomap@^1.0.2: 3494 | version "1.0.2" 3495 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 3496 | 3497 | public-encrypt@^4.0.0: 3498 | version "4.0.0" 3499 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" 3500 | dependencies: 3501 | bn.js "^4.1.0" 3502 | browserify-rsa "^4.0.0" 3503 | create-hash "^1.1.0" 3504 | parse-asn1 "^5.0.0" 3505 | randombytes "^2.0.1" 3506 | 3507 | pump@^1.0.0: 3508 | version "1.0.3" 3509 | resolved "https://registry.yarnpkg.com/pump/-/pump-1.0.3.tgz#5dfe8311c33bbf6fc18261f9f34702c47c08a954" 3510 | dependencies: 3511 | end-of-stream "^1.1.0" 3512 | once "^1.3.1" 3513 | 3514 | pump@^2.0.0: 3515 | version "2.0.0" 3516 | resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.0.tgz#7946da1c8d622b098e2ceb2d3476582470829c9d" 3517 | dependencies: 3518 | end-of-stream "^1.1.0" 3519 | once "^1.3.1" 3520 | 3521 | pumpify@^1.3.3: 3522 | version "1.3.6" 3523 | resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.3.6.tgz#00d40e5ded0a3bf1e0788b1c0cf426a42882ab64" 3524 | dependencies: 3525 | duplexify "^3.5.3" 3526 | inherits "^2.0.3" 3527 | pump "^2.0.0" 3528 | 3529 | punycode@1.3.2: 3530 | version "1.3.2" 3531 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 3532 | 3533 | punycode@^1.2.4, punycode@^1.4.1: 3534 | version "1.4.1" 3535 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 3536 | 3537 | q@^1.1.2: 3538 | version "1.5.1" 3539 | resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" 3540 | 3541 | qs@6.5.1: 3542 | version "6.5.1" 3543 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" 3544 | 3545 | qs@~6.4.0: 3546 | version "6.4.0" 3547 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 3548 | 3549 | query-string@^4.1.0: 3550 | version "4.3.4" 3551 | resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb" 3552 | dependencies: 3553 | object-assign "^4.1.0" 3554 | strict-uri-encode "^1.0.0" 3555 | 3556 | querystring-es3@^0.2.0: 3557 | version "0.2.1" 3558 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 3559 | 3560 | querystring@0.2.0, querystring@^0.2.0: 3561 | version "0.2.0" 3562 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 3563 | 3564 | randomatic@^1.1.3: 3565 | version "1.1.7" 3566 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 3567 | dependencies: 3568 | is-number "^3.0.0" 3569 | kind-of "^4.0.0" 3570 | 3571 | randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: 3572 | version "2.0.6" 3573 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.6.tgz#d302c522948588848a8d300c932b44c24231da80" 3574 | dependencies: 3575 | safe-buffer "^5.1.0" 3576 | 3577 | randomfill@^1.0.3: 3578 | version "1.0.3" 3579 | resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.3.tgz#b96b7df587f01dd91726c418f30553b1418e3d62" 3580 | dependencies: 3581 | randombytes "^2.0.5" 3582 | safe-buffer "^5.1.0" 3583 | 3584 | range-parser@^1.0.3, range-parser@~1.2.0: 3585 | version "1.2.0" 3586 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" 3587 | 3588 | raw-body@2.3.2: 3589 | version "2.3.2" 3590 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.3.2.tgz#bcd60c77d3eb93cde0050295c3f379389bc88f89" 3591 | dependencies: 3592 | bytes "3.0.0" 3593 | http-errors "1.6.2" 3594 | iconv-lite "0.4.19" 3595 | unpipe "1.0.0" 3596 | 3597 | rc@^1.1.7: 3598 | version "1.2.3" 3599 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.3.tgz#51575a900f8dd68381c710b4712c2154c3e2035b" 3600 | dependencies: 3601 | deep-extend "~0.4.0" 3602 | ini "~1.3.0" 3603 | minimist "^1.2.0" 3604 | strip-json-comments "~2.0.1" 3605 | 3606 | read-pkg-up@^2.0.0: 3607 | version "2.0.0" 3608 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 3609 | dependencies: 3610 | find-up "^2.0.0" 3611 | read-pkg "^2.0.0" 3612 | 3613 | read-pkg@^2.0.0: 3614 | version "2.0.0" 3615 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 3616 | dependencies: 3617 | load-json-file "^2.0.0" 3618 | normalize-package-data "^2.3.2" 3619 | path-type "^2.0.0" 3620 | 3621 | "readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.4, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.2.6, readable-stream@^2.3.3: 3622 | version "2.3.3" 3623 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 3624 | dependencies: 3625 | core-util-is "~1.0.0" 3626 | inherits "~2.0.3" 3627 | isarray "~1.0.0" 3628 | process-nextick-args "~1.0.6" 3629 | safe-buffer "~5.1.1" 3630 | string_decoder "~1.0.3" 3631 | util-deprecate "~1.0.1" 3632 | 3633 | readable-stream@1.0: 3634 | version "1.0.34" 3635 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" 3636 | dependencies: 3637 | core-util-is "~1.0.0" 3638 | inherits "~2.0.1" 3639 | isarray "0.0.1" 3640 | string_decoder "~0.10.x" 3641 | 3642 | readdirp@^2.0.0: 3643 | version "2.1.0" 3644 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 3645 | dependencies: 3646 | graceful-fs "^4.1.2" 3647 | minimatch "^3.0.2" 3648 | readable-stream "^2.0.2" 3649 | set-immediate-shim "^1.0.1" 3650 | 3651 | rechoir@^0.6.2: 3652 | version "0.6.2" 3653 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 3654 | dependencies: 3655 | resolve "^1.1.6" 3656 | 3657 | reduce-css-calc@^1.2.6: 3658 | version "1.3.0" 3659 | resolved "https://registry.yarnpkg.com/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz#747c914e049614a4c9cfbba629871ad1d2927716" 3660 | dependencies: 3661 | balanced-match "^0.4.2" 3662 | math-expression-evaluator "^1.2.14" 3663 | reduce-function-call "^1.0.1" 3664 | 3665 | reduce-function-call@^1.0.1: 3666 | version "1.0.2" 3667 | resolved "https://registry.yarnpkg.com/reduce-function-call/-/reduce-function-call-1.0.2.tgz#5a200bf92e0e37751752fe45b0ab330fd4b6be99" 3668 | dependencies: 3669 | balanced-match "^0.4.2" 3670 | 3671 | regenerate@^1.2.1: 3672 | version "1.3.3" 3673 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f" 3674 | 3675 | regenerator-runtime@^0.11.0: 3676 | version "0.11.1" 3677 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 3678 | 3679 | regenerator-transform@^0.10.0: 3680 | version "0.10.1" 3681 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 3682 | dependencies: 3683 | babel-runtime "^6.18.0" 3684 | babel-types "^6.19.0" 3685 | private "^0.1.6" 3686 | 3687 | regex-cache@^0.4.2: 3688 | version "0.4.4" 3689 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 3690 | dependencies: 3691 | is-equal-shallow "^0.1.3" 3692 | 3693 | regexpu-core@^1.0.0: 3694 | version "1.0.0" 3695 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-1.0.0.tgz#86a763f58ee4d7c2f6b102e4764050de7ed90c6b" 3696 | dependencies: 3697 | regenerate "^1.2.1" 3698 | regjsgen "^0.2.0" 3699 | regjsparser "^0.1.4" 3700 | 3701 | regexpu-core@^2.0.0: 3702 | version "2.0.0" 3703 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 3704 | dependencies: 3705 | regenerate "^1.2.1" 3706 | regjsgen "^0.2.0" 3707 | regjsparser "^0.1.4" 3708 | 3709 | regjsgen@^0.2.0: 3710 | version "0.2.0" 3711 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 3712 | 3713 | regjsparser@^0.1.4: 3714 | version "0.1.5" 3715 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 3716 | dependencies: 3717 | jsesc "~0.5.0" 3718 | 3719 | relateurl@0.2.x: 3720 | version "0.2.7" 3721 | resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" 3722 | 3723 | remove-trailing-separator@^1.0.1: 3724 | version "1.1.0" 3725 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 3726 | 3727 | renderkid@^2.0.1: 3728 | version "2.0.1" 3729 | resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-2.0.1.tgz#898cabfc8bede4b7b91135a3ffd323e58c0db319" 3730 | dependencies: 3731 | css-select "^1.1.0" 3732 | dom-converter "~0.1" 3733 | htmlparser2 "~3.3.0" 3734 | strip-ansi "^3.0.0" 3735 | utila "~0.3" 3736 | 3737 | repeat-element@^1.1.2: 3738 | version "1.1.2" 3739 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3740 | 3741 | repeat-string@^1.5.2: 3742 | version "1.6.1" 3743 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3744 | 3745 | repeating@^2.0.0: 3746 | version "2.0.1" 3747 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3748 | dependencies: 3749 | is-finite "^1.0.0" 3750 | 3751 | request@2.81.0: 3752 | version "2.81.0" 3753 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 3754 | dependencies: 3755 | aws-sign2 "~0.6.0" 3756 | aws4 "^1.2.1" 3757 | caseless "~0.12.0" 3758 | combined-stream "~1.0.5" 3759 | extend "~3.0.0" 3760 | forever-agent "~0.6.1" 3761 | form-data "~2.1.1" 3762 | har-validator "~4.2.1" 3763 | hawk "~3.1.3" 3764 | http-signature "~1.1.0" 3765 | is-typedarray "~1.0.0" 3766 | isstream "~0.1.2" 3767 | json-stringify-safe "~5.0.1" 3768 | mime-types "~2.1.7" 3769 | oauth-sign "~0.8.1" 3770 | performance-now "^0.2.0" 3771 | qs "~6.4.0" 3772 | safe-buffer "^5.0.1" 3773 | stringstream "~0.0.4" 3774 | tough-cookie "~2.3.0" 3775 | tunnel-agent "^0.6.0" 3776 | uuid "^3.0.0" 3777 | 3778 | require-directory@^2.1.1: 3779 | version "2.1.1" 3780 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3781 | 3782 | require-from-string@^1.1.0: 3783 | version "1.2.1" 3784 | resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-1.2.1.tgz#529c9ccef27380adfec9a2f965b649bbee636418" 3785 | 3786 | require-main-filename@^1.0.1: 3787 | version "1.0.1" 3788 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3789 | 3790 | requires-port@1.x.x: 3791 | version "1.0.0" 3792 | resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" 3793 | 3794 | resolve@^1.1.6, resolve@^1.4.0: 3795 | version "1.5.0" 3796 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36" 3797 | dependencies: 3798 | path-parse "^1.0.5" 3799 | 3800 | restore-cursor@^2.0.0: 3801 | version "2.0.0" 3802 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 3803 | dependencies: 3804 | onetime "^2.0.0" 3805 | signal-exit "^3.0.2" 3806 | 3807 | right-align@^0.1.1: 3808 | version "0.1.3" 3809 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3810 | dependencies: 3811 | align-text "^0.1.1" 3812 | 3813 | rimraf@2, rimraf@^2.5.1, rimraf@^2.5.4, rimraf@^2.6.0, rimraf@^2.6.1: 3814 | version "2.6.2" 3815 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 3816 | dependencies: 3817 | glob "^7.0.5" 3818 | 3819 | ripemd160@^2.0.0, ripemd160@^2.0.1: 3820 | version "2.0.1" 3821 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.1.tgz#0f4584295c53a3628af7e6d79aca21ce57d1c6e7" 3822 | dependencies: 3823 | hash-base "^2.0.0" 3824 | inherits "^2.0.1" 3825 | 3826 | run-queue@^1.0.0, run-queue@^1.0.3: 3827 | version "1.0.3" 3828 | resolved "https://registry.yarnpkg.com/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47" 3829 | dependencies: 3830 | aproba "^1.1.1" 3831 | 3832 | safe-buffer@5.1.1, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 3833 | version "5.1.1" 3834 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 3835 | 3836 | sax@~1.2.1: 3837 | version "1.2.4" 3838 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 3839 | 3840 | schema-utils@^0.3.0: 3841 | version "0.3.0" 3842 | resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-0.3.0.tgz#f5877222ce3e931edae039f17eb3716e7137f8cf" 3843 | dependencies: 3844 | ajv "^5.0.0" 3845 | 3846 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 3847 | version "5.4.1" 3848 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 3849 | 3850 | send@0.16.1: 3851 | version "0.16.1" 3852 | resolved "https://registry.yarnpkg.com/send/-/send-0.16.1.tgz#a70e1ca21d1382c11d0d9f6231deb281080d7ab3" 3853 | dependencies: 3854 | debug "2.6.9" 3855 | depd "~1.1.1" 3856 | destroy "~1.0.4" 3857 | encodeurl "~1.0.1" 3858 | escape-html "~1.0.3" 3859 | etag "~1.8.1" 3860 | fresh "0.5.2" 3861 | http-errors "~1.6.2" 3862 | mime "1.4.1" 3863 | ms "2.0.0" 3864 | on-finished "~2.3.0" 3865 | range-parser "~1.2.0" 3866 | statuses "~1.3.1" 3867 | 3868 | serialize-javascript@^1.4.0: 3869 | version "1.4.0" 3870 | resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-1.4.0.tgz#7c958514db6ac2443a8abc062dc9f7886a7f6005" 3871 | 3872 | serve-static@1.13.1: 3873 | version "1.13.1" 3874 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.13.1.tgz#4c57d53404a761d8f2e7c1e8a18a47dbf278a719" 3875 | dependencies: 3876 | encodeurl "~1.0.1" 3877 | escape-html "~1.0.3" 3878 | parseurl "~1.3.2" 3879 | send "0.16.1" 3880 | 3881 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3882 | version "2.0.0" 3883 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3884 | 3885 | set-immediate-shim@^1.0.1: 3886 | version "1.0.1" 3887 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3888 | 3889 | setimmediate@^1.0.4: 3890 | version "1.0.5" 3891 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 3892 | 3893 | setprototypeof@1.0.3: 3894 | version "1.0.3" 3895 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04" 3896 | 3897 | setprototypeof@1.1.0: 3898 | version "1.1.0" 3899 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" 3900 | 3901 | sha.js@^2.4.0, sha.js@^2.4.8: 3902 | version "2.4.9" 3903 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.9.tgz#98f64880474b74f4a38b8da9d3c0f2d104633e7d" 3904 | dependencies: 3905 | inherits "^2.0.1" 3906 | safe-buffer "^5.0.1" 3907 | 3908 | shebang-command@^1.2.0: 3909 | version "1.2.0" 3910 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3911 | dependencies: 3912 | shebang-regex "^1.0.0" 3913 | 3914 | shebang-regex@^1.0.0: 3915 | version "1.0.0" 3916 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3917 | 3918 | shelljs@^0.7.6: 3919 | version "0.7.8" 3920 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.8.tgz#decbcf874b0d1e5fb72e14b164a9683048e9acb3" 3921 | dependencies: 3922 | glob "^7.0.0" 3923 | interpret "^1.0.0" 3924 | rechoir "^0.6.2" 3925 | 3926 | signal-exit@^3.0.0, signal-exit@^3.0.2: 3927 | version "3.0.2" 3928 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3929 | 3930 | slash@^1.0.0: 3931 | version "1.0.0" 3932 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3933 | 3934 | sntp@1.x.x: 3935 | version "1.0.9" 3936 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3937 | dependencies: 3938 | hoek "2.x.x" 3939 | 3940 | sort-keys@^1.0.0: 3941 | version "1.1.2" 3942 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" 3943 | dependencies: 3944 | is-plain-obj "^1.0.0" 3945 | 3946 | source-list-map@^2.0.0: 3947 | version "2.0.0" 3948 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.0.tgz#aaa47403f7b245a92fbc97ea08f250d6087ed085" 3949 | 3950 | source-map-support@^0.4.15: 3951 | version "0.4.18" 3952 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 3953 | dependencies: 3954 | source-map "^0.5.6" 3955 | 3956 | source-map@0.5.x, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 3957 | version "0.5.7" 3958 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3959 | 3960 | source-map@^0.6.1, source-map@~0.6.1: 3961 | version "0.6.1" 3962 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 3963 | 3964 | spdx-correct@~1.0.0: 3965 | version "1.0.2" 3966 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3967 | dependencies: 3968 | spdx-license-ids "^1.0.2" 3969 | 3970 | spdx-expression-parse@~1.0.0: 3971 | version "1.0.4" 3972 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3973 | 3974 | spdx-license-ids@^1.0.2: 3975 | version "1.2.2" 3976 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3977 | 3978 | sprintf-js@~1.0.2: 3979 | version "1.0.3" 3980 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3981 | 3982 | sshpk@^1.7.0: 3983 | version "1.13.1" 3984 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 3985 | dependencies: 3986 | asn1 "~0.2.3" 3987 | assert-plus "^1.0.0" 3988 | dashdash "^1.12.0" 3989 | getpass "^0.1.1" 3990 | optionalDependencies: 3991 | bcrypt-pbkdf "^1.0.0" 3992 | ecc-jsbn "~0.1.1" 3993 | jsbn "~0.1.0" 3994 | tweetnacl "~0.14.0" 3995 | 3996 | ssri@^5.0.0: 3997 | version "5.0.0" 3998 | resolved "https://registry.yarnpkg.com/ssri/-/ssri-5.0.0.tgz#13c19390b606c821f2a10d02b351c1729b94d8cf" 3999 | dependencies: 4000 | safe-buffer "^5.1.0" 4001 | 4002 | stackframe@^1.0.3: 4003 | version "1.0.4" 4004 | resolved "https://registry.yarnpkg.com/stackframe/-/stackframe-1.0.4.tgz#357b24a992f9427cba6b545d96a14ed2cbca187b" 4005 | 4006 | "statuses@>= 1.3.1 < 2": 4007 | version "1.4.0" 4008 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.4.0.tgz#bb73d446da2796106efcc1b601a253d6c46bd087" 4009 | 4010 | statuses@~1.3.1: 4011 | version "1.3.1" 4012 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" 4013 | 4014 | stream-browserify@^2.0.1: 4015 | version "2.0.1" 4016 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" 4017 | dependencies: 4018 | inherits "~2.0.1" 4019 | readable-stream "^2.0.2" 4020 | 4021 | stream-each@^1.1.0: 4022 | version "1.2.2" 4023 | resolved "https://registry.yarnpkg.com/stream-each/-/stream-each-1.2.2.tgz#8e8c463f91da8991778765873fe4d960d8f616bd" 4024 | dependencies: 4025 | end-of-stream "^1.1.0" 4026 | stream-shift "^1.0.0" 4027 | 4028 | stream-http@^2.7.2: 4029 | version "2.7.2" 4030 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.7.2.tgz#40a050ec8dc3b53b33d9909415c02c0bf1abfbad" 4031 | dependencies: 4032 | builtin-status-codes "^3.0.0" 4033 | inherits "^2.0.1" 4034 | readable-stream "^2.2.6" 4035 | to-arraybuffer "^1.0.0" 4036 | xtend "^4.0.0" 4037 | 4038 | stream-shift@^1.0.0: 4039 | version "1.0.0" 4040 | resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" 4041 | 4042 | strict-uri-encode@^1.0.0: 4043 | version "1.1.0" 4044 | resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" 4045 | 4046 | string-length@^1.0.1: 4047 | version "1.0.1" 4048 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 4049 | dependencies: 4050 | strip-ansi "^3.0.0" 4051 | 4052 | string-width@^1.0.1, string-width@^1.0.2: 4053 | version "1.0.2" 4054 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 4055 | dependencies: 4056 | code-point-at "^1.0.0" 4057 | is-fullwidth-code-point "^1.0.0" 4058 | strip-ansi "^3.0.0" 4059 | 4060 | string-width@^2.0.0: 4061 | version "2.1.1" 4062 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 4063 | dependencies: 4064 | is-fullwidth-code-point "^2.0.0" 4065 | strip-ansi "^4.0.0" 4066 | 4067 | string_decoder@^1.0.0, string_decoder@~1.0.3: 4068 | version "1.0.3" 4069 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 4070 | dependencies: 4071 | safe-buffer "~5.1.0" 4072 | 4073 | string_decoder@~0.10.x: 4074 | version "0.10.31" 4075 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 4076 | 4077 | stringstream@~0.0.4: 4078 | version "0.0.5" 4079 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 4080 | 4081 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 4082 | version "3.0.1" 4083 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 4084 | dependencies: 4085 | ansi-regex "^2.0.0" 4086 | 4087 | strip-ansi@^4.0.0: 4088 | version "4.0.0" 4089 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 4090 | dependencies: 4091 | ansi-regex "^3.0.0" 4092 | 4093 | strip-bom@^3.0.0: 4094 | version "3.0.0" 4095 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 4096 | 4097 | strip-eof@^1.0.0: 4098 | version "1.0.0" 4099 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 4100 | 4101 | strip-json-comments@~2.0.1: 4102 | version "2.0.1" 4103 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 4104 | 4105 | supports-color@^2.0.0: 4106 | version "2.0.0" 4107 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 4108 | 4109 | supports-color@^3.2.3: 4110 | version "3.2.3" 4111 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 4112 | dependencies: 4113 | has-flag "^1.0.0" 4114 | 4115 | supports-color@^4.0.0, supports-color@^4.2.1: 4116 | version "4.5.0" 4117 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 4118 | dependencies: 4119 | has-flag "^2.0.0" 4120 | 4121 | supports-color@^5.1.0: 4122 | version "5.1.0" 4123 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.1.0.tgz#058a021d1b619f7ddf3980d712ea3590ce7de3d5" 4124 | dependencies: 4125 | has-flag "^2.0.0" 4126 | 4127 | svgo@^0.7.0: 4128 | version "0.7.2" 4129 | resolved "https://registry.yarnpkg.com/svgo/-/svgo-0.7.2.tgz#9f5772413952135c6fefbf40afe6a4faa88b4bb5" 4130 | dependencies: 4131 | coa "~1.0.1" 4132 | colors "~1.1.2" 4133 | csso "~2.3.1" 4134 | js-yaml "~3.7.0" 4135 | mkdirp "~0.5.1" 4136 | sax "~1.2.1" 4137 | whet.extend "~0.9.9" 4138 | 4139 | tapable@^0.2.7: 4140 | version "0.2.8" 4141 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.8.tgz#99372a5c999bf2df160afc0d74bed4f47948cd22" 4142 | 4143 | tar-pack@^3.4.0: 4144 | version "3.4.1" 4145 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 4146 | dependencies: 4147 | debug "^2.2.0" 4148 | fstream "^1.0.10" 4149 | fstream-ignore "^1.0.5" 4150 | once "^1.3.3" 4151 | readable-stream "^2.1.4" 4152 | rimraf "^2.5.1" 4153 | tar "^2.2.1" 4154 | uid-number "^0.0.6" 4155 | 4156 | tar@^2.2.1: 4157 | version "2.2.1" 4158 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 4159 | dependencies: 4160 | block-stream "*" 4161 | fstream "^1.0.2" 4162 | inherits "2" 4163 | 4164 | through2@^2.0.0: 4165 | version "2.0.3" 4166 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 4167 | dependencies: 4168 | readable-stream "^2.1.5" 4169 | xtend "~4.0.1" 4170 | 4171 | time-stamp@^2.0.0: 4172 | version "2.0.0" 4173 | resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-2.0.0.tgz#95c6a44530e15ba8d6f4a3ecb8c3a3fac46da357" 4174 | 4175 | timers-browserify@^2.0.4: 4176 | version "2.0.4" 4177 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.4.tgz#96ca53f4b794a5e7c0e1bd7cc88a372298fa01e6" 4178 | dependencies: 4179 | setimmediate "^1.0.4" 4180 | 4181 | to-arraybuffer@^1.0.0: 4182 | version "1.0.1" 4183 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 4184 | 4185 | to-fast-properties@^1.0.3: 4186 | version "1.0.3" 4187 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 4188 | 4189 | toposort@^1.0.0: 4190 | version "1.0.6" 4191 | resolved "https://registry.yarnpkg.com/toposort/-/toposort-1.0.6.tgz#c31748e55d210effc00fdcdc7d6e68d7d7bb9cec" 4192 | 4193 | tough-cookie@~2.3.0: 4194 | version "2.3.3" 4195 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 4196 | dependencies: 4197 | punycode "^1.4.1" 4198 | 4199 | trim-right@^1.0.1: 4200 | version "1.0.1" 4201 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 4202 | 4203 | tty-browserify@0.0.0: 4204 | version "0.0.0" 4205 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 4206 | 4207 | tunnel-agent@^0.6.0: 4208 | version "0.6.0" 4209 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 4210 | dependencies: 4211 | safe-buffer "^5.0.1" 4212 | 4213 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 4214 | version "0.14.5" 4215 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 4216 | 4217 | type-is@~1.6.15: 4218 | version "1.6.15" 4219 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.15.tgz#cab10fb4909e441c82842eafe1ad646c81804410" 4220 | dependencies: 4221 | media-typer "0.3.0" 4222 | mime-types "~2.1.15" 4223 | 4224 | typedarray@^0.0.6: 4225 | version "0.0.6" 4226 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 4227 | 4228 | uglify-js@3.3.x: 4229 | version "3.3.5" 4230 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.3.5.tgz#4c4143dfe08e8825746675cc49a6874a933b543e" 4231 | dependencies: 4232 | commander "~2.12.1" 4233 | source-map "~0.6.1" 4234 | 4235 | uglify-js@^2.8.29: 4236 | version "2.8.29" 4237 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 4238 | dependencies: 4239 | source-map "~0.5.1" 4240 | yargs "~3.10.0" 4241 | optionalDependencies: 4242 | uglify-to-browserify "~1.0.0" 4243 | 4244 | uglify-to-browserify@~1.0.0: 4245 | version "1.0.2" 4246 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 4247 | 4248 | uglifyjs-webpack-plugin@^0.4.6: 4249 | version "0.4.6" 4250 | resolved "https://registry.yarnpkg.com/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.6.tgz#b951f4abb6bd617e66f63eb891498e391763e309" 4251 | dependencies: 4252 | source-map "^0.5.6" 4253 | uglify-js "^2.8.29" 4254 | webpack-sources "^1.0.1" 4255 | 4256 | uid-number@^0.0.6: 4257 | version "0.0.6" 4258 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 4259 | 4260 | ultron@~1.1.0: 4261 | version "1.1.1" 4262 | resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.1.1.tgz#9fe1536a10a664a65266a1e3ccf85fd36302bc9c" 4263 | 4264 | uniq@^1.0.1: 4265 | version "1.0.1" 4266 | resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" 4267 | 4268 | uniqid@^4.0.0: 4269 | version "4.1.1" 4270 | resolved "https://registry.yarnpkg.com/uniqid/-/uniqid-4.1.1.tgz#89220ddf6b751ae52b5f72484863528596bb84c1" 4271 | dependencies: 4272 | macaddress "^0.2.8" 4273 | 4274 | uniqs@^2.0.0: 4275 | version "2.0.0" 4276 | resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02" 4277 | 4278 | unique-filename@^1.1.0: 4279 | version "1.1.0" 4280 | resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.0.tgz#d05f2fe4032560871f30e93cbe735eea201514f3" 4281 | dependencies: 4282 | unique-slug "^2.0.0" 4283 | 4284 | unique-slug@^2.0.0: 4285 | version "2.0.0" 4286 | resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.0.tgz#db6676e7c7cc0629878ff196097c78855ae9f4ab" 4287 | dependencies: 4288 | imurmurhash "^0.1.4" 4289 | 4290 | unpipe@1.0.0, unpipe@~1.0.0: 4291 | version "1.0.0" 4292 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 4293 | 4294 | upper-case@^1.1.1: 4295 | version "1.1.3" 4296 | resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598" 4297 | 4298 | url-loader@^0.5.8: 4299 | version "0.5.9" 4300 | resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-0.5.9.tgz#cc8fea82c7b906e7777019250869e569e995c295" 4301 | dependencies: 4302 | loader-utils "^1.0.2" 4303 | mime "1.3.x" 4304 | 4305 | url@^0.11.0: 4306 | version "0.11.0" 4307 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 4308 | dependencies: 4309 | punycode "1.3.2" 4310 | querystring "0.2.0" 4311 | 4312 | util-deprecate@~1.0.1: 4313 | version "1.0.2" 4314 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 4315 | 4316 | util@0.10.3, util@^0.10.3: 4317 | version "0.10.3" 4318 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 4319 | dependencies: 4320 | inherits "2.0.1" 4321 | 4322 | utila@~0.3: 4323 | version "0.3.3" 4324 | resolved "https://registry.yarnpkg.com/utila/-/utila-0.3.3.tgz#d7e8e7d7e309107092b05f8d9688824d633a4226" 4325 | 4326 | utila@~0.4: 4327 | version "0.4.0" 4328 | resolved "https://registry.yarnpkg.com/utila/-/utila-0.4.0.tgz#8a16a05d445657a3aea5eecc5b12a4fa5379772c" 4329 | 4330 | utils-merge@1.0.1: 4331 | version "1.0.1" 4332 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" 4333 | 4334 | uuid@^3.0.0: 4335 | version "3.1.0" 4336 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 4337 | 4338 | validate-npm-package-license@^3.0.1: 4339 | version "3.0.1" 4340 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 4341 | dependencies: 4342 | spdx-correct "~1.0.0" 4343 | spdx-expression-parse "~1.0.0" 4344 | 4345 | vary@~1.1.2: 4346 | version "1.1.2" 4347 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" 4348 | 4349 | vendors@^1.0.0: 4350 | version "1.0.1" 4351 | resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.1.tgz#37ad73c8ee417fb3d580e785312307d274847f22" 4352 | 4353 | verror@1.10.0: 4354 | version "1.10.0" 4355 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 4356 | dependencies: 4357 | assert-plus "^1.0.0" 4358 | core-util-is "1.0.2" 4359 | extsprintf "^1.2.0" 4360 | 4361 | vm-browserify@0.0.4: 4362 | version "0.0.4" 4363 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 4364 | dependencies: 4365 | indexof "0.0.1" 4366 | 4367 | vue-hot-reload-api@^2.2.0: 4368 | version "2.2.4" 4369 | resolved "https://registry.yarnpkg.com/vue-hot-reload-api/-/vue-hot-reload-api-2.2.4.tgz#683bd1d026c0d3b3c937d5875679e9a87ec6cd8f" 4370 | 4371 | vue-loader@^13.3.0: 4372 | version "13.7.0" 4373 | resolved "https://registry.yarnpkg.com/vue-loader/-/vue-loader-13.7.0.tgz#4d6a35b169c2a0a488842fb95c85052105fa9729" 4374 | dependencies: 4375 | consolidate "^0.14.0" 4376 | hash-sum "^1.0.2" 4377 | loader-utils "^1.1.0" 4378 | lru-cache "^4.1.1" 4379 | postcss "^6.0.8" 4380 | postcss-load-config "^1.1.0" 4381 | postcss-selector-parser "^2.0.0" 4382 | prettier "^1.7.0" 4383 | resolve "^1.4.0" 4384 | source-map "^0.6.1" 4385 | vue-hot-reload-api "^2.2.0" 4386 | vue-style-loader "^3.0.0" 4387 | vue-template-es2015-compiler "^1.6.0" 4388 | 4389 | vue-style-loader@^3.0.0, vue-style-loader@^3.0.1: 4390 | version "3.0.3" 4391 | resolved "https://registry.yarnpkg.com/vue-style-loader/-/vue-style-loader-3.0.3.tgz#623658f81506aef9d121cdc113a4f5c9cac32df7" 4392 | dependencies: 4393 | hash-sum "^1.0.2" 4394 | loader-utils "^1.0.2" 4395 | 4396 | vue-template-compiler@^2.5.2: 4397 | version "2.5.13" 4398 | resolved "https://registry.yarnpkg.com/vue-template-compiler/-/vue-template-compiler-2.5.13.tgz#12a2aa0ecd6158ac5e5f14d294b0993f399c3d38" 4399 | dependencies: 4400 | de-indent "^1.0.2" 4401 | he "^1.1.0" 4402 | 4403 | vue-template-es2015-compiler@^1.6.0: 4404 | version "1.6.0" 4405 | resolved "https://registry.yarnpkg.com/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.6.0.tgz#dc42697133302ce3017524356a6c61b7b69b4a18" 4406 | 4407 | vue@^2.5.2: 4408 | version "2.5.13" 4409 | resolved "https://registry.yarnpkg.com/vue/-/vue-2.5.13.tgz#95bd31e20efcf7a7f39239c9aa6787ce8cf578e1" 4410 | 4411 | vuex@^3.0.1: 4412 | version "3.0.1" 4413 | resolved "https://registry.yarnpkg.com/vuex/-/vuex-3.0.1.tgz#e761352ebe0af537d4bb755a9b9dc4be3df7efd2" 4414 | 4415 | watchpack@^1.4.0: 4416 | version "1.4.0" 4417 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.4.0.tgz#4a1472bcbb952bd0a9bb4036801f954dfb39faac" 4418 | dependencies: 4419 | async "^2.1.2" 4420 | chokidar "^1.7.0" 4421 | graceful-fs "^4.1.2" 4422 | 4423 | webpack-bundle-analyzer@^2.9.0: 4424 | version "2.9.2" 4425 | resolved "https://registry.yarnpkg.com/webpack-bundle-analyzer/-/webpack-bundle-analyzer-2.9.2.tgz#63ed86eb71cc4cda86f68e685a84530ba0126449" 4426 | dependencies: 4427 | acorn "^5.1.1" 4428 | chalk "^1.1.3" 4429 | commander "^2.9.0" 4430 | ejs "^2.5.6" 4431 | express "^4.15.2" 4432 | filesize "^3.5.9" 4433 | gzip-size "^3.0.0" 4434 | lodash "^4.17.4" 4435 | mkdirp "^0.5.1" 4436 | opener "^1.4.3" 4437 | ws "^4.0.0" 4438 | 4439 | webpack-dev-middleware@^1.12.0: 4440 | version "1.12.2" 4441 | resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-1.12.2.tgz#f8fc1120ce3b4fc5680ceecb43d777966b21105e" 4442 | dependencies: 4443 | memory-fs "~0.4.1" 4444 | mime "^1.5.0" 4445 | path-is-absolute "^1.0.0" 4446 | range-parser "^1.0.3" 4447 | time-stamp "^2.0.0" 4448 | 4449 | webpack-hot-middleware@^2.18.2: 4450 | version "2.21.0" 4451 | resolved "https://registry.yarnpkg.com/webpack-hot-middleware/-/webpack-hot-middleware-2.21.0.tgz#7b3c113a7a4b301c91e0749573c7aab28b414b52" 4452 | dependencies: 4453 | ansi-html "0.0.7" 4454 | html-entities "^1.2.0" 4455 | querystring "^0.2.0" 4456 | strip-ansi "^3.0.0" 4457 | 4458 | webpack-merge@^4.1.0: 4459 | version "4.1.1" 4460 | resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-4.1.1.tgz#f1197a0a973e69c6fbeeb6d658219aa8c0c13555" 4461 | dependencies: 4462 | lodash "^4.17.4" 4463 | 4464 | webpack-sources@^1.0.1: 4465 | version "1.1.0" 4466 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.1.0.tgz#a101ebae59d6507354d71d8013950a3a8b7a5a54" 4467 | dependencies: 4468 | source-list-map "^2.0.0" 4469 | source-map "~0.6.1" 4470 | 4471 | webpack@^3.6.0: 4472 | version "3.10.0" 4473 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-3.10.0.tgz#5291b875078cf2abf42bdd23afe3f8f96c17d725" 4474 | dependencies: 4475 | acorn "^5.0.0" 4476 | acorn-dynamic-import "^2.0.0" 4477 | ajv "^5.1.5" 4478 | ajv-keywords "^2.0.0" 4479 | async "^2.1.2" 4480 | enhanced-resolve "^3.4.0" 4481 | escope "^3.6.0" 4482 | interpret "^1.0.0" 4483 | json-loader "^0.5.4" 4484 | json5 "^0.5.1" 4485 | loader-runner "^2.3.0" 4486 | loader-utils "^1.1.0" 4487 | memory-fs "~0.4.1" 4488 | mkdirp "~0.5.0" 4489 | node-libs-browser "^2.0.0" 4490 | source-map "^0.5.3" 4491 | supports-color "^4.2.1" 4492 | tapable "^0.2.7" 4493 | uglifyjs-webpack-plugin "^0.4.6" 4494 | watchpack "^1.4.0" 4495 | webpack-sources "^1.0.1" 4496 | yargs "^8.0.2" 4497 | 4498 | whet.extend@~0.9.9: 4499 | version "0.9.9" 4500 | resolved "https://registry.yarnpkg.com/whet.extend/-/whet.extend-0.9.9.tgz#f877d5bf648c97e5aa542fadc16d6a259b9c11a1" 4501 | 4502 | which-module@^2.0.0: 4503 | version "2.0.0" 4504 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 4505 | 4506 | which@^1.2.9: 4507 | version "1.3.0" 4508 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 4509 | dependencies: 4510 | isexe "^2.0.0" 4511 | 4512 | wide-align@^1.1.0: 4513 | version "1.1.2" 4514 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 4515 | dependencies: 4516 | string-width "^1.0.2" 4517 | 4518 | window-size@0.1.0: 4519 | version "0.1.0" 4520 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 4521 | 4522 | wordwrap@0.0.2: 4523 | version "0.0.2" 4524 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 4525 | 4526 | wrap-ansi@^2.0.0: 4527 | version "2.1.0" 4528 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 4529 | dependencies: 4530 | string-width "^1.0.1" 4531 | strip-ansi "^3.0.1" 4532 | 4533 | wrappy@1: 4534 | version "1.0.2" 4535 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 4536 | 4537 | ws@^4.0.0: 4538 | version "4.0.0" 4539 | resolved "https://registry.yarnpkg.com/ws/-/ws-4.0.0.tgz#bfe1da4c08eeb9780b986e0e4d10eccd7345999f" 4540 | dependencies: 4541 | async-limiter "~1.0.0" 4542 | safe-buffer "~5.1.0" 4543 | ultron "~1.1.0" 4544 | 4545 | xml-char-classes@^1.0.0: 4546 | version "1.0.0" 4547 | resolved "https://registry.yarnpkg.com/xml-char-classes/-/xml-char-classes-1.0.0.tgz#64657848a20ffc5df583a42ad8a277b4512bbc4d" 4548 | 4549 | xtend@^4.0.0, xtend@~4.0.1: 4550 | version "4.0.1" 4551 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 4552 | 4553 | y18n@^3.2.1: 4554 | version "3.2.1" 4555 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 4556 | 4557 | yallist@^2.1.2: 4558 | version "2.1.2" 4559 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 4560 | 4561 | yargs-parser@^7.0.0: 4562 | version "7.0.0" 4563 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" 4564 | dependencies: 4565 | camelcase "^4.1.0" 4566 | 4567 | yargs@^8.0.2: 4568 | version "8.0.2" 4569 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360" 4570 | dependencies: 4571 | camelcase "^4.1.0" 4572 | cliui "^3.2.0" 4573 | decamelize "^1.1.1" 4574 | get-caller-file "^1.0.1" 4575 | os-locale "^2.0.0" 4576 | read-pkg-up "^2.0.0" 4577 | require-directory "^2.1.1" 4578 | require-main-filename "^1.0.1" 4579 | set-blocking "^2.0.0" 4580 | string-width "^2.0.0" 4581 | which-module "^2.0.0" 4582 | y18n "^3.2.1" 4583 | yargs-parser "^7.0.0" 4584 | 4585 | yargs@~3.10.0: 4586 | version "3.10.0" 4587 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 4588 | dependencies: 4589 | camelcase "^1.0.2" 4590 | cliui "^2.1.0" 4591 | decamelize "^1.0.0" 4592 | window-size "0.1.0" 4593 | --------------------------------------------------------------------------------