rs-webpack-rails 0.10.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 7be467d7dcdafb034eb281f62962f07d4c058823
4
+ data.tar.gz: fe7f452334727d84834a9495cfd4e2f13f0ef1f6
5
+ SHA512:
6
+ metadata.gz: 92d60c8f368854adf987debd8a90bf7868b9265e74749a9fee370fe46ed27f4764265f3cfa6f1a63741a49d48188b67eebf4ebcafc669f0c21870c11aede8879
7
+ data.tar.gz: 17faf525a4cd6ba8defde8678867f3e34645faf1e0b2c7ca48e9b17dde838fbb788dd175c3352b3be4a9a2fca217c032d2fdc7497df6c14a2228b12f7d8ea8e1
@@ -0,0 +1,20 @@
1
+ Copyright 2015 Michael Pearson
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,156 @@
1
+ # Alternate way of using webpack with rails, based on webpack-rails
2
+
3
+ Supports [ManifestPlugin](https://github.com/danethurber/webpack-manifest-plugin) instead of [StatsPlugin](https://github.com/unindented/stats-webpack-plugin) on webpack side.
4
+
5
+ #### installation
6
+
7
+ Add the gem:
8
+
9
+ ```
10
+ gem 'rs-webpack-rails'
11
+ ```
12
+
13
+ Create webpack config at config/webpack.config.js (see example)
14
+
15
+
16
+ #### Usage with manifest plugin:
17
+
18
+ ```
19
+ # config/application.rb
20
+ ::Rails.configuration.webpack.manifest_type = "manifest"
21
+
22
+ # config/webpack.config.js
23
+ new ManifestPlugin({
24
+ writeToFileEmit: true,
25
+ //basePath: "",
26
+ publicPath: production ? "/webpack/" : 'http://' + host + ':' + devServerPort + '/webpack/',
27
+ }),
28
+ ```
29
+
30
+ # rs-webpack-rails
31
+
32
+ **rs-webpack-rails** gives you tools to integrate Webpack in to an existing Ruby on Rails application.
33
+
34
+ It will happily co-exist with sprockets but does not use it for production fingerprinting or asset serving. **webpack-rails** is designed with the assumption that if you're using Webpack you treat Javascript as a first-class citizen. This means that you control the webpack config, package.json, and use yarn to install Webpack & its plugins.
35
+
36
+ In development mode [webpack-dev-server](http://webpack.github.io/docs/webpack-dev-server.html) is used to serve webpacked entry points and offer hot module reloading. In production entry points are built in to `public/webpack`. **webpack-rails** uses [stats-webpack-plugin](https://www.npmjs.com/package/stats-webpack-plugin) to translate entry points in to asset paths.
37
+
38
+ It was designed for use at [Marketplacer](http://www.marketplacer.com) to assist us in migrating our Javascript (and possibly our SCSS) off of Sprockets. It first saw production use in June 2015.
39
+
40
+ Our examples show **webpack-rails** co-existing with sprockets (as that's how environment works), but sprockets is not used or required for development or production use of this gem.
41
+
42
+ This gem has been tested against Rails 4.2 and Ruby 2.2. Earlier versions of Rails (>= 3.2) and Ruby (>= 2.0) may work, but we haven't tested them.
43
+
44
+ ## Using webpack-rails
45
+
46
+ **We have a demo application: [webpack-rails-demo](https://github.com/mipearson/webpack-rails-demo)**
47
+
48
+ ### Installation
49
+
50
+ 1. Install [yarn](https://yarnpkg.com/en/docs/install) if you haven't already
51
+ 1. Add `webpack-rails` to your gemfile
52
+ 1. Run `bundle install` to install the gem
53
+ 1. Run `bundle exec rails generate webpack_rails:install` to copy across example files
54
+ 1. Run `foreman start` to start `webpack-dev-server` and `rails server` at the same time
55
+ 1. Add the webpack entry point to your layout (see next section)
56
+ 1. Edit `webpack/application.js` and write some code
57
+
58
+
59
+ ### Adding the entry point to your Rails application
60
+
61
+ To add your webpacked javascript in to your app, add the following to the `<head>` section of your to your `layout.html.erb`:
62
+
63
+ ```erb
64
+ <%= javascript_include_tag *webpack_asset_paths("application") %>
65
+ ```
66
+
67
+ Take note of the splat (`*`): `webpack_asset_paths` returns an array, as one entry point can map to multiple paths, especially if hot reloading is enabled in Webpack.
68
+
69
+ If your webpack is configured to output both CSS and JS, you can use the `extension:` argument to filter which files are returned by the helper:
70
+
71
+ ```erb
72
+ <%= javascript_include_tag *webpack_asset_paths('application', extension: 'js') %>
73
+ <%= stylesheet_link_tag *webpack_asset_paths('application', extension: 'css') %>
74
+ ```
75
+
76
+ #### Use with webpack-dev-server live reload
77
+
78
+ If you're using the webpack dev server's live reload feature (not the React hot reloader), you'll also need to include the following in your layout template:
79
+
80
+ ``` html
81
+ <script src="http://localhost:3808/webpack-dev-server.js"></script>
82
+ ```
83
+
84
+ ### How it works
85
+
86
+ Have a look at the files in the `examples` directory. Of note:
87
+
88
+ * We use [foreman](https://github.com/ddollar/foreman) and a `Procfile` to run our rails server & the webpack dev server in development at the same time
89
+ * The webpack and gem configuration must be in sync - look at our railtie for configuration options
90
+ * We require that **stats-webpack-plugin** is loaded to automatically generate a production manifest & resolve paths during development
91
+
92
+ ### Configuration Defaults
93
+
94
+ * Webpack configuration lives in `config/webpack.config.js`
95
+ * Webpack & Webpack Dev Server binaries are in `node_modules/.bin/`
96
+ * Webpack Dev Server will run on port 3808 on localhost via HTTP
97
+ * Webpack Dev Server is enabled in development & test, but not in production
98
+ * Webpacked assets will be compiled to `public/webpack`
99
+ * The manifest file is named `manifest.json`
100
+
101
+ #### Dynamic host
102
+
103
+ To have the host evaluated at request-time, set `host` to a proc:
104
+
105
+ ```ruby
106
+ config.webpack.dev_server.host = proc { request.host }
107
+ ```
108
+
109
+ This is useful when accessing your Rails app over the network (remember to bind both your Rails app and your WebPack server to `0.0.0.0`).
110
+
111
+ #### Use with docker-compose
112
+
113
+ If you're running `webpack-dev-server` as part of docker compose rather than `foreman`, you might find that the host and port that rails needs to use to retrieve the manifest isn't the same as the host and port that you'll be giving to the browser to retrieve the assets.
114
+
115
+ If so, you can set the `manifest_host` and `manifest_port` away from their default of `localhost` and port 3808.
116
+
117
+ ### Working with browser tests
118
+
119
+ In development, we make sure that the `webpack-dev-server` is running when browser tests are running.
120
+
121
+ #### Continuous Integration
122
+
123
+ In CI, we manually run `webpack` to compile the assets to public and set `config.webpack.dev_server.enabled` to `false` in our `config/environments/test.rb`:
124
+
125
+ ``` ruby
126
+ config.webpack.dev_server.enabled = !ENV['CI']
127
+ ```
128
+
129
+ ### Production Deployment
130
+
131
+ Add `rake webpack:compile` to your deployment. It serves a similar purpose as Sprockets' `assets:precompile` task. If you're using Webpack and Sprockets (as we are at Marketplacer) you'll need to run both tasks - but it doesn't matter which order they're run in.
132
+
133
+ If you deploy to Heroku, you can add the special
134
+ [webpack-rails-buildpack](https://github.com/febeling/webpack-rails-buildpack)
135
+ in order to perform this rake task on each deployment.
136
+
137
+ If you're using `[chunkhash]` in your build asset filenames (which you should be, if you want to cache them in production), you'll need to persist built assets between deployments. Consider in-flight requests at the time of deployment: they'll receive paths based on the old `manifest.json`, not the new one.
138
+
139
+ ## TODO
140
+
141
+ * Drive config via JSON, have webpack.config.js read same JSON?
142
+ * Custom webpack-dev-server that exposes errors, stats, etc
143
+ * [react-rails](https://github.com/reactjs/react-rails) fork for use with this workflow
144
+ * Integration tests
145
+
146
+ ## Contributing
147
+
148
+ Pull requests & issues welcome. Advice & criticism regarding webpack config approach also welcome.
149
+
150
+ Please ensure that pull requests pass both rubocop & rspec. New functionality should be discussed in an issue first.
151
+
152
+ ## Acknowledgements
153
+
154
+ * Len Garvey for his [webpack-rails](https://github.com/lengarvey/webpack-rails) gem which inspired this implementation
155
+ * Sebastian Porto for [Rails with Webpack](https://reinteractive.net/posts/213-rails-with-webpack-why-and-how)
156
+ * Clark Dave for [How to use Webpack with Rails](http://clarkdave.net/2015/01/how-to-use-webpack-with-rails/)
@@ -0,0 +1,24 @@
1
+ begin
2
+ require 'bundler/setup'
3
+ rescue LoadError
4
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
+ end
6
+
7
+ require 'rdoc/task'
8
+ require 'rspec/core/rake_task'
9
+ require 'rubocop/rake_task'
10
+
11
+ RuboCop::RakeTask.new
12
+ RSpec::Core::RakeTask.new(:spec)
13
+
14
+ RDoc::Task.new(:rdoc) do |rdoc|
15
+ rdoc.rdoc_dir = 'rdoc'
16
+ rdoc.title = 'WebpackRails'
17
+ rdoc.options << '--line-numbers'
18
+ rdoc.rdoc_files.include('README.md')
19
+ rdoc.rdoc_files.include('lib/**/*.rb')
20
+ end
21
+
22
+ Bundler::GemHelper.install_tasks
23
+
24
+ task default: [:rubocop, :spec]
@@ -0,0 +1,4 @@
1
+ # Run Rails & Webpack concurrently
2
+ # Example file from webpack-rails gem
3
+ rails: bundle exec rails server
4
+ webpack: ./node_modules/.bin/webpack-dev-server --config config/webpack.config.js
@@ -0,0 +1,12 @@
1
+
2
+ # Ignore bundler config.
3
+ /.bundle
4
+
5
+ # Ignore all logfiles and tempfiles.
6
+ /log/*
7
+ !/log/.keep
8
+ /tmp
9
+
10
+ # Don't commit node_modules (vendored npm bits) or built assets
11
+ /node_modules
12
+ /public/webpack
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "webpack-rails-example",
3
+ "version": "0.0.1",
4
+ "license": "MIT",
5
+ "dependencies": {
6
+ "webpack-dev-server": "^2.5.1",
7
+ "webpack": "^3.3.0",
8
+ "webpack-manifest-plugin": "^1.3.2"
9
+ }
10
+ }
@@ -0,0 +1,3 @@
1
+ {
2
+ "application.js": "http://localhost:3808/webpack/application.js"
3
+ }
@@ -0,0 +1,78 @@
1
+ // Example webpack configuration with asset fingerprinting in production.
2
+ 'use strict';
3
+
4
+ var path = require('path');
5
+ var webpack = require('webpack');
6
+ //var StatsPlugin = require('stats-webpack-plugin');
7
+ var ManifestPlugin = require('webpack-manifest-plugin');
8
+
9
+ // must match config.webpack.dev_server.port
10
+ var devServerPort = 3808;
11
+
12
+ // set NODE_ENV=production on the environment to add asset fingerprints
13
+ var production = process.env.NODE_ENV === 'production';
14
+
15
+ var config = {
16
+ entry: {
17
+ // Sources are expected to live in $app_root/webpack
18
+ 'application': 'application.js'
19
+ },
20
+
21
+ output: {
22
+ // Build assets directly in to public/webpack/, let webpack know
23
+ // that all webpacked assets start with webpack/
24
+
25
+ // must match config.webpack.output_dir
26
+ path: path.join(__dirname, 'public', 'webpack'),
27
+ publicPath: '/webpack/',
28
+
29
+ filename: production ? '[name]-[chunkhash].js' : '[name].js'
30
+ },
31
+
32
+ resolve: {
33
+ modules: [path.resolve(__dirname, "webpack"), path.resolve(__dirname, "node_modules")],
34
+ },
35
+
36
+ plugins: [
37
+ // must match config.webpack.manifest_filename
38
+ //new StatsPlugin('manifest.json', {
39
+ // We only need assetsByChunkName
40
+ //chunkModules: false,
41
+ //source: false,
42
+ //chunks: false,
43
+ //modules: false,
44
+ //assets: true
45
+ //}),
46
+ new ManifestPlugin({
47
+ writeToFileEmit: true,
48
+ //basePath: "",
49
+ publicPath: production ? "/webpack/" : 'http://localhost:' + devServerPort + '/webpack/',
50
+ }),
51
+ ]
52
+
53
+ };
54
+
55
+ if (production) {
56
+ config.plugins.push(
57
+ new webpack.NoErrorsPlugin(),
58
+ new webpack.optimize.UglifyJsPlugin({
59
+ compressor: { warnings: false },
60
+ sourceMap: false
61
+ }),
62
+ new webpack.DefinePlugin({
63
+ 'process.env': { NODE_ENV: JSON.stringify('production') }
64
+ }),
65
+ new webpack.optimize.DedupePlugin(),
66
+ new webpack.optimize.OccurenceOrderPlugin()
67
+ );
68
+ } else {
69
+ config.devServer = {
70
+ port: devServerPort,
71
+ headers: { 'Access-Control-Allow-Origin': '*' }
72
+ };
73
+ config.output.publicPath = 'http://localhost:' + devServerPort + '/webpack/';
74
+ // Source maps
75
+ config.devtool = 'cheap-module-eval-source-map';
76
+ }
77
+
78
+ module.exports = config;
File without changes
@@ -0,0 +1,3030 @@
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:
27
+ version "5.2.1"
28
+ resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.2.1.tgz#317ac7821826c22c702d66189ab8359675f135d7"
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.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
+ ansi-html@0.0.7:
59
+ version "0.0.7"
60
+ resolved "https://registry.yarnpkg.com/ansi-html/-/ansi-html-0.0.7.tgz#813584021962a9e9e6fd039f940d12f56ca7859e"
61
+
62
+ ansi-regex@^2.0.0:
63
+ version "2.1.1"
64
+ resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
65
+
66
+ ansi-regex@^3.0.0:
67
+ version "3.0.0"
68
+ resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
69
+
70
+ anymatch@^1.3.0:
71
+ version "1.3.2"
72
+ resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a"
73
+ dependencies:
74
+ micromatch "^2.1.5"
75
+ normalize-path "^2.0.0"
76
+
77
+ aproba@^1.0.3:
78
+ version "1.2.0"
79
+ resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
80
+
81
+ are-we-there-yet@~1.1.2:
82
+ version "1.1.4"
83
+ resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d"
84
+ dependencies:
85
+ delegates "^1.0.0"
86
+ readable-stream "^2.0.6"
87
+
88
+ arr-diff@^2.0.0:
89
+ version "2.0.0"
90
+ resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
91
+ dependencies:
92
+ arr-flatten "^1.0.1"
93
+
94
+ arr-flatten@^1.0.1:
95
+ version "1.1.0"
96
+ resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
97
+
98
+ array-find-index@^1.0.1:
99
+ version "1.0.2"
100
+ resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1"
101
+
102
+ array-flatten@1.1.1:
103
+ version "1.1.1"
104
+ resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2"
105
+
106
+ array-flatten@^2.1.0:
107
+ version "2.1.1"
108
+ resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-2.1.1.tgz#426bb9da84090c1838d812c8150af20a8331e296"
109
+
110
+ array-includes@^3.0.3:
111
+ version "3.0.3"
112
+ resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.0.3.tgz#184b48f62d92d7452bb31b323165c7f8bd02266d"
113
+ dependencies:
114
+ define-properties "^1.1.2"
115
+ es-abstract "^1.7.0"
116
+
117
+ array-union@^1.0.1:
118
+ version "1.0.2"
119
+ resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
120
+ dependencies:
121
+ array-uniq "^1.0.1"
122
+
123
+ array-uniq@^1.0.1:
124
+ version "1.0.3"
125
+ resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
126
+
127
+ array-unique@^0.2.1:
128
+ version "0.2.1"
129
+ resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
130
+
131
+ asn1.js@^4.0.0:
132
+ version "4.9.2"
133
+ resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.2.tgz#8117ef4f7ed87cd8f89044b5bff97ac243a16c9a"
134
+ dependencies:
135
+ bn.js "^4.0.0"
136
+ inherits "^2.0.1"
137
+ minimalistic-assert "^1.0.0"
138
+
139
+ asn1@~0.2.3:
140
+ version "0.2.3"
141
+ resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
142
+
143
+ assert-plus@1.0.0, assert-plus@^1.0.0:
144
+ version "1.0.0"
145
+ resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
146
+
147
+ assert-plus@^0.2.0:
148
+ version "0.2.0"
149
+ resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234"
150
+
151
+ assert@^1.1.1:
152
+ version "1.4.1"
153
+ resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91"
154
+ dependencies:
155
+ util "0.10.3"
156
+
157
+ async-each@^1.0.0:
158
+ version "1.0.1"
159
+ resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d"
160
+
161
+ async@^1.5.2:
162
+ version "1.5.2"
163
+ resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a"
164
+
165
+ async@^2.1.2:
166
+ version "2.6.0"
167
+ resolved "https://registry.yarnpkg.com/async/-/async-2.6.0.tgz#61a29abb6fcc026fea77e56d1c6ec53a795951f4"
168
+ dependencies:
169
+ lodash "^4.14.0"
170
+
171
+ asynckit@^0.4.0:
172
+ version "0.4.0"
173
+ resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
174
+
175
+ aws-sign2@~0.6.0:
176
+ version "0.6.0"
177
+ resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f"
178
+
179
+ aws4@^1.2.1:
180
+ version "1.6.0"
181
+ resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e"
182
+
183
+ balanced-match@^1.0.0:
184
+ version "1.0.0"
185
+ resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
186
+
187
+ base64-js@^1.0.2:
188
+ version "1.2.1"
189
+ resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.1.tgz#a91947da1f4a516ea38e5b4ec0ec3773675e0886"
190
+
191
+ batch@0.6.1:
192
+ version "0.6.1"
193
+ resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16"
194
+
195
+ bcrypt-pbkdf@^1.0.0:
196
+ version "1.0.1"
197
+ resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d"
198
+ dependencies:
199
+ tweetnacl "^0.14.3"
200
+
201
+ big.js@^3.1.3:
202
+ version "3.2.0"
203
+ resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.2.0.tgz#a5fc298b81b9e0dca2e458824784b65c52ba588e"
204
+
205
+ binary-extensions@^1.0.0:
206
+ version "1.11.0"
207
+ resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205"
208
+
209
+ block-stream@*:
210
+ version "0.0.9"
211
+ resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a"
212
+ dependencies:
213
+ inherits "~2.0.0"
214
+
215
+ bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0:
216
+ version "4.11.8"
217
+ resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f"
218
+
219
+ body-parser@1.18.2:
220
+ version "1.18.2"
221
+ resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.18.2.tgz#87678a19d84b47d859b83199bd59bce222b10454"
222
+ dependencies:
223
+ bytes "3.0.0"
224
+ content-type "~1.0.4"
225
+ debug "2.6.9"
226
+ depd "~1.1.1"
227
+ http-errors "~1.6.2"
228
+ iconv-lite "0.4.19"
229
+ on-finished "~2.3.0"
230
+ qs "6.5.1"
231
+ raw-body "2.3.2"
232
+ type-is "~1.6.15"
233
+
234
+ bonjour@^3.5.0:
235
+ version "3.5.0"
236
+ resolved "https://registry.yarnpkg.com/bonjour/-/bonjour-3.5.0.tgz#8e890a183d8ee9a2393b3844c691a42bcf7bc9f5"
237
+ dependencies:
238
+ array-flatten "^2.1.0"
239
+ deep-equal "^1.0.1"
240
+ dns-equal "^1.0.0"
241
+ dns-txt "^2.0.2"
242
+ multicast-dns "^6.0.1"
243
+ multicast-dns-service-types "^1.1.0"
244
+
245
+ boom@2.x.x:
246
+ version "2.10.1"
247
+ resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f"
248
+ dependencies:
249
+ hoek "2.x.x"
250
+
251
+ brace-expansion@^1.1.7:
252
+ version "1.1.8"
253
+ resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292"
254
+ dependencies:
255
+ balanced-match "^1.0.0"
256
+ concat-map "0.0.1"
257
+
258
+ braces@^1.8.2:
259
+ version "1.8.5"
260
+ resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7"
261
+ dependencies:
262
+ expand-range "^1.8.1"
263
+ preserve "^0.2.0"
264
+ repeat-element "^1.1.2"
265
+
266
+ brorand@^1.0.1:
267
+ version "1.1.0"
268
+ resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f"
269
+
270
+ browserify-aes@^1.0.0, browserify-aes@^1.0.4:
271
+ version "1.1.1"
272
+ resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.1.1.tgz#38b7ab55edb806ff2dcda1a7f1620773a477c49f"
273
+ dependencies:
274
+ buffer-xor "^1.0.3"
275
+ cipher-base "^1.0.0"
276
+ create-hash "^1.1.0"
277
+ evp_bytestokey "^1.0.3"
278
+ inherits "^2.0.1"
279
+ safe-buffer "^5.0.1"
280
+
281
+ browserify-cipher@^1.0.0:
282
+ version "1.0.0"
283
+ resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a"
284
+ dependencies:
285
+ browserify-aes "^1.0.4"
286
+ browserify-des "^1.0.0"
287
+ evp_bytestokey "^1.0.0"
288
+
289
+ browserify-des@^1.0.0:
290
+ version "1.0.0"
291
+ resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd"
292
+ dependencies:
293
+ cipher-base "^1.0.1"
294
+ des.js "^1.0.0"
295
+ inherits "^2.0.1"
296
+
297
+ browserify-rsa@^4.0.0:
298
+ version "4.0.1"
299
+ resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524"
300
+ dependencies:
301
+ bn.js "^4.1.0"
302
+ randombytes "^2.0.1"
303
+
304
+ browserify-sign@^4.0.0:
305
+ version "4.0.4"
306
+ resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298"
307
+ dependencies:
308
+ bn.js "^4.1.1"
309
+ browserify-rsa "^4.0.0"
310
+ create-hash "^1.1.0"
311
+ create-hmac "^1.1.2"
312
+ elliptic "^6.0.0"
313
+ inherits "^2.0.1"
314
+ parse-asn1 "^5.0.0"
315
+
316
+ browserify-zlib@^0.2.0:
317
+ version "0.2.0"
318
+ resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f"
319
+ dependencies:
320
+ pako "~1.0.5"
321
+
322
+ buffer-indexof@^1.0.0:
323
+ version "1.1.1"
324
+ resolved "https://registry.yarnpkg.com/buffer-indexof/-/buffer-indexof-1.1.1.tgz#52fabcc6a606d1a00302802648ef68f639da268c"
325
+
326
+ buffer-xor@^1.0.3:
327
+ version "1.0.3"
328
+ resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9"
329
+
330
+ buffer@^4.3.0:
331
+ version "4.9.1"
332
+ resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298"
333
+ dependencies:
334
+ base64-js "^1.0.2"
335
+ ieee754 "^1.1.4"
336
+ isarray "^1.0.0"
337
+
338
+ builtin-modules@^1.0.0:
339
+ version "1.1.1"
340
+ resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
341
+
342
+ builtin-status-codes@^3.0.0:
343
+ version "3.0.0"
344
+ resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8"
345
+
346
+ bytes@3.0.0:
347
+ version "3.0.0"
348
+ resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048"
349
+
350
+ camelcase-keys@^2.0.0:
351
+ version "2.1.0"
352
+ resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7"
353
+ dependencies:
354
+ camelcase "^2.0.0"
355
+ map-obj "^1.0.0"
356
+
357
+ camelcase@^1.0.2:
358
+ version "1.2.1"
359
+ resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"
360
+
361
+ camelcase@^2.0.0:
362
+ version "2.1.1"
363
+ resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f"
364
+
365
+ camelcase@^3.0.0:
366
+ version "3.0.0"
367
+ resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a"
368
+
369
+ camelcase@^4.1.0:
370
+ version "4.1.0"
371
+ resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd"
372
+
373
+ caseless@~0.12.0:
374
+ version "0.12.0"
375
+ resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
376
+
377
+ center-align@^0.1.1:
378
+ version "0.1.3"
379
+ resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad"
380
+ dependencies:
381
+ align-text "^0.1.3"
382
+ lazy-cache "^1.0.3"
383
+
384
+ chokidar@^1.6.0, chokidar@^1.7.0:
385
+ version "1.7.0"
386
+ resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468"
387
+ dependencies:
388
+ anymatch "^1.3.0"
389
+ async-each "^1.0.0"
390
+ glob-parent "^2.0.0"
391
+ inherits "^2.0.1"
392
+ is-binary-path "^1.0.0"
393
+ is-glob "^2.0.0"
394
+ path-is-absolute "^1.0.0"
395
+ readdirp "^2.0.0"
396
+ optionalDependencies:
397
+ fsevents "^1.0.0"
398
+
399
+ cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3:
400
+ version "1.0.4"
401
+ resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de"
402
+ dependencies:
403
+ inherits "^2.0.1"
404
+ safe-buffer "^5.0.1"
405
+
406
+ cliui@^2.1.0:
407
+ version "2.1.0"
408
+ resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1"
409
+ dependencies:
410
+ center-align "^0.1.1"
411
+ right-align "^0.1.1"
412
+ wordwrap "0.0.2"
413
+
414
+ cliui@^3.2.0:
415
+ version "3.2.0"
416
+ resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d"
417
+ dependencies:
418
+ string-width "^1.0.1"
419
+ strip-ansi "^3.0.1"
420
+ wrap-ansi "^2.0.0"
421
+
422
+ co@^4.6.0:
423
+ version "4.6.0"
424
+ resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
425
+
426
+ code-point-at@^1.0.0:
427
+ version "1.1.0"
428
+ resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
429
+
430
+ combined-stream@^1.0.5, combined-stream@~1.0.5:
431
+ version "1.0.5"
432
+ resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009"
433
+ dependencies:
434
+ delayed-stream "~1.0.0"
435
+
436
+ compressible@~2.0.11:
437
+ version "2.0.12"
438
+ resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.12.tgz#c59a5c99db76767e9876500e271ef63b3493bd66"
439
+ dependencies:
440
+ mime-db ">= 1.30.0 < 2"
441
+
442
+ compression@^1.5.2:
443
+ version "1.7.1"
444
+ resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.1.tgz#eff2603efc2e22cf86f35d2eb93589f9875373db"
445
+ dependencies:
446
+ accepts "~1.3.4"
447
+ bytes "3.0.0"
448
+ compressible "~2.0.11"
449
+ debug "2.6.9"
450
+ on-headers "~1.0.1"
451
+ safe-buffer "5.1.1"
452
+ vary "~1.1.2"
453
+
454
+ concat-map@0.0.1:
455
+ version "0.0.1"
456
+ resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
457
+
458
+ connect-history-api-fallback@^1.3.0:
459
+ version "1.5.0"
460
+ resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.5.0.tgz#b06873934bc5e344fef611a196a6faae0aee015a"
461
+
462
+ console-browserify@^1.1.0:
463
+ version "1.1.0"
464
+ resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10"
465
+ dependencies:
466
+ date-now "^0.1.4"
467
+
468
+ console-control-strings@^1.0.0, console-control-strings@~1.1.0:
469
+ version "1.1.0"
470
+ resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
471
+
472
+ constants-browserify@^1.0.0:
473
+ version "1.0.0"
474
+ resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75"
475
+
476
+ content-disposition@0.5.2:
477
+ version "0.5.2"
478
+ resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4"
479
+
480
+ content-type@~1.0.4:
481
+ version "1.0.4"
482
+ resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b"
483
+
484
+ cookie-signature@1.0.6:
485
+ version "1.0.6"
486
+ resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c"
487
+
488
+ cookie@0.3.1:
489
+ version "0.3.1"
490
+ resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb"
491
+
492
+ core-util-is@1.0.2, core-util-is@~1.0.0:
493
+ version "1.0.2"
494
+ resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
495
+
496
+ create-ecdh@^4.0.0:
497
+ version "4.0.0"
498
+ resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d"
499
+ dependencies:
500
+ bn.js "^4.1.0"
501
+ elliptic "^6.0.0"
502
+
503
+ create-hash@^1.1.0, create-hash@^1.1.2:
504
+ version "1.1.3"
505
+ resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.3.tgz#606042ac8b9262750f483caddab0f5819172d8fd"
506
+ dependencies:
507
+ cipher-base "^1.0.1"
508
+ inherits "^2.0.1"
509
+ ripemd160 "^2.0.0"
510
+ sha.js "^2.4.0"
511
+
512
+ create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4:
513
+ version "1.1.6"
514
+ resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.6.tgz#acb9e221a4e17bdb076e90657c42b93e3726cf06"
515
+ dependencies:
516
+ cipher-base "^1.0.3"
517
+ create-hash "^1.1.0"
518
+ inherits "^2.0.1"
519
+ ripemd160 "^2.0.0"
520
+ safe-buffer "^5.0.1"
521
+ sha.js "^2.4.8"
522
+
523
+ cross-spawn@^5.0.1:
524
+ version "5.1.0"
525
+ resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449"
526
+ dependencies:
527
+ lru-cache "^4.0.1"
528
+ shebang-command "^1.2.0"
529
+ which "^1.2.9"
530
+
531
+ cryptiles@2.x.x:
532
+ version "2.0.5"
533
+ resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8"
534
+ dependencies:
535
+ boom "2.x.x"
536
+
537
+ crypto-browserify@^3.11.0:
538
+ version "3.12.0"
539
+ resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec"
540
+ dependencies:
541
+ browserify-cipher "^1.0.0"
542
+ browserify-sign "^4.0.0"
543
+ create-ecdh "^4.0.0"
544
+ create-hash "^1.1.0"
545
+ create-hmac "^1.1.0"
546
+ diffie-hellman "^5.0.0"
547
+ inherits "^2.0.1"
548
+ pbkdf2 "^3.0.3"
549
+ public-encrypt "^4.0.0"
550
+ randombytes "^2.0.0"
551
+ randomfill "^1.0.3"
552
+
553
+ currently-unhandled@^0.4.1:
554
+ version "0.4.1"
555
+ resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea"
556
+ dependencies:
557
+ array-find-index "^1.0.1"
558
+
559
+ d@1:
560
+ version "1.0.0"
561
+ resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f"
562
+ dependencies:
563
+ es5-ext "^0.10.9"
564
+
565
+ dashdash@^1.12.0:
566
+ version "1.14.1"
567
+ resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
568
+ dependencies:
569
+ assert-plus "^1.0.0"
570
+
571
+ date-now@^0.1.4:
572
+ version "0.1.4"
573
+ resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b"
574
+
575
+ debug@2.6.9, debug@^2.2.0, debug@^2.6.6, debug@^2.6.8:
576
+ version "2.6.9"
577
+ resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
578
+ dependencies:
579
+ ms "2.0.0"
580
+
581
+ debug@^3.1.0:
582
+ version "3.1.0"
583
+ resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261"
584
+ dependencies:
585
+ ms "2.0.0"
586
+
587
+ decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2:
588
+ version "1.2.0"
589
+ resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
590
+
591
+ deep-equal@^1.0.1:
592
+ version "1.0.1"
593
+ resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5"
594
+
595
+ deep-extend@~0.4.0:
596
+ version "0.4.2"
597
+ resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f"
598
+
599
+ define-properties@^1.1.2:
600
+ version "1.1.2"
601
+ resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94"
602
+ dependencies:
603
+ foreach "^2.0.5"
604
+ object-keys "^1.0.8"
605
+
606
+ del@^3.0.0:
607
+ version "3.0.0"
608
+ resolved "https://registry.yarnpkg.com/del/-/del-3.0.0.tgz#53ecf699ffcbcb39637691ab13baf160819766e5"
609
+ dependencies:
610
+ globby "^6.1.0"
611
+ is-path-cwd "^1.0.0"
612
+ is-path-in-cwd "^1.0.0"
613
+ p-map "^1.1.1"
614
+ pify "^3.0.0"
615
+ rimraf "^2.2.8"
616
+
617
+ delayed-stream@~1.0.0:
618
+ version "1.0.0"
619
+ resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
620
+
621
+ delegates@^1.0.0:
622
+ version "1.0.0"
623
+ resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
624
+
625
+ depd@1.1.1, depd@~1.1.1:
626
+ version "1.1.1"
627
+ resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.1.tgz#5783b4e1c459f06fa5ca27f991f3d06e7a310359"
628
+
629
+ des.js@^1.0.0:
630
+ version "1.0.0"
631
+ resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc"
632
+ dependencies:
633
+ inherits "^2.0.1"
634
+ minimalistic-assert "^1.0.0"
635
+
636
+ destroy@~1.0.4:
637
+ version "1.0.4"
638
+ resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80"
639
+
640
+ detect-libc@^1.0.2:
641
+ version "1.0.3"
642
+ resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"
643
+
644
+ detect-node@^2.0.3:
645
+ version "2.0.3"
646
+ resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.0.3.tgz#a2033c09cc8e158d37748fbde7507832bd6ce127"
647
+
648
+ diffie-hellman@^5.0.0:
649
+ version "5.0.2"
650
+ resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e"
651
+ dependencies:
652
+ bn.js "^4.1.0"
653
+ miller-rabin "^4.0.0"
654
+ randombytes "^2.0.0"
655
+
656
+ dns-equal@^1.0.0:
657
+ version "1.0.0"
658
+ resolved "https://registry.yarnpkg.com/dns-equal/-/dns-equal-1.0.0.tgz#b39e7f1da6eb0a75ba9c17324b34753c47e0654d"
659
+
660
+ dns-packet@^1.0.1:
661
+ version "1.2.2"
662
+ resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-1.2.2.tgz#a8a26bec7646438963fc86e06f8f8b16d6c8bf7a"
663
+ dependencies:
664
+ ip "^1.1.0"
665
+ safe-buffer "^5.0.1"
666
+
667
+ dns-txt@^2.0.2:
668
+ version "2.0.2"
669
+ resolved "https://registry.yarnpkg.com/dns-txt/-/dns-txt-2.0.2.tgz#b91d806f5d27188e4ab3e7d107d881a1cc4642b6"
670
+ dependencies:
671
+ buffer-indexof "^1.0.0"
672
+
673
+ domain-browser@^1.1.1:
674
+ version "1.1.7"
675
+ resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc"
676
+
677
+ ecc-jsbn@~0.1.1:
678
+ version "0.1.1"
679
+ resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505"
680
+ dependencies:
681
+ jsbn "~0.1.0"
682
+
683
+ ee-first@1.1.1:
684
+ version "1.1.1"
685
+ resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
686
+
687
+ elliptic@^6.0.0:
688
+ version "6.4.0"
689
+ resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df"
690
+ dependencies:
691
+ bn.js "^4.4.0"
692
+ brorand "^1.0.1"
693
+ hash.js "^1.0.0"
694
+ hmac-drbg "^1.0.0"
695
+ inherits "^2.0.1"
696
+ minimalistic-assert "^1.0.0"
697
+ minimalistic-crypto-utils "^1.0.0"
698
+
699
+ emojis-list@^2.0.0:
700
+ version "2.1.0"
701
+ resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389"
702
+
703
+ encodeurl@~1.0.1:
704
+ version "1.0.1"
705
+ resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20"
706
+
707
+ enhanced-resolve@^3.4.0:
708
+ version "3.4.1"
709
+ resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz#0421e339fd71419b3da13d129b3979040230476e"
710
+ dependencies:
711
+ graceful-fs "^4.1.2"
712
+ memory-fs "^0.4.0"
713
+ object-assign "^4.0.1"
714
+ tapable "^0.2.7"
715
+
716
+ errno@^0.1.3:
717
+ version "0.1.6"
718
+ resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.6.tgz#c386ce8a6283f14fc09563b71560908c9bf53026"
719
+ dependencies:
720
+ prr "~1.0.1"
721
+
722
+ error-ex@^1.2.0:
723
+ version "1.3.1"
724
+ resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc"
725
+ dependencies:
726
+ is-arrayish "^0.2.1"
727
+
728
+ es-abstract@^1.7.0:
729
+ version "1.10.0"
730
+ resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.10.0.tgz#1ecb36c197842a00d8ee4c2dfd8646bb97d60864"
731
+ dependencies:
732
+ es-to-primitive "^1.1.1"
733
+ function-bind "^1.1.1"
734
+ has "^1.0.1"
735
+ is-callable "^1.1.3"
736
+ is-regex "^1.0.4"
737
+
738
+ es-to-primitive@^1.1.1:
739
+ version "1.1.1"
740
+ resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d"
741
+ dependencies:
742
+ is-callable "^1.1.1"
743
+ is-date-object "^1.0.1"
744
+ is-symbol "^1.0.1"
745
+
746
+ es5-ext@^0.10.14, es5-ext@^0.10.35, es5-ext@^0.10.9, es5-ext@~0.10.14:
747
+ version "0.10.37"
748
+ resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.37.tgz#0ee741d148b80069ba27d020393756af257defc3"
749
+ dependencies:
750
+ es6-iterator "~2.0.1"
751
+ es6-symbol "~3.1.1"
752
+
753
+ es6-iterator@^2.0.1, es6-iterator@~2.0.1:
754
+ version "2.0.3"
755
+ resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7"
756
+ dependencies:
757
+ d "1"
758
+ es5-ext "^0.10.35"
759
+ es6-symbol "^3.1.1"
760
+
761
+ es6-map@^0.1.3:
762
+ version "0.1.5"
763
+ resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0"
764
+ dependencies:
765
+ d "1"
766
+ es5-ext "~0.10.14"
767
+ es6-iterator "~2.0.1"
768
+ es6-set "~0.1.5"
769
+ es6-symbol "~3.1.1"
770
+ event-emitter "~0.3.5"
771
+
772
+ es6-set@~0.1.5:
773
+ version "0.1.5"
774
+ resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1"
775
+ dependencies:
776
+ d "1"
777
+ es5-ext "~0.10.14"
778
+ es6-iterator "~2.0.1"
779
+ es6-symbol "3.1.1"
780
+ event-emitter "~0.3.5"
781
+
782
+ es6-symbol@3.1.1, es6-symbol@^3.1.1, es6-symbol@~3.1.1:
783
+ version "3.1.1"
784
+ resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77"
785
+ dependencies:
786
+ d "1"
787
+ es5-ext "~0.10.14"
788
+
789
+ es6-weak-map@^2.0.1:
790
+ version "2.0.2"
791
+ resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f"
792
+ dependencies:
793
+ d "1"
794
+ es5-ext "^0.10.14"
795
+ es6-iterator "^2.0.1"
796
+ es6-symbol "^3.1.1"
797
+
798
+ escape-html@~1.0.3:
799
+ version "1.0.3"
800
+ resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
801
+
802
+ escope@^3.6.0:
803
+ version "3.6.0"
804
+ resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3"
805
+ dependencies:
806
+ es6-map "^0.1.3"
807
+ es6-weak-map "^2.0.1"
808
+ esrecurse "^4.1.0"
809
+ estraverse "^4.1.1"
810
+
811
+ esrecurse@^4.1.0:
812
+ version "4.2.0"
813
+ resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163"
814
+ dependencies:
815
+ estraverse "^4.1.0"
816
+ object-assign "^4.0.1"
817
+
818
+ estraverse@^4.1.0, estraverse@^4.1.1:
819
+ version "4.2.0"
820
+ resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
821
+
822
+ etag@~1.8.1:
823
+ version "1.8.1"
824
+ resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887"
825
+
826
+ event-emitter@~0.3.5:
827
+ version "0.3.5"
828
+ resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39"
829
+ dependencies:
830
+ d "1"
831
+ es5-ext "~0.10.14"
832
+
833
+ eventemitter3@1.x.x:
834
+ version "1.2.0"
835
+ resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-1.2.0.tgz#1c86991d816ad1e504750e73874224ecf3bec508"
836
+
837
+ events@^1.0.0:
838
+ version "1.1.1"
839
+ resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924"
840
+
841
+ eventsource@0.1.6:
842
+ version "0.1.6"
843
+ resolved "https://registry.yarnpkg.com/eventsource/-/eventsource-0.1.6.tgz#0acede849ed7dd1ccc32c811bb11b944d4f29232"
844
+ dependencies:
845
+ original ">=0.0.5"
846
+
847
+ evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3:
848
+ version "1.0.3"
849
+ resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02"
850
+ dependencies:
851
+ md5.js "^1.3.4"
852
+ safe-buffer "^5.1.1"
853
+
854
+ execa@^0.7.0:
855
+ version "0.7.0"
856
+ resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777"
857
+ dependencies:
858
+ cross-spawn "^5.0.1"
859
+ get-stream "^3.0.0"
860
+ is-stream "^1.1.0"
861
+ npm-run-path "^2.0.0"
862
+ p-finally "^1.0.0"
863
+ signal-exit "^3.0.0"
864
+ strip-eof "^1.0.0"
865
+
866
+ expand-brackets@^0.1.4:
867
+ version "0.1.5"
868
+ resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
869
+ dependencies:
870
+ is-posix-bracket "^0.1.0"
871
+
872
+ expand-range@^1.8.1:
873
+ version "1.8.2"
874
+ resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337"
875
+ dependencies:
876
+ fill-range "^2.1.0"
877
+
878
+ express@^4.16.2:
879
+ version "4.16.2"
880
+ resolved "https://registry.yarnpkg.com/express/-/express-4.16.2.tgz#e35c6dfe2d64b7dca0a5cd4f21781be3299e076c"
881
+ dependencies:
882
+ accepts "~1.3.4"
883
+ array-flatten "1.1.1"
884
+ body-parser "1.18.2"
885
+ content-disposition "0.5.2"
886
+ content-type "~1.0.4"
887
+ cookie "0.3.1"
888
+ cookie-signature "1.0.6"
889
+ debug "2.6.9"
890
+ depd "~1.1.1"
891
+ encodeurl "~1.0.1"
892
+ escape-html "~1.0.3"
893
+ etag "~1.8.1"
894
+ finalhandler "1.1.0"
895
+ fresh "0.5.2"
896
+ merge-descriptors "1.0.1"
897
+ methods "~1.1.2"
898
+ on-finished "~2.3.0"
899
+ parseurl "~1.3.2"
900
+ path-to-regexp "0.1.7"
901
+ proxy-addr "~2.0.2"
902
+ qs "6.5.1"
903
+ range-parser "~1.2.0"
904
+ safe-buffer "5.1.1"
905
+ send "0.16.1"
906
+ serve-static "1.13.1"
907
+ setprototypeof "1.1.0"
908
+ statuses "~1.3.1"
909
+ type-is "~1.6.15"
910
+ utils-merge "1.0.1"
911
+ vary "~1.1.2"
912
+
913
+ extend@~3.0.0:
914
+ version "3.0.1"
915
+ resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444"
916
+
917
+ extglob@^0.3.1:
918
+ version "0.3.2"
919
+ resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1"
920
+ dependencies:
921
+ is-extglob "^1.0.0"
922
+
923
+ extsprintf@1.3.0:
924
+ version "1.3.0"
925
+ resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05"
926
+
927
+ extsprintf@^1.2.0:
928
+ version "1.4.0"
929
+ resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f"
930
+
931
+ fast-deep-equal@^1.0.0:
932
+ version "1.0.0"
933
+ resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff"
934
+
935
+ fast-json-stable-stringify@^2.0.0:
936
+ version "2.0.0"
937
+ resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2"
938
+
939
+ faye-websocket@^0.10.0:
940
+ version "0.10.0"
941
+ resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.10.0.tgz#4e492f8d04dfb6f89003507f6edbf2d501e7c6f4"
942
+ dependencies:
943
+ websocket-driver ">=0.5.1"
944
+
945
+ faye-websocket@~0.11.0:
946
+ version "0.11.1"
947
+ resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.1.tgz#f0efe18c4f56e4f40afc7e06c719fd5ee6188f38"
948
+ dependencies:
949
+ websocket-driver ">=0.5.1"
950
+
951
+ filename-regex@^2.0.0:
952
+ version "2.0.1"
953
+ resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26"
954
+
955
+ fill-range@^2.1.0:
956
+ version "2.2.3"
957
+ resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723"
958
+ dependencies:
959
+ is-number "^2.1.0"
960
+ isobject "^2.0.0"
961
+ randomatic "^1.1.3"
962
+ repeat-element "^1.1.2"
963
+ repeat-string "^1.5.2"
964
+
965
+ finalhandler@1.1.0:
966
+ version "1.1.0"
967
+ resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.0.tgz#ce0b6855b45853e791b2fcc680046d88253dd7f5"
968
+ dependencies:
969
+ debug "2.6.9"
970
+ encodeurl "~1.0.1"
971
+ escape-html "~1.0.3"
972
+ on-finished "~2.3.0"
973
+ parseurl "~1.3.2"
974
+ statuses "~1.3.1"
975
+ unpipe "~1.0.0"
976
+
977
+ find-up@^1.0.0:
978
+ version "1.1.2"
979
+ resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"
980
+ dependencies:
981
+ path-exists "^2.0.0"
982
+ pinkie-promise "^2.0.0"
983
+
984
+ find-up@^2.0.0, find-up@^2.1.0:
985
+ version "2.1.0"
986
+ resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
987
+ dependencies:
988
+ locate-path "^2.0.0"
989
+
990
+ for-in@^1.0.1:
991
+ version "1.0.2"
992
+ resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
993
+
994
+ for-own@^0.1.4:
995
+ version "0.1.5"
996
+ resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce"
997
+ dependencies:
998
+ for-in "^1.0.1"
999
+
1000
+ foreach@^2.0.5:
1001
+ version "2.0.5"
1002
+ resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99"
1003
+
1004
+ forever-agent@~0.6.1:
1005
+ version "0.6.1"
1006
+ resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
1007
+
1008
+ form-data@~2.1.1:
1009
+ version "2.1.4"
1010
+ resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1"
1011
+ dependencies:
1012
+ asynckit "^0.4.0"
1013
+ combined-stream "^1.0.5"
1014
+ mime-types "^2.1.12"
1015
+
1016
+ forwarded@~0.1.2:
1017
+ version "0.1.2"
1018
+ resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84"
1019
+
1020
+ fresh@0.5.2:
1021
+ version "0.5.2"
1022
+ resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7"
1023
+
1024
+ fs-extra@^0.30.0:
1025
+ version "0.30.0"
1026
+ resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.30.0.tgz#f233ffcc08d4da7d432daa449776989db1df93f0"
1027
+ dependencies:
1028
+ graceful-fs "^4.1.2"
1029
+ jsonfile "^2.1.0"
1030
+ klaw "^1.0.0"
1031
+ path-is-absolute "^1.0.0"
1032
+ rimraf "^2.2.8"
1033
+
1034
+ fs.realpath@^1.0.0:
1035
+ version "1.0.0"
1036
+ resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1037
+
1038
+ fsevents@^1.0.0:
1039
+ version "1.1.3"
1040
+ resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8"
1041
+ dependencies:
1042
+ nan "^2.3.0"
1043
+ node-pre-gyp "^0.6.39"
1044
+
1045
+ fstream-ignore@^1.0.5:
1046
+ version "1.0.5"
1047
+ resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105"
1048
+ dependencies:
1049
+ fstream "^1.0.0"
1050
+ inherits "2"
1051
+ minimatch "^3.0.0"
1052
+
1053
+ fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2:
1054
+ version "1.0.11"
1055
+ resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171"
1056
+ dependencies:
1057
+ graceful-fs "^4.1.2"
1058
+ inherits "~2.0.0"
1059
+ mkdirp ">=0.5 0"
1060
+ rimraf "2"
1061
+
1062
+ function-bind@^1.0.2, function-bind@^1.1.1:
1063
+ version "1.1.1"
1064
+ resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
1065
+
1066
+ gauge@~2.7.3:
1067
+ version "2.7.4"
1068
+ resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
1069
+ dependencies:
1070
+ aproba "^1.0.3"
1071
+ console-control-strings "^1.0.0"
1072
+ has-unicode "^2.0.0"
1073
+ object-assign "^4.1.0"
1074
+ signal-exit "^3.0.0"
1075
+ string-width "^1.0.1"
1076
+ strip-ansi "^3.0.1"
1077
+ wide-align "^1.1.0"
1078
+
1079
+ get-caller-file@^1.0.1:
1080
+ version "1.0.2"
1081
+ resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5"
1082
+
1083
+ get-stdin@^4.0.1:
1084
+ version "4.0.1"
1085
+ resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe"
1086
+
1087
+ get-stream@^3.0.0:
1088
+ version "3.0.0"
1089
+ resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14"
1090
+
1091
+ getpass@^0.1.1:
1092
+ version "0.1.7"
1093
+ resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
1094
+ dependencies:
1095
+ assert-plus "^1.0.0"
1096
+
1097
+ glob-base@^0.3.0:
1098
+ version "0.3.0"
1099
+ resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
1100
+ dependencies:
1101
+ glob-parent "^2.0.0"
1102
+ is-glob "^2.0.0"
1103
+
1104
+ glob-parent@^2.0.0:
1105
+ version "2.0.0"
1106
+ resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
1107
+ dependencies:
1108
+ is-glob "^2.0.0"
1109
+
1110
+ glob@^7.0.3, glob@^7.0.5:
1111
+ version "7.1.2"
1112
+ resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
1113
+ dependencies:
1114
+ fs.realpath "^1.0.0"
1115
+ inflight "^1.0.4"
1116
+ inherits "2"
1117
+ minimatch "^3.0.4"
1118
+ once "^1.3.0"
1119
+ path-is-absolute "^1.0.0"
1120
+
1121
+ globby@^6.1.0:
1122
+ version "6.1.0"
1123
+ resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c"
1124
+ dependencies:
1125
+ array-union "^1.0.1"
1126
+ glob "^7.0.3"
1127
+ object-assign "^4.0.1"
1128
+ pify "^2.0.0"
1129
+ pinkie-promise "^2.0.0"
1130
+
1131
+ graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9:
1132
+ version "4.1.11"
1133
+ resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
1134
+
1135
+ handle-thing@^1.2.5:
1136
+ version "1.2.5"
1137
+ resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-1.2.5.tgz#fd7aad726bf1a5fd16dfc29b2f7a6601d27139c4"
1138
+
1139
+ har-schema@^1.0.5:
1140
+ version "1.0.5"
1141
+ resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e"
1142
+
1143
+ har-validator@~4.2.1:
1144
+ version "4.2.1"
1145
+ resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a"
1146
+ dependencies:
1147
+ ajv "^4.9.1"
1148
+ har-schema "^1.0.5"
1149
+
1150
+ has-flag@^2.0.0:
1151
+ version "2.0.0"
1152
+ resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51"
1153
+
1154
+ has-unicode@^2.0.0:
1155
+ version "2.0.1"
1156
+ resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
1157
+
1158
+ has@^1.0.1:
1159
+ version "1.0.1"
1160
+ resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28"
1161
+ dependencies:
1162
+ function-bind "^1.0.2"
1163
+
1164
+ hash-base@^2.0.0:
1165
+ version "2.0.2"
1166
+ resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-2.0.2.tgz#66ea1d856db4e8a5470cadf6fce23ae5244ef2e1"
1167
+ dependencies:
1168
+ inherits "^2.0.1"
1169
+
1170
+ hash-base@^3.0.0:
1171
+ version "3.0.4"
1172
+ resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918"
1173
+ dependencies:
1174
+ inherits "^2.0.1"
1175
+ safe-buffer "^5.0.1"
1176
+
1177
+ hash.js@^1.0.0, hash.js@^1.0.3:
1178
+ version "1.1.3"
1179
+ resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.3.tgz#340dedbe6290187151c1ea1d777a3448935df846"
1180
+ dependencies:
1181
+ inherits "^2.0.3"
1182
+ minimalistic-assert "^1.0.0"
1183
+
1184
+ hawk@3.1.3, hawk@~3.1.3:
1185
+ version "3.1.3"
1186
+ resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4"
1187
+ dependencies:
1188
+ boom "2.x.x"
1189
+ cryptiles "2.x.x"
1190
+ hoek "2.x.x"
1191
+ sntp "1.x.x"
1192
+
1193
+ hmac-drbg@^1.0.0:
1194
+ version "1.0.1"
1195
+ resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1"
1196
+ dependencies:
1197
+ hash.js "^1.0.3"
1198
+ minimalistic-assert "^1.0.0"
1199
+ minimalistic-crypto-utils "^1.0.1"
1200
+
1201
+ hoek@2.x.x:
1202
+ version "2.16.3"
1203
+ resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed"
1204
+
1205
+ hosted-git-info@^2.1.4:
1206
+ version "2.5.0"
1207
+ resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c"
1208
+
1209
+ hpack.js@^2.1.6:
1210
+ version "2.1.6"
1211
+ resolved "https://registry.yarnpkg.com/hpack.js/-/hpack.js-2.1.6.tgz#87774c0949e513f42e84575b3c45681fade2a0b2"
1212
+ dependencies:
1213
+ inherits "^2.0.1"
1214
+ obuf "^1.0.0"
1215
+ readable-stream "^2.0.1"
1216
+ wbuf "^1.1.0"
1217
+
1218
+ html-entities@^1.2.0:
1219
+ version "1.2.1"
1220
+ resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-1.2.1.tgz#0df29351f0721163515dfb9e5543e5f6eed5162f"
1221
+
1222
+ http-deceiver@^1.2.7:
1223
+ version "1.2.7"
1224
+ resolved "https://registry.yarnpkg.com/http-deceiver/-/http-deceiver-1.2.7.tgz#fa7168944ab9a519d337cb0bec7284dc3e723d87"
1225
+
1226
+ http-errors@1.6.2, http-errors@~1.6.2:
1227
+ version "1.6.2"
1228
+ resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.2.tgz#0a002cc85707192a7e7946ceedc11155f60ec736"
1229
+ dependencies:
1230
+ depd "1.1.1"
1231
+ inherits "2.0.3"
1232
+ setprototypeof "1.0.3"
1233
+ statuses ">= 1.3.1 < 2"
1234
+
1235
+ http-parser-js@>=0.4.0:
1236
+ version "0.4.9"
1237
+ resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.4.9.tgz#ea1a04fb64adff0242e9974f297dd4c3cad271e1"
1238
+
1239
+ http-proxy-middleware@~0.17.4:
1240
+ version "0.17.4"
1241
+ resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-0.17.4.tgz#642e8848851d66f09d4f124912846dbaeb41b833"
1242
+ dependencies:
1243
+ http-proxy "^1.16.2"
1244
+ is-glob "^3.1.0"
1245
+ lodash "^4.17.2"
1246
+ micromatch "^2.3.11"
1247
+
1248
+ http-proxy@^1.16.2:
1249
+ version "1.16.2"
1250
+ resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.16.2.tgz#06dff292952bf64dbe8471fa9df73066d4f37742"
1251
+ dependencies:
1252
+ eventemitter3 "1.x.x"
1253
+ requires-port "1.x.x"
1254
+
1255
+ http-signature@~1.1.0:
1256
+ version "1.1.1"
1257
+ resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf"
1258
+ dependencies:
1259
+ assert-plus "^0.2.0"
1260
+ jsprim "^1.2.2"
1261
+ sshpk "^1.7.0"
1262
+
1263
+ https-browserify@^1.0.0:
1264
+ version "1.0.0"
1265
+ resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73"
1266
+
1267
+ iconv-lite@0.4.19:
1268
+ version "0.4.19"
1269
+ resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b"
1270
+
1271
+ ieee754@^1.1.4:
1272
+ version "1.1.8"
1273
+ resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4"
1274
+
1275
+ import-local@^0.1.1:
1276
+ version "0.1.1"
1277
+ resolved "https://registry.yarnpkg.com/import-local/-/import-local-0.1.1.tgz#b1179572aacdc11c6a91009fb430dbcab5f668a8"
1278
+ dependencies:
1279
+ pkg-dir "^2.0.0"
1280
+ resolve-cwd "^2.0.0"
1281
+
1282
+ indent-string@^2.1.0:
1283
+ version "2.1.0"
1284
+ resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80"
1285
+ dependencies:
1286
+ repeating "^2.0.0"
1287
+
1288
+ indexof@0.0.1:
1289
+ version "0.0.1"
1290
+ resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d"
1291
+
1292
+ inflight@^1.0.4:
1293
+ version "1.0.6"
1294
+ resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
1295
+ dependencies:
1296
+ once "^1.3.0"
1297
+ wrappy "1"
1298
+
1299
+ 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:
1300
+ version "2.0.3"
1301
+ resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
1302
+
1303
+ inherits@2.0.1:
1304
+ version "2.0.1"
1305
+ resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1"
1306
+
1307
+ ini@~1.3.0:
1308
+ version "1.3.5"
1309
+ resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927"
1310
+
1311
+ internal-ip@1.2.0:
1312
+ version "1.2.0"
1313
+ resolved "https://registry.yarnpkg.com/internal-ip/-/internal-ip-1.2.0.tgz#ae9fbf93b984878785d50a8de1b356956058cf5c"
1314
+ dependencies:
1315
+ meow "^3.3.0"
1316
+
1317
+ interpret@^1.0.0:
1318
+ version "1.1.0"
1319
+ resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.1.0.tgz#7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614"
1320
+
1321
+ invert-kv@^1.0.0:
1322
+ version "1.0.0"
1323
+ resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"
1324
+
1325
+ ip@^1.1.0, ip@^1.1.5:
1326
+ version "1.1.5"
1327
+ resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a"
1328
+
1329
+ ipaddr.js@1.5.2:
1330
+ version "1.5.2"
1331
+ resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.5.2.tgz#d4b505bde9946987ccf0fc58d9010ff9607e3fa0"
1332
+
1333
+ is-arrayish@^0.2.1:
1334
+ version "0.2.1"
1335
+ resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
1336
+
1337
+ is-binary-path@^1.0.0:
1338
+ version "1.0.1"
1339
+ resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
1340
+ dependencies:
1341
+ binary-extensions "^1.0.0"
1342
+
1343
+ is-buffer@^1.1.5:
1344
+ version "1.1.6"
1345
+ resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
1346
+
1347
+ is-builtin-module@^1.0.0:
1348
+ version "1.0.0"
1349
+ resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe"
1350
+ dependencies:
1351
+ builtin-modules "^1.0.0"
1352
+
1353
+ is-callable@^1.1.1, is-callable@^1.1.3:
1354
+ version "1.1.3"
1355
+ resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2"
1356
+
1357
+ is-date-object@^1.0.1:
1358
+ version "1.0.1"
1359
+ resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16"
1360
+
1361
+ is-dotfile@^1.0.0:
1362
+ version "1.0.3"
1363
+ resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1"
1364
+
1365
+ is-equal-shallow@^0.1.3:
1366
+ version "0.1.3"
1367
+ resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534"
1368
+ dependencies:
1369
+ is-primitive "^2.0.0"
1370
+
1371
+ is-extendable@^0.1.1:
1372
+ version "0.1.1"
1373
+ resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
1374
+
1375
+ is-extglob@^1.0.0:
1376
+ version "1.0.0"
1377
+ resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
1378
+
1379
+ is-extglob@^2.1.0:
1380
+ version "2.1.1"
1381
+ resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
1382
+
1383
+ is-finite@^1.0.0:
1384
+ version "1.0.2"
1385
+ resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa"
1386
+ dependencies:
1387
+ number-is-nan "^1.0.0"
1388
+
1389
+ is-fullwidth-code-point@^1.0.0:
1390
+ version "1.0.0"
1391
+ resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
1392
+ dependencies:
1393
+ number-is-nan "^1.0.0"
1394
+
1395
+ is-fullwidth-code-point@^2.0.0:
1396
+ version "2.0.0"
1397
+ resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
1398
+
1399
+ is-glob@^2.0.0, is-glob@^2.0.1:
1400
+ version "2.0.1"
1401
+ resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
1402
+ dependencies:
1403
+ is-extglob "^1.0.0"
1404
+
1405
+ is-glob@^3.1.0:
1406
+ version "3.1.0"
1407
+ resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a"
1408
+ dependencies:
1409
+ is-extglob "^2.1.0"
1410
+
1411
+ is-number@^2.1.0:
1412
+ version "2.1.0"
1413
+ resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f"
1414
+ dependencies:
1415
+ kind-of "^3.0.2"
1416
+
1417
+ is-number@^3.0.0:
1418
+ version "3.0.0"
1419
+ resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
1420
+ dependencies:
1421
+ kind-of "^3.0.2"
1422
+
1423
+ is-path-cwd@^1.0.0:
1424
+ version "1.0.0"
1425
+ resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d"
1426
+
1427
+ is-path-in-cwd@^1.0.0:
1428
+ version "1.0.0"
1429
+ resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc"
1430
+ dependencies:
1431
+ is-path-inside "^1.0.0"
1432
+
1433
+ is-path-inside@^1.0.0:
1434
+ version "1.0.1"
1435
+ resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036"
1436
+ dependencies:
1437
+ path-is-inside "^1.0.1"
1438
+
1439
+ is-posix-bracket@^0.1.0:
1440
+ version "0.1.1"
1441
+ resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"
1442
+
1443
+ is-primitive@^2.0.0:
1444
+ version "2.0.0"
1445
+ resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
1446
+
1447
+ is-regex@^1.0.4:
1448
+ version "1.0.4"
1449
+ resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491"
1450
+ dependencies:
1451
+ has "^1.0.1"
1452
+
1453
+ is-stream@^1.1.0:
1454
+ version "1.1.0"
1455
+ resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
1456
+
1457
+ is-symbol@^1.0.1:
1458
+ version "1.0.1"
1459
+ resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572"
1460
+
1461
+ is-typedarray@~1.0.0:
1462
+ version "1.0.0"
1463
+ resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
1464
+
1465
+ is-utf8@^0.2.0:
1466
+ version "0.2.1"
1467
+ resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72"
1468
+
1469
+ is-wsl@^1.1.0:
1470
+ version "1.1.0"
1471
+ resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d"
1472
+
1473
+ isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
1474
+ version "1.0.0"
1475
+ resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
1476
+
1477
+ isexe@^2.0.0:
1478
+ version "2.0.0"
1479
+ resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
1480
+
1481
+ isobject@^2.0.0:
1482
+ version "2.1.0"
1483
+ resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
1484
+ dependencies:
1485
+ isarray "1.0.0"
1486
+
1487
+ isstream@~0.1.2:
1488
+ version "0.1.2"
1489
+ resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
1490
+
1491
+ jsbn@~0.1.0:
1492
+ version "0.1.1"
1493
+ resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
1494
+
1495
+ json-loader@^0.5.4:
1496
+ version "0.5.7"
1497
+ resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.7.tgz#dca14a70235ff82f0ac9a3abeb60d337a365185d"
1498
+
1499
+ json-schema-traverse@^0.3.0:
1500
+ version "0.3.1"
1501
+ resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340"
1502
+
1503
+ json-schema@0.2.3:
1504
+ version "0.2.3"
1505
+ resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
1506
+
1507
+ json-stable-stringify@^1.0.1:
1508
+ version "1.0.1"
1509
+ resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
1510
+ dependencies:
1511
+ jsonify "~0.0.0"
1512
+
1513
+ json-stringify-safe@~5.0.1:
1514
+ version "5.0.1"
1515
+ resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
1516
+
1517
+ json3@^3.3.2:
1518
+ version "3.3.2"
1519
+ resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1"
1520
+
1521
+ json5@^0.5.0, json5@^0.5.1:
1522
+ version "0.5.1"
1523
+ resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
1524
+
1525
+ jsonfile@^2.1.0:
1526
+ version "2.4.0"
1527
+ resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8"
1528
+ optionalDependencies:
1529
+ graceful-fs "^4.1.6"
1530
+
1531
+ jsonify@~0.0.0:
1532
+ version "0.0.0"
1533
+ resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
1534
+
1535
+ jsprim@^1.2.2:
1536
+ version "1.4.1"
1537
+ resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"
1538
+ dependencies:
1539
+ assert-plus "1.0.0"
1540
+ extsprintf "1.3.0"
1541
+ json-schema "0.2.3"
1542
+ verror "1.10.0"
1543
+
1544
+ killable@^1.0.0:
1545
+ version "1.0.0"
1546
+ resolved "https://registry.yarnpkg.com/killable/-/killable-1.0.0.tgz#da8b84bd47de5395878f95d64d02f2449fe05e6b"
1547
+
1548
+ kind-of@^3.0.2:
1549
+ version "3.2.2"
1550
+ resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
1551
+ dependencies:
1552
+ is-buffer "^1.1.5"
1553
+
1554
+ kind-of@^4.0.0:
1555
+ version "4.0.0"
1556
+ resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57"
1557
+ dependencies:
1558
+ is-buffer "^1.1.5"
1559
+
1560
+ klaw@^1.0.0:
1561
+ version "1.3.1"
1562
+ resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439"
1563
+ optionalDependencies:
1564
+ graceful-fs "^4.1.9"
1565
+
1566
+ lazy-cache@^1.0.3:
1567
+ version "1.0.4"
1568
+ resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"
1569
+
1570
+ lcid@^1.0.0:
1571
+ version "1.0.0"
1572
+ resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835"
1573
+ dependencies:
1574
+ invert-kv "^1.0.0"
1575
+
1576
+ load-json-file@^1.0.0:
1577
+ version "1.1.0"
1578
+ resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0"
1579
+ dependencies:
1580
+ graceful-fs "^4.1.2"
1581
+ parse-json "^2.2.0"
1582
+ pify "^2.0.0"
1583
+ pinkie-promise "^2.0.0"
1584
+ strip-bom "^2.0.0"
1585
+
1586
+ load-json-file@^2.0.0:
1587
+ version "2.0.0"
1588
+ resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8"
1589
+ dependencies:
1590
+ graceful-fs "^4.1.2"
1591
+ parse-json "^2.2.0"
1592
+ pify "^2.0.0"
1593
+ strip-bom "^3.0.0"
1594
+
1595
+ loader-runner@^2.3.0:
1596
+ version "2.3.0"
1597
+ resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2"
1598
+
1599
+ loader-utils@^1.1.0:
1600
+ version "1.1.0"
1601
+ resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd"
1602
+ dependencies:
1603
+ big.js "^3.1.3"
1604
+ emojis-list "^2.0.0"
1605
+ json5 "^0.5.0"
1606
+
1607
+ locate-path@^2.0.0:
1608
+ version "2.0.0"
1609
+ resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
1610
+ dependencies:
1611
+ p-locate "^2.0.0"
1612
+ path-exists "^3.0.0"
1613
+
1614
+ "lodash@>=3.5 <5", lodash@^4.14.0, lodash@^4.17.2:
1615
+ version "4.17.4"
1616
+ resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae"
1617
+
1618
+ loglevel@^1.4.1:
1619
+ version "1.6.0"
1620
+ resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.6.0.tgz#ae0caa561111498c5ba13723d6fb631d24003934"
1621
+
1622
+ longest@^1.0.1:
1623
+ version "1.0.1"
1624
+ resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097"
1625
+
1626
+ loud-rejection@^1.0.0:
1627
+ version "1.6.0"
1628
+ resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f"
1629
+ dependencies:
1630
+ currently-unhandled "^0.4.1"
1631
+ signal-exit "^3.0.0"
1632
+
1633
+ lru-cache@^4.0.1:
1634
+ version "4.1.1"
1635
+ resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55"
1636
+ dependencies:
1637
+ pseudomap "^1.0.2"
1638
+ yallist "^2.1.2"
1639
+
1640
+ map-obj@^1.0.0, map-obj@^1.0.1:
1641
+ version "1.0.1"
1642
+ resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d"
1643
+
1644
+ md5.js@^1.3.4:
1645
+ version "1.3.4"
1646
+ resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.4.tgz#e9bdbde94a20a5ac18b04340fc5764d5b09d901d"
1647
+ dependencies:
1648
+ hash-base "^3.0.0"
1649
+ inherits "^2.0.1"
1650
+
1651
+ media-typer@0.3.0:
1652
+ version "0.3.0"
1653
+ resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748"
1654
+
1655
+ mem@^1.1.0:
1656
+ version "1.1.0"
1657
+ resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76"
1658
+ dependencies:
1659
+ mimic-fn "^1.0.0"
1660
+
1661
+ memory-fs@^0.4.0, memory-fs@~0.4.1:
1662
+ version "0.4.1"
1663
+ resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552"
1664
+ dependencies:
1665
+ errno "^0.1.3"
1666
+ readable-stream "^2.0.1"
1667
+
1668
+ meow@^3.3.0:
1669
+ version "3.7.0"
1670
+ resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb"
1671
+ dependencies:
1672
+ camelcase-keys "^2.0.0"
1673
+ decamelize "^1.1.2"
1674
+ loud-rejection "^1.0.0"
1675
+ map-obj "^1.0.1"
1676
+ minimist "^1.1.3"
1677
+ normalize-package-data "^2.3.4"
1678
+ object-assign "^4.0.1"
1679
+ read-pkg-up "^1.0.1"
1680
+ redent "^1.0.0"
1681
+ trim-newlines "^1.0.0"
1682
+
1683
+ merge-descriptors@1.0.1:
1684
+ version "1.0.1"
1685
+ resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61"
1686
+
1687
+ methods@~1.1.2:
1688
+ version "1.1.2"
1689
+ resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee"
1690
+
1691
+ micromatch@^2.1.5, micromatch@^2.3.11:
1692
+ version "2.3.11"
1693
+ resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565"
1694
+ dependencies:
1695
+ arr-diff "^2.0.0"
1696
+ array-unique "^0.2.1"
1697
+ braces "^1.8.2"
1698
+ expand-brackets "^0.1.4"
1699
+ extglob "^0.3.1"
1700
+ filename-regex "^2.0.0"
1701
+ is-extglob "^1.0.0"
1702
+ is-glob "^2.0.1"
1703
+ kind-of "^3.0.2"
1704
+ normalize-path "^2.0.1"
1705
+ object.omit "^2.0.0"
1706
+ parse-glob "^3.0.4"
1707
+ regex-cache "^0.4.2"
1708
+
1709
+ miller-rabin@^4.0.0:
1710
+ version "4.0.1"
1711
+ resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d"
1712
+ dependencies:
1713
+ bn.js "^4.0.0"
1714
+ brorand "^1.0.1"
1715
+
1716
+ "mime-db@>= 1.30.0 < 2":
1717
+ version "1.32.0"
1718
+ resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.32.0.tgz#485b3848b01a3cda5f968b4882c0771e58e09414"
1719
+
1720
+ mime-db@~1.30.0:
1721
+ version "1.30.0"
1722
+ resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01"
1723
+
1724
+ mime-types@^2.1.12, mime-types@~2.1.15, mime-types@~2.1.16, mime-types@~2.1.17, mime-types@~2.1.7:
1725
+ version "2.1.17"
1726
+ resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a"
1727
+ dependencies:
1728
+ mime-db "~1.30.0"
1729
+
1730
+ mime@1.4.1:
1731
+ version "1.4.1"
1732
+ resolved "https://registry.yarnpkg.com/mime/-/mime-1.4.1.tgz#121f9ebc49e3766f311a76e1fa1c8003c4b03aa6"
1733
+
1734
+ mime@^1.5.0:
1735
+ version "1.6.0"
1736
+ resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1"
1737
+
1738
+ mimic-fn@^1.0.0:
1739
+ version "1.1.0"
1740
+ resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18"
1741
+
1742
+ minimalistic-assert@^1.0.0:
1743
+ version "1.0.0"
1744
+ resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3"
1745
+
1746
+ minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1:
1747
+ version "1.0.1"
1748
+ resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
1749
+
1750
+ minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4:
1751
+ version "3.0.4"
1752
+ resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
1753
+ dependencies:
1754
+ brace-expansion "^1.1.7"
1755
+
1756
+ minimist@0.0.8:
1757
+ version "0.0.8"
1758
+ resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
1759
+
1760
+ minimist@^1.1.3, minimist@^1.2.0:
1761
+ version "1.2.0"
1762
+ resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
1763
+
1764
+ mkdirp@0.5.x, "mkdirp@>=0.5 0", mkdirp@^0.5.1, mkdirp@~0.5.0:
1765
+ version "0.5.1"
1766
+ resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
1767
+ dependencies:
1768
+ minimist "0.0.8"
1769
+
1770
+ ms@2.0.0:
1771
+ version "2.0.0"
1772
+ resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
1773
+
1774
+ multicast-dns-service-types@^1.1.0:
1775
+ version "1.1.0"
1776
+ resolved "https://registry.yarnpkg.com/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz#899f11d9686e5e05cb91b35d5f0e63b773cfc901"
1777
+
1778
+ multicast-dns@^6.0.1:
1779
+ version "6.2.1"
1780
+ resolved "https://registry.yarnpkg.com/multicast-dns/-/multicast-dns-6.2.1.tgz#c5035defa9219d30640558a49298067352098060"
1781
+ dependencies:
1782
+ dns-packet "^1.0.1"
1783
+ thunky "^0.1.0"
1784
+
1785
+ nan@^2.3.0:
1786
+ version "2.8.0"
1787
+ resolved "https://registry.yarnpkg.com/nan/-/nan-2.8.0.tgz#ed715f3fe9de02b57a5e6252d90a96675e1f085a"
1788
+
1789
+ negotiator@0.6.1:
1790
+ version "0.6.1"
1791
+ resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9"
1792
+
1793
+ node-forge@0.6.33:
1794
+ version "0.6.33"
1795
+ resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.6.33.tgz#463811879f573d45155ad6a9f43dc296e8e85ebc"
1796
+
1797
+ node-libs-browser@^2.0.0:
1798
+ version "2.1.0"
1799
+ resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.1.0.tgz#5f94263d404f6e44767d726901fff05478d600df"
1800
+ dependencies:
1801
+ assert "^1.1.1"
1802
+ browserify-zlib "^0.2.0"
1803
+ buffer "^4.3.0"
1804
+ console-browserify "^1.1.0"
1805
+ constants-browserify "^1.0.0"
1806
+ crypto-browserify "^3.11.0"
1807
+ domain-browser "^1.1.1"
1808
+ events "^1.0.0"
1809
+ https-browserify "^1.0.0"
1810
+ os-browserify "^0.3.0"
1811
+ path-browserify "0.0.0"
1812
+ process "^0.11.10"
1813
+ punycode "^1.2.4"
1814
+ querystring-es3 "^0.2.0"
1815
+ readable-stream "^2.3.3"
1816
+ stream-browserify "^2.0.1"
1817
+ stream-http "^2.7.2"
1818
+ string_decoder "^1.0.0"
1819
+ timers-browserify "^2.0.4"
1820
+ tty-browserify "0.0.0"
1821
+ url "^0.11.0"
1822
+ util "^0.10.3"
1823
+ vm-browserify "0.0.4"
1824
+
1825
+ node-pre-gyp@^0.6.39:
1826
+ version "0.6.39"
1827
+ resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649"
1828
+ dependencies:
1829
+ detect-libc "^1.0.2"
1830
+ hawk "3.1.3"
1831
+ mkdirp "^0.5.1"
1832
+ nopt "^4.0.1"
1833
+ npmlog "^4.0.2"
1834
+ rc "^1.1.7"
1835
+ request "2.81.0"
1836
+ rimraf "^2.6.1"
1837
+ semver "^5.3.0"
1838
+ tar "^2.2.1"
1839
+ tar-pack "^3.4.0"
1840
+
1841
+ nopt@^4.0.1:
1842
+ version "4.0.1"
1843
+ resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d"
1844
+ dependencies:
1845
+ abbrev "1"
1846
+ osenv "^0.1.4"
1847
+
1848
+ normalize-package-data@^2.3.2, normalize-package-data@^2.3.4:
1849
+ version "2.4.0"
1850
+ resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f"
1851
+ dependencies:
1852
+ hosted-git-info "^2.1.4"
1853
+ is-builtin-module "^1.0.0"
1854
+ semver "2 || 3 || 4 || 5"
1855
+ validate-npm-package-license "^3.0.1"
1856
+
1857
+ normalize-path@^2.0.0, normalize-path@^2.0.1:
1858
+ version "2.1.1"
1859
+ resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
1860
+ dependencies:
1861
+ remove-trailing-separator "^1.0.1"
1862
+
1863
+ npm-run-path@^2.0.0:
1864
+ version "2.0.2"
1865
+ resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
1866
+ dependencies:
1867
+ path-key "^2.0.0"
1868
+
1869
+ npmlog@^4.0.2:
1870
+ version "4.1.2"
1871
+ resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
1872
+ dependencies:
1873
+ are-we-there-yet "~1.1.2"
1874
+ console-control-strings "~1.1.0"
1875
+ gauge "~2.7.3"
1876
+ set-blocking "~2.0.0"
1877
+
1878
+ number-is-nan@^1.0.0:
1879
+ version "1.0.1"
1880
+ resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
1881
+
1882
+ oauth-sign@~0.8.1:
1883
+ version "0.8.2"
1884
+ resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
1885
+
1886
+ object-assign@^4.0.1, object-assign@^4.1.0:
1887
+ version "4.1.1"
1888
+ resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
1889
+
1890
+ object-keys@^1.0.8:
1891
+ version "1.0.11"
1892
+ resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d"
1893
+
1894
+ object.omit@^2.0.0:
1895
+ version "2.0.1"
1896
+ resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
1897
+ dependencies:
1898
+ for-own "^0.1.4"
1899
+ is-extendable "^0.1.1"
1900
+
1901
+ obuf@^1.0.0, obuf@^1.1.1:
1902
+ version "1.1.1"
1903
+ resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.1.tgz#104124b6c602c6796881a042541d36db43a5264e"
1904
+
1905
+ on-finished@~2.3.0:
1906
+ version "2.3.0"
1907
+ resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947"
1908
+ dependencies:
1909
+ ee-first "1.1.1"
1910
+
1911
+ on-headers@~1.0.1:
1912
+ version "1.0.1"
1913
+ resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.1.tgz#928f5d0f470d49342651ea6794b0857c100693f7"
1914
+
1915
+ once@^1.3.0, once@^1.3.3:
1916
+ version "1.4.0"
1917
+ resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
1918
+ dependencies:
1919
+ wrappy "1"
1920
+
1921
+ opn@^5.1.0:
1922
+ version "5.1.0"
1923
+ resolved "https://registry.yarnpkg.com/opn/-/opn-5.1.0.tgz#72ce2306a17dbea58ff1041853352b4a8fc77519"
1924
+ dependencies:
1925
+ is-wsl "^1.1.0"
1926
+
1927
+ original@>=0.0.5:
1928
+ version "1.0.0"
1929
+ resolved "https://registry.yarnpkg.com/original/-/original-1.0.0.tgz#9147f93fa1696d04be61e01bd50baeaca656bd3b"
1930
+ dependencies:
1931
+ url-parse "1.0.x"
1932
+
1933
+ os-browserify@^0.3.0:
1934
+ version "0.3.0"
1935
+ resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27"
1936
+
1937
+ os-homedir@^1.0.0:
1938
+ version "1.0.2"
1939
+ resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
1940
+
1941
+ os-locale@^1.4.0:
1942
+ version "1.4.0"
1943
+ resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9"
1944
+ dependencies:
1945
+ lcid "^1.0.0"
1946
+
1947
+ os-locale@^2.0.0:
1948
+ version "2.1.0"
1949
+ resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2"
1950
+ dependencies:
1951
+ execa "^0.7.0"
1952
+ lcid "^1.0.0"
1953
+ mem "^1.1.0"
1954
+
1955
+ os-tmpdir@^1.0.0:
1956
+ version "1.0.2"
1957
+ resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
1958
+
1959
+ osenv@^0.1.4:
1960
+ version "0.1.4"
1961
+ resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644"
1962
+ dependencies:
1963
+ os-homedir "^1.0.0"
1964
+ os-tmpdir "^1.0.0"
1965
+
1966
+ p-finally@^1.0.0:
1967
+ version "1.0.0"
1968
+ resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
1969
+
1970
+ p-limit@^1.1.0:
1971
+ version "1.1.0"
1972
+ resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc"
1973
+
1974
+ p-locate@^2.0.0:
1975
+ version "2.0.0"
1976
+ resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
1977
+ dependencies:
1978
+ p-limit "^1.1.0"
1979
+
1980
+ p-map@^1.1.1:
1981
+ version "1.2.0"
1982
+ resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.2.0.tgz#e4e94f311eabbc8633a1e79908165fca26241b6b"
1983
+
1984
+ pako@~1.0.5:
1985
+ version "1.0.6"
1986
+ resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.6.tgz#0101211baa70c4bca4a0f63f2206e97b7dfaf258"
1987
+
1988
+ parse-asn1@^5.0.0:
1989
+ version "5.1.0"
1990
+ resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712"
1991
+ dependencies:
1992
+ asn1.js "^4.0.0"
1993
+ browserify-aes "^1.0.0"
1994
+ create-hash "^1.1.0"
1995
+ evp_bytestokey "^1.0.0"
1996
+ pbkdf2 "^3.0.3"
1997
+
1998
+ parse-glob@^3.0.4:
1999
+ version "3.0.4"
2000
+ resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
2001
+ dependencies:
2002
+ glob-base "^0.3.0"
2003
+ is-dotfile "^1.0.0"
2004
+ is-extglob "^1.0.0"
2005
+ is-glob "^2.0.0"
2006
+
2007
+ parse-json@^2.2.0:
2008
+ version "2.2.0"
2009
+ resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
2010
+ dependencies:
2011
+ error-ex "^1.2.0"
2012
+
2013
+ parseurl@~1.3.2:
2014
+ version "1.3.2"
2015
+ resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.2.tgz#fc289d4ed8993119460c156253262cdc8de65bf3"
2016
+
2017
+ path-browserify@0.0.0:
2018
+ version "0.0.0"
2019
+ resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a"
2020
+
2021
+ path-exists@^2.0.0:
2022
+ version "2.1.0"
2023
+ resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
2024
+ dependencies:
2025
+ pinkie-promise "^2.0.0"
2026
+
2027
+ path-exists@^3.0.0:
2028
+ version "3.0.0"
2029
+ resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
2030
+
2031
+ path-is-absolute@^1.0.0:
2032
+ version "1.0.1"
2033
+ resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
2034
+
2035
+ path-is-inside@^1.0.1:
2036
+ version "1.0.2"
2037
+ resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53"
2038
+
2039
+ path-key@^2.0.0:
2040
+ version "2.0.1"
2041
+ resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
2042
+
2043
+ path-to-regexp@0.1.7:
2044
+ version "0.1.7"
2045
+ resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c"
2046
+
2047
+ path-type@^1.0.0:
2048
+ version "1.1.0"
2049
+ resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441"
2050
+ dependencies:
2051
+ graceful-fs "^4.1.2"
2052
+ pify "^2.0.0"
2053
+ pinkie-promise "^2.0.0"
2054
+
2055
+ path-type@^2.0.0:
2056
+ version "2.0.0"
2057
+ resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73"
2058
+ dependencies:
2059
+ pify "^2.0.0"
2060
+
2061
+ pbkdf2@^3.0.3:
2062
+ version "3.0.14"
2063
+ resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.14.tgz#a35e13c64799b06ce15320f459c230e68e73bade"
2064
+ dependencies:
2065
+ create-hash "^1.1.2"
2066
+ create-hmac "^1.1.4"
2067
+ ripemd160 "^2.0.1"
2068
+ safe-buffer "^5.0.1"
2069
+ sha.js "^2.4.8"
2070
+
2071
+ performance-now@^0.2.0:
2072
+ version "0.2.0"
2073
+ resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5"
2074
+
2075
+ pify@^2.0.0:
2076
+ version "2.3.0"
2077
+ resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
2078
+
2079
+ pify@^3.0.0:
2080
+ version "3.0.0"
2081
+ resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
2082
+
2083
+ pinkie-promise@^2.0.0:
2084
+ version "2.0.1"
2085
+ resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
2086
+ dependencies:
2087
+ pinkie "^2.0.0"
2088
+
2089
+ pinkie@^2.0.0:
2090
+ version "2.0.4"
2091
+ resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
2092
+
2093
+ pkg-dir@^2.0.0:
2094
+ version "2.0.0"
2095
+ resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b"
2096
+ dependencies:
2097
+ find-up "^2.1.0"
2098
+
2099
+ portfinder@^1.0.9:
2100
+ version "1.0.13"
2101
+ resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.13.tgz#bb32ecd87c27104ae6ee44b5a3ccbf0ebb1aede9"
2102
+ dependencies:
2103
+ async "^1.5.2"
2104
+ debug "^2.2.0"
2105
+ mkdirp "0.5.x"
2106
+
2107
+ preserve@^0.2.0:
2108
+ version "0.2.0"
2109
+ resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
2110
+
2111
+ process-nextick-args@~1.0.6:
2112
+ version "1.0.7"
2113
+ resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
2114
+
2115
+ process@^0.11.10:
2116
+ version "0.11.10"
2117
+ resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
2118
+
2119
+ proxy-addr@~2.0.2:
2120
+ version "2.0.2"
2121
+ resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.2.tgz#6571504f47bb988ec8180253f85dd7e14952bdec"
2122
+ dependencies:
2123
+ forwarded "~0.1.2"
2124
+ ipaddr.js "1.5.2"
2125
+
2126
+ prr@~1.0.1:
2127
+ version "1.0.1"
2128
+ resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476"
2129
+
2130
+ pseudomap@^1.0.2:
2131
+ version "1.0.2"
2132
+ resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
2133
+
2134
+ public-encrypt@^4.0.0:
2135
+ version "4.0.0"
2136
+ resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6"
2137
+ dependencies:
2138
+ bn.js "^4.1.0"
2139
+ browserify-rsa "^4.0.0"
2140
+ create-hash "^1.1.0"
2141
+ parse-asn1 "^5.0.0"
2142
+ randombytes "^2.0.1"
2143
+
2144
+ punycode@1.3.2:
2145
+ version "1.3.2"
2146
+ resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d"
2147
+
2148
+ punycode@^1.2.4, punycode@^1.4.1:
2149
+ version "1.4.1"
2150
+ resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
2151
+
2152
+ qs@6.5.1:
2153
+ version "6.5.1"
2154
+ resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8"
2155
+
2156
+ qs@~6.4.0:
2157
+ version "6.4.0"
2158
+ resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233"
2159
+
2160
+ querystring-es3@^0.2.0:
2161
+ version "0.2.1"
2162
+ resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73"
2163
+
2164
+ querystring@0.2.0:
2165
+ version "0.2.0"
2166
+ resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620"
2167
+
2168
+ querystringify@0.0.x:
2169
+ version "0.0.4"
2170
+ resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-0.0.4.tgz#0cf7f84f9463ff0ae51c4c4b142d95be37724d9c"
2171
+
2172
+ querystringify@~1.0.0:
2173
+ version "1.0.0"
2174
+ resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-1.0.0.tgz#6286242112c5b712fa654e526652bf6a13ff05cb"
2175
+
2176
+ randomatic@^1.1.3:
2177
+ version "1.1.7"
2178
+ resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c"
2179
+ dependencies:
2180
+ is-number "^3.0.0"
2181
+ kind-of "^4.0.0"
2182
+
2183
+ randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5:
2184
+ version "2.0.5"
2185
+ resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.5.tgz#dc009a246b8d09a177b4b7a0ae77bc570f4b1b79"
2186
+ dependencies:
2187
+ safe-buffer "^5.1.0"
2188
+
2189
+ randomfill@^1.0.3:
2190
+ version "1.0.3"
2191
+ resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.3.tgz#b96b7df587f01dd91726c418f30553b1418e3d62"
2192
+ dependencies:
2193
+ randombytes "^2.0.5"
2194
+ safe-buffer "^5.1.0"
2195
+
2196
+ range-parser@^1.0.3, range-parser@~1.2.0:
2197
+ version "1.2.0"
2198
+ resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e"
2199
+
2200
+ raw-body@2.3.2:
2201
+ version "2.3.2"
2202
+ resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.3.2.tgz#bcd60c77d3eb93cde0050295c3f379389bc88f89"
2203
+ dependencies:
2204
+ bytes "3.0.0"
2205
+ http-errors "1.6.2"
2206
+ iconv-lite "0.4.19"
2207
+ unpipe "1.0.0"
2208
+
2209
+ rc@^1.1.7:
2210
+ version "1.2.2"
2211
+ resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.2.tgz#d8ce9cb57e8d64d9c7badd9876c7c34cbe3c7077"
2212
+ dependencies:
2213
+ deep-extend "~0.4.0"
2214
+ ini "~1.3.0"
2215
+ minimist "^1.2.0"
2216
+ strip-json-comments "~2.0.1"
2217
+
2218
+ read-pkg-up@^1.0.1:
2219
+ version "1.0.1"
2220
+ resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02"
2221
+ dependencies:
2222
+ find-up "^1.0.0"
2223
+ read-pkg "^1.0.0"
2224
+
2225
+ read-pkg-up@^2.0.0:
2226
+ version "2.0.0"
2227
+ resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be"
2228
+ dependencies:
2229
+ find-up "^2.0.0"
2230
+ read-pkg "^2.0.0"
2231
+
2232
+ read-pkg@^1.0.0:
2233
+ version "1.1.0"
2234
+ resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"
2235
+ dependencies:
2236
+ load-json-file "^1.0.0"
2237
+ normalize-package-data "^2.3.2"
2238
+ path-type "^1.0.0"
2239
+
2240
+ read-pkg@^2.0.0:
2241
+ version "2.0.0"
2242
+ resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8"
2243
+ dependencies:
2244
+ load-json-file "^2.0.0"
2245
+ normalize-package-data "^2.3.2"
2246
+ path-type "^2.0.0"
2247
+
2248
+ readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.6, readable-stream@^2.2.9, readable-stream@^2.3.3:
2249
+ version "2.3.3"
2250
+ resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c"
2251
+ dependencies:
2252
+ core-util-is "~1.0.0"
2253
+ inherits "~2.0.3"
2254
+ isarray "~1.0.0"
2255
+ process-nextick-args "~1.0.6"
2256
+ safe-buffer "~5.1.1"
2257
+ string_decoder "~1.0.3"
2258
+ util-deprecate "~1.0.1"
2259
+
2260
+ readdirp@^2.0.0:
2261
+ version "2.1.0"
2262
+ resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78"
2263
+ dependencies:
2264
+ graceful-fs "^4.1.2"
2265
+ minimatch "^3.0.2"
2266
+ readable-stream "^2.0.2"
2267
+ set-immediate-shim "^1.0.1"
2268
+
2269
+ redent@^1.0.0:
2270
+ version "1.0.0"
2271
+ resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde"
2272
+ dependencies:
2273
+ indent-string "^2.1.0"
2274
+ strip-indent "^1.0.1"
2275
+
2276
+ regex-cache@^0.4.2:
2277
+ version "0.4.4"
2278
+ resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd"
2279
+ dependencies:
2280
+ is-equal-shallow "^0.1.3"
2281
+
2282
+ remove-trailing-separator@^1.0.1:
2283
+ version "1.1.0"
2284
+ resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
2285
+
2286
+ repeat-element@^1.1.2:
2287
+ version "1.1.2"
2288
+ resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a"
2289
+
2290
+ repeat-string@^1.5.2:
2291
+ version "1.6.1"
2292
+ resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
2293
+
2294
+ repeating@^2.0.0:
2295
+ version "2.0.1"
2296
+ resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda"
2297
+ dependencies:
2298
+ is-finite "^1.0.0"
2299
+
2300
+ request@2.81.0:
2301
+ version "2.81.0"
2302
+ resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0"
2303
+ dependencies:
2304
+ aws-sign2 "~0.6.0"
2305
+ aws4 "^1.2.1"
2306
+ caseless "~0.12.0"
2307
+ combined-stream "~1.0.5"
2308
+ extend "~3.0.0"
2309
+ forever-agent "~0.6.1"
2310
+ form-data "~2.1.1"
2311
+ har-validator "~4.2.1"
2312
+ hawk "~3.1.3"
2313
+ http-signature "~1.1.0"
2314
+ is-typedarray "~1.0.0"
2315
+ isstream "~0.1.2"
2316
+ json-stringify-safe "~5.0.1"
2317
+ mime-types "~2.1.7"
2318
+ oauth-sign "~0.8.1"
2319
+ performance-now "^0.2.0"
2320
+ qs "~6.4.0"
2321
+ safe-buffer "^5.0.1"
2322
+ stringstream "~0.0.4"
2323
+ tough-cookie "~2.3.0"
2324
+ tunnel-agent "^0.6.0"
2325
+ uuid "^3.0.0"
2326
+
2327
+ require-directory@^2.1.1:
2328
+ version "2.1.1"
2329
+ resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
2330
+
2331
+ require-main-filename@^1.0.1:
2332
+ version "1.0.1"
2333
+ resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
2334
+
2335
+ requires-port@1.0.x, requires-port@1.x.x, requires-port@~1.0.0:
2336
+ version "1.0.0"
2337
+ resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff"
2338
+
2339
+ resolve-cwd@^2.0.0:
2340
+ version "2.0.0"
2341
+ resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a"
2342
+ dependencies:
2343
+ resolve-from "^3.0.0"
2344
+
2345
+ resolve-from@^3.0.0:
2346
+ version "3.0.0"
2347
+ resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748"
2348
+
2349
+ right-align@^0.1.1:
2350
+ version "0.1.3"
2351
+ resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef"
2352
+ dependencies:
2353
+ align-text "^0.1.1"
2354
+
2355
+ rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1:
2356
+ version "2.6.2"
2357
+ resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36"
2358
+ dependencies:
2359
+ glob "^7.0.5"
2360
+
2361
+ ripemd160@^2.0.0, ripemd160@^2.0.1:
2362
+ version "2.0.1"
2363
+ resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.1.tgz#0f4584295c53a3628af7e6d79aca21ce57d1c6e7"
2364
+ dependencies:
2365
+ hash-base "^2.0.0"
2366
+ inherits "^2.0.1"
2367
+
2368
+ 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:
2369
+ version "5.1.1"
2370
+ resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853"
2371
+
2372
+ select-hose@^2.0.0:
2373
+ version "2.0.0"
2374
+ resolved "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca"
2375
+
2376
+ selfsigned@^1.9.1:
2377
+ version "1.10.1"
2378
+ resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-1.10.1.tgz#bf8cb7b83256c4551e31347c6311778db99eec52"
2379
+ dependencies:
2380
+ node-forge "0.6.33"
2381
+
2382
+ "semver@2 || 3 || 4 || 5", semver@^5.3.0:
2383
+ version "5.4.1"
2384
+ resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e"
2385
+
2386
+ send@0.16.1:
2387
+ version "0.16.1"
2388
+ resolved "https://registry.yarnpkg.com/send/-/send-0.16.1.tgz#a70e1ca21d1382c11d0d9f6231deb281080d7ab3"
2389
+ dependencies:
2390
+ debug "2.6.9"
2391
+ depd "~1.1.1"
2392
+ destroy "~1.0.4"
2393
+ encodeurl "~1.0.1"
2394
+ escape-html "~1.0.3"
2395
+ etag "~1.8.1"
2396
+ fresh "0.5.2"
2397
+ http-errors "~1.6.2"
2398
+ mime "1.4.1"
2399
+ ms "2.0.0"
2400
+ on-finished "~2.3.0"
2401
+ range-parser "~1.2.0"
2402
+ statuses "~1.3.1"
2403
+
2404
+ serve-index@^1.7.2:
2405
+ version "1.9.1"
2406
+ resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239"
2407
+ dependencies:
2408
+ accepts "~1.3.4"
2409
+ batch "0.6.1"
2410
+ debug "2.6.9"
2411
+ escape-html "~1.0.3"
2412
+ http-errors "~1.6.2"
2413
+ mime-types "~2.1.17"
2414
+ parseurl "~1.3.2"
2415
+
2416
+ serve-static@1.13.1:
2417
+ version "1.13.1"
2418
+ resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.13.1.tgz#4c57d53404a761d8f2e7c1e8a18a47dbf278a719"
2419
+ dependencies:
2420
+ encodeurl "~1.0.1"
2421
+ escape-html "~1.0.3"
2422
+ parseurl "~1.3.2"
2423
+ send "0.16.1"
2424
+
2425
+ set-blocking@^2.0.0, set-blocking@~2.0.0:
2426
+ version "2.0.0"
2427
+ resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
2428
+
2429
+ set-immediate-shim@^1.0.1:
2430
+ version "1.0.1"
2431
+ resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61"
2432
+
2433
+ setimmediate@^1.0.4:
2434
+ version "1.0.5"
2435
+ resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
2436
+
2437
+ setprototypeof@1.0.3:
2438
+ version "1.0.3"
2439
+ resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04"
2440
+
2441
+ setprototypeof@1.1.0:
2442
+ version "1.1.0"
2443
+ resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656"
2444
+
2445
+ sha.js@^2.4.0, sha.js@^2.4.8:
2446
+ version "2.4.9"
2447
+ resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.9.tgz#98f64880474b74f4a38b8da9d3c0f2d104633e7d"
2448
+ dependencies:
2449
+ inherits "^2.0.1"
2450
+ safe-buffer "^5.0.1"
2451
+
2452
+ shebang-command@^1.2.0:
2453
+ version "1.2.0"
2454
+ resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
2455
+ dependencies:
2456
+ shebang-regex "^1.0.0"
2457
+
2458
+ shebang-regex@^1.0.0:
2459
+ version "1.0.0"
2460
+ resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
2461
+
2462
+ signal-exit@^3.0.0:
2463
+ version "3.0.2"
2464
+ resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
2465
+
2466
+ sntp@1.x.x:
2467
+ version "1.0.9"
2468
+ resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198"
2469
+ dependencies:
2470
+ hoek "2.x.x"
2471
+
2472
+ sockjs-client@1.1.4:
2473
+ version "1.1.4"
2474
+ resolved "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.1.4.tgz#5babe386b775e4cf14e7520911452654016c8b12"
2475
+ dependencies:
2476
+ debug "^2.6.6"
2477
+ eventsource "0.1.6"
2478
+ faye-websocket "~0.11.0"
2479
+ inherits "^2.0.1"
2480
+ json3 "^3.3.2"
2481
+ url-parse "^1.1.8"
2482
+
2483
+ sockjs@0.3.18:
2484
+ version "0.3.18"
2485
+ resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.18.tgz#d9b289316ca7df77595ef299e075f0f937eb4207"
2486
+ dependencies:
2487
+ faye-websocket "^0.10.0"
2488
+ uuid "^2.0.2"
2489
+
2490
+ source-list-map@^2.0.0:
2491
+ version "2.0.0"
2492
+ resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.0.tgz#aaa47403f7b245a92fbc97ea08f250d6087ed085"
2493
+
2494
+ source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1:
2495
+ version "0.5.7"
2496
+ resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
2497
+
2498
+ source-map@~0.6.1:
2499
+ version "0.6.1"
2500
+ resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
2501
+
2502
+ spdx-correct@~1.0.0:
2503
+ version "1.0.2"
2504
+ resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40"
2505
+ dependencies:
2506
+ spdx-license-ids "^1.0.2"
2507
+
2508
+ spdx-expression-parse@~1.0.0:
2509
+ version "1.0.4"
2510
+ resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c"
2511
+
2512
+ spdx-license-ids@^1.0.2:
2513
+ version "1.2.2"
2514
+ resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57"
2515
+
2516
+ spdy-transport@^2.0.18:
2517
+ version "2.0.20"
2518
+ resolved "https://registry.yarnpkg.com/spdy-transport/-/spdy-transport-2.0.20.tgz#735e72054c486b2354fe89e702256004a39ace4d"
2519
+ dependencies:
2520
+ debug "^2.6.8"
2521
+ detect-node "^2.0.3"
2522
+ hpack.js "^2.1.6"
2523
+ obuf "^1.1.1"
2524
+ readable-stream "^2.2.9"
2525
+ safe-buffer "^5.0.1"
2526
+ wbuf "^1.7.2"
2527
+
2528
+ spdy@^3.4.1:
2529
+ version "3.4.7"
2530
+ resolved "https://registry.yarnpkg.com/spdy/-/spdy-3.4.7.tgz#42ff41ece5cc0f99a3a6c28aabb73f5c3b03acbc"
2531
+ dependencies:
2532
+ debug "^2.6.8"
2533
+ handle-thing "^1.2.5"
2534
+ http-deceiver "^1.2.7"
2535
+ safe-buffer "^5.0.1"
2536
+ select-hose "^2.0.0"
2537
+ spdy-transport "^2.0.18"
2538
+
2539
+ sshpk@^1.7.0:
2540
+ version "1.13.1"
2541
+ resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3"
2542
+ dependencies:
2543
+ asn1 "~0.2.3"
2544
+ assert-plus "^1.0.0"
2545
+ dashdash "^1.12.0"
2546
+ getpass "^0.1.1"
2547
+ optionalDependencies:
2548
+ bcrypt-pbkdf "^1.0.0"
2549
+ ecc-jsbn "~0.1.1"
2550
+ jsbn "~0.1.0"
2551
+ tweetnacl "~0.14.0"
2552
+
2553
+ "statuses@>= 1.3.1 < 2":
2554
+ version "1.4.0"
2555
+ resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.4.0.tgz#bb73d446da2796106efcc1b601a253d6c46bd087"
2556
+
2557
+ statuses@~1.3.1:
2558
+ version "1.3.1"
2559
+ resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e"
2560
+
2561
+ stream-browserify@^2.0.1:
2562
+ version "2.0.1"
2563
+ resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db"
2564
+ dependencies:
2565
+ inherits "~2.0.1"
2566
+ readable-stream "^2.0.2"
2567
+
2568
+ stream-http@^2.7.2:
2569
+ version "2.7.2"
2570
+ resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.7.2.tgz#40a050ec8dc3b53b33d9909415c02c0bf1abfbad"
2571
+ dependencies:
2572
+ builtin-status-codes "^3.0.0"
2573
+ inherits "^2.0.1"
2574
+ readable-stream "^2.2.6"
2575
+ to-arraybuffer "^1.0.0"
2576
+ xtend "^4.0.0"
2577
+
2578
+ string-width@^1.0.1, string-width@^1.0.2:
2579
+ version "1.0.2"
2580
+ resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
2581
+ dependencies:
2582
+ code-point-at "^1.0.0"
2583
+ is-fullwidth-code-point "^1.0.0"
2584
+ strip-ansi "^3.0.0"
2585
+
2586
+ string-width@^2.0.0:
2587
+ version "2.1.1"
2588
+ resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
2589
+ dependencies:
2590
+ is-fullwidth-code-point "^2.0.0"
2591
+ strip-ansi "^4.0.0"
2592
+
2593
+ string_decoder@^1.0.0, string_decoder@~1.0.3:
2594
+ version "1.0.3"
2595
+ resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab"
2596
+ dependencies:
2597
+ safe-buffer "~5.1.0"
2598
+
2599
+ stringstream@~0.0.4:
2600
+ version "0.0.5"
2601
+ resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878"
2602
+
2603
+ strip-ansi@^3.0.0, strip-ansi@^3.0.1:
2604
+ version "3.0.1"
2605
+ resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
2606
+ dependencies:
2607
+ ansi-regex "^2.0.0"
2608
+
2609
+ strip-ansi@^4.0.0:
2610
+ version "4.0.0"
2611
+ resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
2612
+ dependencies:
2613
+ ansi-regex "^3.0.0"
2614
+
2615
+ strip-bom@^2.0.0:
2616
+ version "2.0.0"
2617
+ resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e"
2618
+ dependencies:
2619
+ is-utf8 "^0.2.0"
2620
+
2621
+ strip-bom@^3.0.0:
2622
+ version "3.0.0"
2623
+ resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
2624
+
2625
+ strip-eof@^1.0.0:
2626
+ version "1.0.0"
2627
+ resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
2628
+
2629
+ strip-indent@^1.0.1:
2630
+ version "1.0.1"
2631
+ resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2"
2632
+ dependencies:
2633
+ get-stdin "^4.0.1"
2634
+
2635
+ strip-json-comments@~2.0.1:
2636
+ version "2.0.1"
2637
+ resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
2638
+
2639
+ supports-color@^4.2.1:
2640
+ version "4.5.0"
2641
+ resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b"
2642
+ dependencies:
2643
+ has-flag "^2.0.0"
2644
+
2645
+ tapable@^0.2.7:
2646
+ version "0.2.8"
2647
+ resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.8.tgz#99372a5c999bf2df160afc0d74bed4f47948cd22"
2648
+
2649
+ tar-pack@^3.4.0:
2650
+ version "3.4.1"
2651
+ resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f"
2652
+ dependencies:
2653
+ debug "^2.2.0"
2654
+ fstream "^1.0.10"
2655
+ fstream-ignore "^1.0.5"
2656
+ once "^1.3.3"
2657
+ readable-stream "^2.1.4"
2658
+ rimraf "^2.5.1"
2659
+ tar "^2.2.1"
2660
+ uid-number "^0.0.6"
2661
+
2662
+ tar@^2.2.1:
2663
+ version "2.2.1"
2664
+ resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1"
2665
+ dependencies:
2666
+ block-stream "*"
2667
+ fstream "^1.0.2"
2668
+ inherits "2"
2669
+
2670
+ thunky@^0.1.0:
2671
+ version "0.1.0"
2672
+ resolved "https://registry.yarnpkg.com/thunky/-/thunky-0.1.0.tgz#bf30146824e2b6e67b0f2d7a4ac8beb26908684e"
2673
+
2674
+ time-stamp@^2.0.0:
2675
+ version "2.0.0"
2676
+ resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-2.0.0.tgz#95c6a44530e15ba8d6f4a3ecb8c3a3fac46da357"
2677
+
2678
+ timers-browserify@^2.0.4:
2679
+ version "2.0.4"
2680
+ resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.4.tgz#96ca53f4b794a5e7c0e1bd7cc88a372298fa01e6"
2681
+ dependencies:
2682
+ setimmediate "^1.0.4"
2683
+
2684
+ to-arraybuffer@^1.0.0:
2685
+ version "1.0.1"
2686
+ resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43"
2687
+
2688
+ tough-cookie@~2.3.0:
2689
+ version "2.3.3"
2690
+ resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561"
2691
+ dependencies:
2692
+ punycode "^1.4.1"
2693
+
2694
+ trim-newlines@^1.0.0:
2695
+ version "1.0.0"
2696
+ resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613"
2697
+
2698
+ tty-browserify@0.0.0:
2699
+ version "0.0.0"
2700
+ resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6"
2701
+
2702
+ tunnel-agent@^0.6.0:
2703
+ version "0.6.0"
2704
+ resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
2705
+ dependencies:
2706
+ safe-buffer "^5.0.1"
2707
+
2708
+ tweetnacl@^0.14.3, tweetnacl@~0.14.0:
2709
+ version "0.14.5"
2710
+ resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
2711
+
2712
+ type-is@~1.6.15:
2713
+ version "1.6.15"
2714
+ resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.15.tgz#cab10fb4909e441c82842eafe1ad646c81804410"
2715
+ dependencies:
2716
+ media-typer "0.3.0"
2717
+ mime-types "~2.1.15"
2718
+
2719
+ uglify-js@^2.8.29:
2720
+ version "2.8.29"
2721
+ resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd"
2722
+ dependencies:
2723
+ source-map "~0.5.1"
2724
+ yargs "~3.10.0"
2725
+ optionalDependencies:
2726
+ uglify-to-browserify "~1.0.0"
2727
+
2728
+ uglify-to-browserify@~1.0.0:
2729
+ version "1.0.2"
2730
+ resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7"
2731
+
2732
+ uglifyjs-webpack-plugin@^0.4.6:
2733
+ version "0.4.6"
2734
+ resolved "https://registry.yarnpkg.com/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.6.tgz#b951f4abb6bd617e66f63eb891498e391763e309"
2735
+ dependencies:
2736
+ source-map "^0.5.6"
2737
+ uglify-js "^2.8.29"
2738
+ webpack-sources "^1.0.1"
2739
+
2740
+ uid-number@^0.0.6:
2741
+ version "0.0.6"
2742
+ resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81"
2743
+
2744
+ unpipe@1.0.0, unpipe@~1.0.0:
2745
+ version "1.0.0"
2746
+ resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
2747
+
2748
+ url-parse@1.0.x:
2749
+ version "1.0.5"
2750
+ resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.0.5.tgz#0854860422afdcfefeb6c965c662d4800169927b"
2751
+ dependencies:
2752
+ querystringify "0.0.x"
2753
+ requires-port "1.0.x"
2754
+
2755
+ url-parse@^1.1.8:
2756
+ version "1.2.0"
2757
+ resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.2.0.tgz#3a19e8aaa6d023ddd27dcc44cb4fc8f7fec23986"
2758
+ dependencies:
2759
+ querystringify "~1.0.0"
2760
+ requires-port "~1.0.0"
2761
+
2762
+ url@^0.11.0:
2763
+ version "0.11.0"
2764
+ resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"
2765
+ dependencies:
2766
+ punycode "1.3.2"
2767
+ querystring "0.2.0"
2768
+
2769
+ util-deprecate@~1.0.1:
2770
+ version "1.0.2"
2771
+ resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
2772
+
2773
+ util@0.10.3, util@^0.10.3:
2774
+ version "0.10.3"
2775
+ resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9"
2776
+ dependencies:
2777
+ inherits "2.0.1"
2778
+
2779
+ utils-merge@1.0.1:
2780
+ version "1.0.1"
2781
+ resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"
2782
+
2783
+ uuid@^2.0.2:
2784
+ version "2.0.3"
2785
+ resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a"
2786
+
2787
+ uuid@^3.0.0:
2788
+ version "3.1.0"
2789
+ resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04"
2790
+
2791
+ validate-npm-package-license@^3.0.1:
2792
+ version "3.0.1"
2793
+ resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc"
2794
+ dependencies:
2795
+ spdx-correct "~1.0.0"
2796
+ spdx-expression-parse "~1.0.0"
2797
+
2798
+ vary@~1.1.2:
2799
+ version "1.1.2"
2800
+ resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"
2801
+
2802
+ verror@1.10.0:
2803
+ version "1.10.0"
2804
+ resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400"
2805
+ dependencies:
2806
+ assert-plus "^1.0.0"
2807
+ core-util-is "1.0.2"
2808
+ extsprintf "^1.2.0"
2809
+
2810
+ vm-browserify@0.0.4:
2811
+ version "0.0.4"
2812
+ resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73"
2813
+ dependencies:
2814
+ indexof "0.0.1"
2815
+
2816
+ watchpack@^1.4.0:
2817
+ version "1.4.0"
2818
+ resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.4.0.tgz#4a1472bcbb952bd0a9bb4036801f954dfb39faac"
2819
+ dependencies:
2820
+ async "^2.1.2"
2821
+ chokidar "^1.7.0"
2822
+ graceful-fs "^4.1.2"
2823
+
2824
+ wbuf@^1.1.0, wbuf@^1.7.2:
2825
+ version "1.7.2"
2826
+ resolved "https://registry.yarnpkg.com/wbuf/-/wbuf-1.7.2.tgz#d697b99f1f59512df2751be42769c1580b5801fe"
2827
+ dependencies:
2828
+ minimalistic-assert "^1.0.0"
2829
+
2830
+ webpack-dev-middleware@^1.11.0:
2831
+ version "1.12.2"
2832
+ resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-1.12.2.tgz#f8fc1120ce3b4fc5680ceecb43d777966b21105e"
2833
+ dependencies:
2834
+ memory-fs "~0.4.1"
2835
+ mime "^1.5.0"
2836
+ path-is-absolute "^1.0.0"
2837
+ range-parser "^1.0.3"
2838
+ time-stamp "^2.0.0"
2839
+
2840
+ webpack-dev-server@^2.5.1:
2841
+ version "2.9.7"
2842
+ resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-2.9.7.tgz#100ad6a14775478924d417ca6dcfb9d52a98faed"
2843
+ dependencies:
2844
+ ansi-html "0.0.7"
2845
+ array-includes "^3.0.3"
2846
+ bonjour "^3.5.0"
2847
+ chokidar "^1.6.0"
2848
+ compression "^1.5.2"
2849
+ connect-history-api-fallback "^1.3.0"
2850
+ debug "^3.1.0"
2851
+ del "^3.0.0"
2852
+ express "^4.16.2"
2853
+ html-entities "^1.2.0"
2854
+ http-proxy-middleware "~0.17.4"
2855
+ import-local "^0.1.1"
2856
+ internal-ip "1.2.0"
2857
+ ip "^1.1.5"
2858
+ killable "^1.0.0"
2859
+ loglevel "^1.4.1"
2860
+ opn "^5.1.0"
2861
+ portfinder "^1.0.9"
2862
+ selfsigned "^1.9.1"
2863
+ serve-index "^1.7.2"
2864
+ sockjs "0.3.18"
2865
+ sockjs-client "1.1.4"
2866
+ spdy "^3.4.1"
2867
+ strip-ansi "^3.0.1"
2868
+ supports-color "^4.2.1"
2869
+ webpack-dev-middleware "^1.11.0"
2870
+ yargs "^6.6.0"
2871
+
2872
+ webpack-manifest-plugin@^1.3.2:
2873
+ version "1.3.2"
2874
+ resolved "https://registry.yarnpkg.com/webpack-manifest-plugin/-/webpack-manifest-plugin-1.3.2.tgz#5ea8ee5756359ddc1d98814324fe43496349a7d4"
2875
+ dependencies:
2876
+ fs-extra "^0.30.0"
2877
+ lodash ">=3.5 <5"
2878
+
2879
+ webpack-sources@^1.0.1:
2880
+ version "1.1.0"
2881
+ resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.1.0.tgz#a101ebae59d6507354d71d8013950a3a8b7a5a54"
2882
+ dependencies:
2883
+ source-list-map "^2.0.0"
2884
+ source-map "~0.6.1"
2885
+
2886
+ webpack@^3.3.0:
2887
+ version "3.10.0"
2888
+ resolved "https://registry.yarnpkg.com/webpack/-/webpack-3.10.0.tgz#5291b875078cf2abf42bdd23afe3f8f96c17d725"
2889
+ dependencies:
2890
+ acorn "^5.0.0"
2891
+ acorn-dynamic-import "^2.0.0"
2892
+ ajv "^5.1.5"
2893
+ ajv-keywords "^2.0.0"
2894
+ async "^2.1.2"
2895
+ enhanced-resolve "^3.4.0"
2896
+ escope "^3.6.0"
2897
+ interpret "^1.0.0"
2898
+ json-loader "^0.5.4"
2899
+ json5 "^0.5.1"
2900
+ loader-runner "^2.3.0"
2901
+ loader-utils "^1.1.0"
2902
+ memory-fs "~0.4.1"
2903
+ mkdirp "~0.5.0"
2904
+ node-libs-browser "^2.0.0"
2905
+ source-map "^0.5.3"
2906
+ supports-color "^4.2.1"
2907
+ tapable "^0.2.7"
2908
+ uglifyjs-webpack-plugin "^0.4.6"
2909
+ watchpack "^1.4.0"
2910
+ webpack-sources "^1.0.1"
2911
+ yargs "^8.0.2"
2912
+
2913
+ websocket-driver@>=0.5.1:
2914
+ version "0.7.0"
2915
+ resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.0.tgz#0caf9d2d755d93aee049d4bdd0d3fe2cca2a24eb"
2916
+ dependencies:
2917
+ http-parser-js ">=0.4.0"
2918
+ websocket-extensions ">=0.1.1"
2919
+
2920
+ websocket-extensions@>=0.1.1:
2921
+ version "0.1.3"
2922
+ resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.3.tgz#5d2ff22977003ec687a4b87073dfbbac146ccf29"
2923
+
2924
+ which-module@^1.0.0:
2925
+ version "1.0.0"
2926
+ resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f"
2927
+
2928
+ which-module@^2.0.0:
2929
+ version "2.0.0"
2930
+ resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
2931
+
2932
+ which@^1.2.9:
2933
+ version "1.3.0"
2934
+ resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a"
2935
+ dependencies:
2936
+ isexe "^2.0.0"
2937
+
2938
+ wide-align@^1.1.0:
2939
+ version "1.1.2"
2940
+ resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710"
2941
+ dependencies:
2942
+ string-width "^1.0.2"
2943
+
2944
+ window-size@0.1.0:
2945
+ version "0.1.0"
2946
+ resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"
2947
+
2948
+ wordwrap@0.0.2:
2949
+ version "0.0.2"
2950
+ resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f"
2951
+
2952
+ wrap-ansi@^2.0.0:
2953
+ version "2.1.0"
2954
+ resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85"
2955
+ dependencies:
2956
+ string-width "^1.0.1"
2957
+ strip-ansi "^3.0.1"
2958
+
2959
+ wrappy@1:
2960
+ version "1.0.2"
2961
+ resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
2962
+
2963
+ xtend@^4.0.0:
2964
+ version "4.0.1"
2965
+ resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
2966
+
2967
+ y18n@^3.2.1:
2968
+ version "3.2.1"
2969
+ resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41"
2970
+
2971
+ yallist@^2.1.2:
2972
+ version "2.1.2"
2973
+ resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
2974
+
2975
+ yargs-parser@^4.2.0:
2976
+ version "4.2.1"
2977
+ resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c"
2978
+ dependencies:
2979
+ camelcase "^3.0.0"
2980
+
2981
+ yargs-parser@^7.0.0:
2982
+ version "7.0.0"
2983
+ resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9"
2984
+ dependencies:
2985
+ camelcase "^4.1.0"
2986
+
2987
+ yargs@^6.6.0:
2988
+ version "6.6.0"
2989
+ resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208"
2990
+ dependencies:
2991
+ camelcase "^3.0.0"
2992
+ cliui "^3.2.0"
2993
+ decamelize "^1.1.1"
2994
+ get-caller-file "^1.0.1"
2995
+ os-locale "^1.4.0"
2996
+ read-pkg-up "^1.0.1"
2997
+ require-directory "^2.1.1"
2998
+ require-main-filename "^1.0.1"
2999
+ set-blocking "^2.0.0"
3000
+ string-width "^1.0.2"
3001
+ which-module "^1.0.0"
3002
+ y18n "^3.2.1"
3003
+ yargs-parser "^4.2.0"
3004
+
3005
+ yargs@^8.0.2:
3006
+ version "8.0.2"
3007
+ resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360"
3008
+ dependencies:
3009
+ camelcase "^4.1.0"
3010
+ cliui "^3.2.0"
3011
+ decamelize "^1.1.1"
3012
+ get-caller-file "^1.0.1"
3013
+ os-locale "^2.0.0"
3014
+ read-pkg-up "^2.0.0"
3015
+ require-directory "^2.1.1"
3016
+ require-main-filename "^1.0.1"
3017
+ set-blocking "^2.0.0"
3018
+ string-width "^2.0.0"
3019
+ which-module "^2.0.0"
3020
+ y18n "^3.2.1"
3021
+ yargs-parser "^7.0.0"
3022
+
3023
+ yargs@~3.10.0:
3024
+ version "3.10.0"
3025
+ resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"
3026
+ dependencies:
3027
+ camelcase "^1.0.2"
3028
+ cliui "^2.1.0"
3029
+ decamelize "^1.0.0"
3030
+ window-size "0.1.0"