react_on_rails 9.0.1 → 9.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/NEWS.md +1 -0
- data/README.md +9 -16
- data/docs/additional-reading/hot-reloading-rails-development.md +13 -0
- data/docs/basics/generator.md +1 -8
- data/lib/generators/react_on_rails/base_generator.rb +17 -15
- data/lib/generators/react_on_rails/templates/base/base/Procfile.dev +4 -1
- data/lib/generators/react_on_rails/templates/base/base/Procfile.dev-server +3 -1
- data/lib/react_on_rails/version.rb +1 -1
- data/package.json +1 -1
- data/yarn.lock +763 -906
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 99a8b2f4c0cbe8f473d8a2a2f67e1ff446229cf0
|
4
|
+
data.tar.gz: d11ab4fbb2739893e23f6a749b676577451b414e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 92169df1b919e864d136428a46770e509344f87bd752a139ef5a06b73e648486e6cae062afb351be2c5ccbea00f4e641a9f3409d42b05a84cee5f7406c224975
|
7
|
+
data.tar.gz: fa4f253bb24f1bf487af56f8b3c1176b6af09aa77b544966577e4e603056c4090fe40ca63928293b3bc48dcab6ac8e4cadb1e751c3500e876f92cbf0400af5c1
|
data/NEWS.md
CHANGED
@@ -3,6 +3,7 @@
|
|
3
3
|
*We'll keep a history of the news. A few bullets at the top will also show on the [README.md](./README.md).*
|
4
4
|
|
5
5
|
* Always see the [CHANGELOG.md](./CHANGELOG.md) for the latest project changes.
|
6
|
+
* [VERSION 8.1.0](https://rubygems.org/gems/react_on_rails/) shipped with [webpacker_lite](https://github.com/shakacode/webpacker_lite) (soon [**webpacker**](https://github.com/rails/webpacker/issues/464#issuecomment-310986140) support! [react-webpack-rails-tutorial PR #395](https://github.com/shakacode/react-webpack-rails-tutorial/pull/395) shows the changes needed to migrate from the Asset Pipeline to Webpacker Lite. For more information, see my article: [Webpacker Lite: Why Fork Webpacker?](https://blog.shakacode.com/webpacker-lite-why-fork-webpacker-f0a7707fac92). Per recent discussions, we [will merge Webpacker Lite changes back into Webpacker](https://github.com/rails/webpacker/issues/464#issuecomment-310986140). There's no reason to wait for this. The upgrade will eventually be trivial.
|
6
7
|
* 2017-04-25: 7.0.0 Shipped! Performance improvements! Please upgrade! Only "breaking" change is that you have to update both the node module and the Ruby gem.
|
7
8
|
* 2017-04-09: 8.0.0 beta work to include webpacker_lite gem has begun. See [#786](https://github.com/shakacode/react_on_rails/issues/786).
|
8
9
|
* 2017-04-03: 6.9.3 Released! Props rendered in JSON script tag. Page size is smaller now due to less escaping!
|
data/README.md
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
[rails/webpacker](https://github.com/rails/webpacker) just shipped 3.0. This now enables me to ship version 9.0. See [PR #908](https://github.com/shakacode/react_on_rails/pull/908) for more details.
|
6
6
|
# React on Rails v9 is based on Webpacker 3.0!
|
7
7
|
|
8
|
-
* See the article React on Rails
|
8
|
+
* See the article [Introducing React on Rails v9 with Webpacker Support](https://blog.shakacode.com/introducing-react-on-rails-v9-with-webpacker-support-f2584c6c8fa4), for an overview of the integration of React on Rails with Webpacker.
|
9
9
|
* See the updated [Tutorial](https://github.com/shakacode/react_on_rails/blob/master/docs/tutorial.md).
|
10
10
|
* See the [CHANGELOG.md](https://github.com/shakacode/react_on_rails/blob/master/CHANGELOG.md) for migration instructions.
|
11
11
|
|
@@ -24,21 +24,15 @@ Given that Webpacker already provides React integration, why would you add React
|
|
24
24
|
## Steps to a New App with rails/webpacker v3 plus React on Rails v9:
|
25
25
|
First be sure to run `rails -v` and check that you are using Rails 5.1.3 or above. If you are using an older version of Rails, you'll need to install webpacker with React per the instructions [here](https://github.com/rails/webpacker).
|
26
26
|
|
27
|
-
### Basic installation
|
27
|
+
### Basic installation for a new Rails App
|
28
|
+
*See below for steps on an existing Rails app*
|
28
29
|
|
29
|
-
1. New Rails app: `rails new my-app --webpack=react`. `cd` into the directory.
|
30
|
+
1. New Rails app: `rails new my-app --webpack=react`. `cd` into the directory.
|
30
31
|
2. Add gem version: `gem 'react_on_rails', '~> 9.0.1'`
|
31
32
|
3. Run the generator: `rails generate react_on_rails:install`
|
32
|
-
4. Start the app: `
|
33
|
+
4. Start the app: `rails s`
|
33
34
|
5. Visit http://localhost:3000/hello_world
|
34
35
|
|
35
|
-
### Turn on HMR (Hot reloading)
|
36
|
-
|
37
|
-
1. Edit `config/webpacker.yml` and set `hmr: true`
|
38
|
-
2. Start the app: `foreman start -f Procfile.dev-server`
|
39
|
-
3. Visit http://localhost:3000/hello_world
|
40
|
-
4. Edit `app/javascript/bundles/HelloWorld/components/HelloWorld.jsx`, hit save, and see the screen update.
|
41
|
-
|
42
36
|
### Turn on server rendering
|
43
37
|
|
44
38
|
*Does not work with hot reloading, yet, per [Webpacker issue #732](https://github.com/rails/webpacker/issues/732)*
|
@@ -126,7 +120,6 @@ For more testimonials, see [Live Projects](PROJECTS.md) and [Kudos](./KUDOS.md).
|
|
126
120
|
|
127
121
|
# NEWS
|
128
122
|
* 2017-09-06: **VERSION 9.0.0 shipped!** This version depends on Webpacker directly. See the [CHANGELOG.md](https://github.com/shakacode/react_on_rails/blob/master/CHANGELOG.md) for migration instructions.
|
129
|
-
* [VERSION 8.1.0](https://rubygems.org/gems/react_on_rails/) shipped with [webpacker_lite](https://github.com/shakacode/webpacker_lite) (soon [**webpacker**](https://github.com/rails/webpacker/issues/464#issuecomment-310986140) support! [react-webpack-rails-tutorial PR #395](https://github.com/shakacode/react-webpack-rails-tutorial/pull/395) shows the changes needed to migrate from the Asset Pipeline to Webpacker Lite. For more information, see my article: [Webpacker Lite: Why Fork Webpacker?](https://blog.shakacode.com/webpacker-lite-why-fork-webpacker-f0a7707fac92). Per recent discussions, we [will merge Webpacker Lite changes back into Webpacker](https://github.com/rails/webpacker/issues/464#issuecomment-310986140). There's no reason to wait for this. The upgrade will eventually be trivial.
|
130
123
|
* The Docs here on `master` refer to 9.x including support for [rails/webpacker](https://github.com/rails/webpacker).
|
131
124
|
*Use the [7.0.4 docs](https://github.com/shakacode/react_on_rails/tree/7.0.4) to refer to the older asset pipeline way.*
|
132
125
|
* *See [NEWS.md](NEWS.md) for more notes over time.*
|
@@ -135,9 +128,9 @@ For more testimonials, see [Live Projects](PROJECTS.md) and [Kudos](./KUDOS.md).
|
|
135
128
|
|
136
129
|
# React on Rails
|
137
130
|
|
138
|
-
**Project Objective**: To provide an opinionated and optimal framework for integrating Ruby on Rails with
|
131
|
+
**Project Objective**: To provide an opinionated and optimal framework for integrating Ruby on Rails with React via the [**Webpacker**](https://github.com/rails/webpacker) gem.
|
139
132
|
|
140
|
-
React on Rails integrates Facebook's [React](https://github.com/facebook/react) front-end framework with Rails. React v0.14.x and greater is supported, with server rendering. [Redux](https://github.com/reactjs/redux) and [React-Router](https://github.com/reactjs/react-redux) are supported as well, also with server rendering, using **execJS**.
|
133
|
+
React on Rails integrates Facebook's [React](https://github.com/facebook/react) front-end framework with Rails. React v0.14.x and greater is supported, with server rendering. [Redux](https://github.com/reactjs/redux) and [React-Router](https://github.com/reactjs/react-redux) are supported as well, also with server rendering, using **execJS**.
|
141
134
|
|
142
135
|
## Table of Contents
|
143
136
|
|
@@ -188,9 +181,9 @@ Universal React with Rails: Part I](https://medium.com/@alexfedoseev/isomorphic-
|
|
188
181
|
|
189
182
|
To upgrade existing apps to React on Rails 8 see the [Installation Overview](docs/basics/installation-overview.md)
|
190
183
|
|
191
|
-
## Getting Started
|
184
|
+
## Getting Started with an existing Rails app
|
192
185
|
|
193
|
-
**For more detailed instructions**, see the [React on Rails Basic Tutorial](docs/tutorial.md).
|
186
|
+
**For more detailed instructions on a fresh Rails app**, see the [React on Rails Basic Tutorial](docs/tutorial.md).
|
194
187
|
|
195
188
|
1. Add the following to your Gemfile and `bundle install`. We recommend fixing the version of React on Rails, as you will need to keep the exact version in sync with the version in your `client/package.json` file.
|
196
189
|
|
@@ -1,3 +1,16 @@
|
|
1
|
+
# Live Reloading vs. Hot Reloading (aka HMR)
|
2
|
+
|
3
|
+
The use of the [webpack-dev-server](https://webpack.js.org/configuration/dev-server/) provides "Live Reloading" by default. The difference between live and hot reloading is that live reloading will act similarly to hitting refresh in the browser. Hot reloading will attempt to preserve the state of any props.
|
4
|
+
|
5
|
+
See the Webpack document [Hot Module Replacement](https://webpack.js.org/concepts/hot-module-replacement/) for more details on the concepts of live vs. hot reloading.
|
6
|
+
|
7
|
+
The remainder of this document discusses HMR.
|
8
|
+
|
9
|
+
# Using the Webpacker Webpack setup
|
10
|
+
|
11
|
+
If you are using the default Webpacker setup of running the dev server with `bin/webpack-dev-server`, see the [Webpacker Webpack Dev Server discussion of HMR](https://github.com/rails/webpacker/blob/master/docs/webpack-dev-server.md#hot-module-replacement).
|
12
|
+
|
13
|
+
|
1
14
|
# Hot Reloading of Assets For Rails Development
|
2
15
|
|
3
16
|
_Note, this document is not yet updated for React on Rails v8+. See [PR #865](https://github.com/shakacode/react_on_rails/pull/865) for a detailed example of doing hot reloading using V8+ with Webpack v2. Any volunteers to update this page? See [#772](https://github.com/shakacode/react_on_rails/issues/772) and [#361](https://github.com/shakacode/react-webpack-rails-tutorial/issues/361)._
|
data/docs/basics/generator.md
CHANGED
@@ -32,19 +32,12 @@ can pass the redux option if you'd like to have redux setup for you automaticall
|
|
32
32
|
to integrate the Redux state container framework. The necessary node modules
|
33
33
|
will be automatically included for you.
|
34
34
|
|
35
|
-
* Node
|
36
|
-
|
37
|
-
Passing the --node generator option sets up the necessary files for node to render the react_components.
|
38
|
-
|
39
35
|
*******************************************************************************
|
40
36
|
|
41
|
-
After running the generator, you will want to:
|
42
|
-
|
43
|
-
bundle && yarn
|
44
37
|
|
45
38
|
Then you may run
|
46
39
|
|
47
|
-
|
40
|
+
`rails s`
|
48
41
|
|
49
42
|
More Details:
|
50
43
|
|
@@ -83,31 +83,33 @@ module ReactOnRails
|
|
83
83
|
|
84
84
|
What to do next:
|
85
85
|
|
86
|
-
-
|
86
|
+
- See the documentation on https://github.com/rails/webpacker/blob/master/docs/webpack.md
|
87
|
+
for how to customize the default webpack configuration.
|
87
88
|
|
88
|
-
|
89
|
+
- Include your webpack assets to your application layout.
|
89
90
|
|
90
|
-
|
91
|
+
<%= javascript_pack_tag 'hello-world-bundle' %>
|
91
92
|
|
92
|
-
|
93
|
+
- Run `rails s` to start the Rails server and use Webpacker's default lazy compilation.
|
93
94
|
|
94
|
-
-
|
95
|
-
server rendering (right click on page and select "view source").
|
95
|
+
- Visit http://localhost:3000/hello_world and see your React On Rails app running!
|
96
96
|
|
97
|
-
|
97
|
+
- Run bin/webpack-dev-server to start the Webpack dev server for compilation of Webpack
|
98
|
+
assets assets as soon as you save. This default setup with the dev server does not work
|
99
|
+
for server rendering
|
98
100
|
|
99
|
-
-
|
100
|
-
to
|
101
|
-
Note, you cannot use the default Procfile.dev-server setup with server rendering.
|
101
|
+
- Alternately, you may turn off compile in config/webpacker.yml and run the foreman
|
102
|
+
command to start the rails server and run webpack in watch mode.
|
102
103
|
|
103
|
-
foreman start -f Procfile.dev
|
104
|
+
foreman start -f Procfile.dev
|
104
105
|
|
105
|
-
-
|
106
|
+
- To turn on HMR, edit config/webpacker.yml and set HMR to true. Restart the rails server
|
107
|
+
and bin/webpack-dev-server. Or use Procfile.dev-server.
|
106
108
|
|
107
|
-
-
|
108
|
-
|
109
|
+
- To server render, change this line app/views/hello_world/index.html.erb to
|
110
|
+
`prerender: true` to see server rendering (right click on page and select "view source").
|
109
111
|
|
110
|
-
|
112
|
+
<%= react_component("HelloWorldApp", props: @hello_world_props, prerender: true) %>
|
111
113
|
MSG
|
112
114
|
end
|
113
115
|
|
@@ -1,4 +1,7 @@
|
|
1
|
+
# You can run these commands in separate shells
|
1
2
|
web: rails s -p 3000
|
2
3
|
|
3
|
-
# Next line runs a watch process with webpack
|
4
|
+
# Next line runs a watch process with webpack to compile the changed files.
|
5
|
+
# When making frequent changes to client side assets, you will prefer building webpack assets
|
6
|
+
# upon saving rather than when you refresh your browser page.
|
4
7
|
client: sh -c 'rm -rf public/packs/* || true && bundle exec rake react_on_rails:locale && bin/webpack -w'
|
@@ -1,5 +1,7 @@
|
|
1
|
+
# You can run these commands in separate shells instead of using foreman
|
1
2
|
web: rails s -p 3000
|
2
3
|
|
3
4
|
# Next line runs the webpack-dev-server
|
4
|
-
# You can edit config/webpacker.yml to set HMR to true to see hot reloading
|
5
|
+
# You can edit config/webpacker.yml to set HMR to true to see hot reloading.
|
6
|
+
# Note,
|
5
7
|
client: sh -c 'rm -rf public/packs/* || true && bundle exec rake react_on_rails:locale && bin/webpack-dev-server'
|
data/package.json
CHANGED
data/yarn.lock
CHANGED
@@ -3,16 +3,16 @@
|
|
3
3
|
|
4
4
|
|
5
5
|
"@types/node@^6.0.46":
|
6
|
-
version "6.0.
|
7
|
-
resolved "https://registry.yarnpkg.com/@types/node/-/node-6.0.
|
6
|
+
version "6.0.88"
|
7
|
+
resolved "https://registry.yarnpkg.com/@types/node/-/node-6.0.88.tgz#f618f11a944f6a18d92b5c472028728a3e3d4b66"
|
8
8
|
|
9
9
|
abab@^1.0.3:
|
10
10
|
version "1.0.3"
|
11
11
|
resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.3.tgz#b81de5f7274ec4e756d797cd834f303642724e5d"
|
12
12
|
|
13
13
|
abbrev@1:
|
14
|
-
version "1.0
|
15
|
-
resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.
|
14
|
+
version "1.1.0"
|
15
|
+
resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f"
|
16
16
|
|
17
17
|
acorn-dynamic-import@^2.0.0:
|
18
18
|
version "2.0.2"
|
@@ -32,36 +32,36 @@ acorn-jsx@^3.0.0:
|
|
32
32
|
dependencies:
|
33
33
|
acorn "^3.0.4"
|
34
34
|
|
35
|
-
acorn@4.0.4, acorn@^4.0.3, acorn@^4.0.4:
|
36
|
-
version "4.0.4"
|
37
|
-
resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.4.tgz#17a8d6a7a6c4ef538b814ec9abac2779293bf30a"
|
38
|
-
|
39
35
|
acorn@^3.0.4:
|
40
36
|
version "3.3.0"
|
41
37
|
resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a"
|
42
38
|
|
43
|
-
acorn@^
|
44
|
-
version "
|
45
|
-
resolved "https://registry.yarnpkg.com/acorn/-/acorn-
|
39
|
+
acorn@^4.0.3, acorn@^4.0.4:
|
40
|
+
version "4.0.13"
|
41
|
+
resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787"
|
42
|
+
|
43
|
+
acorn@^5.0.0, acorn@^5.1.1:
|
44
|
+
version "5.1.2"
|
45
|
+
resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.1.2.tgz#911cb53e036807cf0fa778dc5d370fbd864246d7"
|
46
46
|
|
47
47
|
agent-base@2:
|
48
|
-
version "2.
|
49
|
-
resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-2.
|
48
|
+
version "2.1.1"
|
49
|
+
resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-2.1.1.tgz#d6de10d5af6132d5bd692427d46fc538539094c7"
|
50
50
|
dependencies:
|
51
51
|
extend "~3.0.0"
|
52
52
|
semver "~5.0.1"
|
53
53
|
|
54
54
|
ajv-keywords@^1.0.0:
|
55
|
-
version "1.
|
56
|
-
resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.
|
55
|
+
version "1.5.1"
|
56
|
+
resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c"
|
57
57
|
|
58
58
|
ajv-keywords@^2.0.0:
|
59
59
|
version "2.1.0"
|
60
60
|
resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.0.tgz#a296e17f7bfae7c1ce4f7e0de53d29cb32162df0"
|
61
61
|
|
62
|
-
ajv@^4.7.0:
|
63
|
-
version "4.8
|
64
|
-
resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.8.
|
62
|
+
ajv@^4.7.0, ajv@^4.9.1:
|
63
|
+
version "4.11.8"
|
64
|
+
resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536"
|
65
65
|
dependencies:
|
66
66
|
co "^4.6.0"
|
67
67
|
json-stable-stringify "^1.0.1"
|
@@ -83,39 +83,39 @@ align-text@^0.1.1, align-text@^0.1.3:
|
|
83
83
|
longest "^1.0.1"
|
84
84
|
repeat-string "^1.5.2"
|
85
85
|
|
86
|
-
amdefine@>=0.0.4:
|
87
|
-
version "1.0.0"
|
88
|
-
resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.0.tgz#fd17474700cb5cc9c2b709f0be9d23ce3c198c33"
|
89
|
-
|
90
86
|
ansi-escapes@^1.1.0:
|
91
87
|
version "1.4.0"
|
92
88
|
resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e"
|
93
89
|
|
94
90
|
ansi-regex@^2.0.0:
|
95
|
-
version "2.
|
96
|
-
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.
|
91
|
+
version "2.1.1"
|
92
|
+
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
|
93
|
+
|
94
|
+
ansi-regex@^3.0.0:
|
95
|
+
version "3.0.0"
|
96
|
+
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
|
97
97
|
|
98
98
|
ansi-styles@^2.2.1:
|
99
99
|
version "2.2.1"
|
100
100
|
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
|
101
101
|
|
102
102
|
anymatch@^1.3.0:
|
103
|
-
version "1.3.
|
104
|
-
resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.
|
103
|
+
version "1.3.2"
|
104
|
+
resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a"
|
105
105
|
dependencies:
|
106
|
-
arrify "^1.0.0"
|
107
106
|
micromatch "^2.1.5"
|
107
|
+
normalize-path "^2.0.0"
|
108
108
|
|
109
109
|
aproba@^1.0.3:
|
110
|
-
version "1.
|
111
|
-
resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.
|
110
|
+
version "1.1.2"
|
111
|
+
resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.2.tgz#45c6629094de4e96f693ef7eab74ae079c240fc1"
|
112
112
|
|
113
113
|
are-we-there-yet@~1.1.2:
|
114
|
-
version "1.1.
|
115
|
-
resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.
|
114
|
+
version "1.1.4"
|
115
|
+
resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d"
|
116
116
|
dependencies:
|
117
117
|
delegates "^1.0.0"
|
118
|
-
readable-stream "^2.0.
|
118
|
+
readable-stream "^2.0.6"
|
119
119
|
|
120
120
|
argparse@^1.0.7:
|
121
121
|
version "1.0.9"
|
@@ -136,8 +136,8 @@ arr-diff@^2.0.0:
|
|
136
136
|
arr-flatten "^1.0.1"
|
137
137
|
|
138
138
|
arr-flatten@^1.0.1:
|
139
|
-
version "1.0
|
140
|
-
resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.
|
139
|
+
version "1.1.0"
|
140
|
+
resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
|
141
141
|
|
142
142
|
array-equal@^1.0.0:
|
143
143
|
version "1.0.0"
|
@@ -169,8 +169,8 @@ arrify@^1.0.0:
|
|
169
169
|
resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
|
170
170
|
|
171
171
|
asap@~2.0.3:
|
172
|
-
version "2.0.
|
173
|
-
resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.
|
172
|
+
version "2.0.6"
|
173
|
+
resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46"
|
174
174
|
|
175
175
|
asn1.js@^4.0.0:
|
176
176
|
version "4.9.1"
|
@@ -184,14 +184,14 @@ asn1@~0.2.3:
|
|
184
184
|
version "0.2.3"
|
185
185
|
resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
|
186
186
|
|
187
|
+
assert-plus@1.0.0, assert-plus@^1.0.0:
|
188
|
+
version "1.0.0"
|
189
|
+
resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
|
190
|
+
|
187
191
|
assert-plus@^0.2.0:
|
188
192
|
version "0.2.0"
|
189
193
|
resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234"
|
190
194
|
|
191
|
-
assert-plus@^1.0.0:
|
192
|
-
version "1.0.0"
|
193
|
-
resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
|
194
|
-
|
195
195
|
assert@^1.1.1:
|
196
196
|
version "1.4.1"
|
197
197
|
resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91"
|
@@ -206,16 +206,9 @@ async-each@^1.0.0:
|
|
206
206
|
version "1.0.1"
|
207
207
|
resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d"
|
208
208
|
|
209
|
-
async-retry@1.1.1:
|
210
|
-
version "1.1.1"
|
211
|
-
resolved "https://registry.yarnpkg.com/async-retry/-/async-retry-1.1.1.tgz#c47b3aac3fb891fc29117b4a222dd33d27c1d5d7"
|
212
|
-
dependencies:
|
213
|
-
babel-preset-es2015 "6.24.1"
|
214
|
-
retry "0.10.1"
|
215
|
-
|
216
209
|
async@^2.1.2:
|
217
|
-
version "2.
|
218
|
-
resolved "https://registry.yarnpkg.com/async/-/async-2.
|
210
|
+
version "2.5.0"
|
211
|
+
resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d"
|
219
212
|
dependencies:
|
220
213
|
lodash "^4.14.0"
|
221
214
|
|
@@ -228,8 +221,8 @@ aws-sign2@~0.6.0:
|
|
228
221
|
resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f"
|
229
222
|
|
230
223
|
aws4@^1.2.1:
|
231
|
-
version "1.
|
232
|
-
resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.
|
224
|
+
version "1.6.0"
|
225
|
+
resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e"
|
233
226
|
|
234
227
|
axobject-query@^0.1.0:
|
235
228
|
version "0.1.0"
|
@@ -238,116 +231,78 @@ axobject-query@^0.1.0:
|
|
238
231
|
ast-types-flow "0.0.7"
|
239
232
|
|
240
233
|
babel-cli@^6.24.1:
|
241
|
-
version "6.
|
242
|
-
resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.
|
243
|
-
dependencies:
|
244
|
-
babel-core "^6.
|
245
|
-
babel-polyfill "^6.
|
246
|
-
babel-register "^6.
|
247
|
-
babel-runtime "^6.
|
248
|
-
commander "^2.
|
249
|
-
convert-source-map "^1.
|
234
|
+
version "6.26.0"
|
235
|
+
resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1"
|
236
|
+
dependencies:
|
237
|
+
babel-core "^6.26.0"
|
238
|
+
babel-polyfill "^6.26.0"
|
239
|
+
babel-register "^6.26.0"
|
240
|
+
babel-runtime "^6.26.0"
|
241
|
+
commander "^2.11.0"
|
242
|
+
convert-source-map "^1.5.0"
|
250
243
|
fs-readdir-recursive "^1.0.0"
|
251
|
-
glob "^7.
|
252
|
-
lodash "^4.
|
253
|
-
output-file-sync "^1.1.
|
254
|
-
path-is-absolute "^1.0.
|
244
|
+
glob "^7.1.2"
|
245
|
+
lodash "^4.17.4"
|
246
|
+
output-file-sync "^1.1.2"
|
247
|
+
path-is-absolute "^1.0.1"
|
255
248
|
slash "^1.0.0"
|
256
|
-
source-map "^0.5.
|
257
|
-
v8flags "^2.
|
249
|
+
source-map "^0.5.6"
|
250
|
+
v8flags "^2.1.1"
|
258
251
|
optionalDependencies:
|
259
252
|
chokidar "^1.6.1"
|
260
253
|
|
261
|
-
babel-code-frame@^6.16.0, babel-code-frame@^6.22.0:
|
262
|
-
version "6.
|
263
|
-
resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.
|
254
|
+
babel-code-frame@^6.16.0, babel-code-frame@^6.22.0, babel-code-frame@^6.26.0:
|
255
|
+
version "6.26.0"
|
256
|
+
resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
|
264
257
|
dependencies:
|
265
|
-
chalk "^1.1.
|
258
|
+
chalk "^1.1.3"
|
266
259
|
esutils "^2.0.2"
|
267
|
-
js-tokens "^3.0.
|
260
|
+
js-tokens "^3.0.2"
|
268
261
|
|
269
|
-
babel-core@^6.0.14, babel-core@^6.
|
270
|
-
version "6.
|
271
|
-
resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.
|
262
|
+
babel-core@^6.0.14, babel-core@^6.25.0, babel-core@^6.26.0:
|
263
|
+
version "6.26.0"
|
264
|
+
resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8"
|
272
265
|
dependencies:
|
273
|
-
babel-code-frame "^6.
|
274
|
-
babel-generator "^6.
|
275
|
-
babel-helpers "^6.24.1"
|
276
|
-
babel-messages "^6.23.0"
|
277
|
-
babel-register "^6.24.1"
|
278
|
-
babel-runtime "^6.22.0"
|
279
|
-
babel-template "^6.24.1"
|
280
|
-
babel-traverse "^6.24.1"
|
281
|
-
babel-types "^6.24.1"
|
282
|
-
babylon "^6.11.0"
|
283
|
-
convert-source-map "^1.1.0"
|
284
|
-
debug "^2.1.1"
|
285
|
-
json5 "^0.5.0"
|
286
|
-
lodash "^4.2.0"
|
287
|
-
minimatch "^3.0.2"
|
288
|
-
path-is-absolute "^1.0.0"
|
289
|
-
private "^0.1.6"
|
290
|
-
slash "^1.0.0"
|
291
|
-
source-map "^0.5.0"
|
292
|
-
|
293
|
-
babel-core@^6.25.0:
|
294
|
-
version "6.25.0"
|
295
|
-
resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.25.0.tgz#7dd42b0463c742e9d5296deb3ec67a9322dad729"
|
296
|
-
dependencies:
|
297
|
-
babel-code-frame "^6.22.0"
|
298
|
-
babel-generator "^6.25.0"
|
266
|
+
babel-code-frame "^6.26.0"
|
267
|
+
babel-generator "^6.26.0"
|
299
268
|
babel-helpers "^6.24.1"
|
300
269
|
babel-messages "^6.23.0"
|
301
|
-
babel-register "^6.
|
302
|
-
babel-runtime "^6.
|
303
|
-
babel-template "^6.
|
304
|
-
babel-traverse "^6.
|
305
|
-
babel-types "^6.
|
306
|
-
babylon "^6.
|
307
|
-
convert-source-map "^1.
|
308
|
-
debug "^2.
|
309
|
-
json5 "^0.5.
|
310
|
-
lodash "^4.
|
311
|
-
minimatch "^3.0.
|
312
|
-
path-is-absolute "^1.0.
|
313
|
-
private "^0.1.
|
270
|
+
babel-register "^6.26.0"
|
271
|
+
babel-runtime "^6.26.0"
|
272
|
+
babel-template "^6.26.0"
|
273
|
+
babel-traverse "^6.26.0"
|
274
|
+
babel-types "^6.26.0"
|
275
|
+
babylon "^6.18.0"
|
276
|
+
convert-source-map "^1.5.0"
|
277
|
+
debug "^2.6.8"
|
278
|
+
json5 "^0.5.1"
|
279
|
+
lodash "^4.17.4"
|
280
|
+
minimatch "^3.0.4"
|
281
|
+
path-is-absolute "^1.0.1"
|
282
|
+
private "^0.1.7"
|
314
283
|
slash "^1.0.0"
|
315
|
-
source-map "^0.5.
|
284
|
+
source-map "^0.5.6"
|
316
285
|
|
317
286
|
babel-eslint@^7.1.1:
|
318
|
-
version "7.
|
319
|
-
resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.
|
320
|
-
dependencies:
|
321
|
-
babel-code-frame "^6.16.0"
|
322
|
-
babel-traverse "^6.15.0"
|
323
|
-
babel-types "^6.15.0"
|
324
|
-
babylon "^6.13.0"
|
325
|
-
lodash.pickby "^4.6.0"
|
326
|
-
|
327
|
-
babel-generator@^6.24.1:
|
328
|
-
version "6.24.1"
|
329
|
-
resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.1.tgz#e715f486c58ded25649d888944d52aa07c5d9497"
|
287
|
+
version "7.2.3"
|
288
|
+
resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.2.3.tgz#b2fe2d80126470f5c19442dc757253a897710827"
|
330
289
|
dependencies:
|
331
|
-
babel-
|
332
|
-
babel-
|
333
|
-
babel-types "^6.
|
334
|
-
|
335
|
-
jsesc "^1.3.0"
|
336
|
-
lodash "^4.2.0"
|
337
|
-
source-map "^0.5.0"
|
338
|
-
trim-right "^1.0.1"
|
290
|
+
babel-code-frame "^6.22.0"
|
291
|
+
babel-traverse "^6.23.1"
|
292
|
+
babel-types "^6.23.0"
|
293
|
+
babylon "^6.17.0"
|
339
294
|
|
340
|
-
babel-generator@^6.
|
341
|
-
version "6.
|
342
|
-
resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.
|
295
|
+
babel-generator@^6.26.0:
|
296
|
+
version "6.26.0"
|
297
|
+
resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5"
|
343
298
|
dependencies:
|
344
299
|
babel-messages "^6.23.0"
|
345
|
-
babel-runtime "^6.
|
346
|
-
babel-types "^6.
|
300
|
+
babel-runtime "^6.26.0"
|
301
|
+
babel-types "^6.26.0"
|
347
302
|
detect-indent "^4.0.0"
|
348
303
|
jsesc "^1.3.0"
|
349
|
-
lodash "^4.
|
350
|
-
source-map "^0.5.
|
304
|
+
lodash "^4.17.4"
|
305
|
+
source-map "^0.5.6"
|
351
306
|
trim-right "^1.0.1"
|
352
307
|
|
353
308
|
babel-helper-bindify-decorators@^6.24.1:
|
@@ -367,12 +322,12 @@ babel-helper-builder-binary-assignment-operator-visitor@^6.24.1:
|
|
367
322
|
babel-types "^6.24.1"
|
368
323
|
|
369
324
|
babel-helper-builder-react-jsx@^6.24.1:
|
370
|
-
version "6.
|
371
|
-
resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.
|
325
|
+
version "6.26.0"
|
326
|
+
resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz#39ff8313b75c8b65dceff1f31d383e0ff2a408a0"
|
372
327
|
dependencies:
|
373
|
-
babel-runtime "^6.
|
374
|
-
babel-types "^6.
|
375
|
-
esutils "^2.0.
|
328
|
+
babel-runtime "^6.26.0"
|
329
|
+
babel-types "^6.26.0"
|
330
|
+
esutils "^2.0.2"
|
376
331
|
|
377
332
|
babel-helper-call-delegate@^6.24.1:
|
378
333
|
version "6.24.1"
|
@@ -384,13 +339,13 @@ babel-helper-call-delegate@^6.24.1:
|
|
384
339
|
babel-types "^6.24.1"
|
385
340
|
|
386
341
|
babel-helper-define-map@^6.24.1:
|
387
|
-
version "6.
|
388
|
-
resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.
|
342
|
+
version "6.26.0"
|
343
|
+
resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f"
|
389
344
|
dependencies:
|
390
345
|
babel-helper-function-name "^6.24.1"
|
391
|
-
babel-runtime "^6.
|
392
|
-
babel-types "^6.
|
393
|
-
lodash "^4.
|
346
|
+
babel-runtime "^6.26.0"
|
347
|
+
babel-types "^6.26.0"
|
348
|
+
lodash "^4.17.4"
|
394
349
|
|
395
350
|
babel-helper-explode-assignable-expression@^6.24.1:
|
396
351
|
version "6.24.1"
|
@@ -441,12 +396,12 @@ babel-helper-optimise-call-expression@^6.24.1:
|
|
441
396
|
babel-types "^6.24.1"
|
442
397
|
|
443
398
|
babel-helper-regex@^6.24.1:
|
444
|
-
version "6.
|
445
|
-
resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.
|
399
|
+
version "6.26.0"
|
400
|
+
resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72"
|
446
401
|
dependencies:
|
447
|
-
babel-runtime "^6.
|
448
|
-
babel-types "^6.
|
449
|
-
lodash "^4.
|
402
|
+
babel-runtime "^6.26.0"
|
403
|
+
babel-types "^6.26.0"
|
404
|
+
lodash "^4.17.4"
|
450
405
|
|
451
406
|
babel-helper-remap-async-to-generator@^6.24.1:
|
452
407
|
version "6.24.1"
|
@@ -477,8 +432,8 @@ babel-helpers@^6.24.1:
|
|
477
432
|
babel-template "^6.24.1"
|
478
433
|
|
479
434
|
babel-loader@^7.1.1:
|
480
|
-
version "7.1.
|
481
|
-
resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-7.1.
|
435
|
+
version "7.1.2"
|
436
|
+
resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-7.1.2.tgz#f6cbe122710f1aa2af4d881c6d5b54358ca24126"
|
482
437
|
dependencies:
|
483
438
|
find-cache-dir "^1.0.0"
|
484
439
|
loader-utils "^1.0.2"
|
@@ -590,14 +545,14 @@ babel-plugin-transform-es2015-block-scoped-functions@^6.22.0:
|
|
590
545
|
babel-runtime "^6.22.0"
|
591
546
|
|
592
547
|
babel-plugin-transform-es2015-block-scoping@^6.24.1:
|
593
|
-
version "6.
|
594
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.
|
548
|
+
version "6.26.0"
|
549
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f"
|
595
550
|
dependencies:
|
596
|
-
babel-runtime "^6.
|
597
|
-
babel-template "^6.
|
598
|
-
babel-traverse "^6.
|
599
|
-
babel-types "^6.
|
600
|
-
lodash "^4.
|
551
|
+
babel-runtime "^6.26.0"
|
552
|
+
babel-template "^6.26.0"
|
553
|
+
babel-traverse "^6.26.0"
|
554
|
+
babel-types "^6.26.0"
|
555
|
+
lodash "^4.17.4"
|
601
556
|
|
602
557
|
babel-plugin-transform-es2015-classes@^6.24.1:
|
603
558
|
version "6.24.1"
|
@@ -662,13 +617,13 @@ babel-plugin-transform-es2015-modules-amd@^6.24.1:
|
|
662
617
|
babel-template "^6.24.1"
|
663
618
|
|
664
619
|
babel-plugin-transform-es2015-modules-commonjs@^6.24.1:
|
665
|
-
version "6.
|
666
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.
|
620
|
+
version "6.26.0"
|
621
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a"
|
667
622
|
dependencies:
|
668
623
|
babel-plugin-transform-strict-mode "^6.24.1"
|
669
|
-
babel-runtime "^6.
|
670
|
-
babel-template "^6.
|
671
|
-
babel-types "^6.
|
624
|
+
babel-runtime "^6.26.0"
|
625
|
+
babel-template "^6.26.0"
|
626
|
+
babel-types "^6.26.0"
|
672
627
|
|
673
628
|
babel-plugin-transform-es2015-modules-systemjs@^6.24.1:
|
674
629
|
version "6.24.1"
|
@@ -761,15 +716,15 @@ babel-plugin-transform-flow-strip-types@^6.22.0:
|
|
761
716
|
babel-runtime "^6.22.0"
|
762
717
|
|
763
718
|
babel-plugin-transform-object-rest-spread@^6.22.0:
|
764
|
-
version "6.
|
765
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.
|
719
|
+
version "6.26.0"
|
720
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06"
|
766
721
|
dependencies:
|
767
722
|
babel-plugin-syntax-object-rest-spread "^6.8.0"
|
768
|
-
babel-runtime "^6.
|
723
|
+
babel-runtime "^6.26.0"
|
769
724
|
|
770
725
|
babel-plugin-transform-react-display-name@^6.23.0:
|
771
|
-
version "6.
|
772
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.
|
726
|
+
version "6.25.0"
|
727
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz#67e2bf1f1e9c93ab08db96792e05392bf2cc28d1"
|
773
728
|
dependencies:
|
774
729
|
babel-runtime "^6.22.0"
|
775
730
|
|
@@ -796,10 +751,10 @@ babel-plugin-transform-react-jsx@^6.24.1:
|
|
796
751
|
babel-runtime "^6.22.0"
|
797
752
|
|
798
753
|
babel-plugin-transform-regenerator@^6.24.1:
|
799
|
-
version "6.
|
800
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.
|
754
|
+
version "6.26.0"
|
755
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f"
|
801
756
|
dependencies:
|
802
|
-
regenerator-transform "0.
|
757
|
+
regenerator-transform "^0.10.0"
|
803
758
|
|
804
759
|
babel-plugin-transform-runtime@^6.23.0:
|
805
760
|
version "6.23.0"
|
@@ -814,15 +769,15 @@ babel-plugin-transform-strict-mode@^6.24.1:
|
|
814
769
|
babel-runtime "^6.22.0"
|
815
770
|
babel-types "^6.24.1"
|
816
771
|
|
817
|
-
babel-polyfill@^6.
|
818
|
-
version "6.
|
819
|
-
resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.
|
772
|
+
babel-polyfill@^6.26.0, babel-polyfill@^6.3.14:
|
773
|
+
version "6.26.0"
|
774
|
+
resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153"
|
820
775
|
dependencies:
|
821
|
-
babel-runtime "^6.
|
822
|
-
core-js "^2.
|
823
|
-
regenerator-runtime "^0.10.
|
776
|
+
babel-runtime "^6.26.0"
|
777
|
+
core-js "^2.5.0"
|
778
|
+
regenerator-runtime "^0.10.5"
|
824
779
|
|
825
|
-
babel-preset-es2015
|
780
|
+
babel-preset-es2015@^6.24.1:
|
826
781
|
version "6.24.1"
|
827
782
|
resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939"
|
828
783
|
dependencies:
|
@@ -887,31 +842,24 @@ babel-preset-stage-3@^6.24.1:
|
|
887
842
|
babel-plugin-transform-exponentiation-operator "^6.24.1"
|
888
843
|
babel-plugin-transform-object-rest-spread "^6.22.0"
|
889
844
|
|
890
|
-
babel-register@^6.
|
891
|
-
version "6.
|
892
|
-
resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.
|
845
|
+
babel-register@^6.26.0, babel-register@^6.3.13:
|
846
|
+
version "6.26.0"
|
847
|
+
resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071"
|
893
848
|
dependencies:
|
894
|
-
babel-core "^6.
|
895
|
-
babel-runtime "^6.
|
896
|
-
core-js "^2.
|
849
|
+
babel-core "^6.26.0"
|
850
|
+
babel-runtime "^6.26.0"
|
851
|
+
core-js "^2.5.0"
|
897
852
|
home-or-tmp "^2.0.0"
|
898
|
-
lodash "^4.
|
853
|
+
lodash "^4.17.4"
|
899
854
|
mkdirp "^0.5.1"
|
900
|
-
source-map-support "^0.4.
|
901
|
-
|
902
|
-
babel-runtime@^6.18.0, babel-runtime@^6.22.0:
|
903
|
-
version "6.23.0"
|
904
|
-
resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b"
|
905
|
-
dependencies:
|
906
|
-
core-js "^2.4.0"
|
907
|
-
regenerator-runtime "^0.10.0"
|
855
|
+
source-map-support "^0.4.15"
|
908
856
|
|
909
|
-
babel-runtime@^6.25.0:
|
910
|
-
version "6.
|
911
|
-
resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.
|
857
|
+
babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.25.0, babel-runtime@^6.26.0:
|
858
|
+
version "6.26.0"
|
859
|
+
resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
|
912
860
|
dependencies:
|
913
861
|
core-js "^2.4.0"
|
914
|
-
regenerator-runtime "^0.
|
862
|
+
regenerator-runtime "^0.11.0"
|
915
863
|
|
916
864
|
babel-tape-runner@^2.0.1:
|
917
865
|
version "2.0.1"
|
@@ -921,71 +869,38 @@ babel-tape-runner@^2.0.1:
|
|
921
869
|
babel-register "^6.3.13"
|
922
870
|
glob "^6.0.1"
|
923
871
|
|
924
|
-
babel-template@^6.24.1:
|
925
|
-
version "6.
|
926
|
-
resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.
|
872
|
+
babel-template@^6.24.1, babel-template@^6.26.0:
|
873
|
+
version "6.26.0"
|
874
|
+
resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02"
|
927
875
|
dependencies:
|
928
|
-
babel-runtime "^6.
|
929
|
-
babel-traverse "^6.
|
930
|
-
babel-types "^6.
|
931
|
-
babylon "^6.
|
932
|
-
lodash "^4.
|
876
|
+
babel-runtime "^6.26.0"
|
877
|
+
babel-traverse "^6.26.0"
|
878
|
+
babel-types "^6.26.0"
|
879
|
+
babylon "^6.18.0"
|
880
|
+
lodash "^4.17.4"
|
933
881
|
|
934
|
-
babel-
|
935
|
-
version "6.
|
936
|
-
resolved "https://registry.yarnpkg.com/babel-
|
882
|
+
babel-traverse@^6.23.1, babel-traverse@^6.24.1, babel-traverse@^6.26.0:
|
883
|
+
version "6.26.0"
|
884
|
+
resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee"
|
937
885
|
dependencies:
|
938
|
-
babel-
|
939
|
-
babel-traverse "^6.25.0"
|
940
|
-
babel-types "^6.25.0"
|
941
|
-
babylon "^6.17.2"
|
942
|
-
lodash "^4.2.0"
|
943
|
-
|
944
|
-
babel-traverse@^6.15.0, babel-traverse@^6.24.1:
|
945
|
-
version "6.24.1"
|
946
|
-
resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695"
|
947
|
-
dependencies:
|
948
|
-
babel-code-frame "^6.22.0"
|
886
|
+
babel-code-frame "^6.26.0"
|
949
887
|
babel-messages "^6.23.0"
|
950
|
-
babel-runtime "^6.
|
951
|
-
babel-types "^6.
|
952
|
-
babylon "^6.
|
953
|
-
debug "^2.
|
954
|
-
globals "^9.
|
955
|
-
invariant "^2.2.
|
956
|
-
lodash "^4.
|
957
|
-
|
958
|
-
babel-traverse@^6.25.0:
|
959
|
-
version "6.25.0"
|
960
|
-
resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.25.0.tgz#2257497e2fcd19b89edc13c4c91381f9512496f1"
|
961
|
-
dependencies:
|
962
|
-
babel-code-frame "^6.22.0"
|
963
|
-
babel-messages "^6.23.0"
|
964
|
-
babel-runtime "^6.22.0"
|
965
|
-
babel-types "^6.25.0"
|
966
|
-
babylon "^6.17.2"
|
967
|
-
debug "^2.2.0"
|
968
|
-
globals "^9.0.0"
|
969
|
-
invariant "^2.2.0"
|
970
|
-
lodash "^4.2.0"
|
971
|
-
|
972
|
-
babel-types@^6.15.0, babel-types@^6.19.0, babel-types@^6.24.1:
|
973
|
-
version "6.24.1"
|
974
|
-
resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975"
|
975
|
-
dependencies:
|
976
|
-
babel-runtime "^6.22.0"
|
977
|
-
esutils "^2.0.2"
|
978
|
-
lodash "^4.2.0"
|
979
|
-
to-fast-properties "^1.0.1"
|
888
|
+
babel-runtime "^6.26.0"
|
889
|
+
babel-types "^6.26.0"
|
890
|
+
babylon "^6.18.0"
|
891
|
+
debug "^2.6.8"
|
892
|
+
globals "^9.18.0"
|
893
|
+
invariant "^2.2.2"
|
894
|
+
lodash "^4.17.4"
|
980
895
|
|
981
|
-
babel-types@^6.25.0:
|
982
|
-
version "6.
|
983
|
-
resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.
|
896
|
+
babel-types@^6.19.0, babel-types@^6.23.0, babel-types@^6.24.1, babel-types@^6.25.0, babel-types@^6.26.0:
|
897
|
+
version "6.26.0"
|
898
|
+
resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497"
|
984
899
|
dependencies:
|
985
|
-
babel-runtime "^6.
|
900
|
+
babel-runtime "^6.26.0"
|
986
901
|
esutils "^2.0.2"
|
987
|
-
lodash "^4.
|
988
|
-
to-fast-properties "^1.0.
|
902
|
+
lodash "^4.17.4"
|
903
|
+
to-fast-properties "^1.0.3"
|
989
904
|
|
990
905
|
babelify@^7.3.0:
|
991
906
|
version "7.3.0"
|
@@ -994,33 +909,21 @@ babelify@^7.3.0:
|
|
994
909
|
babel-core "^6.0.14"
|
995
910
|
object-assign "^4.0.0"
|
996
911
|
|
997
|
-
babylon@^6.
|
998
|
-
version "6.
|
999
|
-
resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.
|
1000
|
-
|
1001
|
-
babylon@^6.13.0, babylon@^6.15.0:
|
1002
|
-
version "6.16.1"
|
1003
|
-
resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.16.1.tgz#30c5a22f481978a9e7f8cdfdf496b11d94b404d3"
|
1004
|
-
|
1005
|
-
babylon@^6.17.2:
|
1006
|
-
version "6.17.4"
|
1007
|
-
resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.4.tgz#3e8b7402b88d22c3423e137a1577883b15ff869a"
|
1008
|
-
|
1009
|
-
balanced-match@^0.4.1:
|
1010
|
-
version "0.4.2"
|
1011
|
-
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838"
|
912
|
+
babylon@^6.17.0, babylon@^6.18.0:
|
913
|
+
version "6.18.0"
|
914
|
+
resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3"
|
1012
915
|
|
1013
916
|
balanced-match@^1.0.0:
|
1014
917
|
version "1.0.0"
|
1015
918
|
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
|
1016
919
|
|
1017
920
|
base64-js@^1.0.2:
|
1018
|
-
version "1.2.
|
1019
|
-
resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.
|
921
|
+
version "1.2.1"
|
922
|
+
resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.1.tgz#a91947da1f4a516ea38e5b4ec0ec3773675e0886"
|
1020
923
|
|
1021
924
|
bcrypt-pbkdf@^1.0.0:
|
1022
|
-
version "1.0.
|
1023
|
-
resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.
|
925
|
+
version "1.0.1"
|
926
|
+
resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d"
|
1024
927
|
dependencies:
|
1025
928
|
tweetnacl "^0.14.3"
|
1026
929
|
|
@@ -1029,8 +932,8 @@ big.js@^3.1.3:
|
|
1029
932
|
resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.1.3.tgz#4cada2193652eb3ca9ec8e55c9015669c9806978"
|
1030
933
|
|
1031
934
|
binary-extensions@^1.0.0:
|
1032
|
-
version "1.
|
1033
|
-
resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.
|
935
|
+
version "1.10.0"
|
936
|
+
resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.10.0.tgz#9aeb9a6c5e88638aad171e167f5900abe24835d0"
|
1034
937
|
|
1035
938
|
block-stream@*:
|
1036
939
|
version "0.0.9"
|
@@ -1045,8 +948,8 @@ blue-tape@^1.0.0:
|
|
1045
948
|
tape ">=2.0.0 <5.0.0"
|
1046
949
|
|
1047
950
|
bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0:
|
1048
|
-
version "4.11.
|
1049
|
-
resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.
|
951
|
+
version "4.11.8"
|
952
|
+
resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f"
|
1050
953
|
|
1051
954
|
boom@2.x.x:
|
1052
955
|
version "2.10.1"
|
@@ -1054,13 +957,6 @@ boom@2.x.x:
|
|
1054
957
|
dependencies:
|
1055
958
|
hoek "2.x.x"
|
1056
959
|
|
1057
|
-
brace-expansion@^1.0.0:
|
1058
|
-
version "1.1.6"
|
1059
|
-
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9"
|
1060
|
-
dependencies:
|
1061
|
-
balanced-match "^0.4.1"
|
1062
|
-
concat-map "0.0.1"
|
1063
|
-
|
1064
960
|
brace-expansion@^1.1.7:
|
1065
961
|
version "1.1.8"
|
1066
962
|
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292"
|
@@ -1081,14 +977,15 @@ brorand@^1.0.1:
|
|
1081
977
|
resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f"
|
1082
978
|
|
1083
979
|
browserify-aes@^1.0.0, browserify-aes@^1.0.4:
|
1084
|
-
version "1.0.
|
1085
|
-
resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.0.
|
980
|
+
version "1.0.8"
|
981
|
+
resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.0.8.tgz#c8fa3b1b7585bb7ba77c5560b60996ddec6d5309"
|
1086
982
|
dependencies:
|
1087
|
-
buffer-xor "^1.0.
|
983
|
+
buffer-xor "^1.0.3"
|
1088
984
|
cipher-base "^1.0.0"
|
1089
985
|
create-hash "^1.1.0"
|
1090
|
-
evp_bytestokey "^1.0.
|
986
|
+
evp_bytestokey "^1.0.3"
|
1091
987
|
inherits "^2.0.1"
|
988
|
+
safe-buffer "^5.0.1"
|
1092
989
|
|
1093
990
|
browserify-cipher@^1.0.0:
|
1094
991
|
version "1.0.0"
|
@@ -1114,8 +1011,8 @@ browserify-rsa@^4.0.0:
|
|
1114
1011
|
randombytes "^2.0.1"
|
1115
1012
|
|
1116
1013
|
browserify-sign@^4.0.0:
|
1117
|
-
version "4.0.
|
1118
|
-
resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.
|
1014
|
+
version "4.0.4"
|
1015
|
+
resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298"
|
1119
1016
|
dependencies:
|
1120
1017
|
bn.js "^4.1.1"
|
1121
1018
|
browserify-rsa "^4.0.0"
|
@@ -1131,11 +1028,7 @@ browserify-zlib@^0.1.4:
|
|
1131
1028
|
dependencies:
|
1132
1029
|
pako "~0.2.0"
|
1133
1030
|
|
1134
|
-
buffer-
|
1135
|
-
version "1.0.0"
|
1136
|
-
resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51"
|
1137
|
-
|
1138
|
-
buffer-xor@^1.0.2:
|
1031
|
+
buffer-xor@^1.0.3:
|
1139
1032
|
version "1.0.3"
|
1140
1033
|
resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9"
|
1141
1034
|
|
@@ -1173,9 +1066,9 @@ camelcase@^4.1.0:
|
|
1173
1066
|
version "4.1.0"
|
1174
1067
|
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd"
|
1175
1068
|
|
1176
|
-
caseless@~0.
|
1177
|
-
version "0.
|
1178
|
-
resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.
|
1069
|
+
caseless@~0.12.0:
|
1070
|
+
version "0.12.0"
|
1071
|
+
resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
|
1179
1072
|
|
1180
1073
|
center-align@^0.1.1:
|
1181
1074
|
version "0.1.3"
|
@@ -1184,7 +1077,7 @@ center-align@^0.1.1:
|
|
1184
1077
|
align-text "^0.1.3"
|
1185
1078
|
lazy-cache "^1.0.3"
|
1186
1079
|
|
1187
|
-
chalk@1.1.3, chalk@^1.0.0, chalk@^1.1.
|
1080
|
+
chalk@1.1.3, chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3:
|
1188
1081
|
version "1.1.3"
|
1189
1082
|
resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
|
1190
1083
|
dependencies:
|
@@ -1194,22 +1087,7 @@ chalk@1.1.3, chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3:
|
|
1194
1087
|
strip-ansi "^3.0.0"
|
1195
1088
|
supports-color "^2.0.0"
|
1196
1089
|
|
1197
|
-
chokidar@^1.6.1:
|
1198
|
-
version "1.6.1"
|
1199
|
-
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2"
|
1200
|
-
dependencies:
|
1201
|
-
anymatch "^1.3.0"
|
1202
|
-
async-each "^1.0.0"
|
1203
|
-
glob-parent "^2.0.0"
|
1204
|
-
inherits "^2.0.1"
|
1205
|
-
is-binary-path "^1.0.0"
|
1206
|
-
is-glob "^2.0.0"
|
1207
|
-
path-is-absolute "^1.0.0"
|
1208
|
-
readdirp "^2.0.0"
|
1209
|
-
optionalDependencies:
|
1210
|
-
fsevents "^1.0.0"
|
1211
|
-
|
1212
|
-
chokidar@^1.7.0:
|
1090
|
+
chokidar@^1.6.1, chokidar@^1.7.0:
|
1213
1091
|
version "1.7.0"
|
1214
1092
|
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468"
|
1215
1093
|
dependencies:
|
@@ -1224,15 +1102,16 @@ chokidar@^1.7.0:
|
|
1224
1102
|
optionalDependencies:
|
1225
1103
|
fsevents "^1.0.0"
|
1226
1104
|
|
1227
|
-
cipher-base@^1.0.0, cipher-base@^1.0.1:
|
1228
|
-
version "1.0.
|
1229
|
-
resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.
|
1105
|
+
cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3:
|
1106
|
+
version "1.0.4"
|
1107
|
+
resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de"
|
1230
1108
|
dependencies:
|
1231
1109
|
inherits "^2.0.1"
|
1110
|
+
safe-buffer "^5.0.1"
|
1232
1111
|
|
1233
|
-
circular-json@^0.3.
|
1234
|
-
version "0.3.
|
1235
|
-
resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.
|
1112
|
+
circular-json@^0.3.1:
|
1113
|
+
version "0.3.3"
|
1114
|
+
resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66"
|
1236
1115
|
|
1237
1116
|
cli-cursor@^1.0.1:
|
1238
1117
|
version "1.0.2"
|
@@ -1247,8 +1126,8 @@ cli-cursor@^2.1.0:
|
|
1247
1126
|
restore-cursor "^2.0.0"
|
1248
1127
|
|
1249
1128
|
cli-width@^2.0.0:
|
1250
|
-
version "2.
|
1251
|
-
resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.
|
1129
|
+
version "2.2.0"
|
1130
|
+
resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639"
|
1252
1131
|
|
1253
1132
|
cliui@^2.1.0:
|
1254
1133
|
version "2.1.0"
|
@@ -1271,10 +1150,8 @@ co@^4.6.0:
|
|
1271
1150
|
resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
|
1272
1151
|
|
1273
1152
|
code-point-at@^1.0.0:
|
1274
|
-
version "1.0
|
1275
|
-
resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.0.
|
1276
|
-
dependencies:
|
1277
|
-
number-is-nan "^1.0.0"
|
1153
|
+
version "1.1.0"
|
1154
|
+
resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
|
1278
1155
|
|
1279
1156
|
combined-stream@^1.0.5, combined-stream@~1.0.5:
|
1280
1157
|
version "1.0.5"
|
@@ -1282,11 +1159,9 @@ combined-stream@^1.0.5, combined-stream@~1.0.5:
|
|
1282
1159
|
dependencies:
|
1283
1160
|
delayed-stream "~1.0.0"
|
1284
1161
|
|
1285
|
-
commander@^2.
|
1286
|
-
version "2.
|
1287
|
-
resolved "https://registry.yarnpkg.com/commander/-/commander-2.
|
1288
|
-
dependencies:
|
1289
|
-
graceful-readlink ">= 1.0.0"
|
1162
|
+
commander@^2.11.0:
|
1163
|
+
version "2.11.0"
|
1164
|
+
resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563"
|
1290
1165
|
|
1291
1166
|
commondir@^1.0.1:
|
1292
1167
|
version "1.0.1"
|
@@ -1326,19 +1201,19 @@ content-type-parser@^1.0.1:
|
|
1326
1201
|
version "1.0.1"
|
1327
1202
|
resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94"
|
1328
1203
|
|
1329
|
-
convert-source-map@^1.
|
1330
|
-
version "1.
|
1331
|
-
resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.
|
1204
|
+
convert-source-map@^1.5.0:
|
1205
|
+
version "1.5.0"
|
1206
|
+
resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5"
|
1332
1207
|
|
1333
1208
|
core-js@^1.0.0:
|
1334
1209
|
version "1.2.7"
|
1335
1210
|
resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636"
|
1336
1211
|
|
1337
|
-
core-js@^2.4.0:
|
1338
|
-
version "2.
|
1339
|
-
resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.
|
1212
|
+
core-js@^2.4.0, core-js@^2.5.0:
|
1213
|
+
version "2.5.1"
|
1214
|
+
resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.1.tgz#ae6874dc66937789b80754ff5428df66819ca50b"
|
1340
1215
|
|
1341
|
-
core-util-is@~1.0.0:
|
1216
|
+
core-util-is@1.0.2, core-util-is@~1.0.0:
|
1342
1217
|
version "1.0.2"
|
1343
1218
|
resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
|
1344
1219
|
|
@@ -1349,21 +1224,25 @@ create-ecdh@^4.0.0:
|
|
1349
1224
|
bn.js "^4.1.0"
|
1350
1225
|
elliptic "^6.0.0"
|
1351
1226
|
|
1352
|
-
create-hash@^1.1.0, create-hash@^1.1.
|
1353
|
-
version "1.1.
|
1354
|
-
resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.
|
1227
|
+
create-hash@^1.1.0, create-hash@^1.1.2:
|
1228
|
+
version "1.1.3"
|
1229
|
+
resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.3.tgz#606042ac8b9262750f483caddab0f5819172d8fd"
|
1355
1230
|
dependencies:
|
1356
1231
|
cipher-base "^1.0.1"
|
1357
1232
|
inherits "^2.0.1"
|
1358
|
-
ripemd160 "^
|
1359
|
-
sha.js "^2.
|
1233
|
+
ripemd160 "^2.0.0"
|
1234
|
+
sha.js "^2.4.0"
|
1360
1235
|
|
1361
|
-
create-hmac@^1.1.0, create-hmac@^1.1.2:
|
1362
|
-
version "1.1.
|
1363
|
-
resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.
|
1236
|
+
create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4:
|
1237
|
+
version "1.1.6"
|
1238
|
+
resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.6.tgz#acb9e221a4e17bdb076e90657c42b93e3726cf06"
|
1364
1239
|
dependencies:
|
1240
|
+
cipher-base "^1.0.3"
|
1365
1241
|
create-hash "^1.1.0"
|
1366
1242
|
inherits "^2.0.1"
|
1243
|
+
ripemd160 "^2.0.0"
|
1244
|
+
safe-buffer "^5.0.1"
|
1245
|
+
sha.js "^2.4.8"
|
1367
1246
|
|
1368
1247
|
create-react-class@^15.6.0:
|
1369
1248
|
version "15.6.0"
|
@@ -1388,8 +1267,8 @@ cryptiles@2.x.x:
|
|
1388
1267
|
boom "2.x.x"
|
1389
1268
|
|
1390
1269
|
crypto-browserify@^3.11.0:
|
1391
|
-
version "3.11.
|
1392
|
-
resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.
|
1270
|
+
version "3.11.1"
|
1271
|
+
resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.1.tgz#948945efc6757a400d6e5e5af47194d10064279f"
|
1393
1272
|
dependencies:
|
1394
1273
|
browserify-cipher "^1.0.0"
|
1395
1274
|
browserify-sign "^4.0.0"
|
@@ -1412,19 +1291,19 @@ cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0":
|
|
1412
1291
|
dependencies:
|
1413
1292
|
cssom "0.3.x"
|
1414
1293
|
|
1415
|
-
d
|
1416
|
-
version "0.
|
1417
|
-
resolved "https://registry.yarnpkg.com/d/-/d-0.
|
1294
|
+
d@1:
|
1295
|
+
version "1.0.0"
|
1296
|
+
resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f"
|
1418
1297
|
dependencies:
|
1419
|
-
es5-ext "
|
1298
|
+
es5-ext "^0.10.9"
|
1420
1299
|
|
1421
1300
|
damerau-levenshtein@^1.0.0:
|
1422
|
-
version "1.0.
|
1423
|
-
resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.
|
1301
|
+
version "1.0.4"
|
1302
|
+
resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.4.tgz#03191c432cb6eea168bb77f3a55ffdccb8978514"
|
1424
1303
|
|
1425
1304
|
dashdash@^1.12.0:
|
1426
|
-
version "1.14.
|
1427
|
-
resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.
|
1305
|
+
version "1.14.1"
|
1306
|
+
resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
|
1428
1307
|
dependencies:
|
1429
1308
|
assert-plus "^1.0.0"
|
1430
1309
|
|
@@ -1432,13 +1311,7 @@ date-now@^0.1.4:
|
|
1432
1311
|
version "0.1.4"
|
1433
1312
|
resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b"
|
1434
1313
|
|
1435
|
-
debug@2, debug@^2.1.1, debug@^2.2.0, debug
|
1436
|
-
version "2.2.0"
|
1437
|
-
resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da"
|
1438
|
-
dependencies:
|
1439
|
-
ms "0.7.1"
|
1440
|
-
|
1441
|
-
debug@^2.6.8:
|
1314
|
+
debug@2, debug@^2.1.1, debug@^2.2.0, debug@^2.6.8:
|
1442
1315
|
version "2.6.8"
|
1443
1316
|
resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc"
|
1444
1317
|
dependencies:
|
@@ -1453,8 +1326,8 @@ deep-equal@~1.0.1:
|
|
1453
1326
|
resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5"
|
1454
1327
|
|
1455
1328
|
deep-extend@~0.4.0:
|
1456
|
-
version "0.4.
|
1457
|
-
resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.
|
1329
|
+
version "0.4.2"
|
1330
|
+
resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f"
|
1458
1331
|
|
1459
1332
|
deep-is@~0.1.3:
|
1460
1333
|
version "0.1.3"
|
@@ -1557,8 +1430,8 @@ elliptic@^6.0.0:
|
|
1557
1430
|
minimalistic-crypto-utils "^1.0.0"
|
1558
1431
|
|
1559
1432
|
emoji-regex@^6.1.0:
|
1560
|
-
version "6.1
|
1561
|
-
resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-6.1.
|
1433
|
+
version "6.5.1"
|
1434
|
+
resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-6.5.1.tgz#9baea929b155565c11ea41c6626eaa65cef992c2"
|
1562
1435
|
|
1563
1436
|
emojis-list@^2.0.0:
|
1564
1437
|
version "2.1.0"
|
@@ -1586,19 +1459,20 @@ errno@^0.1.3:
|
|
1586
1459
|
prr "~0.0.0"
|
1587
1460
|
|
1588
1461
|
error-ex@^1.2.0:
|
1589
|
-
version "1.3.
|
1590
|
-
resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.
|
1462
|
+
version "1.3.1"
|
1463
|
+
resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc"
|
1591
1464
|
dependencies:
|
1592
1465
|
is-arrayish "^0.2.1"
|
1593
1466
|
|
1594
1467
|
es-abstract@^1.5.0, es-abstract@^1.7.0:
|
1595
|
-
version "1.
|
1596
|
-
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.
|
1468
|
+
version "1.8.2"
|
1469
|
+
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.8.2.tgz#25103263dc4decbda60e0c737ca32313518027ee"
|
1597
1470
|
dependencies:
|
1598
1471
|
es-to-primitive "^1.1.1"
|
1599
|
-
function-bind "^1.1.
|
1472
|
+
function-bind "^1.1.1"
|
1473
|
+
has "^1.0.1"
|
1600
1474
|
is-callable "^1.1.3"
|
1601
|
-
is-regex "^1.0.
|
1475
|
+
is-regex "^1.0.4"
|
1602
1476
|
|
1603
1477
|
es-to-primitive@^1.1.1:
|
1604
1478
|
version "1.1.1"
|
@@ -1608,72 +1482,72 @@ es-to-primitive@^1.1.1:
|
|
1608
1482
|
is-date-object "^1.0.1"
|
1609
1483
|
is-symbol "^1.0.1"
|
1610
1484
|
|
1611
|
-
es5-ext@^0.10.
|
1612
|
-
version "0.10.
|
1613
|
-
resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.
|
1485
|
+
es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14:
|
1486
|
+
version "0.10.30"
|
1487
|
+
resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.30.tgz#7141a16836697dbabfaaaeee41495ce29f52c939"
|
1614
1488
|
dependencies:
|
1615
1489
|
es6-iterator "2"
|
1616
1490
|
es6-symbol "~3.1"
|
1617
1491
|
|
1618
|
-
es6-iterator@2:
|
1619
|
-
version "2.0.
|
1620
|
-
resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.
|
1492
|
+
es6-iterator@2, es6-iterator@^2.0.1, es6-iterator@~2.0.1:
|
1493
|
+
version "2.0.1"
|
1494
|
+
resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512"
|
1621
1495
|
dependencies:
|
1622
|
-
d "
|
1623
|
-
es5-ext "^0.10.
|
1624
|
-
es6-symbol "3"
|
1496
|
+
d "1"
|
1497
|
+
es5-ext "^0.10.14"
|
1498
|
+
es6-symbol "^3.1"
|
1625
1499
|
|
1626
1500
|
es6-map@^0.1.3:
|
1627
|
-
version "0.1.
|
1628
|
-
resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.
|
1501
|
+
version "0.1.5"
|
1502
|
+
resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0"
|
1629
1503
|
dependencies:
|
1630
|
-
d "
|
1631
|
-
es5-ext "~0.10.
|
1632
|
-
es6-iterator "2"
|
1633
|
-
es6-set "~0.1.
|
1634
|
-
es6-symbol "~3.1.
|
1635
|
-
event-emitter "~0.3.
|
1504
|
+
d "1"
|
1505
|
+
es5-ext "~0.10.14"
|
1506
|
+
es6-iterator "~2.0.1"
|
1507
|
+
es6-set "~0.1.5"
|
1508
|
+
es6-symbol "~3.1.1"
|
1509
|
+
event-emitter "~0.3.5"
|
1636
1510
|
|
1637
|
-
es6-set@~0.1.
|
1638
|
-
version "0.1.
|
1639
|
-
resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.
|
1511
|
+
es6-set@~0.1.5:
|
1512
|
+
version "0.1.5"
|
1513
|
+
resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1"
|
1640
1514
|
dependencies:
|
1641
|
-
d "
|
1642
|
-
es5-ext "~0.10.
|
1643
|
-
es6-iterator "2"
|
1644
|
-
es6-symbol "3"
|
1645
|
-
event-emitter "~0.3.
|
1515
|
+
d "1"
|
1516
|
+
es5-ext "~0.10.14"
|
1517
|
+
es6-iterator "~2.0.1"
|
1518
|
+
es6-symbol "3.1.1"
|
1519
|
+
event-emitter "~0.3.5"
|
1646
1520
|
|
1647
|
-
es6-symbol@3, es6-symbol@~3.1, es6-symbol@~3.1.
|
1648
|
-
version "3.1.
|
1649
|
-
resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.
|
1521
|
+
es6-symbol@3.1.1, es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1, es6-symbol@~3.1.1:
|
1522
|
+
version "3.1.1"
|
1523
|
+
resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77"
|
1650
1524
|
dependencies:
|
1651
|
-
d "
|
1652
|
-
es5-ext "~0.10.
|
1525
|
+
d "1"
|
1526
|
+
es5-ext "~0.10.14"
|
1653
1527
|
|
1654
1528
|
es6-weak-map@^2.0.1:
|
1655
|
-
version "2.0.
|
1656
|
-
resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.
|
1529
|
+
version "2.0.2"
|
1530
|
+
resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f"
|
1657
1531
|
dependencies:
|
1658
|
-
d "
|
1659
|
-
es5-ext "^0.10.
|
1660
|
-
es6-iterator "2"
|
1661
|
-
es6-symbol "3"
|
1532
|
+
d "1"
|
1533
|
+
es5-ext "^0.10.14"
|
1534
|
+
es6-iterator "^2.0.1"
|
1535
|
+
es6-symbol "^3.1.1"
|
1662
1536
|
|
1663
1537
|
escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
|
1664
1538
|
version "1.0.5"
|
1665
1539
|
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
|
1666
1540
|
|
1667
1541
|
escodegen@^1.6.1:
|
1668
|
-
version "1.
|
1669
|
-
resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.
|
1542
|
+
version "1.9.0"
|
1543
|
+
resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.9.0.tgz#9811a2f265dc1cd3894420ee3717064b632b8852"
|
1670
1544
|
dependencies:
|
1671
|
-
esprima "^
|
1672
|
-
estraverse "^
|
1545
|
+
esprima "^3.1.3"
|
1546
|
+
estraverse "^4.2.0"
|
1673
1547
|
esutils "^2.0.2"
|
1674
1548
|
optionator "^0.8.1"
|
1675
1549
|
optionalDependencies:
|
1676
|
-
source-map "~0.
|
1550
|
+
source-map "~0.5.6"
|
1677
1551
|
|
1678
1552
|
escope@^3.6.0:
|
1679
1553
|
version "3.6.0"
|
@@ -1684,15 +1558,17 @@ escope@^3.6.0:
|
|
1684
1558
|
esrecurse "^4.1.0"
|
1685
1559
|
estraverse "^4.1.1"
|
1686
1560
|
|
1687
|
-
eslint-config-airbnb-base@^11.
|
1688
|
-
version "11.2
|
1689
|
-
resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-11.2.
|
1561
|
+
eslint-config-airbnb-base@^11.3.0:
|
1562
|
+
version "11.3.2"
|
1563
|
+
resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-11.3.2.tgz#8703b11abe3c88ac7ec2b745b7fdf52e00ae680a"
|
1564
|
+
dependencies:
|
1565
|
+
eslint-restricted-globals "^0.1.1"
|
1690
1566
|
|
1691
1567
|
eslint-config-airbnb@^15.0.1:
|
1692
|
-
version "15.0
|
1693
|
-
resolved "https://registry.yarnpkg.com/eslint-config-airbnb/-/eslint-config-airbnb-15.0.
|
1568
|
+
version "15.1.0"
|
1569
|
+
resolved "https://registry.yarnpkg.com/eslint-config-airbnb/-/eslint-config-airbnb-15.1.0.tgz#fd432965a906e30139001ba830f58f73aeddae8e"
|
1694
1570
|
dependencies:
|
1695
|
-
eslint-config-airbnb-base "^11.
|
1571
|
+
eslint-config-airbnb-base "^11.3.0"
|
1696
1572
|
|
1697
1573
|
eslint-config-shakacode@^15.0.0:
|
1698
1574
|
version "15.0.0"
|
@@ -1743,12 +1619,17 @@ eslint-plugin-jsx-a11y@^5.1.1:
|
|
1743
1619
|
jsx-ast-utils "^1.4.0"
|
1744
1620
|
|
1745
1621
|
eslint-plugin-react@^7.1.0:
|
1746
|
-
version "7.
|
1747
|
-
resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.
|
1622
|
+
version "7.3.0"
|
1623
|
+
resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.3.0.tgz#ca9368da36f733fbdc05718ae4e91f778f38e344"
|
1748
1624
|
dependencies:
|
1749
1625
|
doctrine "^2.0.0"
|
1750
1626
|
has "^1.0.1"
|
1751
|
-
jsx-ast-utils "^
|
1627
|
+
jsx-ast-utils "^2.0.0"
|
1628
|
+
prop-types "^15.5.10"
|
1629
|
+
|
1630
|
+
eslint-restricted-globals@^0.1.1:
|
1631
|
+
version "0.1.1"
|
1632
|
+
resolved "https://registry.yarnpkg.com/eslint-restricted-globals/-/eslint-restricted-globals-0.1.1.tgz#35f0d5cbc64c2e3ed62e93b4b1a7af05ba7ed4d7"
|
1752
1633
|
|
1753
1634
|
eslint@^3.19.0:
|
1754
1635
|
version "3.19.0"
|
@@ -1791,15 +1672,19 @@ eslint@^3.19.0:
|
|
1791
1672
|
user-home "^2.0.0"
|
1792
1673
|
|
1793
1674
|
espree@^3.4.0:
|
1794
|
-
version "3.
|
1795
|
-
resolved "https://registry.yarnpkg.com/espree/-/espree-3.
|
1675
|
+
version "3.5.0"
|
1676
|
+
resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.0.tgz#98358625bdd055861ea27e2867ea729faf463d8d"
|
1796
1677
|
dependencies:
|
1797
|
-
acorn "
|
1678
|
+
acorn "^5.1.1"
|
1798
1679
|
acorn-jsx "^3.0.0"
|
1799
1680
|
|
1800
|
-
esprima@^
|
1801
|
-
version "
|
1802
|
-
resolved "https://registry.yarnpkg.com/esprima/-/esprima-
|
1681
|
+
esprima@^3.1.3:
|
1682
|
+
version "3.1.3"
|
1683
|
+
resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633"
|
1684
|
+
|
1685
|
+
esprima@^4.0.0:
|
1686
|
+
version "4.0.0"
|
1687
|
+
resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804"
|
1803
1688
|
|
1804
1689
|
esquery@^1.0.0:
|
1805
1690
|
version "1.0.0"
|
@@ -1808,44 +1693,37 @@ esquery@^1.0.0:
|
|
1808
1693
|
estraverse "^4.0.0"
|
1809
1694
|
|
1810
1695
|
esrecurse@^4.1.0:
|
1811
|
-
version "4.
|
1812
|
-
resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.
|
1696
|
+
version "4.2.0"
|
1697
|
+
resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163"
|
1813
1698
|
dependencies:
|
1814
|
-
estraverse "
|
1699
|
+
estraverse "^4.1.0"
|
1815
1700
|
object-assign "^4.0.1"
|
1816
1701
|
|
1817
|
-
estraverse@^1.
|
1818
|
-
version "1.9.3"
|
1819
|
-
resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44"
|
1820
|
-
|
1821
|
-
estraverse@^4.0.0, estraverse@^4.1.1, estraverse@^4.2.0:
|
1702
|
+
estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0:
|
1822
1703
|
version "4.2.0"
|
1823
1704
|
resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
|
1824
1705
|
|
1825
|
-
|
1826
|
-
version "4.1.1"
|
1827
|
-
resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2"
|
1828
|
-
|
1829
|
-
esutils@^2.0.0, esutils@^2.0.2:
|
1706
|
+
esutils@^2.0.2:
|
1830
1707
|
version "2.0.2"
|
1831
1708
|
resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
|
1832
1709
|
|
1833
|
-
event-emitter@~0.3.
|
1834
|
-
version "0.3.
|
1835
|
-
resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.
|
1710
|
+
event-emitter@~0.3.5:
|
1711
|
+
version "0.3.5"
|
1712
|
+
resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39"
|
1836
1713
|
dependencies:
|
1837
|
-
d "
|
1838
|
-
es5-ext "~0.10.
|
1714
|
+
d "1"
|
1715
|
+
es5-ext "~0.10.14"
|
1839
1716
|
|
1840
1717
|
events@^1.0.0:
|
1841
1718
|
version "1.1.1"
|
1842
1719
|
resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924"
|
1843
1720
|
|
1844
|
-
evp_bytestokey@^1.0.0:
|
1845
|
-
version "1.0.
|
1846
|
-
resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.
|
1721
|
+
evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3:
|
1722
|
+
version "1.0.3"
|
1723
|
+
resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02"
|
1847
1724
|
dependencies:
|
1848
|
-
|
1725
|
+
md5.js "^1.3.4"
|
1726
|
+
safe-buffer "^5.1.1"
|
1849
1727
|
|
1850
1728
|
execa@^0.7.0:
|
1851
1729
|
version "0.7.0"
|
@@ -1876,13 +1754,15 @@ expand-range@^1.8.1:
|
|
1876
1754
|
fill-range "^2.1.0"
|
1877
1755
|
|
1878
1756
|
extend@3, extend@~3.0.0:
|
1879
|
-
version "3.0.
|
1880
|
-
resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.
|
1757
|
+
version "3.0.1"
|
1758
|
+
resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444"
|
1881
1759
|
|
1882
1760
|
external-editor@^2.0.1:
|
1883
|
-
version "2.0.
|
1884
|
-
resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.0.
|
1761
|
+
version "2.0.4"
|
1762
|
+
resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.0.4.tgz#1ed9199da9cbfe2ef2f7a31b2fde8b0d12368972"
|
1885
1763
|
dependencies:
|
1764
|
+
iconv-lite "^0.4.17"
|
1765
|
+
jschardet "^1.4.2"
|
1886
1766
|
tmp "^0.0.31"
|
1887
1767
|
|
1888
1768
|
extglob@^0.3.1:
|
@@ -1891,21 +1771,21 @@ extglob@^0.3.1:
|
|
1891
1771
|
dependencies:
|
1892
1772
|
is-extglob "^1.0.0"
|
1893
1773
|
|
1894
|
-
extsprintf@1.0.2:
|
1895
|
-
version "1.0
|
1896
|
-
resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.
|
1774
|
+
extsprintf@1.3.0, extsprintf@^1.2.0:
|
1775
|
+
version "1.3.0"
|
1776
|
+
resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05"
|
1897
1777
|
|
1898
1778
|
fast-deep-equal@^1.0.0:
|
1899
1779
|
version "1.0.0"
|
1900
1780
|
resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff"
|
1901
1781
|
|
1902
1782
|
fast-levenshtein@~2.0.4:
|
1903
|
-
version "2.0.
|
1904
|
-
resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.
|
1783
|
+
version "2.0.6"
|
1784
|
+
resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
|
1905
1785
|
|
1906
1786
|
fbjs@^0.8.9:
|
1907
|
-
version "0.8.
|
1908
|
-
resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.
|
1787
|
+
version "0.8.15"
|
1788
|
+
resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.15.tgz#4f0695fdfcc16c37c0b07facec8cb4c4091685b9"
|
1909
1789
|
dependencies:
|
1910
1790
|
core-js "^1.0.0"
|
1911
1791
|
isomorphic-fetch "^2.1.1"
|
@@ -1936,8 +1816,8 @@ file-entry-cache@^2.0.0:
|
|
1936
1816
|
object-assign "^4.0.1"
|
1937
1817
|
|
1938
1818
|
filename-regex@^2.0.0:
|
1939
|
-
version "2.0.
|
1940
|
-
resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.
|
1819
|
+
version "2.0.1"
|
1820
|
+
resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26"
|
1941
1821
|
|
1942
1822
|
fill-range@^2.1.0:
|
1943
1823
|
version "2.2.3"
|
@@ -1971,10 +1851,10 @@ find-up@^2.0.0, find-up@^2.1.0:
|
|
1971
1851
|
locate-path "^2.0.0"
|
1972
1852
|
|
1973
1853
|
flat-cache@^1.2.1:
|
1974
|
-
version "1.2.
|
1975
|
-
resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.
|
1854
|
+
version "1.2.2"
|
1855
|
+
resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96"
|
1976
1856
|
dependencies:
|
1977
|
-
circular-json "^0.3.
|
1857
|
+
circular-json "^0.3.1"
|
1978
1858
|
del "^2.0.2"
|
1979
1859
|
graceful-fs "^4.1.2"
|
1980
1860
|
write "^0.2.1"
|
@@ -1996,15 +1876,15 @@ for-each@~0.3.2:
|
|
1996
1876
|
dependencies:
|
1997
1877
|
is-function "~1.0.0"
|
1998
1878
|
|
1999
|
-
for-in@^0.1
|
2000
|
-
version "0.
|
2001
|
-
resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.
|
1879
|
+
for-in@^1.0.1:
|
1880
|
+
version "1.0.2"
|
1881
|
+
resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
|
2002
1882
|
|
2003
1883
|
for-own@^0.1.4:
|
2004
|
-
version "0.1.
|
2005
|
-
resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.
|
1884
|
+
version "0.1.5"
|
1885
|
+
resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce"
|
2006
1886
|
dependencies:
|
2007
|
-
for-in "^0.1
|
1887
|
+
for-in "^1.0.1"
|
2008
1888
|
|
2009
1889
|
foreach@^2.0.5:
|
2010
1890
|
version "2.0.5"
|
@@ -2015,8 +1895,8 @@ forever-agent@~0.6.1:
|
|
2015
1895
|
resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
|
2016
1896
|
|
2017
1897
|
form-data@~2.1.1:
|
2018
|
-
version "2.1.
|
2019
|
-
resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.
|
1898
|
+
version "2.1.4"
|
1899
|
+
resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1"
|
2020
1900
|
dependencies:
|
2021
1901
|
asynckit "^0.4.0"
|
2022
1902
|
combined-stream "^1.0.5"
|
@@ -2041,13 +1921,13 @@ fs.realpath@^1.0.0:
|
|
2041
1921
|
resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
|
2042
1922
|
|
2043
1923
|
fsevents@^1.0.0:
|
2044
|
-
version "1.
|
2045
|
-
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.
|
1924
|
+
version "1.1.2"
|
1925
|
+
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4"
|
2046
1926
|
dependencies:
|
2047
1927
|
nan "^2.3.0"
|
2048
|
-
node-pre-gyp "^0.6.
|
1928
|
+
node-pre-gyp "^0.6.36"
|
2049
1929
|
|
2050
|
-
fstream-ignore
|
1930
|
+
fstream-ignore@^1.0.5:
|
2051
1931
|
version "1.0.5"
|
2052
1932
|
resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105"
|
2053
1933
|
dependencies:
|
@@ -2055,26 +1935,25 @@ fstream-ignore@~1.0.5:
|
|
2055
1935
|
inherits "2"
|
2056
1936
|
minimatch "^3.0.0"
|
2057
1937
|
|
2058
|
-
fstream@^1.0.0, fstream@^1.0.
|
2059
|
-
version "1.0.
|
2060
|
-
resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.
|
1938
|
+
fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2:
|
1939
|
+
version "1.0.11"
|
1940
|
+
resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171"
|
2061
1941
|
dependencies:
|
2062
1942
|
graceful-fs "^4.1.2"
|
2063
1943
|
inherits "~2.0.0"
|
2064
1944
|
mkdirp ">=0.5 0"
|
2065
1945
|
rimraf "2"
|
2066
1946
|
|
2067
|
-
function-bind@^1.0.2, function-bind@^1.1.
|
2068
|
-
version "1.1.
|
2069
|
-
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.
|
1947
|
+
function-bind@^1.0.2, function-bind@^1.1.1, function-bind@~1.1.0:
|
1948
|
+
version "1.1.1"
|
1949
|
+
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
|
2070
1950
|
|
2071
|
-
gauge@~2.
|
2072
|
-
version "2.
|
2073
|
-
resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.
|
1951
|
+
gauge@~2.7.3:
|
1952
|
+
version "2.7.4"
|
1953
|
+
resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
|
2074
1954
|
dependencies:
|
2075
1955
|
aproba "^1.0.3"
|
2076
1956
|
console-control-strings "^1.0.0"
|
2077
|
-
has-color "^0.1.7"
|
2078
1957
|
has-unicode "^2.0.0"
|
2079
1958
|
object-assign "^4.1.0"
|
2080
1959
|
signal-exit "^3.0.0"
|
@@ -2101,8 +1980,8 @@ get-stream@^3.0.0:
|
|
2101
1980
|
resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14"
|
2102
1981
|
|
2103
1982
|
getpass@^0.1.1:
|
2104
|
-
version "0.1.
|
2105
|
-
resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.
|
1983
|
+
version "0.1.7"
|
1984
|
+
resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
|
2106
1985
|
dependencies:
|
2107
1986
|
assert-plus "^1.0.0"
|
2108
1987
|
|
@@ -2128,7 +2007,7 @@ glob-parent@^2.0.0:
|
|
2128
2007
|
dependencies:
|
2129
2008
|
is-glob "^2.0.0"
|
2130
2009
|
|
2131
|
-
glob@7.1.1
|
2010
|
+
glob@7.1.1:
|
2132
2011
|
version "7.1.1"
|
2133
2012
|
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8"
|
2134
2013
|
dependencies:
|
@@ -2149,7 +2028,7 @@ glob@^6.0.1:
|
|
2149
2028
|
once "^1.3.0"
|
2150
2029
|
path-is-absolute "^1.0.0"
|
2151
2030
|
|
2152
|
-
glob@~7.1.2:
|
2031
|
+
glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.1.2, glob@~7.1.2:
|
2153
2032
|
version "7.1.2"
|
2154
2033
|
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
|
2155
2034
|
dependencies:
|
@@ -2161,15 +2040,15 @@ glob@~7.1.2:
|
|
2161
2040
|
path-is-absolute "^1.0.0"
|
2162
2041
|
|
2163
2042
|
global@^4.3.0:
|
2164
|
-
version "4.3.
|
2165
|
-
resolved "https://registry.yarnpkg.com/global/-/global-4.3.
|
2043
|
+
version "4.3.2"
|
2044
|
+
resolved "https://registry.yarnpkg.com/global/-/global-4.3.2.tgz#e76989268a6c74c38908b1305b10fc0e394e9d0f"
|
2166
2045
|
dependencies:
|
2167
2046
|
min-document "^2.19.0"
|
2168
2047
|
process "~0.5.1"
|
2169
2048
|
|
2170
|
-
globals@^9.
|
2171
|
-
version "9.
|
2172
|
-
resolved "https://registry.yarnpkg.com/globals/-/globals-9.
|
2049
|
+
globals@^9.14.0, globals@^9.18.0:
|
2050
|
+
version "9.18.0"
|
2051
|
+
resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a"
|
2173
2052
|
|
2174
2053
|
globby@^5.0.0:
|
2175
2054
|
version "5.0.0"
|
@@ -2186,18 +2065,16 @@ graceful-fs@4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.4, graceful-fs@^4.1.6,
|
|
2186
2065
|
version "4.1.11"
|
2187
2066
|
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
|
2188
2067
|
|
2189
|
-
|
2190
|
-
version "1.0.
|
2191
|
-
resolved "https://registry.yarnpkg.com/
|
2068
|
+
har-schema@^1.0.5:
|
2069
|
+
version "1.0.5"
|
2070
|
+
resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e"
|
2192
2071
|
|
2193
|
-
har-validator@~2.
|
2194
|
-
version "2.
|
2195
|
-
resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.
|
2072
|
+
har-validator@~4.2.1:
|
2073
|
+
version "4.2.1"
|
2074
|
+
resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a"
|
2196
2075
|
dependencies:
|
2197
|
-
|
2198
|
-
|
2199
|
-
is-my-json-valid "^2.12.4"
|
2200
|
-
pinkie-promise "^2.0.0"
|
2076
|
+
ajv "^4.9.1"
|
2077
|
+
har-schema "^1.0.5"
|
2201
2078
|
|
2202
2079
|
has-ansi@^2.0.0:
|
2203
2080
|
version "2.0.0"
|
@@ -2205,10 +2082,6 @@ has-ansi@^2.0.0:
|
|
2205
2082
|
dependencies:
|
2206
2083
|
ansi-regex "^2.0.0"
|
2207
2084
|
|
2208
|
-
has-color@^0.1.7:
|
2209
|
-
version "0.1.7"
|
2210
|
-
resolved "https://registry.yarnpkg.com/has-color/-/has-color-0.1.7.tgz#67144a5260c34fc3cca677d041daf52fe7b78b2f"
|
2211
|
-
|
2212
2085
|
has-flag@^2.0.0:
|
2213
2086
|
version "2.0.0"
|
2214
2087
|
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51"
|
@@ -2223,11 +2096,25 @@ has@^1.0.1, has@~1.0.1:
|
|
2223
2096
|
dependencies:
|
2224
2097
|
function-bind "^1.0.2"
|
2225
2098
|
|
2226
|
-
hash
|
2227
|
-
version "
|
2228
|
-
resolved "https://registry.yarnpkg.com/hash
|
2099
|
+
hash-base@^2.0.0:
|
2100
|
+
version "2.0.2"
|
2101
|
+
resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-2.0.2.tgz#66ea1d856db4e8a5470cadf6fce23ae5244ef2e1"
|
2102
|
+
dependencies:
|
2103
|
+
inherits "^2.0.1"
|
2104
|
+
|
2105
|
+
hash-base@^3.0.0:
|
2106
|
+
version "3.0.4"
|
2107
|
+
resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918"
|
2229
2108
|
dependencies:
|
2230
2109
|
inherits "^2.0.1"
|
2110
|
+
safe-buffer "^5.0.1"
|
2111
|
+
|
2112
|
+
hash.js@^1.0.0, hash.js@^1.0.3:
|
2113
|
+
version "1.1.3"
|
2114
|
+
resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.3.tgz#340dedbe6290187151c1ea1d777a3448935df846"
|
2115
|
+
dependencies:
|
2116
|
+
inherits "^2.0.3"
|
2117
|
+
minimalistic-assert "^1.0.0"
|
2231
2118
|
|
2232
2119
|
hawk@~3.1.3:
|
2233
2120
|
version "3.1.3"
|
@@ -2239,8 +2126,8 @@ hawk@~3.1.3:
|
|
2239
2126
|
sntp "1.x.x"
|
2240
2127
|
|
2241
2128
|
hmac-drbg@^1.0.0:
|
2242
|
-
version "1.0.
|
2243
|
-
resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.
|
2129
|
+
version "1.0.1"
|
2130
|
+
resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1"
|
2244
2131
|
dependencies:
|
2245
2132
|
hash.js "^1.0.3"
|
2246
2133
|
minimalistic-assert "^1.0.0"
|
@@ -2262,8 +2149,8 @@ home-or-tmp@^2.0.0:
|
|
2262
2149
|
os-tmpdir "^1.0.1"
|
2263
2150
|
|
2264
2151
|
hosted-git-info@^2.1.4:
|
2265
|
-
version "2.
|
2266
|
-
resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.
|
2152
|
+
version "2.5.0"
|
2153
|
+
resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c"
|
2267
2154
|
|
2268
2155
|
html-encoding-sniffer@^1.0.1:
|
2269
2156
|
version "1.0.1"
|
@@ -2291,17 +2178,21 @@ https-proxy-agent@^1.0.0:
|
|
2291
2178
|
debug "2"
|
2292
2179
|
extend "3"
|
2293
2180
|
|
2294
|
-
iconv-lite@0.4.13
|
2181
|
+
iconv-lite@0.4.13:
|
2295
2182
|
version "0.4.13"
|
2296
2183
|
resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2"
|
2297
2184
|
|
2185
|
+
iconv-lite@^0.4.17, iconv-lite@~0.4.13:
|
2186
|
+
version "0.4.19"
|
2187
|
+
resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b"
|
2188
|
+
|
2298
2189
|
ieee754@^1.1.4:
|
2299
2190
|
version "1.1.8"
|
2300
2191
|
resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4"
|
2301
2192
|
|
2302
2193
|
ignore@^3.2.0:
|
2303
|
-
version "3.
|
2304
|
-
resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.
|
2194
|
+
version "3.3.5"
|
2195
|
+
resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.5.tgz#c4e715455f6073a8d7e5dae72d2fc9d71663dba6"
|
2305
2196
|
|
2306
2197
|
imurmurhash@^0.1.4:
|
2307
2198
|
version "0.1.4"
|
@@ -2367,21 +2258,15 @@ inquirer@^0.12.0:
|
|
2367
2258
|
through "^2.3.6"
|
2368
2259
|
|
2369
2260
|
interpret@^1.0.0:
|
2370
|
-
version "1.0.
|
2371
|
-
resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.
|
2261
|
+
version "1.0.3"
|
2262
|
+
resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.3.tgz#cbc35c62eeee73f19ab7b10a801511401afc0f90"
|
2372
2263
|
|
2373
|
-
invariant@^2.0.0:
|
2264
|
+
invariant@^2.0.0, invariant@^2.2.2:
|
2374
2265
|
version "2.2.2"
|
2375
2266
|
resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360"
|
2376
2267
|
dependencies:
|
2377
2268
|
loose-envify "^1.0.0"
|
2378
2269
|
|
2379
|
-
invariant@^2.2.0:
|
2380
|
-
version "2.2.1"
|
2381
|
-
resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.1.tgz#b097010547668c7e337028ebe816ebe36c8a8d54"
|
2382
|
-
dependencies:
|
2383
|
-
loose-envify "^1.0.0"
|
2384
|
-
|
2385
2270
|
invert-kv@^1.0.0:
|
2386
2271
|
version "1.0.0"
|
2387
2272
|
resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"
|
@@ -2396,9 +2281,9 @@ is-binary-path@^1.0.0:
|
|
2396
2281
|
dependencies:
|
2397
2282
|
binary-extensions "^1.0.0"
|
2398
2283
|
|
2399
|
-
is-buffer@^1.
|
2400
|
-
version "1.1.
|
2401
|
-
resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.
|
2284
|
+
is-buffer@^1.1.5:
|
2285
|
+
version "1.1.5"
|
2286
|
+
resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc"
|
2402
2287
|
|
2403
2288
|
is-builtin-module@^1.0.0:
|
2404
2289
|
version "1.0.0"
|
@@ -2415,8 +2300,8 @@ is-date-object@^1.0.1:
|
|
2415
2300
|
resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16"
|
2416
2301
|
|
2417
2302
|
is-dotfile@^1.0.0:
|
2418
|
-
version "1.0.
|
2419
|
-
resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.
|
2303
|
+
version "1.0.3"
|
2304
|
+
resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1"
|
2420
2305
|
|
2421
2306
|
is-equal-shallow@^0.1.3:
|
2422
2307
|
version "0.1.3"
|
@@ -2458,21 +2343,27 @@ is-glob@^2.0.0, is-glob@^2.0.1:
|
|
2458
2343
|
dependencies:
|
2459
2344
|
is-extglob "^1.0.0"
|
2460
2345
|
|
2461
|
-
is-my-json-valid@^2.10.0
|
2462
|
-
version "2.
|
2463
|
-
resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.
|
2346
|
+
is-my-json-valid@^2.10.0:
|
2347
|
+
version "2.16.1"
|
2348
|
+
resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.1.tgz#5a846777e2c2620d1e69104e5d3a03b1f6088f11"
|
2464
2349
|
dependencies:
|
2465
2350
|
generate-function "^2.0.0"
|
2466
2351
|
generate-object-property "^1.1.0"
|
2467
2352
|
jsonpointer "^4.0.0"
|
2468
2353
|
xtend "^4.0.0"
|
2469
2354
|
|
2470
|
-
is-number@^2.
|
2355
|
+
is-number@^2.1.0:
|
2471
2356
|
version "2.1.0"
|
2472
2357
|
resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f"
|
2473
2358
|
dependencies:
|
2474
2359
|
kind-of "^3.0.2"
|
2475
2360
|
|
2361
|
+
is-number@^3.0.0:
|
2362
|
+
version "3.0.0"
|
2363
|
+
resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
|
2364
|
+
dependencies:
|
2365
|
+
kind-of "^3.0.2"
|
2366
|
+
|
2476
2367
|
is-path-cwd@^1.0.0:
|
2477
2368
|
version "1.0.0"
|
2478
2369
|
resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d"
|
@@ -2505,9 +2396,11 @@ is-property@^1.0.0:
|
|
2505
2396
|
version "1.0.2"
|
2506
2397
|
resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84"
|
2507
2398
|
|
2508
|
-
is-regex@^1.0.
|
2509
|
-
version "1.0.
|
2510
|
-
resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.
|
2399
|
+
is-regex@^1.0.4:
|
2400
|
+
version "1.0.4"
|
2401
|
+
resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491"
|
2402
|
+
dependencies:
|
2403
|
+
has "^1.0.1"
|
2511
2404
|
|
2512
2405
|
is-resolvable@^1.0.0:
|
2513
2406
|
version "1.0.0"
|
@@ -2552,34 +2445,28 @@ isstream@~0.1.2:
|
|
2552
2445
|
version "0.1.2"
|
2553
2446
|
resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
|
2554
2447
|
|
2555
|
-
|
2556
|
-
version "
|
2557
|
-
resolved "https://registry.yarnpkg.com/
|
2558
|
-
dependencies:
|
2559
|
-
jsbn "~0.1.0"
|
2560
|
-
|
2561
|
-
js-tokens@^2.0.0:
|
2562
|
-
version "2.0.0"
|
2563
|
-
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-2.0.0.tgz#79903f5563ee778cc1162e6dcf1a0027c97f9cb5"
|
2564
|
-
|
2565
|
-
js-tokens@^3.0.0:
|
2566
|
-
version "3.0.1"
|
2567
|
-
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7"
|
2448
|
+
js-tokens@^3.0.0, js-tokens@^3.0.2:
|
2449
|
+
version "3.0.2"
|
2450
|
+
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
|
2568
2451
|
|
2569
2452
|
js-yaml@^3.5.1:
|
2570
|
-
version "3.
|
2571
|
-
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.
|
2453
|
+
version "3.9.1"
|
2454
|
+
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.9.1.tgz#08775cebdfdd359209f0d2acd383c8f86a6904a0"
|
2572
2455
|
dependencies:
|
2573
2456
|
argparse "^1.0.7"
|
2574
|
-
esprima "^
|
2457
|
+
esprima "^4.0.0"
|
2575
2458
|
|
2576
2459
|
jsbn@~0.1.0:
|
2577
|
-
version "0.1.
|
2578
|
-
resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.
|
2460
|
+
version "0.1.1"
|
2461
|
+
resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
|
2462
|
+
|
2463
|
+
jschardet@^1.4.2:
|
2464
|
+
version "1.5.1"
|
2465
|
+
resolved "https://registry.yarnpkg.com/jschardet/-/jschardet-1.5.1.tgz#c519f629f86b3a5bedba58a88d311309eec097f9"
|
2579
2466
|
|
2580
2467
|
jsdom@^11.1.0:
|
2581
|
-
version "11.
|
2582
|
-
resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-11.
|
2468
|
+
version "11.2.0"
|
2469
|
+
resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-11.2.0.tgz#4f6b8736af3357c3af7227a3b54a5bda1c513fd6"
|
2583
2470
|
dependencies:
|
2584
2471
|
abab "^1.0.3"
|
2585
2472
|
acorn "^4.0.4"
|
@@ -2612,8 +2499,8 @@ jsesc@~0.5.0:
|
|
2612
2499
|
resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
|
2613
2500
|
|
2614
2501
|
json-loader@^0.5.4:
|
2615
|
-
version "0.5.
|
2616
|
-
resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.
|
2502
|
+
version "0.5.7"
|
2503
|
+
resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.7.tgz#dca14a70235ff82f0ac9a3abeb60d337a365185d"
|
2617
2504
|
|
2618
2505
|
json-schema-traverse@^0.3.0:
|
2619
2506
|
version "0.3.1"
|
@@ -2633,11 +2520,7 @@ json-stringify-safe@~5.0.1:
|
|
2633
2520
|
version "5.0.1"
|
2634
2521
|
resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
|
2635
2522
|
|
2636
|
-
json5@^0.5.0:
|
2637
|
-
version "0.5.0"
|
2638
|
-
resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.0.tgz#9b20715b026cbe3778fd769edccd822d8332a5b2"
|
2639
|
-
|
2640
|
-
json5@^0.5.1:
|
2523
|
+
json5@^0.5.0, json5@^0.5.1:
|
2641
2524
|
version "0.5.1"
|
2642
2525
|
resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
|
2643
2526
|
|
@@ -2652,26 +2535,39 @@ jsonify@~0.0.0:
|
|
2652
2535
|
resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
|
2653
2536
|
|
2654
2537
|
jsonpointer@^4.0.0:
|
2655
|
-
version "4.0.
|
2656
|
-
resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.
|
2538
|
+
version "4.0.1"
|
2539
|
+
resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9"
|
2657
2540
|
|
2658
2541
|
jsprim@^1.2.2:
|
2659
|
-
version "1.
|
2660
|
-
resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.
|
2542
|
+
version "1.4.1"
|
2543
|
+
resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"
|
2661
2544
|
dependencies:
|
2662
|
-
|
2545
|
+
assert-plus "1.0.0"
|
2546
|
+
extsprintf "1.3.0"
|
2663
2547
|
json-schema "0.2.3"
|
2664
|
-
verror "1.
|
2548
|
+
verror "1.10.0"
|
2665
2549
|
|
2666
|
-
jsx-ast-utils@^1.4.0
|
2550
|
+
jsx-ast-utils@^1.4.0:
|
2667
2551
|
version "1.4.1"
|
2668
2552
|
resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-1.4.1.tgz#3867213e8dd79bf1e8f2300c0cfc1efb182c0df1"
|
2669
2553
|
|
2554
|
+
jsx-ast-utils@^2.0.0:
|
2555
|
+
version "2.0.1"
|
2556
|
+
resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.0.1.tgz#e801b1b39985e20fffc87b40e3748080e2dcac7f"
|
2557
|
+
dependencies:
|
2558
|
+
array-includes "^3.0.3"
|
2559
|
+
|
2670
2560
|
kind-of@^3.0.2:
|
2671
|
-
version "3.
|
2672
|
-
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.
|
2561
|
+
version "3.2.2"
|
2562
|
+
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
|
2563
|
+
dependencies:
|
2564
|
+
is-buffer "^1.1.5"
|
2565
|
+
|
2566
|
+
kind-of@^4.0.0:
|
2567
|
+
version "4.0.0"
|
2568
|
+
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57"
|
2673
2569
|
dependencies:
|
2674
|
-
is-buffer "^1.
|
2570
|
+
is-buffer "^1.1.5"
|
2675
2571
|
|
2676
2572
|
klaw@^1.0.0:
|
2677
2573
|
version "1.3.1"
|
@@ -2724,27 +2620,19 @@ locate-path@^2.0.0:
|
|
2724
2620
|
p-locate "^2.0.0"
|
2725
2621
|
path-exists "^3.0.0"
|
2726
2622
|
|
2727
|
-
lodash-es@^4.2.0:
|
2623
|
+
lodash-es@^4.2.0, lodash-es@^4.2.1:
|
2728
2624
|
version "4.17.4"
|
2729
2625
|
resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.4.tgz#dcc1d7552e150a0640073ba9cb31d70f032950e7"
|
2730
2626
|
|
2731
|
-
lodash-es@^4.2.1:
|
2732
|
-
version "4.16.4"
|
2733
|
-
resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.16.4.tgz#4dc3e2cf33a8c343028aa7f7e06d1c9697042599"
|
2734
|
-
|
2735
2627
|
lodash.cond@^4.3.0:
|
2736
2628
|
version "4.5.2"
|
2737
2629
|
resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5"
|
2738
2630
|
|
2739
|
-
lodash.pickby@^4.6.0:
|
2740
|
-
version "4.6.0"
|
2741
|
-
resolved "https://registry.yarnpkg.com/lodash.pickby/-/lodash.pickby-4.6.0.tgz#7dea21d8c18d7703a27c704c15d3b84a67e33aff"
|
2742
|
-
|
2743
2631
|
lodash.sortby@^4.7.0:
|
2744
2632
|
version "4.7.0"
|
2745
2633
|
resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438"
|
2746
2634
|
|
2747
|
-
lodash@4.17.4, "lodash@>=3.5 <5", lodash@^4.13.1, lodash@^4.14.0, lodash@^4.3.0:
|
2635
|
+
lodash@4.17.4, "lodash@>=3.5 <5", lodash@^4.0.0, lodash@^4.13.1, lodash@^4.14.0, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.2.1, lodash@^4.3.0, lodash@^4.6.1:
|
2748
2636
|
version "4.17.4"
|
2749
2637
|
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae"
|
2750
2638
|
|
@@ -2752,21 +2640,11 @@ lodash@^3.6.0:
|
|
2752
2640
|
version "3.10.1"
|
2753
2641
|
resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6"
|
2754
2642
|
|
2755
|
-
lodash@^4.0.0, lodash@^4.2.0, lodash@^4.2.1, lodash@^4.6.1:
|
2756
|
-
version "4.16.4"
|
2757
|
-
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.16.4.tgz#01ce306b9bad1319f2a5528674f88297aeb70127"
|
2758
|
-
|
2759
2643
|
longest@^1.0.1:
|
2760
2644
|
version "1.0.1"
|
2761
2645
|
resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097"
|
2762
2646
|
|
2763
|
-
loose-envify@^1.0.0, loose-envify@^1.1.0:
|
2764
|
-
version "1.3.0"
|
2765
|
-
resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.0.tgz#6b26248c42f6d4fa4b0d8542f78edfcde35642a8"
|
2766
|
-
dependencies:
|
2767
|
-
js-tokens "^2.0.0"
|
2768
|
-
|
2769
|
-
loose-envify@^1.3.1:
|
2647
|
+
loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.3.1:
|
2770
2648
|
version "1.3.1"
|
2771
2649
|
resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848"
|
2772
2650
|
dependencies:
|
@@ -2785,6 +2663,13 @@ make-dir@^1.0.0:
|
|
2785
2663
|
dependencies:
|
2786
2664
|
pify "^2.3.0"
|
2787
2665
|
|
2666
|
+
md5.js@^1.3.4:
|
2667
|
+
version "1.3.4"
|
2668
|
+
resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.4.tgz#e9bdbde94a20a5ac18b04340fc5764d5b09d901d"
|
2669
|
+
dependencies:
|
2670
|
+
hash-base "^3.0.0"
|
2671
|
+
inherits "^2.0.1"
|
2672
|
+
|
2788
2673
|
mem@^1.1.0:
|
2789
2674
|
version "1.1.0"
|
2790
2675
|
resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76"
|
@@ -2823,19 +2708,19 @@ miller-rabin@^4.0.0:
|
|
2823
2708
|
bn.js "^4.0.0"
|
2824
2709
|
brorand "^1.0.1"
|
2825
2710
|
|
2826
|
-
mime-db@~1.
|
2827
|
-
version "1.
|
2828
|
-
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.
|
2711
|
+
mime-db@~1.30.0:
|
2712
|
+
version "1.30.0"
|
2713
|
+
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01"
|
2829
2714
|
|
2830
2715
|
mime-types@^2.1.12, mime-types@~2.1.7:
|
2831
|
-
version "2.1.
|
2832
|
-
resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.
|
2716
|
+
version "2.1.17"
|
2717
|
+
resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a"
|
2833
2718
|
dependencies:
|
2834
|
-
mime-db "~1.
|
2719
|
+
mime-db "~1.30.0"
|
2835
2720
|
|
2836
2721
|
mime@^1.2.11:
|
2837
|
-
version "1.
|
2838
|
-
resolved "https://registry.yarnpkg.com/mime/-/mime-1.
|
2722
|
+
version "1.4.0"
|
2723
|
+
resolved "https://registry.yarnpkg.com/mime/-/mime-1.4.0.tgz#69e9e0db51d44f2a3b56e48b7817d7d137f1a343"
|
2839
2724
|
|
2840
2725
|
mimic-fn@^1.0.0:
|
2841
2726
|
version "1.1.0"
|
@@ -2855,13 +2740,7 @@ minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1:
|
|
2855
2740
|
version "1.0.1"
|
2856
2741
|
resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
|
2857
2742
|
|
2858
|
-
"minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3:
|
2859
|
-
version "3.0.3"
|
2860
|
-
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774"
|
2861
|
-
dependencies:
|
2862
|
-
brace-expansion "^1.0.0"
|
2863
|
-
|
2864
|
-
minimatch@^3.0.4:
|
2743
|
+
"minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4:
|
2865
2744
|
version "3.0.4"
|
2866
2745
|
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
|
2867
2746
|
dependencies:
|
@@ -2875,16 +2754,12 @@ minimist@1.2.0, minimist@^1.2.0, minimist@~1.2.0:
|
|
2875
2754
|
version "1.2.0"
|
2876
2755
|
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
|
2877
2756
|
|
2878
|
-
mkdirp@0.5.1, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0
|
2757
|
+
mkdirp@0.5.1, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0:
|
2879
2758
|
version "0.5.1"
|
2880
2759
|
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
|
2881
2760
|
dependencies:
|
2882
2761
|
minimist "0.0.8"
|
2883
2762
|
|
2884
|
-
ms@0.7.1:
|
2885
|
-
version "0.7.1"
|
2886
|
-
resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098"
|
2887
|
-
|
2888
2763
|
ms@2.0.0:
|
2889
2764
|
version "2.0.0"
|
2890
2765
|
resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
|
@@ -2898,8 +2773,8 @@ mute-stream@0.0.7:
|
|
2898
2773
|
resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"
|
2899
2774
|
|
2900
2775
|
nan@^2.3.0:
|
2901
|
-
version "2.
|
2902
|
-
resolved "https://registry.yarnpkg.com/nan/-/nan-2.
|
2776
|
+
version "2.7.0"
|
2777
|
+
resolved "https://registry.yarnpkg.com/nan/-/nan-2.7.0.tgz#d95bf721ec877e08db276ed3fc6eb78f9083ad46"
|
2903
2778
|
|
2904
2779
|
natural-compare@^1.4.0:
|
2905
2780
|
version "1.4.0"
|
@@ -2910,8 +2785,8 @@ netrc@^0.1.4:
|
|
2910
2785
|
resolved "https://registry.yarnpkg.com/netrc/-/netrc-0.1.4.tgz#6be94fcaca8d77ade0a9670dc460914c94472444"
|
2911
2786
|
|
2912
2787
|
node-fetch@^1.0.1:
|
2913
|
-
version "1.
|
2914
|
-
resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.
|
2788
|
+
version "1.7.3"
|
2789
|
+
resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef"
|
2915
2790
|
dependencies:
|
2916
2791
|
encoding "^0.1.11"
|
2917
2792
|
is-stream "^1.0.1"
|
@@ -2944,38 +2819,42 @@ node-libs-browser@^2.0.0:
|
|
2944
2819
|
util "^0.10.3"
|
2945
2820
|
vm-browserify "0.0.4"
|
2946
2821
|
|
2947
|
-
node-pre-gyp@^0.6.
|
2948
|
-
version "0.6.
|
2949
|
-
resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.
|
2950
|
-
dependencies:
|
2951
|
-
mkdirp "
|
2952
|
-
nopt "
|
2953
|
-
npmlog "^4.0.
|
2954
|
-
rc "
|
2955
|
-
request "^2.
|
2956
|
-
rimraf "
|
2957
|
-
semver "
|
2958
|
-
|
2959
|
-
tar
|
2960
|
-
|
2961
|
-
|
2962
|
-
|
2963
|
-
|
2822
|
+
node-pre-gyp@^0.6.36:
|
2823
|
+
version "0.6.37"
|
2824
|
+
resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.37.tgz#3c872b236b2e266e4140578fe1ee88f693323a05"
|
2825
|
+
dependencies:
|
2826
|
+
mkdirp "^0.5.1"
|
2827
|
+
nopt "^4.0.1"
|
2828
|
+
npmlog "^4.0.2"
|
2829
|
+
rc "^1.1.7"
|
2830
|
+
request "^2.81.0"
|
2831
|
+
rimraf "^2.6.1"
|
2832
|
+
semver "^5.3.0"
|
2833
|
+
tape "^4.6.3"
|
2834
|
+
tar "^2.2.1"
|
2835
|
+
tar-pack "^3.4.0"
|
2836
|
+
|
2837
|
+
nopt@^4.0.1:
|
2838
|
+
version "4.0.1"
|
2839
|
+
resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d"
|
2964
2840
|
dependencies:
|
2965
2841
|
abbrev "1"
|
2842
|
+
osenv "^0.1.4"
|
2966
2843
|
|
2967
2844
|
normalize-package-data@^2.3.2:
|
2968
|
-
version "2.
|
2969
|
-
resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.
|
2845
|
+
version "2.4.0"
|
2846
|
+
resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f"
|
2970
2847
|
dependencies:
|
2971
2848
|
hosted-git-info "^2.1.4"
|
2972
2849
|
is-builtin-module "^1.0.0"
|
2973
2850
|
semver "2 || 3 || 4 || 5"
|
2974
2851
|
validate-npm-package-license "^3.0.1"
|
2975
2852
|
|
2976
|
-
normalize-path@^2.0.1:
|
2977
|
-
version "2.
|
2978
|
-
resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.
|
2853
|
+
normalize-path@^2.0.0, normalize-path@^2.0.1:
|
2854
|
+
version "2.1.1"
|
2855
|
+
resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
|
2856
|
+
dependencies:
|
2857
|
+
remove-trailing-separator "^1.0.1"
|
2979
2858
|
|
2980
2859
|
npm-run-path@^2.0.0:
|
2981
2860
|
version "2.0.2"
|
@@ -2983,13 +2862,13 @@ npm-run-path@^2.0.0:
|
|
2983
2862
|
dependencies:
|
2984
2863
|
path-key "^2.0.0"
|
2985
2864
|
|
2986
|
-
npmlog@^4.0.
|
2987
|
-
version "4.
|
2988
|
-
resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.
|
2865
|
+
npmlog@^4.0.2:
|
2866
|
+
version "4.1.2"
|
2867
|
+
resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
|
2989
2868
|
dependencies:
|
2990
2869
|
are-we-there-yet "~1.1.2"
|
2991
2870
|
console-control-strings "~1.1.0"
|
2992
|
-
gauge "~2.
|
2871
|
+
gauge "~2.7.3"
|
2993
2872
|
set-blocking "~2.0.0"
|
2994
2873
|
|
2995
2874
|
number-is-nan@^1.0.0:
|
@@ -3004,21 +2883,13 @@ oauth-sign@~0.8.1:
|
|
3004
2883
|
version "0.8.2"
|
3005
2884
|
resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
|
3006
2885
|
|
3007
|
-
object-assign@^4.0.0, object-assign@^4.0.1:
|
3008
|
-
version "4.1.0"
|
3009
|
-
resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0"
|
3010
|
-
|
3011
|
-
object-assign@^4.1.0, object-assign@^4.1.1:
|
2886
|
+
object-assign@^4.0.0, object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1:
|
3012
2887
|
version "4.1.1"
|
3013
2888
|
resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
|
3014
2889
|
|
3015
|
-
object-inspect@~1.
|
3016
|
-
version "1.
|
3017
|
-
resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.
|
3018
|
-
|
3019
|
-
object-inspect@~1.2.2:
|
3020
|
-
version "1.2.2"
|
3021
|
-
resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.2.2.tgz#c82115e4fcc888aea14d64c22e4f17f6a70d5e5a"
|
2890
|
+
object-inspect@~1.3.0:
|
2891
|
+
version "1.3.0"
|
2892
|
+
resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.3.0.tgz#5b1eb8e6742e2ee83342a637034d844928ba2f6d"
|
3022
2893
|
|
3023
2894
|
object-keys@^1.0.8:
|
3024
2895
|
version "1.0.11"
|
@@ -3031,18 +2902,12 @@ object.omit@^2.0.0:
|
|
3031
2902
|
for-own "^0.1.4"
|
3032
2903
|
is-extendable "^0.1.1"
|
3033
2904
|
|
3034
|
-
once@^1.3.0:
|
2905
|
+
once@^1.3.0, once@^1.3.3:
|
3035
2906
|
version "1.4.0"
|
3036
2907
|
resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
|
3037
2908
|
dependencies:
|
3038
2909
|
wrappy "1"
|
3039
2910
|
|
3040
|
-
once@~1.3.3:
|
3041
|
-
version "1.3.3"
|
3042
|
-
resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20"
|
3043
|
-
dependencies:
|
3044
|
-
wrappy "1"
|
3045
|
-
|
3046
2911
|
onetime@^1.0.0:
|
3047
2912
|
version "1.1.0"
|
3048
2913
|
resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789"
|
@@ -3080,11 +2945,18 @@ os-locale@^2.0.0:
|
|
3080
2945
|
lcid "^1.0.0"
|
3081
2946
|
mem "^1.1.0"
|
3082
2947
|
|
3083
|
-
os-tmpdir@^1.0.1, os-tmpdir@~1.0.1:
|
2948
|
+
os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.1:
|
3084
2949
|
version "1.0.2"
|
3085
2950
|
resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
|
3086
2951
|
|
3087
|
-
|
2952
|
+
osenv@^0.1.4:
|
2953
|
+
version "0.1.4"
|
2954
|
+
resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644"
|
2955
|
+
dependencies:
|
2956
|
+
os-homedir "^1.0.0"
|
2957
|
+
os-tmpdir "^1.0.0"
|
2958
|
+
|
2959
|
+
output-file-sync@^1.1.2:
|
3088
2960
|
version "1.1.2"
|
3089
2961
|
resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76"
|
3090
2962
|
dependencies:
|
@@ -3106,13 +2978,19 @@ p-locate@^2.0.0:
|
|
3106
2978
|
dependencies:
|
3107
2979
|
p-limit "^1.1.0"
|
3108
2980
|
|
2981
|
+
p-retry@1.0.0:
|
2982
|
+
version "1.0.0"
|
2983
|
+
resolved "https://registry.yarnpkg.com/p-retry/-/p-retry-1.0.0.tgz#3927332a4b7d70269b535515117fc547da1a6968"
|
2984
|
+
dependencies:
|
2985
|
+
retry "^0.10.0"
|
2986
|
+
|
3109
2987
|
pako@~0.2.0:
|
3110
2988
|
version "0.2.9"
|
3111
2989
|
resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75"
|
3112
2990
|
|
3113
2991
|
parse-asn1@^5.0.0:
|
3114
|
-
version "5.
|
3115
|
-
resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.
|
2992
|
+
version "5.1.0"
|
2993
|
+
resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712"
|
3116
2994
|
dependencies:
|
3117
2995
|
asn1.js "^4.0.0"
|
3118
2996
|
browserify-aes "^1.0.0"
|
@@ -3163,7 +3041,7 @@ path-exists@^3.0.0:
|
|
3163
3041
|
version "3.0.0"
|
3164
3042
|
resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
|
3165
3043
|
|
3166
|
-
path-is-absolute@^1.0.0:
|
3044
|
+
path-is-absolute@^1.0.0, path-is-absolute@^1.0.1:
|
3167
3045
|
version "1.0.1"
|
3168
3046
|
resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
|
3169
3047
|
|
@@ -3186,10 +3064,18 @@ path-type@^2.0.0:
|
|
3186
3064
|
pify "^2.0.0"
|
3187
3065
|
|
3188
3066
|
pbkdf2@^3.0.3:
|
3189
|
-
version "3.0.
|
3190
|
-
resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.
|
3067
|
+
version "3.0.14"
|
3068
|
+
resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.14.tgz#a35e13c64799b06ce15320f459c230e68e73bade"
|
3191
3069
|
dependencies:
|
3192
|
-
create-
|
3070
|
+
create-hash "^1.1.2"
|
3071
|
+
create-hmac "^1.1.4"
|
3072
|
+
ripemd160 "^2.0.1"
|
3073
|
+
safe-buffer "^5.0.1"
|
3074
|
+
sha.js "^2.4.8"
|
3075
|
+
|
3076
|
+
performance-now@^0.2.0:
|
3077
|
+
version "0.2.0"
|
3078
|
+
resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5"
|
3193
3079
|
|
3194
3080
|
pify@^2.0.0, pify@^2.3.0:
|
3195
3081
|
version "2.3.0"
|
@@ -3245,17 +3131,17 @@ pretty-ms@^2.1.0:
|
|
3245
3131
|
parse-ms "^1.0.0"
|
3246
3132
|
plur "^1.0.0"
|
3247
3133
|
|
3248
|
-
private@^0.1.6:
|
3249
|
-
version "0.1.
|
3250
|
-
resolved "https://registry.yarnpkg.com/private/-/private-0.1.
|
3134
|
+
private@^0.1.6, private@^0.1.7:
|
3135
|
+
version "0.1.7"
|
3136
|
+
resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1"
|
3251
3137
|
|
3252
3138
|
process-nextick-args@~1.0.6:
|
3253
3139
|
version "1.0.7"
|
3254
3140
|
resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
|
3255
3141
|
|
3256
3142
|
process@^0.11.0:
|
3257
|
-
version "0.11.
|
3258
|
-
resolved "https://registry.yarnpkg.com/process/-/process-0.11.
|
3143
|
+
version "0.11.10"
|
3144
|
+
resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
|
3259
3145
|
|
3260
3146
|
process@~0.5.1:
|
3261
3147
|
version "0.5.2"
|
@@ -3266,8 +3152,8 @@ progress@^1.1.8:
|
|
3266
3152
|
resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be"
|
3267
3153
|
|
3268
3154
|
promise@^7.1.1:
|
3269
|
-
version "7.
|
3270
|
-
resolved "https://registry.yarnpkg.com/promise/-/promise-7.
|
3155
|
+
version "7.3.1"
|
3156
|
+
resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf"
|
3271
3157
|
dependencies:
|
3272
3158
|
asap "~2.0.3"
|
3273
3159
|
|
@@ -3304,9 +3190,9 @@ punycode@^1.2.4, punycode@^1.4.1:
|
|
3304
3190
|
version "1.4.1"
|
3305
3191
|
resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
|
3306
3192
|
|
3307
|
-
qs@~6.
|
3308
|
-
version "6.
|
3309
|
-
resolved "https://registry.yarnpkg.com/qs/-/qs-6.
|
3193
|
+
qs@~6.4.0:
|
3194
|
+
version "6.4.0"
|
3195
|
+
resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233"
|
3310
3196
|
|
3311
3197
|
querystring-es3@^0.2.0:
|
3312
3198
|
version "0.2.1"
|
@@ -3317,32 +3203,34 @@ querystring@0.2.0:
|
|
3317
3203
|
resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620"
|
3318
3204
|
|
3319
3205
|
randomatic@^1.1.3:
|
3320
|
-
version "1.1.
|
3321
|
-
resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.
|
3206
|
+
version "1.1.7"
|
3207
|
+
resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c"
|
3322
3208
|
dependencies:
|
3323
|
-
is-number "^
|
3324
|
-
kind-of "^
|
3209
|
+
is-number "^3.0.0"
|
3210
|
+
kind-of "^4.0.0"
|
3325
3211
|
|
3326
3212
|
randombytes@^2.0.0, randombytes@^2.0.1:
|
3327
|
-
version "2.0.
|
3328
|
-
resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.
|
3213
|
+
version "2.0.5"
|
3214
|
+
resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.5.tgz#dc009a246b8d09a177b4b7a0ae77bc570f4b1b79"
|
3215
|
+
dependencies:
|
3216
|
+
safe-buffer "^5.1.0"
|
3329
3217
|
|
3330
|
-
rc
|
3331
|
-
version "1.1
|
3332
|
-
resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.
|
3218
|
+
rc@^1.1.7:
|
3219
|
+
version "1.2.1"
|
3220
|
+
resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95"
|
3333
3221
|
dependencies:
|
3334
3222
|
deep-extend "~0.4.0"
|
3335
3223
|
ini "~1.3.0"
|
3336
3224
|
minimist "^1.2.0"
|
3337
|
-
strip-json-comments "~
|
3225
|
+
strip-json-comments "~2.0.1"
|
3338
3226
|
|
3339
3227
|
re-emitter@^1.0.0:
|
3340
3228
|
version "1.1.3"
|
3341
3229
|
resolved "https://registry.yarnpkg.com/re-emitter/-/re-emitter-1.1.3.tgz#fa9e319ffdeeeb35b27296ef0f3d374dac2f52a7"
|
3342
3230
|
|
3343
3231
|
react-deep-force-update@^1.0.0:
|
3344
|
-
version "1.
|
3345
|
-
resolved "https://registry.yarnpkg.com/react-deep-force-update/-/react-deep-force-update-1.
|
3232
|
+
version "1.1.1"
|
3233
|
+
resolved "https://registry.yarnpkg.com/react-deep-force-update/-/react-deep-force-update-1.1.1.tgz#bcd31478027b64b3339f108921ab520b4313dc2c"
|
3346
3234
|
|
3347
3235
|
react-dom@^15.6.1:
|
3348
3236
|
version "15.6.1"
|
@@ -3353,15 +3241,11 @@ react-dom@^15.6.1:
|
|
3353
3241
|
object-assign "^4.1.0"
|
3354
3242
|
prop-types "^15.5.10"
|
3355
3243
|
|
3356
|
-
react-on-rails@^9.0.0-beta.11:
|
3357
|
-
version "9.0.0-beta.11"
|
3358
|
-
resolved "https://registry.yarnpkg.com/react-on-rails/-/react-on-rails-9.0.0-beta.11.tgz#f6951129d7c2a67479281ca900859d5ac0aab978"
|
3359
|
-
|
3360
3244
|
react-on-rails@^9.0.0-beta.12:
|
3361
|
-
version "9.0.
|
3362
|
-
resolved "https://registry.yarnpkg.com/react-on-rails/-/react-on-rails-9.0.
|
3245
|
+
version "9.0.1"
|
3246
|
+
resolved "https://registry.yarnpkg.com/react-on-rails/-/react-on-rails-9.0.1.tgz#49bf7520866214e410e6f88b298e889183d93786"
|
3363
3247
|
dependencies:
|
3364
|
-
react-on-rails "^9.0.0-beta.
|
3248
|
+
react-on-rails "^9.0.0-beta.12"
|
3365
3249
|
react-redux "^5.0.6"
|
3366
3250
|
|
3367
3251
|
react-proxy@^1.1.7:
|
@@ -3414,39 +3298,16 @@ read-pkg@^2.0.0:
|
|
3414
3298
|
normalize-package-data "^2.3.2"
|
3415
3299
|
path-type "^2.0.0"
|
3416
3300
|
|
3417
|
-
readable-stream@^2.0.0,
|
3418
|
-
version "2.
|
3419
|
-
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.
|
3420
|
-
dependencies:
|
3421
|
-
buffer-shims "~1.0.0"
|
3422
|
-
core-util-is "~1.0.0"
|
3423
|
-
inherits "~2.0.1"
|
3424
|
-
isarray "~1.0.0"
|
3425
|
-
process-nextick-args "~1.0.6"
|
3426
|
-
string_decoder "~1.0.0"
|
3427
|
-
util-deprecate "~1.0.1"
|
3428
|
-
|
3429
|
-
readable-stream@~2.0.0:
|
3430
|
-
version "2.0.6"
|
3431
|
-
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e"
|
3432
|
-
dependencies:
|
3433
|
-
core-util-is "~1.0.0"
|
3434
|
-
inherits "~2.0.1"
|
3435
|
-
isarray "~1.0.0"
|
3436
|
-
process-nextick-args "~1.0.6"
|
3437
|
-
string_decoder "~0.10.x"
|
3438
|
-
util-deprecate "~1.0.1"
|
3439
|
-
|
3440
|
-
readable-stream@~2.1.4:
|
3441
|
-
version "2.1.5"
|
3442
|
-
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0"
|
3301
|
+
readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.2.6:
|
3302
|
+
version "2.3.3"
|
3303
|
+
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c"
|
3443
3304
|
dependencies:
|
3444
|
-
buffer-shims "^1.0.0"
|
3445
3305
|
core-util-is "~1.0.0"
|
3446
|
-
inherits "~2.0.
|
3306
|
+
inherits "~2.0.3"
|
3447
3307
|
isarray "~1.0.0"
|
3448
3308
|
process-nextick-args "~1.0.6"
|
3449
|
-
|
3309
|
+
safe-buffer "~5.1.1"
|
3310
|
+
string_decoder "~1.0.3"
|
3450
3311
|
util-deprecate "~1.0.1"
|
3451
3312
|
|
3452
3313
|
readdirp@^2.0.0:
|
@@ -3482,27 +3343,30 @@ redux@^3.7.2:
|
|
3482
3343
|
symbol-observable "^1.0.3"
|
3483
3344
|
|
3484
3345
|
regenerate@^1.2.1:
|
3485
|
-
version "1.3.
|
3486
|
-
resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.
|
3346
|
+
version "1.3.2"
|
3347
|
+
resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260"
|
3487
3348
|
|
3488
|
-
regenerator-runtime@^0.10.
|
3489
|
-
version "0.10.
|
3490
|
-
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.
|
3349
|
+
regenerator-runtime@^0.10.5:
|
3350
|
+
version "0.10.5"
|
3351
|
+
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658"
|
3352
|
+
|
3353
|
+
regenerator-runtime@^0.11.0:
|
3354
|
+
version "0.11.0"
|
3355
|
+
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1"
|
3491
3356
|
|
3492
|
-
regenerator-transform
|
3493
|
-
version "0.
|
3494
|
-
resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.
|
3357
|
+
regenerator-transform@^0.10.0:
|
3358
|
+
version "0.10.1"
|
3359
|
+
resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd"
|
3495
3360
|
dependencies:
|
3496
3361
|
babel-runtime "^6.18.0"
|
3497
3362
|
babel-types "^6.19.0"
|
3498
3363
|
private "^0.1.6"
|
3499
3364
|
|
3500
3365
|
regex-cache@^0.4.2:
|
3501
|
-
version "0.4.
|
3502
|
-
resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.
|
3366
|
+
version "0.4.4"
|
3367
|
+
resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd"
|
3503
3368
|
dependencies:
|
3504
3369
|
is-equal-shallow "^0.1.3"
|
3505
|
-
is-primitive "^2.0.0"
|
3506
3370
|
|
3507
3371
|
regexpu-core@^2.0.0:
|
3508
3372
|
version "2.0.0"
|
@@ -3523,10 +3387,9 @@ regjsparser@^0.1.4:
|
|
3523
3387
|
jsesc "~0.5.0"
|
3524
3388
|
|
3525
3389
|
release-it@^2.8.2:
|
3526
|
-
version "2.8.
|
3527
|
-
resolved "https://registry.yarnpkg.com/release-it/-/release-it-2.8.
|
3390
|
+
version "2.8.5"
|
3391
|
+
resolved "https://registry.yarnpkg.com/release-it/-/release-it-2.8.5.tgz#d111007355061f88cda69f72d73cbc8a64a492cf"
|
3528
3392
|
dependencies:
|
3529
|
-
async-retry "1.1.1"
|
3530
3393
|
chalk "1.1.3"
|
3531
3394
|
github "9.2.0"
|
3532
3395
|
glob "7.1.1"
|
@@ -3535,11 +3398,16 @@ release-it@^2.8.2:
|
|
3535
3398
|
lodash "4.17.4"
|
3536
3399
|
minimist "1.2.0"
|
3537
3400
|
mkdirp "0.5.1"
|
3401
|
+
p-retry "1.0.0"
|
3538
3402
|
parse-repo "1.0.1"
|
3539
3403
|
semver "5.3.0"
|
3540
3404
|
shelljs "0.7.7"
|
3541
3405
|
when "3.7.8"
|
3542
3406
|
|
3407
|
+
remove-trailing-separator@^1.0.1:
|
3408
|
+
version "1.1.0"
|
3409
|
+
resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
|
3410
|
+
|
3543
3411
|
repeat-element@^1.1.2:
|
3544
3412
|
version "1.1.2"
|
3545
3413
|
resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a"
|
@@ -3568,18 +3436,18 @@ request-promise-native@^1.0.3:
|
|
3568
3436
|
stealthy-require "^1.1.0"
|
3569
3437
|
tough-cookie ">=2.3.0"
|
3570
3438
|
|
3571
|
-
request@^2.
|
3572
|
-
version "2.
|
3573
|
-
resolved "https://registry.yarnpkg.com/request/-/request-2.
|
3439
|
+
request@^2.79.0, request@^2.81.0:
|
3440
|
+
version "2.81.0"
|
3441
|
+
resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0"
|
3574
3442
|
dependencies:
|
3575
3443
|
aws-sign2 "~0.6.0"
|
3576
3444
|
aws4 "^1.2.1"
|
3577
|
-
caseless "~0.
|
3445
|
+
caseless "~0.12.0"
|
3578
3446
|
combined-stream "~1.0.5"
|
3579
3447
|
extend "~3.0.0"
|
3580
3448
|
forever-agent "~0.6.1"
|
3581
3449
|
form-data "~2.1.1"
|
3582
|
-
har-validator "~2.
|
3450
|
+
har-validator "~4.2.1"
|
3583
3451
|
hawk "~3.1.3"
|
3584
3452
|
http-signature "~1.1.0"
|
3585
3453
|
is-typedarray "~1.0.0"
|
@@ -3587,10 +3455,12 @@ request@^2.75.0, request@^2.79.0:
|
|
3587
3455
|
json-stringify-safe "~5.0.1"
|
3588
3456
|
mime-types "~2.1.7"
|
3589
3457
|
oauth-sign "~0.8.1"
|
3590
|
-
|
3458
|
+
performance-now "^0.2.0"
|
3459
|
+
qs "~6.4.0"
|
3460
|
+
safe-buffer "^5.0.1"
|
3591
3461
|
stringstream "~0.0.4"
|
3592
3462
|
tough-cookie "~2.3.0"
|
3593
|
-
tunnel-agent "
|
3463
|
+
tunnel-agent "^0.6.0"
|
3594
3464
|
uuid "^3.0.0"
|
3595
3465
|
|
3596
3466
|
require-directory@^2.1.1:
|
@@ -3602,8 +3472,8 @@ require-main-filename@^1.0.1:
|
|
3602
3472
|
resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
|
3603
3473
|
|
3604
3474
|
require-uncached@^1.0.2:
|
3605
|
-
version "1.0.
|
3606
|
-
resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.
|
3475
|
+
version "1.0.3"
|
3476
|
+
resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3"
|
3607
3477
|
dependencies:
|
3608
3478
|
caller-path "^0.1.0"
|
3609
3479
|
resolve-from "^1.0.0"
|
@@ -3612,13 +3482,9 @@ resolve-from@^1.0.0:
|
|
3612
3482
|
version "1.0.1"
|
3613
3483
|
resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226"
|
3614
3484
|
|
3615
|
-
resolve@^1.1.6, resolve
|
3616
|
-
version "1.
|
3617
|
-
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.
|
3618
|
-
|
3619
|
-
resolve@^1.2.0, resolve@~1.3.3:
|
3620
|
-
version "1.3.3"
|
3621
|
-
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5"
|
3485
|
+
resolve@^1.1.6, resolve@^1.2.0, resolve@~1.4.0:
|
3486
|
+
version "1.4.0"
|
3487
|
+
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.4.0.tgz#a75be01c53da25d934a98ebd0e4c4a7312f92a86"
|
3622
3488
|
dependencies:
|
3623
3489
|
path-parse "^1.0.5"
|
3624
3490
|
|
@@ -3642,7 +3508,7 @@ resumer@~0.0.0:
|
|
3642
3508
|
dependencies:
|
3643
3509
|
through "~2.3.4"
|
3644
3510
|
|
3645
|
-
retry
|
3511
|
+
retry@^0.10.0:
|
3646
3512
|
version "0.10.1"
|
3647
3513
|
resolved "https://registry.yarnpkg.com/retry/-/retry-0.10.1.tgz#e76388d217992c252750241d3d3956fed98d8ff4"
|
3648
3514
|
|
@@ -3652,15 +3518,18 @@ right-align@^0.1.1:
|
|
3652
3518
|
dependencies:
|
3653
3519
|
align-text "^0.1.1"
|
3654
3520
|
|
3655
|
-
rimraf@2, rimraf@^2.2.8, rimraf
|
3656
|
-
version "2.
|
3657
|
-
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.
|
3521
|
+
rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1:
|
3522
|
+
version "2.6.1"
|
3523
|
+
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d"
|
3658
3524
|
dependencies:
|
3659
3525
|
glob "^7.0.5"
|
3660
3526
|
|
3661
|
-
ripemd160@^
|
3662
|
-
version "
|
3663
|
-
resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-
|
3527
|
+
ripemd160@^2.0.0, ripemd160@^2.0.1:
|
3528
|
+
version "2.0.1"
|
3529
|
+
resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.1.tgz#0f4584295c53a3628af7e6d79aca21ce57d1c6e7"
|
3530
|
+
dependencies:
|
3531
|
+
hash-base "^2.0.0"
|
3532
|
+
inherits "^2.0.1"
|
3664
3533
|
|
3665
3534
|
run-async@^0.1.0:
|
3666
3535
|
version "0.1.0"
|
@@ -3669,11 +3538,10 @@ run-async@^0.1.0:
|
|
3669
3538
|
once "^1.3.0"
|
3670
3539
|
|
3671
3540
|
run-async@^2.2.0:
|
3672
|
-
version "2.
|
3673
|
-
resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.
|
3541
|
+
version "2.3.0"
|
3542
|
+
resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0"
|
3674
3543
|
dependencies:
|
3675
3544
|
is-promise "^2.1.0"
|
3676
|
-
pinkie-promise "^2.0.0"
|
3677
3545
|
|
3678
3546
|
rx-lite@^3.1.2:
|
3679
3547
|
version "3.1.2"
|
@@ -3683,11 +3551,19 @@ rx@^4.1.0:
|
|
3683
3551
|
version "4.1.0"
|
3684
3552
|
resolved "https://registry.yarnpkg.com/rx/-/rx-4.1.0.tgz#a5f13ff79ef3b740fe30aa803fb09f98805d4782"
|
3685
3553
|
|
3554
|
+
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:
|
3555
|
+
version "5.1.1"
|
3556
|
+
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853"
|
3557
|
+
|
3686
3558
|
sax@^1.2.1:
|
3687
|
-
version "1.2.
|
3688
|
-
resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.
|
3559
|
+
version "1.2.4"
|
3560
|
+
resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
|
3689
3561
|
|
3690
|
-
"semver@2 || 3 || 4 || 5", semver
|
3562
|
+
"semver@2 || 3 || 4 || 5", semver@^5.3.0:
|
3563
|
+
version "5.4.1"
|
3564
|
+
resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e"
|
3565
|
+
|
3566
|
+
semver@5.3.0:
|
3691
3567
|
version "5.3.0"
|
3692
3568
|
resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"
|
3693
3569
|
|
@@ -3707,7 +3583,7 @@ setimmediate@^1.0.4, setimmediate@^1.0.5:
|
|
3707
3583
|
version "1.0.5"
|
3708
3584
|
resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
|
3709
3585
|
|
3710
|
-
sha.js@^2.
|
3586
|
+
sha.js@^2.4.0, sha.js@^2.4.8:
|
3711
3587
|
version "2.4.8"
|
3712
3588
|
resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.8.tgz#37068c2c476b6baf402d14a49c67f597921f634f"
|
3713
3589
|
dependencies:
|
@@ -3732,8 +3608,8 @@ shelljs@0.7.7:
|
|
3732
3608
|
rechoir "^0.6.2"
|
3733
3609
|
|
3734
3610
|
shelljs@^0.7.5:
|
3735
|
-
version "0.7.
|
3736
|
-
resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.
|
3611
|
+
version "0.7.8"
|
3612
|
+
resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.8.tgz#decbcf874b0d1e5fb72e14b164a9683048e9acb3"
|
3737
3613
|
dependencies:
|
3738
3614
|
glob "^7.0.0"
|
3739
3615
|
interpret "^1.0.0"
|
@@ -3761,21 +3637,15 @@ source-list-map@^2.0.0:
|
|
3761
3637
|
version "2.0.0"
|
3762
3638
|
resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.0.tgz#aaa47403f7b245a92fbc97ea08f250d6087ed085"
|
3763
3639
|
|
3764
|
-
source-map-support@^0.4.
|
3765
|
-
version "0.4.
|
3766
|
-
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.
|
3640
|
+
source-map-support@^0.4.15:
|
3641
|
+
version "0.4.18"
|
3642
|
+
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f"
|
3767
3643
|
dependencies:
|
3768
|
-
source-map "^0.5.
|
3769
|
-
|
3770
|
-
source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1, source-map@~0.5.3:
|
3771
|
-
version "0.5.6"
|
3772
|
-
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412"
|
3644
|
+
source-map "^0.5.6"
|
3773
3645
|
|
3774
|
-
source-map@~0.
|
3775
|
-
version "0.
|
3776
|
-
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.
|
3777
|
-
dependencies:
|
3778
|
-
amdefine ">=0.0.4"
|
3646
|
+
source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1, source-map@~0.5.3, source-map@~0.5.6:
|
3647
|
+
version "0.5.7"
|
3648
|
+
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
|
3779
3649
|
|
3780
3650
|
spdx-correct@~1.0.0:
|
3781
3651
|
version "1.0.2"
|
@@ -3792,8 +3662,8 @@ spdx-license-ids@^1.0.2:
|
|
3792
3662
|
resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57"
|
3793
3663
|
|
3794
3664
|
split@^1.0.0:
|
3795
|
-
version "1.0.
|
3796
|
-
resolved "https://registry.yarnpkg.com/split/-/split-1.0.
|
3665
|
+
version "1.0.1"
|
3666
|
+
resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9"
|
3797
3667
|
dependencies:
|
3798
3668
|
through "2"
|
3799
3669
|
|
@@ -3802,8 +3672,8 @@ sprintf-js@~1.0.2:
|
|
3802
3672
|
resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
|
3803
3673
|
|
3804
3674
|
sshpk@^1.7.0:
|
3805
|
-
version "1.
|
3806
|
-
resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.
|
3675
|
+
version "1.13.1"
|
3676
|
+
resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3"
|
3807
3677
|
dependencies:
|
3808
3678
|
asn1 "~0.2.3"
|
3809
3679
|
assert-plus "^1.0.0"
|
@@ -3812,7 +3682,6 @@ sshpk@^1.7.0:
|
|
3812
3682
|
optionalDependencies:
|
3813
3683
|
bcrypt-pbkdf "^1.0.0"
|
3814
3684
|
ecc-jsbn "~0.1.1"
|
3815
|
-
jodid25519 "^1.0.0"
|
3816
3685
|
jsbn "~0.1.0"
|
3817
3686
|
tweetnacl "~0.14.0"
|
3818
3687
|
|
@@ -3832,16 +3701,16 @@ stream-consume@^0.1.0:
|
|
3832
3701
|
resolved "https://registry.yarnpkg.com/stream-consume/-/stream-consume-0.1.0.tgz#a41ead1a6d6081ceb79f65b061901b6d8f3d1d0f"
|
3833
3702
|
|
3834
3703
|
stream-http@^2.3.1:
|
3835
|
-
version "2.
|
3836
|
-
resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.
|
3704
|
+
version "2.7.2"
|
3705
|
+
resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.7.2.tgz#40a050ec8dc3b53b33d9909415c02c0bf1abfbad"
|
3837
3706
|
dependencies:
|
3838
3707
|
builtin-status-codes "^3.0.0"
|
3839
3708
|
inherits "^2.0.1"
|
3840
|
-
readable-stream "^2.
|
3709
|
+
readable-stream "^2.2.6"
|
3841
3710
|
to-arraybuffer "^1.0.0"
|
3842
3711
|
xtend "^4.0.0"
|
3843
3712
|
|
3844
|
-
string-width@^1.0.1:
|
3713
|
+
string-width@^1.0.1, string-width@^1.0.2:
|
3845
3714
|
version "1.0.2"
|
3846
3715
|
resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
|
3847
3716
|
dependencies:
|
@@ -3850,11 +3719,11 @@ string-width@^1.0.1:
|
|
3850
3719
|
strip-ansi "^3.0.0"
|
3851
3720
|
|
3852
3721
|
string-width@^2.0.0:
|
3853
|
-
version "2.
|
3854
|
-
resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.
|
3722
|
+
version "2.1.1"
|
3723
|
+
resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
|
3855
3724
|
dependencies:
|
3856
3725
|
is-fullwidth-code-point "^2.0.0"
|
3857
|
-
strip-ansi "^
|
3726
|
+
strip-ansi "^4.0.0"
|
3858
3727
|
|
3859
3728
|
string.prototype.trim@~1.1.2:
|
3860
3729
|
version "1.1.2"
|
@@ -3864,15 +3733,15 @@ string.prototype.trim@~1.1.2:
|
|
3864
3733
|
es-abstract "^1.5.0"
|
3865
3734
|
function-bind "^1.0.2"
|
3866
3735
|
|
3867
|
-
string_decoder@^0.10.25
|
3736
|
+
string_decoder@^0.10.25:
|
3868
3737
|
version "0.10.31"
|
3869
3738
|
resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94"
|
3870
3739
|
|
3871
|
-
string_decoder@~1.0.
|
3872
|
-
version "1.0.
|
3873
|
-
resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.
|
3740
|
+
string_decoder@~1.0.3:
|
3741
|
+
version "1.0.3"
|
3742
|
+
resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab"
|
3874
3743
|
dependencies:
|
3875
|
-
buffer
|
3744
|
+
safe-buffer "~5.1.0"
|
3876
3745
|
|
3877
3746
|
stringstream@~0.0.4:
|
3878
3747
|
version "0.0.5"
|
@@ -3884,6 +3753,12 @@ strip-ansi@^3.0.0, strip-ansi@^3.0.1:
|
|
3884
3753
|
dependencies:
|
3885
3754
|
ansi-regex "^2.0.0"
|
3886
3755
|
|
3756
|
+
strip-ansi@^4.0.0:
|
3757
|
+
version "4.0.0"
|
3758
|
+
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
|
3759
|
+
dependencies:
|
3760
|
+
ansi-regex "^3.0.0"
|
3761
|
+
|
3887
3762
|
strip-bom@^3.0.0:
|
3888
3763
|
version "3.0.0"
|
3889
3764
|
resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
|
@@ -3892,10 +3767,6 @@ strip-eof@^1.0.0:
|
|
3892
3767
|
version "1.0.0"
|
3893
3768
|
resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
|
3894
3769
|
|
3895
|
-
strip-json-comments@~1.0.4:
|
3896
|
-
version "1.0.4"
|
3897
|
-
resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91"
|
3898
|
-
|
3899
3770
|
strip-json-comments@~2.0.1:
|
3900
3771
|
version "2.0.1"
|
3901
3772
|
resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
|
@@ -3905,8 +3776,8 @@ supports-color@^2.0.0:
|
|
3905
3776
|
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
|
3906
3777
|
|
3907
3778
|
supports-color@^4.2.1:
|
3908
|
-
version "4.
|
3909
|
-
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.
|
3779
|
+
version "4.4.0"
|
3780
|
+
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.4.0.tgz#883f7ddabc165142b2a61427f3352ded195d1a3e"
|
3910
3781
|
dependencies:
|
3911
3782
|
has-flag "^2.0.0"
|
3912
3783
|
|
@@ -3952,30 +3823,12 @@ tap-spec@^4.1.1:
|
|
3952
3823
|
through2 "^2.0.0"
|
3953
3824
|
|
3954
3825
|
tapable@^0.2.7:
|
3955
|
-
version "0.2.
|
3956
|
-
resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.
|
3957
|
-
|
3958
|
-
"tape@>=2.0.0 <5.0.0":
|
3959
|
-
version "4.6.3"
|
3960
|
-
resolved "https://registry.yarnpkg.com/tape/-/tape-4.6.3.tgz#637e77581e9ab2ce17577e9bd4ce4f575806d8b6"
|
3961
|
-
dependencies:
|
3962
|
-
deep-equal "~1.0.1"
|
3963
|
-
defined "~1.0.0"
|
3964
|
-
for-each "~0.3.2"
|
3965
|
-
function-bind "~1.1.0"
|
3966
|
-
glob "~7.1.1"
|
3967
|
-
has "~1.0.1"
|
3968
|
-
inherits "~2.0.3"
|
3969
|
-
minimist "~1.2.0"
|
3970
|
-
object-inspect "~1.2.1"
|
3971
|
-
resolve "~1.1.7"
|
3972
|
-
resumer "~0.0.0"
|
3973
|
-
string.prototype.trim "~1.1.2"
|
3974
|
-
through "~2.3.8"
|
3826
|
+
version "0.2.8"
|
3827
|
+
resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.8.tgz#99372a5c999bf2df160afc0d74bed4f47948cd22"
|
3975
3828
|
|
3976
|
-
tape@^4.7.0:
|
3977
|
-
version "4.
|
3978
|
-
resolved "https://registry.yarnpkg.com/tape/-/tape-4.
|
3829
|
+
"tape@>=2.0.0 <5.0.0", tape@^4.6.3, tape@^4.7.0:
|
3830
|
+
version "4.8.0"
|
3831
|
+
resolved "https://registry.yarnpkg.com/tape/-/tape-4.8.0.tgz#f6a9fec41cc50a1de50fa33603ab580991f6068e"
|
3979
3832
|
dependencies:
|
3980
3833
|
deep-equal "~1.0.1"
|
3981
3834
|
defined "~1.0.0"
|
@@ -3985,26 +3838,26 @@ tape@^4.7.0:
|
|
3985
3838
|
has "~1.0.1"
|
3986
3839
|
inherits "~2.0.3"
|
3987
3840
|
minimist "~1.2.0"
|
3988
|
-
object-inspect "~1.
|
3989
|
-
resolve "~1.
|
3841
|
+
object-inspect "~1.3.0"
|
3842
|
+
resolve "~1.4.0"
|
3990
3843
|
resumer "~0.0.0"
|
3991
3844
|
string.prototype.trim "~1.1.2"
|
3992
3845
|
through "~2.3.8"
|
3993
3846
|
|
3994
|
-
tar-pack
|
3995
|
-
version "3.
|
3996
|
-
resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.
|
3997
|
-
dependencies:
|
3998
|
-
debug "
|
3999
|
-
fstream "
|
4000
|
-
fstream-ignore "
|
4001
|
-
once "
|
4002
|
-
readable-stream "
|
4003
|
-
rimraf "
|
4004
|
-
tar "
|
4005
|
-
uid-number "
|
4006
|
-
|
4007
|
-
tar
|
3847
|
+
tar-pack@^3.4.0:
|
3848
|
+
version "3.4.0"
|
3849
|
+
resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984"
|
3850
|
+
dependencies:
|
3851
|
+
debug "^2.2.0"
|
3852
|
+
fstream "^1.0.10"
|
3853
|
+
fstream-ignore "^1.0.5"
|
3854
|
+
once "^1.3.3"
|
3855
|
+
readable-stream "^2.1.4"
|
3856
|
+
rimraf "^2.5.1"
|
3857
|
+
tar "^2.2.1"
|
3858
|
+
uid-number "^0.0.6"
|
3859
|
+
|
3860
|
+
tar@^2.2.1:
|
4008
3861
|
version "2.2.1"
|
4009
3862
|
resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1"
|
4010
3863
|
dependencies:
|
@@ -4017,19 +3870,19 @@ text-table@~0.2.0:
|
|
4017
3870
|
resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
|
4018
3871
|
|
4019
3872
|
through2@^2.0.0:
|
4020
|
-
version "2.0.
|
4021
|
-
resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.
|
3873
|
+
version "2.0.3"
|
3874
|
+
resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be"
|
4022
3875
|
dependencies:
|
4023
|
-
readable-stream "
|
4024
|
-
xtend "~4.0.
|
3876
|
+
readable-stream "^2.1.5"
|
3877
|
+
xtend "~4.0.1"
|
4025
3878
|
|
4026
3879
|
through@2, through@^2.3.6, through@~2.3.4, through@~2.3.8:
|
4027
3880
|
version "2.3.8"
|
4028
3881
|
resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
|
4029
3882
|
|
4030
3883
|
timers-browserify@^2.0.2:
|
4031
|
-
version "2.0.
|
4032
|
-
resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.
|
3884
|
+
version "2.0.4"
|
3885
|
+
resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.4.tgz#96ca53f4b794a5e7c0e1bd7cc88a372298fa01e6"
|
4033
3886
|
dependencies:
|
4034
3887
|
setimmediate "^1.0.4"
|
4035
3888
|
|
@@ -4043,9 +3896,9 @@ to-arraybuffer@^1.0.0:
|
|
4043
3896
|
version "1.0.1"
|
4044
3897
|
resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43"
|
4045
3898
|
|
4046
|
-
to-fast-properties@^1.0.
|
4047
|
-
version "1.0.
|
4048
|
-
resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.
|
3899
|
+
to-fast-properties@^1.0.3:
|
3900
|
+
version "1.0.3"
|
3901
|
+
resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47"
|
4049
3902
|
|
4050
3903
|
tough-cookie@>=2.3.0, tough-cookie@^2.3.2, tough-cookie@~2.3.0:
|
4051
3904
|
version "2.3.2"
|
@@ -4073,13 +3926,15 @@ tty-browserify@0.0.0:
|
|
4073
3926
|
version "0.0.0"
|
4074
3927
|
resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6"
|
4075
3928
|
|
4076
|
-
tunnel-agent
|
4077
|
-
version "0.
|
4078
|
-
resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.
|
3929
|
+
tunnel-agent@^0.6.0:
|
3930
|
+
version "0.6.0"
|
3931
|
+
resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
|
3932
|
+
dependencies:
|
3933
|
+
safe-buffer "^5.0.1"
|
4079
3934
|
|
4080
3935
|
tweetnacl@^0.14.3, tweetnacl@~0.14.0:
|
4081
|
-
version "0.14.
|
4082
|
-
resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.
|
3936
|
+
version "0.14.5"
|
3937
|
+
resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
|
4083
3938
|
|
4084
3939
|
type-check@~0.3.2:
|
4085
3940
|
version "0.3.2"
|
@@ -4092,8 +3947,8 @@ typedarray@^0.0.6:
|
|
4092
3947
|
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
|
4093
3948
|
|
4094
3949
|
ua-parser-js@^0.7.9:
|
4095
|
-
version "0.7.
|
4096
|
-
resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.
|
3950
|
+
version "0.7.14"
|
3951
|
+
resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.14.tgz#110d53fa4c3f326c121292bbeac904d2e03387ca"
|
4097
3952
|
|
4098
3953
|
uglify-js@^2.8.29:
|
4099
3954
|
version "2.8.29"
|
@@ -4116,7 +3971,7 @@ uglifyjs-webpack-plugin@^0.4.6:
|
|
4116
3971
|
uglify-js "^2.8.29"
|
4117
3972
|
webpack-sources "^1.0.1"
|
4118
3973
|
|
4119
|
-
uid-number
|
3974
|
+
uid-number@^0.0.6:
|
4120
3975
|
version "0.0.6"
|
4121
3976
|
resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81"
|
4122
3977
|
|
@@ -4148,12 +4003,12 @@ util@0.10.3, util@^0.10.3:
|
|
4148
4003
|
inherits "2.0.1"
|
4149
4004
|
|
4150
4005
|
uuid@^3.0.0:
|
4151
|
-
version "3.0
|
4152
|
-
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.
|
4006
|
+
version "3.1.0"
|
4007
|
+
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04"
|
4153
4008
|
|
4154
|
-
v8flags@^2.
|
4155
|
-
version "2.
|
4156
|
-
resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.
|
4009
|
+
v8flags@^2.1.1:
|
4010
|
+
version "2.1.1"
|
4011
|
+
resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4"
|
4157
4012
|
dependencies:
|
4158
4013
|
user-home "^1.1.1"
|
4159
4014
|
|
@@ -4164,11 +4019,13 @@ validate-npm-package-license@^3.0.1:
|
|
4164
4019
|
spdx-correct "~1.0.0"
|
4165
4020
|
spdx-expression-parse "~1.0.0"
|
4166
4021
|
|
4167
|
-
verror@1.
|
4168
|
-
version "1.
|
4169
|
-
resolved "https://registry.yarnpkg.com/verror/-/verror-1.
|
4022
|
+
verror@1.10.0:
|
4023
|
+
version "1.10.0"
|
4024
|
+
resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400"
|
4170
4025
|
dependencies:
|
4171
|
-
|
4026
|
+
assert-plus "^1.0.0"
|
4027
|
+
core-util-is "1.0.2"
|
4028
|
+
extsprintf "^1.2.0"
|
4172
4029
|
|
4173
4030
|
vm-browserify@0.0.4:
|
4174
4031
|
version "0.0.4"
|
@@ -4185,12 +4042,12 @@ watchpack@^1.4.0:
|
|
4185
4042
|
graceful-fs "^4.1.2"
|
4186
4043
|
|
4187
4044
|
webidl-conversions@^4.0.0, webidl-conversions@^4.0.1:
|
4188
|
-
version "4.0.
|
4189
|
-
resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.
|
4045
|
+
version "4.0.2"
|
4046
|
+
resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad"
|
4190
4047
|
|
4191
4048
|
webpack-manifest-plugin@^1.2.1:
|
4192
|
-
version "1.
|
4193
|
-
resolved "https://registry.yarnpkg.com/webpack-manifest-plugin/-/webpack-manifest-plugin-1.
|
4049
|
+
version "1.3.1"
|
4050
|
+
resolved "https://registry.yarnpkg.com/webpack-manifest-plugin/-/webpack-manifest-plugin-1.3.1.tgz#dc071dd00cc602a014f107436f53a189c0e55a2c"
|
4194
4051
|
dependencies:
|
4195
4052
|
fs-extra "^0.30.0"
|
4196
4053
|
lodash ">=3.5 <5"
|
@@ -4203,8 +4060,8 @@ webpack-sources@^1.0.1:
|
|
4203
4060
|
source-map "~0.5.3"
|
4204
4061
|
|
4205
4062
|
webpack@^3.4.1:
|
4206
|
-
version "3.
|
4207
|
-
resolved "https://registry.yarnpkg.com/webpack/-/webpack-3.
|
4063
|
+
version "3.5.6"
|
4064
|
+
resolved "https://registry.yarnpkg.com/webpack/-/webpack-3.5.6.tgz#a492fb6c1ed7f573816f90e00c8fbb5a20cc5c36"
|
4208
4065
|
dependencies:
|
4209
4066
|
acorn "^5.0.0"
|
4210
4067
|
acorn-dynamic-import "^2.0.0"
|
@@ -4236,8 +4093,8 @@ whatwg-encoding@^1.0.1:
|
|
4236
4093
|
iconv-lite "0.4.13"
|
4237
4094
|
|
4238
4095
|
whatwg-fetch@>=0.10.0:
|
4239
|
-
version "
|
4240
|
-
resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-
|
4096
|
+
version "2.0.3"
|
4097
|
+
resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84"
|
4241
4098
|
|
4242
4099
|
whatwg-url@^6.1.0:
|
4243
4100
|
version "6.1.0"
|
@@ -4256,16 +4113,16 @@ which-module@^2.0.0:
|
|
4256
4113
|
resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
|
4257
4114
|
|
4258
4115
|
which@^1.2.9:
|
4259
|
-
version "1.
|
4260
|
-
resolved "https://registry.yarnpkg.com/which/-/which-1.
|
4116
|
+
version "1.3.0"
|
4117
|
+
resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a"
|
4261
4118
|
dependencies:
|
4262
4119
|
isexe "^2.0.0"
|
4263
4120
|
|
4264
4121
|
wide-align@^1.1.0:
|
4265
|
-
version "1.1.
|
4266
|
-
resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.
|
4122
|
+
version "1.1.2"
|
4123
|
+
resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710"
|
4267
4124
|
dependencies:
|
4268
|
-
string-width "^1.0.
|
4125
|
+
string-width "^1.0.2"
|
4269
4126
|
|
4270
4127
|
window-size@0.1.0:
|
4271
4128
|
version "0.1.0"
|
@@ -4300,7 +4157,7 @@ xml-name-validator@^2.0.1:
|
|
4300
4157
|
version "2.0.1"
|
4301
4158
|
resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635"
|
4302
4159
|
|
4303
|
-
xtend@^4.0.0, xtend@~4.0.
|
4160
|
+
xtend@^4.0.0, xtend@~4.0.1:
|
4304
4161
|
version "4.0.1"
|
4305
4162
|
resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
|
4306
4163
|
|